From 08ed19cd95d0d408bbdd7e85b25fd760d12bc8dd Mon Sep 17 00:00:00 2001 From: Terri00 Date: Mon, 17 Jun 2019 15:47:44 +0100 Subject: [PATCH] 2.0 --- .gitignore | 2 + MCDV.sln | 1 - MCDV/GBuffer.hpp | 167 + MCDV/GradientMap.hpp | 1 + MCDV/IRenderable.hpp | 22 + MCDV/MCDV.vcxproj | 18 +- MCDV/MCDV.vcxproj.filters | 40 +- MCDV/Mesh.hpp | 2 +- MCDV/SSAOKernel.hpp | 54 + MCDV/Shader.hpp | 13 + MCDV/convexPolytope.h | 5 +- MCDV/fonts/dina-r-background.png | Bin 26334 -> 26601 bytes MCDV/globals.h | 2 +- MCDV/main.cpp | 12 +- MCDV/main2.cpp | 298 +- MCDV/plane.h | 49 +- MCDV/sample_stuff/cs_apollo_b29.vmx | 650468 +++++++++++++++++++++++++ MCDV/sample_stuff/de_tavr_test.vmx | 2488 +- MCDV/sample_stuff/disp_256.vmx | 645 + MCDV/sample_stuff/map_01.prt | 13637 + MCDV/shaders/dev.fs | 20 + MCDV/shaders/fullscreenbase.fs | 251 + MCDV/shaders/gBuffer.fs | 16 + MCDV/shaders/gBuffer.vs | 20 + MCDV/shaders/iBuffer.fs | 17 + MCDV/shaders/ss_comp_main.fs | 131 +- MCDV/shaders/ss_comp_main.fso | 252 + MCDV/tar_config.hpp | 126 + MCDV/vdf.hpp | 20 +- MCDV/vmf.hpp | 130 +- MCDV/vmf_new.hpp | 923 + MCDV/vpk.txt | 6969 +- tar_entities/baseidle.smd | 8 + tar_entities/map_dividers.blend | Bin 0 -> 534488 bytes tar_entities/map_dividers.blend1 | Bin 0 -> 527916 bytes tar_entities/map_dividers.psd | Bin 0 -> 5823854 bytes tar_entities/tar_map_divider.qc | 10 + tar_entities/tar_map_divider.smd | 18 + tar_entities/tar_map_dividers.png | Bin 0 -> 17697 bytes tar_entities/tar_map_dividers.vmt | 5 + tar_entities/tar_map_dividers.vtf | Bin 0 -> 22064 bytes tar_entities/tar_override.psd | Bin 0 -> 140129 bytes 42 files changed, 672305 insertions(+), 4535 deletions(-) create mode 100644 MCDV/GBuffer.hpp create mode 100644 MCDV/IRenderable.hpp create mode 100644 MCDV/SSAOKernel.hpp create mode 100644 MCDV/sample_stuff/cs_apollo_b29.vmx create mode 100644 MCDV/sample_stuff/disp_256.vmx create mode 100644 MCDV/sample_stuff/map_01.prt create mode 100644 MCDV/shaders/dev.fs create mode 100644 MCDV/shaders/fullscreenbase.fs create mode 100644 MCDV/shaders/gBuffer.fs create mode 100644 MCDV/shaders/gBuffer.vs create mode 100644 MCDV/shaders/iBuffer.fs create mode 100644 MCDV/shaders/ss_comp_main.fso create mode 100644 MCDV/tar_config.hpp create mode 100644 MCDV/vmf_new.hpp create mode 100644 tar_entities/baseidle.smd create mode 100644 tar_entities/map_dividers.blend create mode 100644 tar_entities/map_dividers.blend1 create mode 100644 tar_entities/map_dividers.psd create mode 100644 tar_entities/tar_map_divider.qc create mode 100644 tar_entities/tar_map_divider.smd create mode 100644 tar_entities/tar_map_dividers.png create mode 100644 tar_entities/tar_map_dividers.vmt create mode 100644 tar_entities/tar_map_dividers.vtf create mode 100644 tar_entities/tar_override.psd diff --git a/.gitignore b/.gitignore index c204c51..caeddf3 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,8 @@ deps/ *.vtx *.tmdl *.vmf +*.vmx +*.prt deps.zip # Build results diff --git a/MCDV.sln b/MCDV.sln index 90d2097..4e23f97 100644 --- a/MCDV.sln +++ b/MCDV.sln @@ -31,7 +31,6 @@ Global {D73B6BD7-47B5-4426-BC6B-26B69F47CACA}.Debug|x64.ActiveCfg = Debug|x64 {D73B6BD7-47B5-4426-BC6B-26B69F47CACA}.Debug|x64.Build.0 = Debug|x64 {D73B6BD7-47B5-4426-BC6B-26B69F47CACA}.Debug|x86.ActiveCfg = Debug|Win32 - {D73B6BD7-47B5-4426-BC6B-26B69F47CACA}.Debug|x86.Build.0 = Debug|Win32 {D73B6BD7-47B5-4426-BC6B-26B69F47CACA}.Release|Any CPU.ActiveCfg = Release|Win32 {D73B6BD7-47B5-4426-BC6B-26B69F47CACA}.Release|x64.ActiveCfg = Release|x64 {D73B6BD7-47B5-4426-BC6B-26B69F47CACA}.Release|x64.Build.0 = Release|x64 diff --git a/MCDV/GBuffer.hpp b/MCDV/GBuffer.hpp new file mode 100644 index 0000000..c46cd35 --- /dev/null +++ b/MCDV/GBuffer.hpp @@ -0,0 +1,167 @@ +#pragma once +#include + +#include +#include + + +class GBuffer { + unsigned int gBuffer; + unsigned int rBuffer; + + unsigned int gPosition; + unsigned int gNormal; + unsigned int gMapInfo; + + unsigned int gMask; + +public: + // 14 byte/px + // 14 megabyte @ 1024x1024 + GBuffer(int window_width, int window_height) { + glGenFramebuffers(1, &this->gBuffer); + glBindFramebuffer(GL_FRAMEBUFFER, this->gBuffer); + + // Position buffer float16 (48bpp) + glGenTextures(1, &this->gPosition); + glBindTexture(GL_TEXTURE_2D, this->gPosition); + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB16F, window_width, window_height, 0, GL_RGB, GL_FLOAT, NULL); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); + glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, this->gPosition, 0); + + // normal buffer float16 (48bpp) + glGenTextures(1, &this->gNormal); + glBindTexture(GL_TEXTURE_2D, this->gNormal); + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB16F, window_width, window_height, 0, GL_RGB, GL_FLOAT, NULL); + + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); + glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT1, GL_TEXTURE_2D, this->gNormal, 0); + + // Map info buffer uint16 (16bpp) + glGenTextures(1, &this->gMapInfo); + glBindTexture(GL_TEXTURE_2D, this->gMapInfo); + glTexImage2D(GL_TEXTURE_2D, 0, GL_R32UI, window_width, window_height, 0, GL_RED_INTEGER, GL_UNSIGNED_INT, NULL); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); + glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT2, GL_TEXTURE_2D, this->gMapInfo, 0); + + // Announce attachments + unsigned int attachments[3] = { + GL_COLOR_ATTACHMENT0, + GL_COLOR_ATTACHMENT1, + GL_COLOR_ATTACHMENT2 + }; + + glDrawBuffers(3, attachments); + + // Create and test render buffer + glGenRenderbuffers(1, &this->rBuffer); + glBindRenderbuffer(GL_RENDERBUFFER, this->rBuffer); + glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH24_STENCIL8, window_width, window_height); + glBindRenderbuffer(GL_RENDERBUFFER, 0); + + glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, this->rBuffer); + + if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) + std::cout << "ERROR::FRAMEBUFFER:: Framebuffer is not complete!" << std::endl; + } + + /* + void BindRTtoTexSlot(int slot = 0) { + glActiveTexture(GL_TEXTURE0 + slot); + glBindTexture(GL_TEXTURE_2D, this->gBuffer); + glActiveTexture(GL_TEXTURE0); + }*/ + + void BindPositionBufferToTexSlot(int slot = 0) { + glActiveTexture(GL_TEXTURE0 + slot); + glBindTexture(GL_TEXTURE_2D, this->gPosition); + glActiveTexture(GL_TEXTURE0); + } + + void BindNormalBufferToTexSlot(int slot = 0) { + glActiveTexture(GL_TEXTURE0 + slot); + glBindTexture(GL_TEXTURE_2D, this->gNormal); + glActiveTexture(GL_TEXTURE0); + } + + void BindInfoBufferToTexSlot(int slot = 0) { + glActiveTexture(GL_TEXTURE0 + slot); + glBindTexture(GL_TEXTURE_2D, this->gMapInfo); + glActiveTexture(GL_TEXTURE0); + } + + void Bind() { + glBindFramebuffer(GL_FRAMEBUFFER, this->gBuffer ); //Set as active draw target + } + + static void Unbind() { + glBindFramebuffer(GL_FRAMEBUFFER, 0); //Revert to default framebuffer + } + + ~GBuffer() { + glDeleteFramebuffers(1, &this->gBuffer); + } +}; + +/* Simple mask buffer... */ +class MBuffer { + unsigned int gBuffer; + unsigned int rBuffer; + + unsigned int gMask; + +public: + // 14 byte/px + // 14 megabyte @ 1024x1024 + MBuffer(int window_width, int window_height) { + glGenFramebuffers(1, &this->gBuffer); + glBindFramebuffer(GL_FRAMEBUFFER, this->gBuffer); + + // Map info buffer uint16 (16bpp) + glGenTextures(1, &this->gMask); + glBindTexture(GL_TEXTURE_2D, this->gMask); + glTexImage2D(GL_TEXTURE_2D, 0, GL_R8UI, window_width, window_height, 0, GL_RED_INTEGER, GL_UNSIGNED_INT, NULL); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); + glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, this->gMask, 0); + + // Announce attachments + unsigned int attachments[3] = { + GL_COLOR_ATTACHMENT0 + }; + + glDrawBuffers(1, attachments); + + // Create and test render buffer + glGenRenderbuffers(1, &this->rBuffer); + glBindRenderbuffer(GL_RENDERBUFFER, this->rBuffer); + glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH24_STENCIL8, window_width, window_height); + glBindRenderbuffer(GL_RENDERBUFFER, 0); + + glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_STENCIL_ATTACHMENT, GL_RENDERBUFFER, this->rBuffer); + + if (glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) + std::cout << "ERROR::FRAMEBUFFER:: Framebuffer is not complete!" << std::endl; + } + + void BindMaskBufferToTexSlot(int slot = 0) { + glActiveTexture(GL_TEXTURE0 + slot); + glBindTexture(GL_TEXTURE_2D, this->gMask); + glActiveTexture(GL_TEXTURE0); + } + + void Bind() { + glBindFramebuffer(GL_FRAMEBUFFER, this->gBuffer); //Set as active draw target + } + + static void Unbind() { + glBindFramebuffer(GL_FRAMEBUFFER, 0); //Revert to default framebuffer + } + + ~MBuffer() { + glDeleteFramebuffers(1, &this->gBuffer); + } +}; \ No newline at end of file diff --git a/MCDV/GradientMap.hpp b/MCDV/GradientMap.hpp index c60cdab..1ca3c8a 100644 --- a/MCDV/GradientMap.hpp +++ b/MCDV/GradientMap.hpp @@ -1,3 +1,4 @@ +#pragma once #include #include diff --git a/MCDV/IRenderable.hpp b/MCDV/IRenderable.hpp new file mode 100644 index 0000000..7bd12da --- /dev/null +++ b/MCDV/IRenderable.hpp @@ -0,0 +1,22 @@ +#pragma once +#include +#include +#include + +#include "Shader.hpp" + +class IRenderable { +public: + glm::vec3 position; + glm::vec3 eulerAngles; + + Mesh* m_mesh = NULL; + + virtual void _Draw(Shader* shader, std::vector transform_stack = {}) = 0; + virtual void SetupDrawable() = 0; + + void Draw(Shader* shader) { + if (this->m_mesh == NULL) SetupDrawable(); + this->_Draw(shader); + } +}; \ No newline at end of file diff --git a/MCDV/MCDV.vcxproj b/MCDV/MCDV.vcxproj index 6dd754c..927f078 100644 --- a/MCDV/MCDV.vcxproj +++ b/MCDV/MCDV.vcxproj @@ -132,10 +132,12 @@ + + @@ -144,9 +146,11 @@ + + @@ -155,7 +159,12 @@ - + + true + + + false + @@ -171,10 +180,15 @@ + + + + + + - diff --git a/MCDV/MCDV.vcxproj.filters b/MCDV/MCDV.vcxproj.filters index ccce187..d9e3dcb 100644 --- a/MCDV/MCDV.vcxproj.filters +++ b/MCDV/MCDV.vcxproj.filters @@ -113,9 +113,6 @@ OpenGL\stb - - Header Files\valve - Header Files\math @@ -149,6 +146,24 @@ Header Files + + OpenGL\engine + + + OpenGL + + + Header Files\valve + + + Header Files\valve + + + OpenGL\engine + + + Header Files\valve + @@ -198,10 +213,25 @@ OpenGL\Shader Files - + OpenGL\Shader Files - + + OpenGL\Shader Files + + + OpenGL\Shader Files + + + OpenGL\Shader Files + + + OpenGL\Shader Files + + + OpenGL\Shader Files + + OpenGL\Shader Files diff --git a/MCDV/Mesh.hpp b/MCDV/Mesh.hpp index 77d6a1e..044c2c4 100644 --- a/MCDV/Mesh.hpp +++ b/MCDV/Mesh.hpp @@ -73,7 +73,7 @@ public: glEnableVertexAttribArray(0); // Normal vector - glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 6 * sizeof(float), (void*)(3 * sizeof(float))); + glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, 6 * sizeof(float), (void*)(3 * sizeof(float))); glEnableVertexAttribArray(1); } else if (mode == MeshMode::SCREEN_SPACE_UV) { diff --git a/MCDV/SSAOKernel.hpp b/MCDV/SSAOKernel.hpp new file mode 100644 index 0000000..c47aac9 --- /dev/null +++ b/MCDV/SSAOKernel.hpp @@ -0,0 +1,54 @@ +#pragma once +#include +#include +#include +#include "interpolation.h" +#include "Texture.hpp" + +#include +#include + +std::uniform_real_distribution randomFloats(0.0, 1.0); +std::default_random_engine generator; + +std::vector get_ssao_samples(int numSamples = 64) { + std::vector kernel; + for (int i = 0; i < numSamples; ++i) { + glm::vec3 sample( + randomFloats(generator) * 2.0 - 1.0, + randomFloats(generator) * 2.0 - 1.0, + randomFloats(generator) + ); + sample = glm::normalize(sample); + sample *= randomFloats(generator); + float scale = (float)i / (float)numSamples; + scale = lerpf(0.1f, 1.0f, scale * scale); + sample *= scale; + kernel.push_back(sample); + } + return kernel; +} + +class ssao_rotations_texture : public Texture { +public: + ssao_rotations_texture(int x = 4, int y = 4) { + std::vector noise; + + for (int i = 0; i < 65536; i++) { + glm::vec3 s( + randomFloats(generator) * 2.0 - 1.0, + randomFloats(generator) * 2.0 - 1.0, + 0.0f + ); + noise.push_back(s); + } + + glGenTextures(1, &this->texture_id); + glBindTexture(GL_TEXTURE_2D, this->texture_id); + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB16F, 256, 256, 0, GL_RGB, GL_FLOAT, &noise[0]); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); + glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); + } +}; \ No newline at end of file diff --git a/MCDV/Shader.hpp b/MCDV/Shader.hpp index f0b48ac..601f172 100644 --- a/MCDV/Shader.hpp +++ b/MCDV/Shader.hpp @@ -32,6 +32,7 @@ public: //Util functions void setBool(const std::string &name, bool value) const; void setInt(const std::string &name, int value) const; + void setUnsigned(const std::string &name, unsigned int value) const; void setFloat(const std::string &name, float value) const; void setMatrix(const std::string &name, glm::mat4 matrix) const; void setVec3(const std::string &name, glm::vec3 vector) const; @@ -39,6 +40,7 @@ public: void setVec3(const std::string &name, float v1, float v2, float v3) const; void setVec4(const std::string &name, float v1, float v2, float v3, float v4) const; void setVec4(const std::string &name, glm::vec4 vector) const; + void setFragDataLocation(const std::string& name, unsigned int location) const; unsigned int getUniformLocation(const std::string &name) const; }; @@ -139,6 +141,11 @@ void Shader::setInt(const std::string &name, int value) const glUniform1i(glGetUniformLocation(this->programID, name.c_str()), value); } +void Shader::setUnsigned(const std::string &name, unsigned int value) const +{ + glUniform1ui(glGetUniformLocation(this->programID, name.c_str()), value); +} + void Shader::setFloat(const std::string &name, float value) const { glUniform1f(glGetUniformLocation(this->programID, name.c_str()), value); @@ -179,4 +186,10 @@ void Shader::setVec4(const std::string &name, glm::vec4 vector) const glUniform4fv(glGetUniformLocation(this->programID, name.c_str()), 1, glm::value_ptr(vector)); +} + +void Shader::setFragDataLocation(const std::string& name, unsigned int location) const { + glBindFragDataLocation(this->programID, + location, + name.c_str()); } \ No newline at end of file diff --git a/MCDV/convexPolytope.h b/MCDV/convexPolytope.h index 4479382..2739fb7 100644 --- a/MCDV/convexPolytope.h +++ b/MCDV/convexPolytope.h @@ -133,10 +133,13 @@ namespace ray class Polytope { public: - Mesh * GeneratedMesh; + Mesh* GeneratedMesh; Mesh* ngonMesh; std::vector ngons; std::vector meshData; + std::map meshes; + + std::vector> triangles; glm::vec3 NWU; glm::vec3 SEL; diff --git a/MCDV/fonts/dina-r-background.png b/MCDV/fonts/dina-r-background.png index ba56ade5b049ce893879101cabfdc09ce763c0de..91769f06585cd09254ca909eab1beb99b507b533 100644 GIT binary patch delta 11487 zcma)icR1A#`1T=$$f&IBRb(9dB%AD&^|i7I*-5fK_DJ?7D)Jj4;~H)=r2YV{L20 zFC=7tlOJPiZ_95hjrx_i4n zaCG;ORC2d{=xXogE$?P)|G?Yb>wyd@>;L#A~|^&w*p^>`v*&PQ>X} zRHTZi55!5n?XT@0o2RAe^O{JDRVFDPe_fG%WUY8|??a7)l4raO1E_ zL}zK`ob7)`14qhXspX%-N8c|@Js6PQ`>^REJ~1t-71p;9IhbqUU~?sGM)9fd-y=!iOI(R_UhrMRS3SMjSymWPhnk#KBB zQPNKI*VWyh^no%gj2F+R_i;sbvVE8rf;aHbA8r!n0<;eG^zee~g--%xSnxyIzI)=9 zFQaC*eDeY&m=o+>T*Px;UC8K**!3fi>cnfErf8Uen~NNFj_9=uZMQ;#4*~?1cKupV z!Gn(B-8Og)6LE5^sOpgmTDY1q7j*u>;O1VfG2e{0=zAE}PmmNJ@#*pS^wuj-KVF_%WAA2<)IEXDeJ6n(SOtl`YoPT9m=M z(HuYcnIcZqM1t`_{ID}Nxus}T()(_YS7WN!ng^!Fq8bkcSJAhi7e5>L=hTv6AS~?M z+sTb-DGFr3^EF;jtL37HaF$DD#$>Hg&jPY~YaF3{sFR?~0ZGL$UW7E8o13?-`xFg3 zv*i!iVi-F%_d3yJWJKpgbF@q>AW1ZFG2;L%(9%|O(Un$+S=N`_xGb&g7)za0+@qZS^oR) zKWG6*@tn7(Xa9s7`-|G$2?9?#@!_KokEQnIAad?Rn;w3Bk!`lcovwZ;HNYpOH zLqSaO{hkkA7Z4CYq2Oo-0T$2bu7&3ZqUJPEA5VXFz@5B(_fCnArgLc^f6y5_v+L*S z>r31^od6}RUL5Mx_!Qni3mNkf!H1@mk$x@l2LbW$iJfo^yxMp@SPVvD9*9ht-pAoo)>rS(KTfFKrtU%pcBAGRPC)#pobBoL-{tKeQc_KQyt3Zk%&cEZ#i z4)rDmyjM(gYK=AJx}C8KSkrDt(NNrS7hqX{OccOOTX#V@ZaMlK0Sf-VF<+#wl)!@* ztCBz5_P)ClhyOw^GlsR#d}nxNR6$2ZL`;AWheeakcR$u0S#rOro!bf-K(tHGCG>=O zOU4=Sa<%&u>&atHuhdk>i?v@0@v0sFKc%96HvxYTYow zm3WaT?CsmPZDV8fpB98+u80&g_&@Wb*r|Ye$jHc0E!Oi52+L0h zGIGW;C>JFK#|6kx^wo7`l!vrEnhuQ8y-rX)61(Ng*N)RTF<=rz`S-X?`<|rF4{aj- zt((ovuK0n*)gy`(!wRj_)24!gx%nge)Boc42K@E%b2EQUxVJ_)WjkU`>Ee{>;t=KE zek~YT*|TvdlTVwRxGDo3id$}TsBf?1BN?|mJlc5FI&ncp463ga{YGHFPp}oD?wCyk zX|qBTXY>)4;&_x<)6~zRy|}3SboFp=b8CA*wsUoNE&(~>IQf&&3Me?czfYIatMnyH zl@mIhGDc~}15>byNb;tUx`n3%hnk4ecjxH0s++VfC5R_eTK?iHM|&BI3BeZjtxz+5EqNG=;moghA`}Ywl>-{h6-IVjZ0}yb{F7cl zP>|5E-$CTZzyFYbdUQ{z=nfPWaF!p_)9!J7TU)iLssNb; z?b0x~`_0x`LN?pr9&w)1CzXfKI1R@Rf>(gD}(5(w>1l8N}D0h!=9Xv9ZDVyTIBY%Mj=WPBf`+ zA$-C1!`#1r3=$F&br~%d)vv^ex{rfc;*`%JP*#!Fsz!_bITF;wFl_LAV6wvZVD4`p znCC4Q@Al4P@(Ohw@1N9-y?PbnElFNIa%1KYz!=zuC2}n023-~q@KmoXy!B+a`s+g` zXx|bi^~5V=M4o`nn%IFQ#aiRkO~@mfIl;Pq?0=IZmEd*2Ocz94h&f?)`+zb|S%~ps zgrQ+|h9Znb^>26Uxr6(c1TKCskjg&wt0 zU);V)6oxmxE)K&{6Bq83{re!mSRez&%Kl14HI%!Dhexn>={7H}Zp@{|v=XYVYwA|6 zwqrKJ%^FreCHdrI$2j{E!eN!XlfNwJFDyUCoug?id; z1CtKM{#Q{glnE=P9B^RXG(-W$sEc@t9BWFim2lR~@-hi-+55&h;C=Xf*N#}}Xzf217#KD}FoYP zr#E}%=jXrMu=~jZOz@_S+gNqX)_m>c&3y;7ckhrYMk(A{k0U$dxr3PGc$|QRts;pZ z@r-S4rlyN1L-!_f>L0GaMi3@1^u(@DIO{2<9V9_i)OqWekND^-nd-$|HIQk%p-5{8 zG4WLg6B=zDovq17)3b|ny>CHDL9_>2od;7V~JlWr=kl)mYt_`u(rCA0{v z?!TJfdK;`~k+H^2FNA_#h8cwl214Z3$YWDtRC&0%W zUH@AtU3-Byx%b73#j{SOBZJphXRI!7T8+5?Bmr2C5JQ|UA5FKlFx}x2a&m7!Kt|{j zG=l8$PD;&vXw*1mMfQIHaAPjq;`fBJ+LpcNj*b{Z}nBECJ01Sy>k~xAhin^V#L|(gRQ!pdm=! zIOdb^uKCBz`gDnO&0{rtGS;DrG%^x+Jk?f$>j>aBi6VmkU=!K9lljIE{ZUf+mLYtRbTw)$nM z1bn@di>2-0|y!MjzMToUQmGb4zS>4g( z`uh4xBqcvTe|}>_yDguz;O&@y3v>A}FIlG?A5BVkMTrK;>US1`<^mZ?*S+7RsoUQe zeyMB=bniIGl8hxwz!~}VHmlsS(&%kdQ%8S4Ij9yO+cE+B!7x^V%mJ}`7kEemNd$Xg ze}9XEnVH#QXnQROV_2`+zjB|C8`-1?uE88h2>gOjf-W%^xc2$tQlfG=5db;>GI2%U z%l8xOApWdtjXydRD8_Z$Kyh`v20sEX%>2hQk&}_lJ&p1nQ7tKH=|YQYkgLFtK(YSZ zeyqmt52@n4;@x}~X8d4*r!>CY^~==1(OH_|o_&ezEQa z-m4!A#{;P8nEOg~jhduu-jhTMXioWXxl-m2U&v6m4OL3-&oSdm#9q?6M$}|PR2QSp zgpj}g4gck{NtGkv9&R!}%EZX1%A2noeepY*OiD^>W+@+`afnxT70)R&s(=^Z^$P^& z1f2or$SmQJ3qCZ_IusG>*yQU=zRCX9C<~wHIuOF5K~?WuyJspzRR4};zytYre3I_q z0+s-pj`$_0Oc?nf%YlKjSM1M5v7mFch4KexL8S=1)J`GFx}SBJ&`vU@?fkkoQJeb` za16T0t*6TqF5*Ca5%@hPMZBnmOBK@3l3`Y1DqyhEBdQs==rKi?n5NDJz@DnkMgQQF z&{2@A_g&gRj=iXfb(&s9R!YjhQEP1NH6yFHffuM~lNXZ)K=y$pu_t{@ub&-vY?!bq z&CAQvtu*p{^e75o7ZMDRG5`}coQM6ELK{OY(ruSJXpvlK7u*vFiomLV?2Lxik5R^U zcloq-IaC?l*f|WeUM5aXAEqG^b|tA%Zsra<%*3La2XCP1#^g*4PingX_tBi2J-7AQn1KGUydfA52;qKd+8-Kt|Q#C?qjxb zlaB0c=2$E7$vsB}+r)Tn=-P~ zdeC)C@k#a_UruUyKANze`7!lj{}zj()rW%&!sGS~st@@@v&(%VS>2_WV>!SC1jvR$ z+@EJTjRvH=OiEaobFZF$s>MGFIUYf}hlj5KW)ajRAI~q&ArJ4WAdruPgGMwKXwa@7 z6U5@>$m&46zJ7z<_mA%aPmWBUYKk&MjI2fsEKNKgp~n)2$%9kHlM060>MjGAX@$C~ z&u-EeDi?uuM}BvN5F?CLaAhmYU$VWlqpgmj#KI(%Uw_1t=YB%|J#p z$JuKH=O+jGJO{ilMoEE@jp?_yIIrCB2&uMzNmw{FZUBAuDBY&wNrr z3{l?dtt8d6$@4q~d=d8dOP=ZWYDiPU=MV<0zFV>;H*~E~mL|-6cy;03`Kj|5nwzSh zT-L3@Y$I;EEJ8x_me+dX>~o8hJyq$Sel6*NUt|f431WC}XzR9br^MNy>MBb0WLI}h z$++--g5L@!zV~ck33w894V5GMScyYJMX7BSNF5oGP)KHRo!R zfF2{hFDeDhD#Wiq z0Gn3Q(8NYKR!4QRopn4P4WU&j&Z)NwP&fdR$Vm>#0$~f>SV15|v3leZy2-TCZv78( zdMo!LR6P&{j8NTNEa&8Y*Xr=~hq zcRw|~0=Ih1Wq{7bfjYCDm36>Q_<4ez>BQ>plXt9HnjH&XY>XFe8_l0kxHL?_)C3O# zUf}&f4ndcwmf|`hJ^NoGSuMbK_IeGLY-$q&+Z*jDb;O$n9j!2o;M9F=;;MNlnF|Dh zeb?&KGi2!aquk=$oI)rbeusTPuomp8?|IT+# z3Hqt-wJ{$z_9CMq(Hr1r#d>OXa^S3ha)I;PT(YgDL%uDGg0w8bm08hM>1g2~^pwa>$`V2VMfBFXCD z?&EWpMa(>IOth)Zq>~Yt14RS;4_IWFs;!cW$~qxV+<7Hj*#V+i5;BuvDu;s0*Nf@) zo;*|bj&QKEyn^A!tBYmNZ)$!PlX4MTyF$an6{B`E84MgXwR+VkqHptCV8j#*I(`(PH20FaSD%Hx zf&!(>my`sQ}5ab2a_vva< zZp4U>Mv;@cy}kWR6~m%}C@dsc)o}W+X}91~Fd6n!A`VY@SPfl*th@qtg;pVm@gDk& z?-58n`ewqFN7r_6LPPn#eqD503m7x2yUpongx?IBG?z=cbFP49`UjXW?t@E$K!YJ-_wXkXK{?n(a2?s<>nGA%;&Cpxj3s#*t zQzfQICHMWvvK=5_ZVk;`*vGEq@yZ+k??cXF1Yzy>To&IC__dq~Asi0(UGf3}{y=$^ zWwSVrs! z_!qw~c*RU(`7~6|(_|%0va@Oy>#_3}4%}IaZe5amamuXoaK?&PpKeJlM1C_2xM3WQK^v( zXe2+05Vm`fRVH=o)+PV5E1mVY{vN}e5X&@+f$)?u6`TY~+^_eS1}DZV6|Bft?!YVn z)D$AcQ{=zhFHq5>+`pa92fS-{-a_a8+Lgl4$p~d`3 z#9SKZYUg0E#iOsPS@b7cbo5Bk>h%TIVR>&1W3qz&!$3Q3OfW$i=quO*WPVmJX1}9Z zYuq(CnF}noxYFo`uT^{YcW%!1%F?MuT*5`Y@(5x zo#}yp37+BKhyh_(pgD?ic2^1elF@;R{=O;((g#fcy0JBy#G-bDgVnnG<^@*x{QD|a z>6Ji+2ELqR6^JUtyU#B5GO zN&V}Wm5>X5fG7`sZTY^b6VTjq&gRZ8fi{8D6zY{li|){hmKR?dM!sQXT* z3z~vQfisZ5joI6^D#HwZG}vwP0CD3aCqiLI6Yu0%ecr8g=oJhA|LHf*T9C z@Wkh3t>GR5j_B-cq1{!w#I=7&WS~-)hRdQ%WOf$b%AuoWV+KuZH%;&y*5X?yE&=2y z&j(v)qg|%cOLuP%J$_NWAoCN0?jB$ECJ2^bAb;93U#XCP*F$BZ@{1VOyIim&wQFfx z`u?2~^-Dvnkydy58P+Q}3clo-P+$Y;=(S5;4WkryMGik?%I~P3|C7ad?gm+ga zBqY!!^n7Eoo^E0zE(x3sDm-13u@6?rS7Nye96lp}L`Xi4Kg1Tgqw(qlQtL~Gg6No5 zey>Pd90&bDQ=&BTkmt{s>!kv1c8(orOU>eOw-7RNvqF?y>ohHm=K7(kco>DeG#&>Y zHuv-ULzC)}4nGi0cxD8?&Z)p&x?ZMG^*hwVf@Oap!}6<(IH-+lO_wcFUaj>cuteN> zqQnjkf6wxA+3Uwv8dv)2UaTjV_nPz3fLDQ-Ny?XmgSSJ2vb~+rx1dmIq$rS)GI#Dx z7BECTsoll?t7SiBZ{BS8YoS>mfXVX0d;f<>3w}XC@lbuAIdJdI z_cc332>T*F#dUv7YDxjM&kE*d)+M9s7GmHuD7VxAnkRi2j#(@KX74QzUVt_xGIg{6|pey3*20- zc4YOTwXCt0j!)ztJV`qrL)O?2TK%b;|5*ldt%hjcyubik8l#Hqbrz{UFB#+|$8Bn( zZECMSm5xmXQynF=67UN_k1;+9jc`jjk0%zyDu0H24mcnj2*D831o{NRk`)uaexD`8#TZK`1h(B5CQJmvL?XOIr< zg6%V)Q)OxkYzxia=F=$w&XX93X{FeLk-O$|D8es+WIeVpYtbRHNVkXOfqLR+{1{*# z;9-HEs@DAokj_yw`KG7p&OHVucNElO0m~m)gJ|HnR}51hGd~P2|E$@fGrkY% zH#q&Ua(XlNRTrA3K!pd+F&0yvoiZ|6w&s=&+b@IC!>#Nz?fMOP73Mbt(X4!DE0gShQ~EX{97hEqW8YJh@VYE9<@(TJ}uO})+st?U89-HEy7CX@o{v}={!E3li-Jk zZ9WpI>Ax*3$8SU+3i3~gWrB{P-5PF~f}??Io{Vp9ZsuR)$mxGR=@y$>GQFvBp$IxT ziB2f+qmizix`9(NxCP)LU(-B5i7pBM{cn{Y97Ly1#m;vDv>*>$cz=a0f zM@4WL003i9I;Tq$ZKE(b1lb&d%Z;|SR=N8HdnT@?(-gYJ3YK7R9;W~}k3|GLpFI|~AA_DPvswzIe!Dh-@NF21Al97qLq=}t z_OqZJz-xomOsK;{^T^IZN=Z8dk^nWE8ur#- z4E^wE%b&Qrk$2Y-!u}3}e`+!l@PI+Z@VH+sq2)}SD`7&y3+5n8OW{xld3fk9r5dgOFiqu3v&St(HBPdw>H5! zWcPR0c-!`Ox7Th(n;*lTSR|KCc1}ODx@9XkLjT7R^5V_GD_)d7RuBex$4kE!3!#6N zMjE7|A4|TnCY6-NhuLbNwc~Cq$+>>`A_vbNImz14oppmleb&2}Xxs8P8wEs~uFt;s zP!p`%RlIHQTd33BZ0_+CfNiCVBLmNh#?Th$IjuMMry0w5ZqXmB*|Uwelz-n#MD-fY133ZBv#$gWLkoEUi;2v0Cj7+~pdaX7~d zRgg&Jkb`?JbuNU$>?!);b8*|H`ZAZ#XM16GhGf3R}1EX022i`AV#wzdtC zmwO!ro(;8_Ff*g(|9I2x^^Xqwvni@0haWx1T*NyJwkyq{vYuVpHC>tFzR@4p+Pk9Mg(NE9&j)P1_@UR5^Kc*+ckzUHkRZJ|Z^`ueuD9#6EA zG!KZuu4H!C@Af&JB^}qROjqTZ&k>h!^WfdF+$lU6(~1-RWuJ4ES#d^A8hJ;m%j0C# z4y(T(&LN%e%NM*3V)yc$&)=kxy0&Q#U7~yaW2~Cb)pbFd3)YhchaGv?a<@D$vX$SN zQ^(k26|*+w4cI_qFc?ajU6^=lg2&;|EZ>dow2_m8dpBiASdJyJ-}qj0jNaK}sV5g) zmwi7P!71M`(Y?OT?}oU$H<+rGOS@)G4>CZlmC6C3U1lSmUDh);a|zQ)VuBz zTU6pXIuf2)HiJw)pbmf7JX!hS*VA;qKEEx@l*B+g;XrG}eA(3D{Rb~-$Oju+{(fM= zRwkJGmgH>~2X@^T+AWvqc|Sr>$1n;zFmr*{(Qw~sW1QOX>TXMQ+A~dV;L84%H+uc= z^mslZ-)NqyhTB^;4XotM5BWTm@l2m7L%sNq%iUJ-JVa1T+z9V_?zYC>pKot}(|^P? zPrBietYnY3SOCdxUNpgUd6)a$CA!(_V-6pT-vfM;s~^{k7Z1PvXyvFZB4+y_VATRv zYVcGVYzC&VU6+|--;Dn2TK93U&3dMfb-Yd;qnaa-XDgHMzPqSj?_7Q{h$W?0^4ze@ zrWrEQ-2VaU^DGV!{pcg&h}6}-K}EqtfkL6E)Kr!9P$=Sf zc#S3_g`a~D%mU*$E)q*cR^k0lQDd)RMfEXacu{e@sDw$v$5SHz_ah1tQEqWzjJ1uV zB<>nk!cOv>5T`T-+8TCSq%Ai%YN}QBH8AF{f85|1l9j~ zfP}p>9SQd-Vr!-;xrvBHC2CGn6$+6IYyOi>sFD^!2Go?~_5CM$9~$4Yc6zze;Lbq( z=!-CO3j+u7C7aLH-}|3E)6OgXy{xBE7I1lVU?nMtEKi}V^mmuLNmrz>BKzZ%GaMc5 z-m8k!wOjH(ySiTKt7i9-NeqiGH*HVcUEM@n#3qkNaa4jylx}sGqCOEXZ85=%b${j* zP106NgyyAP>x{c4KI64Mf3|r=d$qtjQ^9X8VlH)eGz)GCBxyLNk`CkIRJm!WBL)|} zbxTGuOwn0Oc+NO7;t-Td&bf&dvGDfn^l1$GF}Hz#ZC-10ISZu`ml z+^F+~oI$e56?%9ZZq;}q^5Qk*U+1D_l zTISXRH>PZ{aaC30F4cmjf)~ZosFX;LL*~0_BhK0R17s6?^`!;^Eu4=Kww0PD(9$q}qnI<4xHZ|k6RLGw|p~INDznP3n zqt3M={Sa4(qg!43+^3?F$Is@zvb;PMiCE}!{B=^QC z$GXYObQBEHDr@_P81$+38JaRfjju_4_K(JvlsV(%#L|?xXez{K!w%ApC zKKoNB$Zf~e@U4Jo&-!O>b(D3J(armf&FwqWNNi1wi1hXAGZAb-a@o2N;m)ls(b;tg zlQMc%R#w|{4W@#*dRGGXSL&W9aY9&k*E`v6@+W3FrG7sfErPJnq9AYKFKn@pwe9VX zP-%|1r#(FyDEKzGXl{IxClF{?qEQ9Um-s5y4j`E*jx>0#Wt*iI{k@X`=lEO|SI(5M-?Iq0i88Px65(H1&=Ky67J%dJTtp(Jqc1j3ha!rz7f9`yf$y-WG~^N zrabFE2Fl1fqW7cM6j}WGATUvl;*~7mH%t)8aq>GqDhBnC~`Se$>o;K<32)RC55^Ox>Fco5}{ zr$TiRHaC{v`!!ApZqiamc-+4q85KqOLOoCCPXa+JPfr!$O@MDq9v~!Z7tq==hKE2k zK^cxL`2gGz(S<1xy|jxIGH5;Wn|>Ifdzl14rQ4R1Xh`EopG63DrgQm=|Iy32kyWIx znXQ43=ah0}u2vGm;l3?=^=xr9urd#CF297SQw# zdG}6^H$fiijPv=D3~giIsifHrxrEG0Kp`!~r&q2>ePp6VwttW6xXugC!eeZ1dXW$lK_`S_fSo&muo-uT%{^vFWZ8qYQ}_&O z+DH=f=AdZ6V`RS$IVnR+Ot2G@`tJSvkB}Bh+z{)XogHXK5>is_qoav|J8NsfE5295 z+i_Z^78Y|`OJjgLg=0&Ap#F#dYEeCa)uw_G<1VCilh?AQpyI?)7_IZbE5^pgXkEvg zMd4}w23+S(P=hk{NZ$)&J$v>nDj2{mci4%D2;QTR|GuZ@Kg8ZR*h%^on`LHK^`MFM z-{A*|+oP6W7{e5@S?nLwn#hlBJ+d(qpr2?3%6pPp`?anCXp)NofOblpEm z?aZUUd`dYtAqId0($dn)&w3UYi-L<4vV+~~qLes8R-2E_iKF)SAHY+=UzwVj&BP+e z0oUun!rtk*xt!(L>Eojv;369=6`94m|USD7BCG z?c_Cd`}5_`CATX`mSZ~+8=`x0sw8!FbUg(Pt3$*=wCw2A0B`bdpYd}Ce#*nQGxHuo^h)P4-H&|3jTv1yBv+tWtRcW!MZ$ zEz^X&3JOP3nHJ<+}V*cKa!+-p8G zB$iC;3pXs;GFCA@6l99#OzWFXyZ7PbVLa=Vn#?c0HM#EAI5qp( zYxRrPusHv6ISv3C3pDB8kN2&kqZjxSDP#h7gF8EKkUyrjvpAA6LPo_`94vw~R4k#Z z)SJ#OERc2E>izP-F?9#s7U>6Ok*Kcxfh}6a)3jt%0m&I`al}m!P47R@teIQ^NRr|! z1B4Ku?3velcI1r@%XcyopojQDWlcZaVLAF+AiI+OrCMO2LGT%q{9~t7NC5a!SZ9@y zCg-J|YTH@GY#JaSv+M5;rsmdFxo^yM{C&eD54!@H51o8PfZ_ETAV#iU5evf0!%R(? zSfbb5GfxZI8>gz2%qfb!f90P+PWs{H8Lv{_5Gwfq0s4gQD3zSusnsAr;m4Mk%i*!5 zx5d&f+!%AKTi@Ni>~c2ee*TJH(F=xq1;bae#-TIU7+ci}^eDhCo?tfs<>PiMk6>sw zlPiY(!>c<)a$-Nnk#R=g+#n!IBY}XZ=W)hdPtjCQ9i3ZePwV?bB4Any$vy5u51p{q zq;+*??)PtsGDFY`7kwL9LgaoXyrDw*H~n~Yg#{&L!xGzh+JB?L_DZ)4k(>mx3V$Lo z3cwYp0pp~iO@?-XvaiR(hu3x%w*r7M0pYYXM(9IZvz~!^=x`Bh_r@oRmM!6-VZR<+ z(54Fr3W@>72k2p5afURkv$GSDr`q9s9_q+#vRB_yb2-(VCydN z(Op8RaZ07$w8Oa;I)yxMLaV>DN|8QoL09k++wnRZRNlumx4JtAe}{G2;sF71XZ9d@a4O2*Y7Ztn+XkvxtE#WV7Y1}jv*N%Z_gz(rlQAa2O?RCUaM6`zhXMnAT zo9LGqK-odfaWJ5PPqnQ00v30%KJA=qa}ido0_0$d{^DHAo%Q-5uRE|fsQ)(SI+JTv zAU_qp`a#C~O9RX#v6q>YA+JGmV$gB2px@FnGSuYCoR~h(S64blEH8oj3Y57~H#uc> zn^E9*gP_f4ROP5MXv^8%U85tjF&~ET5P)D~m6YlAbZ9vz0Ct&9p~~pv`g+y!SyI+{ zPeu?f73NKCV-`sCy$^dTxu^{7Gd1IAnM|FItIX8x_DBtRNve7txBu z%}D3lAyRuRBXlW$X;x?_aWrr%SiCAX=iAD$CADAn_>4BUI*pco-2Q6Njub}{Z$hLk z)e&FHLm$(wpCU9Ijt=yBgN|frue1wJKr=@Tv%+LctVuPBSx#I5DnuI=3{k(2U z^7`-aR)E<7;CLc?k6Ybp*Y{mx!KC9>ReVN&M#9h&OoJiUqd`aR($2lTz5e{Bckfyb z51UZZ7q~qXclIB`x){Qd5F-IzN_{O?h`)c6If$T0+yVg8Z*3FZ=wjHmZ8(WF}e2s!45TW2HCP!;!H7S-0VHvP^K&4jE?p5}qHz0XUG-$qn}1m#XA^R4FED1_^9toF zZ4rNyzUQC8eG}} z*`s{EV~Y%xt*eS^^TuEJ^%189j|y=PVN%VPlIrUN&r z%$ovu(2Sjb78X>8{@`%lufwf=uCJeyJwB+xxZq5IfNce^z|~OBmC$X8V*;4~Y|3N% z`+)P)S5D|42gLYg?>VA3OzR?Kk)3mp5wB~wy`))Vg&ELLMHmLOFU}MkoAw#qU?Bb= z^-oA^Ljx`O$Fs5r!Q(FBpR9=@+BtmXeV*YOOnbf~Xt^#EJrS*ZFMNizG;2HNnGQoE zM6qHFuB+6c!9dd(MG~ukb0q5xWug>vfpo#+YltfV=djWo>P<^<*iz39#Y@okE^MK9+uE3e1`E;twz9#+; zHR&TzqPt5L$4`Nmg1`X=Zd@Xmq>+oxcbWzEpZHK^QeQA>UglA2*7pJ{2HL-fa8{Q7 z=Xp;x`iN)SAlz|Uie-l9X(0lX$-IoG;k44tte4wnDi;cOIWl@3@t};M=;qd! zb4Q!Zg_xql9gi7mv35E5vrH-mJqqmNDViURFNH(Kg_M+B1*wC`;WJdKjOd*GWisc0 zeC-mDBZm{QaCBrYcg0xRjs58Mm=9E+si`U196m!E?1;79U2tO7yFHv!6VV7GZz01xN*ME=sws%HG8Zs;f?+j(n-UBqU58?%=hf)(@S3%6`= z{R(H`@3KtCd;q9HN~tv$fRj>V4DWyz3d=y)dFgL zaYVW~_tX{RySeG3P6O`*=VoH%tppaR`7lh!01D3ghyZ!*^*wlW)27E^pqEjN@1!7)Pa5o;5_1cwf| zynW4;;}zdVDZJp;S(Mc^#xLuBAko10a}ir1Yu$7aQv_k{Sx%e-Q)J>o3re(=|bCB~L&OU;gux=H0cJ$Y%?i=Bnl@%x<^_Dz3j za6W0@BOZsCLiQ^6%T0Z9nr4b`xMtjqh*gP~0b!vX87BdDilwcb=S^iKvgaggs2ML^ zxR4UM9ni#i8d{Efy(#1g0L|Cq=`cI^Db=ik6&y)vRI?~_wVUibiO3@%qxkg zXRdnVo1cvHE&TiLVS7j(s8>V>>Kp*Ut`AH0cmI%+BkGg2-h&ol+ckXVz)is<FiD1{vdV!ZJ z&_gR*n;G)+TebFMwD8!uC9dStDcS{ks!jLAceZl=vI%@p%hPL%F*h|;wSOl6PY1jk zHo5q?%HIq3ZT87tmPQoIe%EpJYcvCi1RV^7uG)l1oGO`Ru2=|R-WrTi>+kP$L9+w# zLx4Y`>8PkP7;9-Xs|uZ{nc_#Cd6-TSn>ufzz?xDGJAdo$iJW)35TzWryG9hPqF8)& zRNe3Q!q6fPyfWQiI5JJj<-7m3DNiTkdA{AcDBH?G$e&)dsWKvq>ZpP(dOgfBEN6D7 zX8c8P*4PrclqCZxknY@AV+KVoWMSPOVC|TTc<*>X4%NM$K0s)bK(&B$cTrNA2m2c+ zPVjzrH#sV6c#&+g?{ptU4Ri&lFbY0CzFEw>AHZF~kf|(9-`NX1>h{wVreUazPrjQ; z-9gv{#h@{GZlH5|kOulcKthTJaV(Gwy&@72N+Knx$TjTUY+bTJM{hoMtEb5waaqq* zf-U2(ObHzpVjrpGgg_(FD|!t6wHGKIpciYa$49GO^PY}4CgL~m-U35{Nk~jg%$G&) zpPu!gj!$1M4yYM081kgXD|=Plb9C&=?1s|loGqDgQi&KQo_&L;YHP(43vF{ zIkwa}Kg5XuB?tltZe?D#y2%UM*I*ZW+*0#N*3h|R z#f~NSb(qiKDf;L7`l2iGy{JLb>IE1hKqu-Bpe7;C4E7`qdD91t6B=^0eeyPSn8LzV zfK+wzKw0a$KTxQU0Hi6#60=Kw_5MQ5xCuDw5c4pgPX3_xU=&zN&UgH#i}oXm;@ z1hgF*12uKF5R6^vQRo|-Hd-??LmR0*x54=3=DjF zC42okn5~gQF`aYPHzZ=_){WjAjI^&hSZr4iwgQy#*c8pjO?~s80BZ^jU+l5ZCtSob zYyHx>CNyYSUSO+YLTof5(^Yb`2nv>MXY#zJ{D_@jlrfneaVU15y=7x-q~FRnd|mVY zMk?;}f#O=tS=!MMPYHxM{*RuIuPuXwD#>f`VZ#*U8M>Wo`3F^t^dWFfn0Uzh`ISBWmvvIQCvBRBdRtr&=38f2A*UVWQA z!(`QZCP$ul(YNs$x`V(>Mp@ORT8)ntaA=;MRy*g}Wb!hs+m;x5u4{N#^2Uzlc#!}_ zrd^d$7PLaVsog9C9Srqg9s@HC@R9%XtY@iI$x->zs_sV50w2Q_DQza0L~`F-8?1(4 z3_^IkqbR4$!ZY3h=@=1l=3sX&7EJ6UH1Q)Ie3R~F?he;l6X07v7Z=su+>caJ*e)qw znlHf@V>zg z_}ZZyr;Bw@rpk=pw-&B0p=$ZFC!@X`Iw1^BZb^-yTYY~nv{ugr` z6N=LdwQQ|<$;9Y3+8!G$^SO*bMUJ^g`O}d zu)%6ylk%Jcc@z8lL++a}x$&i~wrT$OoqYv>S=Cz!h~;@usm zXcmS(xHo@6yfU$5**dRdVE{0z@!@e`*0016x#sDMPE2nZ~E-Ho`Gu7 zGpez$uF$6AS^-}CEN7xPSd(({397{s!O)0ltVF3AhKheakU7^h@pS&nA!Lb_kV;M* zia%6BbOJb`^}BADU!Ia6L=HB3gdA&4AVV%@kX5MpZXNFLw4s$b&jGGMKF%nX z7VYSvt*y;{*ha7~;dv{WMRvHiXPnME-V3G&3?-~+QeMx`+J8=8)Du*3V^s+r3BfT@ z5q)kb?@6!R&^g^p*CCQ8!+-{YdwGzjmQUbM7JXD!)P*(MoG#Csz5V-Gty|B&PuAUo z@t-d)9&%;qIs!TfL=%*KG9^=at7WiBS-43VuM1132s5f!DAPOF=;aI5hzB(AwhN=4809 z_M1OCc)pcYUTIiDZqptdvDl`P!?D}}Bj2Nqq~<3XIrcGfYv6CP#yapdl{=+=qyNK4 zN)aL_7kX1`_`hW6c#Ts>k#AGcQWa%C_#R#Dseaxw&rM^0vkk_1*}5%h;`fl;_y&D` zD{0oA^y+D$JcV#8)xon;OfWU*wHN6Ygweqj8k=*v^`_xqyRy&01WdWWY}$dR$cOuC z5o^2X{=tDjNY=!o7js3Sa-tH4q7U&kMhDmAS!??R^i0YOPYp%}-f8!l(@>A|IF60e|n@ACwN(O zyOlBJGU-)Y30JYSUCvhyVrkv0;%QVcd-fTUTlpJ+7jm`QB9}W`kpRKxVU(1$$#fh zhAuJ=_gnqZl%Q&+bpZyw*)MzMvCF=VE+ZhH0g)jW7xfI>dp>0`JvrRJSyELPm-RKm z@zoUrCLtz)-!;?*t_iifYcr1|+_w*N+I4snAlhx!#iK6!29ptgEL>%?Lj^{I37hv% zydofyL%Cv^13BgulnHa|{z_*N`&3?&vX=`B-!4X9s3LLjPNx$V@th;w+CO|vZuKC^ zu!JWq6+iA-FVIE+dZ$*xYS@0i$sF9zlv7MSFy99}2^0G50mm2MRLjzqNz27?tNcra zlQ$oj34ihi4h};bD48qH*v>pXwScP|)1VY!Ht$*gy|viY5Xr7yc&sVHbmp@I`by-=Bf03FTrzgMyHF*H?9vUQM z_zOgx=L#7#alPeEeX2}=Ty`2V)n-lld*{+`p>;?VTrafk=h}cV(5A3jcRbSsrW-i; zYX6?oW`S8=*15pVKyypHTa)w=1NNSGFVvoimj_Fw0osoJ{aDhrI%xBmqy3##V6IA1 zFjTavn*=AZx!v+VPe}m#IHUod?P{>zMM}p#vuA zV6d}LagR%sdxYNYskThbx0Ox~*S}L!6f=N9r)Oqr@cflAdKef;S09|(ZJnv_EZ?mj zt-=N2u-d(UZ!6%iX1`+8IWiUohkAvuSTF%{uaAM{&7X+Sn(>u16^Z)cGlnSR?-rSq zy*3h1U&^t?UTM9W8U2iIWl&>3R{oM}>cpgg~jYxOF>+5CXwrJmKT% z)#>IWxyLCdvp(<+6KCG*geEBN$DXcrR*8C?I6>N1EpXx$vBq-2aKW-PrpFOSI~3k~ zx%CJ2;$e>ta>7h)DgayJq zcPhqU6QzXwep2eU z;P-2cA}^)maG3_Djf?5$fjT9_QIM1pc+%N(FMbR=W_+w7rCzD&0s?Ly%Siz5o`2b#W@{-5nnYDARVLV$jVOW#$szbo0Mm%nMn_hiC9Am`q`&8+DKkGAK+U$OxK zIcfbHXlDv=9v^O}kK|%09OMecK20N}TjmT5f5gY^Q9b+{&b9y46g{`hyS#^FJWbzD zmSOq>_w}I+B9snaG}LtqdQJaXZ3dGWMs^;gBgpOMH@E%M{|UUwfUy7!2mJi};^!*` z?h;&W($9+8m44>fUOkOsWn)_xI^Ga!8}g!pvqE4^4CW5E-ny$oP-gFB4{=iZEIN{8 zR)}m5C!<})Im0_?m~}JDLv=r&HOl?!T<1hZ=(E3t&E4OJrZEGYDn74TK;xI{Fpk`N z{3v4SdAxMyK%L0y$U85VqW#$I@DIV7Vh_AZ{<(;Xw2RNI<(+q?fBvcBZ^gc`b@Zv8 zXf4bN&r)Pb8j$qeRTzO07(Ksbl%1zL}HWI1C zIW+r}03%|lrlpbPT!z{R6EzxQtgwBJVC$a!>q?IUbv z)Z3^;jV?J`+(2qCyrSp|ay^djoMWM1f)RUKAL$7jb*(js|Gncl_Od50m}hh+ft;(W z;F`h8M$(_=t$=Hybb*wtlbc1+GgqRm4a7>yM@!?LIx*M+jKX=nNBd9aEGowQmM>5K z7S1wkY{SeCxbz$yaY+@;@@(~K?cdw5LL9b-e`N09O$GT @@ -79,7 +82,7 @@ std::string m_game_path; #endif #ifdef _DEBUG std::string m_mapfile_path = "sample_stuff/de_tavr_test"; -std::string m_game_path = "D:/SteamLibrary/steamapps/common/Counter-Strike Global Offensive/csgo_dev"; +std::string m_game_path = "D:/SteamLibrary/steamapps/common/Counter-Strike Global Offensive/csgo"; #endif //derived strings @@ -774,8 +777,7 @@ int app(int argc, const char** argv) { return 0; } -/* Entry point */ -#ifndef entry_point_testing + int main(int argc, const char** argv) { try { return app(argc, argv); @@ -786,7 +788,7 @@ int main(int argc, const char** argv) { return 1; } -#endif + /* @@ -800,3 +802,5 @@ It will force usage of the dedicated video device in the machine, which likely h extern "C" { _declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001; } + +#endif \ No newline at end of file diff --git a/MCDV/main2.cpp b/MCDV/main2.cpp index a586adb..beb67c4 100644 --- a/MCDV/main2.cpp +++ b/MCDV/main2.cpp @@ -1,18 +1,308 @@ #include "globals.h" - +#include "vmf_new.hpp" #ifdef entry_point_testing +#include +#include + #include #include #include +#include +#include + +#include "GBuffer.hpp" +#include "Shader.hpp" +#include "Mesh.hpp" +#include "Texture.hpp" +#include "GradientMap.hpp" +#include "SSAOKernel.hpp" +#include "tar_config.hpp" + +std::string m_game_path = "D:/SteamLibrary/steamapps/common/Counter-Strike Global Offensive/csgo"; + +void render_config(tar_config_layer layer); + +glm::mat4 g_mat4_viewm; +glm::mat4 g_mat4_projm; + +Shader* g_shader_gBuffer; +Shader* g_shader_iBuffer; +Shader* g_shader_comp; + +GBuffer* g_gbuffer; +GBuffer* g_gbuffer_clean; +MBuffer* g_mask_playspace; +MBuffer* g_mask_buyzone; +MBuffer* g_mask_objectives; + +vmf* g_vmf_file; +tar_config* g_tar_config; +BoundingBox g_vmf_info_bounds; + +Mesh* g_mesh_screen_quad; +Texture* g_texture_background; +Texture* g_texture_modulate; +std::vector g_ssao_samples; +Texture* g_ssao_rotations; + int main(){ - +#pragma region opengl_setup + glfwInit(); + glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); + glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3); + glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); + glfwWindowHint(GLFW_RESIZABLE, GL_FALSE); + + //glfwWindowHint(GLFW_VISIBLE, GL_FALSE); + + GLFWwindow* window = glfwCreateWindow(1024, 1024, "Ceci n'est pas une window", NULL, NULL); + + if (window == NULL) { + printf("GLFW died\n"); + glfwTerminate(); + return -1; + } + + glfwMakeContextCurrent(window); + + // Deal with GLAD + if (!gladLoadGLLoader((GLADloadproc)glfwGetProcAddress)) { + printf("GLAD died\n"); + return -1; + } + + const unsigned char* glver = glGetString(GL_VERSION); + printf("(required: min core 3.3.0) opengl version: %s\n", glver); +#pragma endregion + + vfilesys* filesys = new vfilesys(m_game_path + "/gameinfo.txt"); + + vmf::LinkVFileSystem(filesys); + g_vmf_file = vmf::from_file("sample_stuff/de_tavr_test.vmf"); + g_vmf_file->InitModelDict(); + g_tar_config = new tar_config(g_vmf_file); + g_vmf_info_bounds = g_vmf_file->getVisgroupBounds(g_tar_config->m_visgroup_layout); - system("PAUSE"); +#pragma region opengl_extra + + std::vector __meshData = { + -1, -1, + -1, 1, + 1, -1, + -1, 1, + 1, 1, + 1, -1 + }; + g_mesh_screen_quad = new Mesh(__meshData, MeshMode::SCREEN_SPACE_UV); + + // Set up shaders + g_shader_gBuffer = new Shader("shaders/gBuffer.vs", "shaders/gBuffer.fs"); + g_shader_iBuffer = new Shader("shaders/gBuffer.vs", "shaders/iBuffer.fs"); + g_shader_comp = new Shader("shaders/fullscreenbase.vs", "shaders/fullscreenbase.fs"); + + // Set up draw buffers + g_mask_playspace = new MBuffer(1024, 1024); + g_mask_objectives = new MBuffer(1024, 1024); + g_mask_buyzone = new MBuffer(1024, 1024); + g_gbuffer = new GBuffer(1024, 1024); + g_gbuffer_clean = new GBuffer(1024, 1024); + + // Setup camera projection matrices + g_mat4_projm = glm::ortho(-2000.0f, 2000.0f, -2000.0f, 2000.0f, -1024.0f, 1024.0f); + g_mat4_viewm = glm::lookAt(glm::vec3(0, 0, 0), glm::vec3(0.0f, -1.0f, 0.0f), glm::vec3(0, 0, 1)); + + // Load textures + g_texture_background = g_tar_config->m_texture_background;//new Texture("textures/grid.png"); + g_texture_modulate = new Texture("textures/modulate.png"); + g_ssao_samples = get_ssao_samples(256); + g_ssao_rotations = new ssao_rotations_texture(); + + glEnable(GL_DEPTH_TEST); + glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + glFrontFace(GL_CW); + + std::vector configs = g_vmf_file->get_entities_by_classname("tar_config"); + +#pragma endregion + + while (!glfwWindowShouldClose(window)) { + Sleep(1000); + + render_config(tar_config_layer()); + + glfwSwapBuffers(window); + glfwPollEvents(); + } + IL_EXIT: + glfwTerminate(); return 0; } +#endif + +void render_config(tar_config_layer layer) { + // G BUFFER GENERATION ====================================================================================== +#pragma region buffer_gen_geo + + g_gbuffer->Bind(); + + glClearColor(0.0, 0.0, 0.0, 1.0); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + glEnable(GL_CULL_FACE); + glCullFace(GL_BACK); + + g_shader_gBuffer->use(); + g_shader_gBuffer->setMatrix("projection", g_mat4_projm); + g_shader_gBuffer->setMatrix("view", g_mat4_viewm); + + glm::mat4 model = glm::mat4(); + g_shader_gBuffer->setMatrix("model", model); + + // Draw everything + g_vmf_file->SetFilters({}, { "func_detail", "prop_static" }); + g_vmf_file->DrawWorld(g_shader_gBuffer); + g_vmf_file->DrawEntities(g_shader_gBuffer); + + // Clear depth + glClear(GL_DEPTH_BUFFER_BIT); + + // Render again BUT JUST THE IMPORTANT BITS + g_vmf_file->SetFilters({ g_tar_config->m_visgroup_layout, g_tar_config->m_visgroup_mask }, { "func_detail", "prop_static" }); + g_vmf_file->DrawWorld(g_shader_gBuffer); + g_vmf_file->DrawEntities(g_shader_gBuffer); + + g_vmf_file->SetFilters({ g_tar_config->m_visgroup_overlap }, { "func_detail", "prop_static" }); + g_vmf_file->DrawWorld(g_shader_gBuffer, {}, TAR_MIBUFFER_OVERLAP); + g_vmf_file->DrawEntities(g_shader_gBuffer, {}, TAR_MIBUFFER_OVERLAP); + + // Draw cover with cover flag set + g_vmf_file->SetFilters({ g_tar_config->m_visgroup_cover }, { "func_detail", "prop_static" }); + g_vmf_file->DrawWorld(g_shader_gBuffer, {}, TAR_MIBUFFER_COVER0); + g_vmf_file->DrawEntities(g_shader_gBuffer, {}, TAR_MIBUFFER_COVER0); + + GBuffer::Unbind(); + + g_gbuffer_clean->Bind(); + glClearColor(0.0, 0.0, 0.0, 1.0); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + g_vmf_file->SetFilters({ g_tar_config->m_visgroup_layout, g_tar_config->m_visgroup_mask }, { "func_detail", "prop_static" }); + g_vmf_file->DrawWorld(g_shader_gBuffer); + g_vmf_file->DrawEntities(g_shader_gBuffer); + + GBuffer::Unbind(); + +#pragma endregion + +#pragma region mask_gen + + g_mask_playspace->Bind(); + glClearColor(0.0, 0.0, 0.0, 1.0); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + g_shader_iBuffer->use(); + g_shader_iBuffer->setMatrix("projection", g_mat4_projm); + g_shader_iBuffer->setMatrix("view", g_mat4_viewm); + + // LAYOUT ================================================================ + + g_shader_iBuffer->setUnsigned("srcChr", 0x1U); + g_vmf_file->SetFilters({ g_tar_config->m_visgroup_layout }, { "func_detail", "prop_static" }); + g_vmf_file->DrawWorld(g_shader_iBuffer); + g_vmf_file->DrawEntities(g_shader_iBuffer); + + // Subtractive brushes + g_shader_iBuffer->setUnsigned("srcChr", 0x0U); + g_vmf_file->SetFilters({ g_tar_config->m_visgroup_mask }, { "func_detail", "prop_static" }); + g_vmf_file->DrawWorld(g_shader_iBuffer); + g_vmf_file->DrawEntities(g_shader_iBuffer); + + // OBJECTIVES ============================================================ + + g_mask_objectives->Bind(); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + g_shader_iBuffer->setUnsigned("srcChr", 0x1U); + g_vmf_file->SetFilters({}, { "func_bomb_target", "func_hostage_rescue" }); + g_vmf_file->DrawEntities(g_shader_iBuffer); + + // BUY ZONES ============================================================= + + g_mask_buyzone->Bind(); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + + g_shader_iBuffer->setUnsigned("srcChr", 0x1U); + g_vmf_file->SetFilters({}, { "func_buyzone" }); + g_vmf_file->DrawEntities(g_shader_iBuffer); + +#pragma endregion + + // FINAL COMPOSITE =============================================================== +#pragma region final_composite + + MBuffer::Unbind(); // Release any frame buffer + + glClearColor(0.0, 0.0, 0.0, 1.0); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + glPolygonMode(GL_FRONT_AND_BACK, GL_FILL); + glDisable(GL_CULL_FACE); + + g_shader_comp->use(); + + // Bind RT's + //g_texture_background->bindOnSlot ( 0 ); + //g_shader_comp->setInt("tex_background", 0 ); + + g_tar_config->m_texture_gradient->bindOnSlot( 1 ); + g_shader_comp->setInt("tex_gradient", 1 ); + + g_gbuffer->BindPositionBufferToTexSlot ( 2 ); + g_shader_comp->setInt("gbuffer_position", 2 ); + + g_gbuffer->BindNormalBufferToTexSlot ( 3 ); + g_shader_comp->setInt("gbuffer_normal", 3 ); + + g_gbuffer->BindInfoBufferToTexSlot ( 4 ); + g_shader_comp->setInt("gbuffer_info", 4 ); + + g_mask_playspace->BindMaskBufferToTexSlot ( 5 ); + g_shader_comp->setInt("umask_playspace", 5 ); + + g_mask_objectives->BindMaskBufferToTexSlot( 6 ); + g_shader_comp->setInt("umask_objectives", 6 ); + + g_mask_buyzone->BindMaskBufferToTexSlot ( 7 ); + g_shader_comp->setInt("umask_buyzone", 7 ); + + g_gbuffer_clean->BindPositionBufferToTexSlot(8); + g_shader_comp->setInt("gbuffer_clean_position", 8); + + g_texture_modulate->bindOnSlot(10); + g_shader_comp->setInt("tex_modulate", 10); + + g_ssao_rotations->bindOnSlot ( 9 ); + g_shader_comp->setInt("ssaoRotations", 9 ); + g_shader_comp->setFloat("ssaoScale", 1000.0f); + g_shader_comp->setMatrix("projection", g_mat4_projm); + g_shader_comp->setMatrix("view", g_mat4_viewm); + + for (int i = 0; i < 256; i++) { + g_shader_comp->setVec3("samples[" + std::to_string(i) + "]", g_ssao_samples[i]); + } + + // Bind uniforms + g_shader_comp->setVec3("bounds_NWU", g_vmf_info_bounds.NWU); + g_shader_comp->setVec3("bounds_SEL", g_vmf_info_bounds.SEL); + + g_shader_comp->setVec4("color_objective", g_tar_config->m_color_objective); + g_shader_comp->setVec4("color_buyzone", g_tar_config->m_color_buyzone); + g_shader_comp->setVec4("color_cover", g_tar_config->m_color_cover); + g_shader_comp->setVec4("color_cover2", g_tar_config->m_color_cover2); -#endif \ No newline at end of file + g_mesh_screen_quad->Draw(); +#pragma endregion +} \ No newline at end of file diff --git a/MCDV/plane.h b/MCDV/plane.h index 914a7b7..cad40d4 100644 --- a/MCDV/plane.h +++ b/MCDV/plane.h @@ -16,6 +16,8 @@ public: glm::vec3 normal; float offset; + int textureID = 0; + //Plane defined by three points Plane(glm::vec3 P, glm::vec3 Q, glm::vec3 R) { glm::vec3 n = glm::cross(P - Q, P - R); //Calculate normal @@ -135,7 +137,7 @@ public: float sign = glm::dot(glm::cross(diff, ref), plane.normal) < 0 ? -1.0f : 1.0f; ang *= sign; - + angledVecs.push_back(glm::vec4(Points[i].x, Points[i].y, Points[i].z, ang)); } @@ -165,4 +167,49 @@ public: return Points; } + + static void InPlaceOrderCoplanarClockWise(Plane plane, std::vector* Points){ + if (Points->size() == 0) return; + + //Find center point (avarage distribution of points) + glm::vec3 center(0, 0, 0); + for (int i = 0; i < Points->size(); i++) { + center += (*Points)[i]; + } + center /= Points->size(); + + glm::vec3 ref = (*Points)[0] - center; + + std::vector angledVecs; + + for (int i = 0; i < Points->size(); i++) { + glm::vec3 diff = (*Points)[i] - center; + float ang = atan2(glm::length(glm::cross(diff, ref)), glm::dot(diff, ref)); + + float sign = glm::dot(glm::cross(diff, ref), plane.normal) < 0 ? -1.0f : 1.0f; + ang *= sign; + + angledVecs.push_back(glm::vec4((*Points)[i].x, (*Points)[i].y, (*Points)[i].z, ang)); + } + + while (true){ + bool modified = false; + + for (int i = 0; i < Points->size() - 1; i++){ + int s0 = i; int s1 = i + 1; + + glm::vec4 a = angledVecs[s0]; glm::vec4 b = angledVecs[s1]; + + if (a.w > b.w){ + angledVecs[s0] = b; angledVecs[s1] = a; + modified = true; + } + } + if (!modified) break; + } + + for (int i = 0; i < Points->size(); i++){ + (*Points)[i] = glm::vec3(angledVecs[i].x, angledVecs[i].y, angledVecs[i].z); + } + } }; \ No newline at end of file diff --git a/MCDV/sample_stuff/cs_apollo_b29.vmx b/MCDV/sample_stuff/cs_apollo_b29.vmx new file mode 100644 index 0000000..4e997ed --- /dev/null +++ b/MCDV/sample_stuff/cs_apollo_b29.vmx @@ -0,0 +1,650468 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "8075" + "mapversion" "5812" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ + visgroup + { + "name" "less lights" + "visgroupid" "23" + "color" "131 240 161" + } + visgroup + { + "name" "tar_layout" + "visgroupid" "25" + "color" "247 148 133" + } + visgroup + { + "name" "tar_mask" + "visgroupid" "26" + "color" "160 81 230" + } + visgroup + { + "name" "tar_cover" + "visgroupid" "27" + "color" "213 122 195" + } +} +viewsettings +{ + "bSnapToGrid" "0" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "1" + "bShow3DGrid" "1" +} +world +{ + "id" "1" + "mapversion" "5812" + "classname" "worldspawn" + "detailmaterial" "detail/detailsprites" + "detailvbsp" "detail.vbsp" + "maxpropscreenwidth" "-1" + "skyname" "nukeblank" + solid + { + "id" "8415918" + side + { + "id" "390718" + "plane" "(-408 -2544 136) (-408 -2544 0) (-408 -2528 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 303] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390717" + "plane" "(-408 -2528 136) (-408 -2528 0) (-400 -2528 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390716" + "plane" "(-408 -2544 0) (-408 -2544 136) (-400 -2544 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390715" + "plane" "(-400 -2544 136) (-408 -2544 136) (-408 -2528 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" "390714" + "plane" "(-400 -2528 136) (-400 -2528 0) (-400 -2544 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" "390713" + "plane" "(-400 -2528 0) (-408 -2528 0) (-408 -2544 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" + } + editor + { + "color" "0 199 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8415919" + side + { + "id" "390724" + "plane" "(-400 -2528 -32) (-408 -2528 -32) (-408 -2544 -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" "390723" + "plane" "(-408 -2544 0) (-408 -2544 -32) (-408 -2528 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390722" + "plane" "(-408 -2528 0) (-408 -2528 -32) (-400 -2528 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -1011] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390721" + "plane" "(-400 -2544 -32) (-408 -2544 -32) (-408 -2544 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390720" + "plane" "(-400 -2528 0) (-400 -2528 -32) (-400 -2544 -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" "390719" + "plane" "(-400 -2544 0) (-408 -2544 0) (-408 -2528 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" + } + editor + { + "color" "0 199 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8415921" + side + { + "id" "390736" + "plane" "(-223.988 -2528 -32) (-400 -2528 -32) (-400 -2544 -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" "390735" + "plane" "(-400 -2528 -32) (-224 -2528 -32) (-224 -2528 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -1011] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390734" + "plane" "(-224 -2528 0) (-224 -2528 -32) (-208 -2544 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.707107 -0.707107 0 -476.387] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390733" + "plane" "(-208 -2544 0) (-208 -2544 -32) (-400 -2544 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -498.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390732" + "plane" "(-400 -2544 0) (-400 -2544 -32) (-400 -2528 -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" "390731" + "plane" "(-400 -2528 0) (-224 -2528 0) (-208 -2544 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" + } + editor + { + "color" "0 199 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8415926" + side + { + "id" "390766" + "plane" "(-144 -2640 -32) (-144 -2896 -32) (-128 -2896 -32)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390765" + "plane" "(-144 -2896 0) (-144 -2896 -32) (-144 -2640 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390764" + "plane" "(-128 -2624 0) (-128 -2624 -32) (-128 -2896 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 -1 0 -180.877] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390763" + "plane" "(-144 -2640 0) (-144 -2640 -32) (-128 -2624 -32)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390762" + "plane" "(-128 -2896 0) (-128 -2896 -32) (-144 -2896 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390761" + "plane" "(-144 -2896 0) (-144 -2640 0) (-128 -2624 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8416007" + side + { + "id" "390784" + "plane" "(-144 -2896 136) (-144 -2896 8) (-144 -2640 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390783" + "plane" "(-128 -2624 136) (-128 -2624 8) (-128 -2896 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390782" + "plane" "(-144 -2640 136) (-144 -2640 8) (-128 -2624 8)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390781" + "plane" "(-128 -2896 136) (-128 -2896 8) (-144 -2896 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390780" + "plane" "(-144 -2896 136) (-144 -2640 136) (-128 -2624 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" "390779" + "plane" "(-144 -2640 8) (-144 -2896 8) (-128 -2896 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8416008" + side + { + "id" "390790" + "plane" "(-144 -2896 8) (-144 -2896 0) (-144 -2640 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 -1 0 -448] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390789" + "plane" "(-128 -2624 8) (-128 -2624 0) (-128 -2896 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 -1 0 -544.939] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390788" + "plane" "(-144 -2640 8) (-144 -2640 0) (-128 -2624 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390787" + "plane" "(-128 -2896 8) (-128 -2896 0) (-144 -2896 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390786" + "plane" "(-144 -2640 0) (-144 -2896 0) (-128 -2896 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390785" + "plane" "(-144 -2896 8) (-144 -2640 8) (-128 -2624 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8416009" + side + { + "id" "390796" + "plane" "(-224 -2528 8) (-224 -2528 136) (-400 -2528 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 47] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390795" + "plane" "(-224 -2528 136) (-224 -2528 8) (-208 -2544 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 303] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390794" + "plane" "(-208 -2544 136) (-208 -2544 8) (-400 -2544 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 47] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390793" + "plane" "(-400 -2528 136) (-224 -2528 136) (-208 -2544 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" "390792" + "plane" "(-400 -2544 136) (-400 -2544 8) (-400 -2528 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" "390791" + "plane" "(-223.988 -2528 8) (-400 -2528 8) (-400 -2544 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8416010" + side + { + "id" "390802" + "plane" "(-224 -2528 0) (-224 -2528 8) (-400 -2528 8)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390801" + "plane" "(-224 -2528 8) (-224 -2528 0) (-208 -2544 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0.707107 -0.707107 0 -1204.69] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390800" + "plane" "(-208 -2544 8) (-208 -2544 0) (-400 -2544 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390799" + "plane" "(-400 -2544 8) (-400 -2544 0) (-400 -2528 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" "390798" + "plane" "(-223.988 -2528 0) (-400 -2528 0) (-400 -2544 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" "390797" + "plane" "(-400 -2528 8) (-224 -2528 8) (-208 -2544 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8373958" + side + { + "id" "390190" + "plane" "(1040 -4216 400) (1040 -4200 400) (1527 -4200 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" "390189" + "plane" "(1040 -4200 308) (1040 -4200 400) (1040 -4216 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390188" + "plane" "(1527 -4216 308) (1527 -4216 400) (1527 -4200 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390187" + "plane" "(1527 -4200 308) (1527 -4200 400) (1040 -4200 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390186" + "plane" "(1040 -4216 308) (1040 -4216 400) (1527 -4216 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390185" + "plane" "(1040 -4200 308) (1040 -4216 308) (1527 -4216 308)" + "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 100 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374070" + side + { + "id" "390202" + "plane" "(1040 -4216 308) (1040 -4216 276) (1040 -4200 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390201" + "plane" "(1527 -4200 308) (1527 -4200 276) (1527 -4216 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390200" + "plane" "(1040 -4200 308) (1040 -4200 276) (1527 -4200 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390199" + "plane" "(1527 -4216 308) (1527 -4216 276) (1040 -4216 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390198" + "plane" "(1040 -4216 308) (1040 -4200 308) (1527 -4200 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390197" + "plane" "(1040 -4200 276) (1040 -4216 276) (1527 -4216 276)" + "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 100 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374071" + side + { + "id" "390208" + "plane" "(1040 -4216 276) (1040 -4216 172) (1040 -4200 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390207" + "plane" "(1527 -4200 276) (1527 -4200 172) (1527 -4216 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390206" + "plane" "(1040 -4200 276) (1040 -4200 172) (1527 -4200 172)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390205" + "plane" "(1527 -4216 276) (1527 -4216 172) (1040 -4216 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390204" + "plane" "(1040 -4200 172) (1040 -4216 172) (1527 -4216 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390203" + "plane" "(1040 -4216 276) (1040 -4200 276) (1527 -4200 276)" + "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 100 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374220" + side + { + "id" "390256" + "plane" "(1024 -4704 308) (1024 -4704 276) (1024 -4200 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 447.996] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390255" + "plane" "(1040 -4200 308) (1040 -4200 276) (1040 -4704 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390254" + "plane" "(1040 -4704 308) (1040 -4704 276) (1024 -4704 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390253" + "plane" "(1024 -4200 308) (1024 -4200 276) (1040 -4200 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390252" + "plane" "(1024 -4704 308) (1024 -4200 308) (1040 -4200 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390251" + "plane" "(1024 -4200 276) (1024 -4704 276) (1040 -4704 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 107 0" + "groupid" "5431283" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374221" + side + { + "id" "390262" + "plane" "(1024 -4704 276) (1024 -4704 192) (1024 -4200 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 448.004] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390261" + "plane" "(1040 -4200 276) (1040 -4200 192) (1040 -4704 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390260" + "plane" "(1040 -4704 276) (1040 -4704 192) (1024 -4704 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" "390259" + "plane" "(1024 -4200 276) (1024 -4200 192) (1040 -4200 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390258" + "plane" "(1024 -4200 192) (1024 -4704 192) (1040 -4704 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" "390257" + "plane" "(1024 -4704 276) (1024 -4200 276) (1040 -4200 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 107 0" + "groupid" "5431283" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374222" + side + { + "id" "390268" + "plane" "(1024 -4704 192) (1024 -4704 172) (1024 -4200 172)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 448.004] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390267" + "plane" "(1040 -4200 192) (1040 -4200 172) (1040 -4704 172)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0.00390625] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390266" + "plane" "(1040 -4704 192) (1040 -4704 172) (1024 -4704 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390265" + "plane" "(1024 -4200 192) (1024 -4200 172) (1040 -4200 172)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390264" + "plane" "(1024 -4200 172) (1024 -4704 172) (1040 -4704 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390263" + "plane" "(1024 -4704 192) (1024 -4200 192) (1040 -4200 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" "246 107 0" + "groupid" "5431283" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374223" + side + { + "id" "390274" + "plane" "(1024 -4352 48) (1024 -4200 48) (1024 -4200 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 383.998] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390273" + "plane" "(1040 -4200 156) (1040 -4200 48) (1040 -4352 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390272" + "plane" "(1024 -4200 156) (1024 -4200 48) (1040 -4200 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.996] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390271" + "plane" "(1024 -4352 156) (1024 -4200 156) (1040 -4200 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390270" + "plane" "(1024 -4200 48) (1024 -4352 48) (1040 -4352 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" "390269" + "plane" "(1040 -4352 156) (1040 -4352 48) (1024 -4352 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" "246 107 0" + "groupid" "5431283" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374224" + side + { + "id" "390280" + "plane" "(1040 -4216 0) (1040 -4272 0) (1392 -4272 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" "390279" + "plane" "(1040 -4272 0) (1040 -4216 0) (1040 -4216 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" "390278" + "plane" "(1392 -4216 0) (1392 -4272 0) (1392 -4272 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" "390277" + "plane" "(1040 -4216 0) (1392 -4216 0) (1392 -4216 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" "390276" + "plane" "(1392 -4272 0) (1040 -4272 0) (1040 -4272 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390275" + "plane" "(1040 -4272 160) (1040 -4216 160) (1392 -4216 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" + } + editor + { + "color" "246 107 0" + "groupid" "5431283" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374225" + side + { + "id" "390286" + "plane" "(1040 -4272 304) (1040 -4216 304) (1392 -4216 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" "390285" + "plane" "(1040 -4216 276) (1040 -4216 304) (1040 -4272 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" "390284" + "plane" "(1392 -4272 276) (1392 -4272 304) (1392 -4216 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" "390283" + "plane" "(1392 -4216 276) (1392 -4216 304) (1040 -4216 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390282" + "plane" "(1040 -4272 276) (1040 -4272 304) (1392 -4272 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390281" + "plane" "(1040 -4216 276) (1040 -4272 276) (1392 -4272 276)" + "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" "246 107 0" + "groupid" "5431283" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374226" + side + { + "id" "390292" + "plane" "(1040 -4216 192) (1040 -4216 276) (1040 -4272 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390291" + "plane" "(1392 -4272 192) (1392 -4272 276) (1392 -4216 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390290" + "plane" "(1392 -4216 192) (1392 -4216 276) (1040 -4216 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390289" + "plane" "(1040 -4272 192) (1040 -4272 276) (1392 -4272 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390288" + "plane" "(1040 -4216 192) (1040 -4272 192) (1392 -4272 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" "390287" + "plane" "(1040 -4272 276) (1040 -4216 276) (1392 -4216 276)" + "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" "246 107 0" + "groupid" "5431283" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374227" + side + { + "id" "390298" + "plane" "(1040 -4216 160) (1040 -4216 192) (1040 -4272 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" "390297" + "plane" "(1392 -4272 160) (1392 -4272 192) (1392 -4216 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" "390296" + "plane" "(1392 -4216 160) (1392 -4216 192) (1040 -4216 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" "390295" + "plane" "(1040 -4272 160) (1040 -4272 192) (1392 -4272 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -511.988] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390294" + "plane" "(1040 -4216 160) (1040 -4272 160) (1392 -4272 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" "390293" + "plane" "(1040 -4272 192) (1040 -4216 192) (1392 -4216 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" "246 107 0" + "groupid" "5431283" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374228" + side + { + "id" "390304" + "plane" "(1024 -4704 400) (1024 -4704 308) (1024 -4200 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 448.004] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390303" + "plane" "(1040 -4200 400) (1040 -4200 308) (1040 -4704 308)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390302" + "plane" "(1040 -4704 400) (1040 -4704 308) (1024 -4704 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390301" + "plane" "(1024 -4200 400) (1024 -4200 308) (1040 -4200 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390300" + "plane" "(1024 -4704 400) (1024 -4200 400) (1040 -4200 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" "390299" + "plane" "(1024 -4200 308) (1024 -4704 308) (1040 -4704 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 107 0" + "groupid" "5431283" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374280" + side + { + "id" "390316" + "plane" "(1591 -4216 400) (1527 -4216 400) (1527 -4200 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" "390315" + "plane" "(1527 -4200 308) (1527 -4200 400) (1527 -4216 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390314" + "plane" "(1591 -4200 308) (1591 -4200 400) (1527 -4200 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390313" + "plane" "(1527 -4216 308) (1527 -4216 400) (1591 -4216 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390312" + "plane" "(1591 -4216 308) (1591 -4216 400) (1591 -4200 400)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 0] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390311" + "plane" "(1591 -4200 308) (1527 -4200 308) (1527 -4216 308)" + "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 131 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374295" + side + { + "id" "390322" + "plane" "(1527 -4216 308) (1527 -4216 276) (1527 -4200 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390321" + "plane" "(1527 -4200 308) (1527 -4200 276) (1591 -4200 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390320" + "plane" "(1591 -4216 308) (1591 -4216 276) (1527 -4216 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390319" + "plane" "(1591 -4200 308) (1591 -4200 276) (1591 -4216 276)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 0] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390318" + "plane" "(1591 -4216 308) (1527 -4216 308) (1527 -4200 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390317" + "plane" "(1591 -4200 276) (1527 -4200 276) (1527 -4216 276)" + "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 131 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374296" + side + { + "id" "390328" + "plane" "(1527 -4216 276) (1527 -4216 192) (1527 -4200 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" "390327" + "plane" "(1527 -4200 276) (1527 -4200 192) (1591 -4200 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390326" + "plane" "(1591 -4216 276) (1591 -4216 192) (1527 -4216 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390325" + "plane" "(1591 -4200 276) (1591 -4200 192) (1591 -4216 192)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 0] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390324" + "plane" "(1591 -4200 192) (1527 -4200 192) (1527 -4216 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" "390323" + "plane" "(1591 -4216 276) (1527 -4216 276) (1527 -4200 276)" + "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 131 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374314" + side + { + "id" "390334" + "plane" "(2048 -4216 400) (1591 -4216 400) (1591 -4200 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" "390333" + "plane" "(2048 -4200 400) (1591 -4200 400) (1591 -4200 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390332" + "plane" "(1591 -4216 308) (1591 -4216 400) (2048 -4216 400)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390331" + "plane" "(1591 -4200 308) (1591 -4200 400) (1591 -4216 400)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390330" + "plane" "(2048 -4216 308) (2048 -4216 400) (2048 -4200 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -191.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390329" + "plane" "(2048 -4200 308) (1591 -4200 308) (1591 -4216 308)" + "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 179 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374336" + side + { + "id" "390346" + "plane" "(1591 -4200 308) (1591 -4200 276) (2048 -4200 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390345" + "plane" "(2048 -4216 308) (2048 -4216 276) (1591 -4216 276)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390344" + "plane" "(1591 -4216 308) (1591 -4216 276) (1591 -4200 276)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390343" + "plane" "(2048 -4200 308) (2048 -4200 276) (2048 -4216 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390342" + "plane" "(2048 -4216 308) (1591 -4216 308) (1591 -4200 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390341" + "plane" "(2048 -4200 276) (1591 -4200 276) (1591 -4216 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 179 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374337" + side + { + "id" "390352" + "plane" "(1591 -4200 276) (1591 -4200 272) (2048 -4200 272)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390351" + "plane" "(2048 -4216 276) (2048 -4216 272) (1591 -4216 272)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390350" + "plane" "(1591 -4216 276) (1591 -4216 272) (1591 -4200 272)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390349" + "plane" "(2048 -4200 272) (1591 -4200 272) (1591 -4216 272)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 -601.332] 0.15" + "vaxis" "[0 -1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390348" + "plane" "(2048 -4200 276) (2048 -4200 272) (2048 -4216 272)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -191.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390347" + "plane" "(2048 -4216 276) (1591 -4216 276) (1591 -4200 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 179 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374388" + side + { + "id" "390358" + "plane" "(2085 -4288 400) (2048 -4288 400) (2048 -4208 400)" + "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" "390357" + "plane" "(2048 -4208 308) (2048 -4208 400) (2048 -4288 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 -1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390356" + "plane" "(2085 -4208 308) (2085 -4208 400) (2048 -4208 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390355" + "plane" "(2048 -4288 308) (2048 -4288 400) (2085 -4288 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390354" + "plane" "(2085 -4288 308) (2085 -4288 400) (2085 -4208 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390353" + "plane" "(2085 -4208 308) (2048 -4208 308) (2048 -4288 308)" + "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 221 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374390" + side + { + "id" "390370" + "plane" "(2208 -4288 400) (2085 -4288 400) (2085 -4208 400)" + "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" "390369" + "plane" "(2208 -4208 308) (2208 -4208 400) (2085 -4208 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390368" + "plane" "(2085 -4288 308) (2085 -4288 400) (2208 -4288 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390367" + "plane" "(2085 -4208 308) (2085 -4208 400) (2085 -4288 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390366" + "plane" "(2208 -4288 308) (2208 -4288 400) (2208 -4208 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390365" + "plane" "(2208 -4208 308) (2085 -4208 308) (2085 -4288 308)" + "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 221 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374433" + side + { + "id" "390388" + "plane" "(2048 -4288 276) (2048 -4288 192) (2048 -4208 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 -1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390387" + "plane" "(2048 -4208 276) (2048 -4208 192) (2085 -4208 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390386" + "plane" "(2085 -4288 276) (2085 -4288 192) (2048 -4288 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390385" + "plane" "(2085 -4208 276) (2085 -4208 192) (2085 -4288 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" "390384" + "plane" "(2085 -4208 192) (2048 -4208 192) (2048 -4288 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" "390383" + "plane" "(2085 -4288 276) (2048 -4288 276) (2048 -4208 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "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 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374434" + side + { + "id" "390394" + "plane" "(2048 -4208 308) (2048 -4208 276) (2208 -4208 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390393" + "plane" "(2208 -4288 308) (2208 -4288 276) (2048 -4288 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390392" + "plane" "(2048 -4288 308) (2048 -4288 276) (2048 -4208 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390391" + "plane" "(2208 -4208 308) (2208 -4208 276) (2208 -4288 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390390" + "plane" "(2208 -4288 308) (2048 -4288 308) (2048 -4208 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390389" + "plane" "(2208 -4208 276) (2048 -4208 276) (2048 -4288 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374435" + side + { + "id" "390400" + "plane" "(2085 -4208 276) (2085 -4208 192) (2208 -4208 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390399" + "plane" "(2208 -4288 276) (2208 -4288 192) (2085 -4288 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390398" + "plane" "(2085 -4288 276) (2085 -4288 192) (2085 -4208 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" "390397" + "plane" "(2208 -4208 276) (2208 -4208 192) (2208 -4288 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" "390396" + "plane" "(2208 -4208 192) (2085 -4208 192) (2085 -4288 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" "390395" + "plane" "(2208 -4288 276) (2085 -4288 276) (2085 -4208 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374475" + side + { + "id" "390412" + "plane" "(2560 -4288 400) (2208 -4288 400) (2208 -4208 400)" + "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" "390411" + "plane" "(2560 -4208 308) (2560 -4208 400) (2208 -4208 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390410" + "plane" "(2208 -4288 308) (2208 -4288 400) (2560 -4288 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390409" + "plane" "(2560 -4288 308) (2560 -4288 400) (2560 -4208 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390408" + "plane" "(2208 -4208 308) (2208 -4208 400) (2208 -4288 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390407" + "plane" "(2560 -4208 308) (2208 -4208 308) (2208 -4288 308)" + "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 221 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374477" + side + { + "id" "390424" + "plane" "(2560 -4704 400) (2560 -4208 400) (2656 -4208 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" "390423" + "plane" "(2560 -4208 308) (2560 -4208 400) (2560 -4704 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390422" + "plane" "(2656 -4704 308) (2656 -4704 400) (2656 -4208 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390421" + "plane" "(2656 -4208 308) (2656 -4208 400) (2560 -4208 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390420" + "plane" "(2560 -4704 308) (2560 -4704 400) (2656 -4704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390419" + "plane" "(2560 -4208 308) (2560 -4704 308) (2656 -4704 308)" + "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 159 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374510" + side + { + "id" "390430" + "plane" "(2208 -4208 276) (2208 -4208 192) (2560 -4208 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390429" + "plane" "(2560 -4288 276) (2560 -4288 192) (2208 -4288 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390428" + "plane" "(2560 -4208 276) (2560 -4208 192) (2560 -4288 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" "390427" + "plane" "(2208 -4288 276) (2208 -4288 192) (2208 -4208 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" "390426" + "plane" "(2560 -4208 192) (2208 -4208 192) (2208 -4288 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" "390425" + "plane" "(2560 -4288 276) (2208 -4288 276) (2208 -4208 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374511" + side + { + "id" "390436" + "plane" "(2208 -4208 308) (2208 -4208 276) (2560 -4208 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390435" + "plane" "(2560 -4288 308) (2560 -4288 276) (2208 -4288 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390434" + "plane" "(2560 -4208 308) (2560 -4208 276) (2560 -4288 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390433" + "plane" "(2208 -4288 308) (2208 -4288 276) (2208 -4208 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390432" + "plane" "(2560 -4288 308) (2208 -4288 308) (2208 -4208 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390431" + "plane" "(2560 -4208 276) (2208 -4208 276) (2208 -4288 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374512" + side + { + "id" "390442" + "plane" "(2560 -4704 276) (2560 -4704 192) (2560 -4208 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390441" + "plane" "(2656 -4208 276) (2656 -4208 192) (2656 -4704 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" "390440" + "plane" "(2560 -4208 276) (2560 -4208 192) (2656 -4208 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390439" + "plane" "(2656 -4704 276) (2656 -4704 192) (2560 -4704 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" "390438" + "plane" "(2560 -4208 192) (2560 -4704 192) (2656 -4704 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" "390437" + "plane" "(2560 -4704 276) (2560 -4208 276) (2656 -4208 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 159 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374513" + side + { + "id" "390448" + "plane" "(2560 -4704 308) (2560 -4704 276) (2560 -4208 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390447" + "plane" "(2656 -4208 308) (2656 -4208 276) (2656 -4704 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390446" + "plane" "(2560 -4208 308) (2560 -4208 276) (2656 -4208 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390445" + "plane" "(2656 -4704 308) (2656 -4704 276) (2560 -4704 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390444" + "plane" "(2560 -4704 308) (2560 -4208 308) (2656 -4208 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390443" + "plane" "(2560 -4208 276) (2560 -4704 276) (2656 -4704 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 159 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374531" + side + { + "id" "390460" + "plane" "(1024 -4704 192) (1024 -4704 276) (1024 -4784 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 448.004] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390459" + "plane" "(1040 -4784 192) (1040 -4784 276) (1040 -4704 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390458" + "plane" "(1024 -4784 192) (1024 -4784 276) (1040 -4784 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390457" + "plane" "(1040 -4704 192) (1040 -4704 276) (1024 -4704 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390456" + "plane" "(1024 -4704 192) (1024 -4784 192) (1040 -4784 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" "390455" + "plane" "(1024 -4784 276) (1024 -4704 276) (1040 -4704 276)" + "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 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374546" + side + { + "id" "390466" + "plane" "(1024 -4784 400) (1024 -4704 400) (1040 -4704 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" "390465" + "plane" "(1024 -4704 308) (1024 -4704 400) (1024 -4784 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 448.004] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390464" + "plane" "(1040 -4784 308) (1040 -4784 400) (1040 -4704 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390463" + "plane" "(1024 -4784 308) (1024 -4784 400) (1040 -4784 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390462" + "plane" "(1040 -4704 308) (1040 -4704 400) (1024 -4704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390461" + "plane" "(1024 -4704 308) (1024 -4784 308) (1040 -4784 308)" + "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 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374547" + side + { + "id" "390472" + "plane" "(1024 -4704 276) (1024 -4704 308) (1024 -4784 308)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 447.996] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390471" + "plane" "(1040 -4784 276) (1040 -4784 308) (1040 -4704 308)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390470" + "plane" "(1024 -4784 276) (1024 -4784 308) (1040 -4784 308)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 -447.998] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390469" + "plane" "(1040 -4704 276) (1040 -4704 308) (1024 -4704 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390468" + "plane" "(1024 -4704 276) (1024 -4784 276) (1040 -4784 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390467" + "plane" "(1024 -4784 308) (1024 -4704 308) (1040 -4704 308)" + "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 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374571" + side + { + "id" "390478" + "plane" "(1093 -4784 400) (1040 -4784 400) (1040 -4768 400)" + "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" "390477" + "plane" "(1040 -4768 308) (1040 -4768 400) (1040 -4784 400)" + "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" "390476" + "plane" "(1093 -4768 308) (1093 -4768 400) (1040 -4768 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390475" + "plane" "(1040 -4784 308) (1040 -4784 400) (1093 -4784 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390474" + "plane" "(1093 -4784 308) (1093 -4784 400) (1093 -4768 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390473" + "plane" "(1093 -4768 308) (1040 -4768 308) (1040 -4784 308)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374579" + side + { + "id" "390490" + "plane" "(1040 -4784 308) (1040 -4784 276) (1040 -4768 276)" + "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" "390489" + "plane" "(1040 -4768 308) (1040 -4768 276) (1093 -4768 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390488" + "plane" "(1093 -4784 308) (1093 -4784 276) (1040 -4784 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 -447.998] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390487" + "plane" "(1093 -4768 308) (1093 -4768 276) (1093 -4784 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390486" + "plane" "(1093 -4784 308) (1040 -4784 308) (1040 -4768 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390485" + "plane" "(1093 -4768 276) (1040 -4768 276) (1040 -4784 276)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374580" + side + { + "id" "390496" + "plane" "(1040 -4784 276) (1040 -4784 155) (1040 -4768 155)" + "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" "390495" + "plane" "(1040 -4768 276) (1040 -4768 155) (1093 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390494" + "plane" "(1093 -4784 276) (1093 -4784 155) (1040 -4784 155)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390493" + "plane" "(1093 -4768 276) (1093 -4768 155) (1093 -4784 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390492" + "plane" "(1093 -4768 155) (1040 -4768 155) (1040 -4784 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390491" + "plane" "(1093 -4784 276) (1040 -4784 276) (1040 -4768 276)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374592" + side + { + "id" "390502" + "plane" "(1158 -4784 400) (1093 -4784 400) (1093 -4768 400)" + "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" "390501" + "plane" "(1158 -4768 308) (1158 -4768 400) (1093 -4768 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390500" + "plane" "(1093 -4784 308) (1093 -4784 400) (1158 -4784 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390499" + "plane" "(1093 -4768 308) (1093 -4768 400) (1093 -4784 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390498" + "plane" "(1158 -4784 308) (1158 -4784 400) (1158 -4768 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390497" + "plane" "(1158 -4768 308) (1093 -4768 308) (1093 -4784 308)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374598" + side + { + "id" "390514" + "plane" "(1093 -4768 308) (1093 -4768 276) (1158 -4768 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390513" + "plane" "(1158 -4784 308) (1158 -4784 276) (1093 -4784 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 -447.998] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390512" + "plane" "(1093 -4784 308) (1093 -4784 276) (1093 -4768 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390511" + "plane" "(1158 -4768 308) (1158 -4768 276) (1158 -4784 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390510" + "plane" "(1158 -4784 308) (1093 -4784 308) (1093 -4768 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390509" + "plane" "(1158 -4768 276) (1093 -4768 276) (1093 -4784 276)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374599" + side + { + "id" "390520" + "plane" "(1093 -4768 276) (1093 -4768 155) (1158 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390519" + "plane" "(1158 -4784 276) (1158 -4784 155) (1093 -4784 155)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390518" + "plane" "(1093 -4784 276) (1093 -4784 155) (1093 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390517" + "plane" "(1158 -4768 276) (1158 -4768 155) (1158 -4784 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390516" + "plane" "(1158 -4768 155) (1093 -4768 155) (1093 -4784 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390515" + "plane" "(1158 -4784 276) (1093 -4784 276) (1093 -4768 276)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374650" + side + { + "id" "390526" + "plane" "(1184 -5280 400) (1184 -4976 400) (1200 -4976 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" "390525" + "plane" "(1184 -4976 400) (1184 -5280 400) (1184 -5280 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192.008] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390524" + "plane" "(1200 -5280 308) (1200 -5280 400) (1200 -4976 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.946643 0.322281 0 -14.4375] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390523" + "plane" "(1184 -5280 308) (1184 -5280 400) (1200 -5280 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390522" + "plane" "(1200 -4976 308) (1200 -4976 400) (1184 -4976 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390521" + "plane" "(1184 -4976 308) (1184 -5280 308) (1200 -5280 308)" + "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 122 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374652" + side + { + "id" "390538" + "plane" "(1184 -4976 400) (1184 -4768 400) (1200 -4768 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" "390537" + "plane" "(1184 -4768 308) (1184 -4768 400) (1184 -4976 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192.008] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390536" + "plane" "(1200 -4976 400) (1200 -4768 400) (1200 -4768 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390535" + "plane" "(1200 -4768 308) (1200 -4768 400) (1184 -4768 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390534" + "plane" "(1184 -4976 308) (1184 -4976 400) (1200 -4976 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390533" + "plane" "(1184 -4768 308) (1184 -4976 308) (1200 -4976 308)" + "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 122 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374686" + side + { + "id" "390550" + "plane" "(1184 -4976 308) (1184 -4976 276) (1184 -4768 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390549" + "plane" "(1200 -4768 308) (1200 -4768 276) (1200 -4976 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390548" + "plane" "(1184 -4768 308) (1184 -4768 276) (1200 -4768 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390547" + "plane" "(1200 -4976 308) (1200 -4976 276) (1184 -4976 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390546" + "plane" "(1184 -4976 308) (1184 -4768 308) (1200 -4768 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390545" + "plane" "(1184 -4768 276) (1184 -4976 276) (1200 -4976 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 122 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374687" + side + { + "id" "390556" + "plane" "(1184 -4976 276) (1184 -4976 192) (1184 -4768 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192.008] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390555" + "plane" "(1200 -4768 276) (1200 -4768 192) (1200 -4976 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" "390554" + "plane" "(1184 -4768 276) (1184 -4768 192) (1200 -4768 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" "390553" + "plane" "(1184 -4768 192) (1184 -4976 192) (1200 -4976 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" "390552" + "plane" "(1200 -4976 276) (1200 -4976 192) (1184 -4976 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" "390551" + "plane" "(1184 -4976 276) (1184 -4768 276) (1200 -4768 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 122 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374688" + side + { + "id" "390562" + "plane" "(1184 -5280 308) (1184 -5280 276) (1184 -4976 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390561" + "plane" "(1200 -4976 308) (1200 -4976 276) (1200 -5280 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.946643 0.322281 0 -14.4375] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390560" + "plane" "(1200 -5280 308) (1200 -5280 276) (1184 -5280 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390559" + "plane" "(1184 -4976 308) (1184 -4976 276) (1200 -4976 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390558" + "plane" "(1184 -5280 308) (1184 -4976 308) (1200 -4976 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390557" + "plane" "(1184 -4976 276) (1184 -5280 276) (1200 -5280 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 122 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374689" + side + { + "id" "390568" + "plane" "(1184 -5280 276) (1184 -5280 192) (1184 -4976 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192.008] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390567" + "plane" "(1200 -4976 276) (1200 -4976 192) (1200 -5280 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.946643 0.322281 0 -14.4375] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390566" + "plane" "(1200 -5280 276) (1200 -5280 192) (1184 -5280 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" "390565" + "plane" "(1184 -4976 192) (1184 -5280 192) (1200 -5280 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" "390564" + "plane" "(1184 -4976 276) (1184 -4976 192) (1200 -4976 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" "390563" + "plane" "(1184 -5280 276) (1184 -4976 276) (1200 -4976 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 122 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374714" + side + { + "id" "390574" + "plane" "(1184 -5520 400) (1184 -5280 400) (1200 -5280 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" "390573" + "plane" "(1184 -5280 308) (1184 -5280 400) (1184 -5520 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192.008] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390572" + "plane" "(1200 -5520 400) (1200 -5280 400) (1200 -5280 308)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.946643 0.322281 0 -14.4375] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390571" + "plane" "(1200 -5280 308) (1200 -5280 400) (1184 -5280 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390570" + "plane" "(1184 -5520 308) (1184 -5520 400) (1200 -5520 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390569" + "plane" "(1184 -5280 308) (1184 -5520 308) (1200 -5520 308)" + "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 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374732" + side + { + "id" "390586" + "plane" "(1184 -5520 308) (1184 -5520 276) (1184 -5280 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390585" + "plane" "(1200 -5280 308) (1200 -5280 276) (1200 -5520 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.946643 0.322281 0 -14.4375] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390584" + "plane" "(1184 -5280 308) (1184 -5280 276) (1200 -5280 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390583" + "plane" "(1200 -5520 308) (1200 -5520 276) (1184 -5520 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390582" + "plane" "(1184 -5520 308) (1184 -5280 308) (1200 -5280 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390581" + "plane" "(1184 -5280 276) (1184 -5520 276) (1200 -5520 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374733" + side + { + "id" "390592" + "plane" "(1184 -5520 276) (1184 -5520 192) (1184 -5280 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192.008] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390591" + "plane" "(1200 -5280 276) (1200 -5280 192) (1200 -5520 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.946643 0.322281 0 -14.4375] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390590" + "plane" "(1184 -5280 276) (1184 -5280 192) (1200 -5280 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" "390589" + "plane" "(1184 -5280 192) (1184 -5520 192) (1200 -5520 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" "390588" + "plane" "(1200 -5520 276) (1200 -5520 192) (1184 -5520 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" "390587" + "plane" "(1184 -5520 276) (1184 -5280 276) (1200 -5280 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374757" + side + { + "id" "390598" + "plane" "(1200 -5872 400) (1184 -5888 400) (1184 -5520 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" "390597" + "plane" "(1184 -5520 400) (1184 -5888 400) (1184 -5888 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192.008] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390596" + "plane" "(1184 -5888 308) (1184 -5888 400) (1200 -5872 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390595" + "plane" "(1200 -5872 308) (1200 -5872 400) (1200 -5520 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0.946643 0.322281 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390594" + "plane" "(1200 -5520 308) (1200 -5520 400) (1184 -5520 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390593" + "plane" "(1184 -5520 308) (1184 -5888 308) (1200 -5872 308)" + "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 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374771" + side + { + "id" "390610" + "plane" "(1184 -5888 308) (1184 -5888 276) (1184 -5520 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390609" + "plane" "(1200 -5872 308) (1200 -5872 276) (1184 -5888 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390608" + "plane" "(1200 -5520 308) (1200 -5520 276) (1200 -5872 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0.946643 0.322281 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390607" + "plane" "(1184 -5520 308) (1184 -5520 276) (1200 -5520 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390606" + "plane" "(1200 -5872 308) (1184 -5888 308) (1184 -5520 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390605" + "plane" "(1184 -5520 276) (1184 -5888 276) (1200 -5872 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374772" + side + { + "id" "390616" + "plane" "(1184 -5888 276) (1184 -5888 192) (1184 -5520 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192.008] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390615" + "plane" "(1200 -5872 276) (1200 -5872 192) (1184 -5888 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" "390614" + "plane" "(1200 -5520 276) (1200 -5520 192) (1200 -5872 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0.946643 0.322281 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390613" + "plane" "(1184 -5520 192) (1184 -5888 192) (1200 -5872 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" "390612" + "plane" "(1184 -5520 276) (1184 -5520 192) (1200 -5520 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" "390611" + "plane" "(1200 -5872 276) (1184 -5888 276) (1184 -5520 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374794" + side + { + "id" "390622" + "plane" "(1184 -5888 400) (1200 -5872 400) (2192 -5872 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" "390621" + "plane" "(1200 -5872 308) (1200 -5872 400) (1184 -5888 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390620" + "plane" "(2192 -5888 308) (2192 -5888 400) (2192 -5872 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390619" + "plane" "(2192 -5872 308) (2192 -5872 400) (1200 -5872 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390618" + "plane" "(1184 -5888 308) (1184 -5888 400) (2192 -5888 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390617" + "plane" "(1200 -5872 308) (1184 -5888 308) (2192 -5888 308)" + "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 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374816" + side + { + "id" "390634" + "plane" "(1184 -5888 308) (1184 -5888 276) (1200 -5872 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390633" + "plane" "(2192 -5872 308) (2192 -5872 276) (2192 -5888 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390632" + "plane" "(1200 -5872 308) (1200 -5872 276) (2192 -5872 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390631" + "plane" "(2192 -5888 308) (2192 -5888 276) (1184 -5888 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 192] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390630" + "plane" "(1184 -5888 308) (1200 -5872 308) (2192 -5872 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390629" + "plane" "(1200 -5872 276) (1184 -5888 276) (2192 -5888 276)" + "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 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374817" + side + { + "id" "390640" + "plane" "(1184 -5888 276) (1184 -5888 256) (1200 -5872 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" "390639" + "plane" "(2192 -5872 276) (2192 -5872 256) (2192 -5888 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" "390638" + "plane" "(1200 -5872 276) (1200 -5872 256) (2192 -5872 256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390637" + "plane" "(2192 -5888 276) (2192 -5888 256) (1184 -5888 256)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390636" + "plane" "(1200 -5872 256) (1184 -5888 256) (2192 -5888 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" "390635" + "plane" "(1184 -5888 276) (1200 -5872 276) (2192 -5872 276)" + "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 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374864" + side + { + "id" "390646" + "plane" "(2192 -5888 400) (2192 -5520 400) (2224 -5520 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" "390645" + "plane" "(2192 -5520 308) (2192 -5520 400) (2192 -5888 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -511.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390644" + "plane" "(2224 -5888 308) (2224 -5888 400) (2224 -5520 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390643" + "plane" "(2224 -5520 308) (2224 -5520 400) (2192 -5520 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390642" + "plane" "(2192 -5888 308) (2192 -5888 400) (2224 -5888 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390641" + "plane" "(2192 -5520 308) (2192 -5888 308) (2224 -5888 308)" + "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 191 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374876" + side + { + "id" "390658" + "plane" "(2192 -5888 308) (2192 -5888 276) (2192 -5520 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -511.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390657" + "plane" "(2224 -5520 308) (2224 -5520 276) (2224 -5888 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390656" + "plane" "(2192 -5520 308) (2192 -5520 276) (2224 -5520 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390655" + "plane" "(2224 -5888 308) (2224 -5888 276) (2192 -5888 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 192] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390654" + "plane" "(2192 -5888 308) (2192 -5520 308) (2224 -5520 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390653" + "plane" "(2192 -5520 276) (2192 -5888 276) (2224 -5888 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374877" + side + { + "id" "390664" + "plane" "(2192 -5888 276) (2192 -5888 184) (2192 -5520 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -511.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390663" + "plane" "(2224 -5520 276) (2224 -5520 184) (2224 -5888 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" "390662" + "plane" "(2192 -5520 276) (2192 -5520 184) (2224 -5520 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" "390661" + "plane" "(2224 -5888 276) (2224 -5888 184) (2192 -5888 184)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390660" + "plane" "(2192 -5520 184) (2192 -5888 184) (2224 -5888 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390659" + "plane" "(2192 -5888 276) (2192 -5520 276) (2224 -5520 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374917" + side + { + "id" "390670" + "plane" "(2224 -6144 400) (2224 -6144 308) (2224 -5712 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 64.0098] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390669" + "plane" "(2256 -5712 400) (2256 -5712 308) (2256 -6144 308)" + "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" "390668" + "plane" "(2224 -5712 400) (2224 -5712 308) (2256 -5712 308)" + "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" "390667" + "plane" "(2256 -6144 400) (2256 -6144 308) (2224 -6144 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390666" + "plane" "(2224 -6144 400) (2224 -5712 400) (2256 -5712 400)" + "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" "390665" + "plane" "(2224 -5712 308) (2224 -6144 308) (2256 -6144 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374919" + side + { + "id" "390682" + "plane" "(2224 -6176 400) (2224 -6144 400) (2752 -6144 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" "390681" + "plane" "(2224 -6144 308) (2224 -6144 400) (2224 -6176 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 64.0098] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390680" + "plane" "(2752 -6176 308) (2752 -6176 400) (2752 -6144 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390679" + "plane" "(2752 -6144 308) (2752 -6144 400) (2224 -6144 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390678" + "plane" "(2224 -6176 308) (2224 -6176 400) (2752 -6176 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390677" + "plane" "(2224 -6144 308) (2224 -6176 308) (2752 -6176 308)" + "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 109 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374957" + side + { + "id" "390694" + "plane" "(2224 -6144 308) (2224 -6144 276) (2224 -5712 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 319.998] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390693" + "plane" "(2256 -5712 308) (2256 -5712 276) (2256 -6144 276)" + "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" "390692" + "plane" "(2224 -5712 308) (2224 -5712 276) (2256 -5712 276)" + "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" "390691" + "plane" "(2256 -6144 308) (2256 -6144 276) (2224 -6144 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390690" + "plane" "(2224 -6144 308) (2224 -5712 308) (2256 -5712 308)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390689" + "plane" "(2224 -5712 276) (2224 -6144 276) (2256 -6144 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374958" + side + { + "id" "390700" + "plane" "(2224 -6144 276) (2224 -6144 184) (2224 -5712 184)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 64.0098] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390699" + "plane" "(2256 -5712 276) (2256 -5712 184) (2256 -6144 184)" + "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" "390698" + "plane" "(2224 -5712 276) (2224 -5712 184) (2256 -5712 184)" + "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" "390697" + "plane" "(2256 -6144 276) (2256 -6144 184) (2224 -6144 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" "390696" + "plane" "(2224 -5712 184) (2224 -6144 184) (2256 -6144 184)" + "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" "390695" + "plane" "(2224 -6144 276) (2224 -5712 276) (2256 -5712 276)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374959" + side + { + "id" "390706" + "plane" "(2224 -6176 308) (2224 -6176 276) (2224 -6144 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 319.998] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390705" + "plane" "(2752 -6144 308) (2752 -6144 276) (2752 -6176 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390704" + "plane" "(2224 -6144 308) (2224 -6144 276) (2752 -6144 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390703" + "plane" "(2752 -6176 308) (2752 -6176 276) (2224 -6176 276)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 192] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390702" + "plane" "(2224 -6176 308) (2224 -6144 308) (2752 -6144 308)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390701" + "plane" "(2224 -6144 276) (2224 -6176 276) (2752 -6176 276)" + "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 109 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8374960" + side + { + "id" "390712" + "plane" "(2224 -6144 184) (2224 -6176 184) (2752 -6176 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390711" + "plane" "(2224 -6176 276) (2224 -6176 184) (2224 -6144 184)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 64.0098] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390710" + "plane" "(2752 -6144 276) (2752 -6144 184) (2752 -6176 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" "390709" + "plane" "(2224 -6144 276) (2224 -6144 184) (2752 -6144 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" "390708" + "plane" "(2752 -6176 276) (2752 -6176 184) (2224 -6176 184)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390707" + "plane" "(2224 -6176 276) (2224 -6144 276) (2752 -6144 276)" + "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 109 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8353700" + side + { + "id" "390179" + "plane" "(-705 -2501 -24) (-408 -2501 -24) (-408 -2588 -24)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390180" + "plane" "(-705 -2588 -32) (-408 -2588 -32) (-408 -2501 -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" "390181" + "plane" "(-705 -2501 -24) (-705 -2588 -24) (-705 -2588 -32)" + "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" "390182" + "plane" "(-408 -2501 -32) (-408 -2588 -32) (-408 -2588 -24)" + "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" "390183" + "plane" "(-408 -2501 -24) (-705 -2501 -24) (-705 -2501 -32)" + "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" "390184" + "plane" "(-408 -2588 -32) (-705 -2588 -32) (-705 -2588 -24)" + "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 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8333337" + side + { + "id" "390167" + "plane" "(40 -3832 128) (296 -3832 128) (296 -4000 128)" + "material" "DE_DUST/HR_DUST/HR_DUST_GROUND_DIRT_ROUGH_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390168" + "plane" "(40 -4000 -32) (296 -4000 -32) (296 -3832 -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" "390169" + "plane" "(40 -3832 128) (40 -4000 128) (40 -4000 -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" "390170" + "plane" "(296 -3832 -32) (296 -4000 -32) (296 -4000 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" "390171" + "plane" "(296 -3832 128) (40 -3832 128) (40 -3832 -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" "390172" + "plane" "(296 -4000 -32) (40 -4000 -32) (40 -4000 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 123 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313151" + side + { + "id" "390053" + "plane" "(8640 8776 5216) (8696 8776 5216) (8696 8624 5216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390054" + "plane" "(8640 8624 5152) (8696 8624 5152) (8696 8776 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390055" + "plane" "(8640 8776 5216) (8640 8624 5216) (8640 8624 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390056" + "plane" "(8696 8776 5152) (8696 8624 5152) (8696 8624 5216)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[0 1 0 -377.264] 0.296875" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390057" + "plane" "(8696 8776 5216) (8640 8776 5216) (8640 8776 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390058" + "plane" "(8696 8624 5152) (8640 8624 5152) (8640 8624 5216)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[1 0 0 -257.188] 0.297" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313178" + side + { + "id" "390070" + "plane" "(8193 8557 5152) (8193 8901 5152) (8704 8901 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8193 8557 5152]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0.89433 0 0.447165 0 -0.89433 -0.447165 0 0 0 0 0 0 0 0 -0.999756 -0.89433 0 -0.447165 0.666612 0.666612 0.333306" + "row1" "0 0 0 0 0 0 0.89433 0 0.447165 0 -0.89433 -0.447165 0 0 0 0 0 0 0 0 -0.999756 -0.89433 0 -0.447165 0.89433 0 0.447165" + "row2" "0 0 0 0 0 0 0.89433 0 0.447165 0 -0.89433 -0.447165 0 0 0 0 0 0 0 -0.89433 -0.447165 -0.666612 -0.666612 -0.333306 0.666612 0.666612 0.333306" + "row3" "0 0 0 0 0 0 0.89433 0 0.447165 0 0 -0.999756 0 0 0 0 0 0 0 0 -0.999756 -0.89433 0 -0.447165 0.666612 0.666612 0.333306" + "row4" "0 0 0 0 0 0 0.89433 0 0.447165 0 0 -0.999756 0 0 0 0 0 0 0 0 -0.999756 -0.666612 -0.666612 -0.333306 0.89433 0 0.447165" + "row5" "0 0 0 0 0 0 0.666612 0.666612 0.333306 0 0 -0.999756 0 0 0 0 0 0 0 0 -0.999756 -0.89433 0 -0.447165 0.666612 0.666612 0.333306" + "row6" "0 0 0 0 0 0 0.666612 0.666612 0.333306 0 0 -0.999756 0 0 0 0 0 0 0 0 -0.999756 -0.89433 0 -0.447165 0.89433 0 0.447165" + "row7" "0 0 0 0 0 0 0.666612 0.666612 0.333306 0 0 -0.999756 0 0 0 0 0 0 0 0 -0.999756 -0.666612 -0.666612 -0.333306 0.000232639 0.000232639 -1" + "row8" "0 0 0 0 0 0 0.89433 0 0.447165 0 0 -0.999756 0 0 0 0 0 0 0 0 -0.999756 -0.89433 0 -0.447165 0.000232639 0.000232639 -1" + } + distances + { + "row0" "0 0 0.00109183 0.00109183 0 0 0.000488281 0.00109183 0.00146484" + "row1" "0 0 0.00109183 0.00109183 0 0 0.000488281 0.00109183 0.00109183" + "row2" "0 0 0.00109183 0.00109183 0 0 0.00109183 0.00146484 0.00146484" + "row3" "0 0 0.00109183 0.000488281 0 0 0.000488281 0.00109183 0.00146484" + "row4" "0 0 0.00109183 0.000488281 0 0 0.000488281 0.00146484 0.00109183" + "row5" "0 0 0.00146484 0.000488281 0 0 0.000488281 0.00109183 0.00146484" + "row6" "0 0 0.00146484 0.000488281 0 0 0.000488281 0.00109183 0.00109183" + "row7" "0 0 0.00146484 0.000488281 0 0 0.000488281 0.00146484 4.19775" + "row8" "0 0 0.00109183 0.000488281 0 0 0.000488281 0.00109183 4.19775" + } + 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" "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" "390069" + "plane" "(8193 8901 5151) (8193 8557 5151) (8704 8557 5151)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390068" + "plane" "(8193 8557 5151) (8193 8901 5151) (8193 8901 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390067" + "plane" "(8193 8901 5151) (8704 8901 5151) (8704 8901 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390066" + "plane" "(8704 8557 5151) (8193 8557 5151) (8193 8557 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390065" + "plane" "(8704 8901 5151) (8704 8557 5151) (8704 8557 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313199" + side + { + "id" "390076" + "plane" "(8704 8901 5152) (8790.69 8901 5152) (8790.69 8728 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8704 8728 5152]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.666612 0.562556 0.333306 0 0 0.999756 -0.89433 0 -0.447165 0 -0.754727 0.447165 0 0 0 -0.89433 0 -0.447165 0 0 0 0 0 0.999756 -0.999878 0 0" + "row1" "0.872825 0.36829 0.218206 0 0.754727 0.447165 -0.707046 0.596678 0 0 -0.843799 0 0.707046 0.596678 0 0 0.843799 0 -0.999878 0 0 0 0.754727 0.447165 0 0.843799 0" + "row2" "0.816456 0.344505 0.408228 0 0.596678 0.707046 -0.707046 0.596678 0 -0.707046 -0.596678 0 0 0.843799 0 0 0.843799 0 -0.707046 -0.596678 0 0 0.754727 0.447165 0 0.843799 0" + "row3" "0.57731 0.487193 0.57731 0.707046 0 0.707046 0 0 0 -0.999878 0 0 0 0 0.999756 -0.999878 0 0 0 -0.843799 0 0 0 0.999756 -0.89433 0 0.447165" + "row4" "0.89433 0 0.447165 0 0 0.999756 -0.89433 0 -0.447165 0 -0.843799 0 0 0 0 -0.89433 0 -0.447165 0 -0.843799 0 0 -0.843799 0 -0.999878 0 0" + "row5" "0.00109709 0 -0.999999 0 0 -1 -0.000919963 0 -0.999999 0 -0.000776716 -0.999999 0 0 -1 -0.000919963 0 -0.999999 0 0 -1 0 0 -1 -0.000920386 0 -0.999999" + "row6" "0.000287894 0.000242954 -1 0 0 -1 -0.000241663 0 -1 -0.000241692 -0.000203964 -1 0 0 -1 0 0 -1 0 -0.000203964 -1 0 0 -1 -0.000241692 0 -1" + "row7" "0.000232639 0.000196325 -1 0 0 -1 -0.000195313 0 -1 0 0 -1 0 0 -1 -0.000195313 0 -1 -0.000195313 -0.000164825 -1 0 0 -1 -0.000195313 0 -1" + "row8" "0.000232639 0.000196325 -1 0 0.000167391 -1 -0.000195313 0 -1 0 0 -1 0 0 -1 -0.000195313 0 -1 0 0 -1 0 0 -1 -0.000195313 0 -1" + } + distances + { + "row0" "0.00146484 0.000488281 0.00109183 0.00109183 0 0.00109183 0 0.000488281 0.000976563" + "row1" "0.00223759 0.00109183 0.00138107 0.000976563 0.00138107 0.000976563 0.000976563 0.00109183 0.000976563" + "row2" "0.00239208 0.00138107 0.00138107 0.00138107 0.000976563 0.000976563 0.00138107 0.00109183 0.000976563" + "row3" "0.00169146 0.00138107 0 0.000976563 0.000488281 0.000976563 0.000976563 0.000488281 0.00109183" + "row4" "0.00109183 0.000488281 0.00109183 0.000976563 0 0.00109183 0.000976563 0.000976563 0.000976563" + "row5" "0.890137 1.04395 1.06152 1.06104 1.06104 1.06152 1.06104 1.06104 1.06104" + "row6" "3.39209 3.97852 4.04102 4.04053 4.04053 4.04102 4.04053 4.04053 4.04053" + "row7" "4.19775 4.92334 5 5 5 5 5 5.00049 5" + "row8" "4.19775 4.92334 5 5 5 5 5 5.00049 5" + } + 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" "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" "390075" + "plane" "(8790.69 8728 5151) (8790.69 8901 5151) (8704 8901 5151)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390074" + "plane" "(8790.69 8901 5151) (8790.69 8728 5151) (8790.69 8728 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390073" + "plane" "(8704 8901 5151) (8790.69 8901 5151) (8790.69 8901 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390072" + "plane" "(8704 8728 5151) (8704 8901 5151) (8704 8901 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390071" + "plane" "(8790.69 8728 5151) (8704 8728 5151) (8704 8728 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313203" + side + { + "id" "390094" + "plane" "(8704 8557 5162) (8704 8728 5162) (8705 8728 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -11.9922] 0.25" + "vaxis" "[0 1 0 40.0078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390093" + "plane" "(8704 8728 5152) (8704 8557 5152) (8705 8557 5152)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-1 0 0 116.008] 0.25" + "vaxis" "[0 1 0 104.008] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390092" + "plane" "(8705 8728 5152) (8705 8557 5152) (8705 8557 5162)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[0 -1 0 -409.096] 0.016" + "vaxis" "[0 0 -1 60.061] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390091" + "plane" "(8704 8557 5152) (8704 8728 5152) (8704 8728 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -40.0078] 0.25" + "vaxis" "[0 0 -1 0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390090" + "plane" "(8705 8557 5152) (8704 8557 5152) (8704 8557 5162)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-1 0 0 116.008] 0.25" + "vaxis" "[0 0 -1 0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390089" + "plane" "(8704 8728 5152) (8705 8728 5152) (8705 8728 5162)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-1 0 0 116.008] 0.25" + "vaxis" "[0 0 -1 0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313265" + side + { + "id" "390100" + "plane" "(8790.69 8728 5152) (8790.69 8557 5152) (8720 8557 5152)" + "material" "ASPHALT/ASPHALT_C" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8720 8557 5152]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 -0.666612 -0.820077 -0.333306 0 0 0 0.89433 0 0.447165 0 0 -0.999756 -0.872825 -0.536882 -0.218206" + "row1" "0 0 0 -0.89433 0 -0.447165 -0.89433 0 -0.447165 0 0 0 -0.666612 -0.820077 -0.333306 0 0 0 0 0 0.999756 -0.89433 0 -0.447165 -0.872825 -0.536882 -0.218206" + "row2" "0 0 0 -0.999878 0 0 -0.999878 0 0 0 0 0.999756 0 -1.23007 0 0.999878 0 0 0.89433 0 0.447165 0 0 0.999756 -0.894378 -0.550139 0" + "row3" "0 0 0 0 0 0 0 0 0.999756 0 0 0 -0.666612 -0.820077 -0.333306 0 0 0 0.666612 0.820077 0.333306 0 0 0 -0.872825 -0.536882 -0.218206" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 -0.666612 -0.820077 -0.333306 0 0 0 0.89433 0 0.447165 0 0 -0.999756 -0.872825 -0.536882 -0.218206" + "row5" "0 0 0.999756 0 0 0 -0.999878 0 0 0 0 0.999756 -0.707046 -0.869819 0 0 0 0 0.666612 0.820077 0.333306 0 1.10022 0.447165 -0.894378 -0.550139 0" + "row6" "0 1.10022 0.447165 -0.999878 0 0 -0.999878 0 0 0 1.23007 0 0 0 0 0 1.23007 0 0 1.10022 0.447165 0 1.23007 0 -0.89433 0 -0.447165" + "row7" "0 0 0 0 0 0 0 0 0 0.707046 0.869819 0 0 0 0 0.999878 0 0 0.666612 0.820077 0.333306 0 1.10022 -0.447165 -0.89433 0 -0.447165" + "row8" "0 0 0 0 0 0 0 -1.10022 0.447165 0 0 0 -0.89433 0 -0.447165 0 1.23007 0 0.89433 0 0.447165 0 0 0 -0.872825 -0.536882 -0.218206" + } + distances + { + "row0" "0 0 0 0 0.00146484 0 0.00109183 0.000488281 0.00223759" + "row1" "0 0.00109183 0.00109183 0 0.00146484 0 0.000488281 0.00109183 0.00223759" + "row2" "0 0.000976563 0.000976563 0.000488281 0.000976563 0.000976563 0.00109183 0.000488281 0.00218366" + "row3" "0 0 0.000488281 0 0.00146484 0 0.00146484 0 0.00223759" + "row4" "0 0 0 0 0.00146484 0 0.00109183 0.000488281 0.00223759" + "row5" "0.000488281 0 0.000976563 0.000488281 0.00138107 0 0.00146484 0.00109183 0.00218366" + "row6" "0.00109183 0.000976563 0.000976563 0.000976563 0 0.000976563 0.00109183 0.000976563 0.00109183" + "row7" "0 0 0 0.00138107 0 0.000976563 0.00146484 0.00109183 0.00109183" + "row8" "0 0 0.00109183 0 0.00109183 0.000976563 0.00109183 0 0.00223759" + } + 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" "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" "390099" + "plane" "(8720 8557 5151) (8790.69 8557 5151) (8790.69 8728 5151)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390098" + "plane" "(8790.69 8728 5151) (8790.69 8557 5151) (8790.69 8557 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390097" + "plane" "(8790.69 8557 5151) (8720 8557 5151) (8720 8557 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390096" + "plane" "(8720 8728 5151) (8790.69 8728 5151) (8790.69 8728 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390095" + "plane" "(8720 8557 5151) (8720 8728 5151) (8720 8728 5152)" + "material" "ASPHALT/ASPHALT_C" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313266" + side + { + "id" "390106" + "plane" "(8720 8557 5152) (8704 8557 5152) (8704 8728 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8704 8557 5152]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0.666612 0.820077 0.333306 0 0 0.999756 0 0 0 0 0 0.999756 0 0 0.999756 0 0 0.999756 0 0 0.999756 0 0 0" + "row1" "0 -1.23007 0 0.89433 0 0.447165 0 0 0.999756 0 0 0 0 0 0.999756 0 0 0.999756 0 0 0.999756 0 0 0.999756 0 0 0" + "row2" "0 -1.10022 0.447165 0.707046 0 0.707046 0 0 0.999878 0 0 0.999878 0 0 0.999878 0 0 0.999878 0 0 0.999878 0 0 0.999756 0 0 0" + "row3" "0 -1.10022 0.447165 0.707046 0 0.707046 0 0 0.999878 0 0 0.999878 0 0 0.999878 0 0 0.999878 0 0 0.999878 0 0 0.999756 0 0 0" + "row4" "0 -1.23007 0 0.89433 0 0.447165 0 0 0.999756 0 0 0 0 0 0.999756 0 0 0.999756 0 0 0.999756 0 0 0.999756 0 0 0" + "row5" "0 0 0.999756 0.57731 0.710215 0.57731 0.707046 0 0.707046 0 0 0.999878 0 0 0.999878 0.707046 0 0.707046 0.707046 0 0.707046 0.707046 0 0.707046 0 0 0.999756" + "row6" "0.666612 0.820077 0.333306 0.66664 0.82011 0.33332 0.57731 0.710215 0.57731 0 1.10028 0.447189 0 0.869819 0.707046 0 0.869819 0.707046 0 0.869819 0.707046 0 0.869819 0.707046 0 1.10022 0.447165" + "row7" "0.999878 0 0 0.872825 0.536882 0.218206 0.89433 0 0.447165 0 1.23007 0 0 0 0.999756 0 1.10022 0.447165 0 0.869819 0.707046 0 1.10022 0.447165 0 0 0" + "row8" "0 0 0 0.666612 0.820077 0.333306 0 0 0.999756 0 0 0 0 0 0.999756 0 0 0.999756 0 0 0.999756 0 0 0.999756 0 0 0" + } + distances + { + "row0" "0 0.00146484 0.000488281 0 0.000488281 0.000488281 0.000488281 0.000488281 0" + "row1" "0.000976563 0.00109183 0.000488281 0 0.000488281 0.000488281 0.000488281 0.000488281 0" + "row2" "0.00109183 0.00138107 0.000976563 0.000976563 0.000976563 0.000976563 0.000976563 0.000488281 0" + "row3" "0.00109183 0.00138107 0.000976563 0.000976563 0.000976563 0.000976563 0.000976563 0.000488281 0" + "row4" "0.000976563 0.00109183 0.000488281 0 0.000488281 0.000488281 0.000488281 0.000488281 0" + "row5" "0.000488281 0.00169146 0.00138107 0.000976563 0.000976563 0.00138107 0.00138107 0.00138107 0.000488281" + "row6" "0.00146484 0.00292969 0.00169146 0.00218366 0.00138107 0.00138107 0.00138107 0.00138107 0.00109183" + "row7" "0.000976563 0.00223759 0.00109183 0.000976563 0.000488281 0.00109183 0.00138107 0.00109183 0" + "row8" "0 0.00146484 0.000488281 0 0.000488281 0.000488281 0.000488281 0.000488281 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" "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" "390105" + "plane" "(8704 8728 5151) (8704 8557 5151) (8720 8557 5151)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390104" + "plane" "(8720 8557 5151) (8704 8557 5151) (8704 8557 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390103" + "plane" "(8704 8557 5151) (8704 8728 5151) (8704 8728 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390102" + "plane" "(8704 8728 5151) (8720 8728 5151) (8720 8728 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390101" + "plane" "(8720 8728 5151) (8720 8557 5151) (8720 8557 5152)" + "material" "ASPHALT/ASPHALT_C" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313293" + side + { + "id" "390118" + "plane" "(8376 8024 5216) (8432 8024 5216) (8432 7960 5216)" + "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" "390117" + "plane" "(8376 7960 5152) (8432 7960 5152) (8432 8024 5152)" + "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" "390116" + "plane" "(8376 8024 5216) (8376 7960 5216) (8376 7960 5152)" + "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" "390115" + "plane" "(8432 8024 5152) (8432 7960 5152) (8432 7960 5216)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[0 1 0 -40.4219] 0.296875" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390114" + "plane" "(8432 8024 5216) (8376 8024 5216) (8376 8024 5152)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[-1 0 0 404.211] 0.296875" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390113" + "plane" "(8432 7960 5152) (8376 7960 5152) (8376 7960 5216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -63.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313304" + side + { + "id" "390130" + "plane" "(8376 8112 5216) (8432 8112 5216) (8432 8048 5216)" + "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" "390129" + "plane" "(8376 8048 5152) (8432 8048 5152) (8432 8112 5152)" + "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" "390128" + "plane" "(8376 8112 5216) (8376 8048 5216) (8376 8048 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390127" + "plane" "(8432 8112 5152) (8432 8048 5152) (8432 8048 5216)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[0 1 0 -336.843] 0.296875" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390126" + "plane" "(8432 8112 5216) (8376 8112 5216) (8376 8112 5152)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[-1 0 0 404.211] 0.296875" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390125" + "plane" "(8432 8048 5152) (8376 8048 5152) (8376 8048 5216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -63.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313318" + side + { + "id" "390142" + "plane" "(9712 8568 5216) (9656 8568 5216) (9656 8720 5216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.0078125] 0.25" + "vaxis" "[0 1 0 -63.9922] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390141" + "plane" "(9712 8720 5152) (9656 8720 5152) (9656 8568 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.0078125] 0.25" + "vaxis" "[0 1 0 -63.9922] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390140" + "plane" "(9712 8568 5216) (9712 8720 5216) (9712 8720 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390139" + "plane" "(9656 8568 5152) (9656 8720 5152) (9656 8720 5216)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[0 -1 0 188.625] 0.296875" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390138" + "plane" "(9656 8568 5216) (9712 8568 5216) (9712 8568 5152)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[-1 0 0 94.0664] 0.297" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390137" + "plane" "(9656 8720 5152) (9712 8720 5152) (9712 8720 5216)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[-1 0 0 94.0664] 0.297" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313508" + side + { + "id" "390154" + "plane" "(9504 7976 5216) (9504 8032 5216) (9656 8032 5216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32.0039] 0.25" + "vaxis" "[1 0 0 -32.0039] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390153" + "plane" "(9656 7976 5152) (9656 8032 5152) (9504 8032 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32.0039] 0.25" + "vaxis" "[1 0 0 -32.0039] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390152" + "plane" "(9504 7976 5216) (9656 7976 5216) (9656 7976 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390151" + "plane" "(9504 8032 5152) (9656 8032 5152) (9656 8032 5216)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[-1 0 0 269.476] 0.296875" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390150" + "plane" "(9504 8032 5216) (9504 7976 5216) (9504 7976 5152)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[0 1 0 -69.4942] 0.297" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390149" + "plane" "(9656 8032 5152) (9656 7976 5152) (9656 7976 5216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8313517" + side + { + "id" "390166" + "plane" "(9320 7840 5216) (9320 7896 5216) (9472 7896 5216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9961] 0.25" + "vaxis" "[1 0 0 63.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390165" + "plane" "(9472 7840 5152) (9472 7896 5152) (9320 7896 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9961] 0.25" + "vaxis" "[1 0 0 63.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390164" + "plane" "(9320 7840 5216) (9472 7840 5216) (9472 7840 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390163" + "plane" "(9320 7896 5152) (9472 7896 5152) (9472 7896 5216)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[-1 0 0 -350.313] 0.296875" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390162" + "plane" "(9320 7896 5216) (9320 7840 5216) (9320 7840 5152)" + "material" "CS_ASSAULT/ASSAULT_SKYBOX_BUILDING02" + "uaxis" "[0 1 0 -123.582] 0.297" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390161" + "plane" "(9472 7896 5152) (9472 7840 5152) (9472 7840 5216)" + "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 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8273588" + side + { + "id" "390047" + "plane" "(88 -2484 -24) (88 -2204 -24) (168 -2204 -24)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390048" + "plane" "(88 -2204 -32) (88 -2484 -32) (168 -2484 -32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390049" + "plane" "(88 -2484 -32) (88 -2204 -32) (88 -2204 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390050" + "plane" "(168 -2204 -32) (168 -2484 -32) (168 -2484 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390051" + "plane" "(88 -2204 -32) (168 -2204 -32) (168 -2204 -24)" + "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" "390052" + "plane" "(168 -2484 -32) (88 -2484 -32) (88 -2484 -24)" + "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 172 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8253686" + side + { + "id" "389986" + "plane" "(88 -2576 -24) (0 -2576 -24) (0 -2112 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389985" + "plane" "(88 -2112 -32) (0 -2112 -32) (0 -2576 -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" "389984" + "plane" "(0 -2112 -32) (88 -2112 -32) (88 -2112 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -10.654] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389983" + "plane" "(88 -2576 -32) (0 -2576 -32) (0 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389982" + "plane" "(0 -2576 -32) (0 -2112 -32) (0 -2112 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389981" + "plane" "(88 -2112 -32) (88 -2576 -32) (88 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8253697" + side + { + "id" "390004" + "plane" "(168 -2112 -24) (480 -2112 -24) (480 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390003" + "plane" "(480 -2112 -32) (168 -2112 -32) (168 -2576 -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" "390002" + "plane" "(168 -2112 -32) (480 -2112 -32) (480 -2112 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -10.654] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390001" + "plane" "(480 -2112 -32) (480 -2576 -32) (480 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390000" + "plane" "(480 -2576 -32) (168 -2576 -32) (168 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389999" + "plane" "(168 -2576 -32) (168 -2112 -32) (168 -2112 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8253730" + side + { + "id" "390010" + "plane" "(168 -2576 -24) (88 -2576 -24) (88 -2484 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390009" + "plane" "(88 -2484 -32) (88 -2576 -32) (168 -2576 -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" "390008" + "plane" "(168 -2576 -32) (88 -2576 -32) (88 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390007" + "plane" "(88 -2576 -32) (88 -2484 -32) (88 -2484 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390006" + "plane" "(168 -2484 -32) (168 -2576 -32) (168 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390005" + "plane" "(88 -2484 -32) (168 -2484 -32) (168 -2484 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8253731" + side + { + "id" "390016" + "plane" "(88 -2204 -24) (88 -2112 -24) (168 -2112 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390015" + "plane" "(168 -2112 -32) (88 -2112 -32) (88 -2204 -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" "390014" + "plane" "(88 -2112 -32) (168 -2112 -32) (168 -2112 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -10.654] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390013" + "plane" "(88 -2204 -32) (88 -2112 -32) (88 -2112 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390012" + "plane" "(168 -2112 -32) (168 -2204 -32) (168 -2204 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390011" + "plane" "(168 -2204 -32) (88 -2204 -32) (88 -2204 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8253739" + side + { + "id" "390017" + "plane" "(73 -2500 -32) (73 -2188 -32) (88 -2188 -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" "390018" + "plane" "(73 -2188 -80) (73 -2500 -80) (88 -2500 -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" "390019" + "plane" "(73 -2500 -80) (73 -2188 -80) (73 -2188 -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" "390020" + "plane" "(88 -2188 -80) (88 -2500 -80) (88 -2500 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390021" + "plane" "(73 -2188 -80) (88 -2188 -80) (88 -2188 -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" "390022" + "plane" "(88 -2500 -80) (73 -2500 -80) (73 -2500 -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 228 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8253746" + side + { + "id" "390023" + "plane" "(88 -2204 -32) (88 -2188 -32) (168 -2188 -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" "390024" + "plane" "(88 -2188 -80) (88 -2204 -80) (168 -2204 -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" "390025" + "plane" "(88 -2204 -80) (88 -2188 -80) (88 -2188 -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" "390026" + "plane" "(168 -2188 -80) (168 -2204 -80) (168 -2204 -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" "390027" + "plane" "(88 -2188 -80) (168 -2188 -80) (168 -2188 -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" "390028" + "plane" "(168 -2204 -80) (88 -2204 -80) (88 -2204 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8253750" + side + { + "id" "390029" + "plane" "(168 -2188 -32) (184 -2188 -32) (184 -2484 -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" "390030" + "plane" "(168 -2484 -80) (184 -2484 -80) (184 -2188 -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" "390031" + "plane" "(168 -2188 -32) (168 -2484 -32) (168 -2484 -80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390032" + "plane" "(184 -2188 -80) (184 -2484 -80) (184 -2484 -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" "390033" + "plane" "(184 -2188 -32) (168 -2188 -32) (168 -2188 -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" "390034" + "plane" "(184 -2484 -80) (168 -2484 -80) (168 -2484 -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 170 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8253754" + side + { + "id" "390035" + "plane" "(88 -2500 -32) (88 -2484 -32) (184 -2484 -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" "390036" + "plane" "(88 -2484 -80) (88 -2500 -80) (184 -2500 -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" "390037" + "plane" "(88 -2500 -80) (88 -2484 -80) (88 -2484 -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" "390038" + "plane" "(184 -2484 -80) (184 -2500 -80) (184 -2500 -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" "390039" + "plane" "(88 -2484 -80) (184 -2484 -80) (184 -2484 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390040" + "plane" "(184 -2500 -80) (88 -2500 -80) (88 -2500 -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 122 127" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8253759" + side + { + "id" "390041" + "plane" "(73 -2500 -80) (73 -2188 -80) (184 -2188 -80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390042" + "plane" "(73 -2188 -96) (73 -2500 -96) (184 -2500 -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" "390043" + "plane" "(73 -2500 -96) (73 -2188 -96) (73 -2188 -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" "390044" + "plane" "(184 -2188 -96) (184 -2500 -96) (184 -2500 -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" "390045" + "plane" "(73 -2188 -96) (184 -2188 -96) (184 -2188 -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" "390046" + "plane" "(184 -2500 -96) (73 -2500 -96) (73 -2500 -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 172 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8193489" + side + { + "id" "389423" + "plane" "(0 -4672 240) (248 -4672 240) (248 -4688 240)" + "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" "389424" + "plane" "(0 -4688 -16) (248 -4688 -16) (248 -4672 -16)" + "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" "389425" + "plane" "(0 -4672 240) (0 -4688 240) (0 -4688 -16)" + "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" "389426" + "plane" "(248 -4672 -16) (248 -4688 -16) (248 -4688 240)" + "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" "389427" + "plane" "(248 -4672 240) (0 -4672 240) (0 -4672 -16)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389428" + "plane" "(248 -4688 -16) (0 -4688 -16) (0 -4688 240)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 114 127" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8153360" + side + { + "id" "389345" + "plane" "(-179 -5680 160.5) (69 -5680 160.5) (69 -5696 160.5)" + "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" "389346" + "plane" "(-179 -5696 31.5) (69 -5696 31.5) (69 -5680 31.5)" + "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" "389347" + "plane" "(-179 -5680 160.5) (-179 -5696 160.5) (-179 -5696 31.5)" + "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" "389348" + "plane" "(69 -5680 31.5) (69 -5696 31.5) (69 -5696 160.5)" + "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" "389349" + "plane" "(69 -5680 160.5) (-179 -5680 160.5) (-179 -5680 31.5)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389350" + "plane" "(69 -5696 31.5) (-179 -5696 31.5) (-179 -5696 160.5)" + "material" "TOOLS/TOOLSHINT" + "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 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8153363" + side + { + "id" "389351" + "plane" "(-48 -6032 182) (-32 -6032 182) (-32 -6280 182)" + "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" "389352" + "plane" "(-48 -6280 32) (-32 -6280 32) (-32 -6032 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" "389353" + "plane" "(-48 -6032 182) (-48 -6280 182) (-48 -6280 32)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389354" + "plane" "(-32 -6032 32) (-32 -6280 32) (-32 -6280 182)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389355" + "plane" "(-32 -6032 182) (-48 -6032 182) (-48 -6032 32)" + "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" "389356" + "plane" "(-32 -6280 32) (-48 -6280 32) (-48 -6280 182)" + "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 237 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8055107" + side + { + "id" "389092" + "plane" "(8790 8680 5159) (8790 8901 5159) (8791 8901 5159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12.0078] 0.25" + "vaxis" "[0 1 0 -11.9922] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389091" + "plane" "(8790 8901 5149) (8790 8680 5149) (8791 8680 5149)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-1 0 0 460.008] 0.25" + "vaxis" "[0 1 0 -203.992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389090" + "plane" "(8791 8901 5149) (8791 8680 5149) (8791 8680 5159)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[0 -1 0 115.403] 0.016" + "vaxis" "[0 0 -1 -127.5] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389089" + "plane" "(8790 8680 5149) (8790 8901 5149) (8790 8901 5159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 11.9922] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389088" + "plane" "(8791 8680 5149) (8790 8680 5149) (8790 8680 5159)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-1 0 0 460.008] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389087" + "plane" "(8790 8901 5149) (8791 8901 5149) (8791 8901 5159)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-1 0 0 460.008] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8035476" + side + { + "id" "389056" + "plane" "(-1355 -1984 108) (-1203 -1984 108) (-1203 -2000 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 68.9985] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389055" + "plane" "(-1355 -2000 104) (-1203 -2000 104) (-1203 -1984 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -11] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389054" + "plane" "(-1355 -1984 108) (-1355 -2000 108) (-1355 -2000 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389053" + "plane" "(-1203 -1984 104) (-1203 -2000 104) (-1203 -2000 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389052" + "plane" "(-1203 -1984 108) (-1355 -1984 108) (-1355 -1984 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389051" + "plane" "(-1203 -2000 104) (-1355 -2000 104) (-1355 -2000 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 68.9985] 0.125" + "vaxis" "[0 0 -1 31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 184 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8035477" + side + { + "id" "389062" + "plane" "(-1203 -1984 187) (-1200 -1984 187) (-1200 -2000 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389061" + "plane" "(-1203 -2000 -16) (-1200 -2000 -16) (-1200 -1984 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389060" + "plane" "(-1203 -1984 187) (-1203 -2000 187) (-1203 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -115] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389059" + "plane" "(-1200 -1984 -16) (-1200 -2000 -16) (-1200 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -115] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389058" + "plane" "(-1200 -1984 187) (-1203 -1984 187) (-1203 -1984 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389057" + "plane" "(-1200 -2000 -16) (-1203 -2000 -16) (-1203 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 213] 0.125" + "vaxis" "[1 0 0 -40] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 138 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8035478" + side + { + "id" "389068" + "plane" "(-2194 -1984 -24) (-2809 -1984 -24) (-2809 -2000 -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" + } + side + { + "id" "389067" + "plane" "(-2809 -1984 -24) (-2194 -1984 -24) (-2194 -1984 -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" "389066" + "plane" "(-2194 -2000 -24) (-2809 -2000 -24) (-2809 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389065" + "plane" "(-2194 -2000 -16) (-2809 -2000 -16) (-2809 -1984 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 -1 0 -63.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389064" + "plane" "(-2809 -2000 -16) (-2809 -2000 -24) (-2809 -1984 -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" "389063" + "plane" "(-2194 -1984 -16) (-2194 -1984 -24) (-2194 -2000 -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" + } + editor + { + "color" "0 206 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8015833" + side + { + "id" "389045" + "plane" "(-2624 -1408 576) (-688 -1408 576) (-688 -1740 576)" + "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" "389046" + "plane" "(-2624 -1740 280) (-688 -1740 280) (-688 -1408 280)" + "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" "389047" + "plane" "(-2624 -1408 576) (-2624 -1740 576) (-2624 -1740 280)" + "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" "389048" + "plane" "(-688 -1408 280) (-688 -1740 280) (-688 -1740 576)" + "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" "389049" + "plane" "(-688 -1408 576) (-2624 -1408 576) (-2624 -1408 280)" + "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" "389050" + "plane" "(-688 -1740 280) (-2624 -1740 280) (-2624 -1740 576)" + "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" "0 211 144" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7995632" + side + { + "id" "389015" + "plane" "(-96 0 576) (624 0 576) (624 -640 576)" + "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" "389016" + "plane" "(-96 -640 -40) (624 -640 -40) (624 0 -40)" + "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" "389017" + "plane" "(-96 0 576) (-96 -640 576) (-96 -640 -40)" + "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" "389018" + "plane" "(624 0 -40) (624 -640 -40) (624 -640 576)" + "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" "389019" + "plane" "(624 0 576) (-96 0 576) (-96 0 -40)" + "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" "389020" + "plane" "(624 -640 -40) (-96 -640 -40) (-96 -640 576)" + "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" "0 112 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7996248" + side + { + "id" "389039" + "plane" "(2048 0 328) (2064 0 328) (2064 -1628 328)" + "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" "389040" + "plane" "(2048 -1628 -144) (2064 -1628 -144) (2064 0 -144)" + "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" "389041" + "plane" "(2048 0 328) (2048 -1628 328) (2048 -1628 -144)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389042" + "plane" "(2064 0 -144) (2064 -1628 -144) (2064 -1628 328)" + "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" "389043" + "plane" "(2064 0 328) (2048 0 328) (2048 0 -144)" + "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" "389044" + "plane" "(2064 -1628 -144) (2048 -1628 -144) (2048 -1628 328)" + "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 230 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7975939" + side + { + "id" "388979" + "plane" "(-256 -3756 -56) (-256 -3792 -56) (-304 -3792 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388978" + "plane" "(-304 -3792 -224) (-256 -3792 -224) (-256 -3756 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388977" + "plane" "(-256 -3756 -224) (-256 -3792 -224) (-256 -3792 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388976" + "plane" "(-256 -3792 -224) (-304 -3792 -224) (-304 -3792 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388975" + "plane" "(-304 -3792 -224) (-288.957 -3763 -224) (-288.958 -3763 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388974" + "plane" "(-288.958 -3763 -224) (-256 -3756 -224) (-256 -3756 -56)" + "material" "TOOLS/TOOLSCLIP" + "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 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7976003" + side + { + "id" "388992" + "plane" "(24 -3008 156) (24 -2960 156) (72 -2960 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388991" + "plane" "(24 -2960 -40) (24 -3008 -40) (25 -3008 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388990" + "plane" "(24 -3008 -40) (24 -2960 -40) (24 -2960 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388989" + "plane" "(72 -2960 -40) (72 -2961 -40) (72 -2961 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388988" + "plane" "(24 -2960 -40) (72 -2960 -40) (72 -2960 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388987" + "plane" "(25 -3008 -40) (24 -3008 -40) (24 -3008 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388986" + "plane" "(72 -2961 -40) (25 -3008 -40) (25 -3008 156)" + "material" "TOOLS/TOOLSCLIP" + "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 187" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7976097" + side + { + "id" "389003" + "plane" "(2042 -3224 208) (2096 -3224 208) (2096 -3272 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389002" + "plane" "(2042 -3224 16) (2096 -3272 16) (2096 -3224 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389001" + "plane" "(2096 -3224 16) (2096 -3272 16) (2096 -3272 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389000" + "plane" "(2042 -3224 16) (2096 -3224 16) (2096 -3224 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388999" + "plane" "(2096 -3272 16) (2042 -3224 16) (2042 -3224 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7976125" + side + { + "id" "389014" + "plane" "(1344 -3424 223.998) (1344 -3380 223.998) (1392.89 -3424 223.998)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389013" + "plane" "(1344 -3380 16) (1344 -3424 16) (1392.89 -3424 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389012" + "plane" "(1344 -3424 16.001) (1344 -3380 16.001) (1344 -3380 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389011" + "plane" "(1392.89 -3424 16.001) (1344 -3424 16.001) (1344 -3424 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389010" + "plane" "(1344 -3380 16.0011) (1392.89 -3424 16.0011) (1392.89 -3424 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7936486" + side + { + "id" "388950" + "plane" "(352 -4200 560) (1024 -4200 560) (1024 -4560 560)" + "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" "388951" + "plane" "(352 -4560 448) (1024 -4560 448) (1024 -4200 448)" + "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" "388952" + "plane" "(352 -4200 560) (352 -4560 560) (352 -4560 448)" + "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" "388953" + "plane" "(1024 -4200 448) (1024 -4560 448) (1024 -4560 560)" + "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" "388954" + "plane" "(1024 -4200 560) (352 -4200 560) (352 -4200 448)" + "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" "388955" + "plane" "(1024 -4560 448) (352 -4560 448) (352 -4560 560)" + "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" "0 183 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7936487" + side + { + "id" "388956" + "plane" "(352 -4200 448) (1024 -4200 448) (1024 -4560 448)" + "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" "388957" + "plane" "(352 -4560 -15) (1024 -4560 -15) (1024 -4200 -15)" + "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" "388958" + "plane" "(352 -4200 448) (352 -4560 448) (352 -4560 -15)" + "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" "388959" + "plane" "(1024 -4200 -15) (1024 -4560 -15) (1024 -4560 448)" + "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" "388960" + "plane" "(1024 -4200 448) (352 -4200 448) (352 -4200 -15)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388961" + "plane" "(1024 -4560 -15) (352 -4560 -15) (352 -4560 448)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897327" + side + { + "id" "388802" + "plane" "(-440 -3328 0) (-436 -3328 0) (-436 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -0.98977 0.142671 862.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388801" + "plane" "(-440 -3550 -2) (-436 -3550 -2) (-436 -3328 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388800" + "plane" "(-440 -3328 -2) (-436 -3328 -2) (-436 -3328 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" "388799" + "plane" "(-436 -3550 -2) (-440 -3550 -2) (-440 -3550 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" "388798" + "plane" "(-440 -3550 -2) (-440 -3328 -2) (-440 -3328 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388797" + "plane" "(-436 -3550 32) (-436 -3328 -0) (-436 -3328 -2)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 131 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897330" + side + { + "id" "388808" + "plane" "(-176 -3332 0.576858) (-176 -3550 32) (-436 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -0.98977 0.14267 861.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388807" + "plane" "(-436 -3550 -2) (-176 -3550 -2) (-176 -3332 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388806" + "plane" "(-176 -3550 32) (-176 -3332 0.573158) (-176 -3332 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388805" + "plane" "(-176 -3550 -2) (-436 -3550 -2) (-436 -3550 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" "388804" + "plane" "(-436 -3550 -2) (-436 -3332 -2) (-436 -3332 0.576014)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388803" + "plane" "(-436 -3332 -2) (-176 -3332 -2) (-176 -3332 0.574219)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "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 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897331" + side + { + "id" "388814" + "plane" "(-436 -3328 0) (-176 -3328 0) (-176 -3332 0.576858)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -0.9897 0.143154 863.856] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388813" + "plane" "(-176 -3332 -2) (-176 -3328 -2) (-436 -3328 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388812" + "plane" "(-176 -3332 0.573158) (-176 -3328 -0) (-176 -3328 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388811" + "plane" "(-436 -3328 -2) (-176 -3328 -2) (-176 -3328 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" "388810" + "plane" "(-436 -3332 -2) (-436 -3328 -2) (-436 -3328 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388809" + "plane" "(-176 -3332 -2) (-436 -3332 -2) (-436 -3332 0.574219)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "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 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897340" + side + { + "id" "388826" + "plane" "(-1008 -3550 32) (-1072 -3550 32) (-1072 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -0.98977 0.142671 -119.642] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388825" + "plane" "(-1008 -3328 -2) (-1072 -3328 -2) (-1072 -3550 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388824" + "plane" "(-1072 -3550 -2) (-1072 -3328 -2) (-1072 -3328 -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" "388823" + "plane" "(-1072 -3328 -2) (-1008 -3328 -2) (-1008 -3328 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" "388822" + "plane" "(-1008 -3550 -2) (-1072 -3550 -2) (-1072 -3550 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" "388821" + "plane" "(-1008 -3550 32) (-1008 -3328 -0) (-1008 -3328 -2)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 131 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897344" + side + { + "id" "388838" + "plane" "(-1004 -3550 32) (-1008 -3550 32) (-1008 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -0.98977 0.142671 862.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388837" + "plane" "(-1004 -3328 -2) (-1008 -3328 -2) (-1008 -3550 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388836" + "plane" "(-1008 -3328 -2) (-1004 -3328 -2) (-1004 -3328 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" "388835" + "plane" "(-1004 -3550 -2) (-1008 -3550 -2) (-1008 -3550 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" "388834" + "plane" "(-1008 -3550 -2) (-1008 -3328 -2) (-1008 -3328 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388833" + "plane" "(-1004 -3550 32) (-1004 -3328 0) (-1004 -3328 -2)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 131 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897363" + side + { + "id" "388856" + "plane" "(-784 -3550 32) (-1004 -3550 32) (-1004 -3332 0.576855)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -0.98977 0.142671 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388855" + "plane" "(-1004 -3332 -2) (-1004 -3550 -2) (-784 -3550 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388854" + "plane" "(-784 -3550 -2) (-1004 -3550 -2) (-1004 -3550 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" "388853" + "plane" "(-1004 -3550 -2) (-1004 -3332 -2) (-1004 -3332 0.576014)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388852" + "plane" "(-784 -3550 32) (-784 -3332 0.577065) (-784 -3332 -2)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388851" + "plane" "(-1004 -3332 -2) (-784 -3332 -2) (-784 -3332 0.574219)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "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 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897364" + side + { + "id" "388862" + "plane" "(-1004 -3332 0.576855) (-1004 -3328 0) (-784 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -0.98976 0.142739 862.255] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388861" + "plane" "(-784 -3328 -2) (-1004 -3328 -2) (-1004 -3332 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388860" + "plane" "(-1004 -3328 -2) (-784 -3328 -2) (-784 -3328 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" "388859" + "plane" "(-1004 -3332 -2) (-1004 -3328 -2) (-1004 -3328 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388858" + "plane" "(-784 -3332 0.577065) (-784 -3328 0) (-784 -3328 -2)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388857" + "plane" "(-784 -3332 -2) (-1004 -3332 -2) (-1004 -3332 0.574219)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "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 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897372" + side + { + "id" "388868" + "plane" "(-780 -3550 32) (-784 -3550 32) (-784 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -0.989845 0.142148 859.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388867" + "plane" "(-780 -3328 -2) (-784 -3328 -2) (-784 -3550 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388866" + "plane" "(-784 -3328 -2) (-780 -3328 -2) (-780 -3328 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" "388865" + "plane" "(-780 -3550 -2) (-784 -3550 -2) (-784 -3550 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" "388864" + "plane" "(-784 -3550 -2) (-784 -3328 -2) (-784 -3328 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388863" + "plane" "(-780 -3550 32) (-780 -3328 -0) (-780 -3328 -2)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 131 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897373" + side + { + "id" "388874" + "plane" "(-440 -3550 32) (-780 -3550 32) (-780 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -0.98977 0.142671 -119.642] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388873" + "plane" "(-440 -3328 -2) (-780 -3328 -2) (-780 -3550 -2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388872" + "plane" "(-780 -3328 -2) (-440 -3328 -2) (-440 -3328 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" "388871" + "plane" "(-440 -3550 -2) (-780 -3550 -2) (-780 -3550 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" "388870" + "plane" "(-440 -3550 32) (-440 -3328 -0) (-440 -3328 -2)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388869" + "plane" "(-780 -3550 -2) (-780 -3328 -2) (-780 -3328 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 131 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897421" + side + { + "id" "388879" + "plane" "(-576 -4960 0) (-576 -4992 0) (-448 -5024 0)" + "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" "388878" + "plane" "(-576 -4992 32) (-576 -4992 0) (-576 -4960 0)" + "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" "388877" + "plane" "(-448 -5024 0) (-576 -4992 0) (-576 -4992 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" "388876" + "plane" "(-576 -4992 32) (-576 -4960 32) (-448 -4992 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0.970142 0 -0.242536 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388875" + "plane" "(-576 -4960 32) (-576 -4960 0) (-448 -4992 0)" + "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 210 155" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897473" + side + { + "id" "388889" + "plane" "(-576 -4956 0) (-576 -4960 0) (-448 -4992 0)" + "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" "388888" + "plane" "(-576 -4960 0) (-576 -4956 0) (-576 -4956 32)" + "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" "388887" + "plane" "(-576 -4960 32) (-576 -4956 32) (-448 -4988 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0.970142 0 -0.242536 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388886" + "plane" "(-448 -4992 0) (-576 -4960 0) (-576 -4960 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" "388885" + "plane" "(-576 -4956 32) (-576 -4956 0) (-448 -4988 0)" + "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 210 155" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897491" + side + { + "id" "388907" + "plane" "(-448 -4734 0) (-448 -4688 0) (-128 -4688 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388906" + "plane" "(-448 -4688 -16) (-448 -4734 -16) (-416 -4752 -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" "388905" + "plane" "(-448 -4734 -16) (-448 -4688 -16) (-448 -4688 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" "388904" + "plane" "(-128 -4688 -16) (-128 -4752 -16) (-128 -4752 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" "388903" + "plane" "(-448 -4688 -16) (-128 -4688 -16) (-128 -4688 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" "388902" + "plane" "(-128 -4752 -16) (-416 -4752 -16) (-416 -4752 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" "388901" + "plane" "(-416 -4752 -16) (-448 -4734 -16) (-448 -4734 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "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 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897492" + side + { + "id" "388912" + "plane" "(-448 -4752 0) (-448 -4734 0) (-416 -4752 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 -1 0 -30] 0.025" + "vaxis" "[-1 0 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388911" + "plane" "(-448 -4734 -16) (-448 -4752 -16) (-416 -4752 -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" "388910" + "plane" "(-448 -4752 -16) (-448 -4734 -16) (-448 -4734 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" "388909" + "plane" "(-416 -4752 -16) (-448 -4752 -16) (-448 -4752 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" "388908" + "plane" "(-448 -4734 -16) (-416 -4752 -16) (-416 -4752 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "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 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897539" + side + { + "id" "388917" + "plane" "(-448 -4750 0) (-576 -4678 0) (-576 -4720 0)" + "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" "388916" + "plane" "(-576 -4720 0) (-576 -4678 0) (-576 -4678 32)" + "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" "388915" + "plane" "(-576 -4678 32) (-576 -4678 0) (-448 -4750 0)" + "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" "388914" + "plane" "(-576 -4720 32) (-576 -4678 32) (-448 -4750 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0.970142 0 -0.242536 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388913" + "plane" "(-448 -4768 0) (-576 -4720 0) (-576 -4720 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 210 155" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897576" + side + { + "id" "388932" + "plane" "(-576 -4720 0) (-576 -4724 0) (-448 -4772 0)" + "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" "388931" + "plane" "(-576 -4724 0) (-576 -4720 0) (-576 -4720 32)" + "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" "388930" + "plane" "(-576 -4724 32) (-576 -4720 32) (-448 -4768 -0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0.970142 0 -0.242536 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388929" + "plane" "(-576 -4720 32) (-576 -4720 0) (-448 -4768 0)" + "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" "388928" + "plane" "(-448 -4772 0) (-576 -4724 0) (-576 -4724 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 210 155" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897583" + side + { + "id" "388938" + "plane" "(-576 -4724 0) (-576 -4956 0) (-452 -4987 0)" + "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" "388937" + "plane" "(-576 -4956 0) (-576 -4724 0) (-576 -4724 32)" + "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" "388936" + "plane" "(-576 -4956 32) (-576 -4724 32) (-452 -4770.5 1)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0.970142 0 -0.242536 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388935" + "plane" "(-452 -4987 0) (-576 -4956 0) (-576 -4956 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" "388934" + "plane" "(-576 -4724 32) (-576 -4724 0) (-452 -4770.5 0)" + "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" "388933" + "plane" "(-452 -4770.5 0) (-452 -4987 0) (-452 -4987 1)" + "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 210 155" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897584" + side + { + "id" "388943" + "plane" "(-448 -4988 0) (-448 -4772 0) (-452 -4770 0)" + "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" "388942" + "plane" "(-448 -4772 0) (-448 -4988 0) (-452 -4987 1)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0.970142 0 -0.242536 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388941" + "plane" "(-452 -4987 0) (-452 -4987 1) (-448 -4988 0)" + "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" "388940" + "plane" "(-448 -4772 0) (-452 -4770 1) (-452 -4770 0)" + "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" "388939" + "plane" "(-452 -4770 0) (-452 -4770 1) (-452 -4987 1)" + "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 210 155" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7897653" + side + { + "id" "388944" + "plane" "(1676 -3456 224) (1668 -3468 224) (1633 -3468 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388945" + "plane" "(1668 -3468 0) (1676 -3456 0) (1617 -3456 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388946" + "plane" "(1633 -3468 224) (1633 -3468 0) (1617 -3456 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388947" + "plane" "(1668 -3468 0) (1668 -3468 224) (1676 -3456 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388948" + "plane" "(1617 -3456 224) (1617 -3456 0) (1676 -3456 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388949" + "plane" "(1633 -3468 0) (1633 -3468 224) (1668 -3468 224)" + "material" "TOOLS/TOOLSCLIP" + "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 153" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7877787" + side + { + "id" "388742" + "plane" "(974 -2654 -16) (902 -2654 -16) (902 -2430 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388741" + "plane" "(902 -2654 -38) (974 -2654 -38) (974 -2430 -38)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388740" + "plane" "(974 -2654 -38) (902 -2654 -38) (902 -2654 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388739" + "plane" "(902 -2430 -38) (974 -2430 -38) (974 -2430 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388738" + "plane" "(974 -2430 -38) (974 -2654 -38) (974 -2654 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388737" + "plane" "(902 -2654 -38) (902 -2430 -38) (902 -2430 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "groupid" "7877786" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857293" + side + { + "id" "388484" + "plane" "(1200 -5328 0) (1208 -5328 0) (1208 -5496 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388483" + "plane" "(1200 -5504 -16) (1208 -5496 -16) (1208 -5328 -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" "388482" + "plane" "(1200 -5328 -16) (1200 -5328 0) (1200 -5504 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" "388481" + "plane" "(1208 -5328 -16) (1208 -5328 0) (1200 -5328 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" "388480" + "plane" "(1200 -5504 -16) (1200 -5504 0) (1208 -5496 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" "388479" + "plane" "(1208 -5496 -16) (1208 -5496 0) (1208 -5328 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857295" + side + { + "id" "388496" + "plane" "(1208 -5328 0) (1200 -5328 0) (1200 -4992 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388495" + "plane" "(1208 -4992 -16) (1200 -4992 -16) (1200 -5328 -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" "388494" + "plane" "(1200 -5328 -16) (1200 -4992 -16) (1200 -4992 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" "388493" + "plane" "(1200 -4992 -16) (1208 -4992 -16) (1208 -4992 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" "388492" + "plane" "(1208 -5328 -16) (1200 -5328 -16) (1200 -5328 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" "388491" + "plane" "(1208 -4992 -16) (1208 -5328 -16) (1208 -5328 0)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "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 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857449" + side + { + "id" "388508" + "plane" "(1600 -5504 0) (1200 -5504 0) (1208 -5496 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388507" + "plane" "(1600 -5504 -16) (1600 -5496 -16) (1208 -5496 -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" "388506" + "plane" "(1600 -5504 -16) (1600 -5504 0) (1600 -5496 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" "388505" + "plane" "(1200 -5504 -16) (1200 -5504 0) (1600 -5504 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" "388504" + "plane" "(1208 -5496 -16) (1208 -5496 0) (1200 -5504 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388503" + "plane" "(1600 -5496 -16) (1600 -5496 0) (1208 -5496 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 155 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857450" + side + { + "id" "388514" + "plane" "(1208 -5328 0) (1600 -5328 0) (1600 -5496 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388513" + "plane" "(1600 -5496 -16) (1600 -5328 -16) (1208 -5328 -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" "388512" + "plane" "(1600 -5328 -16) (1600 -5496 -16) (1600 -5496 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" "388511" + "plane" "(1208 -5328 -16) (1600 -5328 -16) (1600 -5328 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" "388510" + "plane" "(1208 -5496 -16) (1208 -5328 -16) (1208 -5328 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388509" + "plane" "(1600 -5496 -16) (1208 -5496 -16) (1208 -5496 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 155 240" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857715" + side + { + "id" "388526" + "plane" "(1208 -5168 0) (1208 -4992 0) (1600 -4992 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388525" + "plane" "(1600 -4992 -16) (1208 -4992 -16) (1208 -5168 -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" "388524" + "plane" "(1208 -4992 -16) (1600 -4992 -16) (1600 -4992 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" "388523" + "plane" "(1600 -4992 -16) (1600 -5168 -16) (1600 -5168 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" "388522" + "plane" "(1208 -5168 -16) (1208 -4992 -16) (1208 -4992 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388521" + "plane" "(1600 -5168 -16) (1208 -5168 -16) (1208 -5168 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857954" + side + { + "id" "388544" + "plane" "(1400 -5176 0) (1408 -5168 0) (1408 -5328 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388543" + "plane" "(1408 -5168 -16) (1400 -5176 -16) (1400 -5320 -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" "388542" + "plane" "(1400 -5320 0) (1408 -5328 0) (1408 -5328 -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" "388541" + "plane" "(1408 -5168 0) (1400 -5176 0) (1400 -5176 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388540" + "plane" "(1400 -5176 0) (1400 -5320 0) (1400 -5320 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388539" + "plane" "(1408 -5328 0) (1408 -5168 0) (1408 -5168 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857955" + side + { + "id" "388550" + "plane" "(1600 -5328 0) (1408 -5328 0) (1408 -5168 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388549" + "plane" "(1408 -5328 -16) (1600 -5328 -16) (1600 -5168 -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" "388548" + "plane" "(1600 -5328 -16) (1408 -5328 -16) (1408 -5328 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" "388547" + "plane" "(1600 -5168 -16) (1600 -5328 -16) (1600 -5328 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" "388546" + "plane" "(1408 -5168 -16) (1600 -5168 -16) (1600 -5168 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388545" + "plane" "(1408 -5328 -16) (1408 -5168 -16) (1408 -5168 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857974" + side + { + "id" "388556" + "plane" "(1208 -5168 0) (1408 -5168 0) (1400 -5176 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -704] 0.125" + "vaxis" "[0 -1 0 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388555" + "plane" "(1208 -5168 -16) (1208 -5176 -16) (1400 -5176 -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" "388554" + "plane" "(1208 -5168 -16) (1208 -5168 0) (1208 -5176 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388553" + "plane" "(1408 -5168 -16) (1408 -5168 0) (1208 -5168 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388552" + "plane" "(1400 -5176 -16) (1400 -5176 0) (1408 -5168 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388551" + "plane" "(1208 -5176 -16) (1208 -5176 0) (1400 -5176 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857984" + side + { + "id" "388568" + "plane" "(1208 -5320 0) (1208 -5176 0) (1400 -5176 0)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[1 0 0 -704] 0.125" + "vaxis" "[0 -1 0 -512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388567" + "plane" "(1208 -5176 -16) (1208 -5320 -16) (1400 -5320 -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" "388566" + "plane" "(1208 -5320 -16) (1208 -5176 -16) (1208 -5176 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388565" + "plane" "(1400 -5176 -16) (1400 -5320 -16) (1400 -5320 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388564" + "plane" "(1208 -5176 -16) (1400 -5176 -16) (1400 -5176 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388563" + "plane" "(1400 -5320 -16) (1208 -5320 -16) (1208 -5320 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7857985" + side + { + "id" "388574" + "plane" "(1208 -5328 0) (1208 -5320 0) (1400 -5320 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388573" + "plane" "(1208 -5328 -16) (1408 -5328 -16) (1400 -5320 -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" "388572" + "plane" "(1208 -5328 -16) (1208 -5328 0) (1408 -5328 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" "388571" + "plane" "(1208 -5320 -16) (1208 -5320 0) (1208 -5328 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388570" + "plane" "(1408 -5328 -16) (1408 -5328 0) (1400 -5320 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388569" + "plane" "(1400 -5320 -16) (1400 -5320 0) (1208 -5320 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7858168" + side + { + "id" "388640" + "plane" "(1968 -4216 0) (2048 -4216 0) (2048 -4336 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388639" + "plane" "(1968 -4336 -16) (2048 -4336 -16) (2048 -4216 -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" "388638" + "plane" "(2048 -4216 -16) (2048 -4336 -16) (2048 -4336 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" "388637" + "plane" "(1968 -4216 -16) (2048 -4216 -16) (2048 -4216 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" "388636" + "plane" "(2048 -4336 -16) (1968 -4336 -16) (1968 -4336 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" "388635" + "plane" "(1968 -4336 -16) (1968 -4216 -16) (1968 -4216 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7858183" + side + { + "id" "388646" + "plane" "(1760 -4336 0) (1424 -4336 0) (1424 -4216 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388645" + "plane" "(1760 -4216 -16) (1424 -4216 -16) (1424 -4336 -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" "388644" + "plane" "(1424 -4336 -16) (1424 -4216 -16) (1424 -4216 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" "388643" + "plane" "(1424 -4216 -16) (1760 -4216 -16) (1760 -4216 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" "388642" + "plane" "(1760 -4336 -16) (1424 -4336 -16) (1424 -4336 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" "388641" + "plane" "(1760 -4216 -16) (1760 -4336 -16) (1760 -4336 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7858195" + side + { + "id" "388658" + "plane" "(1968 -4336 0) (1760 -4336 0) (1760 -4288 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388657" + "plane" "(1760 -4288 -16) (1760 -4336 -16) (1968 -4336 -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" "388656" + "plane" "(1968 -4336 -16) (1760 -4336 -16) (1760 -4336 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" "388655" + "plane" "(1968 -4288 -16) (1968 -4336 -16) (1968 -4336 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388654" + "plane" "(1760 -4336 -16) (1760 -4288 -16) (1760 -4288 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388653" + "plane" "(1760 -4288 -16) (1968 -4288 -16) (1968 -4288 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7858203" + side + { + "id" "388676" + "plane" "(1968 -4216 0) (1968 -4288 0) (1960 -4280 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388675" + "plane" "(1960 -4216 -16) (1960 -4280 -16) (1968 -4288 -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" "388674" + "plane" "(1968 -4216 -16) (1968 -4216 0) (1960 -4216 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" "388673" + "plane" "(1968 -4288 -16) (1968 -4288 0) (1968 -4216 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388672" + "plane" "(1960 -4280 -16) (1960 -4280 0) (1968 -4288 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388671" + "plane" "(1960 -4216 -16) (1960 -4216 0) (1960 -4280 0)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "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 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7858210" + side + { + "id" "388682" + "plane" "(1760 -4288 0) (1760 -4216 0) (1768 -4216 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388681" + "plane" "(1760 -4216 -16) (1760 -4288 -16) (1768 -4280 -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" "388680" + "plane" "(1768 -4216 -16) (1768 -4216 0) (1760 -4216 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" "388679" + "plane" "(1760 -4216 -16) (1760 -4216 0) (1760 -4288 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388678" + "plane" "(1760 -4288 -16) (1760 -4288 0) (1768 -4280 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388677" + "plane" "(1768 -4280 -16) (1768 -4280 0) (1768 -4216 0)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "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 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7858220" + side + { + "id" "388694" + "plane" "(1768 -4280 0) (1960 -4280 0) (1968 -4288 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388693" + "plane" "(1968 -4288 -16) (1960 -4280 -16) (1768 -4280 -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" "388692" + "plane" "(1760 -4288 0) (1968 -4288 0) (1968 -4288 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388691" + "plane" "(1968 -4288 0) (1960 -4280 0) (1960 -4280 -16)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388690" + "plane" "(1768 -4280 0) (1760 -4288 0) (1760 -4288 -16)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388689" + "plane" "(1960 -4280 0) (1768 -4280 0) (1768 -4280 -16)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "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 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7858221" + side + { + "id" "388700" + "plane" "(1768 -4280 0) (1768 -4216 0) (1960 -4216 0)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[1 0 0 -704] 0.125" + "vaxis" "[0 -1 0 -512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388699" + "plane" "(1960 -4216 -16) (1768 -4216 -16) (1768 -4280 -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" "388698" + "plane" "(1768 -4216 -16) (1960 -4216 -16) (1960 -4216 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" "388697" + "plane" "(1960 -4216 -16) (1960 -4280 -16) (1960 -4280 0)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388696" + "plane" "(1768 -4280 -16) (1768 -4216 -16) (1768 -4216 0)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388695" + "plane" "(1960 -4280 -16) (1768 -4280 -16) (1768 -4280 0)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "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 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7818353" + side + { + "id" "388449" + "plane" "(-576 -3808 -56) (-441 -3808 -56) (-441 -3809 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388450" + "plane" "(-576 -3809 -224) (-441 -3809 -224) (-441 -3808 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388451" + "plane" "(-576 -3808 -56) (-576 -3809 -56) (-576 -3809 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388452" + "plane" "(-441 -3808 -224) (-441 -3809 -224) (-441 -3809 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388453" + "plane" "(-441 -3808 -56) (-576 -3808 -56) (-576 -3808 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388454" + "plane" "(-441 -3809 -224) (-576 -3809 -224) (-576 -3809 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7818380" + side + { + "id" "388473" + "plane" "(-776 -3216 -46) (-775 -3216 -46) (-775 -3545 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388474" + "plane" "(-776 -3545 -224) (-775 -3545 -224) (-775 -3216 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388475" + "plane" "(-776 -3216 -46) (-776 -3545 -46) (-776 -3545 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388476" + "plane" "(-775 -3216 -224) (-775 -3545 -224) (-775 -3545 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388477" + "plane" "(-775 -3216 -46) (-776 -3216 -46) (-776 -3216 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388478" + "plane" "(-775 -3545 -224) (-776 -3545 -224) (-776 -3545 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7778897" + side + { + "id" "388141" + "plane" "(-792 -3232 -46) (-860 -3232 -46) (-860 -3216 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 12.8003] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388140" + "plane" "(-792 -3216 -214) (-792 -3216 -46) (-860 -3216 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 541.399] 0.125" + "vaxis" "[0 0 -1 -86.8383] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388139" + "plane" "(-860 -3232 -46) (-792 -3232 -46) (-792 -3232 -214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8003] 0.25" + "vaxis" "[0 0 -1 -54.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388138" + "plane" "(-792 -3232 -214) (-792 -3232 -46) (-792 -3216 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -54.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388137" + "plane" "(-792 -3216 -214) (-860 -3216 -214) (-860 -3232 -214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 12.8003] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388136" + "plane" "(-860 -3216 -214) (-860 -3216 -46) (-860 -3232 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 957.396] 0.125" + "vaxis" "[0 0 -1 -86.8383] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498598" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7778916" + side + { + "id" "388171" + "plane" "(-1649 -3216 -46) (-1649 -3216 -84) (-860 -3216 -84)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -329] 0.125" + "vaxis" "[0 0 -1 -84.7133] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388170" + "plane" "(-1649 -3232 -84) (-1649 -3232 -46) (-860 -3232 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 -53.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388169" + "plane" "(-1649 -3232 -46) (-1649 -3232 -84) (-1649 -3216 -84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -53.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388168" + "plane" "(-860 -3232 -46) (-1649 -3232 -46) (-1649 -3216 -46)" + "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" "388167" + "plane" "(-860 -3216 -46) (-860 -3216 -84) (-860 -3232 -84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388166" + "plane" "(-860 -3216 -84) (-1649 -3216 -84) (-1649 -3232 -84)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498598" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7779163" + side + { + "id" "388250" + "plane" "(1232 -5000 236) (1248 -5000 236) (1248 -5027 236)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388251" + "plane" "(1232 -5027 0) (1248 -5027 0) (1248 -5000 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388252" + "plane" "(1232 -5000 236) (1232 -5027 236) (1232 -5027 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388253" + "plane" "(1248 -5000 0) (1248 -5027 0) (1248 -5027 236)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388254" + "plane" "(1248 -5000 236) (1232 -5000 236) (1232 -5000 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388255" + "plane" "(1248 -5027 0) (1232 -5027 0) (1232 -5027 236)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 197 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7739636" + side + { + "id" "388087" + "plane" "(-488 -3696 -32) (-488 -3656 -32) (-256 -3656 -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" "388086" + "plane" "(-488 -3656 -48) (-488 -3696 -48) (-256 -3696 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388085" + "plane" "(-488 -3696 -48) (-488 -3656 -48) (-488 -3656 -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" "388084" + "plane" "(-256 -3656 -48) (-256 -3696 -48) (-256 -3696 -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" "388083" + "plane" "(-488 -3656 -48) (-256 -3656 -48) (-256 -3656 -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" "388082" + "plane" "(-256 -3696 -48) (-488 -3696 -48) (-488 -3696 -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 100 133" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7739683" + side + { + "id" "388093" + "plane" "(-488 -3792 -32) (-488 -3728 -32) (-256 -3728 -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" "388092" + "plane" "(-488 -3728 -48) (-488 -3792 -48) (-256 -3792 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388091" + "plane" "(-488 -3792 -48) (-488 -3728 -48) (-488 -3728 -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" "388090" + "plane" "(-256 -3728 -48) (-256 -3792 -48) (-256 -3792 -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" "388089" + "plane" "(-256 -3792 -48) (-488 -3792 -48) (-488 -3792 -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" "388088" + "plane" "(-488 -3728 -48) (-256 -3728 -48) (-256 -3728 -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 100 133" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7739832" + side + { + "id" "388129" + "plane" "(2552 -3495 367.875) (2552 -3560 367.875) (2415 -3560 367.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388128" + "plane" "(2552 -3560 15.875) (2552 -3495 15.875) (2415 -3556 15.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388127" + "plane" "(2552 -3560 15.875) (2552 -3560 367.875) (2552 -3495 367.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388126" + "plane" "(2552 -3495 15.875) (2552 -3495 367.875) (2415 -3556 367.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388125" + "plane" "(2415 -3560 15.875) (2415 -3560 367.875) (2552 -3560 367.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388124" + "plane" "(2415 -3556 15.875) (2415 -3556 367.875) (2415 -3560 367.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 235" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7720016" + side + { + "id" "388040" + "plane" "(-608 -3704 -224) (-608 -3296 -224) (-592 -3296 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388039" + "plane" "(-608 -3296 -240) (-608 -3704 -240) (-592 -3704 -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" "388038" + "plane" "(-608 -3704 -240) (-608 -3296 -240) (-608 -3296 -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" "388037" + "plane" "(-608 -3296 -240) (-592 -3296 -240) (-592 -3296 -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" "388036" + "plane" "(-592 -3704 -240) (-608 -3704 -240) (-608 -3704 -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" "388035" + "plane" "(-592 -3296 -240) (-592 -3704 -240) (-592 -3704 -224)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7720017" + side + { + "id" "388046" + "plane" "(-592 -3296 -224) (-496 -3296 -224) (-496 -3704 -224)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388045" + "plane" "(-592 -3704 -240) (-496 -3704 -240) (-496 -3296 -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" "388044" + "plane" "(-496 -3296 -240) (-496 -3704 -240) (-496 -3704 -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" "388043" + "plane" "(-592 -3296 -240) (-496 -3296 -240) (-496 -3296 -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" "388042" + "plane" "(-496 -3704 -240) (-592 -3704 -240) (-592 -3704 -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" "388041" + "plane" "(-592 -3704 -240) (-592 -3296 -240) (-592 -3296 -224)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7720142" + side + { + "id" "388058" + "plane" "(-192 -4352 -224) (-192 -4384 -224) (-752 -4384 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "388057" + "plane" "(-752 -4384 -480) (-192 -4384 -480) (-192 -4352 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388056" + "plane" "(-192 -4352 -480) (-192 -4384 -480) (-192 -4384 -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" "388055" + "plane" "(-192 -4384 -480) (-752 -4384 -480) (-752 -4384 -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" "388054" + "plane" "(-784 -4352 -480) (-192 -4352 -480) (-192 -4352 -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" "388053" + "plane" "(-752 -4384 -480) (-784 -4352 -480) (-784 -4352 -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" + } + editor + { + "color" "0 211 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7720144" + side + { + "id" "388069" + "plane" "(-816 -4320 -224) (-816 -3744 -224) (-784 -3744 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "388068" + "plane" "(-816 -3744 -480) (-816 -4320 -480) (-784 -4352 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388067" + "plane" "(-816 -4320 -480) (-816 -3744 -480) (-816 -3744 -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" "388066" + "plane" "(-784 -3744 -480) (-784 -4352 -480) (-784 -4352 -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" "388065" + "plane" "(-816 -3744 -480) (-784 -3744 -480) (-784 -3744 -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" "388064" + "plane" "(-784 -4352 -480) (-816 -4320 -480) (-816 -4320 -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" + } + editor + { + "color" "0 162 139" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7720147" + side + { + "id" "388070" + "plane" "(-816 -4320 -480) (-752 -4320 -480) (-752 -4384 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388071" + "plane" "(-816 -4384 -504) (-752 -4384 -504) (-752 -4320 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388072" + "plane" "(-816 -4320 -480) (-816 -4384 -480) (-816 -4384 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388073" + "plane" "(-752 -4320 -504) (-752 -4384 -504) (-752 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388074" + "plane" "(-752 -4320 -480) (-816 -4320 -480) (-816 -4320 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388075" + "plane" "(-752 -4384 -504) (-816 -4384 -504) (-816 -4384 -480)" + "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 200 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7700632" + side + { + "id" "388022" + "plane" "(-799 -3074 72) (-839 -3074 72) (-839 -3034 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[-1 0 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388021" + "plane" "(-799 -3034 -7.62939e-06) (-839 -3034 -7.62939e-06) (-839 -3074 -7.62939e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[-1 0 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388020" + "plane" "(-839 -3034 -7.62939e-06) (-799 -3034 -7.62939e-06) (-799 -3034 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388019" + "plane" "(-799 -3074 -7.62939e-06) (-839 -3074 -7.62939e-06) (-839 -3074 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388018" + "plane" "(-799 -3034 -7.62939e-06) (-799 -3074 -7.62939e-06) (-799 -3074 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388017" + "plane" "(-839 -3074 -7.62939e-06) (-839 -3034 -7.62939e-06) (-839 -3034 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7700631" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7700636" + side + { + "id" "388034" + "plane" "(-896 -2192 48) (-936 -2192 48) (-936 -2152 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388033" + "plane" "(-896 -2152 -24) (-936 -2152 -24) (-936 -2192 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388032" + "plane" "(-936 -2152 -24) (-896 -2152 -24) (-896 -2152 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388031" + "plane" "(-896 -2192 -24) (-936 -2192 -24) (-936 -2192 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388030" + "plane" "(-896 -2152 -24) (-896 -2192 -24) (-896 -2192 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388029" + "plane" "(-936 -2192 -24) (-936 -2152 -24) (-936 -2152 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7700635" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680637" + side + { + "id" "387567" + "plane" "(1472 -5432 72) (1512 -5432 72) (1512 -5472 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387568" + "plane" "(1472 -5472 -7.62939e-06) (1512 -5472 -7.62939e-06) (1512 -5432 -7.62939e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387569" + "plane" "(1472 -5432 72) (1472 -5472 72) (1472 -5472 -7.62939e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387570" + "plane" "(1512 -5432 -7.62939e-06) (1512 -5472 -7.62939e-06) (1512 -5472 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387571" + "plane" "(1512 -5432 72) (1472 -5432 72) (1472 -5432 -7.62939e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387572" + "plane" "(1512 -5472 -7.62939e-06) (1472 -5472 -7.62939e-06) (1472 -5472 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680643" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680663" + side + { + "id" "387584" + "plane" "(987 -6507 72) (1027 -6507 72) (1027 -6547 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387583" + "plane" "(987 -6547 0) (1027 -6547 0) (1027 -6507 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387582" + "plane" "(987 -6507 72) (987 -6547 72) (987 -6547 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387581" + "plane" "(1027 -6507 0) (1027 -6547 0) (1027 -6547 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387580" + "plane" "(1027 -6507 72) (987 -6507 72) (987 -6507 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387579" + "plane" "(1027 -6547 0) (987 -6547 0) (987 -6547 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680660" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680667" + side + { + "id" "387596" + "plane" "(74 -6501 71) (114 -6501 71) (114 -6541 71)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387595" + "plane" "(74 -6541 -1.00001) (114 -6541 -1.00001) (114 -6501 -1.00001)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387594" + "plane" "(74 -6501 71) (74 -6541 71) (74 -6541 -1.00001)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387593" + "plane" "(114 -6501 -1.00001) (114 -6541 -1.00001) (114 -6541 71)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387592" + "plane" "(114 -6501 71) (74 -6501 71) (74 -6501 -1.00001)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387591" + "plane" "(114 -6541 -1.00001) (74 -6541 -1.00001) (74 -6541 71)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680664" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680679" + side + { + "id" "387608" + "plane" "(-224 -6096 104) (-184 -6096 104) (-184 -6136 104)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387607" + "plane" "(-224 -6136 32) (-184 -6136 32) (-184 -6096 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387606" + "plane" "(-224 -6096 104) (-224 -6136 104) (-224 -6136 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387605" + "plane" "(-184 -6096 32) (-184 -6136 32) (-184 -6136 104)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387604" + "plane" "(-184 -6096 104) (-224 -6096 104) (-224 -6096 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387603" + "plane" "(-184 -6136 32) (-224 -6136 32) (-224 -6136 104)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680676" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680683" + side + { + "id" "387620" + "plane" "(-427 -4242 -152) (-387 -4242 -152) (-387 -4282 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387619" + "plane" "(-427 -4282 -224) (-387 -4282 -224) (-387 -4242 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387618" + "plane" "(-427 -4242 -152) (-427 -4282 -152) (-427 -4282 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387617" + "plane" "(-387 -4242 -224) (-387 -4282 -224) (-387 -4282 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387616" + "plane" "(-387 -4242 -152) (-427 -4242 -152) (-427 -4242 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387615" + "plane" "(-387 -4282 -224) (-427 -4282 -224) (-427 -4282 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680680" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680703" + side + { + "id" "387632" + "plane" "(152 -4336 -24) (152 -4296 -24) (192 -4296 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387631" + "plane" "(192 -4336 -96) (192 -4296 -96) (152 -4296 -96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387630" + "plane" "(152 -4336 -24) (192 -4336 -24) (192 -4336 -96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387629" + "plane" "(152 -4296 -96) (192 -4296 -96) (192 -4296 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387628" + "plane" "(152 -4296 -24) (152 -4336 -24) (152 -4336 -96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387627" + "plane" "(192 -4296 -96) (192 -4336 -96) (192 -4336 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680700" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680715" + side + { + "id" "387644" + "plane" "(-352 -3552 -152) (-352 -3592 -152) (-392 -3592 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[-1 0 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387643" + "plane" "(-392 -3552 -224) (-392 -3592 -224) (-352 -3592 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[-1 0 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387642" + "plane" "(-352 -3552 -152) (-392 -3552 -152) (-392 -3552 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387641" + "plane" "(-352 -3592 -224) (-392 -3592 -224) (-392 -3592 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387640" + "plane" "(-352 -3592 -152) (-352 -3552 -152) (-352 -3552 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387639" + "plane" "(-392 -3592 -224) (-392 -3552 -224) (-392 -3552 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680712" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680731" + side + { + "id" "387656" + "plane" "(-704 -3672 -152) (-664 -3672 -152) (-664 -3712 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387655" + "plane" "(-704 -3712 -224) (-664 -3712 -224) (-664 -3672 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387654" + "plane" "(-704 -3672 -152) (-704 -3712 -152) (-704 -3712 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387653" + "plane" "(-664 -3672 -224) (-664 -3712 -224) (-664 -3712 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387652" + "plane" "(-664 -3672 -152) (-704 -3672 -152) (-704 -3672 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387651" + "plane" "(-664 -3712 -224) (-704 -3712 -224) (-704 -3712 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680728" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680739" + side + { + "id" "387668" + "plane" "(-1248 -3120 -128) (-1208 -3120 -128) (-1208 -3160 -128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387667" + "plane" "(-1248 -3160 -200) (-1208 -3160 -200) (-1208 -3120 -200)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387666" + "plane" "(-1248 -3120 -128) (-1248 -3160 -128) (-1248 -3160 -200)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387665" + "plane" "(-1208 -3120 -200) (-1208 -3160 -200) (-1208 -3160 -128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387664" + "plane" "(-1208 -3120 -128) (-1248 -3120 -128) (-1248 -3120 -200)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387663" + "plane" "(-1208 -3160 -200) (-1248 -3160 -200) (-1248 -3160 -128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680736" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680767" + side + { + "id" "387680" + "plane" "(-728 -3080 -128) (-728 -3040 -128) (-688 -3040 -128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387679" + "plane" "(-688 -3080 -200) (-688 -3040 -200) (-728 -3040 -200)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387678" + "plane" "(-728 -3080 -128) (-688 -3080 -128) (-688 -3080 -200)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387677" + "plane" "(-728 -3040 -200) (-688 -3040 -200) (-688 -3040 -128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387676" + "plane" "(-728 -3040 -128) (-728 -3080 -128) (-728 -3080 -200)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387675" + "plane" "(-688 -3040 -200) (-688 -3080 -200) (-688 -3080 -128)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680764" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680779" + side + { + "id" "387692" + "plane" "(-1280 -2192 48) (-1280 -2232 48) (-1320 -2232 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -36] 0.25" + "vaxis" "[-1 0 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387691" + "plane" "(-1320 -2192 -24) (-1320 -2232 -24) (-1280 -2232 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -36] 0.25" + "vaxis" "[-1 0 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387690" + "plane" "(-1280 -2192 48) (-1320 -2192 48) (-1320 -2192 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387689" + "plane" "(-1280 -2232 -24) (-1320 -2232 -24) (-1320 -2232 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387688" + "plane" "(-1280 -2232 48) (-1280 -2192 48) (-1280 -2192 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -36] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387687" + "plane" "(-1320 -2232 -24) (-1320 -2192 -24) (-1320 -2192 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -36] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680776" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680803" + side + { + "id" "387704" + "plane" "(-728 -2335 48) (-728 -2375 48) (-768 -2375 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387703" + "plane" "(-768 -2335 -24) (-768 -2375 -24) (-728 -2375 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387702" + "plane" "(-728 -2335 48) (-768 -2335 48) (-768 -2335 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387701" + "plane" "(-728 -2375 -24) (-768 -2375 -24) (-768 -2375 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387700" + "plane" "(-728 -2375 48) (-728 -2335 48) (-728 -2335 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387699" + "plane" "(-768 -2375 -24) (-768 -2335 -24) (-768 -2335 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680800" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680815" + side + { + "id" "387716" + "plane" "(-376 -2848 72) (-376 -2808 72) (-336 -2808 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28.0059] 0.25" + "vaxis" "[1 0 0 36.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387715" + "plane" "(-336 -2848 0) (-336 -2808 0) (-376 -2808 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28.0059] 0.25" + "vaxis" "[1 0 0 36.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387714" + "plane" "(-376 -2848 72) (-336 -2848 72) (-336 -2848 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -36.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387713" + "plane" "(-376 -2808 0) (-336 -2808 0) (-336 -2808 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -36.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387712" + "plane" "(-376 -2808 72) (-376 -2848 72) (-376 -2848 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28.0059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387711" + "plane" "(-336 -2808 0) (-336 -2848 0) (-336 -2848 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 28.0059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680812" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680831" + side + { + "id" "387728" + "plane" "(352 -2080 48) (352 -2040 48) (392 -2040 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36.002] 0.25" + "vaxis" "[1 0 0 -59.9985] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387727" + "plane" "(392 -2080 -24) (392 -2040 -24) (352 -2040 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36.002] 0.25" + "vaxis" "[1 0 0 -59.9985] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387726" + "plane" "(352 -2080 48) (392 -2080 48) (392 -2080 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.9985] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387725" + "plane" "(352 -2040 -24) (392 -2040 -24) (392 -2040 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.9985] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387724" + "plane" "(352 -2040 48) (352 -2080 48) (352 -2080 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36.002] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387723" + "plane" "(392 -2040 -24) (392 -2080 -24) (392 -2080 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36.002] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680828" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680843" + side + { + "id" "387740" + "plane" "(1224 -3352 88) (1224 -3312 88) (1264 -3312 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4.00195] 0.25" + "vaxis" "[1 0 0 -27.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387739" + "plane" "(1264 -3352 16) (1264 -3312 16) (1224 -3312 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4.00195] 0.25" + "vaxis" "[1 0 0 -27.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387738" + "plane" "(1224 -3352 88) (1264 -3352 88) (1264 -3352 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 27.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387737" + "plane" "(1224 -3312 16) (1264 -3312 16) (1264 -3312 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 27.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387736" + "plane" "(1224 -3312 88) (1224 -3352 88) (1224 -3352 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4.00195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387735" + "plane" "(1264 -3312 16) (1264 -3352 16) (1264 -3352 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4.00195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680840" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680855" + side + { + "id" "387752" + "plane" "(1008 -3056 32) (1008 -3016 32) (1048 -3016 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.998] 0.25" + "vaxis" "[1 0 0 -59.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387751" + "plane" "(1048 -3056 -40) (1048 -3016 -40) (1008 -3016 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.998] 0.25" + "vaxis" "[1 0 0 -59.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387750" + "plane" "(1008 -3056 32) (1048 -3056 32) (1048 -3056 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387749" + "plane" "(1008 -3016 -40) (1048 -3016 -40) (1048 -3016 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387748" + "plane" "(1008 -3016 32) (1008 -3056 32) (1008 -3056 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387747" + "plane" "(1048 -3016 -40) (1048 -3056 -40) (1048 -3056 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680852" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680863" + side + { + "id" "387764" + "plane" "(744 -2336 32) (704 -2336 32) (704 -2296 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -3.99805] 0.25" + "vaxis" "[0 1 0 3.99707] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387763" + "plane" "(744 -2296 -40) (704 -2296 -40) (704 -2336 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -3.99805] 0.25" + "vaxis" "[0 1 0 3.99707] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387762" + "plane" "(744 -2336 32) (744 -2296 32) (744 -2296 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99707] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387761" + "plane" "(704 -2336 -40) (704 -2296 -40) (704 -2296 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99707] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387760" + "plane" "(704 -2336 32) (744 -2336 32) (744 -2336 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -3.99805] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387759" + "plane" "(704 -2296 -40) (744 -2296 -40) (744 -2296 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -3.99805] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680860" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680875" + side + { + "id" "387776" + "plane" "(1136 -1880 56) (1096 -1880 56) (1096 -1840 56)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.9976] 0.25" + "vaxis" "[0 1 0 35.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387775" + "plane" "(1136 -1840 -16) (1096 -1840 -16) (1096 -1880 -16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.9976] 0.25" + "vaxis" "[0 1 0 35.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387774" + "plane" "(1136 -1880 56) (1136 -1840 56) (1136 -1840 -16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387773" + "plane" "(1096 -1880 -16) (1096 -1840 -16) (1096 -1840 56)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387772" + "plane" "(1096 -1880 56) (1136 -1880 56) (1136 -1880 -16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.9976] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387771" + "plane" "(1096 -1840 -16) (1136 -1840 -16) (1136 -1840 56)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.9976] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680872" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680887" + side + { + "id" "387788" + "plane" "(1432 -2288 32) (1432 -2248 32) (1472 -2248 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36.002] 0.25" + "vaxis" "[1 0 0 -27.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387787" + "plane" "(1472 -2288 -40) (1472 -2248 -40) (1432 -2248 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36.002] 0.25" + "vaxis" "[1 0 0 -27.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387786" + "plane" "(1432 -2288 32) (1472 -2288 32) (1472 -2288 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 27.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387785" + "plane" "(1432 -2248 -40) (1472 -2248 -40) (1472 -2248 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 27.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387784" + "plane" "(1432 -2248 32) (1432 -2288 32) (1432 -2288 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36.002] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387783" + "plane" "(1472 -2248 -40) (1472 -2288 -40) (1472 -2288 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -36.002] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680884" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680895" + side + { + "id" "387800" + "plane" "(1456 -2952 88) (1416 -2952 88) (1416 -2912 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 28] 0.25" + "vaxis" "[0 1 0 35.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387799" + "plane" "(1456 -2912 16) (1416 -2912 16) (1416 -2952 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 28] 0.25" + "vaxis" "[0 1 0 35.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387798" + "plane" "(1456 -2952 88) (1456 -2912 88) (1456 -2912 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387797" + "plane" "(1416 -2952 16) (1416 -2912 16) (1416 -2912 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387796" + "plane" "(1416 -2952 88) (1456 -2952 88) (1456 -2952 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387795" + "plane" "(1416 -2912 16) (1456 -2912 16) (1456 -2912 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680892" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680911" + side + { + "id" "387812" + "plane" "(1432 -3295 88) (1432 -3335 88) (1392 -3335 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -31.9941] 0.25" + "vaxis" "[-1 0 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387811" + "plane" "(1392 -3295 16) (1392 -3335 16) (1432 -3335 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -31.9941] 0.25" + "vaxis" "[-1 0 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387810" + "plane" "(1432 -3295 88) (1392 -3295 88) (1392 -3295 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387809" + "plane" "(1432 -3335 16) (1392 -3335 16) (1392 -3335 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387808" + "plane" "(1432 -3335 88) (1432 -3295 88) (1432 -3295 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -31.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387807" + "plane" "(1392 -3335 16) (1392 -3295 16) (1392 -3295 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -31.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680908" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680927" + side + { + "id" "387824" + "plane" "(2008 -2848 88) (2008 -2888 88) (1968 -2888 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9922] 0.25" + "vaxis" "[-1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387823" + "plane" "(1968 -2848 16) (1968 -2888 16) (2008 -2888 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9922] 0.25" + "vaxis" "[-1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387822" + "plane" "(2008 -2848 88) (1968 -2848 88) (1968 -2848 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387821" + "plane" "(2008 -2888 16) (1968 -2888 16) (1968 -2888 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387820" + "plane" "(2008 -2888 88) (2008 -2848 88) (2008 -2848 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387819" + "plane" "(1968 -2888 16) (1968 -2848 16) (1968 -2848 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680924" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680943" + side + { + "id" "387836" + "plane" "(2368 -2872 88) (2328 -2872 88) (2328 -2832 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.9979] 0.25" + "vaxis" "[0 1 0 35.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387835" + "plane" "(2368 -2832 16) (2328 -2832 16) (2328 -2872 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.9979] 0.25" + "vaxis" "[0 1 0 35.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387834" + "plane" "(2368 -2872 88) (2368 -2832 88) (2368 -2832 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387833" + "plane" "(2328 -2872 16) (2328 -2832 16) (2328 -2832 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387832" + "plane" "(2328 -2872 88) (2368 -2872 88) (2368 -2872 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.9979] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387831" + "plane" "(2328 -2832 16) (2368 -2832 16) (2368 -2832 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.9979] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680940" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680955" + side + { + "id" "387848" + "plane" "(1632 -3552 72) (1592 -3552 72) (1592 -3512 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.998] 0.25" + "vaxis" "[0 1 0 3.99609] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387847" + "plane" "(1632 -3512 0) (1592 -3512 0) (1592 -3552 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.998] 0.25" + "vaxis" "[0 1 0 3.99609] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387846" + "plane" "(1632 -3552 72) (1632 -3512 72) (1632 -3512 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99609] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387845" + "plane" "(1592 -3552 0) (1592 -3512 0) (1592 -3512 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99609] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387844" + "plane" "(1592 -3552 72) (1632 -3552 72) (1632 -3552 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387843" + "plane" "(1592 -3512 0) (1632 -3512 0) (1632 -3512 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -35.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680952" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680971" + side + { + "id" "387860" + "plane" "(1560 -4080 72) (1600 -4080 72) (1600 -4120 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -3.99707] 0.25" + "vaxis" "[0 -1 0 -59.9922] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387859" + "plane" "(1560 -4120 0) (1600 -4120 0) (1600 -4080 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -3.99707] 0.25" + "vaxis" "[0 -1 0 -59.9922] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387858" + "plane" "(1560 -4080 72) (1560 -4120 72) (1560 -4120 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 59.9922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387857" + "plane" "(1600 -4080 0) (1600 -4120 0) (1600 -4120 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 59.9922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387856" + "plane" "(1600 -4080 72) (1560 -4080 72) (1560 -4080 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -3.99707] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387855" + "plane" "(1600 -4120 0) (1560 -4120 0) (1560 -4120 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -3.99707] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7680991" + side + { + "id" "387872" + "plane" "(2136 -4344 120) (2096 -4344 120) (2096 -4304 120)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -4.00391] 0.25" + "vaxis" "[0 1 0 36.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387871" + "plane" "(2136 -4304 48) (2096 -4304 48) (2096 -4344 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -4.00391] 0.25" + "vaxis" "[0 1 0 36.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387870" + "plane" "(2136 -4344 120) (2136 -4304 120) (2136 -4304 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -36.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387869" + "plane" "(2096 -4344 48) (2096 -4304 48) (2096 -4304 120)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -36.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387868" + "plane" "(2096 -4344 120) (2136 -4344 120) (2136 -4344 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -4.00391] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387867" + "plane" "(2096 -4304 48) (2136 -4304 48) (2136 -4304 120)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -4.00391] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7680988" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681007" + side + { + "id" "387884" + "plane" "(1816 -4648 72) (1776 -4648 72) (1776 -4608 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -3.99805] 0.25" + "vaxis" "[0 1 0 35.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387883" + "plane" "(1816 -4608 -3.8147e-06) (1776 -4608 -3.8147e-06) (1776 -4648 -3.8147e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -3.99805] 0.25" + "vaxis" "[0 1 0 35.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387882" + "plane" "(1816 -4648 72) (1816 -4608 72) (1816 -4608 -3.8147e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387881" + "plane" "(1776 -4648 -3.8147e-06) (1776 -4608 -3.8147e-06) (1776 -4608 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387880" + "plane" "(1776 -4648 72) (1816 -4648 72) (1816 -4648 -3.8147e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -3.99805] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387879" + "plane" "(1776 -4608 -3.8147e-06) (1816 -4608 -3.8147e-06) (1816 -4608 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -3.99805] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681004" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681019" + side + { + "id" "387896" + "plane" "(2096 -5408 120) (2096 -5368 120) (2136 -5368 120)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.9971] 0.25" + "vaxis" "[1 0 0 -59.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387895" + "plane" "(2136 -5408 48) (2136 -5368 48) (2096 -5368 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.9971] 0.25" + "vaxis" "[1 0 0 -59.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387894" + "plane" "(2096 -5408 120) (2136 -5408 120) (2136 -5408 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387893" + "plane" "(2096 -5368 48) (2136 -5368 48) (2136 -5368 120)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387892" + "plane" "(2096 -5368 120) (2096 -5408 120) (2096 -5408 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387891" + "plane" "(2136 -5368 48) (2136 -5408 48) (2136 -5408 120)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681016" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681027" + side + { + "id" "387908" + "plane" "(-96.0002 -3568 -152) (-96.0002 -3528 -152) (-56.0002 -3528 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.998] 0.25" + "vaxis" "[1 0 0 -59.9976] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387907" + "plane" "(-56.0002 -3568 -224) (-56.0002 -3528 -224) (-96.0002 -3528 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.998] 0.25" + "vaxis" "[1 0 0 -59.9976] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387906" + "plane" "(-96.0002 -3568 -152) (-56.0002 -3568 -152) (-56.0002 -3568 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.9976] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387905" + "plane" "(-96.0002 -3528 -224) (-56.0002 -3528 -224) (-56.0002 -3528 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.9976] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387904" + "plane" "(-96.0002 -3528 -152) (-96.0002 -3568 -152) (-96.0002 -3568 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387903" + "plane" "(-56.0002 -3528 -224) (-56.0002 -3568 -224) (-56.0002 -3568 -152)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 27.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681024" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681035" + side + { + "id" "387920" + "plane" "(96.0001 -3120 72) (96.0001 -3160 72) (56.0001 -3160 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9922] 0.25" + "vaxis" "[-1 0 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387919" + "plane" "(56.0001 -3120 -3.8147e-06) (56.0001 -3160 -3.8147e-06) (96.0001 -3160 -3.8147e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9922] 0.25" + "vaxis" "[-1 0 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387918" + "plane" "(96.0001 -3120 72) (56.0001 -3120 72) (56.0001 -3120 -3.8147e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387917" + "plane" "(96.0001 -3160 -3.8147e-06) (56.0001 -3160 -3.8147e-06) (56.0001 -3160 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387916" + "plane" "(96.0001 -3160 72) (96.0001 -3120 72) (96.0001 -3120 -3.8147e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387915" + "plane" "(56.0001 -3160 -3.8147e-06) (56.0001 -3120 -3.8147e-06) (56.0001 -3120 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -35.9922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681032" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681047" + side + { + "id" "387932" + "plane" "(376 -2936 72) (376 -2976 72) (336 -2976 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99219] 0.25" + "vaxis" "[-1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387931" + "plane" "(336 -2936 0) (336 -2976 0) (376 -2976 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99219] 0.25" + "vaxis" "[-1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387930" + "plane" "(376 -2936 72) (336 -2936 72) (336 -2936 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387929" + "plane" "(376 -2976 0) (336 -2976 0) (336 -2976 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387928" + "plane" "(376 -2976 72) (376 -2936 72) (376 -2936 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99219] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387927" + "plane" "(336 -2976 0) (336 -2936 0) (336 -2936 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99219] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681044" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681059" + side + { + "id" "387944" + "plane" "(648 -2760 32) (648 -2800 32) (608 -2800 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99219] 0.25" + "vaxis" "[-1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387943" + "plane" "(608 -2760 -40) (608 -2800 -40) (648 -2800 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99219] 0.25" + "vaxis" "[-1 0 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387942" + "plane" "(648 -2760 32) (608 -2760 32) (608 -2760 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387941" + "plane" "(648 -2800 -40) (608 -2800 -40) (608 -2800 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387940" + "plane" "(648 -2800 32) (648 -2760 32) (648 -2760 -40)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99219] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387939" + "plane" "(608 -2800 -40) (608 -2760 -40) (608 -2760 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -3.99219] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681056" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681075" + side + { + "id" "387956" + "plane" "(440.001 -3336 72) (440.001 -3376 72) (400.001 -3376 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -4.00586] 0.25" + "vaxis" "[-1 0 0 -27.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387955" + "plane" "(400.001 -3336 7.62939e-06) (400.001 -3376 7.62939e-06) (440.001 -3376 7.62939e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -4.00586] 0.25" + "vaxis" "[-1 0 0 -27.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387954" + "plane" "(440.001 -3336 72) (400.001 -3336 72) (400.001 -3336 7.62939e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 27.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387953" + "plane" "(440.001 -3376 7.62939e-06) (400.001 -3376 7.62939e-06) (400.001 -3376 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 27.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387952" + "plane" "(440.001 -3376 72) (440.001 -3336 72) (440.001 -3336 7.62939e-06)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -4.00586] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387951" + "plane" "(400.001 -3376 7.62939e-06) (400.001 -3336 7.62939e-06) (400.001 -3336 72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 -1 0 -4.00586] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681072" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681087" + side + { + "id" "387968" + "plane" "(153 -2584 48) (153 -2544 48) (193 -2544 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 59.998] 0.25" + "vaxis" "[1 0 0 -31.9983] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387967" + "plane" "(193 -2584 -24) (193 -2544 -24) (153 -2544 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 59.998] 0.25" + "vaxis" "[1 0 0 -31.9983] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387966" + "plane" "(153 -2584 48) (193 -2584 48) (193 -2584 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 31.9983] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387965" + "plane" "(153 -2544 -24) (193 -2544 -24) (193 -2544 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 31.9983] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387964" + "plane" "(153 -2544 48) (153 -2584 48) (153 -2584 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 59.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387963" + "plane" "(193 -2544 -24) (193 -2584 -24) (193 -2584 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 59.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681084" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681099" + side + { + "id" "387980" + "plane" "(-152 -2168 48) (-152 -2128 48) (-112 -2128 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4.00195] 0.25" + "vaxis" "[1 0 0 36.0022] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387979" + "plane" "(-112 -2168 -24) (-112 -2128 -24) (-152 -2128 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4.00195] 0.25" + "vaxis" "[1 0 0 36.0022] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387978" + "plane" "(-152 -2168 48) (-112 -2168 48) (-112 -2168 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -36.0022] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387977" + "plane" "(-152 -2128 -24) (-112 -2128 -24) (-112 -2128 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 -36.0022] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387976" + "plane" "(-152 -2128 48) (-152 -2168 48) (-152 -2168 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4.00195] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387975" + "plane" "(-112 -2128 -24) (-112 -2168 -24) (-112 -2168 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4.00195] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681096" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7681111" + side + { + "id" "387992" + "plane" "(1776 -2872 88) (1776 -2832 88) (1816 -2832 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[1 0 0 -59.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387991" + "plane" "(1816 -2872 16) (1816 -2832 16) (1776 -2832 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[1 0 0 -59.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387990" + "plane" "(1776 -2872 88) (1816 -2872 88) (1816 -2872 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387989" + "plane" "(1776 -2832 16) (1816 -2832 16) (1816 -2832 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[-1 0 0 59.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387988" + "plane" "(1776 -2832 88) (1776 -2872 88) (1776 -2872 16)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387987" + "plane" "(1816 -2832 16) (1816 -2872 16) (1816 -2872 88)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 149 0" + "groupid" "7681108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7661339" + side + { + "id" "387561" + "plane" "(-488 -3504 -32) (-464 -3504 -32) (-464 -3600 -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" "387562" + "plane" "(-488 -3600 -48) (-464 -3600 -48) (-464 -3504 -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" "387563" + "plane" "(-488 -3504 -32) (-488 -3600 -32) (-488 -3600 -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" "387564" + "plane" "(-464 -3504 -48) (-464 -3600 -48) (-464 -3600 -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" "387565" + "plane" "(-464 -3504 -32) (-488 -3504 -32) (-488 -3504 -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" "387566" + "plane" "(-464 -3600 -48) (-488 -3600 -48) (-488 -3600 -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 206 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641896" + side + { + "id" "387384" + "plane" "(-488 -3656 -56) (-488 -3448 -56) (-464 -3448 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387383" + "plane" "(-488 -3448 -184) (-488 -3448 -56) (-488 -3656 -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" "387382" + "plane" "(-464 -3656 -184) (-464 -3656 -56) (-464 -3448 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387381" + "plane" "(-464 -3448 -184) (-464 -3448 -56) (-488 -3448 -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" "387380" + "plane" "(-488 -3656 -184) (-488 -3656 -56) (-464 -3656 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387379" + "plane" "(-488 -3448 -184) (-488 -3656 -184) (-464 -3656 -184)" + "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 237 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641897" + side + { + "id" "387390" + "plane" "(-488 -3448 -216) (-488 -3448 -184) (-488 -3656 -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" "387389" + "plane" "(-464 -3656 -216) (-464 -3656 -184) (-464 -3448 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387388" + "plane" "(-464 -3448 -216) (-464 -3448 -184) (-488 -3448 -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" "387387" + "plane" "(-488 -3656 -216) (-488 -3656 -184) (-464 -3656 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387386" + "plane" "(-488 -3448 -216) (-488 -3656 -216) (-464 -3656 -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" "387385" + "plane" "(-488 -3656 -184) (-488 -3448 -184) (-464 -3448 -184)" + "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 237 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641905" + side + { + "id" "387396" + "plane" "(-392 -3448 -56) (-488 -3448 -56) (-488 -3424 -56)" + "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" "387395" + "plane" "(-488 -3424 -184) (-488 -3424 -56) (-488 -3448 -56)" + "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" "387394" + "plane" "(-392 -3424 -56) (-488 -3424 -56) (-488 -3424 -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" "387393" + "plane" "(-488 -3448 -184) (-488 -3448 -56) (-392 -3448 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387392" + "plane" "(-392 -3448 -184) (-392 -3448 -56) (-392 -3424 -56)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387391" + "plane" "(-392 -3424 -184) (-488 -3424 -184) (-488 -3448 -184)" + "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 195 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641906" + side + { + "id" "387402" + "plane" "(-488 -3424 -216) (-488 -3424 -184) (-488 -3448 -184)" + "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" "387401" + "plane" "(-488 -3424 -184) (-488 -3424 -216) (-392 -3424 -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" "387400" + "plane" "(-392 -3448 -216) (-488 -3448 -216) (-488 -3448 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387399" + "plane" "(-392 -3424 -216) (-488 -3424 -216) (-488 -3448 -216)" + "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" "387398" + "plane" "(-392 -3448 -216) (-392 -3448 -184) (-392 -3424 -184)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387397" + "plane" "(-392 -3448 -184) (-488 -3448 -184) (-488 -3424 -184)" + "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 195 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641907" + side + { + "id" "387408" + "plane" "(-200 -3424 -56) (176 -3424 -56) (176 -3448 -56)" + "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" "387407" + "plane" "(176 -3448 -184) (176 -3448 -56) (176 -3424 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387406" + "plane" "(176 -3424 -184) (176 -3424 -56) (-200 -3424 -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" "387405" + "plane" "(-200 -3448 -56) (176 -3448 -56) (176 -3448 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387404" + "plane" "(-200 -3424 -184) (-200 -3424 -56) (-200 -3448 -56)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387403" + "plane" "(-200 -3448 -184) (176 -3448 -184) (176 -3424 -184)" + "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 195 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641908" + side + { + "id" "387414" + "plane" "(176 -3448 -216) (176 -3448 -184) (176 -3424 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387413" + "plane" "(-200 -3424 -216) (176 -3424 -216) (176 -3424 -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" "387412" + "plane" "(176 -3448 -184) (176 -3448 -216) (-200 -3448 -216)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387411" + "plane" "(-200 -3448 -216) (176 -3448 -216) (176 -3424 -216)" + "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" "387410" + "plane" "(-200 -3424 -216) (-200 -3424 -184) (-200 -3448 -184)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387409" + "plane" "(-200 -3424 -184) (176 -3424 -184) (176 -3448 -184)" + "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 195 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641925" + side + { + "id" "387420" + "plane" "(-280 -3824 -56) (-280 -3792 -56) (-256 -3792 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387419" + "plane" "(-280 -3792 -184) (-280 -3792 -56) (-280 -3824 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 -811] 0.125" + "vaxis" "[0 0 -1 -843] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387418" + "plane" "(-256 -3824 -184) (-256 -3824 -56) (-256 -3792 -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" "387417" + "plane" "(-256 -3792 -184) (-256 -3792 -56) (-280 -3792 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387416" + "plane" "(-280 -3824 -184) (-280 -3824 -56) (-256 -3824 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -811] 0.125" + "vaxis" "[0 0 -1 -843] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387415" + "plane" "(-280 -3792 -184) (-280 -3824 -184) (-256 -3824 -184)" + "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 158 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641926" + side + { + "id" "387426" + "plane" "(-280 -3792 -216) (-280 -3824 -216) (-256 -3824 -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" "387425" + "plane" "(-280 -3824 -216) (-280 -3792 -216) (-280 -3792 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 -29] 0.125" + "vaxis" "[0 0 -1 -61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387424" + "plane" "(-256 -3792 -216) (-256 -3824 -216) (-256 -3824 -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" "387423" + "plane" "(-280 -3792 -216) (-256 -3792 -216) (-256 -3792 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387422" + "plane" "(-256 -3824 -216) (-280 -3824 -216) (-280 -3824 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -29] 0.125" + "vaxis" "[0 0 -1 -61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387421" + "plane" "(-280 -3824 -184) (-280 -3792 -184) (-256 -3792 -184)" + "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 158 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641927" + side + { + "id" "387432" + "plane" "(-256 -3824 -56) (-256 -3656 -56) (-240 -3656 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387431" + "plane" "(-256 -3656 -184) (-256 -3656 -56) (-256 -3824 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387430" + "plane" "(-240 -3824 -184) (-240 -3824 -56) (-240 -3656 -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" "387429" + "plane" "(-240 -3656 -184) (-240 -3656 -56) (-256 -3656 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387428" + "plane" "(-256 -3824 -184) (-256 -3824 -56) (-240 -3824 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -811] 0.125" + "vaxis" "[0 0 -1 -843] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387427" + "plane" "(-256 -3656 -184) (-256 -3824 -184) (-240 -3824 -184)" + "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 134 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641928" + side + { + "id" "387438" + "plane" "(-256 -3656 -216) (-256 -3656 -184) (-256 -3824 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387437" + "plane" "(-240 -3824 -216) (-240 -3824 -184) (-240 -3656 -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" "387436" + "plane" "(-240 -3656 -216) (-240 -3656 -184) (-256 -3656 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387435" + "plane" "(-256 -3824 -216) (-256 -3824 -184) (-240 -3824 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -29] 0.125" + "vaxis" "[0 0 -1 -61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387434" + "plane" "(-256 -3656 -216) (-256 -3824 -216) (-240 -3824 -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" "387433" + "plane" "(-256 -3824 -184) (-256 -3656 -184) (-240 -3656 -184)" + "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 134 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641947" + side + { + "id" "387444" + "plane" "(-240 -3696 -56) (-240 -3696 -184) (-240 -3656 -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" "387443" + "plane" "(-240 -3656 -56) (-240 -3656 -184) (-23 -3656 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387442" + "plane" "(-240 -3696 -184) (-240 -3696 -56) (-23 -3696 -56)" + "material" "CS_APOLLO/WALLS/BLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -59] 0.125" + "vaxis" "[0 0 -1 -27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387441" + "plane" "(-23 -3696 -56) (-240 -3696 -56) (-240 -3656 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387440" + "plane" "(-23 -3656 -56) (-23 -3656 -184) (-23 -3696 -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" "387439" + "plane" "(-23 -3656 -184) (-240 -3656 -184) (-240 -3696 -184)" + "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 251 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641948" + side + { + "id" "387450" + "plane" "(-240 -3696 -184) (-240 -3696 -216) (-240 -3656 -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" "387449" + "plane" "(-240 -3656 -184) (-240 -3656 -216) (-23 -3656 -216)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387448" + "plane" "(-23 -3696 -216) (-240 -3696 -216) (-240 -3696 -184)" + "material" "CS_APOLLO/WALLS/BLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -59] 0.125" + "vaxis" "[0 0 -1 -27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387447" + "plane" "(-23 -3656 -216) (-240 -3656 -216) (-240 -3696 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387446" + "plane" "(-23 -3656 -184) (-23 -3656 -216) (-23 -3696 -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" "387445" + "plane" "(-23 -3696 -184) (-240 -3696 -184) (-240 -3656 -184)" + "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 251 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641960" + side + { + "id" "387456" + "plane" "(-23 -3696 -56) (-23 -3577 -56) (302 -3577 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387455" + "plane" "(-23 -3577 -184) (-23 -3577 -56) (-23 -3696 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387454" + "plane" "(302 -3696 -184) (302 -3696 -56) (302 -3577 -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" "387453" + "plane" "(302 -3577 -184) (302 -3577 -56) (-23 -3577 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387452" + "plane" "(-23 -3696 -184) (-23 -3696 -56) (302 -3696 -56)" + "material" "CS_APOLLO/WALLS/BLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -59] 0.125" + "vaxis" "[0 0 -1 -27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387451" + "plane" "(-23 -3577 -184) (-23 -3696 -184) (302 -3696 -184)" + "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 189 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641961" + side + { + "id" "387462" + "plane" "(-23 -3577 -216) (-23 -3696 -216) (302 -3696 -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" "387461" + "plane" "(-23 -3696 -216) (-23 -3577 -216) (-23 -3577 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387460" + "plane" "(302 -3577 -216) (302 -3696 -216) (302 -3696 -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" "387459" + "plane" "(-23 -3577 -216) (302 -3577 -216) (302 -3577 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387458" + "plane" "(302 -3696 -216) (-23 -3696 -216) (-23 -3696 -184)" + "material" "CS_APOLLO/WALLS/BLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -59] 0.125" + "vaxis" "[0 0 -1 -27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387457" + "plane" "(-23 -3696 -184) (-23 -3577 -184) (302 -3577 -184)" + "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 189 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641970" + side + { + "id" "387474" + "plane" "(302 -3569 225) (302 -3577 225) (-23 -3577 225)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387473" + "plane" "(302 -3577 -224) (302 -3569 -224) (-19 -3569 -224)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387472" + "plane" "(302 -3577 -224) (302 -3577 225) (302 -3569 225)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387471" + "plane" "(302 -3569 -224) (302 -3569 225) (-19 -3569 225)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387470" + "plane" "(-23 -3577 -224) (-23 -3577 225) (302 -3577 225)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387469" + "plane" "(-19 -3569 -224) (-19 -3569 225) (-23 -3577 225)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7621890" + side + { + "id" "387349" + "plane" "(1392 -4512 160) (1424 -4512 160) (1424 -4648 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" "387350" + "plane" "(1392 -4648 0) (1424 -4648 0) (1424 -4512 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" "387351" + "plane" "(1392 -4512 160) (1392 -4648 160) (1392 -4648 0)" + "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" "387352" + "plane" "(1424 -4512 0) (1424 -4648 0) (1424 -4648 160)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387353" + "plane" "(1424 -4512 160) (1392 -4512 160) (1392 -4512 0)" + "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" "387354" + "plane" "(1424 -4648 0) (1392 -4648 0) (1392 -4648 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 217 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7622268" + side + { + "id" "387378" + "plane" "(-608 -3743 -72) (-608 -3304 -72) (-592 -3304 -72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387377" + "plane" "(-608 -3304 -224) (-608 -3743 -224) (-592 -3743 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387376" + "plane" "(-608 -3743 -224) (-608 -3304 -224) (-608 -3304 -72)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387375" + "plane" "(-592 -3304 -224) (-592 -3743 -224) (-592 -3743 -72)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387374" + "plane" "(-608 -3304 -224) (-592 -3304 -224) (-592 -3304 -72)" + "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" "387373" + "plane" "(-592 -3743 -224) (-608 -3743 -224) (-608 -3743 -72)" + "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 207 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7602507" + side + { + "id" "387240" + "plane" "(1392 -4648 0) (1392 -4672 0) (1424 -4672 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -55.998] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387239" + "plane" "(1424 -4672 160) (1424 -4672 0) (1392 -4672 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" "387238" + "plane" "(1424 -4648 0) (1424 -4672 0) (1424 -4672 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387237" + "plane" "(1392 -4672 160) (1392 -4672 0) (1392 -4648 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387236" + "plane" "(1424 -4672 160) (1392 -4672 160) (1392 -4648 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" "387235" + "plane" "(1392 -4648 160) (1392 -4648 0) (1424 -4648 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7602534" + side + { + "id" "387258" + "plane" "(1392 -4480 0) (1392 -4512 0) (1424 -4512 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" "387257" + "plane" "(1392 -4512 0) (1392 -4480 0) (1392 -4480 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387256" + "plane" "(1424 -4480 160) (1424 -4480 0) (1424 -4512 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387255" + "plane" "(1392 -4480 160) (1392 -4480 0) (1424 -4480 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387254" + "plane" "(1392 -4512 160) (1392 -4480 160) (1424 -4480 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" "387253" + "plane" "(1424 -4512 160) (1424 -4512 0) (1392 -4512 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -185.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7602544" + side + { + "id" "387282" + "plane" "(1400 -4648 40) (1400 -4648 160) (1400 -4512 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387281" + "plane" "(1392 -4512 160) (1400 -4512 160) (1400 -4648 160)" + "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" "387280" + "plane" "(1400 -4648 160) (1400 -4648 40) (1392 -4648 40)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 198] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387279" + "plane" "(1392 -4512 40) (1400 -4512 40) (1400 -4512 160)" + "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" "387278" + "plane" "(1392 -4648 40) (1400 -4648 40) (1400 -4512 40)" + "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" "387277" + "plane" "(1392 -4512 40) (1392 -4512 160) (1392 -4648 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7602641" + side + { + "id" "387294" + "plane" "(1392 -4512 0) (1392 -4648 0) (1420 -4648 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" "387293" + "plane" "(1392 -4648 40) (1392 -4648 0) (1392 -4512 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387292" + "plane" "(1420 -4648 0) (1392 -4648 0) (1392 -4648 40)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387291" + "plane" "(1392 -4512 40) (1392 -4512 0) (1420 -4512 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" "387290" + "plane" "(1392 -4648 40) (1392 -4512 40) (1420 -4512 40)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 -402] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387289" + "plane" "(1420 -4512 40) (1420 -4512 0) (1420 -4648 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" + } + editor + { + "color" "0 130 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7602642" + side + { + "id" "387300" + "plane" "(1420 -4648 0) (1424 -4648 0) (1424 -4512 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" "387299" + "plane" "(1424 -4512 40) (1424 -4512 0) (1424 -4648 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387298" + "plane" "(1424 -4648 40) (1424 -4648 0) (1420 -4648 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387297" + "plane" "(1420 -4512 0) (1424 -4512 0) (1424 -4512 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" "387296" + "plane" "(1420 -4512 40) (1424 -4512 40) (1424 -4648 40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -402] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387295" + "plane" "(1420 -4648 40) (1420 -4648 0) (1420 -4512 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" + } + editor + { + "color" "0 130 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7581823" + side + { + "id" "386755" + "plane" "(-608 -3305 -72) (-592 -3305 -72) (-592 -3744 -72)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386756" + "plane" "(-608 -3744 -224) (-592 -3744 -224) (-592 -3305 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386757" + "plane" "(-608 -3305 -72) (-608 -3744 -72) (-608 -3744 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386758" + "plane" "(-592 -3305 -224) (-592 -3744 -224) (-592 -3744 -72)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386759" + "plane" "(-592 -3305 -72) (-608 -3305 -72) (-608 -3305 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386760" + "plane" "(-592 -3744 -224) (-608 -3744 -224) (-608 -3744 -72)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582468" + side + { + "id" "386940" + "plane" "(-464 -3448 -224) (-456 -3456 -224) (-456 -3480 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386939" + "plane" "(-464 -3480 -256) (-456 -3480 -256) (-456 -3456 -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" "386938" + "plane" "(-464 -3448 -256) (-464 -3448 -224) (-464 -3480 -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" "386937" + "plane" "(-464 -3480 -256) (-464 -3480 -224) (-456 -3480 -224)" + "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" "386936" + "plane" "(-456 -3456 -256) (-456 -3456 -224) (-464 -3448 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386935" + "plane" "(-456 -3480 -256) (-456 -3480 -224) (-456 -3456 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582505" + side + { + "id" "386952" + "plane" "(-464 -3480 -224) (-456 -3480 -224) (-456 -3664 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386951" + "plane" "(-464 -3656 -256) (-456 -3664 -256) (-456 -3480 -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" "386950" + "plane" "(-464 -3480 -224) (-464 -3656 -224) (-464 -3656 -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" "386949" + "plane" "(-456 -3480 -224) (-464 -3480 -224) (-464 -3480 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386948" + "plane" "(-464 -3656 -224) (-456 -3664 -224) (-456 -3664 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386947" + "plane" "(-456 -3664 -224) (-456 -3480 -224) (-456 -3480 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582506" + side + { + "id" "386958" + "plane" "(-424 -3592 -224) (-456 -3592 -224) (-456 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386957" + "plane" "(-424 -3480 -256) (-456 -3480 -256) (-456 -3592 -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" "386956" + "plane" "(-456 -3480 -256) (-424 -3480 -256) (-424 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386955" + "plane" "(-424 -3592 -256) (-456 -3592 -256) (-456 -3592 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386954" + "plane" "(-424 -3480 -256) (-424 -3592 -256) (-424 -3592 -224)" + "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" "386953" + "plane" "(-456 -3592 -256) (-456 -3480 -256) (-456 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582563" + side + { + "id" "386994" + "plane" "(-464 -3656 -224) (-456 -3664 -224) (-464 -3664 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386993" + "plane" "(-464 -3664 -256) (-456 -3664 -256) (-464 -3656 -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" "386992" + "plane" "(-472 -3656 -224) (-464 -3664 -224) (-464 -3664 -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" "386991" + "plane" "(-464 -3656 -224) (-472 -3656 -224) (-472 -3656 -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" "386990" + "plane" "(-456 -3664 -224) (-464 -3656 -224) (-464 -3656 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386989" + "plane" "(-464 -3664 -224) (-456 -3664 -224) (-456 -3664 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 103" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582572" + side + { + "id" "387006" + "plane" "(-472 -3656 -224) (-464 -3664 -224) (-464 -3784 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -27] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387005" + "plane" "(-464 -3784 -256) (-464 -3664 -256) (-472 -3656 -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" "387004" + "plane" "(-472 -3656 -224) (-472 -3792 -224) (-472 -3792 -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" "387003" + "plane" "(-472 -3792 -224) (-464 -3784 -224) (-464 -3784 -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" "387002" + "plane" "(-464 -3664 -224) (-472 -3656 -224) (-472 -3656 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387001" + "plane" "(-464 -3784 -224) (-464 -3664 -224) (-464 -3664 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 103" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582661" + side + { + "id" "387024" + "plane" "(-464 -3784 -224) (-464 -3664 -224) (-456 -3664 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387023" + "plane" "(-456 -3784 -256) (-456 -3664 -256) (-464 -3664 -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" "387022" + "plane" "(-456 -3664 -256) (-456 -3784 -256) (-456 -3784 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387021" + "plane" "(-464 -3664 -256) (-456 -3664 -256) (-456 -3664 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387020" + "plane" "(-464 -3784 -256) (-464 -3664 -256) (-464 -3664 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387019" + "plane" "(-456 -3784 -256) (-464 -3784 -256) (-464 -3784 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 103" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582674" + side + { + "id" "387030" + "plane" "(-472 -3792 -224) (-464 -3784 -224) (-264 -3784 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 91] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387029" + "plane" "(-264 -3784 -256) (-464 -3784 -256) (-472 -3792 -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" "387028" + "plane" "(-256 -3792 -224) (-264 -3784 -224) (-264 -3784 -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" "387027" + "plane" "(-472 -3792 -224) (-256 -3792 -224) (-256 -3792 -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" "387026" + "plane" "(-464 -3784 -224) (-472 -3792 -224) (-472 -3792 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387025" + "plane" "(-264 -3784 -224) (-464 -3784 -224) (-464 -3784 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 103" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582745" + side + { + "id" "387042" + "plane" "(-456 -3784 -224) (-456 -3656 -224) (-264 -3656 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387041" + "plane" "(-264 -3656 -256) (-456 -3656 -256) (-456 -3784 -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" "387040" + "plane" "(-456 -3656 -256) (-264 -3656 -256) (-264 -3656 -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" "387039" + "plane" "(-456 -3784 -256) (-456 -3656 -256) (-456 -3656 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387038" + "plane" "(-264 -3784 -256) (-456 -3784 -256) (-456 -3784 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387037" + "plane" "(-264 -3656 -256) (-264 -3784 -256) (-264 -3784 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 103" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582746" + side + { + "id" "387048" + "plane" "(-256 -3792 -224) (-264 -3784 -224) (-264 -3648 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 91] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387047" + "plane" "(-264 -3648 -256) (-264 -3784 -256) (-256 -3792 -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" "387046" + "plane" "(-256 -3792 -224) (-256 -3656 -224) (-256 -3656 -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" "387045" + "plane" "(-256 -3656 -224) (-264 -3648 -224) (-264 -3648 -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" "387044" + "plane" "(-264 -3784 -224) (-256 -3792 -224) (-256 -3792 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387043" + "plane" "(-264 -3648 -224) (-264 -3784 -224) (-264 -3784 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 103" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582756" + side + { + "id" "387060" + "plane" "(-456 -3592 -224) (-264 -3592 -224) (-264 -3656 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387059" + "plane" "(-456 -3656 -256) (-264 -3656 -256) (-264 -3592 -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" "387058" + "plane" "(-264 -3656 -256) (-456 -3656 -256) (-456 -3656 -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" "387057" + "plane" "(-456 -3592 -256) (-264 -3592 -256) (-264 -3592 -224)" + "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" "387056" + "plane" "(-456 -3656 -256) (-456 -3592 -256) (-456 -3592 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387055" + "plane" "(-264 -3592 -256) (-264 -3656 -256) (-264 -3656 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582854" + side + { + "id" "387090" + "plane" "(-31 -3648 -224) (-31 -3569 -224) (-23 -3577 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -105] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387089" + "plane" "(-23 -3656 -256) (-23 -3577 -256) (-31 -3569 -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" "387088" + "plane" "(-23 -3577 -256) (-23 -3577 -224) (-31 -3569 -224)" + "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" "387087" + "plane" "(-31 -3648 -256) (-31 -3648 -224) (-23 -3656 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387086" + "plane" "(-23 -3656 -256) (-23 -3656 -224) (-23 -3577 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387085" + "plane" "(-31 -3569 -256) (-31 -3569 -224) (-31 -3648 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582855" + side + { + "id" "387096" + "plane" "(-31 -3648 -224) (-264 -3648 -224) (-264 -3592 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387095" + "plane" "(-31 -3592 -256) (-264 -3592 -256) (-264 -3648 -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" "387094" + "plane" "(-264 -3592 -256) (-31 -3592 -256) (-31 -3592 -224)" + "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" "387093" + "plane" "(-264 -3648 -256) (-264 -3592 -256) (-264 -3592 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387092" + "plane" "(-31 -3648 -256) (-264 -3648 -256) (-264 -3648 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387091" + "plane" "(-31 -3592 -256) (-31 -3648 -256) (-31 -3648 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582941" + side + { + "id" "387102" + "plane" "(-256 -3656 -224) (-264 -3648 -224) (-31 -3648 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387101" + "plane" "(-256 -3656 -256) (-23 -3656 -256) (-31 -3648 -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" "387100" + "plane" "(-256 -3656 -256) (-256 -3656 -224) (-23 -3656 -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" "387099" + "plane" "(-264 -3648 -256) (-264 -3648 -224) (-256 -3656 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387098" + "plane" "(-31 -3648 -256) (-31 -3648 -224) (-264 -3648 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387097" + "plane" "(-23 -3656 -256) (-23 -3656 -224) (-31 -3648 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582960" + side + { + "id" "387120" + "plane" "(-23 -3569 -224) (-31 -3569 -224) (-31 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387119" + "plane" "(-23 -3480 -256) (-31 -3480 -256) (-31 -3569 -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" "387118" + "plane" "(-31 -3480 -256) (-23 -3480 -256) (-23 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387117" + "plane" "(-23 -3569 -256) (-31 -3569 -256) (-31 -3569 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387116" + "plane" "(-23 -3480 -256) (-23 -3569 -256) (-23 -3569 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387115" + "plane" "(-31 -3569 -256) (-31 -3480 -256) (-31 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582961" + side + { + "id" "387126" + "plane" "(-31 -3592 -224) (-344 -3592 -224) (-344 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387125" + "plane" "(-31 -3480 -256) (-344 -3480 -256) (-344 -3592 -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" "387124" + "plane" "(-344 -3480 -256) (-31 -3480 -256) (-31 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387123" + "plane" "(-31 -3592 -256) (-344 -3592 -256) (-344 -3592 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387122" + "plane" "(-344 -3592 -256) (-344 -3480 -256) (-344 -3480 -224)" + "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" "387121" + "plane" "(-31 -3480 -256) (-31 -3592 -256) (-31 -3592 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582973" + side + { + "id" "387132" + "plane" "(-456 -3456 -224) (-23 -3456 -224) (-23 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387131" + "plane" "(-456 -3480 -256) (-23 -3480 -256) (-23 -3456 -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" "387130" + "plane" "(-23 -3480 -256) (-456 -3480 -256) (-456 -3480 -224)" + "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" "387129" + "plane" "(-456 -3456 -256) (-23 -3456 -256) (-23 -3456 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387128" + "plane" "(-456 -3480 -256) (-456 -3456 -256) (-456 -3456 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387127" + "plane" "(-23 -3456 -256) (-23 -3480 -256) (-23 -3480 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582974" + side + { + "id" "387138" + "plane" "(-15 -3448 -224) (302 -3448 -224) (302 -3577 -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" "387137" + "plane" "(-15 -3577 -256) (302 -3577 -256) (302 -3448 -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" "387136" + "plane" "(302 -3448 -256) (302 -3577 -256) (302 -3577 -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" "387135" + "plane" "(302 -3577 -256) (-15 -3577 -256) (-15 -3577 -224)" + "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" "387134" + "plane" "(-15 -3448 -256) (302 -3448 -256) (302 -3448 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387133" + "plane" "(-15 -3577 -256) (-15 -3448 -256) (-15 -3448 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582982" + side + { + "id" "387144" + "plane" "(-23 -3569 -224) (-23 -3456 -224) (-15 -3448 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -44] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387143" + "plane" "(-23 -3456 -256) (-23 -3569 -256) (-15 -3577 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387142" + "plane" "(-15 -3448 -256) (-15 -3448 -224) (-23 -3456 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387141" + "plane" "(-23 -3569 -256) (-23 -3569 -224) (-15 -3577 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387140" + "plane" "(-23 -3456 -256) (-23 -3456 -224) (-23 -3569 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387139" + "plane" "(-15 -3577 -256) (-15 -3577 -224) (-15 -3448 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7583030" + side + { + "id" "387156" + "plane" "(-15 -3448 -224) (-23 -3456 -224) (-456 -3456 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387155" + "plane" "(-23 -3456 -256) (-15 -3448 -256) (-464 -3448 -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" "387154" + "plane" "(-464 -3448 -224) (-456 -3456 -224) (-456 -3456 -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" "387153" + "plane" "(-15 -3448 -224) (-464 -3448 -224) (-464 -3448 -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" "387152" + "plane" "(-456 -3456 -224) (-23 -3456 -224) (-23 -3456 -256)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387151" + "plane" "(-23 -3456 -224) (-15 -3448 -224) (-15 -3448 -256)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7583083" + side + { + "id" "387163" + "plane" "(-23 -3577 -224) (-31 -3569 -224) (-23 -3569 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 23] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387164" + "plane" "(-31 -3569 -256) (-23 -3577 -256) (-15 -3577 -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" "387165" + "plane" "(-23 -3577 -256) (-31 -3569 -256) (-31 -3569 -224)" + "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" "387166" + "plane" "(-23 -3569 -256) (-15 -3577 -256) (-15 -3577 -224)" + "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" "387167" + "plane" "(-31 -3569 -256) (-23 -3569 -256) (-23 -3569 -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" "387168" + "plane" "(-15 -3577 -256) (-23 -3577 -256) (-23 -3577 -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 235 212" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7583164" + side + { + "id" "387181" + "plane" "(2112 -3584 320) (2128 -3584 320) (2128 -3712 320)" + "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" "387182" + "plane" "(2112 -3712 0) (2128 -3712 0) (2128 -3584 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" "387183" + "plane" "(2112 -3584 320) (2112 -3712 320) (2112 -3712 0)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387184" + "plane" "(2128 -3584 0) (2128 -3712 0) (2128 -3712 320)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387185" + "plane" "(2128 -3584 320) (2112 -3584 320) (2112 -3584 0)" + "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" "387186" + "plane" "(2128 -3712 0) (2112 -3712 0) (2112 -3712 320)" + "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 213 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560104" + side + { + "id" "385965" + "plane" "(-792 -3544 -46) (-792 -3216 -46) (-776 -3216 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385964" + "plane" "(-792 -3216 -224) (-792 -3544 -224) (-776 -3544 -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" "385963" + "plane" "(-792 -3544 -224) (-792 -3216 -224) (-792 -3216 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385962" + "plane" "(-776 -3216 -224) (-776 -3544 -224) (-776 -3544 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385961" + "plane" "(-792 -3216 -224) (-776 -3216 -224) (-776 -3216 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[-0.707107 0 0.707107 -160.793] 0.125" + "vaxis" "[-0.707107 0 -0.707107 -192.793] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385960" + "plane" "(-776 -3544 -224) (-792 -3544 -224) (-792 -3544 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 248 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560152" + side + { + "id" "385977" + "plane" "(-792 -3744 -46) (-792 -3630 -46) (-776 -3630 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385976" + "plane" "(-792 -3630 -224) (-792 -3744 -224) (-776 -3744 -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" "385975" + "plane" "(-792 -3744 -224) (-792 -3630 -224) (-792 -3630 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385974" + "plane" "(-776 -3630 -224) (-776 -3744 -224) (-776 -3744 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385973" + "plane" "(-776 -3744 -224) (-792 -3744 -224) (-792 -3744 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385972" + "plane" "(-792 -3630 -224) (-776 -3630 -224) (-776 -3630 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 248 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560158" + side + { + "id" "385989" + "plane" "(-792 -3630 -46) (-792 -3544 -46) (-776 -3544 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385988" + "plane" "(-792 -3544 -96) (-792 -3544 -46) (-792 -3630 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385987" + "plane" "(-776 -3630 -96) (-776 -3630 -46) (-776 -3544 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385986" + "plane" "(-776 -3544 -96) (-776 -3544 -46) (-792 -3544 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385985" + "plane" "(-792 -3630 -96) (-792 -3630 -46) (-776 -3630 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385984" + "plane" "(-792 -3544 -96) (-792 -3630 -96) (-776 -3630 -96)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 1 0 368.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 248 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560162" + side + { + "id" "386001" + "plane" "(-792 -3544 -224) (-792 -3630 -224) (-784 -3630 -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" "386000" + "plane" "(-792 -3630 -96) (-792 -3630 -224) (-792 -3544 -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" "385999" + "plane" "(-792 -3544 -96) (-792 -3544 -224) (-784 -3544 -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" "385998" + "plane" "(-784 -3630 -224) (-792 -3630 -224) (-792 -3630 -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" "385997" + "plane" "(-792 -3630 -96) (-792 -3544 -96) (-784 -3544 -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" "385996" + "plane" "(-784 -3544 -96) (-784 -3544 -224) (-784 -3630 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_003" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 248 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560163" + side + { + "id" "386013" + "plane" "(-784 -3630 -224) (-776 -3630 -224) (-776 -3544 -224)" + "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" "386012" + "plane" "(-776 -3544 -96) (-776 -3544 -224) (-776 -3630 -224)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386011" + "plane" "(-784 -3544 -224) (-776 -3544 -224) (-776 -3544 -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" "386010" + "plane" "(-776 -3630 -96) (-776 -3630 -224) (-784 -3630 -224)" + "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" "386009" + "plane" "(-784 -3544 -96) (-776 -3544 -96) (-776 -3630 -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" "386008" + "plane" "(-784 -3630 -96) (-784 -3630 -224) (-784 -3544 -224)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 248 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560182" + side + { + "id" "386014" + "plane" "(-784 -3544 -224) (-776 -3544 -224) (-776 -3630 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 -112] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386015" + "plane" "(-784 -3630 -240) (-776 -3630 -240) (-776 -3544 -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" "386016" + "plane" "(-784 -3544 -224) (-784 -3630 -224) (-784 -3630 -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" "386017" + "plane" "(-776 -3544 -240) (-776 -3630 -240) (-776 -3630 -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" "386018" + "plane" "(-776 -3544 -224) (-784 -3544 -224) (-784 -3544 -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" "386019" + "plane" "(-776 -3630 -240) (-784 -3630 -240) (-784 -3630 -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 138 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560553" + side + { + "id" "386067" + "plane" "(-881 -3472 -133) (-881 -3472 -253) (-881 -3488 -253)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386066" + "plane" "(-886 -3472 -133) (-886 -3472 -253) (-881 -3472 -253)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -462] 0.125" + "vaxis" "[0 0 -1 -570] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386065" + "plane" "(-881 -3488 -133) (-881 -3488 -253) (-886 -3488 -253)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 22.4409] 0.240625" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386064" + "plane" "(-886 -3488 -133) (-886 -3488 -253) (-886 -3472 -253)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386063" + "plane" "(-886 -3488 -252.998) (-881 -3488 -252.998) (-881 -3472 -252.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386062" + "plane" "(-886 -3472 -132.998) (-881 -3472 -132.998) (-881 -3488 -132.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 148 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560810" + side + { + "id" "386079" + "plane" "(-809 -3232 -197) (-809 -3232 -193) (-809 -3696 -193)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 -1 0 698] 0.125" + "vaxis" "[0 0 -1 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386078" + "plane" "(-793 -3696 -197) (-793 -3696 -193) (-793 -3232 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 29.8667] 0.46875" + "vaxis" "[0 0 -1 -63.0345] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386077" + "plane" "(-793 -3232 -197) (-793 -3232 -193) (-809 -3232 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -63.0345] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386076" + "plane" "(-809 -3696 -197) (-809 -3696 -193) (-793 -3696 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -63.0345] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386075" + "plane" "(-809 -3232 -197) (-809 -3696 -197) (-793 -3696 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[-1 0 0 14.5757] 0.401786" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386074" + "plane" "(-809 -3696 -193) (-809 -3232 -193) (-793 -3232 -193)" + "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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560817" + side + { + "id" "386085" + "plane" "(-809 -3232 -261) (-809 -3696 -261) (-793 -3696 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 -14.9333] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386084" + "plane" "(-809 -3696 -255) (-809 -3696 -261) (-809 -3232 -261)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 -1 0 702.476] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386083" + "plane" "(-793 -3232 -255) (-793 -3232 -261) (-793 -3696 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 29.8667] 0.46875" + "vaxis" "[0 0 -1 -49.8482] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386082" + "plane" "(-809 -3232 -255) (-809 -3232 -261) (-793 -3232 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8482] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386081" + "plane" "(-793 -3696 -255) (-793 -3696 -261) (-809 -3696 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8482] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386080" + "plane" "(-809 -3696 -255) (-809 -3232 -255) (-793 -3232 -255)" + "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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560818" + side + { + "id" "386091" + "plane" "(-809 -3696 -197) (-809 -3696 -255) (-809 -3232 -255)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_007" + "uaxis" "[0 -1 0 -251.524] 0.125" + "vaxis" "[0 0 -1 -15.9834] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386090" + "plane" "(-793 -3232 -197) (-793 -3232 -255) (-793 -3696 -255)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 29.8667] 0.46875" + "vaxis" "[0 0 -1 -49.8482] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386089" + "plane" "(-809 -3232 -197) (-809 -3232 -255) (-793 -3232 -255)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8482] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386088" + "plane" "(-793 -3696 -197) (-793 -3696 -255) (-809 -3696 -255)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8482] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386087" + "plane" "(-809 -3696 -197) (-809 -3232 -197) (-793 -3232 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386086" + "plane" "(-809 -3232 -255) (-809 -3696 -255) (-793 -3696 -255)" + "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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560826" + side + { + "id" "386097" + "plane" "(-1649 -3232 -261) (-1649 -3528 -261) (-1633 -3528 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 -25.5155] 0.29" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386096" + "plane" "(-1649 -3528 -255) (-1649 -3528 -261) (-1649 -3232 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.5504] 0.29" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386095" + "plane" "(-1633 -3232 -255) (-1633 -3232 -261) (-1633 -3528 -261)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 639.499] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386094" + "plane" "(-1649 -3232 -255) (-1649 -3232 -261) (-1633 -3232 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386093" + "plane" "(-1633 -3528 -255) (-1633 -3528 -261) (-1649 -3528 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386092" + "plane" "(-1649 -3528 -255) (-1649 -3232 -255) (-1633 -3232 -255)" + "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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560833" + side + { + "id" "386109" + "plane" "(-1649 -3528 -197) (-1649 -3528 -255) (-1649 -3232 -255)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.5504] 0.29" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386108" + "plane" "(-1633 -3232 -197) (-1633 -3232 -255) (-1633 -3528 -255)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_007" + "uaxis" "[0 -1 0 207] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386107" + "plane" "(-1649 -3232 -197) (-1649 -3232 -255) (-1633 -3232 -255)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386106" + "plane" "(-1633 -3528 -197) (-1633 -3528 -255) (-1649 -3528 -255)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386105" + "plane" "(-1649 -3232 -255) (-1649 -3528 -255) (-1633 -3528 -255)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386104" + "plane" "(-1649 -3528 -197) (-1649 -3232 -197) (-1633 -3232 -197)" + "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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560840" + side + { + "id" "386121" + "plane" "(-1649 -3528 -193) (-1649 -3528 -197) (-1649 -3232 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.5504] 0.29" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386120" + "plane" "(-1633 -3232 -193) (-1633 -3232 -197) (-1633 -3528 -197)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 -1 0 120] 0.125" + "vaxis" "[0 0 -1 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386119" + "plane" "(-1649 -3232 -193) (-1649 -3232 -197) (-1633 -3232 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386118" + "plane" "(-1633 -3528 -193) (-1633 -3528 -197) (-1649 -3528 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386117" + "plane" "(-1649 -3232 -197) (-1649 -3528 -197) (-1633 -3528 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386116" + "plane" "(-1649 -3528 -193) (-1649 -3232 -193) (-1633 -3232 -193)" + "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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560845" + side + { + "id" "386128" + "plane" "(-792 -3544 -46) (-776 -3544 -46) (-776 -3631 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386129" + "plane" "(-792 -3631 -224) (-776 -3631 -224) (-776 -3544 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386130" + "plane" "(-792 -3544 -46) (-792 -3631 -46) (-792 -3631 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386131" + "plane" "(-776 -3544 -224) (-776 -3631 -224) (-776 -3631 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386132" + "plane" "(-776 -3544 -46) (-792 -3544 -46) (-792 -3544 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386133" + "plane" "(-776 -3631 -224) (-792 -3631 -224) (-792 -3631 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 248 137" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560874" + side + { + "id" "386139" + "plane" "(-809 -3232 -193) (-809 -3232 -88) (-809 -3696 -88)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 457.041] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386138" + "plane" "(-793 -3696 -193) (-793 -3696 -88) (-793 -3232 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 29.8667] 0.46875" + "vaxis" "[0 0 -1 -63.0345] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386137" + "plane" "(-793 -3232 -193) (-793 -3232 -88) (-809 -3232 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -63.0345] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386136" + "plane" "(-809 -3696 -193) (-809 -3696 -88) (-793 -3696 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -63.0345] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386135" + "plane" "(-809 -3232 -193) (-809 -3696 -193) (-793 -3696 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386134" + "plane" "(-809 -3696 -88) (-809 -3232 -88) (-793 -3232 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560875" + side + { + "id" "386145" + "plane" "(-809 -3696 -77) (-809 -3232 -77) (-793 -3232 -77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 -14.9333] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386144" + "plane" "(-809 -3232 -88) (-809 -3232 -77) (-809 -3696 -77)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 137] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386143" + "plane" "(-793 -3696 -88) (-793 -3696 -77) (-793 -3232 -77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 29.8667] 0.46875" + "vaxis" "[0 0 -1 -63.0345] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386142" + "plane" "(-793 -3232 -88) (-793 -3232 -77) (-809 -3232 -77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -63.0345] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386141" + "plane" "(-809 -3696 -88) (-809 -3696 -77) (-793 -3696 -77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -63.0345] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386140" + "plane" "(-809 -3232 -88) (-809 -3696 -88) (-793 -3696 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560876" + side + { + "id" "386151" + "plane" "(-886 -3472 -133.266) (-886 -3472 -88) (-886 -3488 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386150" + "plane" "(-809 -3488 -133.266) (-809 -3488 -88) (-809 -3472 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386149" + "plane" "(-809 -3472 -133.266) (-809 -3472 -88) (-886 -3472 -88)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.796812 0.604227 0 253.023] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386148" + "plane" "(-886 -3488 -133.266) (-886 -3488 -88) (-809 -3488 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8.31232] 0.240625" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386147" + "plane" "(-886 -3472 -133.264) (-886 -3488 -133.264) (-809 -3488 -133.264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 43.221] 0.240625" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386146" + "plane" "(-886 -3488 -88) (-886 -3472 -88) (-809 -3472 -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" "253 126 0" + "groupid" "7498598" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560877" + side + { + "id" "386157" + "plane" "(-886 -3488 -77.264) (-886 -3472 -77.264) (-809 -3472 -77.264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60.6751] 0.240625" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386156" + "plane" "(-886 -3472 -88) (-886 -3472 -77.2656) (-886 -3488 -77.2656)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386155" + "plane" "(-809 -3488 -88) (-809 -3488 -77.2656) (-809 -3472 -77.2656)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386154" + "plane" "(-809 -3472 -88) (-809 -3472 -77.2656) (-886 -3472 -77.2656)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.796812 0.604227 0 137] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386153" + "plane" "(-886 -3488 -88) (-886 -3488 -77.2656) (-809 -3488 -77.2656)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8.31232] 0.240625" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386152" + "plane" "(-886 -3472 -88) (-886 -3488 -88) (-809 -3488 -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" "253 126 0" + "groupid" "7498598" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560878" + side + { + "id" "386162" + "plane" "(-889 -3680 -193) (-889 -3680 -88) (-889 -3424 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 58.0253] 0.258065" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386161" + "plane" "(-1073 -3680 -193) (-1073 -3680 -88) (-889 -3680 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 10.7917] 0.185484" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386160" + "plane" "(-889 -3424 -193) (-889 -3424 -88) (-1073 -3680 -88)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.583636 0.812015 0 211.662] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386159" + "plane" "(-1073 -3680 -193) (-889 -3680 -193) (-889 -3424 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -23.8886] 0.258065" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386158" + "plane" "(-889 -3424 -88) (-889 -3680 -88) (-1073 -3680 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560879" + side + { + "id" "386167" + "plane" "(-889 -3424 -77) (-889 -3680 -77) (-1073 -3680 -77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 41.5792] 0.185484" + "vaxis" "[-1 0 0 8.11134] 0.258065" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386166" + "plane" "(-889 -3680 -88) (-889 -3680 -77) (-889 -3424 -77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 58.0253] 0.258065" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386165" + "plane" "(-1073 -3680 -88) (-1073 -3680 -77) (-889 -3680 -77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 10.7917] 0.185484" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386164" + "plane" "(-889 -3424 -88) (-889 -3424 -77) (-1073 -3680 -77)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.583636 0.812015 0 137] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386163" + "plane" "(-1073 -3680 -88) (-889 -3680 -88) (-889 -3424 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560880" + side + { + "id" "386173" + "plane" "(-889 -3424 -133.266) (-889 -3424 -88) (-889 -3672 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -18.5837] 2.58333" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386172" + "plane" "(-886 -3672 -133.266) (-886 -3672 -88) (-886 -3424 -88)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.947843 0.318738 0 -462.223] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386171" + "plane" "(-886 -3424 -133.266) (-886 -3424 -88) (-889 -3424 -88)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.796812 0.604227 0 143.393] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386170" + "plane" "(-889 -3672 -133.266) (-889 -3672 -88) (-886 -3672 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386169" + "plane" "(-889 -3424 -133.264) (-889 -3672 -133.264) (-886 -3672 -133.264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386168" + "plane" "(-889 -3672 -88) (-889 -3424 -88) (-886 -3424 -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" "253 126 0" + "groupid" "7498598" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560881" + side + { + "id" "386179" + "plane" "(-889 -3672 -77.264) (-889 -3424 -77.264) (-886 -3424 -77.264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -45.8066] 2.58333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386178" + "plane" "(-889 -3424 -88) (-889 -3424 -77.2656) (-889 -3672 -77.2656)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -18.5837] 2.58333" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386177" + "plane" "(-886 -3672 -88) (-886 -3672 -77.2656) (-886 -3424 -77.2656)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.947843 0.318738 0 137] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386176" + "plane" "(-886 -3424 -88) (-886 -3424 -77.2656) (-889 -3424 -77.2656)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.796812 0.604227 0 137] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386175" + "plane" "(-889 -3672 -88) (-889 -3672 -77.2656) (-886 -3672 -77.2656)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -63.7994] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386174" + "plane" "(-889 -3424 -88) (-889 -3672 -88) (-886 -3672 -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" "253 126 0" + "groupid" "7498598" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560882" + side + { + "id" "386185" + "plane" "(-1649 -3696 -193.266) (-1649 -3680 -193.266) (-1649 -3680 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386184" + "plane" "(-809 -3680 -88) (-809 -3680 -193.264) (-809 -3696 -193.264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386183" + "plane" "(-809 -3680 -193.266) (-809 -3680 -88) (-1649 -3680 -88)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 360] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386182" + "plane" "(-1649 -3680 -193.264) (-1649 -3696 -193.264) (-809 -3696 -193.264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386181" + "plane" "(-1649 -3696 -193.266) (-1649 -3696 -88) (-809 -3696 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386180" + "plane" "(-1649 -3696 -88) (-1649 -3680 -88) (-809 -3680 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560883" + side + { + "id" "386191" + "plane" "(-1649 -3696 -77.264) (-1649 -3680 -77.264) (-809 -3680 -77.264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386190" + "plane" "(-1649 -3680 -88) (-1649 -3680 -77.2656) (-1649 -3696 -77.2656)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386189" + "plane" "(-809 -3696 -77.2656) (-809 -3680 -77.2656) (-809 -3680 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386188" + "plane" "(-809 -3680 -88) (-809 -3680 -77.2656) (-1649 -3680 -77.2656)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 223.865] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386187" + "plane" "(-1649 -3696 -88) (-1649 -3696 -77.2656) (-809 -3696 -77.2656)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386186" + "plane" "(-1649 -3680 -88) (-1649 -3696 -88) (-809 -3696 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560884" + side + { + "id" "386196" + "plane" "(-1641 -3680 -88) (-1641 -3680 -193) (-1641 -3424 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 52.0185] 0.266667" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386195" + "plane" "(-1457 -3680 -88) (-1457 -3680 -193) (-1641 -3680 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.9322] 0.191667" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386194" + "plane" "(-1641 -3424 -88) (-1641 -3424 -193) (-1457 -3680 -193)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.583636 -0.812015 0 -238.869] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386193" + "plane" "(-1641 -3424 -193) (-1641 -3680 -193) (-1457 -3680 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386192" + "plane" "(-1457 -3680 -88) (-1641 -3680 -88) (-1641 -3424 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560885" + side + { + "id" "386201" + "plane" "(-1641 -3680 -77) (-1641 -3680 -88) (-1641 -3424 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 52.0185] 0.266667" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386200" + "plane" "(-1457 -3680 -77) (-1457 -3680 -88) (-1641 -3680 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.9322] 0.191667" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386199" + "plane" "(-1641 -3424 -77) (-1641 -3424 -88) (-1457 -3680 -88)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.583636 -0.812015 0 137] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386198" + "plane" "(-1457 -3680 -77) (-1641 -3680 -77) (-1641 -3424 -77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 20.2383] 0.266667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386197" + "plane" "(-1641 -3424 -88) (-1641 -3680 -88) (-1457 -3680 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560886" + side + { + "id" "386207" + "plane" "(-1649 -3528 -88) (-1649 -3528 -193) (-1649 -3232 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.5504] 0.29" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386206" + "plane" "(-1633 -3232 -88) (-1633 -3232 -193) (-1633 -3528 -193)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -229.505] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386205" + "plane" "(-1649 -3232 -88) (-1649 -3232 -193) (-1633 -3232 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386204" + "plane" "(-1633 -3528 -88) (-1633 -3528 -193) (-1649 -3528 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386203" + "plane" "(-1649 -3232 -193) (-1649 -3528 -193) (-1633 -3528 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386202" + "plane" "(-1649 -3528 -88) (-1649 -3232 -88) (-1633 -3232 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560887" + side + { + "id" "386213" + "plane" "(-1649 -3528 -77) (-1649 -3528 -88) (-1649 -3232 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.5504] 0.29" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386212" + "plane" "(-1633 -3232 -77) (-1633 -3232 -88) (-1633 -3528 -88)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 -1 0 137] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386211" + "plane" "(-1649 -3232 -77) (-1649 -3232 -88) (-1633 -3232 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386210" + "plane" "(-1633 -3528 -77) (-1633 -3528 -88) (-1649 -3528 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386209" + "plane" "(-1649 -3528 -77) (-1649 -3232 -77) (-1633 -3232 -77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386208" + "plane" "(-1649 -3232 -88) (-1649 -3528 -88) (-1633 -3528 -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" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561328" + side + { + "id" "386243" + "plane" "(-608 -3176 -27) (-608 -2944 -27) (-464 -2944 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386242" + "plane" "(-608 -2944 -56) (-608 -2944 -27) (-608 -3176 -27)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386241" + "plane" "(-464 -3176 -56) (-464 -3176 -27) (-464 -2944 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386240" + "plane" "(-608 -3176 -56) (-608 -3176 -27) (-464 -3176 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386239" + "plane" "(-464 -2944 -56) (-464 -2944 -27) (-608 -2944 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386238" + "plane" "(-608 -2944 -56) (-608 -3176 -56) (-464 -3176 -56)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 928] 0.125" + "vaxis" "[0 -1 0 -416] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561329" + side + { + "id" "386249" + "plane" "(-472 -2944 -224) (-472 -3176 -224) (-424 -3176 -224)" + "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" "386248" + "plane" "(-472 -3176 -224) (-472 -2944 -224) (-472 -2944 -56)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 928] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386247" + "plane" "(-424 -2944 -224) (-424 -3176 -224) (-424 -3176 -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" "386246" + "plane" "(-424 -3176 -224) (-472 -3176 -224) (-472 -3176 -56)" + "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" "386245" + "plane" "(-472 -2944 -224) (-424 -2944 -224) (-424 -2944 -56)" + "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" "386244" + "plane" "(-472 -3176 -56) (-472 -2944 -56) (-424 -2944 -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" + } + editor + { + "color" "0 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561332" + side + { + "id" "386250" + "plane" "(-560 -3176 -27) (-472 -3176 -27) (-472 -3200 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386251" + "plane" "(-560 -3200 -224) (-472 -3200 -224) (-472 -3176 -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" "386252" + "plane" "(-560 -3176 -27) (-560 -3200 -27) (-560 -3200 -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" "386253" + "plane" "(-472 -3176 -224) (-472 -3200 -224) (-472 -3200 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386254" + "plane" "(-472 -3176 -27) (-560 -3176 -27) (-560 -3176 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386255" + "plane" "(-472 -3200 -224) (-560 -3200 -224) (-560 -3200 -27)" + "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 242 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561333" + side + { + "id" "386256" + "plane" "(-608 -2944 -208) (-472 -2944 -208) (-472 -3176 -208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386257" + "plane" "(-608 -3176 -216) (-472 -3176 -216) (-472 -2944 -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" "386258" + "plane" "(-608 -2944 -208) (-608 -3176 -208) (-608 -3176 -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" "386259" + "plane" "(-472 -2944 -216) (-472 -3176 -216) (-472 -3176 -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" "386260" + "plane" "(-472 -2944 -208) (-608 -2944 -208) (-608 -2944 -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" "386261" + "plane" "(-472 -3176 -216) (-608 -3176 -216) (-608 -3176 -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" + } + editor + { + "color" "0 120 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561374" + side + { + "id" "386309" + "plane" "(-608 -3192 -27) (-608 -3176 -27) (-600 -3176 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386308" + "plane" "(-608 -3176 -224) (-608 -3192 -224) (-600 -3192 -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" "386307" + "plane" "(-608 -3192 -224) (-608 -3176 -224) (-608 -3176 -27)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386306" + "plane" "(-608 -3176 -224) (-600 -3176 -224) (-600 -3176 -27)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -591.994] 0.125" + "vaxis" "[1 0 0 -32.0012] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386305" + "plane" "(-600 -3192 -224) (-608 -3192 -224) (-608 -3192 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386304" + "plane" "(-600 -3176 -224) (-600 -3192 -224) (-600 -3192 -27)" + "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 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561375" + side + { + "id" "386315" + "plane" "(-600 -3176 -27) (-560 -3176 -27) (-560 -3192 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386314" + "plane" "(-600 -3192 -224) (-560 -3192 -224) (-560 -3176 -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" "386313" + "plane" "(-560 -3176 -224) (-560 -3192 -224) (-560 -3192 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386312" + "plane" "(-600 -3176 -224) (-560 -3176 -224) (-560 -3176 -27)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386311" + "plane" "(-560 -3192 -224) (-600 -3192 -224) (-600 -3192 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386310" + "plane" "(-600 -3192 -224) (-600 -3176 -224) (-600 -3176 -27)" + "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 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561395" + side + { + "id" "386321" + "plane" "(-600 -2912 -27) (-472 -2912 -27) (-472 -2944 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386320" + "plane" "(-600 -2944 -224) (-472 -2944 -224) (-472 -2912 -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" "386319" + "plane" "(-472 -2912 -224) (-472 -2944 -224) (-472 -2944 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386318" + "plane" "(-600 -2912 -224) (-472 -2912 -224) (-472 -2912 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386317" + "plane" "(-472 -2944 -224) (-600 -2944 -224) (-600 -2944 -27)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386316" + "plane" "(-600 -2944 -224) (-600 -2912 -224) (-600 -2912 -27)" + "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 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561396" + side + { + "id" "386327" + "plane" "(-608 -2944 -27) (-608 -2912 -27) (-600 -2912 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386326" + "plane" "(-608 -2912 -224) (-608 -2944 -224) (-600 -2944 -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" "386325" + "plane" "(-608 -2944 -224) (-608 -2912 -224) (-608 -2912 -27)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386324" + "plane" "(-608 -2912 -224) (-600 -2912 -224) (-600 -2912 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386323" + "plane" "(-600 -2944 -224) (-608 -2944 -224) (-608 -2944 -27)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 848] 0.125" + "vaxis" "[1 0 0 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386322" + "plane" "(-600 -2912 -224) (-600 -2944 -224) (-600 -2944 -27)" + "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 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561661" + side + { + "id" "386400" + "plane" "(-608 -2944 -80) (-600 -2944 -80) (-600 -3176 -80)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386401" + "plane" "(-608 -3176 -204) (-600 -3176 -204) (-600 -2944 -204)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386402" + "plane" "(-608 -2944 -80) (-608 -3176 -80) (-608 -3176 -204)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386403" + "plane" "(-600 -2944 -204) (-600 -3176 -204) (-600 -3176 -80)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386404" + "plane" "(-600 -2944 -80) (-608 -2944 -80) (-608 -2944 -204)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386405" + "plane" "(-600 -3176 -204) (-608 -3176 -204) (-608 -3176 -80)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 114 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561662" + side + { + "id" "386417" + "plane" "(-608 -2944 -80) (-600 -2944 -80) (-600 -3176 -80)" + "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" "386416" + "plane" "(-608 -3176 -204) (-600 -3176 -204) (-600 -2944 -204)" + "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" "386415" + "plane" "(-608 -2944 -80) (-608 -3176 -80) (-608 -3176 -204)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386414" + "plane" "(-600 -2944 -204) (-600 -3176 -204) (-600 -3176 -80)" + "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" "386413" + "plane" "(-600 -2944 -80) (-608 -2944 -80) (-608 -2944 -204)" + "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" "386412" + "plane" "(-600 -3176 -204) (-608 -3176 -204) (-608 -3176 -80)" + "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 114 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561921" + side + { + "id" "386429" + "plane" "(-608 -3296 -27) (-608 -3192 -27) (-560 -3192 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386428" + "plane" "(-608 -3192 -224) (-608 -3296 -224) (-560 -3296 -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" "386427" + "plane" "(-608 -3296 -224) (-608 -3192 -224) (-608 -3192 -27)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386426" + "plane" "(-560 -3192 -224) (-560 -3296 -224) (-560 -3296 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386425" + "plane" "(-608 -3192 -224) (-560 -3192 -224) (-560 -3192 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386424" + "plane" "(-560 -3296 -224) (-608 -3296 -224) (-608 -3296 -27)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562008" + side + { + "id" "386453" + "plane" "(-664 -2944 -200) (-616 -2944 -200) (-616 -3152 -200)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386452" + "plane" "(-616 -3152 -224) (-616 -2944 -224) (-664 -2944 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386451" + "plane" "(-616 -2944 -224) (-616 -3152 -224) (-616 -3152 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386450" + "plane" "(-664 -2944 -224) (-616 -2944 -224) (-616 -2944 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386449" + "plane" "(-616 -3152 -224) (-664 -3152 -224) (-664 -3152 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386448" + "plane" "(-664 -3152 -224) (-664 -2944 -224) (-664 -2944 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562013" + side + { + "id" "386459" + "plane" "(-1048 -3152 -200) (-1056 -3144 -200) (-664 -3144 -200)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386458" + "plane" "(-1056 -3144 -224) (-1048 -3152 -224) (-664 -3152 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386457" + "plane" "(-664 -3144 -224) (-664 -3144 -200) (-1056 -3144 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386456" + "plane" "(-1056 -3144 -224) (-1056 -3144 -200) (-1048 -3152 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386455" + "plane" "(-1048 -3152 -224) (-1048 -3152 -200) (-664 -3152 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386454" + "plane" "(-664 -3152 -224) (-664 -3152 -200) (-664 -3144 -200)" + "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 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562027" + side + { + "id" "386471" + "plane" "(-664 -3144 -200) (-672 -3144 -200) (-672 -2920 -200)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386470" + "plane" "(-664 -2920 -224) (-672 -2920 -224) (-672 -3144 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386469" + "plane" "(-672 -2920 -224) (-664 -2920 -224) (-664 -2920 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386468" + "plane" "(-664 -3144 -224) (-672 -3144 -224) (-672 -3144 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386467" + "plane" "(-664 -2920 -224) (-664 -3144 -224) (-664 -3144 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386466" + "plane" "(-672 -3144 -224) (-672 -2920 -224) (-672 -2920 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562028" + side + { + "id" "386477" + "plane" "(-672 -3144 -200) (-1056 -3144 -200) (-1056 -2920 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386476" + "plane" "(-672 -2920 -224) (-1056 -2920 -224) (-1056 -3144 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386475" + "plane" "(-1056 -2920 -224) (-672 -2920 -224) (-672 -2920 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386474" + "plane" "(-1056 -3144 -224) (-1056 -2920 -224) (-1056 -2920 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386473" + "plane" "(-672 -3144 -224) (-1056 -3144 -224) (-1056 -3144 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386472" + "plane" "(-672 -2920 -224) (-672 -3144 -224) (-672 -3144 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562038" + side + { + "id" "386483" + "plane" "(-624 -2944 -200) (-616 -2936 -200) (-608 -2936 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386482" + "plane" "(-616 -2936 -224) (-624 -2944 -224) (-616 -2944 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386481" + "plane" "(-616 -2944 -200) (-608 -2936 -200) (-608 -2936 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386480" + "plane" "(-608 -2936 -200) (-616 -2936 -200) (-616 -2936 -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" "386479" + "plane" "(-624 -2944 -200) (-616 -2944 -200) (-616 -2944 -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" "386478" + "plane" "(-616 -2936 -200) (-624 -2944 -200) (-624 -2944 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562039" + side + { + "id" "386489" + "plane" "(-1056 -2912 -200) (-616 -2912 -200) (-624 -2920 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386488" + "plane" "(-1064 -2920 -224) (-624 -2920 -224) (-616 -2912 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386487" + "plane" "(-616 -2912 -200) (-1056 -2912 -200) (-1056 -2912 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386486" + "plane" "(-1056 -2912 -200) (-1064 -2920 -200) (-1064 -2920 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386485" + "plane" "(-1064 -2920 -200) (-624 -2920 -200) (-624 -2920 -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" "386484" + "plane" "(-624 -2920 -200) (-616 -2912 -200) (-616 -2912 -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" + } + editor + { + "color" "0 113 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562044" + side + { + "id" "386490" + "plane" "(-616 -2936 -200) (-624 -2944 -200) (-624 -2920 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -99] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386491" + "plane" "(-616 -2912 -224) (-624 -2920 -224) (-624 -2944 -224)" + "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" "386492" + "plane" "(-624 -2944 -224) (-624 -2920 -224) (-624 -2920 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386493" + "plane" "(-616 -2936 -200) (-616 -2912 -200) (-616 -2912 -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" "386494" + "plane" "(-624 -2920 -224) (-616 -2912 -224) (-616 -2912 -200)" + "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" "386495" + "plane" "(-624 -2944 -200) (-616 -2936 -200) (-616 -2936 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562066" + side + { + "id" "386496" + "plane" "(-616 -2912 -200) (-608 -2912 -200) (-608 -2936 -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" "386497" + "plane" "(-616 -2936 -224) (-608 -2936 -224) (-608 -2912 -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" "386498" + "plane" "(-616 -2912 -200) (-616 -2936 -200) (-616 -2936 -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" "386499" + "plane" "(-608 -2912 -224) (-608 -2936 -224) (-608 -2936 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386500" + "plane" "(-608 -2912 -200) (-616 -2912 -200) (-616 -2912 -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" "386501" + "plane" "(-608 -2936 -224) (-616 -2936 -224) (-616 -2936 -200)" + "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 174 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562077" + side + { + "id" "386508" + "plane" "(-664 -2920 -200) (-624 -2920 -200) (-624 -2944 -200)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386509" + "plane" "(-664 -2944 -224) (-624 -2944 -224) (-624 -2920 -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" "386510" + "plane" "(-664 -2920 -200) (-664 -2944 -200) (-664 -2944 -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" "386511" + "plane" "(-624 -2920 -224) (-624 -2944 -224) (-624 -2944 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386512" + "plane" "(-624 -2920 -200) (-664 -2920 -200) (-664 -2920 -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" "386513" + "plane" "(-624 -2944 -224) (-664 -2944 -224) (-664 -2944 -200)" + "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 100 229" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562094" + side + { + "id" "386525" + "plane" "(-1048 -3200 -200) (-1048 -3152 -200) (-616 -3152 -200)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386524" + "plane" "(-616 -3200 -224) (-616 -3152 -224) (-1048 -3152 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386523" + "plane" "(-616 -3152 -224) (-616 -3200 -224) (-616 -3200 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386522" + "plane" "(-1048 -3152 -224) (-616 -3152 -224) (-616 -3152 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386521" + "plane" "(-1048 -3200 -224) (-1048 -3152 -224) (-1048 -3152 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386520" + "plane" "(-616 -3200 -224) (-1048 -3200 -224) (-1048 -3200 -200)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562095" + side + { + "id" "386531" + "plane" "(-624 -3208 -200) (-1048 -3208 -200) (-1048 -3200 -200)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386530" + "plane" "(-1048 -3200 -224) (-1048 -3208 -224) (-624 -3208 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386529" + "plane" "(-624 -3208 -224) (-1048 -3208 -224) (-1048 -3208 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386528" + "plane" "(-624 -3200 -224) (-624 -3208 -224) (-624 -3208 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386527" + "plane" "(-1048 -3208 -224) (-1048 -3200 -224) (-1048 -3200 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386526" + "plane" "(-1048 -3200 -224) (-624 -3200 -224) (-624 -3200 -200)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562101" + side + { + "id" "386537" + "plane" "(-1280 -3216 -200) (-1272 -3208 -200) (-624 -3208 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -34] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386536" + "plane" "(-1272 -3208 -224) (-1280 -3216 -224) (-624 -3216 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386535" + "plane" "(-1280 -3216 -224) (-1272 -3208 -224) (-1272 -3208 -200)" + "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" "386534" + "plane" "(-624 -3216 -224) (-1280 -3216 -224) (-1280 -3216 -200)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -49] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386533" + "plane" "(-1272 -3208 -224) (-624 -3208 -224) (-624 -3208 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386532" + "plane" "(-624 -3208 -224) (-624 -3216 -224) (-624 -3216 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562102" + side + { + "id" "386543" + "plane" "(-616 -3200 -200) (-608 -3208 -200) (-616 -3208 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386542" + "plane" "(-608 -3208 -224) (-616 -3200 -224) (-624 -3200 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386541" + "plane" "(-608 -3208 -224) (-608 -3208 -200) (-616 -3200 -200)" + "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" "386540" + "plane" "(-616 -3208 -224) (-616 -3208 -200) (-608 -3208 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386539" + "plane" "(-616 -3200 -224) (-616 -3200 -200) (-624 -3200 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386538" + "plane" "(-624 -3200 -224) (-624 -3200 -200) (-616 -3208 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562105" + side + { + "id" "386544" + "plane" "(-616 -3208 -200) (-616 -3216 -200) (-624 -3216 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -160] 0.125" + "vaxis" "[1 0 0 35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386545" + "plane" "(-616 -3216 -224) (-616 -3208 -224) (-624 -3200 -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" "386546" + "plane" "(-624 -3216 -200) (-624 -3216 -224) (-624 -3200 -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" "386547" + "plane" "(-616 -3216 -224) (-616 -3216 -200) (-616 -3208 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386548" + "plane" "(-624 -3200 -200) (-624 -3200 -224) (-616 -3208 -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" "386549" + "plane" "(-624 -3216 -224) (-624 -3216 -200) (-616 -3216 -200)" + "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 246 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562126" + side + { + "id" "386567" + "plane" "(-608 -3744 -27) (-608 -3704 -27) (-560 -3704 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386566" + "plane" "(-608 -3704 -224) (-608 -3744 -224) (-560 -3744 -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" "386565" + "plane" "(-608 -3744 -224) (-608 -3704 -224) (-608 -3704 -27)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386564" + "plane" "(-560 -3704 -224) (-560 -3744 -224) (-560 -3744 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386563" + "plane" "(-560 -3744 -224) (-608 -3744 -224) (-608 -3744 -27)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[-1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386562" + "plane" "(-608 -3704 -224) (-560 -3704 -224) (-560 -3704 -27)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562135" + side + { + "id" "386574" + "plane" "(-1633 -3232 -85) (-1633 -3216 -85) (-860 -3216 -85)" + "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" "386575" + "plane" "(-1633 -3216 -261) (-1633 -3232 -261) (-860 -3232 -261)" + "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" "386576" + "plane" "(-1633 -3232 -261) (-1633 -3216 -261) (-1633 -3216 -85)" + "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" "386577" + "plane" "(-860 -3216 -261) (-860 -3232 -261) (-860 -3232 -85)" + "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" "386578" + "plane" "(-1633 -3216 -261) (-860 -3216 -261) (-860 -3216 -85)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386579" + "plane" "(-860 -3232 -261) (-1633 -3232 -261) (-1633 -3232 -85)" + "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 148 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562218" + side + { + "id" "386590" + "plane" "(-640 -2912 -32) (-608 -2912 -32) (-608 -2944 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386589" + "plane" "(-640 -2912 -224) (-608 -2944 -224) (-608 -2912 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386588" + "plane" "(-608 -2912 -224) (-608 -2944 -224) (-608 -2944 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386587" + "plane" "(-640 -2912 -224) (-608 -2912 -224) (-608 -2912 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386586" + "plane" "(-608 -2944 -224) (-640 -2912 -224) (-640 -2912 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562263" + side + { + "id" "386607" + "plane" "(-608 -3252 -48) (-608 -3268 -48) (-616 -3252 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386606" + "plane" "(-608 -3268 -224) (-608 -3252 -224) (-616 -3252 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386605" + "plane" "(-608 -3268 -224) (-608 -3268 -48) (-608 -3252 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386604" + "plane" "(-608 -3252 -224) (-608 -3252 -48) (-616 -3252 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386602" + "plane" "(-616 -3252 -224) (-616 -3252 -48) (-608 -3268 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562308" + side + { + "id" "386628" + "plane" "(-616 -3208 -48) (-608 -3192 -48) (-608 -3208 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386627" + "plane" "(-616 -3208 -224) (-608 -3208 -224) (-608 -3192 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386626" + "plane" "(-608 -3192 -224) (-608 -3208 -224) (-608 -3208 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386625" + "plane" "(-608 -3208 -224) (-616 -3208 -224) (-616 -3208 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386624" + "plane" "(-616 -3208 -224) (-608 -3192 -224) (-608 -3192 -48)" + "material" "TOOLS/TOOLSCLIP" + "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 139" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562411" + side + { + "id" "386634" + "plane" "(-608 -3704 -27) (-608 -3296 -27) (-496 -3296 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386633" + "plane" "(-608 -3296 -72) (-608 -3296 -27) (-608 -3704 -27)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386632" + "plane" "(-496 -3704 -72) (-496 -3704 -27) (-496 -3296 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386631" + "plane" "(-496 -3296 -72) (-496 -3296 -27) (-608 -3296 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386630" + "plane" "(-608 -3704 -72) (-608 -3704 -27) (-496 -3704 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386629" + "plane" "(-608 -3296 -72) (-608 -3704 -72) (-496 -3704 -72)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 928] 0.125" + "vaxis" "[0 -1 0 -416] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562412" + side + { + "id" "386640" + "plane" "(-512 -3296 -224) (-512 -3704 -224) (-496 -3704 -224)" + "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" "386639" + "plane" "(-512 -3704 -224) (-512 -3296 -224) (-512 -3296 -72)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 352] 0.125" + "vaxis" "[0 0 -1 -160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386638" + "plane" "(-496 -3296 -224) (-496 -3704 -224) (-496 -3704 -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" "386637" + "plane" "(-512 -3296 -224) (-496 -3296 -224) (-496 -3296 -72)" + "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" "386636" + "plane" "(-496 -3704 -224) (-512 -3704 -224) (-512 -3704 -72)" + "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" "386635" + "plane" "(-512 -3704 -72) (-512 -3296 -72) (-496 -3296 -72)" + "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 192 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562416" + side + { + "id" "386641" + "plane" "(-560 -3280 -27) (-496 -3280 -27) (-496 -3296 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386642" + "plane" "(-560 -3296 -224) (-496 -3296 -224) (-496 -3280 -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" "386643" + "plane" "(-560 -3280 -27) (-560 -3296 -27) (-560 -3296 -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" "386644" + "plane" "(-496 -3280 -224) (-496 -3296 -224) (-496 -3296 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386645" + "plane" "(-496 -3280 -27) (-560 -3280 -27) (-560 -3280 -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" "386646" + "plane" "(-496 -3296 -224) (-560 -3296 -224) (-560 -3296 -27)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 158 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562417" + side + { + "id" "386647" + "plane" "(-560 -3704 -27) (-496 -3704 -27) (-496 -3736 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386648" + "plane" "(-560 -3736 -224) (-496 -3736 -224) (-496 -3704 -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" "386649" + "plane" "(-560 -3704 -27) (-560 -3736 -27) (-560 -3736 -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" "386650" + "plane" "(-496 -3704 -224) (-496 -3736 -224) (-496 -3736 -27)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386651" + "plane" "(-496 -3704 -27) (-560 -3704 -27) (-560 -3704 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386652" + "plane" "(-496 -3736 -224) (-560 -3736 -224) (-560 -3736 -27)" + "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 252 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562449" + side + { + "id" "386694" + "plane" "(-592 -3703 -216) (-512 -3703 -216) (-512 -3704 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -7.99707] 0.25" + "vaxis" "[0 -1 0 -27.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386693" + "plane" "(-592 -3704 -224) (-512 -3704 -224) (-512 -3703 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386692" + "plane" "(-592 -3703 -216) (-592 -3704 -216) (-592 -3704 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 92] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386691" + "plane" "(-512 -3703 -224) (-512 -3704 -224) (-512 -3704 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386690" + "plane" "(-512 -3703 -216) (-592 -3703 -216) (-592 -3703 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 92] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386689" + "plane" "(-512 -3704 -224) (-592 -3704 -224) (-592 -3704 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.1213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540361" + side + { + "id" "385599" + "plane" "(-256 -3672 -48) (-256 -3656 -48) (-23 -3656 -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" "385598" + "plane" "(-256 -3656 -56) (-256 -3672 -56) (-23 -3672 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385597" + "plane" "(-256 -3672 -56) (-256 -3656 -56) (-256 -3656 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385596" + "plane" "(-256 -3656 -56) (-23 -3656 -56) (-23 -3656 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385595" + "plane" "(-23 -3672 -56) (-256 -3672 -56) (-256 -3672 -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" "385594" + "plane" "(-23 -3656 -56) (-23 -3672 -56) (-23 -3672 -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 136 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540377" + side + { + "id" "385629" + "plane" "(-256 -3696 -216) (-256 -3696 -224) (-256 -3656 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 152] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385628" + "plane" "(-256 -3656 -216) (-256 -3656 -224) (-23 -3656 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385627" + "plane" "(-23 -3696 -224) (-256 -3696 -224) (-256 -3696 -216)" + "material" "CS_APOLLO/WALLS/BLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -59] 0.125" + "vaxis" "[0 0 -1 -27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385626" + "plane" "(-23 -3656 -224) (-256 -3656 -224) (-256 -3696 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385625" + "plane" "(-23 -3696 -216) (-256 -3696 -216) (-256 -3656 -216)" + "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" "385624" + "plane" "(-23 -3656 -216) (-23 -3656 -224) (-23 -3696 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 251 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540378" + side + { + "id" "385635" + "plane" "(302 -3577 -224) (302 -3577 -216) (-23 -3577 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385634" + "plane" "(-23 -3696 -224) (-23 -3696 -216) (302 -3696 -216)" + "material" "CS_APOLLO/WALLS/BLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -59] 0.125" + "vaxis" "[0 0 -1 -27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385633" + "plane" "(-23 -3577 -224) (-23 -3696 -224) (302 -3696 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385632" + "plane" "(-23 -3696 -216) (-23 -3577 -216) (302 -3577 -216)" + "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" "385631" + "plane" "(302 -3577 -224) (302 -3696 -224) (302 -3696 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385630" + "plane" "(-23 -3696 -224) (-23 -3577 -224) (-23 -3577 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 251 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540391" + side + { + "id" "385642" + "plane" "(-23 -3577 -48) (320 -3577 -48) (320 -3672 -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" "385643" + "plane" "(-23 -3672 -56) (320 -3672 -56) (320 -3577 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385644" + "plane" "(-23 -3577 -48) (-23 -3672 -48) (-23 -3672 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 172] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385645" + "plane" "(320 -3577 -56) (320 -3672 -56) (320 -3672 -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" "385646" + "plane" "(320 -3577 -48) (-23 -3577 -48) (-23 -3577 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 172] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385647" + "plane" "(320 -3672 -56) (-23 -3672 -56) (-23 -3672 -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 153 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540404" + side + { + "id" "385648" + "plane" "(-48 -3577 -32) (302 -3577 -32) (302 -3656 -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" "385649" + "plane" "(-48 -3656 -48) (302 -3656 -48) (302 -3577 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385650" + "plane" "(-48 -3577 -32) (-48 -3656 -32) (-48 -3656 -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" "385651" + "plane" "(302 -3577 -48) (302 -3656 -48) (302 -3656 -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" "385652" + "plane" "(302 -3577 -32) (-48 -3577 -32) (-48 -3577 -48)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 384] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385653" + "plane" "(302 -3656 -48) (-48 -3656 -48) (-48 -3656 -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 221 178" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540407" + side + { + "id" "385654" + "plane" "(-32 -3577 156) (302 -3577 156) (302 -3656 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385655" + "plane" "(-32 -3656 -32) (302 -3656 -32) (302 -3577 -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" "385656" + "plane" "(-32 -3577 156) (-32 -3656 156) (-32 -3656 -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" "385657" + "plane" "(302 -3577 -32) (302 -3656 -32) (302 -3656 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385658" + "plane" "(302 -3577 156) (-32 -3577 156) (-32 -3577 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385659" + "plane" "(302 -3656 -32) (-32 -3656 -32) (-32 -3656 156)" + "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 143 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540475" + side + { + "id" "385660" + "plane" "(-32 -3448 185) (318 -3448 185) (318 -3577 185)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385661" + "plane" "(-32 -3577 156) (318 -3577 156) (318 -3448 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385662" + "plane" "(-32 -3448 185) (-32 -3577 185) (-32 -3577 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385663" + "plane" "(318 -3448 156) (318 -3577 156) (318 -3577 185)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385664" + "plane" "(318 -3448 185) (-32 -3448 185) (-32 -3448 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385665" + "plane" "(318 -3577 156) (-32 -3577 156) (-32 -3577 185)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 244" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540488" + side + { + "id" "385683" + "plane" "(152 -3856 -480) (152 -4080 -480) (144 -4072 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385682" + "plane" "(152 -4080 -504) (152 -3856 -504) (144 -3856 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385681" + "plane" "(152 -4080 -504) (152 -4080 -480) (152 -3856 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385680" + "plane" "(152 -3856 -504) (152 -3856 -480) (144 -3856 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385679" + "plane" "(144 -4072 -504) (144 -4072 -480) (152 -4080 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385678" + "plane" "(144 -3856 -504) (144 -3856 -480) (144 -4072 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 244 101" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540490" + side + { + "id" "385695" + "plane" "(152 -3696 -480) (152 -3856 -480) (144 -3856 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385694" + "plane" "(152 -3856 -504) (152 -3696 -504) (144 -3704 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385693" + "plane" "(152 -3856 -504) (152 -3856 -480) (152 -3696 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385692" + "plane" "(152 -3696 -504) (152 -3696 -480) (144 -3704 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385691" + "plane" "(144 -3856 -504) (144 -3856 -480) (152 -3856 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385690" + "plane" "(144 -3704 -504) (144 -3704 -480) (144 -3856 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "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 140" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540507" + side + { + "id" "385713" + "plane" "(152 -3696 -480) (144 -3704 -480) (-360 -3704 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385712" + "plane" "(144 -3704 -504) (152 -3696 -504) (-360 -3696 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385711" + "plane" "(-360 -3696 -480) (-360 -3704 -480) (-360 -3704 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385710" + "plane" "(144 -3704 -480) (152 -3696 -480) (152 -3696 -504)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385709" + "plane" "(152 -3696 -480) (-360 -3696 -480) (-360 -3696 -504)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385708" + "plane" "(-360 -3704 -480) (144 -3704 -480) (144 -3704 -504)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 140" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540508" + side + { + "id" "385719" + "plane" "(144 -3856 -480) (-360 -3856 -480) (-360 -3704 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385718" + "plane" "(-360 -3704 -504) (-360 -3856 -504) (144 -3856 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385717" + "plane" "(-360 -3856 -504) (-360 -3704 -504) (-360 -3704 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385716" + "plane" "(144 -3856 -504) (-360 -3856 -504) (-360 -3856 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385715" + "plane" "(144 -3704 -504) (144 -3856 -504) (144 -3856 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385714" + "plane" "(-360 -3704 -504) (144 -3704 -504) (144 -3704 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 140" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540521" + side + { + "id" "385725" + "plane" "(-280 -4072 -480) (-280 -3856 -480) (144 -3856 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385724" + "plane" "(144 -3856 -504) (-280 -3856 -504) (-280 -4072 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385723" + "plane" "(-280 -4072 -504) (-280 -3856 -504) (-280 -3856 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385722" + "plane" "(-280 -3856 -504) (144 -3856 -504) (144 -3856 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385721" + "plane" "(144 -3856 -504) (144 -4072 -504) (144 -4072 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385720" + "plane" "(144 -4072 -504) (-280 -4072 -504) (-280 -4072 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 244 101" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540522" + side + { + "id" "385731" + "plane" "(-280 -4080 -480) (-280 -4072 -480) (144 -4072 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385730" + "plane" "(-280 -4080 -504) (152 -4080 -504) (144 -4072 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385729" + "plane" "(-280 -4072 -504) (-280 -4072 -480) (-280 -4080 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385728" + "plane" "(-280 -4080 -504) (-280 -4080 -480) (152 -4080 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385727" + "plane" "(152 -4080 -504) (152 -4080 -480) (144 -4072 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385726" + "plane" "(144 -4072 -504) (144 -4072 -480) (-280 -4072 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 244 101" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540633" + side + { + "id" "385749" + "plane" "(164 -3448 -96) (176 -3448 -96) (176 -3569 -96)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385748" + "plane" "(-28 -3569 -224) (176 -3569 -224) (176 -3448 -224)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385747" + "plane" "(176 -3448 -224) (176 -3569 -224) (176 -3569 -96)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385746" + "plane" "(-28 -3448 -224) (176 -3448 -224) (176 -3448 -96)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385745" + "plane" "(176 -3569 -224) (-28 -3569 -224) (164 -3569 -96)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385744" + "plane" "(-28 -3569 -224) (-28 -3448 -224) (164 -3448 -96)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 251 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540727" + side + { + "id" "385761" + "plane" "(176 -3316 0) (176 -3304 0) (302 -3304 0)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385760" + "plane" "(176 -3304 -96) (176 -3460 -96) (302 -3460 -96)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385759" + "plane" "(176 -3460 -96) (176 -3304 -96) (176 -3304 0)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385758" + "plane" "(302 -3304 -96) (302 -3460 -96) (302 -3316 0)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385757" + "plane" "(176 -3304 -96) (302 -3304 -96) (302 -3304 0)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385756" + "plane" "(302 -3460 -96) (176 -3460 -96) (176 -3316 0)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 127 188" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540739" + side + { + "id" "385803" + "plane" "(-424 -3480 -224) (-420 -3484 -224) (-420 -3588 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -307.203] 0.078125" + "vaxis" "[0 1 0 -950.859] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385802" + "plane" "(-424 -3592 -240) (-420 -3588 -240) (-420 -3484 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385801" + "plane" "(-424 -3480 -240) (-424 -3480 -224) (-424 -3592 -224)" + "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" "385800" + "plane" "(-420 -3588 -240) (-420 -3588 -224) (-420 -3484 -224)" + "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" "385799" + "plane" "(-420 -3484 -240) (-420 -3484 -224) (-424 -3480 -224)" + "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" "385798" + "plane" "(-424 -3592 -240) (-424 -3592 -224) (-420 -3588 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "7540738" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540740" + side + { + "id" "385809" + "plane" "(-420 -3588 -224) (-420 -3484 -224) (-348 -3484 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -307.203] 0.078125" + "vaxis" "[0 1 0 -950.859] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385808" + "plane" "(-420 -3484 -240) (-420 -3588 -240) (-348 -3588 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385807" + "plane" "(-420 -3588 -240) (-420 -3588 -224) (-348 -3588 -224)" + "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" "385806" + "plane" "(-348 -3484 -240) (-348 -3484 -224) (-420 -3484 -224)" + "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" "385805" + "plane" "(-420 -3484 -240) (-420 -3484 -224) (-420 -3588 -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" "385804" + "plane" "(-348 -3588 -240) (-348 -3588 -224) (-348 -3484 -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" + } + editor + { + "color" "157 186 0" + "groupid" "7540738" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540741" + side + { + "id" "385815" + "plane" "(-420 -3484 -224) (-424 -3480 -224) (-344 -3480 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 -451.748] 0.078" + "vaxis" "[1 0 0 -311.391] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385814" + "plane" "(-424 -3480 -240) (-420 -3484 -240) (-348 -3484 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385813" + "plane" "(-344 -3480 -240) (-344 -3480 -224) (-424 -3480 -224)" + "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" "385812" + "plane" "(-420 -3484 -240) (-420 -3484 -224) (-348 -3484 -224)" + "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" "385811" + "plane" "(-424 -3480 -240) (-424 -3480 -224) (-420 -3484 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385810" + "plane" "(-348 -3484 -240) (-348 -3484 -224) (-344 -3480 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "7540738" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540742" + side + { + "id" "385821" + "plane" "(-424 -3592 -224) (-420 -3588 -224) (-348 -3588 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 -1 0 31.7478] 0.078" + "vaxis" "[-1 0 0 -420.609] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385820" + "plane" "(-420 -3588 -240) (-424 -3592 -240) (-344 -3592 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385819" + "plane" "(-424 -3592 -240) (-424 -3592 -224) (-344 -3592 -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" "385818" + "plane" "(-348 -3588 -240) (-348 -3588 -224) (-420 -3588 -224)" + "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" "385817" + "plane" "(-420 -3588 -240) (-420 -3588 -224) (-424 -3592 -224)" + "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" "385816" + "plane" "(-344 -3592 -240) (-344 -3592 -224) (-348 -3588 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "7540738" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540743" + side + { + "id" "385827" + "plane" "(-348 -3484 -224) (-344 -3480 -224) (-344 -3592 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -307.203] 0.078125" + "vaxis" "[0 1 0 -950.859] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385826" + "plane" "(-348 -3588 -240) (-344 -3592 -240) (-344 -3480 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385825" + "plane" "(-344 -3592 -240) (-344 -3592 -224) (-344 -3480 -224)" + "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" "385824" + "plane" "(-348 -3484 -240) (-348 -3484 -224) (-348 -3588 -224)" + "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" "385823" + "plane" "(-344 -3480 -240) (-344 -3480 -224) (-348 -3484 -224)" + "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" "385822" + "plane" "(-348 -3588 -240) (-348 -3588 -224) (-344 -3592 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "7540738" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540826" + side + { + "id" "385899" + "plane" "(64 -3080 0) (68 -3076 0) (172 -3076 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 -1 0 -512] 0.078125" + "vaxis" "[-1 0 0 -438.86] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385898" + "plane" "(176 -3080 -16) (172 -3076 -16) (67.9961 -3076 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385897" + "plane" "(64 -3080 -16) (64 -3080 0) (176 -3080 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" "385896" + "plane" "(172 -3076 -16) (172 -3076 0) (68 -3076 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" "385895" + "plane" "(67.9961 -3076 -16) (68 -3076 0) (64 -3080 0)" + "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" "385894" + "plane" "(176 -3080 -16) (176 -3080 0) (172 -3076 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "7540825" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540827" + side + { + "id" "385905" + "plane" "(172 -3076 0) (68 -3076 0) (68 -3004 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 -1 0 -512] 0.078125" + "vaxis" "[-1 0 0 -438.86] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385904" + "plane" "(68 -3076 -16) (172 -3076 -16) (172 -3004 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385903" + "plane" "(172 -3076 -16) (172 -3076 0) (172 -3004 0)" + "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" "385902" + "plane" "(68 -3004 -16) (68 -3004 0) (68 -3076 0)" + "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" "385901" + "plane" "(68 -3076 -16) (68 -3076 0) (172 -3076 0)" + "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" "385900" + "plane" "(172 -3004 -16) (172 -3004 0) (68 -3004 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "7540825" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540828" + side + { + "id" "385911" + "plane" "(68 -3076 0) (64 -3080 0) (64 -3000 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -214.623] 0.078" + "vaxis" "[0 1 0 503.58] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385910" + "plane" "(64 -3080 -16) (68 -3076 -16) (68 -3004 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385909" + "plane" "(64 -3000 -16) (64 -3000 0) (64 -3080 0)" + "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" "385908" + "plane" "(68 -3076 -16) (68 -3076 0) (68 -3004 0)" + "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" "385907" + "plane" "(64 -3080 -16) (64 -3080 0) (68 -3076 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 -1 0 -320] 0.25" + "vaxis" "[0 0 -1 768] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385906" + "plane" "(68 -3004 -16) (68 -3004 0) (64 -3000 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "7540825" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540829" + side + { + "id" "385917" + "plane" "(176 -3080 0) (172 -3076 0) (172 -3004 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[1 0 0 -205.377] 0.078" + "vaxis" "[0 -1 0 -211.58] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385916" + "plane" "(172 -3076 -16) (176 -3080 -16) (176 -3000 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385915" + "plane" "(176 -3080 -16) (176 -3080 0) (176 -3000 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" "385914" + "plane" "(172 -3004 -16) (172 -3004 0) (172 -3076 0)" + "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" "385913" + "plane" "(172 -3076 -16) (172 -3076 0) (176 -3080 0)" + "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" "385912" + "plane" "(176 -3000 -16) (176 -3000 0) (172 -3004 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "7540825" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540830" + side + { + "id" "385923" + "plane" "(68 -3004 0) (64 -3000 0) (176 -3000 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 -1 0 -512] 0.078125" + "vaxis" "[-1 0 0 -438.86] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "385922" + "plane" "(172 -3004 -16) (176 -3000 -16) (64 -3000 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385921" + "plane" "(176 -3000 -16) (176 -3000 0) (64 -3000 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" "385920" + "plane" "(68 -3004 -16) (68 -3004 0) (172 -3004 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" "385919" + "plane" "(64 -3000 -16) (64 -3000 0) (68 -3004 0)" + "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" "385918" + "plane" "(172 -3004 -16) (172 -3004 0) (176 -3000 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "7540825" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540866" + side + { + "id" "385935" + "plane" "(32 -3000 0) (32 -2968 0) (294 -2968 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385934" + "plane" "(294 -2968 -16) (32 -2968 -16) (32 -3000 -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" "385933" + "plane" "(32 -2968 -16) (294 -2968 -16) (294 -2968 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385932" + "plane" "(32 -3000 -16) (32 -2968 -16) (32 -2968 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385931" + "plane" "(294 -2968 -16) (294 -3000 -16) (294 -3000 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385930" + "plane" "(294 -3000 -16) (32 -3000 -16) (32 -3000 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 238" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540881" + side + { + "id" "385941" + "plane" "(32 -3296 0) (32 -3080 0) (294 -3080 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385940" + "plane" "(32 -3080 -16) (32 -3296 -16) (294 -3296 -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" "385939" + "plane" "(32 -3296 -16) (32 -3080 -16) (32 -3080 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385938" + "plane" "(294 -3080 -16) (294 -3296 -16) (294 -3296 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385937" + "plane" "(294 -3296 -16) (32 -3296 -16) (32 -3296 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385936" + "plane" "(32 -3080 -16) (294 -3080 -16) (294 -3080 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 238" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540897" + side + { + "id" "385953" + "plane" "(176 -3000 0) (294 -3000 0) (294 -3080 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385952" + "plane" "(176 -3080 -16) (294 -3080 -16) (294 -3000 -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" "385951" + "plane" "(294 -3000 -16) (294 -3080 -16) (294 -3080 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385950" + "plane" "(176 -3000 -16) (294 -3000 -16) (294 -3000 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385949" + "plane" "(294 -3080 -16) (176 -3080 -16) (176 -3080 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385948" + "plane" "(176 -3080 -16) (176 -3000 -16) (176 -3000 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 238" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7540898" + side + { + "id" "385959" + "plane" "(32 -3080 0) (32 -3000 0) (64 -3000 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385958" + "plane" "(32 -3000 -16) (32 -3080 -16) (64 -3080 -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" "385957" + "plane" "(32 -3080 -16) (32 -3000 -16) (32 -3000 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385956" + "plane" "(32 -3000 -16) (64 -3000 -16) (64 -3000 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385955" + "plane" "(64 -3080 -16) (32 -3080 -16) (32 -3080 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385954" + "plane" "(64 -3000 -16) (64 -3080 -16) (64 -3080 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 238" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7520215" + side + { + "id" "385539" + "plane" "(-1664 -3075 -32) (-1664 -3058 -32) (-1649 -3058 -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" "385538" + "plane" "(-1664 -3058 -261.263) (-1664 -3075 -261.263) (-1649 -3075 -261.263)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385537" + "plane" "(-1664 -3075 -261.262) (-1664 -3058 -261.262) (-1664 -3058 -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" "385536" + "plane" "(-1649 -3058 -261.262) (-1649 -3075 -261.262) (-1649 -3075 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 -1 0 -456.996] 0.125" + "vaxis" "[0 0 -1 -78.8382] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385535" + "plane" "(-1664 -3058 -261.262) (-1649 -3058 -261.262) (-1649 -3058 -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" "385534" + "plane" "(-1649 -3075 -261.262) (-1664 -3075 -261.262) (-1664 -3075 -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 255 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7520226" + side + { + "id" "385557" + "plane" "(-1664 -3232 -32) (-1664 -3201 -32) (-1649 -3201 -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" "385556" + "plane" "(-1664 -3201 -261.263) (-1664 -3232 -261.263) (-1649 -3232 -261.263)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385555" + "plane" "(-1664 -3232 -261.262) (-1664 -3201 -261.262) (-1664 -3201 -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" "385554" + "plane" "(-1649 -3201 -261.262) (-1649 -3232 -261.262) (-1649 -3232 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 -1 0 -456.996] 0.125" + "vaxis" "[0 0 -1 -78.8382] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385553" + "plane" "(-1649 -3232 -261.262) (-1664 -3232 -261.262) (-1664 -3232 -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" "385552" + "plane" "(-1664 -3201 -261.262) (-1649 -3201 -261.262) (-1649 -3201 -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 255 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7520236" + side + { + "id" "385569" + "plane" "(-1664 -3201 -32) (-1664 -3075 -32) (-1649 -3075 -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" "385568" + "plane" "(-1664 -3075 -120) (-1664 -3075 -32) (-1664 -3201 -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" "385567" + "plane" "(-1649 -3201 -120) (-1649 -3201 -32) (-1649 -3075 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 -1 0 -456.996] 0.125" + "vaxis" "[0 0 -1 -78.8382] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385566" + "plane" "(-1649 -3075 -120) (-1649 -3075 -32) (-1664 -3075 -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" "385565" + "plane" "(-1664 -3201 -120) (-1664 -3201 -32) (-1649 -3201 -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" "385564" + "plane" "(-1664 -3075 -120) (-1664 -3201 -120) (-1649 -3201 -120)" + "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 255 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7520241" + side + { + "id" "385575" + "plane" "(-1664 -3075 -261.263) (-1664 -3201 -261.263) (-1649 -3201 -261.263)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385574" + "plane" "(-1664 -3201 -232) (-1664 -3201 -261.262) (-1664 -3075 -261.262)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385573" + "plane" "(-1649 -3075 -232) (-1649 -3075 -261.262) (-1649 -3201 -261.262)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 -1 0 -456.996] 0.125" + "vaxis" "[0 0 -1 -78.8382] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385572" + "plane" "(-1664 -3075 -232) (-1664 -3075 -261.262) (-1649 -3075 -261.262)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385571" + "plane" "(-1649 -3201 -232) (-1649 -3201 -261.262) (-1664 -3201 -261.262)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385570" + "plane" "(-1664 -3201 -232) (-1664 -3075 -232) (-1649 -3075 -232)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 255 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7520242" + side + { + "id" "385581" + "plane" "(-1664 -3201 -120) (-1664 -3201 -232) (-1664 -3075 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385580" + "plane" "(-1657 -3075 -120) (-1657 -3075 -232) (-1657 -3201 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385579" + "plane" "(-1664 -3075 -120) (-1664 -3075 -232) (-1657 -3075 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385578" + "plane" "(-1657 -3201 -120) (-1657 -3201 -232) (-1664 -3201 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385577" + "plane" "(-1664 -3201 -120) (-1664 -3075 -120) (-1657 -3075 -120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385576" + "plane" "(-1664 -3075 -232) (-1664 -3201 -232) (-1657 -3201 -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" + } + editor + { + "color" "0 255 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7520504" + side + { + "id" "385582" + "plane" "(-1296 -3232 -45.2626) (-1296 -3216 -45.2626) (-860 -3216 -45.2626)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385583" + "plane" "(-1296 -3216 -213.263) (-1296 -3232 -213.263) (-860 -3232 -213.263)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385584" + "plane" "(-1296 -3232 -213.262) (-1296 -3216 -213.262) (-1296 -3216 -45.2617)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385585" + "plane" "(-860 -3216 -213.262) (-860 -3232 -213.262) (-860 -3232 -45.2617)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385586" + "plane" "(-1296 -3216 -213.262) (-860 -3216 -213.262) (-860 -3216 -45.2617)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385587" + "plane" "(-860 -3232 -213.262) (-1296 -3232 -213.262) (-1296 -3232 -45.2617)" + "material" "TOOLS/TOOLSCLIP" + "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 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7520505" + side + { + "id" "385588" + "plane" "(-1280 -3058 -32) (-1272 -3216 -32) (-1296 -3216 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385589" + "plane" "(-1272 -3216 -213.263) (-1280 -3058 -213.263) (-1304 -3058 -213.263)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385590" + "plane" "(-1296 -3216 -32) (-1296 -3216 -213.263) (-1304 -3058 -213.263)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385591" + "plane" "(-1272 -3216 -213.263) (-1272 -3216 -32) (-1280 -3058 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385592" + "plane" "(-1304 -3058 -32) (-1304 -3058 -213.263) (-1280 -3058 -213.263)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385593" + "plane" "(-1296 -3216 -213.263) (-1296 -3216 -32) (-1272 -3216 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498592" + side + { + "id" "385165" + "plane" "(-889 -3424 -193) (-889 -3424 -197) (-889 -3680 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 58.0253] 0.258065" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385164" + "plane" "(-889 -3680 -193) (-889 -3680 -197) (-1073 -3680 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 10.7917] 0.185484" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385163" + "plane" "(-1073 -3680 -193) (-1073 -3680 -197) (-889 -3424 -197)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.583636 -0.812015 0 698.4] 0.125" + "vaxis" "[0 0 -1 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385162" + "plane" "(-1073 -3680 -196.998) (-889 -3680 -196.998) (-889 -3424 -196.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -23.8886] 0.258065" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385161" + "plane" "(-889 -3424 -192.998) (-889 -3680 -192.998) (-1073 -3680 -192.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -23.8886] 0.258065" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498591" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498596" + side + { + "id" "385171" + "plane" "(-1644 -3512 -260.996) (-1644 -3680 -260.996) (-1641 -3680 -260.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[-1 0 0 -29.4557] 2.75" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385170" + "plane" "(-1644 -3680 -254.998) (-1644 -3680 -261) (-1644 -3512 -261)" + "material" "DEV/DEV_MEASUREGENERIC23" + "uaxis" "[0 -1 0 110.021] 0.125" + "vaxis" "[0 0 -1 -100.696] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385169" + "plane" "(-1641 -3512 -254.994) (-1641 -3512 -261) (-1641 -3680 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -2.90802] 2.75" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385168" + "plane" "(-1644 -3512 -254.998) (-1644 -3512 -261) (-1641 -3512 -261)" + "material" "DEV/DEV_MEASUREGENERIC23" + "uaxis" "[1 0 0 -41.9766] 0.125" + "vaxis" "[0 0 -1 -100.696] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385167" + "plane" "(-1641 -3680 -254.994) (-1641 -3680 -261) (-1644 -3680 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385166" + "plane" "(-1644 -3680 -254.996) (-1644 -3512 -254.996) (-1641 -3512 -254.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 -5.69501] 0.266129" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498595" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498599" + side + { + "id" "385177" + "plane" "(-792 -3232 -32) (-1649 -3232 -32) (-1649 -3216 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385176" + "plane" "(-792 -3216 -46) (-792 -3216 -32) (-1649 -3216 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 73.375] 0.125" + "vaxis" "[0 0 -1 -35.8383] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385175" + "plane" "(-1649 -3232 -45.9959) (-1649 -3232 -32) (-792 -3232 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385174" + "plane" "(-1649 -3216 -46) (-1649 -3216 -32) (-1649 -3232 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385173" + "plane" "(-792 -3232 -45.9959) (-792 -3232 -32) (-792 -3216 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385172" + "plane" "(-792 -3216 -45.9971) (-1649 -3216 -45.9971) (-1649 -3232 -45.9971)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498598" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498602" + side + { + "id" "385195" + "plane" "(-809 -3216 -260.996) (-1633 -3216 -260.996) (-1633 -3232 -260.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385194" + "plane" "(-1633 -3216 -261) (-809 -3216 -261) (-809 -3216 -212.997)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -76.8584] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385193" + "plane" "(-809 -3232 -261) (-1633 -3232 -261) (-1633 -3232 -212.997)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385192" + "plane" "(-809 -3232 -212.996) (-1633 -3232 -212.996) (-1633 -3216 -212.996)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 1811.99] 0.125" + "vaxis" "[0 -1 0 187.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385191" + "plane" "(-809 -3216 -212.994) (-809 -3216 -261) (-809 -3232 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385190" + "plane" "(-1633 -3232 -212.998) (-1633 -3232 -261) (-1633 -3216 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498598" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498606" + side + { + "id" "385213" + "plane" "(-1633 -3696 -59.7298) (-1633 -3232 -59.7298) (-809 -3232 -59.7298)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385212" + "plane" "(-1633 -3232 -77.2636) (-1633 -3696 -77.2636) (-809 -3696 -77.2636)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[0 -1 0 129] 0.125" + "vaxis" "[-1 0 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385211" + "plane" "(-1633 -3696 -77.2636) (-1633 -3232 -77.2636) (-1633 -3232 -59.7285)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 46.9346] 0.9375" + "vaxis" "[0 0 -1 -34.2168] 0.0714286" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385210" + "plane" "(-809 -3232 -77.2636) (-809 -3696 -77.2636) (-809 -3696 -59.7285)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 46.9346] 0.9375" + "vaxis" "[0 0 -1 -34.2168] 0.0714286" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385209" + "plane" "(-1633 -3232 -77.2636) (-809 -3232 -77.2636) (-809 -3232 -59.7285)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -34.2168] 0.0714286" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385208" + "plane" "(-809 -3696 -77.2636) (-1633 -3696 -77.2636) (-1633 -3696 -59.7285)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 -53.0545] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498607" + side + { + "id" "385218" + "plane" "(-1641 -3696 -60.7298) (-1641 -3512 -60.7298) (-1508.75 -3696 -60.7298)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 5.25156] 0.191667" + "vaxis" "[-1 0 0 20.2383] 0.266667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385217" + "plane" "(-1641 -3512 -68.7285) (-1641 -3512 -60.7285) (-1641 -3696 -60.7285)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 42.0194] 0.266667" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385216" + "plane" "(-1508.75 -3696 -60.7285) (-1641 -3512 -60.7285) (-1641 -3512 -68.7298)" + "material" "DEV/DEV_MEASUREGENERIC26" + "uaxis" "[0 -1 0 113.807] 0.130311" + "vaxis" "[0 0 -1 -102.838] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385215" + "plane" "(-1641 -3512 -68.7298) (-1641 -3696 -68.7298) (-1508.75 -3696 -68.7298)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385214" + "plane" "(-1641 -3696 -68.7285) (-1641 -3696 -60.7285) (-1508.75 -3696 -60.7285)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 -53.0545] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498608" + side + { + "id" "385223" + "plane" "(-1641 -3680 -196.996) (-1641 -3680 -255) (-1641 -3424 -254.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 52.0185] 0.266667" + "vaxis" "[0 0 -1 -49.841] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385222" + "plane" "(-1457 -3680 -196.996) (-1457 -3680 -255) (-1641 -3680 -254.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.9322] 0.191667" + "vaxis" "[0 0 -1 -49.841] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385221" + "plane" "(-1641 -3424 -196.996) (-1641 -3424 -255) (-1457 -3680 -254.996)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_007" + "uaxis" "[-0.583636 0.812015 0 206.859] 0.125" + "vaxis" "[0 0 -1 -15.9834] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385220" + "plane" "(-1641 -3424 -254.994) (-1641 -3680 -254.994) (-1457 -3680 -254.994)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385219" + "plane" "(-1457 -3680 -196.994) (-1641 -3680 -196.994) (-1641 -3424 -196.994)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498625" + side + { + "id" "385281" + "plane" "(-1649 -3216 -84) (-1649 -3216 -261) (-1633 -3216 -261)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -78.8383] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385280" + "plane" "(-1649 -3232 -261) (-1649 -3232 -84) (-1633 -3232 -84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.5" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385279" + "plane" "(-1649 -3232 -84) (-1649 -3232 -261) (-1649 -3216 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385278" + "plane" "(-1633 -3232 -84) (-1649 -3232 -84) (-1649 -3216 -84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 2] 0.5" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385277" + "plane" "(-1633 -3216 -84) (-1633 -3216 -261) (-1633 -3232 -261)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -930.383] 0.125" + "vaxis" "[0 -1 0 187.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385276" + "plane" "(-1633 -3216 -261) (-1649 -3216 -261) (-1649 -3232 -261)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001_DARKGREY" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -836] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498633" + side + { + "id" "385305" + "plane" "(-889 -3424 -260.996) (-889 -3672 -260.996) (-886 -3672 -260.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -45.8066] 2.58333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385304" + "plane" "(-889 -3672 -254.998) (-889 -3672 -261) (-889 -3424 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -18.5837] 2.58333" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385303" + "plane" "(-886 -3424 -254.994) (-886 -3424 -261) (-886 -3672 -261)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 161.988] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385302" + "plane" "(-889 -3424 -254.998) (-889 -3424 -261) (-886 -3424 -261)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 497.992] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385301" + "plane" "(-886 -3672 -254.994) (-886 -3672 -261) (-889 -3672 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385300" + "plane" "(-889 -3672 -254.996) (-889 -3424 -254.996) (-886 -3424 -254.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498634" + side + { + "id" "385311" + "plane" "(-889 -3672 -196.998) (-889 -3672 -254.996) (-889 -3424 -254.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -18.5837] 2.58333" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385310" + "plane" "(-886 -3424 -196.998) (-886 -3424 -254.996) (-886 -3672 -254.998)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_007" + "uaxis" "[0 1 0 807.988] 0.125" + "vaxis" "[0 0 -1 -15.9834] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385309" + "plane" "(-889 -3424 -196.998) (-889 -3424 -254.996) (-886 -3424 -254.998)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_007" + "uaxis" "[-1 0 0 119.992] 0.125" + "vaxis" "[0 0 -1 -15.9834] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385308" + "plane" "(-886 -3672 -196.998) (-886 -3672 -254.996) (-889 -3672 -254.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385307" + "plane" "(-889 -3672 -196.996) (-889 -3424 -196.996) (-886 -3424 -196.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385306" + "plane" "(-889 -3424 -254.996) (-889 -3672 -254.996) (-886 -3672 -254.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498635" + side + { + "id" "385316" + "plane" "(-1073 -3680 -260.996) (-889 -3680 -260.996) (-889 -3424 -260.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 41.5792] 0.185484" + "vaxis" "[-1 0 0 8.11134] 0.258065" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385315" + "plane" "(-889 -3424 -254.994) (-889 -3424 -261) (-889 -3680 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 58.0253] 0.258065" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385314" + "plane" "(-889 -3680 -254.994) (-889 -3680 -261) (-1073 -3680 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 10.7917] 0.185484" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385313" + "plane" "(-1073 -3680 -254.998) (-1073 -3680 -261) (-889 -3424 -261)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 -1 0 698] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385312" + "plane" "(-889 -3424 -254.996) (-889 -3680 -254.996) (-1073 -3680 -254.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -23.8886] 0.258065" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498636" + side + { + "id" "385321" + "plane" "(-889 -3424 -196.998) (-889 -3424 -254.996) (-889 -3680 -254.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 58.0253] 0.258065" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385320" + "plane" "(-889 -3680 -196.998) (-889 -3680 -254.996) (-1073 -3680 -254.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 10.7917] 0.185484" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385319" + "plane" "(-1073 -3680 -196.998) (-1073 -3680 -254.996) (-889 -3424 -254.998)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_007" + "uaxis" "[0 -1 0 -256] 0.125" + "vaxis" "[0 0 -1 -15.9834] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385318" + "plane" "(-889 -3424 -196.996) (-889 -3680 -196.996) (-1073 -3680 -196.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -23.8886] 0.258065" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385317" + "plane" "(-1073 -3680 -254.996) (-889 -3680 -254.996) (-889 -3424 -254.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -23.8886] 0.258065" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498637" + side + { + "id" "385327" + "plane" "(-1649 -3680 -260.996) (-1649 -3696 -260.996) (-809 -3696 -260.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385326" + "plane" "(-1649 -3696 -254.998) (-1649 -3696 -261) (-1649 -3680 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385325" + "plane" "(-809 -3680 -254.994) (-809 -3680 -261) (-809 -3696 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385324" + "plane" "(-1649 -3680 -254.998) (-1649 -3680 -261) (-809 -3680 -261)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 49.9941] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385323" + "plane" "(-809 -3696 -254.994) (-809 -3696 -261) (-1649 -3696 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385322" + "plane" "(-1649 -3696 -254.996) (-1649 -3680 -254.996) (-809 -3680 -254.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498638" + side + { + "id" "385333" + "plane" "(-1649 -3696 -196.998) (-1649 -3696 -254.996) (-1649 -3680 -254.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385332" + "plane" "(-809 -3680 -196.998) (-809 -3680 -254.996) (-809 -3696 -254.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385331" + "plane" "(-1649 -3680 -196.998) (-1649 -3680 -254.996) (-809 -3680 -254.998)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_007" + "uaxis" "[-1 0 0 119.992] 0.125" + "vaxis" "[0 0 -1 -15.9834] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385330" + "plane" "(-809 -3696 -196.998) (-809 -3696 -254.996) (-1649 -3696 -254.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385329" + "plane" "(-1649 -3696 -196.996) (-1649 -3680 -196.996) (-809 -3680 -196.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385328" + "plane" "(-1649 -3680 -254.996) (-1649 -3696 -254.996) (-809 -3696 -254.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498639" + side + { + "id" "385338" + "plane" "(-1641 -3424 -260.999) (-1641 -3680 -260.999) (-1457 -3680 -260.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16.3805] 0.191667" + "vaxis" "[-1 0 0 20.2383] 0.266667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385337" + "plane" "(-1641 -3680 -255.012) (-1641 -3680 -261) (-1641 -3424 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 52.0185] 0.266667" + "vaxis" "[0 0 -1 -49.9035] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385336" + "plane" "(-1457 -3680 -255.012) (-1457 -3680 -261) (-1641 -3680 -261)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.9322] 0.191667" + "vaxis" "[0 0 -1 -49.9035] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385335" + "plane" "(-1641 -3424 -255.012) (-1641 -3424 -261) (-1457 -3680 -261)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-0.583636 0.812015 0 136.863] 0.125" + "vaxis" "[0 0 -1 194] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385334" + "plane" "(-1457 -3680 -255.01) (-1641 -3680 -255.01) (-1641 -3424 -255.01)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498640" + side + { + "id" "385344" + "plane" "(-1649 -3696 -193.266) (-1649 -3696 -197.266) (-1649 -3680 -197.266)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385343" + "plane" "(-809 -3680 -193.266) (-809 -3680 -197.266) (-809 -3696 -197.266)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385342" + "plane" "(-1649 -3680 -193.266) (-1649 -3680 -197.266) (-809 -3680 -197.266)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 255.984] 0.125" + "vaxis" "[0 0 -1 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385341" + "plane" "(-809 -3696 -193.266) (-809 -3696 -197.266) (-1649 -3696 -197.266)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385340" + "plane" "(-1649 -3680 -197.264) (-1649 -3696 -197.264) (-809 -3696 -197.264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385339" + "plane" "(-1649 -3696 -193.264) (-1649 -3680 -193.264) (-809 -3680 -193.264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498641" + side + { + "id" "385350" + "plane" "(-889 -3672 -192.998) (-889 -3672 -196.998) (-889 -3424 -196.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -18.5837] 2.58333" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385349" + "plane" "(-886 -3424 -192.998) (-886 -3424 -196.998) (-886 -3672 -196.998)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 -1 0 -389.415] 0.125" + "vaxis" "[0 0 -1 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385348" + "plane" "(-889 -3424 -192.998) (-889 -3424 -196.998) (-886 -3424 -196.998)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-0.318737 -0.947843 0 -223.877] 0.125" + "vaxis" "[0 0 -1 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385347" + "plane" "(-886 -3672 -192.998) (-886 -3672 -196.998) (-889 -3672 -196.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385346" + "plane" "(-889 -3424 -196.996) (-889 -3672 -196.996) (-886 -3672 -196.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385345" + "plane" "(-889 -3672 -192.996) (-889 -3424 -192.996) (-886 -3424 -192.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498644" + side + { + "id" "385367" + "plane" "(-809 -3472 -133) (-809 -3472 -253) (-809 -3488 -253)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385366" + "plane" "(-817 -3472 -133) (-817 -3472 -253) (-809 -3472 -253)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -462] 0.125" + "vaxis" "[0 0 -1 -570] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385365" + "plane" "(-809 -3488 -133) (-809 -3488 -253) (-817 -3488 -253)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8.31232] 0.240625" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385364" + "plane" "(-817 -3488 -133) (-817 -3488 -253) (-817 -3472 -253)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385363" + "plane" "(-817 -3488 -252.998) (-809 -3488 -252.998) (-809 -3472 -252.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385362" + "plane" "(-817 -3472 -132.998) (-809 -3472 -132.998) (-809 -3488 -132.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498645" + side + { + "id" "385373" + "plane" "(-889 -3672 -132.998) (-889 -3672 -192.998) (-889 -3424 -192.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -18.5837] 2.58333" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385372" + "plane" "(-886 -3424 -132.998) (-886 -3424 -192.998) (-886 -3672 -192.998)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.947843 0.318738 0 -462.224] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385371" + "plane" "(-889 -3424 -132.998) (-889 -3424 -192.998) (-886 -3424 -192.998)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -125.877] 0.125" + "vaxis" "[0 0 -1 -570.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385370" + "plane" "(-886 -3672 -132.998) (-886 -3672 -192.998) (-889 -3672 -192.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8483] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385369" + "plane" "(-889 -3424 -192.996) (-889 -3672 -192.996) (-886 -3672 -192.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385368" + "plane" "(-889 -3672 -132.996) (-889 -3424 -132.996) (-886 -3424 -132.996)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498646" + side + { + "id" "385379" + "plane" "(-1649 -3696 -260.999) (-1649 -3232 -260.999) (-809 -3232 -260.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 -1 0 -116.998] 0.125" + "vaxis" "[-1 0 0 41] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385378" + "plane" "(-1649 -3232 -276.999) (-1649 -3696 -276.999) (-809 -3696 -276.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 7.28253] 0.254464" + "vaxis" "[-1 0 0 -38.4381] 0.442308" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385377" + "plane" "(-1649 -3696 -277) (-1649 -3232 -277) (-1649 -3232 -261.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32.0064] 0.442308" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385376" + "plane" "(-809 -3232 -277) (-809 -3696 -277) (-809 -3696 -261.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32.0064] 0.442308" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385375" + "plane" "(-1649 -3232 -277) (-809 -3232 -277) (-809 -3232 -261.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -10.1143] 0.254464" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385374" + "plane" "(-809 -3696 -277) (-1649 -3696 -277) (-1649 -3696 -261.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -10.1143] 0.254464" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498809" + side + { + "id" "385425" + "plane" "(-1641 -3680 -193) (-1641 -3680 -197) (-1641 -3424 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 52.0185] 0.266667" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385424" + "plane" "(-1457 -3680 -193) (-1457 -3680 -197) (-1641 -3680 -197)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 29.9322] 0.191667" + "vaxis" "[0 0 -1 -49.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385423" + "plane" "(-1641 -3424 -193) (-1641 -3424 -197) (-1457 -3680 -197)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 -1 0 120] 0.125" + "vaxis" "[0 0 -1 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385422" + "plane" "(-1641 -3424 -196.998) (-1641 -3680 -196.998) (-1457 -3680 -196.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385421" + "plane" "(-1457 -3680 -192.998) (-1641 -3680 -192.998) (-1641 -3424 -192.998)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7500975" + side + { + "id" "385432" + "plane" "(-816 -3731 -46) (-792 -3731 -46) (-792 -3744 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385433" + "plane" "(-816 -3744 -224) (-792 -3744 -224) (-792 -3731 -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" "385434" + "plane" "(-816 -3731 -46) (-816 -3744 -46) (-816 -3744 -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" "385435" + "plane" "(-792 -3731 -224) (-792 -3744 -224) (-792 -3744 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385436" + "plane" "(-792 -3731 -46) (-816 -3731 -46) (-816 -3731 -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" "385437" + "plane" "(-792 -3744 -224) (-816 -3744 -224) (-816 -3744 -46)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7501009" + side + { + "id" "385438" + "plane" "(-1649 -3058 -32) (-1649 -3044 -32) (-1296 -3044 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385439" + "plane" "(-1649 -3044 -264) (-1649 -3058 -264) (-1296 -3058 -264)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385440" + "plane" "(-1649 -3058 -264) (-1649 -3044 -264) (-1649 -3044 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385441" + "plane" "(-1296 -3044 -264) (-1296 -3058 -264) (-1296 -3058 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385442" + "plane" "(-1649 -3044 -264) (-1296 -3044 -264) (-1296 -3044 -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" "385443" + "plane" "(-1296 -3058 -264) (-1649 -3058 -264) (-1649 -3058 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -78.8383] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 233 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7501042" + side + { + "id" "385485" + "plane" "(-1368 -3066 -200) (-1368 -3058 -200) (-1280 -3058 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385484" + "plane" "(-1280 -3066 -224) (-1280 -3058 -224) (-1368 -3058 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385483" + "plane" "(-1280 -3058 -224) (-1280 -3066 -224) (-1280 -3066 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385482" + "plane" "(-1368 -3058 -224) (-1280 -3058 -224) (-1280 -3058 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385481" + "plane" "(-1368 -3066 -224) (-1368 -3058 -224) (-1368 -3058 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385480" + "plane" "(-1280 -3066 -224) (-1368 -3066 -224) (-1368 -3066 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7501048" + side + { + "id" "385497" + "plane" "(-1368 -3208 -200) (-1368 -3066 -200) (-1280 -3066 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385496" + "plane" "(-1368 -3066 -224) (-1368 -3208 -224) (-1280 -3208 -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" "385495" + "plane" "(-1280 -3066 -224) (-1280 -3208 -224) (-1280 -3208 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385494" + "plane" "(-1368 -3208 -224) (-1368 -3066 -224) (-1368 -3066 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385493" + "plane" "(-1368 -3066 -224) (-1280 -3066 -224) (-1280 -3066 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385492" + "plane" "(-1280 -3208 -224) (-1368 -3208 -224) (-1368 -3208 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7501049" + side + { + "id" "385503" + "plane" "(-1280 -3208 -200) (-1280 -3216 -200) (-1368 -3216 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -34] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385502" + "plane" "(-1368 -3208 -224) (-1368 -3216 -224) (-1280 -3216 -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" "385501" + "plane" "(-1280 -3208 -224) (-1280 -3216 -224) (-1280 -3216 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385500" + "plane" "(-1280 -3216 -224) (-1368 -3216 -224) (-1368 -3216 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385499" + "plane" "(-1368 -3216 -224) (-1368 -3208 -224) (-1368 -3208 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385498" + "plane" "(-1368 -3208 -224) (-1280 -3208 -224) (-1280 -3208 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7501083" + side + { + "id" "385504" + "plane" "(-1664 -3058 -16) (-1352 -3058 -16) (-1352 -3233 -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" "385505" + "plane" "(-1664 -3233 -32) (-1352 -3233 -32) (-1352 -3058 -32)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385506" + "plane" "(-1664 -3058 -16) (-1664 -3233 -16) (-1664 -3233 -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" "385507" + "plane" "(-1352 -3058 -32) (-1352 -3233 -32) (-1352 -3233 -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" "385508" + "plane" "(-1352 -3058 -16) (-1664 -3058 -16) (-1664 -3058 -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" "385509" + "plane" "(-1352 -3233 -32) (-1664 -3233 -32) (-1664 -3233 -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 245 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7501106" + side + { + "id" "385515" + "plane" "(-1649 -3066 -232) (-1649 -3058 -232) (-1368 -3058 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.993578 0 0.113149 110.757] 0.125" + "vaxis" "[0 -1 0 17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385514" + "plane" "(-1368 -3058 -224) (-1649 -3058 -256) (-1649 -3066 -256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385513" + "plane" "(-1649 -3066 -256) (-1649 -3058 -256) (-1649 -3058 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385512" + "plane" "(-1649 -3058 -256) (-1368 -3058 -224) (-1368 -3058 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385511" + "plane" "(-1368 -3058 -224) (-1368 -3066 -224) (-1368 -3066 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385510" + "plane" "(-1368 -3066 -224) (-1649 -3066 -256) (-1649 -3066 -232)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7501121" + side + { + "id" "385527" + "plane" "(-1649 -3208 -232) (-1649 -3066 -232) (-1368 -3066 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385526" + "plane" "(-1649 -3066 -256) (-1649 -3208 -256) (-1368 -3208 -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" "385525" + "plane" "(-1649 -3208 -256) (-1649 -3066 -256) (-1649 -3066 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385524" + "plane" "(-1368 -3066 -224) (-1368 -3208 -224) (-1368 -3208 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385523" + "plane" "(-1649 -3066 -256) (-1368 -3066 -224) (-1368 -3066 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385522" + "plane" "(-1368 -3208 -224) (-1649 -3208 -256) (-1649 -3208 -232)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7501122" + side + { + "id" "385533" + "plane" "(-1368 -3216 -200) (-1649 -3216 -232) (-1649 -3208 -232)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.993578 0 0.113149 110.756] 0.125" + "vaxis" "[0 -1 0 -34] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385532" + "plane" "(-1649 -3208 -256) (-1649 -3216 -256) (-1368 -3216 -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" "385531" + "plane" "(-1649 -3216 -256) (-1649 -3208 -256) (-1649 -3208 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385530" + "plane" "(-1368 -3216 -224) (-1649 -3216 -256) (-1649 -3216 -232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385529" + "plane" "(-1368 -3208 -224) (-1368 -3216 -224) (-1368 -3216 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385528" + "plane" "(-1649 -3208 -256) (-1368 -3208 -224) (-1368 -3208 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7477993" + side + { + "id" "383297" + "plane" "(-488 -3656 -32) (-488 -3600 -32) (-48 -3600 -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" "383296" + "plane" "(-488 -3656 -48) (-48 -3656 -48) (-48 -3600 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383295" + "plane" "(-488 -3600 -48) (-488 -3600 -32) (-488 -3656 -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" "383294" + "plane" "(-488 -3656 -48) (-488 -3656 -32) (-48 -3656 -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" "383293" + "plane" "(-48 -3656 -48) (-48 -3656 -32) (-48 -3600 -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" "383292" + "plane" "(-48 -3600 -48) (-48 -3600 -32) (-488 -3600 -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 252 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478122" + side + { + "id" "383339" + "plane" "(-488 -3504 -32) (-488 -3416 -32) (-48 -3416 -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" "383338" + "plane" "(-48 -3416 -48) (-488 -3416 -48) (-488 -3504 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383337" + "plane" "(-488 -3504 -48) (-488 -3416 -48) (-488 -3416 -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" "383336" + "plane" "(-488 -3416 -48) (-48 -3416 -48) (-48 -3416 -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" "383335" + "plane" "(-48 -3416 -48) (-48 -3504 -48) (-48 -3504 -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" "383334" + "plane" "(-48 -3504 -48) (-488 -3504 -48) (-488 -3504 -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 252 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478384" + side + { + "id" "383455" + "plane" "(302 -3577 16) (302 -3364 16) (320 -3364 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" "383454" + "plane" "(302 -3364 -48) (302 -3364 16) (302 -3577 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383453" + "plane" "(320 -3577 -48) (320 -3577 16) (320 -3364 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" "383452" + "plane" "(320 -3364 -48) (320 -3364 16) (302 -3364 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" "383451" + "plane" "(302 -3577 -48) (302 -3577 16) (320 -3577 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" "383450" + "plane" "(302 -3364 -48) (302 -3577 -48) (320 -3577 -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 172 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478388" + side + { + "id" "383467" + "plane" "(302 -3577 -48) (302 -3577 -56) (302 -3364 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 171.994] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383466" + "plane" "(320 -3364 -48) (320 -3364 -56) (320 -3577 -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" "383465" + "plane" "(302 -3364 -48) (302 -3364 -56) (320 -3364 -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" "383464" + "plane" "(320 -3577 -48) (320 -3577 -56) (302 -3577 -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" "383463" + "plane" "(302 -3577 -48) (302 -3364 -48) (320 -3364 -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" "383462" + "plane" "(302 -3364 -56) (302 -3577 -56) (320 -3577 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 172 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478389" + side + { + "id" "383473" + "plane" "(302 -3577 -56) (302 -3577 -216) (302 -3364 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383472" + "plane" "(320 -3364 -56) (320 -3364 -216) (320 -3577 -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" "383471" + "plane" "(302 -3364 -56) (302 -3364 -216) (320 -3364 -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" "383470" + "plane" "(320 -3577 -56) (320 -3577 -216) (302 -3577 -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" "383469" + "plane" "(302 -3364 -216) (302 -3577 -216) (320 -3577 -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" "383468" + "plane" "(302 -3577 -56) (302 -3364 -56) (320 -3364 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 172 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478391" + side + { + "id" "383474" + "plane" "(-400 -3352 -208) (-192 -3352 -208) (-192 -3424 -208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383475" + "plane" "(-400 -3424 -224) (-192 -3424 -224) (-192 -3352 -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" "383476" + "plane" "(-400 -3352 -208) (-400 -3424 -208) (-400 -3424 -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" "383477" + "plane" "(-192 -3352 -224) (-192 -3424 -224) (-192 -3424 -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" "383478" + "plane" "(-192 -3352 -208) (-400 -3352 -208) (-400 -3352 -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" "383479" + "plane" "(-192 -3424 -224) (-400 -3424 -224) (-400 -3424 -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" + } + editor + { + "color" "0 196 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478392" + side + { + "id" "383480" + "plane" "(-392 -3360 -56) (-392 -3424 -56) (-400 -3424 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383481" + "plane" "(-392 -3424 -208) (-392 -3360 -208) (-400 -3352 -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" "383482" + "plane" "(-400 -3424 -56) (-400 -3424 -208) (-400 -3352 -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" "383483" + "plane" "(-392 -3424 -208) (-392 -3424 -56) (-392 -3360 -56)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383484" + "plane" "(-400 -3352 -56) (-400 -3352 -208) (-392 -3360 -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" "383485" + "plane" "(-400 -3424 -208) (-400 -3424 -56) (-392 -3424 -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" + } + editor + { + "color" "0 154 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478393" + side + { + "id" "383486" + "plane" "(-192 -3352 -56) (-200 -3360 -56) (-392 -3360 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383487" + "plane" "(-200 -3360 -208) (-192 -3352 -208) (-400 -3352 -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" "383488" + "plane" "(-392 -3360 -56) (-392 -3360 -208) (-400 -3352 -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" "383489" + "plane" "(-200 -3360 -208) (-200 -3360 -56) (-192 -3352 -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" "383490" + "plane" "(-400 -3352 -56) (-400 -3352 -208) (-192 -3352 -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" "383491" + "plane" "(-392 -3360 -208) (-392 -3360 -56) (-200 -3360 -56)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 1344] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 172 113" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478396" + side + { + "id" "383492" + "plane" "(-192 -3424 -56) (-200 -3424 -56) (-200 -3360 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383493" + "plane" "(-192 -3352 -208) (-200 -3360 -208) (-200 -3424 -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" "383494" + "plane" "(-200 -3424 -208) (-200 -3360 -208) (-200 -3360 -56)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 256] 0.125" + "vaxis" "[0 0 -1 -544] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383495" + "plane" "(-192 -3424 -56) (-192 -3352 -56) (-192 -3352 -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" "383496" + "plane" "(-200 -3360 -208) (-192 -3352 -208) (-192 -3352 -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" "383497" + "plane" "(-200 -3424 -56) (-192 -3424 -56) (-192 -3424 -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" + } + editor + { + "color" "0 234 143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478408" + side + { + "id" "383510" + "plane" "(-400 -3352 -48) (-192 -3352 -48) (-192 -3424 -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" "383511" + "plane" "(-400 -3424 -56) (-192 -3424 -56) (-192 -3352 -56)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 832] 0.125" + "vaxis" "[0 -1 0 -992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383512" + "plane" "(-400 -3352 -48) (-400 -3424 -48) (-400 -3424 -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" "383513" + "plane" "(-192 -3352 -56) (-192 -3424 -56) (-192 -3424 -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" "383514" + "plane" "(-192 -3352 -48) (-400 -3352 -48) (-400 -3352 -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" "383515" + "plane" "(-192 -3424 -56) (-400 -3424 -56) (-400 -3424 -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 130 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478419" + side + { + "id" "383516" + "plane" "(-392 -3424 -56) (-200 -3424 -56) (-200 -3448 -56)" + "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" "383517" + "plane" "(-392 -3448 -216) (-200 -3448 -216) (-200 -3424 -216)" + "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" "383518" + "plane" "(-392 -3424 -56) (-392 -3448 -56) (-392 -3448 -216)" + "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" "383519" + "plane" "(-200 -3424 -216) (-200 -3448 -216) (-200 -3448 -56)" + "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" "383520" + "plane" "(-200 -3424 -56) (-392 -3424 -56) (-392 -3424 -216)" + "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" "383521" + "plane" "(-200 -3448 -216) (-392 -3448 -216) (-392 -3448 -56)" + "material" "TOOLS/TOOLSHINT" + "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 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478422" + side + { + "id" "383522" + "plane" "(-392 -3432 -56) (-200 -3432 -56) (-200 -3448 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383523" + "plane" "(-392 -3448 -216) (-200 -3448 -216) (-200 -3432 -216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383524" + "plane" "(-392 -3432 -56) (-392 -3448 -56) (-392 -3448 -216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383525" + "plane" "(-200 -3432 -216) (-200 -3448 -216) (-200 -3448 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383526" + "plane" "(-200 -3432 -56) (-392 -3432 -56) (-392 -3432 -216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383527" + "plane" "(-200 -3448 -216) (-392 -3448 -216) (-392 -3448 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 242 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478480" + side + { + "id" "383576" + "plane" "(-392 -3432 -56) (-200 -3432 -56) (-200 -3448 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383577" + "plane" "(-392 -3448 -104) (-200 -3448 -104) (-200 -3432 -104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 256] 0.125" + "vaxis" "[-1 0 0 -992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383578" + "plane" "(-392 -3432 -56) (-392 -3448 -56) (-392 -3448 -104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383579" + "plane" "(-200 -3432 -104) (-200 -3448 -104) (-200 -3448 -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" "383580" + "plane" "(-200 -3432 -56) (-392 -3432 -56) (-392 -3432 -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" "383581" + "plane" "(-200 -3448 -104) (-392 -3448 -104) (-392 -3448 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 212 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7438901" + side + { + "id" "383154" + "plane" "(352 -4200 560) (1024 -4200 560) (1024 -4216 560)" + "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" "383155" + "plane" "(352 -4216 -16) (1024 -4216 -16) (1024 -4200 -16)" + "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" "383156" + "plane" "(352 -4200 560) (352 -4216 560) (352 -4216 -16)" + "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" "383157" + "plane" "(1024 -4200 -16) (1024 -4216 -16) (1024 -4216 560)" + "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" "383158" + "plane" "(1024 -4200 560) (352 -4200 560) (352 -4200 -16)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383159" + "plane" "(1024 -4216 -16) (352 -4216 -16) (352 -4216 560)" + "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 198 159" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7439052" + side + { + "id" "383177" + "plane" "(1675 -4200 0) (1559 -4200 0) (1559 -4216 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383176" + "plane" "(1559 -4216 48) (1559 -4216 0) (1559 -4200 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -440] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383175" + "plane" "(1559 -4200 48) (1559 -4200 0) (1675 -4200 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -135] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383174" + "plane" "(1675 -4216 0) (1559 -4216 0) (1559 -4216 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 -136] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383173" + "plane" "(1675 -4216 48) (1559 -4216 48) (1559 -4200 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383172" + "plane" "(1675 -4200 48) (1675 -4200 0) (1675 -4216 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 487.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 109" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7439054" + side + { + "id" "383189" + "plane" "(1675 -4216 128) (1559 -4216 128) (1559 -4200 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383188" + "plane" "(1559 -4200 48) (1559 -4200 128) (1559 -4216 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -440] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383187" + "plane" "(1675 -4200 128) (1559 -4200 128) (1559 -4200 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383186" + "plane" "(1675 -4216 48) (1559 -4216 48) (1559 -4216 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 -136] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383185" + "plane" "(1675 -4200 48) (1559 -4200 48) (1559 -4216 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383184" + "plane" "(1675 -4216 48) (1675 -4216 128) (1675 -4200 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 487.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7439059" + side + { + "id" "383207" + "plane" "(1675 -4202 128) (1720 -4202 128) (1720 -4214 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383206" + "plane" "(1675 -4214 0) (1720 -4214 0) (1720 -4202 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383205" + "plane" "(1720 -4202 0) (1720 -4214 0) (1720 -4214 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383204" + "plane" "(1675 -4202 0) (1720 -4202 0) (1720 -4202 128)" + "material" "APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -76] 0.125" + "vaxis" "[0 0 -1 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383203" + "plane" "(1720 -4214 0) (1675 -4214 0) (1675 -4214 128)" + "material" "APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -76] 0.125" + "vaxis" "[0 0 -1 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383202" + "plane" "(1675 -4214 0) (1675 -4202 0) (1675 -4202 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 120 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7439257" + side + { + "id" "383219" + "plane" "(1508 -4128 148.251) (1579 -4136 148.251) (1579 -4197 148.251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383218" + "plane" "(1501 -4197 0.251045) (1579 -4197 0.251045) (1579 -4136 0.251045)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383217" + "plane" "(1508 -4128 0.251045) (1508 -4128 148.251) (1501 -4197 148.251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383216" + "plane" "(1579 -4136 0.251045) (1579 -4136 148.251) (1508 -4128 148.251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383215" + "plane" "(1501 -4197 0.251045) (1501 -4197 148.251) (1579 -4197 148.251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383214" + "plane" "(1579 -4197 0.251045) (1579 -4197 148.251) (1579 -4136 148.251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 203" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7439258" + side + { + "id" "383225" + "plane" "(1579 -4136 148.251) (1658 -4136 148.251) (1658 -4197 148.251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383224" + "plane" "(1579 -4197 0.251045) (1658 -4197 0.251045) (1658 -4136 0.251045)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383223" + "plane" "(1658 -4136 0.250481) (1658 -4197 0.25048) (1658 -4197 148.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383222" + "plane" "(1579 -4136 0.250504) (1658 -4136 0.250504) (1658 -4136 148.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383221" + "plane" "(1658 -4197 0.250534) (1579 -4197 0.250533) (1579 -4197 148.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383220" + "plane" "(1579 -4197 0.250557) (1579 -4136 0.250557) (1579 -4136 148.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 203" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7439434" + side + { + "id" "383226" + "plane" "(1439 -4128 181) (1439 -3986 181) (1508 -4128 181)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383227" + "plane" "(1439 -3986 0.251022) (1439 -4128 0.251022) (1508 -4128 0.251022)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383228" + "plane" "(1439 -4128 0.251022) (1439 -3986 0.251022) (1439 -3986 181)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383229" + "plane" "(1508 -4128 181) (1439 -3986 181) (1439 -3986 0.251022)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383231" + "plane" "(1439 -4128 181) (1508 -4128 181) (1508 -4128 0.251022)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 224 241" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7418237" + side + { + "id" "382763" + "plane" "(-32 -3448 224) (-32 -2912 224) (302 -2912 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" "382762" + "plane" "(-32 -2912 185) (-32 -2912 224) (-32 -3448 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" "382761" + "plane" "(302 -3448 185) (302 -3448 224) (302 -2912 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" "382760" + "plane" "(302 -2912 185) (302 -2912 224) (-32 -2912 224)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[1 0 0 -474] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382759" + "plane" "(-32 -3448 185) (-32 -3448 224) (302 -3448 224)" + "material" "CEILING/HR_C/HR_CEILING_001_COLOR" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382758" + "plane" "(-32 -2912 185) (-32 -3448 185) (302 -3448 185)" + "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 245 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7419267" + side + { + "id" "382997" + "plane" "(404 -3065 33.9997) (404 -3063 33.9997) (455 -3063 1.25)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382996" + "plane" "(404 -3063 -41) (404 -3065 -41) (455 -3065 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382995" + "plane" "(404 -3065 -41) (404 -3063 -41) (404 -3063 34)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382994" + "plane" "(455 -3063 -41) (455 -3065 -41) (455 -3065 1.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382993" + "plane" "(404 -3063 -41) (455 -3063 -41) (455 -3063 1.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382992" + "plane" "(404 -3065 34) (455 -3065 1.25) (455 -3065 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7419271" + side + { + "id" "383009" + "plane" "(404 -3216 33.9997) (404 -3214 33.9997) (455 -3214 1.25)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383008" + "plane" "(404 -3214 -41) (404 -3216 -41) (455 -3216 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383007" + "plane" "(404 -3216 -41) (404 -3214 -41) (404 -3214 34)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383006" + "plane" "(455 -3214 -41) (455 -3216 -41) (455 -3216 1.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383005" + "plane" "(404 -3214 -41) (455 -3214 -41) (455 -3214 1.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383004" + "plane" "(404 -3216 34) (455 -3216 1.25) (455 -3216 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7419273" + side + { + "id" "383021" + "plane" "(467 -3277 33.9997) (465 -3277 33.9997) (465 -3226 1.25)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383020" + "plane" "(465 -3277 -41) (467 -3277 -41) (467 -3226 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383019" + "plane" "(467 -3277 -41) (465 -3277 -41) (465 -3277 34)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383018" + "plane" "(465 -3226 -41) (467 -3226 -41) (467 -3226 1.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383017" + "plane" "(465 -3277 -41) (465 -3226 -41) (465 -3226 1.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383016" + "plane" "(467 -3277 34) (467 -3226 1.25) (467 -3226 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 -3] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7419330" + side + { + "id" "383070" + "plane" "(-928 -6632 560) (2944 -6632 560) (2944 -6664 560)" + "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" "383071" + "plane" "(-928 -6664 -48) (2944 -6664 -48) (2944 -6632 -48)" + "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" "383072" + "plane" "(-928 -6632 560) (-928 -6664 560) (-928 -6664 -48)" + "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" "383073" + "plane" "(2944 -6632 -48) (2944 -6664 -48) (2944 -6664 560)" + "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" "383074" + "plane" "(2944 -6632 560) (-928 -6632 560) (-928 -6632 -48)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383075" + "plane" "(2944 -6664 -48) (-928 -6664 -48) (-928 -6664 560)" + "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 207 188" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7419339" + side + { + "id" "383076" + "plane" "(-1152 -2912 1016) (-1136 -2912 1016) (-1136 -5600 1016)" + "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" "383077" + "plane" "(-1152 -5600 -5) (-1136 -5600 -5) (-1136 -2912 -5)" + "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" "383078" + "plane" "(-1152 -2912 1016) (-1152 -5600 1016) (-1152 -5600 -5)" + "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" "383079" + "plane" "(-1136 -2912 -5) (-1136 -5600 -5) (-1136 -5600 1016)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383080" + "plane" "(-1136 -2912 1016) (-1152 -2912 1016) (-1152 -2912 -5)" + "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" "383081" + "plane" "(-1136 -5600 -5) (-1152 -5600 -5) (-1152 -5600 1016)" + "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 153 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7397836" + side + { + "id" "382402" + "plane" "(-32 -3592 193) (-32 -3448 193) (302 -3448 193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382403" + "plane" "(-32 -3448 185) (-32 -3592 185) (302 -3592 185)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382404" + "plane" "(-32 -3592 185) (-32 -3448 185) (-32 -3448 193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382405" + "plane" "(302 -3448 185) (302 -3592 185) (302 -3592 193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382406" + "plane" "(-32 -3448 185) (302 -3448 185) (302 -3448 193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382407" + "plane" "(302 -3592 185) (-32 -3592 185) (-32 -3592 193)" + "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 207 164" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7397885" + side + { + "id" "382408" + "plane" "(302 -3577 193) (302 -3364 193) (318 -3364 193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382409" + "plane" "(302 -3364 156) (302 -3577 156) (318 -3577 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382410" + "plane" "(302 -3577 156) (302 -3364 156) (302 -3364 193)" + "material" "CEILING/HR_C/HR_CEILING_001_COLOR" + "uaxis" "[0 -1 0 -591.994] 0.125" + "vaxis" "[0 0 -1 -58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382411" + "plane" "(318 -3364 156) (318 -3577 156) (318 -3577 193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382412" + "plane" "(302 -3364 156) (318 -3364 156) (318 -3364 193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382413" + "plane" "(318 -3577 156) (302 -3577 156) (302 -3577 193)" + "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 157 102" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7397905" + side + { + "id" "382425" + "plane" "(301 -3577 156) (301 -2960 156) (302 -2960 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382424" + "plane" "(301 -2960 150) (301 -3577 150) (302 -3577 150)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 55.9902] 0.125" + "vaxis" "[-1 0 0 -25] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382423" + "plane" "(301 -3577 150) (301 -2960 150) (301 -2960 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 55.9902] 0.125" + "vaxis" "[0 0 1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382422" + "plane" "(302 -2960 150) (302 -3577 150) (302 -3577 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382421" + "plane" "(301 -2960 150) (302 -2960 150) (302 -2960 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382420" + "plane" "(302 -3577 150) (301 -3577 150) (301 -3577 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7397973" + side + { + "id" "382455" + "plane" "(24 -3253 128) (8 -3253 128) (8 -3005 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 19.998] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382454" + "plane" "(8 -3253 -1.10865e-05) (24 -3253 -1.10865e-05) (24 -3005 -1.10865e-05)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382453" + "plane" "(8 -3005 3.30508e-05) (24 -3005 3.30508e-05) (24 -3005 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -1.2341] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382452" + "plane" "(24 -3253 2.79844e-05) (8 -3253 2.79844e-05) (8 -3253 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -1.2341] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382451" + "plane" "(24 -3005 2.99811e-05) (24 -3253 3.016e-05) (24 -3253 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 -1.2341] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382450" + "plane" "(8 -3253 3.08752e-05) (8 -3005 3.1054e-05) (8 -3005 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 -1 0 -20] 0.25" + "vaxis" "[0 0 -1 -1.2341] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 185 130" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7398003" + side + { + "id" "382467" + "plane" "(384 -3296 0) (384 -2912 0) (400 -2912 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382466" + "plane" "(384 -2912 -40) (384 -3296 -40) (480 -3296 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382465" + "plane" "(384 -3296 -40) (384 -2912 -40) (384 -2912 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382464" + "plane" "(384 -2912 -40) (480 -2912 -40) (400 -2912 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382463" + "plane" "(480 -3296 -40) (384 -3296 -40) (384 -3296 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382462" + "plane" "(400 -3296 0) (400 -2912 0) (480 -2912 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 187 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7398388" + side + { + "id" "382573" + "plane" "(302 -3004 128.75) (318 -3004 128.75) (318 -3070 128.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382574" + "plane" "(302 -3070 -0.249916) (318 -3070 -0.249916) (318 -3004 -0.249916)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382575" + "plane" "(302 -3004 128.75) (302 -3070 128.75) (302 -3070 -0.249916)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382576" + "plane" "(318 -3004 -0.249916) (318 -3070 -0.249916) (318 -3070 128.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382577" + "plane" "(318 -3004 128.75) (302 -3004 128.75) (302 -3004 -0.249916)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382578" + "plane" "(318 -3070 -0.249916) (302 -3070 -0.249916) (302 -3070 128.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 106" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7398389" + side + { + "id" "382590" + "plane" "(302 -3186 128.75) (318 -3186 128.75) (318 -3252 128.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382589" + "plane" "(302 -3252 -0.249916) (318 -3252 -0.249916) (318 -3186 -0.249916)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382588" + "plane" "(302 -3186 128.75) (302 -3252 128.75) (302 -3252 -0.249916)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382587" + "plane" "(318 -3186 -0.249916) (318 -3252 -0.249916) (318 -3252 128.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382586" + "plane" "(318 -3186 128.75) (302 -3186 128.75) (302 -3186 -0.249916)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382585" + "plane" "(318 -3252 -0.249916) (302 -3252 -0.249916) (302 -3252 128.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 106" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7398392" + side + { + "id" "382591" + "plane" "(352 -2912 240) (384 -2912 240) (384 -3440 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382592" + "plane" "(352 -3440 224) (384 -3440 224) (384 -2912 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382593" + "plane" "(352 -2912 240) (352 -3440 240) (352 -3440 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382594" + "plane" "(384 -2912 224) (384 -3440 224) (384 -3440 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382595" + "plane" "(384 -2912 240) (352 -2912 240) (352 -2912 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382596" + "plane" "(384 -3440 224) (352 -3440 224) (352 -3440 240)" + "material" "TOOLS/TOOLSCLIP" + "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 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7398671" + side + { + "id" "382668" + "plane" "(-32 -3593 192) (-32 -3577 192) (320 -3577 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382667" + "plane" "(-32 -3577 156) (-32 -3577 192) (-32 -3593 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382666" + "plane" "(320 -3593 156) (320 -3593 192) (320 -3577 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382665" + "plane" "(320 -3577 156) (320 -3577 192) (-32 -3577 192)" + "material" "CEILING/HR_C/HR_CEILING_001_COLOR" + "uaxis" "[-1 0 0 480] 0.125" + "vaxis" "[0 0 -1 -58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382664" + "plane" "(-32 -3593 156) (-32 -3593 192) (320 -3593 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" "382663" + "plane" "(-32 -3577 156) (-32 -3593 156) (320 -3593 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 236 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7398761" + side + { + "id" "382693" + "plane" "(528 -3440 156) (792 -3440 156) (792 -3459 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382694" + "plane" "(528 -3459 -40) (792 -3459 -40) (792 -3440 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382695" + "plane" "(528 -3440 156) (528 -3459 156) (528 -3459 -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" "382696" + "plane" "(792 -3440 -40) (792 -3459 -40) (792 -3459 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382697" + "plane" "(792 -3440 156) (528 -3440 156) (528 -3440 -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" "382698" + "plane" "(792 -3459 -40) (528 -3459 -40) (528 -3459 156)" + "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 231 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7399077" + side + { + "id" "382722" + "plane" "(302 -3364 -224) (302 -3592 -224) (320 -3592 -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" "382721" + "plane" "(302 -3592 -216) (302 -3592 -224) (302 -3364 -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" "382720" + "plane" "(320 -3364 -216) (320 -3364 -224) (320 -3592 -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" "382719" + "plane" "(302 -3364 -216) (302 -3364 -224) (320 -3364 -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" "382718" + "plane" "(320 -3592 -216) (320 -3592 -224) (302 -3592 -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" "382717" + "plane" "(302 -3592 -216) (302 -3364 -216) (320 -3364 -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" + } + editor + { + "color" "0 172 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7399302" + side + { + "id" "382739" + "plane" "(86.375 -3577 -96) (152 -3577 -96) (152 -3569 -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" "382738" + "plane" "(152 -3569 -96) (152 -3577 -96) (152 -3577 -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" "382737" + "plane" "(86.375 -3569 -96) (152 -3569 -96) (152 -3569 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382736" + "plane" "(152 -3577 -96) (86.375 -3577 -96) (152 -3577 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -40] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382735" + "plane" "(86.3729 -3577 -96) (86.3729 -3569 -96) (152 -3569 -48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 251 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378486" + side + { + "id" "382149" + "plane" "(152 -3304 -56) (176 -3304 -56) (176 -3424 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382150" + "plane" "(152 -3424 -224) (176 -3424 -224) (176 -3304 -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" "382151" + "plane" "(152 -3304 -56) (152 -3424 -56) (152 -3424 -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" "382152" + "plane" "(176 -3304 -224) (176 -3424 -224) (176 -3424 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382153" + "plane" "(176 -3304 -56) (152 -3304 -56) (152 -3304 -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" "382154" + "plane" "(176 -3424 -224) (152 -3424 -224) (152 -3424 -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" + } + editor + { + "color" "0 218 115" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378490" + side + { + "id" "382155" + "plane" "(152 -3304 -48) (176 -3304 -48) (176 -3424 -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" "382156" + "plane" "(152 -3424 -56) (176 -3424 -56) (176 -3304 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382157" + "plane" "(152 -3304 -48) (152 -3424 -48) (152 -3424 -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" "382158" + "plane" "(176 -3304 -56) (176 -3424 -56) (176 -3424 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382159" + "plane" "(176 -3304 -48) (152 -3304 -48) (152 -3304 -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" "382160" + "plane" "(176 -3424 -56) (152 -3424 -56) (152 -3424 -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 226 223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378499" + side + { + "id" "382172" + "plane" "(168 -3304 0) (160 -3296 0) (294 -3296 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382171" + "plane" "(302 -3304 -16) (294 -3296 -16) (160 -3296 -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" "382170" + "plane" "(168 -3304 -16) (168 -3304 0) (302 -3304 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" "382169" + "plane" "(302 -3304 -16) (302 -3304 0) (294 -3296 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382168" + "plane" "(294 -3296 -16) (294 -3296 0) (160 -3296 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382167" + "plane" "(160 -3296 -16) (160 -3296 0) (168 -3304 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 238" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378503" + side + { + "id" "382184" + "plane" "(168 -3304 0) (176 -3304 0) (176 -3448 0)" + "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" "382183" + "plane" "(168 -3448 -48) (176 -3448 -48) (176 -3304 -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" "382182" + "plane" "(176 -3304 -48) (176 -3448 -48) (176 -3448 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 359.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382181" + "plane" "(168 -3304 -48) (176 -3304 -48) (176 -3304 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" "382180" + "plane" "(176 -3448 -48) (168 -3448 -48) (168 -3448 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -472] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382179" + "plane" "(168 -3448 -48) (168 -3304 -48) (168 -3304 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 190 143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378513" + side + { + "id" "382196" + "plane" "(168 -3448 0) (24 -3448 0) (24 -3440 0)" + "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" "382195" + "plane" "(24 -3440 -48) (24 -3448 -48) (168 -3448 -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" "382194" + "plane" "(24 -3448 -48) (24 -3440 -48) (24 -3440 0)" + "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" "382193" + "plane" "(168 -3448 -48) (24 -3448 -48) (24 -3448 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -472] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382192" + "plane" "(168 -3440 -48) (168 -3448 -48) (168 -3448 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382191" + "plane" "(24 -3440 -48) (168 -3440 -48) (168 -3440 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 190 143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378520" + side + { + "id" "382208" + "plane" "(168 -3304 0) (168 -3440 0) (160 -3432 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 64] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382207" + "plane" "(168 -3440 -48) (168 -3304 -48) (160 -3296 -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" "382206" + "plane" "(168 -3304 -48) (168 -3304 0) (160 -3296 0)" + "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" "382205" + "plane" "(168 -3440 -48) (168 -3440 0) (168 -3304 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382204" + "plane" "(160 -3432 -48) (160 -3432 0) (168 -3440 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382203" + "plane" "(160 -3296 -48) (160 -3296 0) (160 -3432 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 190 143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378532" + side + { + "id" "382214" + "plane" "(24 -3304 0) (32 -3304 0) (32 -3432 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382213" + "plane" "(24 -3304 -48) (24 -3440 -48) (32 -3432 -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" "382212" + "plane" "(24 -3304 -48) (24 -3304 0) (24 -3440 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" "382211" + "plane" "(32 -3304 -48) (32 -3304 0) (24 -3304 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" "382210" + "plane" "(24 -3440 -48) (24 -3440 0) (32 -3432 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382209" + "plane" "(32 -3432 -48) (32 -3432 0) (32 -3304 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 190 143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378538" + side + { + "id" "382226" + "plane" "(24 -3440 0) (32 -3432 0) (160 -3432 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 -1 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382225" + "plane" "(168 -3440 -48) (160 -3432 -48) (32 -3432 -48)" + "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" "382224" + "plane" "(24 -3440 -48) (24 -3440 0) (168 -3440 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382223" + "plane" "(168 -3440 -48) (168 -3440 0) (160 -3432 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382222" + "plane" "(32 -3432 -48) (32 -3432 0) (24 -3440 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382221" + "plane" "(160 -3432 -48) (160 -3432 0) (32 -3432 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 190 143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378539" + side + { + "id" "382232" + "plane" "(32 -3432 0) (32 -3296 0) (160 -3296 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382231" + "plane" "(160 -3296 -48) (32 -3296 -48) (32 -3432 -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" "382230" + "plane" "(32 -3296 -48) (160 -3296 -48) (160 -3296 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" "382229" + "plane" "(160 -3296 -48) (160 -3432 -48) (160 -3432 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382228" + "plane" "(32 -3432 -48) (32 -3296 -48) (32 -3296 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382227" + "plane" "(160 -3432 -48) (32 -3432 -48) (32 -3432 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 190 143" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378604" + side + { + "id" "382233" + "plane" "(8 -3005 156) (24 -3005 156) (24 -3253 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382234" + "plane" "(8 -3253 128) (24 -3253 128) (24 -3005 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -15.9883] 0.125" + "vaxis" "[1 0 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382235" + "plane" "(8 -3005 156) (8 -3253 156) (8 -3253 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" "382236" + "plane" "(24 -3005 128) (24 -3253 128) (24 -3253 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382237" + "plane" "(24 -3005 156) (8 -3005 156) (8 -3005 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" "382238" + "plane" "(24 -3253 128) (8 -3253 128) (8 -3253 156)" + "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 254 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378671" + side + { + "id" "382275" + "plane" "(176 -3296 -48) (302 -3296 -48) (302 -3312 -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" "382276" + "plane" "(176 -3312 -224) (302 -3312 -224) (302 -3296 -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" "382277" + "plane" "(176 -3296 -48) (176 -3312 -48) (176 -3312 -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" "382278" + "plane" "(302 -3296 -224) (302 -3312 -224) (302 -3312 -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" "382279" + "plane" "(302 -3296 -48) (176 -3296 -48) (176 -3296 -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" "382280" + "plane" "(302 -3312 -224) (176 -3312 -224) (176 -3312 -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 166 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378709" + side + { + "id" "382336" + "plane" "(318 -3312 -16) (384 -3312 -16) (384 -3440 -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" "382337" + "plane" "(318 -3440 -48) (384 -3440 -48) (384 -3312 -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" "382338" + "plane" "(318 -3312 -16) (318 -3440 -16) (318 -3440 -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" "382339" + "plane" "(384 -3312 -48) (384 -3440 -48) (384 -3440 -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" "382340" + "plane" "(384 -3312 -16) (318 -3312 -16) (318 -3312 -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" "382341" + "plane" "(384 -3440 -48) (318 -3440 -48) (318 -3440 -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 152 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7378711" + side + { + "id" "382348" + "plane" "(176 -3312 -224) (302 -3312 -224) (302 -3448 -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" "382349" + "plane" "(176 -3448 -256) (302 -3448 -256) (302 -3312 -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" "382350" + "plane" "(176 -3312 -224) (176 -3448 -224) (176 -3448 -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" "382351" + "plane" "(302 -3312 -256) (302 -3448 -256) (302 -3448 -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" "382352" + "plane" "(302 -3312 -224) (176 -3312 -224) (176 -3312 -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" "382353" + "plane" "(302 -3448 -256) (176 -3448 -256) (176 -3448 -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 172 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358679" + side + { + "id" "381742" + "plane" "(302 -2912 156) (318 -2912 156) (318 -3004 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381743" + "plane" "(302 -3004 -40) (318 -3004 -40) (318 -2912 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381744" + "plane" "(302 -2912 156) (302 -3004 156) (302 -3004 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381745" + "plane" "(318 -2912 -40) (318 -3004 -40) (318 -3004 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381746" + "plane" "(318 -2912 156) (302 -2912 156) (302 -2912 -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" "381747" + "plane" "(318 -3004 -40) (302 -3004 -40) (302 -3004 156)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -679.998] 0.125" + "vaxis" "[1 0 0 -112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358683" + side + { + "id" "381748" + "plane" "(0 -2912 156) (302 -2912 156) (302 -2960 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381749" + "plane" "(0 -2960 -40) (302 -2960 -40) (302 -2912 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381750" + "plane" "(0 -2912 156) (0 -2960 156) (0 -2960 -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" "381751" + "plane" "(302 -2912 -40) (302 -2960 -40) (302 -2960 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381752" + "plane" "(302 -2912 156) (0 -2912 156) (0 -2912 -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" "381753" + "plane" "(302 -2960 -40) (0 -2960 -40) (0 -2960 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 218" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358697" + side + { + "id" "381777" + "plane" "(-48 -3005 156) (-48 -2912 156) (-32 -2912 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381776" + "plane" "(-48 -2912 16) (-48 -3005 16) (-32 -3005 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" "381775" + "plane" "(-48 -3005 16) (-48 -2912 16) (-48 -2912 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381774" + "plane" "(-32 -2912 16) (-32 -3005 16) (-32 -3005 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381773" + "plane" "(-48 -2912 16) (-32 -2912 16) (-32 -2912 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381772" + "plane" "(-32 -3005 16) (-48 -3005 16) (-48 -3005 156)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -671.998] 0.125" + "vaxis" "[1 0 0 -0.00105047] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 123 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358703" + side + { + "id" "381789" + "plane" "(-48 -3005 16) (-48 -2912 16) (-32 -2912 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" "381788" + "plane" "(-48 -2912 -40) (-48 -3005 -40) (-32 -3005 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381787" + "plane" "(-48 -3005 -40) (-48 -2912 -40) (-48 -2912 16)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 -962] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381786" + "plane" "(-32 -2912 -40) (-32 -3005 -40) (-32 -3005 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" "381785" + "plane" "(-48 -2912 -40) (-32 -2912 -40) (-32 -2912 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" "381784" + "plane" "(-32 -3005 -40) (-48 -3005 -40) (-48 -3005 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -671.998] 0.125" + "vaxis" "[1 0 0 -0.00105047] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 143 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358736" + side + { + "id" "381795" + "plane" "(-48 -3296 156) (-48 -3253 156) (-32 -3253 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381794" + "plane" "(-48 -3253 16) (-48 -3296 16) (-32 -3296 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" "381793" + "plane" "(-48 -3296 16) (-48 -3253 16) (-48 -3253 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381792" + "plane" "(-32 -3253 16) (-32 -3296 16) (-32 -3296 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381791" + "plane" "(-32 -3296 16) (-48 -3296 16) (-48 -3296 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381790" + "plane" "(-48 -3253 16) (-32 -3253 16) (-32 -3253 156)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -615.998] 0.125" + "vaxis" "[1 0 0 -0.00113754] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 123 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358737" + side + { + "id" "381801" + "plane" "(-48 -3253 156) (-48 -3005 156) (-32 -3005 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381800" + "plane" "(-48 -3005 125) (-48 -3253 125) (-32 -3253 125)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -1016] 0.125" + "vaxis" "[1 0 0 -0.00113754] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381799" + "plane" "(-48 -3253 125) (-48 -3005 125) (-48 -3005 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381798" + "plane" "(-32 -3005 125) (-32 -3253 125) (-32 -3253 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381797" + "plane" "(-48 -3005 125) (-32 -3005 125) (-32 -3005 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381796" + "plane" "(-32 -3253 125) (-48 -3253 125) (-48 -3253 156)" + "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 123 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358742" + side + { + "id" "381807" + "plane" "(-48 -3296 16) (-48 -3253 16) (-32 -3253 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" "381806" + "plane" "(-48 -3253 -40) (-48 -3296 -40) (-32 -3296 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381805" + "plane" "(-48 -3296 -40) (-48 -3253 -40) (-48 -3253 16)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 -962] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381804" + "plane" "(-32 -3253 -40) (-32 -3296 -40) (-32 -3296 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" "381803" + "plane" "(-32 -3296 -40) (-48 -3296 -40) (-48 -3296 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" "381802" + "plane" "(-48 -3253 -40) (-32 -3253 -40) (-32 -3253 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -615.998] 0.125" + "vaxis" "[1 0 0 -0.00113754] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 143 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358750" + side + { + "id" "381819" + "plane" "(-48 -3328 0) (-152 -3328 0) (-392 -3168 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-48 -3168 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0.999512 0 0 0 0 0.0623479 0.997566 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.123975 0.991797 0" + "row1" "0.0468008 0.998416 0 -0.984615 0 0 0 0.999756 0 0 0.999512 0 0 0.999512 0 0 0 0 0.996109 0 0 0 0 0 0.123975 0.991797 0" + "row2" "-0.0312195 0.999025 0 -0.992248 0 0 0 -0.999512 0 0 0 0 0 0 0 0.996109 0 0 0 0 0 -0.996109 0 0 0 0 0" + "row3" "-0.989691 0 0 -0.0623479 -0.997566 0 -0.984615 0 0 0 0 0 0 0 0 -0.992248 0 0 0 0 0 0 0 0 0.123975 0.991797 0" + "row4" "0.969697 0 0 0 0 0 0 0 0 0 0 0 0 -0.999512 0 0 0 0 0 -0.999512 0 0 0 0 0.123975 0.991797 0" + "row5" "-0.984615 0 0 0 0 0 0 0 0 0.992248 0 0 0.0623479 0.997566 0 0.0623479 0.997566 0 0.0623479 0.997566 0 0 0 0 0 0 0" + "row6" "0 -0.999512 0 0 -0.999512 0 0 -0.999512 0 0 0 0 -0.0623479 -0.997566 0 -0.0623479 -0.997566 0 0 -0.999512 0 0 -0.999512 0 0 0 0" + "row7" "-0.0312195 -0.999025 0 -0.0312195 -0.999025 0 0 0 0 0 0 0 -0.984615 0 0 0 0 0 -0.0623479 -0.997566 0 0 -0.999512 0 0 0 0" + "row8" "0 0 0 0 0 0 0 0 0 0 0 0 -0.0312195 -0.999025 0 0 -0.999512 0 -0.992248 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0.000244141 0 0.000244617 0 0 0 0 0 0.000246041" + "row1" "0.000244409 7.62939e-06 0.000488281 0.000244141 0.000244141 0 3.05176e-05 0 0.000246041" + "row2" "0.00024426 1.52588e-05 0.000244141 0 0 3.05176e-05 0 3.05176e-05 0" + "row3" "1.14441e-05 0.000244617 7.62939e-06 0 0 1.52588e-05 0 0 0.000246041" + "row4" "3.8147e-06 0 0 0 0.000244141 0 0.000244141 0 0.000246041" + "row5" "7.62939e-06 0 0 1.52588e-05 0.000244617 0.000244617 0.000244617 0 0" + "row6" "0.000244141 0.000244141 0.000244141 0 0.000244617 0.000244617 0.000244141 0.000244141 0" + "row7" "0.00024426 0.00024426 0 0 7.62939e-06 0 0.000244617 0.000244141 0" + "row8" "0 0 0 0 0.00024426 0.000244141 1.52588e-05 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" "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" "381818" + "plane" "(-48 -3168 -16) (-392 -3168 -16) (-152 -3328 -16)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381817" + "plane" "(-392 -3168 -16) (-48 -3168 -16) (-48 -3168 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381816" + "plane" "(-48 -3328 -16) (-152 -3328 -16) (-152 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381815" + "plane" "(-152 -3328 -16) (-392 -3168 -16) (-392 -3168 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381814" + "plane" "(-48 -3168 -16) (-48 -3328 -16) (-48 -3328 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358752" + side + { + "id" "381826" + "plane" "(-48 -3005 0) (-32 -3005 0) (-32 -3253 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381827" + "plane" "(-48 -3253 -16) (-32 -3253 -16) (-32 -3005 -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" "381828" + "plane" "(-48 -3005 0) (-48 -3253 0) (-48 -3253 -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" "381829" + "plane" "(-32 -3005 -16) (-32 -3253 -16) (-32 -3253 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" "381830" + "plane" "(-32 -3005 0) (-48 -3005 0) (-48 -3005 -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" "381831" + "plane" "(-32 -3253 -16) (-48 -3253 -16) (-48 -3253 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 151 140" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358764" + side + { + "id" "381843" + "plane" "(8 -3005 0) (24 -3005 0) (24 -3253 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 832] 0.125" + "vaxis" "[1 0 0 -64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381842" + "plane" "(8 -3253 -16) (24 -3253 -16) (24 -3005 -16)" + "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" "381841" + "plane" "(8 -3005 0) (8 -3253 0) (8 -3253 -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" "381840" + "plane" "(24 -3005 -16) (24 -3253 -16) (24 -3253 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" "381839" + "plane" "(24 -3005 0) (8 -3005 0) (8 -3005 -16)" + "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" "381838" + "plane" "(24 -3253 -16) (8 -3253 -16) (8 -3253 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 140" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358769" + side + { + "id" "381861" + "plane" "(302 -3004 0) (318 -3004 0) (318 -3252 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 824] 0.125" + "vaxis" "[1 0 0 -112] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381860" + "plane" "(302 -3252 -16) (318 -3252 -16) (318 -3004 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381859" + "plane" "(302 -3004 0) (302 -3252 0) (302 -3252 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381858" + "plane" "(318 -3004 -16) (318 -3252 -16) (318 -3252 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381857" + "plane" "(318 -3004 0) (302 -3004 0) (302 -3004 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381856" + "plane" "(318 -3252 -16) (302 -3252 -16) (302 -3252 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 140" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358771" + side + { + "id" "381862" + "plane" "(8 -2960 156) (24 -2960 156) (24 -3005 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381863" + "plane" "(8 -3005 -40) (24 -3005 -40) (24 -2960 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381864" + "plane" "(8 -2960 156) (8 -3005 156) (8 -3005 -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" "381865" + "plane" "(24 -2960 -40) (24 -3005 -40) (24 -3005 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 287.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381866" + "plane" "(24 -2960 156) (8 -2960 156) (8 -2960 -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" "381867" + "plane" "(24 -3005 -40) (8 -3005 -40) (8 -3005 156)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -679.998] 0.125" + "vaxis" "[1 0 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 161 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358773" + side + { + "id" "381879" + "plane" "(8 -3424 156) (8 -3253 156) (24 -3253 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381878" + "plane" "(8 -3253 -40) (8 -3424 -40) (24 -3424 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381877" + "plane" "(8 -3424 -40) (8 -3253 -40) (8 -3253 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381876" + "plane" "(24 -3253 -40) (24 -3424 -40) (24 -3424 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381875" + "plane" "(8 -3253 -40) (24 -3253 -40) (24 -3253 156)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -615.994] 0.125" + "vaxis" "[1 0 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381874" + "plane" "(24 -3424 -40) (8 -3424 -40) (8 -3424 156)" + "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 161 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358851" + side + { + "id" "381914" + "plane" "(336 -3312 156) (336 -3264 156) (352 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381913" + "plane" "(336 -3264 31) (336 -3264 156) (336 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381912" + "plane" "(352 -3312 31) (352 -3312 156) (336 -3264 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381911" + "plane" "(336 -3312 31) (336 -3312 156) (352 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381910" + "plane" "(336 -3264 31) (336 -3312 31) (352 -3312 31)" + "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 191 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358852" + side + { + "id" "381919" + "plane" "(336 -3264 -40) (336 -3312 -40) (352 -3312 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381918" + "plane" "(336 -3312 -40) (336 -3264 -40) (336 -3264 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381917" + "plane" "(336 -3264 -40) (352 -3312 -40) (352 -3312 31)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 -962] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381916" + "plane" "(352 -3312 -40) (336 -3312 -40) (336 -3312 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381915" + "plane" "(336 -3312 31) (336 -3264 31) (352 -3312 31)" + "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 191 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358855" + side + { + "id" "381920" + "plane" "(318 -3424 0) (318 -2912 0) (384 -2912 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381921" + "plane" "(318 -2912 -16) (318 -3424 -16) (384 -3424 -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" "381922" + "plane" "(318 -3424 -16) (318 -2912 -16) (318 -2912 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" "381923" + "plane" "(384 -2912 -16) (384 -3424 -16) (384 -3424 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" "381924" + "plane" "(318 -2912 -16) (384 -2912 -16) (384 -2912 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" "381925" + "plane" "(384 -3424 -16) (318 -3424 -16) (318 -3424 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 113 150" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358857" + side + { + "id" "381926" + "plane" "(352 -3312 224) (336 -3312 224) (336 -3264 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" "381927" + "plane" "(352 -3312 156) (336 -3264 156) (336 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381928" + "plane" "(336 -3312 224) (336 -3312 156) (336 -3264 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381929" + "plane" "(352 -3312 156) (352 -3312 224) (336 -3264 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -149] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381931" + "plane" "(336 -3312 156) (336 -3312 224) (352 -3312 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 205 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358876" + side + { + "id" "381932" + "plane" "(302 -3004 156) (318 -3004 156) (318 -3252 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381933" + "plane" "(302 -3252 128) (318 -3252 128) (318 -3004 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -135.996] 0.125" + "vaxis" "[1 0 0 -112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381934" + "plane" "(302 -3004 156) (302 -3252 156) (302 -3252 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381935" + "plane" "(318 -3004 128) (318 -3252 128) (318 -3252 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 16] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381936" + "plane" "(318 -3004 156) (302 -3004 156) (302 -3004 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" "381937" + "plane" "(318 -3252 128) (302 -3252 128) (302 -3252 156)" + "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 219 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358883" + side + { + "id" "381943" + "plane" "(318 -3312 224) (318 -3252 224) (336 -3252 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" "381942" + "plane" "(318 -3252 156) (318 -3312 156) (336 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381941" + "plane" "(318 -3312 156) (318 -3252 156) (318 -3252 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" "381940" + "plane" "(336 -3252 156) (336 -3312 156) (336 -3312 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -149] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381939" + "plane" "(336 -3312 156) (318 -3312 156) (318 -3312 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" "381938" + "plane" "(318 -3252 156) (336 -3252 156) (336 -3252 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -149] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358884" + side + { + "id" "381949" + "plane" "(302 -3364 224) (302 -2912 224) (318 -2912 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381948" + "plane" "(302 -2912 156) (302 -3364 156) (318 -3364 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381947" + "plane" "(302 -3364 156) (302 -2912 156) (302 -2912 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" "381946" + "plane" "(318 -2912 156) (318 -3364 156) (318 -3364 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -149] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381945" + "plane" "(302 -2912 156) (318 -2912 156) (318 -2912 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381944" + "plane" "(318 -3364 156) (302 -3364 156) (302 -3364 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358901" + side + { + "id" "381955" + "plane" "(318 -3252 -224) (302 -3252 -224) (302 -3364 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381954" + "plane" "(302 -3364 16) (302 -3364 -224) (302 -3252 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381953" + "plane" "(302 -3252 16) (302 -3252 -224) (318 -3252 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -615.994] 0.125" + "vaxis" "[1 0 0 -112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381952" + "plane" "(318 -3364 -224) (302 -3364 -224) (302 -3364 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381951" + "plane" "(318 -3364 16) (302 -3364 16) (302 -3252 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381950" + "plane" "(318 -3252 16) (318 -3252 -224) (318 -3364 -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" + } + editor + { + "color" "0 106 111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358902" + side + { + "id" "381961" + "plane" "(318 -3364 -40) (336 -3364 -40) (336 -3252 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381960" + "plane" "(336 -3252 31) (336 -3252 -40) (336 -3364 -40)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 -178] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381959" + "plane" "(318 -3252 -40) (336 -3252 -40) (336 -3252 31)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[-1 0 0 -577.998] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381958" + "plane" "(336 -3364 31) (336 -3364 -40) (318 -3364 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381957" + "plane" "(318 -3252 31) (336 -3252 31) (336 -3364 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381956" + "plane" "(318 -3364 31) (318 -3364 -40) (318 -3252 -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" + } + editor + { + "color" "0 106 111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358903" + side + { + "id" "381967" + "plane" "(318 -3577 156) (302 -3577 156) (302 -3252 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381966" + "plane" "(318 -3252 16) (302 -3252 16) (302 -3577 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" "381965" + "plane" "(302 -3577 16) (302 -3252 16) (302 -3252 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381964" + "plane" "(302 -3252 16) (318 -3252 16) (318 -3252 156)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -615.994] 0.125" + "vaxis" "[1 0 0 -112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381963" + "plane" "(318 -3577 16) (302 -3577 16) (302 -3577 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381962" + "plane" "(318 -3252 16) (318 -3577 16) (318 -3577 156)" + "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 101 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358904" + side + { + "id" "381973" + "plane" "(318 -3252 156) (336 -3252 156) (336 -3364 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381972" + "plane" "(318 -3364 31) (336 -3364 31) (336 -3252 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381971" + "plane" "(336 -3252 31) (336 -3364 31) (336 -3364 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381970" + "plane" "(318 -3252 31) (336 -3252 31) (336 -3252 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -415.998] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381969" + "plane" "(336 -3364 31) (318 -3364 31) (318 -3364 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381968" + "plane" "(318 -3364 31) (318 -3252 31) (318 -3252 156)" + "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 101 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358928" + side + { + "id" "381985" + "plane" "(302 -2960 0) (294 -2968 0) (32 -2968 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381984" + "plane" "(294 -2968 -16) (302 -2960 -16) (24 -2960 -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" "381983" + "plane" "(24 -2960 0) (32 -2968 0) (32 -2968 -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" "381982" + "plane" "(294 -2968 0) (302 -2960 0) (302 -2960 -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" "381981" + "plane" "(302 -2960 0) (24 -2960 0) (24 -2960 -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" "381980" + "plane" "(32 -2968 0) (294 -2968 0) (294 -2968 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 238" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7358935" + side + { + "id" "381991" + "plane" "(24 -3304 0) (24 -2960 0) (32 -2968 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381990" + "plane" "(24 -3304 -16) (32 -3304 -16) (32 -2968 -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" "381989" + "plane" "(24 -2960 -16) (24 -2960 0) (24 -3304 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" "381988" + "plane" "(24 -3304 -16) (24 -3304 0) (32 -3304 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" "381987" + "plane" "(32 -2968 -16) (32 -2968 0) (24 -2960 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381986" + "plane" "(32 -3304 -16) (32 -3304 0) (32 -2968 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 238" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7359035" + side + { + "id" "382009" + "plane" "(302 -3304 0) (294 -3296 0) (294 -2968 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -16] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382008" + "plane" "(302 -2960 -16) (294 -2968 -16) (294 -3296 -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" "382007" + "plane" "(302 -3304 0) (302 -2960 0) (302 -2960 -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" "382006" + "plane" "(294 -3296 0) (302 -3304 0) (302 -3304 -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" "382005" + "plane" "(302 -2960 0) (294 -2968 0) (294 -2968 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382004" + "plane" "(294 -2968 0) (294 -3296 0) (294 -3296 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 238" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7359502" + side + { + "id" "382112" + "plane" "(384 -3200 -40) (384 -2930 -40) (464 -2930 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382111" + "plane" "(384 -2930 -56) (384 -3200 -56) (464 -3200 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382110" + "plane" "(384 -3200 -56) (384 -2930 -56) (384 -2930 -40)" + "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" "382109" + "plane" "(384 -2930 -56) (464 -2930 -56) (464 -2930 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382108" + "plane" "(464 -3200 -56) (384 -3200 -56) (384 -3200 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382107" + "plane" "(464 -2930 -56) (464 -3200 -56) (464 -3200 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "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 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7359506" + side + { + "id" "382124" + "plane" "(464 -2930 -40) (480 -2930 -40) (480 -3200 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 -638] 0.125" + "vaxis" "[0 -1 0 120] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382123" + "plane" "(464 -3200 -56) (480 -3200 -56) (480 -2930 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382122" + "plane" "(464 -2930 -56) (480 -2930 -56) (480 -2930 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382121" + "plane" "(480 -3200 -56) (464 -3200 -56) (464 -3200 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382120" + "plane" "(464 -3200 -56) (464 -2930 -56) (464 -2930 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382119" + "plane" "(480 -2930 -56) (480 -3200 -56) (480 -3200 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "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 180" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7359507" + side + { + "id" "382130" + "plane" "(480 -2930 -40) (608 -2930 -40) (608 -3200 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382129" + "plane" "(480 -3200 -56) (608 -3200 -56) (608 -2930 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382128" + "plane" "(608 -2930 -56) (608 -3200 -56) (608 -3200 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382127" + "plane" "(480 -2930 -56) (608 -2930 -56) (608 -2930 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382126" + "plane" "(608 -3200 -56) (480 -3200 -56) (480 -3200 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382125" + "plane" "(480 -3200 -56) (480 -2930 -56) (480 -2930 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "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 180" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7339416" + side + { + "id" "381672" + "plane" "(-64 -3312 224) (-48 -3296 224) (-32 -3296 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" "381671" + "plane" "(-64 -3312 156) (-32 -3312 156) (-32 -3296 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381670" + "plane" "(-32 -3296 156) (-32 -3312 156) (-32 -3312 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" "381669" + "plane" "(-48 -3296 156) (-32 -3296 156) (-32 -3296 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" "381668" + "plane" "(-32 -3312 156) (-64 -3312 156) (-64 -3312 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" "381667" + "plane" "(-64 -3312 156) (-48 -3296 156) (-48 -3296 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 438] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 153 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7339696" + side + { + "id" "381712" + "plane" "(-56 -2912 224) (-48 -2912 224) (-48 -3272 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" "381713" + "plane" "(-56 -3272 160) (-48 -3272 160) (-48 -2912 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381714" + "plane" "(-56 -2912 224) (-56 -3272 224) (-56 -3272 160)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 1 0 -868] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381715" + "plane" "(-48 -2912 160) (-48 -3272 160) (-48 -3272 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" "381716" + "plane" "(-48 -2912 224) (-56 -2912 224) (-56 -2912 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" "381717" + "plane" "(-48 -3272 160) (-56 -3272 160) (-56 -3272 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 227 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7339699" + side + { + "id" "381718" + "plane" "(-48 -2912 224) (-32 -2912 224) (-32 -3296 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" "381719" + "plane" "(-48 -3296 156) (-32 -3296 156) (-32 -2912 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381720" + "plane" "(-48 -2912 224) (-48 -3296 224) (-48 -3296 156)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 438] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381721" + "plane" "(-32 -2912 156) (-32 -3296 156) (-32 -3296 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" "381722" + "plane" "(-32 -2912 224) (-48 -2912 224) (-48 -2912 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381723" + "plane" "(-32 -3296 156) (-48 -3296 156) (-48 -3296 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 165 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7339734" + side + { + "id" "381724" + "plane" "(-32 -3424 156) (-32 -2912 156) (8 -2912 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381725" + "plane" "(-32 -2912 -40) (-32 -3424 -40) (8 -3424 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381726" + "plane" "(-32 -3424 -40) (-32 -2912 -40) (-32 -2912 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381727" + "plane" "(8 -2912 -40) (8 -3424 -40) (8 -3424 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381728" + "plane" "(-32 -2912 -40) (8 -2912 -40) (8 -2912 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381729" + "plane" "(8 -3424 -40) (-32 -3424 -40) (-32 -3424 156)" + "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 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300547" + side + { + "id" "381231" + "plane" "(-488 -3656 -46) (-488 -3448 -46) (-464 -3448 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381232" + "plane" "(-488 -3448 -56) (-488 -3656 -56) (-464 -3656 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381233" + "plane" "(-488 -3656 -56) (-488 -3448 -56) (-488 -3448 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381234" + "plane" "(-464 -3448 -56) (-464 -3656 -56) (-464 -3656 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381235" + "plane" "(-488 -3448 -56) (-464 -3448 -56) (-464 -3448 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381236" + "plane" "(-464 -3656 -56) (-488 -3656 -56) (-488 -3656 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -123.994] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300553" + side + { + "id" "381237" + "plane" "(-488 -3448 -48) (-488 -3424 -48) (176 -3424 -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" "381238" + "plane" "(-488 -3424 -56) (-488 -3448 -56) (176 -3448 -56)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 832] 0.125" + "vaxis" "[0 -1 0 -992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381239" + "plane" "(-488 -3448 -56) (-488 -3424 -56) (-488 -3424 -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" "381240" + "plane" "(176 -3424 -56) (176 -3448 -56) (176 -3448 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 60] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381241" + "plane" "(-488 -3424 -56) (176 -3424 -56) (176 -3424 -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" "381242" + "plane" "(176 -3448 -56) (-488 -3448 -56) (-488 -3448 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 162 115" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300577" + side + { + "id" "381254" + "plane" "(24 -3448 156) (-48 -3448 156) (-48 -3424 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381253" + "plane" "(24 -3424 -48) (-48 -3424 -48) (-48 -3448 -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" "381252" + "plane" "(-48 -3448 -48) (-48 -3424 -48) (-48 -3424 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381251" + "plane" "(-48 -3424 -48) (24 -3424 -48) (24 -3424 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381250" + "plane" "(24 -3448 -48) (-48 -3448 -48) (-48 -3448 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -472] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381249" + "plane" "(24 -3424 -48) (24 -3448 -48) (24 -3448 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 106 227" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300583" + side + { + "id" "381266" + "plane" "(352 -3424 156) (412 -3424 156) (412 -3440 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381265" + "plane" "(412 -3440 32) (412 -3440 156) (412 -3424 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381264" + "plane" "(412 -3424 32) (412 -3424 156) (352 -3424 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381263" + "plane" "(352 -3440 32) (352 -3440 156) (412 -3440 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381262" + "plane" "(352 -3424 32) (352 -3424 156) (352 -3440 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381261" + "plane" "(352 -3440 32) (412 -3440 32) (412 -3424 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 106 227" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300584" + side + { + "id" "381272" + "plane" "(352 -3440 -48) (412 -3440 -48) (412 -3424 -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" "381271" + "plane" "(412 -3424 32) (412 -3424 -48) (412 -3440 -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" "381270" + "plane" "(352 -3424 32) (352 -3424 -48) (412 -3424 -48)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 0 1 382] 0.25" + "vaxis" "[1 0 0 -319] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381269" + "plane" "(412 -3440 32) (412 -3440 -48) (352 -3440 -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" "381268" + "plane" "(352 -3440 32) (352 -3440 -48) (352 -3424 -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" "381267" + "plane" "(352 -3424 32) (412 -3424 32) (412 -3440 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 106 227" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7281433" + side + { + "id" "381164" + "plane" "(-488 -3792 -184) (-488 -3656 -184) (-472 -3656 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381163" + "plane" "(-488 -3656 -216) (-488 -3656 -184) (-488 -3792 -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" "381162" + "plane" "(-472 -3792 -216) (-472 -3792 -184) (-472 -3656 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381161" + "plane" "(-472 -3656 -216) (-472 -3656 -184) (-488 -3656 -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" "381160" + "plane" "(-488 -3792 -216) (-488 -3792 -184) (-472 -3792 -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" "381159" + "plane" "(-488 -3656 -216) (-488 -3792 -216) (-472 -3792 -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" + } + editor + { + "color" "0 217 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7281434" + side + { + "id" "381170" + "plane" "(-488 -3656 -256) (-488 -3792 -256) (-472 -3792 -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" "381169" + "plane" "(-488 -3792 -216) (-488 -3792 -256) (-488 -3656 -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" "381168" + "plane" "(-472 -3656 -216) (-472 -3656 -256) (-472 -3792 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -103.996] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381167" + "plane" "(-488 -3656 -216) (-488 -3656 -256) (-472 -3656 -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" "381166" + "plane" "(-472 -3792 -216) (-472 -3792 -256) (-488 -3792 -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" "381165" + "plane" "(-488 -3792 -216) (-488 -3656 -216) (-472 -3656 -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" + } + editor + { + "color" "0 217 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7281441" + side + { + "id" "381182" + "plane" "(-488 -3448 -256) (-488 -3656 -256) (-464 -3656 -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" "381181" + "plane" "(-488 -3656 -216) (-488 -3656 -256) (-488 -3448 -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" "381180" + "plane" "(-464 -3448 -216) (-464 -3448 -256) (-464 -3656 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -104] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381179" + "plane" "(-488 -3448 -216) (-488 -3448 -256) (-464 -3448 -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" "381178" + "plane" "(-464 -3656 -216) (-464 -3656 -256) (-488 -3656 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -104] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381177" + "plane" "(-488 -3656 -216) (-488 -3448 -216) (-464 -3448 -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" + } + editor + { + "color" "0 237 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7281454" + side + { + "id" "381194" + "plane" "(-488 -3424 -256) (-488 -3448 -256) (176 -3448 -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" "381193" + "plane" "(-488 -3448 -216) (-488 -3448 -256) (-488 -3424 -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" "381192" + "plane" "(176 -3424 -216) (176 -3424 -256) (176 -3448 -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" "381191" + "plane" "(-488 -3424 -216) (-488 -3424 -256) (176 -3424 -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" "381190" + "plane" "(176 -3448 -216) (176 -3448 -256) (-488 -3448 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -103.996] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381189" + "plane" "(-488 -3448 -216) (-488 -3424 -216) (176 -3424 -216)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 736] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7281461" + side + { + "id" "381206" + "plane" "(-256 -3672 -256) (-256 -3824 -256) (-240 -3824 -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" "381205" + "plane" "(-256 -3824 -216) (-256 -3824 -256) (-256 -3672 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381204" + "plane" "(-240 -3672 -216) (-240 -3672 -256) (-240 -3824 -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" "381203" + "plane" "(-256 -3672 -216) (-256 -3672 -256) (-240 -3672 -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" "381202" + "plane" "(-240 -3824 -216) (-240 -3824 -256) (-256 -3824 -256)" + "material" "METAL/HR_METAL/HR_METAL_WALL_002" + "uaxis" "[1 0 0 -1888] 0.125" + "vaxis" "[0 0 -1 52] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381201" + "plane" "(-256 -3824 -216) (-256 -3672 -216) (-240 -3672 -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" + } + editor + { + "color" "0 134 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7281473" + side + { + "id" "381219" + "plane" "(-256 -3792 -48) (-256 -3672 -48) (-240 -3672 -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" "381220" + "plane" "(-256 -3672 -56) (-256 -3792 -56) (-240 -3792 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381221" + "plane" "(-256 -3792 -56) (-256 -3672 -56) (-256 -3672 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381222" + "plane" "(-240 -3672 -56) (-240 -3792 -56) (-240 -3792 -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" "381223" + "plane" "(-256 -3672 -56) (-240 -3672 -56) (-240 -3672 -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" "381224" + "plane" "(-240 -3792 -56) (-256 -3792 -56) (-256 -3792 -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 222 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262298" + side + { + "id" "381069" + "plane" "(-488 -3792 -56) (-488 -3656 -56) (-472 -3656 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381070" + "plane" "(-488 -3656 -184) (-488 -3792 -184) (-472 -3792 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381071" + "plane" "(-488 -3792 -184) (-488 -3656 -184) (-488 -3656 -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" "381072" + "plane" "(-472 -3656 -184) (-472 -3792 -184) (-472 -3792 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381073" + "plane" "(-488 -3656 -184) (-472 -3656 -184) (-472 -3656 -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" "381074" + "plane" "(-472 -3792 -184) (-488 -3792 -184) (-488 -3792 -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" + } + editor + { + "color" "0 239 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262301" + side + { + "id" "381075" + "plane" "(-280 -3792 -48) (-240 -3792 -48) (-240 -3824 -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" "381076" + "plane" "(-280 -3824 -56) (-240 -3824 -56) (-240 -3792 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381077" + "plane" "(-280 -3792 -48) (-280 -3824 -48) (-280 -3824 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381078" + "plane" "(-240 -3792 -56) (-240 -3824 -56) (-240 -3824 -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" "381079" + "plane" "(-240 -3792 -48) (-280 -3792 -48) (-280 -3792 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381080" + "plane" "(-240 -3824 -56) (-280 -3824 -56) (-280 -3824 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262313" + side + { + "id" "381086" + "plane" "(96 -3768 -32) (168 -3768 -32) (168 -4112 -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" "381085" + "plane" "(96 -4112 -48) (168 -4112 -48) (168 -3768 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381084" + "plane" "(96 -3768 -48) (168 -3768 -48) (168 -3768 -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" "381083" + "plane" "(168 -4112 -48) (96 -4112 -48) (96 -4112 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381082" + "plane" "(96 -4112 -48) (96 -3768 -48) (96 -3768 -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" "381081" + "plane" "(168 -3768 -48) (168 -4112 -48) (168 -4112 -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" + } + editor + { + "color" "0 214 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262314" + side + { + "id" "381092" + "plane" "(168 -3768 -32) (432 -3768 -32) (432 -4112 -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" "381091" + "plane" "(168 -4112 -48) (432 -4112 -48) (432 -3768 -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" "381090" + "plane" "(432 -3768 -48) (432 -4112 -48) (432 -4112 -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" "381089" + "plane" "(168 -3768 -48) (432 -3768 -48) (432 -3768 -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" "381088" + "plane" "(432 -4112 -48) (168 -4112 -48) (168 -4112 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381087" + "plane" "(168 -4112 -48) (168 -3768 -48) (168 -3768 -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" + } + editor + { + "color" "0 214 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262316" + side + { + "id" "381093" + "plane" "(152 -4080 -48) (152 -3696 -48) (168 -3696 -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" "381094" + "plane" "(152 -3696 -56) (152 -4080 -56) (168 -4080 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381095" + "plane" "(152 -4080 -56) (152 -3696 -56) (152 -3696 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.455952 0.890003 0 65.5] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381096" + "plane" "(168 -3696 -56) (168 -4080 -56) (168 -4080 -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" "381097" + "plane" "(152 -3696 -56) (168 -3696 -56) (168 -3696 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381098" + "plane" "(168 -4080 -56) (152 -4080 -56) (152 -4080 -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 119 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262351" + side + { + "id" "381117" + "plane" "(-376 -3632 -240) (-360 -3632 -240) (-360 -3856 -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" "381118" + "plane" "(-376 -3856 -480) (-360 -3856 -480) (-360 -3632 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381119" + "plane" "(-376 -3632 -240) (-376 -3856 -240) (-376 -3856 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381120" + "plane" "(-360 -3632 -480) (-360 -3856 -480) (-360 -3856 -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" "381121" + "plane" "(-360 -3632 -240) (-376 -3632 -240) (-376 -3632 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381122" + "plane" "(-360 -3856 -480) (-376 -3856 -480) (-376 -3856 -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" "0 233 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262359" + side + { + "id" "381128" + "plane" "(-288 -4096 -224) (-288 -4080 -224) (168 -4080 -224)" + "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" "381127" + "plane" "(-288 -4080 -256) (-288 -4080 -224) (-288 -4096 -224)" + "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" "381126" + "plane" "(168 -4096 -256) (168 -4096 -224) (168 -4080 -224)" + "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" "381125" + "plane" "(168 -4080 -256) (168 -4080 -224) (-288 -4080 -224)" + "material" "METAL/HR_METAL/HR_METAL_WALL_002" + "uaxis" "[1 0 0 1504] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381124" + "plane" "(-288 -4096 -256) (-288 -4096 -224) (168 -4096 -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" "381123" + "plane" "(-288 -4080 -256) (-288 -4096 -256) (168 -4096 -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 218 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262360" + side + { + "id" "381134" + "plane" "(-288 -4080 -480) (-288 -4096 -480) (168 -4096 -480)" + "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" "381133" + "plane" "(-288 -4096 -480) (-288 -4080 -480) (-288 -4080 -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" "381132" + "plane" "(168 -4080 -480) (168 -4096 -480) (168 -4096 -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" "381131" + "plane" "(-288 -4080 -480) (168 -4080 -480) (168 -4080 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381130" + "plane" "(168 -4096 -480) (-288 -4096 -480) (-288 -4096 -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" "381129" + "plane" "(-288 -4096 -256) (-288 -4080 -256) (168 -4080 -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 218 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262380" + side + { + "id" "381140" + "plane" "(152 -4080 -224) (152 -3696 -224) (168 -3696 -224)" + "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" "381139" + "plane" "(152 -3696 -256) (152 -3696 -224) (152 -4080 -224)" + "material" "METAL/HR_METAL/HR_METAL_WALL_002" + "uaxis" "[0 1 0 1504] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381138" + "plane" "(168 -4080 -256) (168 -4080 -224) (168 -3696 -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" "381137" + "plane" "(168 -3696 -256) (168 -3696 -224) (152 -3696 -224)" + "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" "381136" + "plane" "(152 -4080 -256) (152 -4080 -224) (168 -4080 -224)" + "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" "381135" + "plane" "(152 -3696 -256) (152 -4080 -256) (168 -4080 -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 129 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262381" + side + { + "id" "381146" + "plane" "(152 -3696 -480) (152 -4080 -480) (168 -4080 -480)" + "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" "381145" + "plane" "(152 -4080 -256) (152 -4080 -480) (152 -3696 -480)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381144" + "plane" "(168 -3696 -256) (168 -3696 -480) (168 -4080 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381143" + "plane" "(152 -3696 -256) (152 -3696 -480) (168 -3696 -480)" + "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" "381142" + "plane" "(168 -4080 -256) (168 -4080 -480) (152 -4080 -480)" + "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" "381141" + "plane" "(152 -4080 -256) (152 -3696 -256) (168 -3696 -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 129 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7262419" + side + { + "id" "381152" + "plane" "(-256 -3696 -224) (-256 -3696 -256) (-256 -3680 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 352] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381151" + "plane" "(168 -3680 -224) (168 -3680 -256) (168 -3696 -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" "381150" + "plane" "(-256 -3680 -224) (-256 -3680 -256) (168 -3680 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381149" + "plane" "(168 -3696 -224) (168 -3696 -256) (-256 -3696 -256)" + "material" "METAL/HR_METAL/HR_METAL_WALL_002" + "uaxis" "[-1 0 0 -1887.99] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381148" + "plane" "(-256 -3680 -256) (-256 -3696 -256) (168 -3696 -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" "381147" + "plane" "(-256 -3696 -224) (-256 -3680 -224) (168 -3680 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 251 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242591" + side + { + "id" "380767" + "plane" "(-576 -3808 -56) (-576 -3808 -184) (-560 -3792 -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" "380766" + "plane" "(-560 -3792 -56) (-560 -3792 -184) (-443 -3792 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380765" + "plane" "(-576 -3808 -184) (-576 -3808 -56) (-443 -3808 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0.608218 0.360654 0.707107 -811] 0.125" + "vaxis" "[0.608218 0.360654 -0.707107 -843] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380764" + "plane" "(-443 -3808 -56) (-576 -3808 -56) (-560 -3792 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380763" + "plane" "(-443 -3792 -184) (-560 -3792 -184) (-576 -3808 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380762" + "plane" "(-443 -3792 -56) (-443 -3792 -184) (-443 -3808 -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" + } + editor + { + "color" "0 226 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242636" + side + { + "id" "380779" + "plane" "(-352 -3808 -224) (-280 -3808 -224) (-288 -3816 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380778" + "plane" "(-352 -3808 -256) (-352 -3816 -256) (-288 -3816 -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" "380777" + "plane" "(-352 -3808 -256) (-352 -3808 -224) (-352 -3816 -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" "380776" + "plane" "(-280 -3808 -256) (-280 -3808 -224) (-352 -3808 -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" "380775" + "plane" "(-352 -3816 -256) (-352 -3816 -224) (-288 -3816 -224)" + "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" "380774" + "plane" "(-288 -3816 -256) (-288 -3816 -224) (-280 -3808 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 164 133" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242640" + side + { + "id" "380791" + "plane" "(-280 -3808 -224) (-280 -4048 -224) (-288 -4048 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380790" + "plane" "(-280 -4048 -256) (-280 -3808 -256) (-288 -3816 -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" "380789" + "plane" "(-280 -3808 -256) (-280 -3808 -224) (-288 -3816 -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" "380788" + "plane" "(-288 -4048 -256) (-288 -4048 -224) (-280 -4048 -224)" + "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" "380787" + "plane" "(-288 -3816 -256) (-288 -3816 -224) (-288 -4048 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380786" + "plane" "(-280 -4048 -256) (-280 -4048 -224) (-280 -3808 -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" + } + editor + { + "color" "0 164 133" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242755" + side + { + "id" "380803" + "plane" "(-576 -3808 -184) (-576 -3808 -216) (-560 -3792 -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" "380802" + "plane" "(-560 -3792 -184) (-560 -3792 -216) (-443 -3792 -216)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380801" + "plane" "(-443 -3808 -216) (-576 -3808 -216) (-576 -3808 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0.608218 0.360654 0.707107 62] 0.125" + "vaxis" "[0.608218 0.360654 -0.707107 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380800" + "plane" "(-443 -3792 -216) (-560 -3792 -216) (-576 -3808 -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" "380799" + "plane" "(-443 -3808 -184) (-576 -3808 -184) (-560 -3792 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380798" + "plane" "(-443 -3792 -184) (-443 -3792 -216) (-443 -3808 -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" + } + editor + { + "color" "0 226 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242756" + side + { + "id" "380809" + "plane" "(-318 -3792 -216) (-280 -3792 -216) (-280 -3792 -184)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380808" + "plane" "(-280 -3808 -184) (-280 -3808 -216) (-318 -3808 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0.608218 0.360654 0.707107 -29.3523] 0.125" + "vaxis" "[0.608218 0.360654 -0.707107 -61.3523] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380807" + "plane" "(-280 -3792 -216) (-318 -3792 -216) (-318 -3808 -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" "380806" + "plane" "(-280 -3792 -184) (-280 -3792 -216) (-280 -3808 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.707107 0.707107 0] 0.25" + "vaxis" "[0 0.707107 -0.707107 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380805" + "plane" "(-280 -3808 -184) (-318 -3808 -184) (-318 -3792 -184)" + "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" "380804" + "plane" "(-318 -3808 -184) (-318 -3808 -216) (-318 -3792 -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" + } + editor + { + "color" "0 226 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242891" + side + { + "id" "380846" + "plane" "(-318 -3792 -56) (-280 -3792 -56) (-280 -3808 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380847" + "plane" "(-318 -3808 -184) (-280 -3808 -184) (-280 -3792 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380848" + "plane" "(-318 -3792 -56) (-318 -3808 -56) (-318 -3808 -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" "380849" + "plane" "(-280 -3792 -184) (-280 -3808 -184) (-280 -3808 -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" "380850" + "plane" "(-280 -3792 -56) (-318 -3792 -56) (-318 -3792 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380851" + "plane" "(-280 -3808 -184) (-318 -3808 -184) (-318 -3808 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -811] 0.125" + "vaxis" "[0 0 -1 -843] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 182 223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242909" + side + { + "id" "380871" + "plane" "(-560 -3744 -56) (-488 -3744 -56) (-488 -3792 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380872" + "plane" "(-560 -3792 -256) (-488 -3792 -256) (-488 -3744 -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" "380873" + "plane" "(-560 -3744 -56) (-560 -3792 -56) (-560 -3792 -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" "380874" + "plane" "(-488 -3744 -256) (-488 -3792 -256) (-488 -3792 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 726] 0.125" + "vaxis" "[0 0 -1 694] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380875" + "plane" "(-488 -3744 -56) (-560 -3744 -56) (-560 -3744 -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" "380876" + "plane" "(-488 -3792 -256) (-560 -3792 -256) (-560 -3792 -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" + } + editor + { + "color" "0 246 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242911" + side + { + "id" "380877" + "plane" "(-443 -3792 -56) (-318 -3792 -56) (-318 -3808 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380878" + "plane" "(-443 -3808 -110) (-318 -3808 -110) (-318 -3792 -110)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380879" + "plane" "(-443 -3792 -56) (-443 -3808 -56) (-443 -3808 -110)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380880" + "plane" "(-318 -3792 -110) (-318 -3808 -110) (-318 -3808 -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" "380881" + "plane" "(-318 -3792 -56) (-443 -3792 -56) (-443 -3792 -110)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380882" + "plane" "(-318 -3808 -110) (-443 -3808 -110) (-443 -3808 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -811] 0.125" + "vaxis" "[0 0 -1 -843] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242929" + side + { + "id" "380888" + "plane" "(-576 -3808 -216) (-576 -3808 -256) (-560 -3792 -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" "380887" + "plane" "(-560 -3792 -216) (-560 -3792 -256) (-443 -3792 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380886" + "plane" "(-443 -3808 -256) (-576 -3808 -256) (-576 -3808 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380885" + "plane" "(-443 -3792 -256) (-560 -3792 -256) (-576 -3808 -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" "380884" + "plane" "(-443 -3808 -216) (-576 -3808 -216) (-560 -3792 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 216] 0.125" + "vaxis" "[0 -1 0 -61.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380883" + "plane" "(-443 -3792 -216) (-443 -3792 -256) (-443 -3808 -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 226 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242939" + side + { + "id" "380912" + "plane" "(-318 -3792 -256) (-256 -3792 -256) (-256 -3792 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380911" + "plane" "(-256 -3808 -256) (-318 -3808 -256) (-318 -3808 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380910" + "plane" "(-256 -3792 -256) (-318 -3792 -256) (-318 -3808 -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" "380909" + "plane" "(-256 -3808 -216) (-318 -3808 -216) (-318 -3792 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 216] 0.125" + "vaxis" "[0 -1 0 -61.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380908" + "plane" "(-318 -3808 -216) (-318 -3808 -256) (-318 -3792 -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" "380907" + "plane" "(-256 -3792 -216) (-256 -3792 -256) (-256 -3808 -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 226 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7242996" + side + { + "id" "380924" + "plane" "(-360 -4080 -224) (-360 -4056 -224) (-288 -4056 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "380923" + "plane" "(-360 -4056 -240) (-360 -4080 -240) (-288 -4080 -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" "380922" + "plane" "(-360 -4080 -240) (-360 -4056 -240) (-360 -4056 -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" "380921" + "plane" "(-360 -4056 -240) (-288 -4056 -240) (-288 -4056 -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" "380920" + "plane" "(-288 -4080 -240) (-360 -4080 -240) (-360 -4080 -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" "380919" + "plane" "(-288 -4056 -240) (-288 -4080 -240) (-288 -4080 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 193" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243000" + side + { + "id" "380936" + "plane" "(-280 -4080 -224) (-288 -4080 -224) (-288 -4056 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380935" + "plane" "(-280 -4056 -256) (-288 -4056 -256) (-288 -4080 -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" "380934" + "plane" "(-288 -4056 -256) (-280 -4056 -256) (-280 -4056 -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" "380933" + "plane" "(-280 -4080 -256) (-288 -4080 -256) (-288 -4080 -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" "380932" + "plane" "(-288 -4080 -256) (-288 -4056 -256) (-288 -4056 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380931" + "plane" "(-280 -4056 -256) (-280 -4080 -256) (-280 -4080 -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" + } + editor + { + "color" "0 200 193" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243005" + side + { + "id" "380948" + "plane" "(-280 -4056 -224) (-360 -4056 -224) (-368 -4048 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -1] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380947" + "plane" "(-368 -4048 -272) (-360 -4056 -272) (-280 -4056 -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" "380946" + "plane" "(-280 -4056 -272) (-360 -4056 -272) (-360 -4056 -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" "380945" + "plane" "(-360 -4056 -272) (-368 -4048 -272) (-368 -4048 -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" "380944" + "plane" "(-368 -4048 -272) (-280 -4048 -272) (-280 -4048 -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" "380943" + "plane" "(-280 -4048 -272) (-280 -4056 -272) (-280 -4056 -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" + } + editor + { + "color" "0 164 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243016" + side + { + "id" "380960" + "plane" "(-784 -3872 -256) (-784 -3856 -256) (-304 -3856 -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" "380959" + "plane" "(-784 -3856 -480) (-784 -3872 -480) (-304 -3872 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380958" + "plane" "(-784 -3872 -480) (-784 -3856 -480) (-784 -3856 -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" "380957" + "plane" "(-784 -3856 -480) (-304 -3856 -480) (-304 -3856 -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" "380956" + "plane" "(-304 -3872 -480) (-784 -3872 -480) (-784 -3872 -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" "380955" + "plane" "(-304 -3856 -480) (-304 -3872 -480) (-304 -3872 -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 191 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243017" + side + { + "id" "380966" + "plane" "(-304 -3856 -256) (-280 -3856 -256) (-280 -4080 -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" "380965" + "plane" "(-304 -4080 -480) (-280 -4080 -480) (-280 -3856 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380964" + "plane" "(-280 -3856 -480) (-280 -4080 -480) (-280 -4080 -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" "380963" + "plane" "(-304 -3856 -480) (-280 -3856 -480) (-280 -3856 -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" "380962" + "plane" "(-280 -4080 -480) (-304 -4080 -480) (-304 -4080 -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" "380961" + "plane" "(-304 -4080 -480) (-304 -3856 -480) (-304 -3856 -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 191 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243023" + side + { + "id" "380973" + "plane" "(-443 -3792 -224) (-318 -3792 -224) (-318 -3808 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380974" + "plane" "(-443 -3808 -256) (-318 -3808 -256) (-318 -3792 -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" "380975" + "plane" "(-443 -3792 -224) (-443 -3808 -224) (-443 -3808 -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" "380976" + "plane" "(-318 -3792 -256) (-318 -3808 -256) (-318 -3808 -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" "380977" + "plane" "(-318 -3792 -224) (-443 -3792 -224) (-443 -3792 -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" "380978" + "plane" "(-318 -3808 -256) (-443 -3808 -256) (-443 -3808 -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 104 113" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243031" + side + { + "id" "380985" + "plane" "(-280 -3808 -216) (-256 -3808 -216) (-256 -3824 -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" "380986" + "plane" "(-280 -3824 -256) (-256 -3824 -256) (-256 -3808 -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" "380987" + "plane" "(-280 -3808 -216) (-280 -3824 -216) (-280 -3824 -256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380988" + "plane" "(-256 -3808 -256) (-256 -3824 -256) (-256 -3824 -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" "380989" + "plane" "(-256 -3808 -216) (-280 -3808 -216) (-280 -3808 -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" "380990" + "plane" "(-256 -3824 -256) (-280 -3824 -256) (-280 -3824 -216)" + "material" "METAL/HR_METAL/HR_METAL_WALL_002" + "uaxis" "[1 0 0 -1888] 0.125" + "vaxis" "[0 0 -1 52] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243073" + side + { + "id" "381015" + "plane" "(152 -4080 -56) (152 -3696 -56) (168 -3696 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381016" + "plane" "(152 -3696 -224) (152 -4080 -224) (168 -4080 -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" "381017" + "plane" "(152 -4080 -224) (152 -3696 -224) (152 -3696 -56)" + "material" "CS_APOLLO/WALLS/BLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 -59] 0.125" + "vaxis" "[0 0 -1 -27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381018" + "plane" "(168 -3696 -224) (168 -4080 -224) (168 -4080 -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" "381019" + "plane" "(152 -3696 -224) (168 -3696 -224) (168 -3696 -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" "381020" + "plane" "(168 -4080 -224) (152 -4080 -224) (152 -4080 -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" + } + editor + { + "color" "0 184 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243117" + side + { + "id" "381026" + "plane" "(-336 -4112 -184) (-336 -4112 -216) (-336 -4080 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 -0.707107 0.707107 62] 0.125" + "vaxis" "[0 -0.707107 -0.707107 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381025" + "plane" "(-336 -4080 -184) (-336 -4080 -216) (280 -4080 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[-0.707107 0 0.707107 62] 0.125" + "vaxis" "[-0.707107 0 -0.707107 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381024" + "plane" "(280 -4112 -216) (-336 -4112 -216) (-336 -4112 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0.707107 0 0.707107 62] 0.125" + "vaxis" "[0.707107 0 -0.707107 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381023" + "plane" "(280 -4080 -216) (-336 -4080 -216) (-336 -4112 -216)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381022" + "plane" "(280 -4112 -184) (-336 -4112 -184) (-336 -4080 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381021" + "plane" "(280 -4080 -184) (280 -4080 -216) (280 -4112 -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" + } + editor + { + "color" "0 183 232" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243119" + side + { + "id" "381038" + "plane" "(-336 -4112 -56) (-336 -4112 -184) (-336 -4080 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 -0.707107 0.707107 46] 0.125" + "vaxis" "[0 -0.707107 -0.707107 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381037" + "plane" "(-336 -4080 -56) (-336 -4080 -184) (280 -4080 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[-0.707107 0 0.707107 46] 0.125" + "vaxis" "[-0.707107 0 -0.707107 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381036" + "plane" "(280 -4112 -184) (-336 -4112 -184) (-336 -4112 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0.707107 0 0.707107 62] 0.125" + "vaxis" "[0.707107 0 -0.707107 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381035" + "plane" "(280 -4112 -56) (-336 -4112 -56) (-336 -4080 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381034" + "plane" "(280 -4080 -184) (-336 -4080 -184) (-336 -4112 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381033" + "plane" "(280 -4080 -56) (280 -4080 -184) (280 -4112 -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" + } + editor + { + "color" "0 183 232" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243121" + side + { + "id" "381050" + "plane" "(-336 -4112 -216) (-336 -4112 -224) (-336 -4080 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 216.475] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381049" + "plane" "(-336 -4080 -216) (-336 -4080 -224) (280 -4080 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -167.516] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381048" + "plane" "(280 -4112 -224) (-336 -4112 -224) (-336 -4112 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -167.516] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381047" + "plane" "(280 -4080 -224) (-336 -4080 -224) (-336 -4112 -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" "381046" + "plane" "(280 -4112 -216) (-336 -4112 -216) (-336 -4080 -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" "381045" + "plane" "(280 -4080 -216) (280 -4080 -224) (280 -4112 -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" + } + editor + { + "color" "0 183 232" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7243131" + side + { + "id" "381062" + "plane" "(-336 -4112 -48) (-336 -4112 -56) (-336 -4080 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.387399 0.921911 0 251.555] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381061" + "plane" "(-336 -4080 -48) (-336 -4080 -56) (280 -4080 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.978675 -0.205411 0 150.158] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381060" + "plane" "(-336 -4112 -56) (-336 -4112 -48) (280 -4112 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-0.681289 0.732014 0 -225.297] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381059" + "plane" "(280 -4112 -48) (-336 -4112 -48) (-336 -4080 -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" "381058" + "plane" "(280 -4080 -56) (-336 -4080 -56) (-336 -4112 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381057" + "plane" "(280 -4080 -48) (280 -4080 -56) (280 -4112 -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" + } + editor + { + "color" "0 183 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222537" + side + { + "id" "380586" + "plane" "(1581 -3406 40) (1732 -3406 40) (1732 -3424 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380587" + "plane" "(1581 -3424 16) (1732 -3424 16) (1732 -3406 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380588" + "plane" "(1581 -3406 40) (1581 -3424 40) (1581 -3424 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380589" + "plane" "(1732 -3406 16) (1732 -3424 16) (1732 -3424 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380590" + "plane" "(1732 -3406 40) (1581 -3406 40) (1581 -3406 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380591" + "plane" "(1732 -3424 16) (1581 -3424 16) (1581 -3424 40)" + "material" "TOOLS/TOOLSCLIP" + "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 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222538" + side + { + "id" "380592" + "plane" "(1733 -3388 224) (1780 -3388 224) (1791 -3424 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380593" + "plane" "(1717 -3424 16) (1791 -3424 16) (1780 -3388 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380594" + "plane" "(1733 -3388 16) (1733 -3388 224) (1717 -3424 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380595" + "plane" "(1791 -3424 16) (1791 -3424 224) (1780 -3388 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380596" + "plane" "(1780 -3388 16) (1780 -3388 224) (1733 -3388 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380597" + "plane" "(1717 -3424 16) (1717 -3424 224) (1791 -3424 224)" + "material" "TOOLS/TOOLSCLIP" + "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 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222566" + side + { + "id" "380609" + "plane" "(2429 -3380 57) (2370 -3380 57) (2370 -3266 57)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[1 0 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380608" + "plane" "(2370 -3380 16) (2429 -3380 16) (2429 -3266 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[1 0 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380607" + "plane" "(2429 -3380 16) (2370 -3380 16) (2370 -3380 57)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380606" + "plane" "(2370 -3266 16) (2429 -3266 16) (2429 -3266 57)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380605" + "plane" "(2370 -3380 16) (2370 -3266 16) (2370 -3266 57)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380604" + "plane" "(2429 -3266 16) (2429 -3380 16) (2429 -3380 57)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 244 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7183511" + side + { + "id" "380508" + "plane" "(-1414 -2002 576) (-1392 -2002 576) (-1392 -2440 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380509" + "plane" "(-1414 -2440 -24) (-1392 -2440 -24) (-1392 -2002 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380510" + "plane" "(-1414 -2002 576) (-1414 -2440 576) (-1414 -2440 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380511" + "plane" "(-1392 -2002 -24) (-1392 -2440 -24) (-1392 -2440 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380512" + "plane" "(-1392 -2002 576) (-1414 -2002 576) (-1414 -2002 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380513" + "plane" "(-1392 -2440 -24) (-1414 -2440 -24) (-1414 -2440 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 112 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163586" + side + { + "id" "380363" + "plane" "(-1256 -2912 416) (-1256 -2896 416) (-1152 -2896 416)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380362" + "plane" "(-1256 -2896 208) (-1256 -2912 208) (-1152 -2912 208)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380361" + "plane" "(-1256 -2912 208) (-1256 -2896 208) (-1256 -2896 416)" + "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" "380360" + "plane" "(-1152 -2896 208) (-1152 -2912 208) (-1152 -2912 416)" + "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" "380359" + "plane" "(-1256 -2896 208) (-1152 -2896 208) (-1152 -2896 416)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380358" + "plane" "(-1152 -2912 208) (-1256 -2912 208) (-1256 -2912 416)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "groupid" "7163557" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163650" + side + { + "id" "380369" + "plane" "(-1747 -2896 208) (-1256 -2896 208) (-1256 -2896 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380368" + "plane" "(-1256 -2912 208) (-1747 -2912 208) (-1747 -2912 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380367" + "plane" "(-1256 -2896 208) (-1747 -2896 208) (-1747 -2912 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" "380366" + "plane" "(-1256 -2912 400) (-1747 -2912 400) (-1747 -2896 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" "380365" + "plane" "(-1747 -2912 400) (-1747 -2912 208) (-1747 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380364" + "plane" "(-1256 -2896 400) (-1256 -2896 208) (-1256 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "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 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163651" + side + { + "id" "380375" + "plane" "(-1152 -2896 208) (-768 -2896 208) (-768 -2896 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380374" + "plane" "(-768 -2912 208) (-1152 -2912 208) (-1152 -2912 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380373" + "plane" "(-768 -2896 208) (-1152 -2896 208) (-1152 -2912 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" "380372" + "plane" "(-768 -2912 400) (-1152 -2912 400) (-1152 -2896 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" "380371" + "plane" "(-768 -2896 400) (-768 -2896 208) (-768 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380370" + "plane" "(-1152 -2912 400) (-1152 -2912 208) (-1152 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "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 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163657" + side + { + "id" "380381" + "plane" "(-1747 -2896 400) (-1256 -2896 400) (-1256 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[-1 0 0 -447.997] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380380" + "plane" "(-1256 -2912 400) (-1747 -2912 400) (-1747 -2912 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380379" + "plane" "(-1256 -2912 416) (-1747 -2912 416) (-1747 -2896 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" "380378" + "plane" "(-1256 -2896 400) (-1747 -2896 400) (-1747 -2912 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" "380377" + "plane" "(-1747 -2912 416) (-1747 -2912 400) (-1747 -2896 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380376" + "plane" "(-1256 -2896 416) (-1256 -2896 400) (-1256 -2912 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "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 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163658" + side + { + "id" "380387" + "plane" "(-1152 -2896 400) (-768 -2896 400) (-768 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[-1 0 0 -447.997] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380386" + "plane" "(-768 -2912 400) (-1152 -2912 400) (-1152 -2912 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380385" + "plane" "(-768 -2912 416) (-1152 -2912 416) (-1152 -2896 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" "380384" + "plane" "(-768 -2896 400) (-1152 -2896 400) (-1152 -2912 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" "380383" + "plane" "(-768 -2896 416) (-768 -2896 400) (-768 -2912 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380382" + "plane" "(-1152 -2912 416) (-1152 -2912 400) (-1152 -2896 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "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 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7144115" + side + { + "id" "380136" + "plane" "(-128 -2624 196) (-128 -2666 196) (-144 -2666 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380137" + "plane" "(-128 -2666 -21) (-128 -2624 -21) (-144 -2640 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380138" + "plane" "(-144 -2666 196) (-144 -2666 -21) (-144 -2640 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380139" + "plane" "(-128 -2666 -21) (-128 -2666 196) (-128 -2624 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380140" + "plane" "(-144 -2640 196) (-144 -2640 -21) (-128 -2624 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380141" + "plane" "(-144 -2666 -21) (-144 -2666 196) (-128 -2666 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7144117" + side + { + "id" "380142" + "plane" "(-208 -2544 196) (-128 -2624 196) (-144 -2640 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380143" + "plane" "(-128 -2624 -21) (-208 -2544 -21) (-240 -2544 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380144" + "plane" "(-144 -2640 196) (-144 -2640 -21) (-240 -2544 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380145" + "plane" "(-128 -2624 -21) (-128 -2624 196) (-208 -2544 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380146" + "plane" "(-240 -2544 196) (-240 -2544 -21) (-208 -2544 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380147" + "plane" "(-144 -2640 -21) (-144 -2640 196) (-128 -2624 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 123 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7144119" + side + { + "id" "380148" + "plane" "(-224 -2528 196) (-208 -2544 196) (-400 -2544 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380149" + "plane" "(-208 -2544 -21) (-224 -2528 -21) (-400 -2528 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380150" + "plane" "(-400 -2544 196) (-400 -2544 -21) (-400 -2528 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380151" + "plane" "(-208 -2544 -21) (-208 -2544 196) (-224 -2528 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380152" + "plane" "(-400 -2528 196) (-400 -2528 -21) (-224 -2528 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380153" + "plane" "(-400 -2544 -21) (-400 -2544 196) (-208 -2544 196)" + "material" "TOOLS/TOOLSCLIP" + "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 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7144125" + side + { + "id" "380154" + "plane" "(7706 10690 5150) (8285 10690 5150) (8285 8900 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[7706 8900 5150]" + "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 -1" + "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 -1" + "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 -1" + "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 -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" + "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" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 5" + "row1" "0 0 0 0 0 0 0 0 10" + "row2" "0 0 0 0 0 0 0 0 10" + "row3" "0 0 0 0 0 0 0 0 5" + "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" + } + 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" "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" "380155" + "plane" "(7706 8900 5149) (8285 8900 5149) (8285 10690 5149)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380156" + "plane" "(7706 10690 5150) (7706 8900 5150) (7706 8900 5149)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380157" + "plane" "(8285 10690 5149) (8285 8900 5149) (8285 8900 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380158" + "plane" "(8285 10690 5150) (7706 10690 5150) (7706 10690 5149)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380159" + "plane" "(8285 8900 5149) (7706 8900 5149) (7706 8900 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7124625" + side + { + "id" "380130" + "plane" "(-800 -3632 -224) (-776 -3632 -224) (-776 -3744 -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" "380131" + "plane" "(-800 -3744 -240) (-776 -3744 -240) (-776 -3632 -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" "380132" + "plane" "(-800 -3632 -224) (-800 -3744 -224) (-800 -3744 -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" "380133" + "plane" "(-776 -3632 -240) (-776 -3744 -240) (-776 -3744 -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" "380134" + "plane" "(-776 -3632 -224) (-800 -3632 -224) (-800 -3632 -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" "380135" + "plane" "(-776 -3744 -240) (-800 -3744 -240) (-800 -3744 -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 200 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084657" + side + { + "id" "379644" + "plane" "(-308 -2896 -16) (-368 -2896 -16) (-368 -2912 -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" "379643" + "plane" "(-368 -2896 -16) (-308 -2896 -16) (-308 -2896 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379642" + "plane" "(-308 -2912 -16) (-368 -2912 -16) (-368 -2912 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379641" + "plane" "(-308 -2912 8) (-368 -2912 8) (-368 -2896 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" "379640" + "plane" "(-368 -2912 8) (-368 -2912 -16) (-368 -2896 -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" "379639" + "plane" "(-308 -2896 8) (-308 -2896 -16) (-308 -2912 -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" "0 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084659" + side + { + "id" "379656" + "plane" "(-308 -2912 -40) (480 -2912 -40) (480 -2896 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379655" + "plane" "(480 -2896 -16) (480 -2896 -40) (480 -2912 -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" "379654" + "plane" "(-308 -2896 -16) (-308 -2896 -40) (480 -2896 -40)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379653" + "plane" "(480 -2912 -16) (480 -2912 -40) (-308 -2912 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379652" + "plane" "(-308 -2912 -16) (-308 -2912 -40) (-308 -2896 -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" "379651" + "plane" "(-308 -2896 -16) (480 -2896 -16) (480 -2912 -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" + } + editor + { + "color" "0 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084698" + side + { + "id" "379674" + "plane" "(-720 -2896 144) (-720 -2896 136) (-720 -2873 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" "379673" + "plane" "(-705 -2896 136) (-705 -2896 144) (-705 -2873 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379672" + "plane" "(-705 -2896 144) (-705 -2896 136) (-720 -2896 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379671" + "plane" "(-720 -2896 144) (-720 -2873 144) (-705 -2873 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379670" + "plane" "(-720 -2873 144) (-720 -2873 136) (-705 -2873 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379669" + "plane" "(-720 -2873 136) (-720 -2896 136) (-705 -2896 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" + } + editor + { + "color" "0 170 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084699" + side + { + "id" "379680" + "plane" "(-720 -2873 0) (-720 -2896 0) (-705 -2896 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379679" + "plane" "(-720 -2896 136) (-720 -2896 0) (-720 -2873 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" "379678" + "plane" "(-705 -2873 0) (-705 -2896 0) (-705 -2896 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379677" + "plane" "(-705 -2896 136) (-705 -2896 0) (-720 -2896 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379676" + "plane" "(-720 -2873 136) (-720 -2873 0) (-705 -2873 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379675" + "plane" "(-720 -2896 136) (-720 -2873 136) (-705 -2873 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" + } + editor + { + "color" "0 170 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084722" + side + { + "id" "379698" + "plane" "(-1056 -2536 144) (-1056 -2501 144) (-720 -2501 144)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 -114] 0.25" + "vaxis" "[0 -1 0 -378] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379697" + "plane" "(-1056 -2501 136) (-1056 -2501 144) (-1056 -2536 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379696" + "plane" "(-720 -2536 136) (-720 -2536 144) (-720 -2501 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379695" + "plane" "(-720 -2501 136) (-720 -2501 144) (-1056 -2501 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379694" + "plane" "(-1056 -2536 136) (-1056 -2536 144) (-720 -2536 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379693" + "plane" "(-1056 -2501 136) (-1056 -2536 136) (-720 -2536 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 208 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084757" + side + { + "id" "379752" + "plane" "(-1056 -2896 144) (-1056 -2536 144) (-920 -2536 144)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 -114] 0.25" + "vaxis" "[0 -1 0 -378] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379751" + "plane" "(-1056 -2536 136) (-1056 -2536 144) (-1056 -2896 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379750" + "plane" "(-920 -2896 136) (-920 -2896 144) (-920 -2536 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1488] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379749" + "plane" "(-1056 -2896 136) (-1056 -2896 144) (-920 -2896 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" "379748" + "plane" "(-920 -2536 136) (-920 -2536 144) (-1056 -2536 144)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379747" + "plane" "(-1056 -2536 136) (-1056 -2896 136) (-920 -2896 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 208 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084814" + side + { + "id" "379836" + "plane" "(-1056 -2501 0) (-1056 -2536 0) (-720 -2536 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" "379835" + "plane" "(-1056 -2536 7) (-1056 -2536 0) (-1056 -2501 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379834" + "plane" "(-720 -2501 7) (-720 -2501 0) (-720 -2536 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" "379833" + "plane" "(-1056 -2501 7) (-1056 -2501 0) (-720 -2501 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[-1 0 0 -1416] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379832" + "plane" "(-720 -2536 7) (-720 -2536 0) (-1056 -2536 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -880] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379831" + "plane" "(-1056 -2536 7) (-1056 -2501 7) (-720 -2501 7)" + "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 208 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084824" + side + { + "id" "379848" + "plane" "(-1056 -2536 0) (-1056 -2896 0) (-920 -2896 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" "379847" + "plane" "(-1056 -2896 7) (-1056 -2896 0) (-1056 -2536 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379846" + "plane" "(-920 -2536 7) (-920 -2536 0) (-920 -2896 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1488] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379845" + "plane" "(-920 -2896 7) (-920 -2896 0) (-1056 -2896 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" "379844" + "plane" "(-1056 -2536 7) (-1056 -2536 0) (-920 -2536 0)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379843" + "plane" "(-1056 -2896 7) (-1056 -2536 7) (-920 -2536 7)" + "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 208 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084835" + side + { + "id" "379866" + "plane" "(-1056 -2896 136) (-1056 -2896 7) (-1056 -2886 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379865" + "plane" "(-920 -2886 7) (-920 -2896 7) (-920 -2896 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1488] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379864" + "plane" "(-920 -2896 136) (-920 -2896 7) (-1056 -2896 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379863" + "plane" "(-1056 -2896 136) (-1056 -2886 136) (-920 -2886 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379862" + "plane" "(-1056 -2886 7) (-1056 -2896 7) (-920 -2896 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379861" + "plane" "(-1056 -2886 136) (-1056 -2886 7) (-920 -2886 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "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 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084845" + side + { + "id" "379872" + "plane" "(-1056 -2544 7) (-1056 -2536 7) (-1056 -2536 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379871" + "plane" "(-920 -2536 136) (-920 -2536 7) (-920 -2544 7)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1488] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379870" + "plane" "(-1056 -2536 136) (-1056 -2536 7) (-920 -2536 7)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379869" + "plane" "(-1056 -2544 136) (-1056 -2536 136) (-920 -2536 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379868" + "plane" "(-1056 -2536 7) (-1056 -2544 7) (-920 -2544 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379867" + "plane" "(-920 -2544 136) (-920 -2544 7) (-1056 -2544 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "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 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084846" + side + { + "id" "379878" + "plane" "(-1056 -2886 7) (-1056 -2544 7) (-1056 -2544 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379877" + "plane" "(-920 -2544 7) (-920 -2886 7) (-920 -2886 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 47] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379876" + "plane" "(-1056 -2886 136) (-1056 -2544 136) (-920 -2544 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379875" + "plane" "(-1056 -2544 7) (-1056 -2886 7) (-920 -2886 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379874" + "plane" "(-920 -2886 136) (-920 -2886 7) (-1056 -2886 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379873" + "plane" "(-1056 -2544 136) (-1056 -2544 7) (-920 -2544 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "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 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084850" + side + { + "id" "379884" + "plane" "(-720 -2501 136) (-720 -2501 7) (-720 -2536 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379883" + "plane" "(-912 -2501 7) (-720 -2501 7) (-720 -2501 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379882" + "plane" "(-720 -2536 136) (-720 -2536 7) (-912 -2536 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 47] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379881" + "plane" "(-912 -2501 136) (-720 -2501 136) (-720 -2536 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379880" + "plane" "(-912 -2536 7) (-720 -2536 7) (-720 -2501 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379879" + "plane" "(-912 -2536 136) (-912 -2536 7) (-912 -2501 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 208 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084867" + side + { + "id" "379896" + "plane" "(-920 -2501 7) (-912 -2501 7) (-912 -2501 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379895" + "plane" "(-912 -2536 7) (-920 -2536 7) (-920 -2536 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -880] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379894" + "plane" "(-912 -2536 136) (-920 -2536 136) (-920 -2501 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379893" + "plane" "(-912 -2501 7) (-920 -2501 7) (-920 -2536 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379892" + "plane" "(-912 -2501 136) (-912 -2501 7) (-912 -2536 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379891" + "plane" "(-920 -2536 136) (-920 -2536 7) (-920 -2501 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 208 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084868" + side + { + "id" "379902" + "plane" "(-1056 -2536 136) (-1056 -2536 7) (-1056 -2501 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379901" + "plane" "(-1056 -2501 136) (-1056 -2501 7) (-920 -2501 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379900" + "plane" "(-920 -2536 7) (-1056 -2536 7) (-1056 -2536 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 47] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379899" + "plane" "(-920 -2536 136) (-1056 -2536 136) (-1056 -2501 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379898" + "plane" "(-920 -2501 7) (-1056 -2501 7) (-1056 -2536 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379897" + "plane" "(-920 -2501 136) (-920 -2501 7) (-920 -2536 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 208 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084871" + side + { + "id" "379903" + "plane" "(-721 -2501 208) (-701 -2501 208) (-701 -2895 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379904" + "plane" "(-721 -2895 -24) (-701 -2895 -24) (-701 -2501 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379905" + "plane" "(-721 -2501 208) (-721 -2895 208) (-721 -2895 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379906" + "plane" "(-701 -2501 -24) (-701 -2895 -24) (-701 -2895 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379907" + "plane" "(-701 -2501 208) (-721 -2501 208) (-721 -2501 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379908" + "plane" "(-701 -2895 -24) (-721 -2895 -24) (-721 -2895 208)" + "material" "TOOLS/TOOLSCLIP" + "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 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084872" + side + { + "id" "379909" + "plane" "(-744 -2501 208) (-721 -2501 208) (-721 -2517 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379910" + "plane" "(-744 -2517 -24) (-721 -2517 -24) (-721 -2501 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379911" + "plane" "(-744 -2501 208) (-744 -2517 208) (-744 -2517 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379912" + "plane" "(-721 -2501 -24) (-721 -2517 -24) (-721 -2517 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379913" + "plane" "(-721 -2501 208) (-744 -2501 208) (-744 -2501 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379914" + "plane" "(-721 -2517 -24) (-744 -2517 -24) (-744 -2517 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 227" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084873" + side + { + "id" "379915" + "plane" "(-744 -2501 208) (-744 -2517 208) (-804 -2456 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379916" + "plane" "(-744 -2517 -24) (-744 -2501 -24) (-804 -2440 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379917" + "plane" "(-804 -2456 208) (-804 -2456 -24) (-804 -2440 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379918" + "plane" "(-744 -2517 -24) (-744 -2517 208) (-744 -2501 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379919" + "plane" "(-804 -2440 208) (-804 -2440 -24) (-744 -2501 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379920" + "plane" "(-804 -2456 -24) (-804 -2456 208) (-744 -2517 208)" + "material" "TOOLS/TOOLSCLIP" + "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 101" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084875" + side + { + "id" "379921" + "plane" "(-1056 -2501 208) (-1040 -2501 208) (-1040 -2859 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379922" + "plane" "(-1056 -2859 -24) (-1040 -2859 -24) (-1040 -2501 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379923" + "plane" "(-1056 -2501 208) (-1056 -2859 208) (-1056 -2859 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379924" + "plane" "(-1040 -2501 -24) (-1040 -2859 -24) (-1040 -2859 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379925" + "plane" "(-1040 -2501 208) (-1056 -2501 208) (-1056 -2501 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379926" + "plane" "(-1040 -2859 -24) (-1056 -2859 -24) (-1056 -2859 208)" + "material" "TOOLS/TOOLSCLIP" + "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 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084878" + side + { + "id" "379944" + "plane" "(-1280 -2861 20) (-1280 -2860 20) (-1064 -2860 20)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379943" + "plane" "(-1280 -2860 -24) (-1280 -2861 -24) (-1064 -2861 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379942" + "plane" "(-1280 -2861 -24) (-1280 -2860 -24) (-1280 -2860 20)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379941" + "plane" "(-1064 -2860 -24) (-1064 -2861 -24) (-1064 -2861 20)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379940" + "plane" "(-1280 -2860 -24) (-1064 -2860 -24) (-1064 -2860 20)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379939" + "plane" "(-1064 -2861 -24) (-1280 -2861 -24) (-1280 -2861 20)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084879" + side + { + "id" "379950" + "plane" "(-1280 -2863 23) (-1280 -2860 23) (-1064 -2860 23)" + "material" "METAL/METAL_IBEAM01" + "uaxis" "[0 -1 0 -34] 0.25" + "vaxis" "[-1 0 0 435] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379949" + "plane" "(-1280 -2860 20) (-1280 -2863 20) (-1064 -2863 20)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379948" + "plane" "(-1280 -2863 20) (-1280 -2860 20) (-1280 -2860 23)" + "material" "METAL/METAL_IBEAM01" + "uaxis" "[0 1 0 38] 0.25" + "vaxis" "[0 0 -1 35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379947" + "plane" "(-1064 -2860 20) (-1064 -2863 20) (-1064 -2863 23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379946" + "plane" "(-1280 -2860 20) (-1064 -2860 20) (-1064 -2860 23)" + "material" "METAL/METAL_IBEAM01" + "uaxis" "[0 0 1 49.998] 0.25" + "vaxis" "[-1 0 0 435] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379945" + "plane" "(-1064 -2863 20) (-1280 -2863 20) (-1280 -2863 23)" + "material" "METAL/METAL_IBEAM01" + "uaxis" "[0 0 1 34] 0.25" + "vaxis" "[1 0 0 -293] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 117 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085156" + side + { + "id" "379980" + "plane" "(-128 -2624 -24) (-128 -2576 -24) (-32 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379979" + "plane" "(-128 -2576 -32) (-128 -2624 -32) (-32 -2624 -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" "379978" + "plane" "(-128 -2624 -32) (-128 -2576 -32) (-128 -2576 -24)" + "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" "379977" + "plane" "(-32 -2576 -32) (-32 -2624 -32) (-32 -2624 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379976" + "plane" "(-128 -2576 -32) (-32 -2576 -32) (-32 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379975" + "plane" "(-32 -2624 -32) (-128 -2624 -32) (-128 -2624 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085157" + side + { + "id" "379986" + "plane" "(-32 -2896 -24) (-128 -2896 -24) (-128 -2667 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_DARK" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 -88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379985" + "plane" "(-128 -2667 -32) (-128 -2896 -32) (-32 -2896 -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" "379984" + "plane" "(-128 -2896 -32) (-128 -2667 -32) (-128 -2667 -24)" + "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" "379983" + "plane" "(-32 -2896 -32) (-128 -2896 -32) (-128 -2896 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379982" + "plane" "(-32 -2667 -32) (-32 -2896 -32) (-32 -2896 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379981" + "plane" "(-128 -2667 -32) (-32 -2667 -32) (-32 -2667 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085175" + side + { + "id" "379992" + "plane" "(-128 -2896 -16) (-308 -2896 -16) (-308 -2912 -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" "379991" + "plane" "(-308 -2896 -16) (-128 -2896 -16) (-128 -2896 8)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379990" + "plane" "(-128 -2912 -16) (-308 -2912 -16) (-308 -2912 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379989" + "plane" "(-128 -2912 8) (-308 -2912 8) (-308 -2896 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" "379988" + "plane" "(-308 -2912 8) (-308 -2912 -16) (-308 -2896 -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" "379987" + "plane" "(-128 -2896 8) (-128 -2896 -16) (-128 -2912 -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" "0 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085176" + side + { + "id" "379998" + "plane" "(-80 -2896 -16) (-128 -2896 -16) (-128 -2912 -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" "379997" + "plane" "(-128 -2896 -16) (-80 -2896 -16) (-80 -2896 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379996" + "plane" "(-80 -2912 -16) (-128 -2912 -16) (-128 -2912 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379995" + "plane" "(-80 -2912 8) (-128 -2912 8) (-128 -2896 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" "379994" + "plane" "(-80 -2896 8) (-80 -2896 -16) (-80 -2912 -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" "379993" + "plane" "(-128 -2912 8) (-128 -2912 -16) (-128 -2896 -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" "0 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085241" + side + { + "id" "380004" + "plane" "(-308 -2896 0) (-400 -2896 0) (-400 -2776 0)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380003" + "plane" "(-308 -2776 -32) (-400 -2776 -32) (-400 -2896 -32)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380002" + "plane" "(-308 -2896 -32) (-400 -2896 -32) (-400 -2896 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" "380001" + "plane" "(-400 -2776 -32) (-308 -2776 -32) (-308 -2776 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -43] 0.469" + "vaxis" "[-1 0 0 37] 0.35" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380000" + "plane" "(-400 -2896 -32) (-400 -2776 -32) (-400 -2776 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379999" + "plane" "(-308 -2776 -32) (-308 -2896 -32) (-308 -2896 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 364.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085414" + side + { + "id" "380015" + "plane" "(-400 -2776 0) (-400 -2680 0) (-308 -2776 0)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380014" + "plane" "(-400 -2776 -32) (-308 -2776 -32) (-400 -2680 -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" "380013" + "plane" "(-400 -2680 -32) (-400 -2680 0) (-400 -2776 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" "380012" + "plane" "(-400 -2776 -32) (-400 -2776 0) (-308 -2776 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" "380011" + "plane" "(-308 -2776 -32) (-308 -2776 0) (-400 -2680 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "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 128" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085503" + side + { + "id" "380022" + "plane" "(-128 -2667 196) (-128 -2659 196) (224 -2659 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380023" + "plane" "(-128 -2659 -21) (-128 -2667 -21) (224 -2667 -21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380024" + "plane" "(-128 -2667 -21) (-128 -2659 -21) (-128 -2659 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380025" + "plane" "(224 -2659 -21) (224 -2667 -21) (224 -2667 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380026" + "plane" "(-128 -2659 -21) (224 -2659 -21) (224 -2659 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380027" + "plane" "(224 -2667 -21) (-128 -2667 -21) (-128 -2667 196)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 170 175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085548" + side + { + "id" "380088" + "plane" "(-737 -2600 -32) (-737 -2469 -32) (-705 -2469 -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" "380089" + "plane" "(-737 -2469 -64) (-737 -2600 -64) (-705 -2600 -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" "380090" + "plane" "(-737 -2600 -64) (-737 -2469 -64) (-737 -2469 -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" "380091" + "plane" "(-705 -2469 -64) (-705 -2600 -64) (-705 -2600 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380092" + "plane" "(-737 -2469 -64) (-705 -2469 -64) (-705 -2469 -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" "380093" + "plane" "(-705 -2600 -64) (-737 -2600 -64) (-737 -2600 -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 164 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085551" + side + { + "id" "380094" + "plane" "(-705 -2588 -64) (-705 -2488 -64) (-400 -2488 -64)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380095" + "plane" "(-705 -2488 -80) (-705 -2588 -80) (-400 -2588 -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" "380096" + "plane" "(-705 -2588 -80) (-705 -2488 -80) (-705 -2488 -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" "380097" + "plane" "(-400 -2488 -80) (-400 -2588 -80) (-400 -2588 -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" "380098" + "plane" "(-705 -2488 -80) (-400 -2488 -80) (-400 -2488 -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" "380099" + "plane" "(-400 -2588 -80) (-705 -2588 -80) (-705 -2588 -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 198 215" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085569" + side + { + "id" "380106" + "plane" "(-408 -2588 -48) (-408 -2488 -48) (-400 -2488 -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" "380107" + "plane" "(-408 -2488 -64) (-408 -2588 -64) (-400 -2588 -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" "380108" + "plane" "(-408 -2588 -64) (-408 -2488 -64) (-408 -2488 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380109" + "plane" "(-400 -2488 -64) (-400 -2588 -64) (-400 -2588 -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" "380110" + "plane" "(-408 -2488 -64) (-400 -2488 -64) (-400 -2488 -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" "380111" + "plane" "(-400 -2588 -64) (-408 -2588 -64) (-408 -2588 -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 202 183" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085579" + side + { + "id" "380112" + "plane" "(-408 -2600 -32) (-408 -2528 -32) (-400 -2528 -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" "380113" + "plane" "(-408 -2528 -48) (-408 -2600 -48) (-400 -2600 -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" "380114" + "plane" "(-408 -2600 -48) (-408 -2528 -48) (-408 -2528 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380115" + "plane" "(-400 -2528 -48) (-400 -2600 -48) (-400 -2600 -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" "380116" + "plane" "(-408 -2528 -48) (-400 -2528 -48) (-400 -2528 -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" "380117" + "plane" "(-400 -2600 -48) (-408 -2600 -48) (-408 -2600 -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 130 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7064696" + side + { + "id" "379464" + "plane" "(-705 -2623 0) (-705 -2611 0) (-408 -2611 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379463" + "plane" "(-705 -2576.5 -24) (-705 -2623 -24) (-408 -2623 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379462" + "plane" "(-705 -2623 -24) (-705 -2576.5 -24) (-705 -2611 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379461" + "plane" "(-408 -2576.5 -24) (-408 -2623 -24) (-408 -2623 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379460" + "plane" "(-408 -2623 -24) (-705 -2623 -24) (-705 -2623 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379459" + "plane" "(-408 -2611 0) (-705 -2611 0) (-705 -2576.5 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 141" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7065146" + side + { + "id" "379566" + "plane" "(-144 -2896 144) (-144 -2640 144) (-128 -2624 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" "379565" + "plane" "(-144 -2640 136) (-144 -2640 144) (-144 -2896 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 -1 0 -672.941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379564" + "plane" "(-128 -2896 136) (-128 -2896 144) (-128 -2624 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 -1 0 -1877.94] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379563" + "plane" "(-128 -2624 136) (-128 -2624 144) (-144 -2640 144)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379562" + "plane" "(-144 -2896 136) (-144 -2896 144) (-128 -2896 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379561" + "plane" "(-144 -2640 136) (-144 -2896 136) (-128 -2896 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" + } + editor + { + "color" "0 213 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7065148" + side + { + "id" "379578" + "plane" "(-408 -2544 144) (-408 -2528 144) (-224 -2528 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" "379577" + "plane" "(-408 -2528 136) (-408 -2528 144) (-408 -2544 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379576" + "plane" "(-224 -2528 136) (-224 -2528 144) (-408 -2528 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -1269] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379575" + "plane" "(-208 -2544 136) (-208 -2544 144) (-224 -2528 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0.707107 -0.707107 0 -489.694] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379574" + "plane" "(-408 -2544 136) (-408 -2544 144) (-208 -2544 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379573" + "plane" "(-224 -2528 136) (-408 -2528 136) (-408 -2544 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" + } + editor + { + "color" "0 199 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7065268" + side + { + "id" "379632" + "plane" "(-744 -2896 0) (-744 -2501 0) (-736 -2501 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_DARK" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 -88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379631" + "plane" "(-744 -2501 -32) (-744 -2896 -32) (-736 -2896 -32)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379630" + "plane" "(-744 -2896 -32) (-744 -2501 -32) (-744 -2501 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" "379629" + "plane" "(-744 -2501 -32) (-736 -2501 -32) (-736 -2501 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379628" + "plane" "(-736 -2896 -32) (-744 -2896 -32) (-744 -2896 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" "379627" + "plane" "(-736 -2501 -32) (-736 -2896 -32) (-736 -2896 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 127" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7065269" + side + { + "id" "379638" + "plane" "(-736 -2501 0) (-705 -2501 0) (-705 -2896 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_DARK" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 -88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379637" + "plane" "(-736 -2896 -32) (-705 -2896 -32) (-705 -2501 -32)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379636" + "plane" "(-705 -2501 -32) (-705 -2896 -32) (-705 -2896 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379635" + "plane" "(-736 -2501 -32) (-705 -2501 -32) (-705 -2501 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379634" + "plane" "(-705 -2896 -32) (-736 -2896 -32) (-736 -2896 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" "379633" + "plane" "(-736 -2896 -32) (-736 -2501 -32) (-736 -2501 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 127" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7045133" + side + { + "id" "379373" + "plane" "(-413 -2528 335.951) (-392 -2528 335.951) (-392 -2680 335.951)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379374" + "plane" "(-413 -2680 -64.0491) (-392 -2680 -64.0491) (-392 -2528 -64.0491)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379375" + "plane" "(-413 -2528 335.951) (-413 -2680 335.951) (-413 -2680 -64.0491)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379376" + "plane" "(-392 -2528 -64.0491) (-392 -2680 -64.0491) (-392 -2680 335.951)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379377" + "plane" "(-392 -2528 335.951) (-413 -2528 335.951) (-413 -2528 -64.0491)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379378" + "plane" "(-392 -2680 -64.0491) (-413 -2680 -64.0491) (-413 -2680 335.951)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 165 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7045189" + side + { + "id" "379379" + "plane" "(-408 -2544 0) (-400 -2544 0) (-400 -2624 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[-1 0 0 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379380" + "plane" "(-408 -2624 -32) (-400 -2624 -32) (-400 -2544 -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" "379381" + "plane" "(-408 -2544 0) (-408 -2624 0) (-408 -2624 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379382" + "plane" "(-400 -2544 -32) (-400 -2624 -32) (-400 -2624 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379383" + "plane" "(-400 -2544 0) (-408 -2544 0) (-408 -2544 -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" "379384" + "plane" "(-400 -2624 -32) (-408 -2624 -32) (-408 -2624 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 137 154" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7045321" + side + { + "id" "379401" + "plane" "(-408 -2528 -24) (-408 -2469 -24) (-224 -2469 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379400" + "plane" "(-408 -2469 -48) (-408 -2528 -48) (-224 -2528 -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" "379399" + "plane" "(-408 -2528 -48) (-408 -2469 -48) (-408 -2469 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[0 -1 0 -743.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379398" + "plane" "(-224 -2469 -48) (-224 -2528 -48) (-224 -2528 -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" "379397" + "plane" "(-408 -2469 -48) (-224 -2469 -48) (-224 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379396" + "plane" "(-224 -2528 -48) (-408 -2528 -48) (-408 -2528 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7045336" + side + { + "id" "379402" + "plane" "(-705 -2624 -24) (-705 -2588 -24) (-408 -2588 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379403" + "plane" "(-705 -2588 -64) (-705 -2624 -64) (-408 -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" "379404" + "plane" "(-705 -2624 -64) (-705 -2588 -64) (-705 -2588 -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" "379405" + "plane" "(-408 -2588 -64) (-408 -2624 -64) (-408 -2624 -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" "379406" + "plane" "(-705 -2588 -64) (-408 -2588 -64) (-408 -2588 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379407" + "plane" "(-408 -2624 -64) (-705 -2624 -64) (-705 -2624 -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 137 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7025585" + side + { + "id" "379349" + "plane" "(-32 -2544 -24) (-149 -2544 -24) (-224 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379348" + "plane" "(-224 -2469 -32) (-149 -2544 -32) (-32 -2544 -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" "379347" + "plane" "(-32 -2544 -32) (-149 -2544 -32) (-149 -2544 -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" "379346" + "plane" "(-149 -2544 -32) (-224 -2469 -32) (-224 -2469 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -10.0808] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379345" + "plane" "(-32 -2469 -32) (-32 -2544 -32) (-32 -2544 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379344" + "plane" "(-224 -2469 -32) (-32 -2469 -32) (-32 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7025704" + side + { + "id" "379360" + "plane" "(-128 -2576 -24) (-128 -2624 -24) (-176 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379359" + "plane" "(-128 -2624 -48) (-128 -2576 -48) (-176 -2576 -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" "379358" + "plane" "(-128 -2576 -48) (-128 -2624 -48) (-128 -2624 -24)" + "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" "379357" + "plane" "(-176 -2576 -48) (-128 -2576 -48) (-128 -2576 -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" "379356" + "plane" "(-128 -2624 -48) (-176 -2576 -48) (-176 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7025763" + side + { + "id" "379367" + "plane" "(-308 -2784 -32) (-144 -2784 -32) (-144 -2896 -32)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_DARK" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 -88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379368" + "plane" "(-308 -2896 -64) (-144 -2896 -64) (-144 -2784 -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" "379369" + "plane" "(-308 -2784 -32) (-308 -2896 -32) (-308 -2896 -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" "379370" + "plane" "(-144 -2784 -64) (-144 -2896 -64) (-144 -2896 -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" "379371" + "plane" "(-144 -2784 -32) (-308 -2784 -32) (-308 -2784 -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" "379372" + "plane" "(-144 -2896 -64) (-308 -2896 -64) (-308 -2896 -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 245 218" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7004309" + side + { + "id" "378771" + "plane" "(-289 -4080 -56) (-289 -3792 -56) (-272 -3792 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378772" + "plane" "(-289 -3792 -216) (-289 -4080 -216) (-272 -4080 -216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378773" + "plane" "(-289 -4080 -216) (-289 -3792 -216) (-289 -3792 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378774" + "plane" "(-272 -3792 -216) (-272 -4080 -216) (-272 -4080 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378775" + "plane" "(-289 -3792 -216) (-272 -3792 -216) (-272 -3792 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378776" + "plane" "(-272 -4080 -216) (-289 -4080 -216) (-289 -4080 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 252" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7004501" + side + { + "id" "378926" + "plane" "(-576 -3808 -144) (-576 -3808 -184) (-576 -3744 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 0.707106 0.707106 46.318] 0.125" + "vaxis" "[0 0.707106 -0.707106 14.326] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378925" + "plane" "(-560 -3792 -184) (-560 -3792 -144) (-560 -3744 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378924" + "plane" "(-560 -3792 -144) (-560 -3792 -184) (-576 -3808 -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" "378923" + "plane" "(-576 -3808 -144) (-576 -3744 -144) (-560 -3744 -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" "378922" + "plane" "(-576 -3744 -144) (-576 -3744 -184) (-560 -3744 -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" "378921" + "plane" "(-576 -3744 -184) (-576 -3808 -184) (-560 -3792 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7004502" + side + { + "id" "378932" + "plane" "(-576 -3808 -184) (-576 -3808 -216) (-576 -3744 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 0.707106 0.707106 62] 0.125" + "vaxis" "[0 0.707106 -0.707106 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378931" + "plane" "(-560 -3792 -216) (-560 -3792 -184) (-560 -3744 -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" "378930" + "plane" "(-560 -3792 -184) (-560 -3792 -216) (-576 -3808 -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" "378929" + "plane" "(-576 -3744 -184) (-576 -3744 -216) (-560 -3744 -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" "378928" + "plane" "(-576 -3744 -216) (-576 -3808 -216) (-560 -3792 -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" "378927" + "plane" "(-576 -3808 -184) (-576 -3744 -184) (-560 -3744 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7004811" + side + { + "id" "378944" + "plane" "(-1600 -3736 -224) (-1600 -4984 -224) (-1560 -4984 -224)" + "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" "378943" + "plane" "(-1600 -4984 -224) (-1600 -3736 -224) (-1600 -3736 -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" "378942" + "plane" "(-1560 -3736 -224) (-1560 -4984 -224) (-1560 -4984 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378941" + "plane" "(-1600 -3736 -224) (-1560 -3736 -224) (-1560 -3736 -184)" + "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" "378940" + "plane" "(-1560 -4984 -224) (-1600 -4984 -224) (-1600 -4984 -184)" + "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" "378939" + "plane" "(-1600 -4984 -184) (-1600 -3736 -184) (-1560 -3736 -184)" + "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 253 210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7004936" + side + { + "id" "378976" + "plane" "(-1152 -4984 -224) (-1560 -4984 -224) (-1560 -5024 -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" "378975" + "plane" "(-1560 -5024 -224) (-1560 -4984 -224) (-1560 -4984 -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" "378974" + "plane" "(-1560 -4984 -224) (-1152 -4984 -224) (-1152 -4984 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378973" + "plane" "(-1152 -5024 -224) (-1560 -5024 -224) (-1560 -5024 -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" "378972" + "plane" "(-1152 -4984 -224) (-1152 -5024 -224) (-1152 -5024 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378971" + "plane" "(-1152 -5024 -184) (-1560 -5024 -184) (-1560 -4984 -184)" + "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 213 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7004961" + side + { + "id" "378988" + "plane" "(-816 -5024 -224) (-240 -5024 -224) (-240 -4984 -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" "378987" + "plane" "(-240 -4984 -224) (-240 -5024 -224) (-240 -5024 -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" "378986" + "plane" "(-816 -4984 -224) (-240 -4984 -224) (-240 -4984 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378985" + "plane" "(-240 -5024 -224) (-816 -5024 -224) (-816 -5024 -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" "378984" + "plane" "(-816 -5024 -224) (-816 -4984 -224) (-816 -4984 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378983" + "plane" "(-816 -4984 -184) (-240 -4984 -184) (-240 -5024 -184)" + "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 213 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7004982" + side + { + "id" "379000" + "plane" "(-240 -4400 -224) (-240 -5024 -224) (-208 -5024 -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" "378999" + "plane" "(-240 -5024 -224) (-240 -4400 -224) (-240 -4400 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378998" + "plane" "(-208 -4400 -224) (-208 -5024 -224) (-208 -5024 -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" "378997" + "plane" "(-240 -4400 -224) (-208 -4400 -224) (-208 -4400 -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" "378996" + "plane" "(-208 -5024 -224) (-240 -5024 -224) (-240 -5024 -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" "378995" + "plane" "(-240 -5024 -184) (-240 -4400 -184) (-208 -4400 -184)" + "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 213 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005176" + side + { + "id" "379006" + "plane" "(-240 -5024 -46) (-240 -4400 -46) (-208 -4400 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379005" + "plane" "(-240 -4400 -56) (-240 -4400 -46) (-240 -5024 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379004" + "plane" "(-208 -5024 -56) (-208 -5024 -46) (-208 -4400 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379003" + "plane" "(-208 -4400 -56) (-208 -4400 -46) (-240 -4400 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379002" + "plane" "(-240 -5024 -56) (-240 -5024 -46) (-208 -5024 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379001" + "plane" "(-240 -4400 -56) (-240 -5024 -56) (-208 -5024 -56)" + "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 213 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005177" + side + { + "id" "379012" + "plane" "(-240 -4400 -184) (-240 -4400 -56) (-240 -5024 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379011" + "plane" "(-208 -5024 -184) (-208 -5024 -56) (-208 -4400 -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" "379010" + "plane" "(-208 -4400 -184) (-208 -4400 -56) (-240 -4400 -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" "379009" + "plane" "(-240 -5024 -184) (-240 -5024 -56) (-208 -5024 -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" "379008" + "plane" "(-240 -4400 -184) (-240 -5024 -184) (-208 -5024 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379007" + "plane" "(-240 -5024 -56) (-240 -4400 -56) (-208 -4400 -56)" + "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 213 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005181" + side + { + "id" "379018" + "plane" "(-816 -4984 -46) (-240 -4984 -46) (-240 -5024 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379017" + "plane" "(-240 -5024 -56) (-240 -5024 -46) (-240 -4984 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379016" + "plane" "(-240 -4984 -56) (-240 -4984 -46) (-816 -4984 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379015" + "plane" "(-816 -5024 -56) (-816 -5024 -46) (-240 -5024 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379014" + "plane" "(-816 -4984 -56) (-816 -4984 -46) (-816 -5024 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379013" + "plane" "(-816 -5024 -56) (-240 -5024 -56) (-240 -4984 -56)" + "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 213 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005182" + side + { + "id" "379024" + "plane" "(-240 -5024 -184) (-240 -5024 -56) (-240 -4984 -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" "379023" + "plane" "(-240 -4984 -184) (-240 -4984 -56) (-816 -4984 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379022" + "plane" "(-816 -5024 -184) (-816 -5024 -56) (-240 -5024 -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" "379021" + "plane" "(-816 -4984 -184) (-816 -4984 -56) (-816 -5024 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379020" + "plane" "(-816 -5024 -184) (-240 -5024 -184) (-240 -4984 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379019" + "plane" "(-816 -4984 -56) (-240 -4984 -56) (-240 -5024 -56)" + "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 213 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005202" + side + { + "id" "379030" + "plane" "(-1560 -4984 -184) (-1560 -4984 -56) (-1560 -5024 -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" "379029" + "plane" "(-1152 -4984 -184) (-1152 -4984 -56) (-1560 -4984 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379028" + "plane" "(-1560 -5024 -184) (-1560 -5024 -56) (-1152 -5024 -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" "379027" + "plane" "(-1152 -5024 -184) (-1152 -5024 -56) (-1152 -4984 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379026" + "plane" "(-1152 -4984 -184) (-1560 -4984 -184) (-1560 -5024 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379025" + "plane" "(-1152 -5024 -56) (-1560 -5024 -56) (-1560 -4984 -56)" + "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 213 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005203" + side + { + "id" "379036" + "plane" "(-1152 -5024 -46) (-1560 -5024 -46) (-1560 -4984 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379035" + "plane" "(-1560 -4984 -56) (-1560 -4984 -46) (-1560 -5024 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379034" + "plane" "(-1152 -4984 -56) (-1152 -4984 -46) (-1560 -4984 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379033" + "plane" "(-1560 -5024 -56) (-1560 -5024 -46) (-1152 -5024 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379032" + "plane" "(-1152 -5024 -56) (-1152 -5024 -46) (-1152 -4984 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379031" + "plane" "(-1152 -4984 -56) (-1560 -4984 -56) (-1560 -5024 -56)" + "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 213 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005247" + side + { + "id" "379072" + "plane" "(-1600 -4984 -46) (-1600 -3736 -46) (-1560 -3736 -46)" + "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" "379071" + "plane" "(-1600 -3736 -56) (-1600 -3736 -46) (-1600 -4984 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379070" + "plane" "(-1560 -4984 -56) (-1560 -4984 -46) (-1560 -3736 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379069" + "plane" "(-1560 -3736 -56) (-1560 -3736 -46) (-1600 -3736 -46)" + "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" "379068" + "plane" "(-1600 -4984 -56) (-1600 -4984 -46) (-1560 -4984 -46)" + "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" "379067" + "plane" "(-1600 -3736 -56) (-1600 -4984 -56) (-1560 -4984 -56)" + "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 253 210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005248" + side + { + "id" "379078" + "plane" "(-1600 -3736 -184) (-1600 -3736 -56) (-1600 -4984 -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" "379077" + "plane" "(-1560 -4984 -184) (-1560 -4984 -56) (-1560 -3736 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379076" + "plane" "(-1560 -3736 -184) (-1560 -3736 -56) (-1600 -3736 -56)" + "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" "379075" + "plane" "(-1600 -4984 -184) (-1600 -4984 -56) (-1560 -4984 -56)" + "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" "379074" + "plane" "(-1600 -3736 -184) (-1600 -4984 -184) (-1560 -4984 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379073" + "plane" "(-1600 -4984 -56) (-1600 -3736 -56) (-1560 -3736 -56)" + "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 253 210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005261" + side + { + "id" "379084" + "plane" "(-1224 -3784 -46) (-1560 -3784 -46) (-1560 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379083" + "plane" "(-1560 -3736 -56) (-1560 -3736 -46) (-1560 -3784 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379082" + "plane" "(-1224 -3736 -56) (-1224 -3736 -46) (-1560 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379081" + "plane" "(-1560 -3784 -56) (-1560 -3784 -46) (-1224 -3784 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379080" + "plane" "(-1224 -3784 -56) (-1224 -3784 -46) (-1224 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379079" + "plane" "(-1224 -3736 -56) (-1560 -3736 -56) (-1560 -3784 -56)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005282" + side + { + "id" "379096" + "plane" "(-1098 -3784 -46) (-1224 -3784 -46) (-1224 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379095" + "plane" "(-1098 -3736 -56) (-1098 -3736 -46) (-1224 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379094" + "plane" "(-1224 -3784 -56) (-1224 -3784 -46) (-1098 -3784 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379093" + "plane" "(-1098 -3784 -56) (-1098 -3784 -46) (-1098 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379092" + "plane" "(-1224 -3736 -56) (-1224 -3736 -46) (-1224 -3784 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379091" + "plane" "(-1098 -3736 -56) (-1224 -3736 -56) (-1224 -3784 -56)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005283" + side + { + "id" "379102" + "plane" "(-1098 -3736 -96) (-1224 -3736 -96) (-1224 -3784 -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" "379101" + "plane" "(-1224 -3736 -96) (-1098 -3736 -96) (-1098 -3736 -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" "379100" + "plane" "(-1098 -3784 -96) (-1224 -3784 -96) (-1224 -3784 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379099" + "plane" "(-1098 -3736 -96) (-1098 -3784 -96) (-1098 -3784 -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" "379098" + "plane" "(-1224 -3784 -96) (-1224 -3736 -96) (-1224 -3736 -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" "379097" + "plane" "(-1098 -3784 -56) (-1224 -3784 -56) (-1224 -3736 -56)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005284" + side + { + "id" "379108" + "plane" "(-1032 -3784 -46) (-1098 -3784 -46) (-1098 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379107" + "plane" "(-1032 -3736 -56) (-1032 -3736 -46) (-1098 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379106" + "plane" "(-1098 -3784 -56) (-1098 -3784 -46) (-1032 -3784 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379105" + "plane" "(-1032 -3784 -56) (-1032 -3784 -46) (-1032 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379104" + "plane" "(-1098 -3736 -56) (-1098 -3736 -46) (-1098 -3784 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379103" + "plane" "(-1032 -3736 -56) (-1098 -3736 -56) (-1098 -3784 -56)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005286" + side + { + "id" "379120" + "plane" "(-904 -3784 -46) (-1032 -3784 -46) (-1032 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379119" + "plane" "(-904 -3736 -56) (-904 -3736 -46) (-1032 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379118" + "plane" "(-1032 -3784 -56) (-1032 -3784 -46) (-904 -3784 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379117" + "plane" "(-904 -3784 -56) (-904 -3784 -46) (-904 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379116" + "plane" "(-1032 -3736 -56) (-1032 -3736 -46) (-1032 -3784 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379115" + "plane" "(-904 -3736 -56) (-1032 -3736 -56) (-1032 -3784 -56)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005287" + side + { + "id" "379126" + "plane" "(-904 -3736 -97) (-1032 -3736 -97) (-1032 -3784 -97)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379125" + "plane" "(-1032 -3736 -97) (-904 -3736 -97) (-904 -3736 -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" "379124" + "plane" "(-904 -3784 -97) (-1032 -3784 -97) (-1032 -3784 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379123" + "plane" "(-904 -3736 -97) (-904 -3784 -97) (-904 -3784 -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" "379122" + "plane" "(-1032 -3784 -97) (-1032 -3736 -97) (-1032 -3736 -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" "379121" + "plane" "(-904 -3784 -56) (-1032 -3784 -56) (-1032 -3736 -56)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005301" + side + { + "id" "379132" + "plane" "(-904 -3736 -46) (-816 -3736 -46) (-816 -3784 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379131" + "plane" "(-816 -3784 -56) (-816 -3784 -46) (-816 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379130" + "plane" "(-816 -3736 -56) (-816 -3736 -46) (-904 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379129" + "plane" "(-904 -3784 -56) (-904 -3784 -46) (-816 -3784 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 60] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379128" + "plane" "(-904 -3736 -56) (-904 -3736 -46) (-904 -3784 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379127" + "plane" "(-904 -3784 -56) (-816 -3784 -56) (-816 -3736 -56)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005316" + side + { + "id" "379144" + "plane" "(-1560 -3784 -56) (-1560 -3784 -184) (-1560 -3736 -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" "379143" + "plane" "(-1560 -3736 -56) (-1560 -3736 -184) (-1224 -3736 -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" "379142" + "plane" "(-1224 -3784 -56) (-1224 -3784 -184) (-1560 -3784 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379141" + "plane" "(-1224 -3736 -56) (-1224 -3736 -184) (-1224 -3784 -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" "379140" + "plane" "(-1224 -3784 -56) (-1560 -3784 -56) (-1560 -3736 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379139" + "plane" "(-1224 -3736 -184) (-1560 -3736 -184) (-1560 -3784 -184)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005317" + side + { + "id" "379150" + "plane" "(-1224 -3736 -224) (-1560 -3736 -224) (-1560 -3784 -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" "379149" + "plane" "(-1560 -3784 -184) (-1560 -3784 -224) (-1560 -3736 -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" "379148" + "plane" "(-1560 -3736 -184) (-1560 -3736 -224) (-1224 -3736 -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" "379147" + "plane" "(-1224 -3784 -184) (-1224 -3784 -224) (-1560 -3784 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379146" + "plane" "(-1224 -3736 -184) (-1224 -3736 -224) (-1224 -3784 -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" "379145" + "plane" "(-1224 -3784 -184) (-1560 -3784 -184) (-1560 -3736 -184)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005335" + side + { + "id" "379156" + "plane" "(-1098 -3736 -56) (-1098 -3736 -184) (-1032 -3736 -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" "379155" + "plane" "(-1032 -3784 -56) (-1032 -3784 -184) (-1098 -3784 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379154" + "plane" "(-1032 -3736 -56) (-1032 -3736 -184) (-1032 -3784 -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" "379153" + "plane" "(-1098 -3784 -56) (-1098 -3784 -184) (-1098 -3736 -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" "379152" + "plane" "(-1032 -3784 -56) (-1098 -3784 -56) (-1098 -3736 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379151" + "plane" "(-1032 -3736 -184) (-1098 -3736 -184) (-1098 -3784 -184)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005336" + side + { + "id" "379162" + "plane" "(-1032 -3736 -224) (-1098 -3736 -224) (-1098 -3784 -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" "379161" + "plane" "(-1098 -3736 -184) (-1098 -3736 -224) (-1032 -3736 -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" "379160" + "plane" "(-1032 -3784 -184) (-1032 -3784 -224) (-1098 -3784 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379159" + "plane" "(-1032 -3736 -184) (-1032 -3736 -224) (-1032 -3784 -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" "379158" + "plane" "(-1098 -3784 -184) (-1098 -3784 -224) (-1098 -3736 -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" "379157" + "plane" "(-1032 -3784 -184) (-1098 -3784 -184) (-1098 -3736 -184)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005342" + side + { + "id" "379168" + "plane" "(-816 -3736 -56) (-816 -3736 -184) (-816 -3784 -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" "379167" + "plane" "(-904 -3736 -56) (-904 -3736 -184) (-816 -3736 -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" "379166" + "plane" "(-816 -3784 -56) (-816 -3784 -184) (-904 -3784 -184)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379165" + "plane" "(-904 -3784 -56) (-904 -3784 -184) (-904 -3736 -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" "379164" + "plane" "(-904 -3736 -56) (-816 -3736 -56) (-816 -3784 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379163" + "plane" "(-904 -3784 -184) (-816 -3784 -184) (-816 -3736 -184)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005343" + side + { + "id" "379174" + "plane" "(-904 -3784 -224) (-816 -3784 -224) (-816 -3736 -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" "379173" + "plane" "(-816 -3736 -184) (-816 -3736 -224) (-816 -3784 -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" "379172" + "plane" "(-904 -3736 -184) (-904 -3736 -224) (-816 -3736 -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" "379171" + "plane" "(-816 -3784 -184) (-816 -3784 -224) (-904 -3784 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379170" + "plane" "(-904 -3784 -184) (-904 -3784 -224) (-904 -3736 -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" "379169" + "plane" "(-904 -3736 -184) (-816 -3736 -184) (-816 -3784 -184)" + "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 221 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005679" + side + { + "id" "379186" + "plane" "(-868 -4812 -77) (-868 -4780 -77) (-866 -4780 -77)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379185" + "plane" "(-868 -4780 -165) (-868 -4812 -165) (-866 -4812 -165)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379184" + "plane" "(-868 -4812 -165) (-868 -4780 -165) (-868 -4780 -77)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379183" + "plane" "(-866 -4780 -165) (-866 -4812 -165) (-866 -4812 -77)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379182" + "plane" "(-868 -4780 -165) (-866 -4780 -165) (-866 -4780 -77)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379181" + "plane" "(-866 -4812 -165) (-868 -4812 -165) (-868 -4812 -77)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 209 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005765" + side + { + "id" "379192" + "plane" "(-560 -3792 -46) (-560 -3744 -46) (-472 -3744 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379191" + "plane" "(-560 -3744 -56) (-560 -3744 -46) (-560 -3792 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379190" + "plane" "(-472 -3792 -56) (-472 -3792 -46) (-472 -3744 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379189" + "plane" "(-560 -3792 -56) (-560 -3792 -46) (-472 -3792 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379188" + "plane" "(-472 -3744 -56) (-472 -3744 -46) (-560 -3744 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379187" + "plane" "(-560 -3744 -56) (-560 -3792 -56) (-472 -3792 -56)" + "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 174 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005767" + side + { + "id" "379205" + "plane" "(-488 -3732.27 -32) (-488 -3656 -32) (-472 -3656 -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" "379204" + "plane" "(-488 -3656 -56) (-488 -3656 -32) (-488 -3732.27 -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" "379203" + "plane" "(-472 -3744 -56) (-472 -3744 -32) (-472 -3656 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379202" + "plane" "(-472 -3656 -56) (-472 -3656 -32) (-488 -3656 -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" "379201" + "plane" "(-486.857 -3744 -56) (-486.857 -3744 -32) (-472 -3744 -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" "379200" + "plane" "(-488 -3732.27 -56) (-488 -3732.27 -32) (-486.857 -3744 -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" "379199" + "plane" "(-488 -3656 -56) (-488 -3732.27 -56) (-486.857 -3744 -56)" + "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 174 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005769" + side + { + "id" "379218" + "plane" "(-256 -3696 -48) (-256 -3680 -48) (152 -3680 -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" "379217" + "plane" "(-256 -3680 -56) (-256 -3680 -48) (-256 -3696 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 124] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379216" + "plane" "(152 -3696 -56) (152 -3696 -48) (152 -3680 -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" "379215" + "plane" "(152 -3680 -56) (152 -3680 -48) (-256 -3680 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379214" + "plane" "(-256 -3696 -56) (-256 -3696 -48) (152 -3696 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -35.998] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379213" + "plane" "(-256 -3680 -56) (-256 -3696 -56) (152 -3696 -56)" + "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 251 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6965145" + side + { + "id" "378632" + "plane" "(1416 -4990 0) (1416 -4992 0) (1576 -4992 0)" + "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" "378631" + "plane" "(1416 -4992 40) (1416 -4992 0) (1416 -4990 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" "378630" + "plane" "(1575.56 -4990 0) (1576 -4992 0) (1576 -4992 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.166135 0.986103 0 4.19922] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378629" + "plane" "(1576 -4992 40) (1576 -4992 0) (1416 -4992 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378628" + "plane" "(1416 -4992 40) (1416 -4990 40) (1575.57 -4990 40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -402] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378627" + "plane" "(1416 -4990 40) (1416 -4990 0) (1575.56 -4990 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 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6965146" + side + { + "id" "378638" + "plane" "(1416 -4976 0) (1416 -4990 0) (1575.56 -4990 0)" + "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" "378637" + "plane" "(1416 -4990 0) (1416 -4976 0) (1416 -4976 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" "378636" + "plane" "(1572.52 -4976 0) (1575.56 -4990 0) (1575.56 -4990 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.166135 0.986103 0 4.19922] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378635" + "plane" "(1416 -4990 40) (1416 -4976 40) (1572.52 -4976 40)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 -402] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378634" + "plane" "(1416 -4976 40) (1416 -4976 0) (1572.52 -4976 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" "378633" + "plane" "(1575.56 -4990 40) (1575.56 -4990 0) (1416 -4990 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 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6965164" + side + { + "id" "378650" + "plane" "(1600 -4968 0) (1589 -4928 0) (1576 -4928 0)" + "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" "378649" + "plane" "(1589 -4928 0) (1600 -4968 0) (1600 -4968 40)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.213697 0.9769 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378648" + "plane" "(1576 -4928 40) (1589 -4928 40) (1600 -4968 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 -1 0 -31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378647" + "plane" "(1600 -4968 40) (1600 -4968 0) (1576 -4968 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" "378646" + "plane" "(1576 -4928 0) (1589 -4928 0) (1589 -4928 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" "378645" + "plane" "(1576 -4968 0) (1576 -4928 0) (1576 -4928 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6943942" + side + { + "id" "378566" + "plane" "(-576 -3808 -48) (-560 -3792 -48) (-280 -3792 -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" "378565" + "plane" "(-560 -3792 -48) (-576 -3808 -48) (-576 -3808 -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" "378564" + "plane" "(-560 -3792 -48) (-560 -3792 -56) (-280 -3792 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378563" + "plane" "(-576 -3808 -56) (-576 -3808 -48) (-280 -3808 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378562" + "plane" "(-560 -3792 -56) (-576 -3808 -56) (-280 -3808 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378561" + "plane" "(-280 -3808 -48) (-280 -3792 -48) (-280 -3792 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 226 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6943946" + side + { + "id" "378578" + "plane" "(96 -4112 -32) (-368 -4112 -32) (-368 -3807 -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" "378577" + "plane" "(-368 -3807 -48) (-368 -4112 -48) (96 -4112 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378576" + "plane" "(-368 -4112 -48) (-368 -3807 -48) (-368 -3807 -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" "378575" + "plane" "(96 -4112 -48) (-368 -4112 -48) (-368 -4112 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378574" + "plane" "(96 -3807 -48) (96 -4112 -48) (96 -4112 -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" "378573" + "plane" "(-368 -3807 -48) (96 -3807 -48) (96 -3807 -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 214 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6943947" + side + { + "id" "378584" + "plane" "(-256 -3807 -32) (-256 -3680 -32) (96 -3680 -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" "378583" + "plane" "(96 -3680 -48) (-256 -3680 -48) (-256 -3807 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378582" + "plane" "(-256 -3807 -48) (-256 -3680 -48) (-256 -3680 -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" "378581" + "plane" "(-256 -3680 -48) (96 -3680 -48) (96 -3680 -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" "378580" + "plane" "(96 -3680 -48) (96 -3807 -48) (96 -3807 -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" "378579" + "plane" "(96 -3807 -48) (-256 -3807 -48) (-256 -3807 -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 214 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6943963" + side + { + "id" "378602" + "plane" "(-360 -3632 -480) (-360 -3696 -480) (168 -3696 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378601" + "plane" "(-360 -3696 -256) (-360 -3696 -480) (-360 -3632 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378600" + "plane" "(168 -3632 -256) (168 -3632 -480) (168 -3696 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378599" + "plane" "(-360 -3632 -256) (-360 -3632 -480) (168 -3632 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378598" + "plane" "(168 -3696 -256) (168 -3696 -480) (-360 -3696 -480)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378597" + "plane" "(-360 -3696 -256) (-360 -3632 -256) (168 -3632 -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 251 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6905548" + side + { + "id" "378476" + "plane" "(2512 -2928 16) (2512 -2784 16) (2524 -2772 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378475" + "plane" "(2572 -2724 -16) (2512 -2784 -16) (2512 -2928 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378474" + "plane" "(2512 -2928 -16) (2512 -2784 -16) (2512 -2784 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378473" + "plane" "(2512 -2784 -16) (2572 -2724 -16) (2524 -2772 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378472" + "plane" "(2524 -2928 16) (2524 -2772 16) (2572 -2724 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378471" + "plane" "(2572 -2928 -16) (2512 -2928 -16) (2512 -2928 16)" + "material" "TOOLS/TOOLSCLIP" + "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 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886025" + side + { + "id" "378194" + "plane" "(2469 -2936 367.875) (2469 -2928 367.875) (2560 -2928 367.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378195" + "plane" "(2469 -2928 15.875) (2469 -2936 15.875) (2560 -2936 15.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378196" + "plane" "(2469 -2936 15.875) (2469 -2928 15.875) (2469 -2928 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378197" + "plane" "(2560 -2928 15.875) (2560 -2936 15.875) (2560 -2936 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378198" + "plane" "(2469 -2928 15.875) (2560 -2928 15.875) (2560 -2928 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378199" + "plane" "(2560 -2936 15.875) (2469 -2936 15.875) (2469 -2936 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 138 179" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886027" + side + { + "id" "378200" + "plane" "(2552 -3568 367.875) (2552 -2928 367.875) (2560 -2928 367.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378201" + "plane" "(2552 -2928 15.875) (2552 -3568 15.875) (2560 -3568 15.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378202" + "plane" "(2552 -3568 15.875) (2552 -2928 15.875) (2552 -2928 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378203" + "plane" "(2560 -2928 15.875) (2560 -3568 15.875) (2560 -3568 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378204" + "plane" "(2552 -2928 15.875) (2560 -2928 15.875) (2560 -2928 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378205" + "plane" "(2560 -3568 15.875) (2552 -3568 15.875) (2552 -3568 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 167" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886485" + side + { + "id" "378333" + "plane" "(2415 -3756 367.875) (2415 -3560 367.875) (2430 -3560 367.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378334" + "plane" "(2415 -3560 15.875) (2415 -3756 15.875) (2430 -3756 15.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378335" + "plane" "(2415 -3756 15.875) (2415 -3560 15.875) (2415 -3560 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378336" + "plane" "(2430 -3560 15.875) (2430 -3756 15.875) (2430 -3756 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378337" + "plane" "(2415 -3560 15.875) (2430 -3560 15.875) (2430 -3560 367.877)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378338" + "plane" "(2430 -3756 15.875) (2415 -3756 15.875) (2415 -3756 367.877)" + "material" "TOOLS/TOOLSCLIP" + "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 177" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6867967" + side + { + "id" "378188" + "plane" "(-64 -3907 244) (-64 -4000 244) (-440 -4000 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378189" + "plane" "(-64 -4000 17) (-64 -3907 17) (-440 -3956 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378190" + "plane" "(-440 -4000 244) (-440 -4000 17) (-440 -3956 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378191" + "plane" "(-64 -4000 17) (-64 -4000 244) (-64 -3907 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378192" + "plane" "(-440 -3956 244) (-440 -3956 17) (-64 -3907 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378193" + "plane" "(-440 -4000 17) (-440 -4000 244) (-64 -4000 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 236" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6849714" + side + { + "id" "378145" + "plane" "(-436 -3920 32) (-672 -3920 32) (-672 -3916 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378144" + "plane" "(-672 -3916 16) (-672 -3920 16) (-436 -3920 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" "378143" + "plane" "(-672 -3920 16) (-672 -3916 16) (-672 -3916 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378142" + "plane" "(-436 -3920 16) (-672 -3920 16) (-672 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378141" + "plane" "(-672 -3916 16) (-436 -3916 16) (-436 -3916 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378140" + "plane" "(-436 -3916 16) (-436 -3920 16) (-436 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6849715" + side + { + "id" "378151" + "plane" "(-436 -3920 32) (-436 -3916 32) (-108 -3888 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378150" + "plane" "(-108 -3892 16) (-108 -3888 16) (-436 -3916 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" "378149" + "plane" "(-436 -3920 16) (-436 -3920 32) (-108 -3892 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378148" + "plane" "(-108 -3892 16) (-108 -3892 32) (-108 -3888 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378147" + "plane" "(-108 -3888 16) (-108 -3888 32) (-436 -3916 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378146" + "plane" "(-436 -3916 16) (-436 -3916 32) (-436 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6849723" + side + { + "id" "378163" + "plane" "(-80 -3892 32) (-80 -4064 32) (-108 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378162" + "plane" "(-108 -4064 16) (-80 -4064 16) (-80 -3892 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" "378161" + "plane" "(-80 -3892 16) (-80 -4064 16) (-80 -4064 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" "378160" + "plane" "(-80 -4064 16) (-108 -4064 16) (-108 -4064 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" "378159" + "plane" "(-108 -3892 16) (-80 -3892 16) (-80 -3892 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" "378158" + "plane" "(-108 -4064 16) (-108 -3892 16) (-108 -3892 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6849730" + side + { + "id" "378169" + "plane" "(-436 -4064 32) (-672 -4064 32) (-672 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378168" + "plane" "(-436 -3920 16) (-672 -3920 16) (-672 -4064 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" "378167" + "plane" "(-436 -4064 16) (-672 -4064 16) (-672 -4064 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" "378166" + "plane" "(-672 -4064 16) (-672 -3920 16) (-672 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378165" + "plane" "(-672 -3920 16) (-436 -3920 16) (-436 -3920 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" "378164" + "plane" "(-436 -3920 16) (-436 -4064 16) (-436 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6849731" + side + { + "id" "378175" + "plane" "(-436 -4064 32) (-436 -3920 32) (-108 -3892 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378174" + "plane" "(-436 -3920 16) (-436 -4064 16) (-108 -4064 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" "378173" + "plane" "(-436 -4064 16) (-436 -4064 32) (-108 -4064 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" "378172" + "plane" "(-108 -3892 16) (-108 -3892 32) (-436 -3920 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" "378171" + "plane" "(-108 -4064 16) (-108 -4064 32) (-108 -3892 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378170" + "plane" "(-436 -3920 16) (-436 -3920 32) (-436 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6849951" + side + { + "id" "378176" + "plane" "(-55.9999 -3913 36) (-55.9999 -4000 36) (-428 -4000 36)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-428 -4000 36]" + "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 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" + } + 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 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" + } + 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" "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" "378177" + "plane" "(-55.9999 -4000 31.7703) (-55.9999 -3913 31.7703) (-428 -3958 31.7703)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378178" + "plane" "(-428 -4000 36) (-428 -4000 31.7703) (-428 -3958 31.7703)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378179" + "plane" "(-55.9999 -4000 31.7703) (-55.9999 -4000 36) (-55.9999 -3913 36)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378180" + "plane" "(-428 -3958 36) (-428 -3958 31.7703) (-55.9999 -3913 31.7703)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378181" + "plane" "(-428 -4000 31.7703) (-428 -4000 36) (-55.9999 -4000 36)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6849956" + side + { + "id" "378182" + "plane" "(-428 -3958 36) (-428 -4000 36) (-465 -4000 36)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-465 -4000 36]" + "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 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" + } + 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 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" + } + 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" "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" "378183" + "plane" "(-428 -4000 31.7703) (-428 -3958 31.7703) (-461 -3971 31.7703)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378184" + "plane" "(-465 -4000 36) (-465 -4000 31.7703) (-461 -3971 31.7703)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378185" + "plane" "(-428 -4000 31.7703) (-428 -4000 36) (-428 -3958 36)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378186" + "plane" "(-461 -3971 36) (-461 -3971 31.7703) (-428 -3958 31.7703)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378187" + "plane" "(-465 -4000 31.7703) (-465 -4000 36) (-428 -4000 36)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "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 188" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6829811" + side + { + "id" "377883" + "plane" "(-712 -2976 192) (-712 -2920 192) (-631 -2920 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377882" + "plane" "(-712 -2920 0) (-712 -2976 0) (-631 -2952.58 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377881" + "plane" "(-712 -2976 0) (-712 -2920 0) (-712 -2920 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377880" + "plane" "(-712 -2920 0) (-631 -2920 0) (-631 -2920 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377879" + "plane" "(-631 -2952.58 0) (-712 -2976 0) (-712 -2976 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377878" + "plane" "(-631 -2920 0) (-631 -2952.58 0) (-631 -2952.58 192)" + "material" "TOOLS/TOOLSCLIP" + "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 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6829812" + side + { + "id" "377884" + "plane" "(-376 -2912 192) (-376 -2960 192) (-412 -2949 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377885" + "plane" "(-376 -2960 0) (-376 -2912 0) (-412 -2912 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377886" + "plane" "(-412 -2949 192) (-412 -2949 0) (-412 -2912 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377887" + "plane" "(-376 -2960 0) (-376 -2960 192) (-376 -2912 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377888" + "plane" "(-412 -2912 192) (-412 -2912 0) (-376 -2912 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377889" + "plane" "(-412 -2949 0) (-412 -2949 192) (-376 -2960 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 112 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6829870" + side + { + "id" "377890" + "plane" "(-376 -3168 200) (-680 -3168 200) (-671 -3130 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377891" + "plane" "(-376 -3126 0.124999) (-671 -3130 0.124999) (-680 -3168 0.124999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377892" + "plane" "(-680 -3168 0.124999) (-671 -3130 0.124999) (-671 -3130 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377893" + "plane" "(-376 -3168 200) (-376 -3126 200) (-376 -3126 0.124999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377894" + "plane" "(-671 -3130 0.124999) (-376 -3126 0.124999) (-376 -3126 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377895" + "plane" "(-680 -3168 200) (-376 -3168 200) (-376 -3168 0.124999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 121" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6829879" + side + { + "id" "377906" + "plane" "(-920 -3184 200) (-920 -3168 200) (-837 -3168 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377905" + "plane" "(-920 -3168 -0.499838) (-920 -3184 -0.499838) (-837 -3184 -0.499838)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377904" + "plane" "(-920 -3184 -0.499911) (-920 -3168 -0.499911) (-920 -3168 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377903" + "plane" "(-837 -3168 -0.499921) (-837 -3184 -0.499921) (-837 -3184 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377902" + "plane" "(-837 -3184 -0.499917) (-920 -3184 -0.499917) (-920 -3184 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377901" + "plane" "(-920 -3168 -0.499915) (-837 -3168 -0.499915) (-837 -3168 200)" + "material" "TOOLS/TOOLSCLIP" + "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 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6829884" + side + { + "id" "377912" + "plane" "(-920 -3130 200) (-890 -3130 200) (-872 -3168 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377911" + "plane" "(-920 -3168 -0.499838) (-872 -3168 -0.499838) (-889.998 -3130 -0.499838)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377910" + "plane" "(-920 -3130 -0.499838) (-920 -3130 200) (-920 -3168 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377909" + "plane" "(-872 -3168 -0.499838) (-872 -3168 200) (-890 -3130 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377908" + "plane" "(-920 -3168 -0.499838) (-920 -3168 200) (-872 -3168 200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377907" + "plane" "(-889.998 -3130 -0.499838) (-890 -3130 200) (-920 -3130 200)" + "material" "TOOLS/TOOLSCLIP" + "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 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6830017" + side + { + "id" "377959" + "plane" "(-400 -2896 0) (-705 -2896 0) (-705 -2624 0)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377958" + "plane" "(-400 -2624 -32) (-705 -2624 -32) (-705 -2896 -32)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377957" + "plane" "(-400 -2896 -32) (-705 -2896 -32) (-705 -2896 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" "377956" + "plane" "(-705 -2624 -32) (-400 -2624 -32) (-400 -2624 0)" + "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" "377955" + "plane" "(-705 -2896 -32) (-705 -2624 -32) (-705 -2624 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377954" + "plane" "(-400 -2624 -32) (-400 -2896 -32) (-400 -2896 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6831338" + side + { + "id" "378103" + "plane" "(2176 -3176 16) (2176 -3504 16) (2192 -3504 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0.00439453] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378102" + "plane" "(2176 -3504 128) (2176 -3504 16) (2176 -3176 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" "378101" + "plane" "(2192 -3176 16) (2192 -3504 16) (2192 -3504 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" "378100" + "plane" "(2192 -3504 128) (2192 -3504 16) (2176 -3504 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 144] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378099" + "plane" "(2176 -3504 128) (2176 -3176 128) (2192 -3176 128)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 283.953] 0.422" + "vaxis" "[0 -1 0 -66.0223] 0.359" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378098" + "plane" "(2176 -3176 128) (2176 -3176 16) (2192 -3176 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 127 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6831339" + side + { + "id" "378109" + "plane" "(2176 -3504 136) (2176 -3504 128) (2176 -3176 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" "378108" + "plane" "(2184 -3176 128) (2184 -3504 128) (2184 -3504 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 -465] 0.125" + "vaxis" "[0 0 -1 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378107" + "plane" "(2184 -3504 136) (2184 -3504 128) (2176 -3504 128)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 1 175] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378106" + "plane" "(2176 -3176 128) (2176 -3504 128) (2184 -3504 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0.00439453] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378105" + "plane" "(2176 -3504 136) (2176 -3176 136) (2184 -3176 136)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 144] 0.125" + "vaxis" "[0 -1 0 0.00201416] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378104" + "plane" "(2176 -3176 136) (2176 -3176 128) (2184 -3176 128)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1536] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 183 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6831340" + side + { + "id" "378115" + "plane" "(2192 -3336 136) (2192 -3176 136) (2200 -3176 136)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 144] 0.125" + "vaxis" "[0 -1 0 0.00402832] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378114" + "plane" "(2192 -3176 16) (2192 -3336 16) (2208 -3336 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" "378113" + "plane" "(2192 -3336 16) (2192 -3176 16) (2192 -3176 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 1 175] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378112" + "plane" "(2200 -3176 16) (2208 -3336 16) (2208 -3336 136)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 -240] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378111" + "plane" "(2192 -3176 16) (2200 -3176 16) (2200 -3176 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" "378110" + "plane" "(2208 -3336 16) (2192 -3336 16) (2192 -3336 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" + } + editor + { + "color" "0 223 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6831347" + side + { + "id" "378121" + "plane" "(2192 -3504 136) (2192 -3336 136) (2208 -3336 136)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 144] 0.125" + "vaxis" "[0 -1 0 0.00402832] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378120" + "plane" "(2192 -3336 16) (2192 -3504 16) (2232 -3504 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" "378119" + "plane" "(2192 -3504 16) (2192 -3336 16) (2192 -3336 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 1 175] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378118" + "plane" "(2208 -3336 16) (2232 -3504 16) (2232 -3504 136)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 -240] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378117" + "plane" "(2232 -3504 16) (2192 -3504 16) (2192 -3504 136)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 144] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378116" + "plane" "(2192 -3336 16) (2208 -3336 16) (2208 -3336 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" + } + editor + { + "color" "0 119 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6831348" + side + { + "id" "378127" + "plane" "(2184 -3504 136) (2184 -3496 136) (2192 -3496 136)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 144] 0.125" + "vaxis" "[0 -1 0 448.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378126" + "plane" "(2184 -3496 128) (2184 -3504 128) (2192 -3504 128)" + "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" "378125" + "plane" "(2184 -3504 128) (2184 -3496 128) (2184 -3496 136)" + "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" "378124" + "plane" "(2192 -3496 128) (2192 -3504 128) (2192 -3504 136)" + "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" "378123" + "plane" "(2184 -3496 128) (2192 -3496 128) (2192 -3496 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 1 175] 0.125" + "vaxis" "[-1 0 0 71] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378122" + "plane" "(2192 -3504 128) (2184 -3504 128) (2184 -3504 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 175.008] 0.125" + "vaxis" "[0 0 -1 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811602" + side + { + "id" "377775" + "plane" "(2792 -2357 -16) (2808 -2357 -16) (2808 -2560 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377774" + "plane" "(2792 -2560 -48) (2808 -2560 -48) (2808 -2357 -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" "377773" + "plane" "(2808 -2357 -48) (2808 -2560 -48) (2808 -2560 -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" "377772" + "plane" "(2792 -2357 -48) (2808 -2357 -48) (2808 -2357 -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" "377771" + "plane" "(2808 -2560 -48) (2792 -2560 -48) (2792 -2560 -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" "377770" + "plane" "(2792 -2560 -48) (2792 -2357 -48) (2792 -2357 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811603" + side + { + "id" "377781" + "plane" "(2488 -2357 -16) (2792 -2357 -16) (2792 -2560 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377780" + "plane" "(2488 -2560 -48) (2792 -2560 -48) (2792 -2357 -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" "377779" + "plane" "(2488 -2357 -48) (2792 -2357 -48) (2792 -2357 -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" "377778" + "plane" "(2792 -2560 -48) (2488 -2560 -48) (2488 -2560 -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" "377777" + "plane" "(2488 -2560 -48) (2488 -2357 -48) (2488 -2357 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377776" + "plane" "(2792 -2357 -48) (2792 -2560 -48) (2792 -2560 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811610" + side + { + "id" "377793" + "plane" "(3766 -2194 -48) (2488 -2194 -48) (2488 -2357 -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" "377792" + "plane" "(2488 -2357 -48) (2488 -2194 -48) (2488 -2194 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377791" + "plane" "(3766 -2357 -48) (2488 -2357 -48) (2488 -2357 -39)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377790" + "plane" "(2488 -2194 -48) (3766 -2194 -48) (3766 -2194 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377789" + "plane" "(3766 -2194 -48) (3766 -2357 -48) (3766 -2357 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377788" + "plane" "(3766 -2357 -39) (2488 -2357 -39) (2488 -2194 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811614" + side + { + "id" "377799" + "plane" "(3320 -4070 -16) (3320 -2357 -16) (3766 -2357 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377798" + "plane" "(3320 -2357 -39) (3320 -2357 -16) (3320 -4070 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 1 0 80] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377797" + "plane" "(3766 -2357 -39) (3766 -2357 -16) (3320 -2357 -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" "377796" + "plane" "(3766 -4070 -39) (3766 -4070 -16) (3766 -2357 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377795" + "plane" "(3320 -4070 -39) (3320 -4070 -16) (3766 -4070 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377794" + "plane" "(3766 -2357 -39) (3320 -2357 -39) (3320 -4070 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811615" + side + { + "id" "377805" + "plane" "(3336 -2357 -48) (3320 -2357 -48) (3320 -4070 -48)" + "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" "377804" + "plane" "(3320 -4070 -48) (3320 -2357 -48) (3320 -2357 -39)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 -1 0 647] 0.125" + "vaxis" "[0 0 -1 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377803" + "plane" "(3320 -2357 -48) (3336 -2357 -48) (3336 -2357 -39)" + "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" "377802" + "plane" "(3336 -2357 -48) (3336 -4070 -48) (3336 -4070 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377801" + "plane" "(3336 -4070 -48) (3320 -4070 -48) (3320 -4070 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377800" + "plane" "(3320 -4070 -39) (3320 -2357 -39) (3336 -2357 -39)" + "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 191 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811624" + side + { + "id" "377811" + "plane" "(2792 -4070 -16) (2792 -3776 -16) (3408 -3776 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377810" + "plane" "(2792 -3776 -39) (2792 -3776 -16) (2792 -4070 -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" "377809" + "plane" "(3408 -4070 -39) (3408 -4070 -16) (3408 -3776 -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" "377808" + "plane" "(3408 -3776 -39) (3408 -3776 -16) (2792 -3776 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377807" + "plane" "(2792 -4070 -39) (2792 -4070 -16) (3408 -4070 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377806" + "plane" "(2792 -3776 -39) (2792 -4070 -39) (3408 -4070 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 127 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811625" + side + { + "id" "377817" + "plane" "(2792 -3776 -48) (2792 -4070 -48) (3408 -4070 -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" "377816" + "plane" "(2792 -4070 -48) (2792 -3776 -48) (2792 -3776 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377815" + "plane" "(3408 -3776 -48) (3408 -4070 -48) (3408 -4070 -39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377814" + "plane" "(2792 -3776 -48) (3408 -3776 -48) (3408 -3776 -39)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[-1 0 0 774.996] 0.125" + "vaxis" "[0 0 -1 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377813" + "plane" "(3408 -4070 -48) (2792 -4070 -48) (2792 -4070 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377812" + "plane" "(2792 -4070 -39) (2792 -3776 -39) (3408 -3776 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 127 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811749" + side + { + "id" "377829" + "plane" "(2792 -2357 -16) (2488 -2357 -16) (2488 -2194 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377828" + "plane" "(2488 -2194 -39) (2488 -2194 -16) (2488 -2357 -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" "377827" + "plane" "(2488 -2357 -39) (2488 -2357 -16) (2792 -2357 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377826" + "plane" "(2792 -2194 -16) (2488 -2194 -16) (2488 -2194 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377825" + "plane" "(2792 -2194 -39) (2488 -2194 -39) (2488 -2357 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377824" + "plane" "(2792 -2357 -39) (2792 -2357 -16) (2792 -2194 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811778" + side + { + "id" "377835" + "plane" "(3766 -2357 -16) (2792 -2357 -16) (2792 -2340 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377834" + "plane" "(2792 -2357 -16) (3766 -2357 -16) (3766 -2357 -39)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377833" + "plane" "(3766 -2357 -39) (3766 -2357 -16) (3766 -2340 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377832" + "plane" "(2792 -2340 -39) (2792 -2357 -39) (3766 -2357 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377831" + "plane" "(2792 -2340 -16) (2792 -2357 -16) (2792 -2357 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377830" + "plane" "(2792 -2340 -39) (3766 -2340 -39) (3766 -2340 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6811779" + side + { + "id" "377841" + "plane" "(2792 -2340 -16) (2792 -2194 -16) (3766 -2194 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377840" + "plane" "(2792 -2194 -39) (3766 -2194 -39) (3766 -2194 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377839" + "plane" "(3766 -2340 -16) (3766 -2194 -16) (3766 -2194 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377838" + "plane" "(3766 -2194 -39) (2792 -2194 -39) (2792 -2340 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377837" + "plane" "(2792 -2194 -39) (2792 -2194 -16) (2792 -2340 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377836" + "plane" "(2792 -2340 -16) (3766 -2340 -16) (3766 -2340 -39)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6774853" + side + { + "id" "377635" + "plane" "(-271 -5133 50.0883) (-264 -5131 50.0883) (-260 -5131 50.0883)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377634" + "plane" "(-268 -5185 0.0883503) (-247 -5154 0.0883503) (-246 -5142.5 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377633" + "plane" "(-291 -5140 50.0883) (-284 -5170 50.0883) (-284 -5170 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377632" + "plane" "(-247 -5154 50.0883) (-246 -5142.5 50.0883) (-246 -5142.5 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377631" + "plane" "(-260 -5131 50.0883) (-264 -5131 50.0883) (-264 -5131 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377630" + "plane" "(-284 -5170 50.0883) (-268 -5185 50.0883) (-268 -5185 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377629" + "plane" "(-268 -5185 50.0883) (-247 -5154 50.0883) (-247 -5154 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377628" + "plane" "(-246 -5142.5 50.0883) (-252 -5135 50.0883) (-252 -5135 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377627" + "plane" "(-252 -5135 50.0883) (-260 -5131 50.0883) (-260 -5131 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377626" + "plane" "(-264 -5131 50.0883) (-271 -5133 50.0883) (-271 -5133 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377625" + "plane" "(-271 -5133 50.0883) (-291 -5140 50.0883) (-291 -5140 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "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 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6775130" + side + { + "id" "377751" + "plane" "(2016.74 -4812.63 -6) (1925.02 -4781.05 -6) (1832 -5055 -6)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.325568 -0.945519 0 -7.39355] 0.25" + "vaxis" "[-0.945519 0.325568 0 24.8125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377750" + "plane" "(1925.02 -4781.05 42.5938) (1925.02 -4781.05 -6) (2016.74 -4812.63 -6)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.945519 -0.325568 0 -24.8125] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377749" + "plane" "(1924 -5088 38.4498) (1924 -5088 -6) (1832 -5055 -6)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.945519 -0.325568 0 -24.8125] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377748" + "plane" "(2016.74 -4812.62 38.4469) (2016.74 -4812.63 -6) (1924 -5088 -6)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.325568 -0.945519 0 -7.39355] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377747" + "plane" "(1832 -5055 42.6055) (1832 -5055 -6) (1925.02 -4781.05 -6)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.325568 -0.945519 0 -7.39355] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377746" + "plane" "(1869.62 -5068.5 75) (1832 -5055 42.6018) (1925.02 -4781.05 42.5901)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.325568 -0.945519 0 -7.39355] 0.25" + "vaxis" "[-0.945519 0.325568 0 24.8125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377745" + "plane" "(1976.09 -4798.62 75) (2016.74 -4812.62 38.4492) (1924 -5088 38.4481)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.325568 -0.945519 0 -7.39355] 0.25" + "vaxis" "[-0.945519 0.325568 0 24.8125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377744" + "plane" "(1883.52 -5073.48 75) (1869.62 -5068.49 75) (1962.82 -4794.06 75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756126" + side + { + "id" "377183" + "plane" "(2240 -3792 358) (2240 -3776 358) (2495 -3776 358)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377184" + "plane" "(2240 -3776 208) (2240 -3792 208) (2495 -3792 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377185" + "plane" "(2240 -3792 208) (2240 -3776 208) (2240 -3776 358)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377186" + "plane" "(2495 -3776 208) (2495 -3792 208) (2495 -3792 358)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377187" + "plane" "(2240 -3776 208) (2495 -3776 208) (2495 -3776 358)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377188" + "plane" "(2495 -3792 208) (2240 -3792 208) (2240 -3792 358)" + "material" "TOOLS/TOOLSCLIP" + "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 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756515" + side + { + "id" "377248" + "plane" "(-1454.75 -2438 576) (-1381 -2438 576) (-1288 -2582 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377247" + "plane" "(-1455.79 -2582 -24) (-1288 -2582 -24) (-1381 -2438 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377246" + "plane" "(-1454.75 -2438 -24) (-1454.75 -2438 576) (-1455.79 -2582 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377245" + "plane" "(-1288 -2582 -24) (-1288 -2582 576) (-1381 -2438 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377244" + "plane" "(-1381 -2438 -24) (-1381 -2438 576) (-1454.75 -2438 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377243" + "plane" "(-1455.79 -2582 -24) (-1455.79 -2582 576) (-1288 -2582 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756516" + side + { + "id" "377254" + "plane" "(-1455.79 -2582 576) (-1280 -2582 576) (-1280 -2611 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377253" + "plane" "(-1456 -2611 -24) (-1280 -2611 -24) (-1280 -2582 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377252" + "plane" "(-1455.79 -2582 -24) (-1455.79 -2582 576) (-1456 -2611 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377251" + "plane" "(-1280 -2611 -24) (-1280 -2611 576) (-1280 -2582 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377250" + "plane" "(-1456 -2611 -24) (-1456 -2611 576) (-1280 -2611 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377249" + "plane" "(-1280 -2582 -24) (-1280 -2582 576) (-1455.79 -2582 576)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756552" + side + { + "id" "377296" + "plane" "(2332 -3012 16) (2260 -3012 16) (2260 -2908 16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -819.206] 0.078125" + "vaxis" "[0 1 0 -73.1429] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "377295" + "plane" "(2332 -2908 0) (2260 -2908 0) (2260 -3012 0)" + "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" "377294" + "plane" "(2332 -3012 0) (2260 -3012 0) (2260 -3012 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" "377293" + "plane" "(2260 -2908 0) (2332 -2908 0) (2332 -2908 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" "377292" + "plane" "(2260 -3012 0) (2260 -2908 0) (2260 -2908 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" "377291" + "plane" "(2332 -2908 0) (2332 -3012 0) (2332 -3012 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" "0 185 234" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756553" + side + { + "id" "377302" + "plane" "(2336 -3016 16) (2256 -3016 16) (2260 -3012 16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 -1 0 248.36] 0.078" + "vaxis" "[-1 0 0 -409.453] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "377301" + "plane" "(2332 -3012 0) (2260 -3012 0) (2256 -3016 0)" + "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" "377300" + "plane" "(2336 -3016 0) (2256 -3016 0) (2256 -3016 16)" + "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" "377299" + "plane" "(2260 -3012 0) (2332 -3012 0) (2332 -3012 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" "377298" + "plane" "(2256 -3016 0) (2260 -3012 0) (2260 -3012 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" "377297" + "plane" "(2332 -3012 0) (2336 -3016 0) (2336 -3016 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 111 176" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756554" + side + { + "id" "377308" + "plane" "(2332 -3012 16) (2332 -2908 16) (2336 -2904 16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -819.206] 0.078125" + "vaxis" "[0 1 0 -73.1429] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "377307" + "plane" "(2332 -2908 0) (2332 -3012 0) (2336 -3016 0)" + "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" "377306" + "plane" "(2336 -2904 0) (2336 -3016 0) (2336 -3016 16)" + "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" "377305" + "plane" "(2332 -3012 0) (2332 -2908 0) (2332 -2908 16)" + "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" "377304" + "plane" "(2332 -2908 0) (2336 -2904 0) (2336 -2904 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" "377303" + "plane" "(2336 -3016 0) (2332 -3012 0) (2332 -3012 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 127 100" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756555" + side + { + "id" "377314" + "plane" "(2256 -3016 16) (2256 -2904 16) (2260 -2908.15 16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -819.206] 0.078125" + "vaxis" "[0 1 0 -73.1429] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "377313" + "plane" "(2256 -2904 0) (2256 -3016 0) (2260 -3012 0)" + "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" "377312" + "plane" "(2256 -3016 0) (2256 -2904 0) (2256 -2904 16)" + "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" "377311" + "plane" "(2260 -2908.14 0) (2260 -3012 0) (2260 -3012 16)" + "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" "377310" + "plane" "(2256 -2904 0) (2260 -2908.15 0) (2260 -2908.15 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" "377309" + "plane" "(2260 -3012 0) (2256 -3016 0) (2256 -3016 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 235 132" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756556" + side + { + "id" "377320" + "plane" "(2332 -2908 16) (2260 -2908 16) (2256 -2904 16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 -668.36] 0.078" + "vaxis" "[1 0 0 701.453] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "377319" + "plane" "(2336 -2904 0) (2256 -2904 0) (2260 -2908 0)" + "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" "377318" + "plane" "(2256 -2904 0) (2336 -2904 0) (2336 -2904 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" "377317" + "plane" "(2332 -2908 0) (2260 -2908 0) (2260 -2908 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" "377316" + "plane" "(2260 -2908 0) (2256 -2904 0) (2256 -2904 16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -480] 0.25" + "vaxis" "[0 0 -1 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377315" + "plane" "(2336 -2904 0) (2332 -2908 0) (2332 -2908 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 205 230" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756640" + side + { + "id" "377332" + "plane" "(2256 -2879 16) (2462 -2879 16) (2462 -2904 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377331" + "plane" "(2462 -2904 -40) (2462 -2879 -40) (2256 -2879 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377330" + "plane" "(2462 -2879 -40) (2462 -2904 -40) (2462 -2904 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" "377329" + "plane" "(2256 -2879 -40) (2462 -2879 -40) (2462 -2879 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" "377328" + "plane" "(2256 -2904 -40) (2256 -2879 -40) (2256 -2879 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" "377327" + "plane" "(2462 -2904 -40) (2256 -2904 -40) (2256 -2904 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756657" + side + { + "id" "377338" + "plane" "(2462 -3016 16) (2462 -3056 16) (2256 -3056 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377337" + "plane" "(2256 -3016 -40) (2256 -3056 -40) (2462 -3056 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377336" + "plane" "(2462 -3016 -40) (2462 -3056 -40) (2462 -3056 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" "377335" + "plane" "(2462 -3056 -40) (2256 -3056 -40) (2256 -3056 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" "377334" + "plane" "(2256 -3056 -40) (2256 -3016 -40) (2256 -3016 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" "377333" + "plane" "(2256 -3016 -40) (2462 -3016 -40) (2462 -3016 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756658" + side + { + "id" "377344" + "plane" "(2462 -2904 16) (2462 -3016 16) (2336 -3016 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377343" + "plane" "(2336 -2904 -40) (2336 -3016 -40) (2462 -3016 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377342" + "plane" "(2462 -2904 -40) (2462 -3016 -40) (2462 -3016 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" "377341" + "plane" "(2336 -3016 -40) (2336 -2904 -40) (2336 -2904 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" "377340" + "plane" "(2336 -2904 -40) (2462 -2904 -40) (2462 -2904 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377339" + "plane" "(2462 -3016 -40) (2336 -3016 -40) (2336 -3016 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756690" + side + { + "id" "377345" + "plane" "(2792 -2944 -16) (2800 -2944 -16) (2800 -3768 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377346" + "plane" "(2792 -3768 -48) (2800 -3768 -48) (2800 -2944 -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" "377347" + "plane" "(2792 -2944 -16) (2792 -3768 -16) (2792 -3768 -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" "377348" + "plane" "(2800 -2944 -48) (2800 -3768 -48) (2800 -3768 -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" "377349" + "plane" "(2800 -2944 -16) (2792 -2944 -16) (2792 -2944 -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" "377350" + "plane" "(2800 -3768 -48) (2792 -3768 -48) (2792 -3768 -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 253 134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756697" + side + { + "id" "377351" + "plane" "(2632 -2944 -16) (2792 -2944 -16) (2792 -3624 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377352" + "plane" "(2632 -3624 -48) (2792 -3624 -48) (2792 -2944 -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" "377353" + "plane" "(2632 -2944 -16) (2632 -3624 -16) (2632 -3624 -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" "377354" + "plane" "(2792 -2944 -48) (2792 -3624 -48) (2792 -3624 -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" "377355" + "plane" "(2792 -2944 -16) (2632 -2944 -16) (2632 -2944 -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" "377356" + "plane" "(2792 -3624 -48) (2632 -3624 -48) (2632 -3624 -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 107 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756807" + side + { + "id" "377482" + "plane" "(2800 -2936 -16) (2792 -2936 -16) (2792 -2728 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377481" + "plane" "(2792 -2936 -32) (2800 -2936 -32) (2800 -2728 -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" "377480" + "plane" "(2800 -2936 -32) (2792 -2936 -32) (2792 -2936 -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" "377479" + "plane" "(2800 -2728 -32) (2800 -2936 -32) (2800 -2936 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377478" + "plane" "(2792 -2728 -32) (2800 -2728 -32) (2800 -2728 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377477" + "plane" "(2792 -2936 -32) (2792 -2728 -32) (2792 -2728 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "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 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756808" + side + { + "id" "377488" + "plane" "(2792 -2936 -16) (2568 -2936 -16) (2568 -2728 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377487" + "plane" "(2568 -2728 -32) (2568 -2936 -32) (2792 -2936 -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" "377486" + "plane" "(2792 -2936 -32) (2568 -2936 -32) (2568 -2936 -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" "377485" + "plane" "(2568 -2936 -32) (2568 -2728 -32) (2568 -2728 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377484" + "plane" "(2568 -2728 -32) (2792 -2728 -32) (2792 -2728 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377483" + "plane" "(2792 -2728 -32) (2792 -2936 -32) (2792 -2936 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "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 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756815" + side + { + "id" "377494" + "plane" "(2792 -2568 -16) (2800 -2568 -16) (2800 -2728 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377493" + "plane" "(2792 -2728 -32) (2800 -2728 -32) (2800 -2568 -32)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377492" + "plane" "(2800 -2568 -32) (2800 -2728 -32) (2800 -2728 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377491" + "plane" "(2792 -2568 -32) (2800 -2568 -32) (2800 -2568 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377490" + "plane" "(2800 -2728 -32) (2792 -2728 -32) (2792 -2728 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377489" + "plane" "(2792 -2728 -32) (2792 -2568 -32) (2792 -2568 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 166 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756816" + side + { + "id" "377500" + "plane" "(2478 -2728 -16) (2478 -2568 -16) (2792 -2568 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377499" + "plane" "(2478 -2568 -32) (2478 -2728 -32) (2792 -2728 -32)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377498" + "plane" "(2478 -2728 -32) (2478 -2568 -32) (2478 -2568 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377497" + "plane" "(2478 -2568 -32) (2792 -2568 -32) (2792 -2568 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377496" + "plane" "(2792 -2728 -32) (2478 -2728 -32) (2478 -2728 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377495" + "plane" "(2792 -2568 -32) (2792 -2728 -32) (2792 -2728 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 166 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756902" + side + { + "id" "377554" + "plane" "(2808 -3776 -16) (2424 -3776 -16) (2432 -3768 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377553" + "plane" "(2424 -3776 -48) (2808 -3776 -48) (2808 -3768 -48)" + "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" "377552" + "plane" "(2808 -3776 -48) (2424 -3776 -48) (2424 -3776 -16)" + "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" "377551" + "plane" "(2424 -3776 -48) (2432 -3768 -48) (2432 -3768 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -373] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377550" + "plane" "(2432 -3768 -48) (2808 -3768 -48) (2808 -3768 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377549" + "plane" "(2808 -3768 -48) (2808 -3776 -48) (2808 -3776 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 131 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6756913" + side + { + "id" "377578" + "plane" "(2800 -2560 -48) (2800 -3768 -48) (2808 -3768 -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" "377577" + "plane" "(2800 -3768 -16) (2800 -3768 -48) (2800 -2560 -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" "377576" + "plane" "(2808 -2560 -16) (2808 -2560 -48) (2808 -3768 -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" "377575" + "plane" "(2800 -2560 -16) (2800 -2560 -48) (2808 -2560 -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" "377574" + "plane" "(2808 -3768 -16) (2808 -3768 -48) (2800 -3768 -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" "377573" + "plane" "(2800 -3768 -16) (2800 -2560 -16) (2808 -2560 -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" + } + editor + { + "color" "0 119 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738228" + side + { + "id" "377098" + "plane" "(-1560 -3792 -480) (-1560 -3784 -480) (-1256 -3784 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377097" + "plane" "(-1256 -3784 -504) (-1560 -3784 -504) (-1560 -3792 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377096" + "plane" "(-1560 -3792 -504) (-1560 -3784 -504) (-1560 -3784 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377095" + "plane" "(-1560 -3784 -504) (-1256 -3784 -504) (-1256 -3784 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377094" + "plane" "(-1256 -3784 -504) (-1256 -3792 -504) (-1256 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377093" + "plane" "(-1256 -3792 -504) (-1560 -3792 -504) (-1560 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738236" + side + { + "id" "377104" + "plane" "(-880 -4384 -480) (-1256 -4384 -480) (-1256 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377103" + "plane" "(-1256 -3792 -504) (-1256 -4384 -504) (-880 -4384 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377102" + "plane" "(-880 -4384 -504) (-1256 -4384 -504) (-1256 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377101" + "plane" "(-880 -3792 -504) (-880 -4384 -504) (-880 -4384 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377100" + "plane" "(-1256 -4384 -504) (-1256 -3792 -504) (-1256 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377099" + "plane" "(-1256 -3792 -504) (-880 -3792 -504) (-880 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738237" + side + { + "id" "377110" + "plane" "(-1256 -3792 -480) (-1256 -3784 -480) (-880 -3784 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377109" + "plane" "(-880 -3784 -504) (-1256 -3784 -504) (-1256 -3792 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377108" + "plane" "(-1256 -3784 -504) (-880 -3784 -504) (-880 -3784 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377107" + "plane" "(-880 -3784 -504) (-880 -3792 -504) (-880 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377106" + "plane" "(-1256 -3792 -504) (-1256 -3784 -504) (-1256 -3784 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377105" + "plane" "(-880 -3792 -504) (-1256 -3792 -504) (-1256 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738243" + side + { + "id" "377116" + "plane" "(-816 -3792 -480) (-816 -4384 -480) (-880 -4384 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377115" + "plane" "(-880 -4384 -504) (-816 -4384 -504) (-816 -3792 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377114" + "plane" "(-816 -3792 -504) (-816 -4384 -504) (-816 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377113" + "plane" "(-816 -4384 -504) (-880 -4384 -504) (-880 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377112" + "plane" "(-880 -4384 -504) (-880 -3792 -504) (-880 -3792 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377111" + "plane" "(-880 -3792 -504) (-816 -3792 -504) (-816 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738244" + side + { + "id" "377122" + "plane" "(-880 -3736 -480) (-816 -3736 -480) (-816 -3792 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377121" + "plane" "(-816 -3792 -504) (-816 -3736 -504) (-880 -3736 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377120" + "plane" "(-816 -3736 -504) (-816 -3792 -504) (-816 -3792 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377119" + "plane" "(-880 -3736 -504) (-816 -3736 -504) (-816 -3736 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377118" + "plane" "(-880 -3792 -504) (-880 -3736 -504) (-880 -3736 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377117" + "plane" "(-816 -3792 -504) (-880 -3792 -504) (-880 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738248" + side + { + "id" "377128" + "plane" "(-1552 -4384 -480) (-1560 -4384 -480) (-1560 -3792 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377127" + "plane" "(-1560 -3792 -504) (-1560 -4384 -504) (-1552 -4384 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377126" + "plane" "(-1560 -4384 -504) (-1560 -3792 -504) (-1560 -3792 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377125" + "plane" "(-1552 -4384 -504) (-1560 -4384 -504) (-1560 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377124" + "plane" "(-1560 -3792 -504) (-1552 -3792 -504) (-1552 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377123" + "plane" "(-1552 -3792 -504) (-1552 -4384 -504) (-1552 -4384 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "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 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738249" + side + { + "id" "377134" + "plane" "(-1256 -4384 -480) (-1552 -4384 -480) (-1552 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377133" + "plane" "(-1552 -4384 -504) (-1256 -4384 -504) (-1256 -3792 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377132" + "plane" "(-1256 -4384 -504) (-1552 -4384 -504) (-1552 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377131" + "plane" "(-1256 -3792 -504) (-1256 -4384 -504) (-1256 -4384 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377130" + "plane" "(-1552 -3792 -504) (-1256 -3792 -504) (-1256 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377129" + "plane" "(-1552 -4384 -504) (-1552 -3792 -504) (-1552 -3792 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "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 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738254" + side + { + "id" "377140" + "plane" "(-1560 -5024 -480) (-1560 -4384 -480) (-1552 -4384 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377139" + "plane" "(-1560 -4384 -504) (-1560 -5024 -504) (-1552 -5024 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377138" + "plane" "(-1560 -5024 -504) (-1560 -4384 -504) (-1560 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377137" + "plane" "(-1560 -4384 -504) (-1552 -4384 -504) (-1552 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377136" + "plane" "(-1552 -5024 -504) (-1560 -5024 -504) (-1560 -5024 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377135" + "plane" "(-1552 -4384 -504) (-1552 -5024 -504) (-1552 -5024 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738267" + side + { + "id" "377164" + "plane" "(-192 -4984 -480) (-192 -5024 -480) (-1552 -5024 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377163" + "plane" "(-1552 -4984 -504) (-1552 -5024 -504) (-192 -5024 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377162" + "plane" "(-192 -4984 -504) (-192 -5024 -504) (-192 -5024 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377161" + "plane" "(-192 -5024 -504) (-1552 -5024 -504) (-1552 -5024 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377160" + "plane" "(-1552 -5024 -504) (-1552 -4984 -504) (-1552 -4984 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377159" + "plane" "(-1552 -4984 -504) (-192 -4984 -504) (-192 -4984 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738268" + side + { + "id" "377170" + "plane" "(-192 -4976 -480) (-192 -4984 -480) (-1552 -4984 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377169" + "plane" "(-1552 -4976 -504) (-1552 -4984 -504) (-192 -4984 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377168" + "plane" "(-192 -4976 -504) (-192 -4984 -504) (-192 -4984 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377167" + "plane" "(-1552 -4984 -504) (-1552 -4976 -504) (-1552 -4976 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377166" + "plane" "(-1552 -4976 -504) (-192 -4976 -504) (-192 -4976 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377165" + "plane" "(-192 -4984 -504) (-1552 -4984 -504) (-1552 -4984 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738312" + side + { + "id" "377176" + "plane" "(-253 -4384 -480) (-192 -4384 -480) (-192 -4976 -480)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377175" + "plane" "(-192 -4976 -504) (-192 -4384 -504) (-253 -4384 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377174" + "plane" "(-192 -4384 -504) (-192 -4976 -504) (-192 -4976 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377173" + "plane" "(-253 -4384 -504) (-192 -4384 -504) (-192 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377172" + "plane" "(-192 -4976 -504) (-253 -4976 -504) (-253 -4976 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377171" + "plane" "(-253 -4976 -504) (-253 -4384 -504) (-253 -4384 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6738313" + side + { + "id" "377182" + "plane" "(-1552 -4976 -480) (-1552 -4384 -480) (-253 -4384 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377181" + "plane" "(-253 -4384 -504) (-1552 -4384 -504) (-1552 -4976 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377180" + "plane" "(-1552 -4384 -504) (-253 -4384 -504) (-253 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377179" + "plane" "(-1552 -4976 -504) (-1552 -4384 -504) (-1552 -4384 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377178" + "plane" "(-253 -4976 -504) (-1552 -4976 -504) (-1552 -4976 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377177" + "plane" "(-253 -4384 -504) (-253 -4976 -504) (-253 -4976 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6700610" + side + { + "id" "377050" + "plane" "(465.354 -4290.72 64) (465.354 -4258.72 64) (497.354 -4258.72 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -37.418] 0.25" + "vaxis" "[0 -1 0 37.125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377049" + "plane" "(465.354 -4258.72 0) (465.354 -4290.72 0) (497.354 -4290.72 0)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -37.418] 0.25" + "vaxis" "[0 -1 0 37.125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377048" + "plane" "(465.354 -4290.72 0) (465.354 -4258.72 0) (465.354 -4258.72 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -37.125] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377047" + "plane" "(497.354 -4258.72 0) (497.354 -4290.72 0) (497.354 -4290.72 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -37.125] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377046" + "plane" "(465.354 -4258.72 0) (497.354 -4258.72 0) (497.354 -4258.72 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -37.418] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377045" + "plane" "(497.354 -4290.72 0) (465.354 -4290.72 0) (465.354 -4290.72 64)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 -37.418] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 139" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6701043" + side + { + "id" "377051" + "plane" "(1024 -4352 116) (1040 -4352 116) (1040 -4480 116)" + "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" "377052" + "plane" "(1024 -4480 -16) (1040 -4480 -16) (1040 -4352 -16)" + "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" "377053" + "plane" "(1024 -4352 116) (1024 -4480 116) (1024 -4480 -16)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377054" + "plane" "(1040 -4352 -16) (1040 -4480 -16) (1040 -4480 116)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377055" + "plane" "(1040 -4352 116) (1024 -4352 116) (1024 -4352 -16)" + "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" "377056" + "plane" "(1040 -4480 -16) (1024 -4480 -16) (1024 -4480 116)" + "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 191 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6626328" + side + { + "id" "376985" + "plane" "(-328 -3916 96) (-296 -3916 96) (-296 -3948 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" "376986" + "plane" "(-328 -3948 32) (-296 -3948 32) (-296 -3916 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" "376987" + "plane" "(-328 -3916 96) (-328 -3948 96) (-328 -3948 32)" + "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" "376988" + "plane" "(-296 -3916 32) (-296 -3948 32) (-296 -3948 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" "376989" + "plane" "(-296 -3916 96) (-328 -3916 96) (-328 -3916 32)" + "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" "376990" + "plane" "(-296 -3948 32) (-328 -3948 32) (-328 -3948 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" + } + editor + { + "color" "0 142 139" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6626351" + side + { + "id" "377002" + "plane" "(-552 -3915 96) (-520 -3915 96) (-520 -3947 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377001" + "plane" "(-552 -3947 32) (-520 -3947 32) (-520 -3915 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377000" + "plane" "(-552 -3915 96) (-552 -3947 96) (-552 -3947 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376999" + "plane" "(-520 -3915 32) (-520 -3947 32) (-520 -3947 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376998" + "plane" "(-520 -3915 96) (-552 -3915 96) (-552 -3915 32)" + "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" "376997" + "plane" "(-520 -3947 32) (-552 -3947 32) (-552 -3947 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" + } + editor + { + "color" "0 142 139" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6626359" + side + { + "id" "377014" + "plane" "(-784 -4176 96) (-752 -4176 96) (-752 -4208 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377013" + "plane" "(-784 -4208 32) (-752 -4208 32) (-752 -4176 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377012" + "plane" "(-784 -4176 96) (-784 -4208 96) (-784 -4208 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377011" + "plane" "(-752 -4176 32) (-752 -4208 32) (-752 -4208 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377010" + "plane" "(-752 -4176 96) (-784 -4176 96) (-784 -4176 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377009" + "plane" "(-752 -4208 32) (-784 -4208 32) (-784 -4208 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 139" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6626366" + side + { + "id" "377026" + "plane" "(-784 -4416 96) (-752 -4416 96) (-752 -4448 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377025" + "plane" "(-784 -4448 32) (-752 -4448 32) (-752 -4416 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377024" + "plane" "(-784 -4416 96) (-784 -4448 96) (-784 -4448 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377023" + "plane" "(-752 -4416 32) (-752 -4448 32) (-752 -4448 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377022" + "plane" "(-752 -4416 96) (-784 -4416 96) (-784 -4416 32)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377021" + "plane" "(-752 -4448 32) (-784 -4448 32) (-784 -4448 96)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 139" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6608553" + side + { + "id" "376950" + "plane" "(384 -3776 0) (528 -3776 0) (528 -3792 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" "376951" + "plane" "(384 -3792 -23) (528 -3792 -23) (528 -3776 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376952" + "plane" "(384 -3776 0) (384 -3792 0) (384 -3792 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376953" + "plane" "(528 -3776 -23) (528 -3792 -23) (528 -3792 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" "376954" + "plane" "(528 -3776 0) (384 -3776 0) (384 -3776 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376955" + "plane" "(528 -3792 -23) (384 -3792 -23) (384 -3792 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 152 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6609238" + side + { + "id" "376973" + "plane" "(1661.92 -5344 48) (1680 -5344 48) (1680 -5497 48)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376972" + "plane" "(1567 -5497 0) (1680 -5497 0) (1680 -5344 0)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376971" + "plane" "(1680 -5344 0) (1680 -5497 0) (1680 -5497 48)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376970" + "plane" "(1567 -5344 0) (1680 -5344 0) (1680 -5344 48)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376969" + "plane" "(1680 -5497 0) (1567 -5497 0) (1661.92 -5497 48)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376968" + "plane" "(1567 -5497 0) (1567 -5344 0) (1661.92 -5344 48)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 122 227" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6557614" + side + { + "id" "376944" + "plane" "(366 -4072 -16) (386 -4072 -16) (386 -4395 -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" "376945" + "plane" "(366 -4395 -32) (386 -4395 -32) (386 -4072 -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" "376946" + "plane" "(366 -4072 -16) (366 -4395 -16) (366 -4395 -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" "376947" + "plane" "(386 -4072 -32) (386 -4395 -32) (386 -4395 -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" "376948" + "plane" "(386 -4072 -16) (366 -4072 -16) (366 -4072 -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" "376949" + "plane" "(386 -4395 -32) (366 -4395 -32) (366 -4395 -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 143 164" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6521749" + side + { + "id" "376908" + "plane" "(1424 -4720 192) (1424 -4720 160) (1424 -4680 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" "376907" + "plane" "(1464 -4720 192) (1464 -4720 160) (1424 -4720 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" "376906" + "plane" "(1424 -4680 192) (1424 -4680 160) (1464 -4720 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-0.707107 0.707107 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376905" + "plane" "(1464 -4720 192) (1424 -4720 192) (1424 -4680 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" "376904" + "plane" "(1424 -4680 160) (1424 -4720 160) (1464 -4720 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" + } + editor + { + "color" "0 176 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6521750" + side + { + "id" "376913" + "plane" "(1424 -4680 0) (1424 -4720 0) (1464 -4720 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" "376912" + "plane" "(1424 -4720 160) (1424 -4720 0) (1424 -4680 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" "376911" + "plane" "(1464 -4720 160) (1464 -4720 0) (1424 -4720 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" "376910" + "plane" "(1424 -4680 160) (1424 -4680 0) (1464 -4720 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-0.707107 0.707107 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376909" + "plane" "(1464 -4720 160) (1424 -4720 160) (1424 -4680 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" + } + editor + { + "color" "0 176 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6521767" + side + { + "id" "376919" + "plane" "(1600 -4968 160) (1600 -4968 192) (1589 -4928 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.19087 0.981615 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376918" + "plane" "(1600 -4968 160) (1589 -4928 160) (1567 -4928 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" "376917" + "plane" "(1600 -4968 192) (1576 -4968 192) (1567 -4928 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" "376916" + "plane" "(1600 -4968 160) (1576 -4968 160) (1576 -4968 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" "376915" + "plane" "(1567 -4928 160) (1567 -4928 192) (1576 -4968 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" "376914" + "plane" "(1589 -4928 160) (1589 -4928 192) (1567 -4928 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 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6521768" + side + { + "id" "376925" + "plane" "(1589 -4928 160) (1589 -4928 192) (1547.5 -4752 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.19087 0.981615 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376924" + "plane" "(1547.5 -4752 160) (1528 -4752 160) (1567 -4928 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" "376923" + "plane" "(1547.5 -4752 192) (1589 -4928 192) (1567 -4928 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" "376922" + "plane" "(1547.5 -4752 160) (1547.5 -4752 192) (1528 -4752 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" "376921" + "plane" "(1528 -4752 160) (1528 -4752 192) (1567 -4928 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" "376920" + "plane" "(1589 -4928 160) (1567 -4928 160) (1567 -4928 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 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6521776" + side + { + "id" "376937" + "plane" "(1544 -4736 0) (1408 -4704 0) (1408 -4928 0)" + "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" "376936" + "plane" "(1544 -4736 0) (1589 -4928 0) (1589 -4928 40)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.613855 0.789418 0 -184.025] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376935" + "plane" "(1544 -4736 0) (1544 -4736 40) (1408 -4704 40)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-0.908667 0.417521 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376934" + "plane" "(1408 -4704 40) (1544 -4736 40) (1589 -4928 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 -1 0 -31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376933" + "plane" "(1408 -4704 0) (1408 -4704 40) (1408 -4928 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" "376932" + "plane" "(1589 -4928 0) (1408 -4928 0) (1408 -4928 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 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6521786" + side + { + "id" "376938" + "plane" "(1408 -4968 182) (1408 -4752 182) (1528 -4752 182)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376939" + "plane" "(1408 -4752 160) (1408 -4968 160) (1576 -4968 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" "376940" + "plane" "(1408 -4752 160) (1408 -4752 182) (1408 -4968 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" "376941" + "plane" "(1528 -4752 182) (1528 -4752 160) (1576 -4968 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" "376942" + "plane" "(1528 -4752 160) (1528 -4752 182) (1408 -4752 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" "376943" + "plane" "(1576 -4968 182) (1576 -4968 160) (1408 -4968 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" + } + editor + { + "color" "0 104 113" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504543" + side + { + "id" "376664" + "plane" "(-104 -3768 32) (-104 -3892 32) (-108 -3892 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376663" + "plane" "(-108 -3768 16) (-108 -3892 16) (-104 -3892 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" "376662" + "plane" "(-104 -3768 16) (-104 -3768 32) (-108 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376661" + "plane" "(-104 -3892 16) (-104 -3892 32) (-104 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376660" + "plane" "(-108 -3892 16) (-108 -3892 32) (-104 -3892 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376659" + "plane" "(-108 -3768 16) (-108 -3768 32) (-108 -3892 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504578" + side + { + "id" "376676" + "plane" "(-104 -3768 32) (-108 -3768 32) (-108 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376675" + "plane" "(-104 -3550 16) (-108 -3550 16) (-108 -3768 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" "376674" + "plane" "(-108 -3550 16) (-104 -3550 16) (-104 -3550 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" "376673" + "plane" "(-104 -3768 16) (-108 -3768 16) (-108 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376672" + "plane" "(-104 -3550 16) (-104 -3768 16) (-104 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376671" + "plane" "(-108 -3768 16) (-108 -3550 16) (-108 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504583" + side + { + "id" "376688" + "plane" "(-108 -3768 32) (-436 -3768 32) (-436 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376687" + "plane" "(-108 -3550 16) (-436 -3550 16) (-436 -3768 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" "376686" + "plane" "(-436 -3550 16) (-108 -3550 16) (-108 -3550 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" "376685" + "plane" "(-108 -3768 16) (-436 -3768 16) (-436 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376684" + "plane" "(-108 -3550 16) (-108 -3768 16) (-108 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376683" + "plane" "(-436 -3768 16) (-436 -3550 16) (-436 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504584" + side + { + "id" "376694" + "plane" "(-436 -3768 32) (-440 -3768 32) (-440 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376693" + "plane" "(-436 -3550 16) (-440 -3550 16) (-440 -3768 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" "376692" + "plane" "(-440 -3550 16) (-436 -3550 16) (-436 -3550 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" "376691" + "plane" "(-436 -3768 16) (-440 -3768 16) (-440 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376690" + "plane" "(-440 -3768 16) (-440 -3550 16) (-440 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376689" + "plane" "(-436 -3550 16) (-436 -3768 16) (-436 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504627" + side + { + "id" "376706" + "plane" "(-436 -3916 32) (-436 -3768 32) (-108 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376705" + "plane" "(-436 -3768 16) (-436 -3916 16) (-108 -3888 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" "376704" + "plane" "(-108 -3768 16) (-108 -3768 32) (-436 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376703" + "plane" "(-436 -3916 16) (-436 -3916 32) (-108 -3888 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376702" + "plane" "(-108 -3888 16) (-108 -3888 32) (-108 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376701" + "plane" "(-436 -3768 16) (-436 -3768 32) (-436 -3916 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504668" + side + { + "id" "376712" + "plane" "(-672 -3772 32) (-672 -3768 32) (-436 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376711" + "plane" "(-436 -3768 16) (-672 -3768 16) (-672 -3772 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" "376710" + "plane" "(-672 -3768 16) (-436 -3768 16) (-436 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376709" + "plane" "(-672 -3772 16) (-672 -3768 16) (-672 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376708" + "plane" "(-436 -3768 16) (-436 -3772 16) (-436 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376707" + "plane" "(-436 -3772 16) (-672 -3772 16) (-672 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504669" + side + { + "id" "376718" + "plane" "(-436 -3916 32) (-672 -3916 32) (-672 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376717" + "plane" "(-672 -3772 16) (-672 -3916 16) (-436 -3916 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" "376716" + "plane" "(-672 -3916 16) (-672 -3772 16) (-672 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376715" + "plane" "(-436 -3916 16) (-672 -3916 16) (-672 -3916 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376714" + "plane" "(-436 -3772 16) (-436 -3916 16) (-436 -3916 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376713" + "plane" "(-672 -3772 16) (-436 -3772 16) (-436 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504688" + side + { + "id" "376724" + "plane" "(-712 -3772 32) (-712 -3768 32) (-672 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376723" + "plane" "(-672 -3768 16) (-712 -3768 16) (-712 -3772 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" "376722" + "plane" "(-712 -3768 16) (-672 -3768 16) (-672 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376721" + "plane" "(-672 -3768 16) (-672 -3772 16) (-672 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376720" + "plane" "(-712 -3772 16) (-712 -3768 16) (-712 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376719" + "plane" "(-672 -3772 16) (-712 -3772 16) (-712 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504689" + side + { + "id" "376730" + "plane" "(-712 -3938 32) (-712 -3772 32) (-672 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376729" + "plane" "(-712 -3772 16) (-712 -3938 16) (-672 -3916 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" "376728" + "plane" "(-672 -3772 16) (-672 -3916 16) (-672 -3916 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376727" + "plane" "(-712 -3938 16) (-712 -3772 16) (-712 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376726" + "plane" "(-672 -3916 16) (-712 -3938 16) (-712 -3938 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376725" + "plane" "(-712 -3772 16) (-672 -3772 16) (-672 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504695" + side + { + "id" "376736" + "plane" "(-882 -3772 32) (-882 -3768 32) (-712 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376735" + "plane" "(-712 -3768 16) (-882 -3768 16) (-882 -3772 16)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376734" + "plane" "(-882 -3772 16) (-882 -3768 16) (-882 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376733" + "plane" "(-882 -3768 16) (-712 -3768 16) (-712 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376732" + "plane" "(-712 -3768 16) (-712 -3772 16) (-712 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376731" + "plane" "(-712 -3772 16) (-882 -3772 16) (-882 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504696" + side + { + "id" "376742" + "plane" "(-752 -3980 32) (-752 -3772 32) (-712 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376741" + "plane" "(-752 -3772 16) (-752 -3980 16) (-712 -3938 16)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376740" + "plane" "(-752 -3980 16) (-752 -3772 16) (-752 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376739" + "plane" "(-712 -3772 16) (-712 -3938 16) (-712 -3938 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376738" + "plane" "(-712 -3938 16) (-752 -3980 16) (-752 -3980 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376737" + "plane" "(-752 -3772 16) (-712 -3772 16) (-712 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504701" + side + { + "id" "376754" + "plane" "(-882 -3772 32) (-752 -3772 32) (-752 -3805 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376753" + "plane" "(-882 -3805 16) (-752 -3805 16) (-752 -3772 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" "376752" + "plane" "(-752 -3772 16) (-752 -3805 16) (-752 -3805 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" "376751" + "plane" "(-882 -3772 16) (-752 -3772 16) (-752 -3772 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" "376750" + "plane" "(-752 -3805 16) (-882 -3805 16) (-882 -3805 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" "376749" + "plane" "(-882 -3805 16) (-882 -3772 16) (-882 -3772 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 120" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504713" + side + { + "id" "376784" + "plane" "(-882 -3805 32) (-996.101 -3805 32) (-999.046 -3708 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376783" + "plane" "(-999.043 -3708 16) (-996.101 -3805 16) (-882 -3805 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" "376782" + "plane" "(-882 -3805 16) (-996.101 -3805 16) (-996.101 -3805 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" "376781" + "plane" "(-996.101 -3805 16) (-999.043 -3708 16) (-999.043 -3708 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376780" + "plane" "(-882 -3708 16) (-882 -3805 16) (-882 -3805 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376779" + "plane" "(-999.043 -3708 16) (-882 -3708 16) (-882 -3708 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 120" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504716" + side + { + "id" "376790" + "plane" "(-999.043 -3708 32) (-1004 -3550 32) (-882 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376789" + "plane" "(-882 -3550 16) (-1004 -3550 16) (-999.043 -3708 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" "376788" + "plane" "(-1004 -3550 16) (-882 -3550 16) (-882 -3550 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" "376787" + "plane" "(-999.043 -3708 16) (-1004 -3550 16) (-1004 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376786" + "plane" "(-882 -3708 16) (-999.047 -3708 16) (-999.043 -3708 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376785" + "plane" "(-882 -3550 16) (-882 -3708 16) (-882 -3708 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 120" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504717" + side + { + "id" "376796" + "plane" "(-882 -3550 32) (-878 -3550 32) (-878 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376795" + "plane" "(-878 -3550 16) (-882 -3550 16) (-882 -3768 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" "376794" + "plane" "(-882 -3550 16) (-878 -3550 16) (-878 -3550 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" "376793" + "plane" "(-878 -3550 16) (-878 -3768 16) (-878 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376792" + "plane" "(-878 -3768 16) (-882 -3768 16) (-882 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376791" + "plane" "(-882 -3768 16) (-882 -3550 16) (-882 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 120" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504738" + side + { + "id" "376802" + "plane" "(-996 -3805 32) (-752 -3805 32) (-752 -3980 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376801" + "plane" "(-752 -3980 16) (-752 -3805 16) (-996 -3805 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" "376800" + "plane" "(-752 -3805 16) (-752 -3980 16) (-752 -3980 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" "376799" + "plane" "(-996 -3805 16) (-752 -3805 16) (-752 -3805 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" "376798" + "plane" "(-958.162 -3980 16) (-996 -3805 16) (-996 -3805 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376797" + "plane" "(-752 -3980 16) (-958.162 -3980 16) (-958.16 -3980 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "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" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504794" + side + { + "id" "376814" + "plane" "(-752 -3980 32) (-752 -4064 32) (-756 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376813" + "plane" "(-756 -4064 16) (-752 -4064 16) (-752 -3980 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" "376812" + "plane" "(-752 -3980 16) (-752 -4064 16) (-752 -4064 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" "376811" + "plane" "(-752 -4064 16) (-756 -4064 16) (-756 -4064 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" "376810" + "plane" "(-756 -3980 16) (-752 -3980 16) (-752 -3980 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376809" + "plane" "(-756 -4064 16) (-756 -3980 16) (-756 -3980 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "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" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6504795" + side + { + "id" "376820" + "plane" "(-756 -4064 32) (-940 -4064 32) (-958.163 -3980 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376819" + "plane" "(-958.162 -3980 16) (-940 -4064 16) (-756 -4064 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" "376818" + "plane" "(-756 -4064 16) (-940 -4064 16) (-940 -4064 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" "376817" + "plane" "(-940 -4064 16) (-958.163 -3980 16) (-958.164 -3980 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376816" + "plane" "(-958.164 -3980 16) (-756 -3980 16) (-756 -3980 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376815" + "plane" "(-756 -3980 16) (-756 -4064 16) (-756 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "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" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6486913" + side + { + "id" "376365" + "plane" "(-764 -4088 32) (-760 -4088 32) (-760 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376364" + "plane" "(-760 -4610 16) (-760 -4088 16) (-764 -4088 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" "376363" + "plane" "(-760 -4088 16) (-760 -4610 16) (-760 -4610 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" "376362" + "plane" "(-764 -4088 16) (-760 -4088 16) (-760 -4088 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" "376361" + "plane" "(-760 -4610 16) (-764 -4610 16) (-764 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376360" + "plane" "(-764 -4610 16) (-764 -4088 16) (-764 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487157" + side + { + "id" "376389" + "plane" "(-1047 -4088 32) (-936 -4088 32) (-914 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376388" + "plane" "(-1047 -4088 16) (-1000 -4610 16) (-914 -4610 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" "376387" + "plane" "(-1047 -4088 16) (-1047 -4088 32) (-1000 -4610 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" "376386" + "plane" "(-936 -4088 16) (-936 -4088 32) (-1047 -4088 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" "376385" + "plane" "(-914 -4610 16) (-914 -4610 32) (-936 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376384" + "plane" "(-1000 -4610 16) (-1000 -4610 32) (-914 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487158" + side + { + "id" "376395" + "plane" "(-995 -4648 32) (-998.459 -4610 32) (-914 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376394" + "plane" "(-995 -4648 16) (-912 -4648 16) (-914 -4610 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" "376393" + "plane" "(-998.46 -4610 16) (-998.459 -4610 32) (-995 -4648 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" "376392" + "plane" "(-995 -4648 16) (-995 -4648 32) (-912 -4648 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" "376391" + "plane" "(-912 -4648 16) (-912 -4648 32) (-914 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376390" + "plane" "(-914 -4610 16) (-914 -4610 32) (-998.459 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487241" + side + { + "id" "376401" + "plane" "(-764 -4610 32) (-910 -4610 32) (-932 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376400" + "plane" "(-764 -4088 16) (-932 -4088 16) (-910 -4610 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" "376399" + "plane" "(-932 -4088 16) (-764 -4088 16) (-764 -4088 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" "376398" + "plane" "(-764 -4610 16) (-910 -4610 16) (-910 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376397" + "plane" "(-764 -4088 16) (-764 -4610 16) (-764 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376396" + "plane" "(-910 -4610 16) (-932 -4088 16) (-932 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487242" + side + { + "id" "376407" + "plane" "(-910 -4610 32) (-914 -4610 32) (-936 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376406" + "plane" "(-932 -4088 16) (-936 -4088 16) (-914 -4610 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" "376405" + "plane" "(-936 -4088 16) (-932 -4088 16) (-932 -4088 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" "376404" + "plane" "(-914 -4610 16) (-936 -4088 16) (-936 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376403" + "plane" "(-910 -4610 16) (-914 -4610 16) (-914 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376402" + "plane" "(-932 -4088 16) (-910 -4610 16) (-910 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487288" + side + { + "id" "376413" + "plane" "(-908 -4648 32) (-912 -4648 32) (-914 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376412" + "plane" "(-912 -4648 16) (-908 -4648 16) (-910 -4610 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" "376411" + "plane" "(-908 -4648 16) (-912 -4648 16) (-912 -4648 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" "376410" + "plane" "(-912 -4648 16) (-914 -4610 16) (-914 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376409" + "plane" "(-914 -4610 16) (-910 -4610 16) (-910 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376408" + "plane" "(-910 -4610 16) (-908 -4648 16) (-908 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487337" + side + { + "id" "376425" + "plane" "(-884 -4688 32) (-888 -4688 32) (-912 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376424" + "plane" "(-908 -4648 16) (-912 -4648 16) (-888 -4688 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" "376423" + "plane" "(-912 -4648 16) (-908 -4648 16) (-908 -4648 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" "376422" + "plane" "(-884 -4688 16) (-888 -4688 16) (-888 -4688 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" "376421" + "plane" "(-888 -4688 16) (-912 -4648 16) (-912 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376420" + "plane" "(-908 -4648 16) (-884 -4688 16) (-884 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 215 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487370" + side + { + "id" "376437" + "plane" "(-910 -4610 32) (-764 -4610 32) (-748 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376436" + "plane" "(-908 -4648 16) (-748 -4648 16) (-764 -4610 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" "376435" + "plane" "(-748 -4648 16) (-908 -4648 16) (-908 -4648 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" "376434" + "plane" "(-910 -4610 16) (-764 -4610 16) (-764 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376433" + "plane" "(-908 -4648 16) (-910 -4610 16) (-910 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376432" + "plane" "(-764 -4610 16) (-748 -4648 16) (-748 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487371" + side + { + "id" "376443" + "plane" "(-764 -4610 32) (-760 -4610 32) (-744 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376442" + "plane" "(-748 -4648 16) (-744 -4648 16) (-760 -4610 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" "376441" + "plane" "(-760 -4610 16) (-744 -4648 16) (-744 -4648 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" "376440" + "plane" "(-744 -4648 16) (-748 -4648 16) (-748 -4648 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" "376439" + "plane" "(-764 -4610 16) (-760 -4610 16) (-760 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376438" + "plane" "(-748 -4648 16) (-764 -4610 16) (-764 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 178" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487407" + side + { + "id" "376449" + "plane" "(-716 -4688 32) (-884 -4688 32) (-908 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376448" + "plane" "(-748 -4648 16) (-908 -4648 16) (-884 -4688 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" "376447" + "plane" "(-908 -4648 16) (-748 -4648 16) (-748 -4648 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" "376446" + "plane" "(-716 -4688 16) (-884 -4688 16) (-884 -4688 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" "376445" + "plane" "(-884 -4688 16) (-908 -4648 16) (-908 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376444" + "plane" "(-748 -4648 16) (-716 -4688 16) (-716 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 215 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487408" + side + { + "id" "376455" + "plane" "(-712 -4688 32) (-716 -4688 32) (-748 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376454" + "plane" "(-744 -4648 16) (-748 -4648 16) (-716 -4688 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" "376453" + "plane" "(-748 -4648 16) (-744 -4648 16) (-744 -4648 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" "376452" + "plane" "(-712 -4688 16) (-716 -4688 16) (-716 -4688 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" "376451" + "plane" "(-744 -4648 16) (-712 -4688 16) (-712 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376450" + "plane" "(-716 -4688 16) (-748 -4648 16) (-748 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 215 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487472" + side + { + "id" "376461" + "plane" "(-888 -4688 32) (-884 -4688 32) (-824 -4780 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376460" + "plane" "(-884 -4688 16) (-888 -4688 16) (-824 -4784 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" "376459" + "plane" "(-888 -4688 16) (-884 -4688 16) (-884 -4688 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" "376458" + "plane" "(-824 -4780 16) (-824 -4784 16) (-824 -4784 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376457" + "plane" "(-824 -4784 16) (-888 -4688 16) (-888 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376456" + "plane" "(-884 -4688 16) (-824 -4780 16) (-824 -4780 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487473" + side + { + "id" "376466" + "plane" "(-884 -4688 32) (-824 -4688 32) (-824 -4780 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376465" + "plane" "(-824 -4688 16) (-884 -4688 16) (-824 -4780 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" "376464" + "plane" "(-884 -4688 16) (-824 -4688 16) (-824 -4688 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" "376463" + "plane" "(-824 -4688 16) (-824 -4780 16) (-824 -4780 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376462" + "plane" "(-824 -4780 16) (-884 -4688 16) (-884 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487534" + side + { + "id" "376472" + "plane" "(-824 -4784 32) (-824 -4780 32) (-768 -4860 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376471" + "plane" "(-824 -4780 16) (-824 -4784 16) (-768 -4864 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" "376470" + "plane" "(-768 -4860 16) (-768 -4864 16) (-768 -4864 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376469" + "plane" "(-824 -4784 16) (-824 -4780 16) (-824 -4780 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376468" + "plane" "(-768 -4864 16) (-824 -4784 16) (-824 -4784 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376467" + "plane" "(-824 -4780 16) (-768 -4860 16) (-768 -4860 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487535" + side + { + "id" "376478" + "plane" "(-824 -4780 32) (-824 -4688 32) (-768 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376477" + "plane" "(-768 -4688 16) (-824 -4688 16) (-824 -4780 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" "376476" + "plane" "(-824 -4688 16) (-768 -4688 16) (-768 -4688 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" "376475" + "plane" "(-768 -4688 16) (-768 -4860 16) (-768 -4860 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376474" + "plane" "(-824 -4780 16) (-824 -4688 16) (-824 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376473" + "plane" "(-768 -4860 16) (-824 -4780 16) (-824 -4780 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487539" + side + { + "id" "376484" + "plane" "(-602 -4960 32) (-602 -4956 32) (-576 -4956 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376483" + "plane" "(-602 -4956 16) (-602 -4960 16) (-576 -4960 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" "376482" + "plane" "(-602 -4960 16) (-602 -4956 16) (-602 -4956 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" "376481" + "plane" "(-576 -4956 16) (-576 -4960 16) (-576 -4960 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" "376480" + "plane" "(-576 -4960 16) (-602 -4960 16) (-602 -4960 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376479" + "plane" "(-602 -4956 16) (-576 -4956 16) (-576 -4956 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 240" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487560" + side + { + "id" "376502" + "plane" "(-648 -4944 32) (-648 -4940 32) (-602 -4956 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376501" + "plane" "(-648 -4940 16) (-648 -4944 16) (-602 -4960 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" "376500" + "plane" "(-602 -4956 16) (-602 -4960 16) (-602 -4960 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" "376499" + "plane" "(-648 -4944 16) (-648 -4940 16) (-648 -4940 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376498" + "plane" "(-602 -4960 16) (-648 -4944 16) (-648 -4944 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376497" + "plane" "(-648 -4940 16) (-602 -4956 16) (-602 -4956 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487607" + side + { + "id" "376514" + "plane" "(-712 -4912 32) (-712 -4908 32) (-648 -4940 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376513" + "plane" "(-648 -4944 16) (-648 -4940 16) (-712 -4908 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" "376512" + "plane" "(-648 -4940 16) (-648 -4944 16) (-648 -4944 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376511" + "plane" "(-712 -4912 16) (-712 -4908 16) (-712 -4908 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376510" + "plane" "(-648 -4944 16) (-712 -4912 16) (-712 -4912 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376509" + "plane" "(-712 -4908 16) (-648 -4940 16) (-648 -4940 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487642" + side + { + "id" "376520" + "plane" "(-768 -4864 32) (-768 -4860 32) (-712 -4908 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376519" + "plane" "(-768 -4860 16) (-768 -4864 16) (-712 -4912 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" "376518" + "plane" "(-712 -4908 16) (-712 -4912 16) (-712 -4912 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376517" + "plane" "(-768 -4864 16) (-768 -4860 16) (-768 -4860 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376516" + "plane" "(-712 -4912 16) (-768 -4864 16) (-768 -4864 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376515" + "plane" "(-768 -4860 16) (-712 -4908 16) (-712 -4908 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487661" + side + { + "id" "376533" + "plane" "(-768 -4860 32) (-768 -4688 32) (-716 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376532" + "plane" "(-716 -4688 16) (-768 -4688 16) (-768 -4860 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" "376531" + "plane" "(-768 -4688 16) (-716 -4688 16) (-716 -4688 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" "376530" + "plane" "(-712 -4692 16) (-712 -4908 16) (-712 -4908 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376529" + "plane" "(-768 -4860 16) (-768 -4688 16) (-768 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376528" + "plane" "(-712 -4908 16) (-768 -4860 16) (-768 -4860 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376527" + "plane" "(-716 -4688 16) (-712 -4692 16) (-712 -4692 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487662" + side + { + "id" "376538" + "plane" "(-716 -4688 32) (-712 -4688 32) (-712 -4692 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376537" + "plane" "(-712 -4688 16) (-716 -4688 16) (-712 -4692 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" "376536" + "plane" "(-716 -4688 16) (-712 -4688 16) (-712 -4688 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" "376535" + "plane" "(-712 -4688 16) (-712 -4692 16) (-712 -4692 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376534" + "plane" "(-712 -4692 16) (-716 -4688 16) (-716 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487695" + side + { + "id" "376544" + "plane" "(-712 -4908 32) (-712 -4692 32) (-648 -4716 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376543" + "plane" "(-648 -4940 16) (-648 -4716 16) (-712 -4692 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" "376542" + "plane" "(-648 -4716 16) (-648 -4940 16) (-648 -4940 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376541" + "plane" "(-712 -4908 16) (-712 -4692 16) (-712 -4692 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376540" + "plane" "(-648 -4940 16) (-712 -4908 16) (-712 -4908 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376539" + "plane" "(-712 -4692 16) (-648 -4716 16) (-648 -4716 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487696" + side + { + "id" "376550" + "plane" "(-712 -4692 32) (-712 -4688 32) (-648 -4712 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376549" + "plane" "(-648 -4716 16) (-648 -4712 16) (-712 -4688 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" "376548" + "plane" "(-648 -4712 16) (-648 -4716 16) (-648 -4716 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376547" + "plane" "(-712 -4688 16) (-648 -4712 16) (-648 -4712 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376546" + "plane" "(-712 -4692 16) (-712 -4688 16) (-712 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376545" + "plane" "(-648 -4716 16) (-712 -4692 16) (-712 -4692 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487726" + side + { + "id" "376556" + "plane" "(-648 -4940 32) (-648 -4716 32) (-602 -4724 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376555" + "plane" "(-648 -4716 16) (-648 -4940 16) (-602 -4956 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" "376554" + "plane" "(-602 -4724 16) (-602 -4956 16) (-602 -4956 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" "376553" + "plane" "(-648 -4940 16) (-648 -4716 16) (-648 -4716 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376552" + "plane" "(-602 -4956 16) (-648 -4940 16) (-648 -4940 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376551" + "plane" "(-648 -4716 16) (-602 -4724 16) (-602 -4724 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487727" + side + { + "id" "376562" + "plane" "(-648 -4716 32) (-648 -4712 32) (-602 -4720 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376561" + "plane" "(-648 -4712 16) (-648 -4716 16) (-602 -4724 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" "376560" + "plane" "(-602 -4720 16) (-602 -4724 16) (-602 -4724 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" "376559" + "plane" "(-648 -4716 16) (-648 -4712 16) (-648 -4712 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376558" + "plane" "(-648 -4712 16) (-602 -4720 16) (-602 -4720 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376557" + "plane" "(-602 -4724 16) (-648 -4716 16) (-648 -4716 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487733" + side + { + "id" "376568" + "plane" "(-602 -4956 32) (-602 -4724 32) (-576 -4724 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376567" + "plane" "(-602 -4724 16) (-602 -4956 16) (-576 -4956 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" "376566" + "plane" "(-602 -4956 16) (-602 -4724 16) (-602 -4724 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" "376565" + "plane" "(-576 -4724 16) (-576 -4956 16) (-576 -4956 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" "376564" + "plane" "(-576 -4956 16) (-602 -4956 16) (-602 -4956 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376563" + "plane" "(-602 -4724 16) (-576 -4724 16) (-576 -4724 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 240" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487734" + side + { + "id" "376574" + "plane" "(-602 -4724 32) (-602 -4720 32) (-576 -4720 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376573" + "plane" "(-602 -4720 16) (-602 -4724 16) (-576 -4724 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" "376572" + "plane" "(-602 -4724 16) (-602 -4720 16) (-602 -4720 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" "376571" + "plane" "(-576 -4720 16) (-576 -4724 16) (-576 -4724 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" "376570" + "plane" "(-602 -4720 16) (-576 -4720 16) (-576 -4720 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376569" + "plane" "(-576 -4724 16) (-602 -4724 16) (-602 -4724 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 240" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487749" + side + { + "id" "376586" + "plane" "(-932 -4088 32) (-936 -4088 32) (-944 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376585" + "plane" "(-940 -4064 16) (-944 -4064 16) (-936 -4088 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" "376584" + "plane" "(-944 -4064 16) (-940 -4064 16) (-940 -4064 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" "376583" + "plane" "(-932 -4088 16) (-936 -4088 16) (-936 -4088 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" "376582" + "plane" "(-936 -4088 16) (-944 -4064 16) (-944 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376581" + "plane" "(-940 -4064 16) (-932 -4088 16) (-932 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "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 244" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487802" + side + { + "id" "376598" + "plane" "(-1000 -3805 32) (-996 -3805 32) (-940 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376597" + "plane" "(-944 -4064 16) (-940 -4064 16) (-996 -3805 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" "376596" + "plane" "(-1000 -3805 16) (-996 -3805 16) (-996 -3805 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" "376595" + "plane" "(-940 -4064 16) (-944 -4064 16) (-944 -4064 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" "376594" + "plane" "(-944 -4064 16) (-1000 -3805 16) (-1000 -3805 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376593" + "plane" "(-996 -3805 16) (-940 -4064 16) (-940 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "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" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487847" + side + { + "id" "376610" + "plane" "(-1008 -3550 32) (-1004 -3550 32) (-996 -3805 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376609" + "plane" "(-1000 -3805 16) (-996 -3805 16) (-1004 -3550 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" "376608" + "plane" "(-1008 -3550 16) (-1004 -3550 16) (-1004 -3550 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" "376607" + "plane" "(-996 -3805 16) (-1000 -3805 16) (-1000 -3805 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" "376606" + "plane" "(-1000 -3805 16) (-1008 -3550 16) (-1008 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376605" + "plane" "(-1004 -3550 16) (-996 -3805 16) (-996 -3805 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 120" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487891" + side + { + "id" "376616" + "plane" "(-760 -4088 32) (-764 -4088 32) (-756 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376615" + "plane" "(-752 -4064 16) (-756 -4064 16) (-764 -4088 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" "376614" + "plane" "(-756 -4064 16) (-752 -4064 16) (-752 -4064 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" "376613" + "plane" "(-760 -4088 16) (-764 -4088 16) (-764 -4088 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" "376612" + "plane" "(-752 -4064 16) (-760 -4088 16) (-760 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376611" + "plane" "(-764 -4088 16) (-756 -4064 16) (-756 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "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 244" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487892" + side + { + "id" "376622" + "plane" "(-764 -4088 32) (-932 -4088 32) (-940 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376621" + "plane" "(-756 -4064 16) (-940 -4064 16) (-932 -4088 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" "376620" + "plane" "(-940 -4064 16) (-756 -4064 16) (-756 -4064 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" "376619" + "plane" "(-764 -4088 16) (-932 -4088 16) (-932 -4088 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" "376618" + "plane" "(-932 -4088 16) (-940 -4064 16) (-940 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376617" + "plane" "(-756 -4064 16) (-764 -4088 16) (-764 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "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 244" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487918" + side + { + "id" "376628" + "plane" "(-752 -3984 32) (-752 -3980 32) (-712 -3938 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376627" + "plane" "(-752 -3980 16) (-752 -3984 16) (-712 -3942 16)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376626" + "plane" "(-752 -3984 16) (-752 -3980 16) (-752 -3980 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376625" + "plane" "(-712 -3942 16) (-752 -3984 16) (-752 -3984 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376624" + "plane" "(-712 -3938 16) (-712 -3942 16) (-712 -3942 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376623" + "plane" "(-752 -3980 16) (-712 -3938 16) (-712 -3938 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6487950" + side + { + "id" "376640" + "plane" "(-672 -3916 32) (-672 -3920 32) (-712 -3942 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREY" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376639" + "plane" "(-712 -3938 16) (-712 -3942 16) (-672 -3920 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" "376638" + "plane" "(-672 -3916 16) (-672 -3920 16) (-672 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376637" + "plane" "(-672 -3920 16) (-712 -3942 16) (-712 -3942 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376636" + "plane" "(-712 -3942 16) (-712 -3938 16) (-712 -3938 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376635" + "plane" "(-712 -3938 16) (-672 -3916 16) (-672 -3916 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6469428" + side + { + "id" "375822" + "plane" "(96 -3768 -32) (96 -3680 -32) (168 -3680 -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" "375821" + "plane" "(96 -3680 -48) (96 -3768 -48) (168 -3768 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375820" + "plane" "(96 -3768 -48) (96 -3680 -48) (96 -3680 -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" "375819" + "plane" "(168 -3680 -48) (168 -3768 -48) (168 -3768 -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" "375818" + "plane" "(168 -3768 -48) (96 -3768 -48) (96 -3768 -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" "375817" + "plane" "(96 -3680 -48) (168 -3680 -48) (168 -3680 -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 254 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6400736" + side + { + "id" "375196" + "plane" "(376 -4147 160) (376 -4146 160) (386 -4146 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375195" + "plane" "(376 -4146 8) (376 -4147 8) (386 -4147 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375194" + "plane" "(376 -4147 8) (376 -4146 8) (376 -4146 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -3] 0.25" + "vaxis" "[0 -1 0 17.2813] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375193" + "plane" "(386 -4146 8) (386 -4147 8) (386 -4147 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[0 1 0 -168] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375192" + "plane" "(376 -4146 8) (386 -4146 8) (386 -4146 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[1 0 0 176] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375191" + "plane" "(386 -4147 8) (376 -4147 8) (376 -4147 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[1 0 0 176] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6400739" + side + { + "id" "375208" + "plane" "(376 -4049 160) (376 -4048 160) (386 -4048 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375207" + "plane" "(376 -4048 8) (376 -4049 8) (386 -4049 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375206" + "plane" "(376 -4049 8) (376 -4048 8) (376 -4048 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -3] 0.25" + "vaxis" "[0 -1 0 25.2813] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375205" + "plane" "(386 -4048 8) (386 -4049 8) (386 -4049 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[0 1 0 -184] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375204" + "plane" "(376 -4048 8) (386 -4048 8) (386 -4048 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[1 0 0 176] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375203" + "plane" "(386 -4049 8) (376 -4049 8) (376 -4049 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[1 0 0 176] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6400771" + side + { + "id" "375238" + "plane" "(368 -4048 120) (368 -4048 160) (368 -4147 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" "375237" + "plane" "(376 -4048 160) (376 -4048 120) (376 -4147 120)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 -1 0 -1824] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375236" + "plane" "(368 -4048 160) (368 -4048 120) (376 -4048 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" "375235" + "plane" "(368 -4147 160) (368 -4048 160) (376 -4048 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" "375234" + "plane" "(376 -4147 160) (376 -4147 120) (368 -4147 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" "375233" + "plane" "(368 -4048 120) (368 -4147 120) (376 -4147 120)" + "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 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6400772" + side + { + "id" "375244" + "plane" "(368 -4147 8) (368 -4048 8) (368 -4048 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" "375243" + "plane" "(376 -4048 120) (376 -4048 8) (376 -4147 8)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 -1 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375242" + "plane" "(368 -4048 120) (368 -4048 8) (376 -4048 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" "375241" + "plane" "(368 -4048 8) (368 -4147 8) (376 -4147 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" "375240" + "plane" "(376 -4147 120) (376 -4147 8) (368 -4147 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" "375239" + "plane" "(368 -4147 120) (368 -4048 120) (376 -4048 120)" + "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 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6400784" + side + { + "id" "375268" + "plane" "(376 -4146 9) (376 -4049 9) (386 -4049 9)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 760] 0.125" + "vaxis" "[-1 0 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375267" + "plane" "(376 -4049 8) (376 -4146 8) (386 -4146 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375266" + "plane" "(376 -4146 8) (376 -4049 8) (376 -4049 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375265" + "plane" "(386 -4049 8) (386 -4146 8) (386 -4146 9)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 760] 0.125" + "vaxis" "[0 0 1 104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375264" + "plane" "(376 -4049 8) (386 -4049 8) (386 -4049 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375263" + "plane" "(386 -4146 8) (376 -4146 8) (376 -4146 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6400789" + side + { + "id" "375280" + "plane" "(376 -4146 121) (376 -4049 121) (382 -4049 121)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -264] 0.125" + "vaxis" "[-1 0 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375279" + "plane" "(376 -4049 119) (376 -4146 119) (382 -4146 119)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -264] 0.125" + "vaxis" "[1 0 0 -80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375278" + "plane" "(376 -4146 119) (376 -4049 119) (376 -4049 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375277" + "plane" "(382 -4049 119) (382 -4146 119) (382 -4146 121)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -264] 0.125" + "vaxis" "[0 0 1 -24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375276" + "plane" "(376 -4049 119) (382 -4049 119) (382 -4049 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375275" + "plane" "(382 -4146 119) (376 -4146 119) (376 -4146 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6401347" + side + { + "id" "375291" + "plane" "(331 -4711 160) (331 -4648 160) (401 -4648 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375290" + "plane" "(331 -4648 0) (331 -4711 0) (401 -4648 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375289" + "plane" "(331 -4711 0) (331 -4648 0) (331 -4648 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375288" + "plane" "(331 -4648 0) (401 -4648 0) (401 -4648 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375287" + "plane" "(401 -4648 0) (331 -4711 0) (331 -4711 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 140" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6401391" + side + { + "id" "375298" + "plane" "(417 -4849 42.75) (553 -4849 42.75) (553 -4851 42.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375299" + "plane" "(417 -4851 -0.249998) (553 -4851 -0.249998) (553 -4849 -0.249998)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375300" + "plane" "(417 -4849 42.75) (417 -4851 42.75) (417 -4851 -0.249998)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375301" + "plane" "(553 -4849 -0.249998) (553 -4851 -0.249998) (553 -4851 42.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375302" + "plane" "(553 -4849 42.75) (417 -4849 42.75) (417 -4849 -0.249998)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375303" + "plane" "(553 -4851 -0.249998) (417 -4851 -0.249998) (417 -4851 42.75)" + "material" "TOOLS/TOOLSCLIP" + "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 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6383841" + side + { + "id" "375028" + "plane" "(368 -4048 240) (368 -4048 16) (368 -4000 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" "375027" + "plane" "(384 -4000 240) (384 -4000 16) (384 -4048 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375026" + "plane" "(368 -4000 240) (368 -4000 16) (384 -4000 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375025" + "plane" "(384 -4048 240) (384 -4048 16) (368 -4048 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" "375024" + "plane" "(368 -4048 240) (368 -4000 240) (384 -4000 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" "375023" + "plane" "(368 -4000 16) (368 -4048 16) (384 -4048 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" + } + editor + { + "color" "0 215 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6383842" + side + { + "id" "375034" + "plane" "(368 -4000 -32) (368 -4048 -32) (384 -4048 -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" "375033" + "plane" "(368 -4048 16) (368 -4048 -32) (368 -4000 -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" "375032" + "plane" "(384 -4000 16) (384 -4000 -32) (384 -4048 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -816] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375031" + "plane" "(368 -4000 16) (368 -4000 -32) (384 -4000 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375030" + "plane" "(384 -4048 16) (384 -4048 -32) (368 -4048 -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" "375029" + "plane" "(368 -4048 16) (368 -4000 16) (384 -4000 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" + } + editor + { + "color" "0 215 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6383931" + side + { + "id" "375040" + "plane" "(368 -4395 -16) (368 -4560 -16) (384 -4560 -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" "375039" + "plane" "(368 -4560 8) (368 -4560 -16) (368 -4395 -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" "375038" + "plane" "(384 -4395 -16) (384 -4560 -16) (384 -4560 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -128] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375037" + "plane" "(384 -4560 8) (384 -4560 -16) (368 -4560 -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" "375036" + "plane" "(368 -4560 8) (368 -4395 8) (384 -4395 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" "375035" + "plane" "(368 -4395 8) (368 -4395 -16) (384 -4395 -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 147 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6383932" + side + { + "id" "375046" + "plane" "(368 -4048 -16) (368 -4147 -16) (384 -4147 -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" "375045" + "plane" "(368 -4147 -16) (368 -4048 -16) (368 -4048 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" "375044" + "plane" "(384 -4048 8) (384 -4048 -16) (384 -4147 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -128] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375043" + "plane" "(368 -4048 8) (368 -4048 -16) (384 -4048 -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" "375042" + "plane" "(368 -4147 8) (368 -4048 8) (384 -4048 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" "375041" + "plane" "(384 -4147 8) (384 -4147 -16) (368 -4147 -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 147 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6383954" + side + { + "id" "375100" + "plane" "(368 -4560 240) (368 -4560 160) (368 -4395 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" "375099" + "plane" "(384 -4395 160) (384 -4560 160) (384 -4560 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -34.9652] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375098" + "plane" "(384 -4560 240) (384 -4560 160) (368 -4560 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" "375097" + "plane" "(368 -4560 240) (368 -4395 240) (384 -4395 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" "375096" + "plane" "(368 -4395 160) (368 -4560 160) (384 -4560 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" "375095" + "plane" "(368 -4395 240) (368 -4395 160) (384 -4395 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" + } + editor + { + "color" "0 147 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6383960" + side + { + "id" "375088" + "plane" "(368 -4395 128) (368 -4147 128) (368 -4147 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" "375087" + "plane" "(376 -4147 128) (376 -4395 128) (376 -4395 160)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 -1 0 -1824] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375086" + "plane" "(368 -4395 160) (368 -4147 160) (376 -4147 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" "375085" + "plane" "(368 -4147 128) (368 -4395 128) (376 -4395 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" "375084" + "plane" "(376 -4395 160) (376 -4395 128) (368 -4395 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" "375083" + "plane" "(368 -4147 160) (368 -4147 128) (376 -4147 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 147 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6383961" + side + { + "id" "375094" + "plane" "(368 -4395 160) (368 -4048 160) (368 -4048 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" "375093" + "plane" "(384 -4048 240) (384 -4048 160) (384 -4395 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -34.9652] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375092" + "plane" "(368 -4048 240) (368 -4048 160) (384 -4048 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" "375091" + "plane" "(368 -4395 240) (368 -4048 240) (384 -4048 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" "375090" + "plane" "(368 -4048 160) (368 -4395 160) (384 -4395 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" "375089" + "plane" "(384 -4395 240) (384 -4395 160) (368 -4395 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" + } + editor + { + "color" "0 147 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6384002" + side + { + "id" "375124" + "plane" "(376 -4396 160) (376 -4395 160) (386 -4395 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375123" + "plane" "(376 -4395 8) (376 -4396 8) (386 -4396 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375122" + "plane" "(376 -4396 8) (376 -4395 8) (376 -4395 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -3] 0.25" + "vaxis" "[0 -1 0 45.2813] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375121" + "plane" "(386 -4395 8) (386 -4396 8) (386 -4396 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[0 1 0 -224] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375120" + "plane" "(376 -4395 8) (386 -4395 8) (386 -4395 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[1 0 0 176] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375119" + "plane" "(386 -4396 8) (376 -4396 8) (376 -4396 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[1 0 0 176] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6384013" + side + { + "id" "375136" + "plane" "(376 -4560 160) (376 -4559 160) (386 -4559 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375135" + "plane" "(376 -4559 8) (376 -4560 8) (386 -4560 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375134" + "plane" "(376 -4560 8) (376 -4559 8) (376 -4559 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -3] 0.25" + "vaxis" "[0 -1 0 -34.7188] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375133" + "plane" "(386 -4559 8) (386 -4560 8) (386 -4560 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[0 1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375132" + "plane" "(376 -4559 8) (386 -4559 8) (386 -4559 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[1 0 0 176] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375131" + "plane" "(386 -4560 8) (376 -4560 8) (376 -4560 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 256] 0.125" + "vaxis" "[1 0 0 176] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6384032" + side + { + "id" "375160" + "plane" "(376 -4396 9) (386 -4396 9) (386 -4559 9)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -496] 0.125" + "vaxis" "[-1 0 0 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375159" + "plane" "(376 -4559 8) (386 -4559 8) (386 -4396 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375158" + "plane" "(376 -4396 9) (376 -4559 9) (376 -4559 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375157" + "plane" "(386 -4396 8) (386 -4559 8) (386 -4559 9)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -496] 0.125" + "vaxis" "[0 0 1 104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375156" + "plane" "(386 -4396 9) (376 -4396 9) (376 -4396 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375155" + "plane" "(386 -4559 8) (376 -4559 8) (376 -4559 9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6384049" + side + { + "id" "375166" + "plane" "(368 -4560 160) (368 -4560 120) (368 -4395 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" "375165" + "plane" "(376 -4560 120) (376 -4560 160) (376 -4395 160)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 -1 0 -1824] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375164" + "plane" "(376 -4560 160) (376 -4560 120) (368 -4560 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" "375163" + "plane" "(368 -4560 160) (368 -4395 160) (376 -4395 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" "375162" + "plane" "(368 -4395 160) (368 -4395 120) (376 -4395 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" "375161" + "plane" "(368 -4395 120) (368 -4560 120) (376 -4560 120)" + "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 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6384050" + side + { + "id" "375172" + "plane" "(368 -4560 120) (368 -4560 8) (368 -4395 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" "375171" + "plane" "(376 -4395 8) (376 -4560 8) (376 -4560 120)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 -1 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375170" + "plane" "(376 -4560 120) (376 -4560 8) (368 -4560 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" "375169" + "plane" "(368 -4395 8) (368 -4560 8) (376 -4560 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" "375168" + "plane" "(368 -4395 120) (368 -4395 8) (376 -4395 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" "375167" + "plane" "(368 -4560 120) (368 -4395 120) (376 -4395 120)" + "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 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6384054" + side + { + "id" "375184" + "plane" "(376 -4396 121) (382 -4396 121) (382 -4559 121)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -496] 0.125" + "vaxis" "[-1 0 0 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375183" + "plane" "(376 -4559 119) (382 -4559 119) (382 -4396 119)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -496] 0.125" + "vaxis" "[1 0 0 -80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375182" + "plane" "(376 -4396 121) (376 -4559 121) (376 -4559 119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375181" + "plane" "(382 -4396 119) (382 -4559 119) (382 -4559 121)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -496] 0.125" + "vaxis" "[0 0 1 -24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375180" + "plane" "(382 -4396 121) (376 -4396 121) (376 -4396 119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375179" + "plane" "(382 -4559 119) (376 -4559 119) (376 -4559 121)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366504" + side + { + "id" "374794" + "plane" "(2608 -3888 176) (2608 -3792 176) (2624 -3792 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" "374793" + "plane" "(2608 -3792 144) (2608 -3792 176) (2608 -3888 176)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374792" + "plane" "(2624 -3888 176) (2624 -3792 176) (2624 -3792 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.013] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374791" + "plane" "(2624 -3792 144) (2624 -3792 176) (2608 -3792 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" "374790" + "plane" "(2608 -3888 144) (2608 -3888 176) (2624 -3888 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" "374789" + "plane" "(2608 -3792 144) (2608 -3888 144) (2624 -3888 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" + } + editor + { + "color" "0 136 129" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366505" + side + { + "id" "374800" + "plane" "(2608 -3888 16) (2608 -3792 16) (2608 -3792 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 53] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374799" + "plane" "(2624 -3792 144) (2624 -3792 16) (2624 -3888 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.013] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374798" + "plane" "(2624 -3792 16) (2624 -3792 144) (2608 -3792 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" "374797" + "plane" "(2608 -3792 16) (2608 -3888 16) (2624 -3888 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" "374796" + "plane" "(2608 -3888 16) (2608 -3888 144) (2624 -3888 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" "374795" + "plane" "(2608 -3888 144) (2608 -3792 144) (2624 -3792 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" + } + editor + { + "color" "0 136 129" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366506" + side + { + "id" "374806" + "plane" "(2608 -4016 176) (2608 -3888 176) (2624 -3888 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" "374805" + "plane" "(2608 -3888 144) (2608 -3888 176) (2608 -4016 176)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374804" + "plane" "(2624 -4016 144) (2624 -4016 176) (2624 -3888 176)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.013] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374803" + "plane" "(2624 -3888 144) (2624 -3888 176) (2608 -3888 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" "374802" + "plane" "(2608 -4016 144) (2608 -4016 176) (2624 -4016 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" "374801" + "plane" "(2608 -3888 144) (2608 -4016 144) (2624 -4016 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" + } + editor + { + "color" "0 152 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366507" + side + { + "id" "374812" + "plane" "(2608 -3888 96) (2608 -4016 96) (2624 -4016 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" "374811" + "plane" "(2608 -4016 96) (2608 -3888 96) (2608 -3888 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 53] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374810" + "plane" "(2624 -3888 96) (2624 -4016 96) (2624 -4016 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.013] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374809" + "plane" "(2608 -3888 96) (2624 -3888 96) (2624 -3888 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" "374808" + "plane" "(2624 -4016 96) (2608 -4016 96) (2608 -4016 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" "374807" + "plane" "(2608 -4016 144) (2608 -3888 144) (2624 -3888 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" + } + editor + { + "color" "0 152 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366508" + side + { + "id" "374818" + "plane" "(2608 -4096 176) (2608 -4016 176) (2624 -4016 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" "374817" + "plane" "(2608 -4016 176) (2608 -4096 176) (2608 -4096 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374816" + "plane" "(2624 -4096 144) (2624 -4096 176) (2624 -4016 176)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.013] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374815" + "plane" "(2608 -4096 144) (2608 -4096 176) (2624 -4096 176)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374814" + "plane" "(2624 -4016 144) (2624 -4016 176) (2608 -4016 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" "374813" + "plane" "(2608 -4016 144) (2608 -4096 144) (2624 -4096 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" + } + editor + { + "color" "0 136 129" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366509" + side + { + "id" "374824" + "plane" "(2608 -4096 144) (2608 -4096 16) (2608 -4016 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 53] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374823" + "plane" "(2624 -4016 16) (2624 -4096 16) (2624 -4096 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.013] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374822" + "plane" "(2608 -4096 16) (2608 -4096 144) (2624 -4096 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 -586.997] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374821" + "plane" "(2608 -4016 16) (2608 -4096 16) (2624 -4096 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" "374820" + "plane" "(2624 -4016 16) (2624 -4016 144) (2608 -4016 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" "374819" + "plane" "(2608 -4096 144) (2608 -4016 144) (2624 -4016 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" + } + editor + { + "color" "0 136 129" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366510" + side + { + "id" "374830" + "plane" "(2624 -4096 176) (2624 -4080 176) (2808 -4080 176)" + "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" "374829" + "plane" "(2624 -4080 144) (2624 -4080 176) (2624 -4096 176)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 -203] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374828" + "plane" "(2808 -4096 144) (2808 -4096 176) (2808 -4080 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" "374827" + "plane" "(2808 -4080 144) (2808 -4080 176) (2624 -4080 176)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -175.984] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374826" + "plane" "(2624 -4096 144) (2624 -4096 176) (2808 -4096 176)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374825" + "plane" "(2624 -4080 144) (2624 -4096 144) (2808 -4096 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" + } + editor + { + "color" "0 222 187" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366511" + side + { + "id" "374836" + "plane" "(2624 -4096 144) (2624 -4096 16) (2624 -4080 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 -203] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374835" + "plane" "(2808 -4080 144) (2808 -4080 16) (2808 -4096 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" "374834" + "plane" "(2624 -4080 144) (2624 -4080 16) (2808 -4080 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -175.984] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374833" + "plane" "(2808 -4096 144) (2808 -4096 16) (2624 -4096 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 -458.997] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374832" + "plane" "(2624 -4080 16) (2624 -4096 16) (2808 -4096 16)" + "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" "374831" + "plane" "(2624 -4096 144) (2624 -4080 144) (2808 -4080 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" + } + editor + { + "color" "0 222 187" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366542" + side + { + "id" "374842" + "plane" "(2608 -4096 208) (2608 -3792 208) (2792 -3792 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" "374841" + "plane" "(2608 -3792 203) (2608 -3792 208) (2608 -4096 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374840" + "plane" "(2792 -4096 203) (2792 -4096 208) (2792 -3792 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" "374839" + "plane" "(2792 -3792 203) (2792 -3792 208) (2608 -3792 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" "374838" + "plane" "(2608 -4096 203) (2608 -4096 208) (2792 -4096 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374837" + "plane" "(2608 -3792 203) (2608 -4096 203) (2792 -4096 203)" + "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 224 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366543" + side + { + "id" "374848" + "plane" "(2608 -3792 176) (2608 -4096 176) (2808 -4096 176)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374847" + "plane" "(2608 -4096 203) (2608 -4096 176) (2608 -3792 176)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374846" + "plane" "(2808 -3792 203) (2808 -3792 176) (2808 -4096 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" "374845" + "plane" "(2608 -3792 203) (2608 -3792 176) (2808 -3792 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" "374844" + "plane" "(2808 -4096 203) (2808 -4096 176) (2608 -4096 176)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374843" + "plane" "(2608 -4096 203) (2608 -3792 203) (2808 -3792 203)" + "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 224 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367090" + side + { + "id" "374908" + "plane" "(-656 -4384 240) (-656 -4344 240) (-640 -4344 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" "374907" + "plane" "(-656 -4344 48) (-656 -4344 240) (-656 -4384 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 369.21] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374906" + "plane" "(-640 -4384 240) (-640 -4344 240) (-640 -4344 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374905" + "plane" "(-640 -4344 48) (-640 -4344 240) (-656 -4344 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -191.992] 0.125" + "vaxis" "[1 0 0 62.9985] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374904" + "plane" "(-656 -4344 48) (-656 -4384 48) (-640 -4384 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" "374903" + "plane" "(-656 -4384 48) (-656 -4384 240) (-640 -4384 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" "0 183 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367097" + side + { + "id" "374914" + "plane" "(-649 -4560 240) (-649 -4384 240) (-640 -4384 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" "374913" + "plane" "(-649 -4384 240) (-649 -4560 240) (-649 -4560 128)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 -1824] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374912" + "plane" "(-640 -4560 128) (-640 -4560 240) (-640 -4384 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374911" + "plane" "(-649 -4560 128) (-649 -4560 240) (-640 -4560 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" "374910" + "plane" "(-640 -4384 128) (-640 -4384 240) (-649 -4384 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" "374909" + "plane" "(-649 -4384 128) (-649 -4560 128) (-640 -4560 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 183 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367098" + side + { + "id" "374920" + "plane" "(-649 -4560 128) (-649 -4560 41) (-649 -4384 41)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374919" + "plane" "(-640 -4384 41) (-640 -4560 41) (-640 -4560 128)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374918" + "plane" "(-649 -4560 41) (-649 -4560 128) (-640 -4560 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" "374917" + "plane" "(-649 -4384 41) (-649 -4560 41) (-640 -4560 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374916" + "plane" "(-640 -4384 41) (-640 -4384 128) (-649 -4384 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" "374915" + "plane" "(-649 -4560 128) (-649 -4384 128) (-640 -4384 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 183 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367107" + side + { + "id" "374926" + "plane" "(-656 -4384 -16) (-656 -4560 -16) (-640 -4560 -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" "374925" + "plane" "(-656 -4560 40) (-656 -4560 -16) (-656 -4384 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374924" + "plane" "(-640 -4384 -16) (-640 -4560 -16) (-640 -4560 40)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374923" + "plane" "(-640 -4560 40) (-640 -4560 -16) (-656 -4560 -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" "374922" + "plane" "(-656 -4560 40) (-656 -4384 40) (-640 -4384 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374921" + "plane" "(-656 -4384 40) (-656 -4384 -16) (-640 -4384 -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 183 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367108" + side + { + "id" "374932" + "plane" "(-656 -4344 -16) (-656 -4384 -16) (-640 -4384 -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" "374931" + "plane" "(-656 -4384 -16) (-656 -4344 -16) (-656 -4344 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374930" + "plane" "(-640 -4344 48) (-640 -4344 -16) (-640 -4384 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374929" + "plane" "(-656 -4344 48) (-656 -4344 -16) (-640 -4344 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -191.992] 0.125" + "vaxis" "[1 0 0 62.9985] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374928" + "plane" "(-656 -4384 48) (-656 -4344 48) (-640 -4344 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" "374927" + "plane" "(-640 -4384 48) (-640 -4384 -16) (-656 -4384 -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 183 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367112" + side + { + "id" "374944" + "plane" "(-659 -4560 160) (-659 -4559 160) (-649 -4559 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374943" + "plane" "(-659 -4559 40) (-659 -4560 40) (-649 -4560 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374942" + "plane" "(-659 -4560 40) (-659 -4559 40) (-659 -4559 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00174915] 0.125" + "vaxis" "[0 -1 0 -15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374941" + "plane" "(-649 -4559 40) (-649 -4560 40) (-649 -4560 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" + } + side + { + "id" "374940" + "plane" "(-659 -4559 40) (-649 -4559 40) (-649 -4559 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374939" + "plane" "(-649 -4560 40) (-659 -4560 40) (-659 -4560 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367117" + side + { + "id" "374956" + "plane" "(-659 -4385 160) (-659 -4384 160) (-649 -4384 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374955" + "plane" "(-659 -4384 40) (-659 -4385 40) (-649 -4385 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374954" + "plane" "(-659 -4385 40) (-659 -4384 40) (-659 -4384 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00174915] 0.125" + "vaxis" "[0 -1 0 104.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374953" + "plane" "(-649 -4384 40) (-649 -4385 40) (-649 -4385 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374952" + "plane" "(-659 -4384 40) (-649 -4384 40) (-649 -4384 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374951" + "plane" "(-649 -4385 40) (-659 -4385 40) (-659 -4385 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367123" + side + { + "id" "374968" + "plane" "(-659 -4559 160) (-659 -4385 160) (-649 -4385 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -239.996] 0.125" + "vaxis" "[1 0 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374967" + "plane" "(-659 -4385 158) (-659 -4559 158) (-649 -4559 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -992] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374966" + "plane" "(-659 -4559 158) (-659 -4385 158) (-659 -4385 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -992] 0.125" + "vaxis" "[0 0 1 -160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374965" + "plane" "(-649 -4385 158) (-649 -4559 158) (-649 -4559 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374964" + "plane" "(-659 -4385 158) (-649 -4385 158) (-649 -4385 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374963" + "plane" "(-649 -4559 158) (-659 -4559 158) (-659 -4559 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367128" + side + { + "id" "374980" + "plane" "(-659 -4559 41) (-659 -4385 41) (-649 -4385 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -992] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374979" + "plane" "(-659 -4385 40) (-659 -4559 40) (-649 -4559 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374978" + "plane" "(-659 -4559 40) (-659 -4385 40) (-659 -4385 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -992] 0.125" + "vaxis" "[0 0 1 -160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374977" + "plane" "(-649 -4385 40) (-649 -4559 40) (-649 -4559 41)" + "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" "374976" + "plane" "(-659 -4385 40) (-649 -4385 40) (-649 -4385 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374975" + "plane" "(-649 -4559 40) (-659 -4559 40) (-659 -4559 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367146" + side + { + "id" "374998" + "plane" "(-654 -4262 127) (-654 -4259 127) (-648 -4259 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374997" + "plane" "(-654 -4259 41) (-654 -4262 41) (-648 -4262 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374996" + "plane" "(-654 -4262 41) (-654 -4259 41) (-654 -4259 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 -96.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374995" + "plane" "(-648 -4259 41) (-648 -4262 41) (-648 -4262 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374994" + "plane" "(-654 -4259 41) (-648 -4259 41) (-648 -4259 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374993" + "plane" "(-648 -4262 41) (-654 -4262 41) (-654 -4262 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367147" + side + { + "id" "375004" + "plane" "(-654 -4262 158) (-654 -4259 158) (-648 -4259 158)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375003" + "plane" "(-654 -4259 129) (-654 -4262 129) (-648 -4262 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375002" + "plane" "(-654 -4262 129) (-654 -4259 129) (-654 -4259 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 -96.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375001" + "plane" "(-648 -4259 129) (-648 -4262 129) (-648 -4262 158)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375000" + "plane" "(-654 -4259 129) (-648 -4259 129) (-648 -4259 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -7.99805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374999" + "plane" "(-648 -4262 129) (-654 -4262 129) (-654 -4262 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 0.0039978] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6367156" + side + { + "id" "375016" + "plane" "(-655 -4559 129) (-655 -4385 129) (-649 -4385 129)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -992] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375015" + "plane" "(-655 -4385 127) (-655 -4559 127) (-649 -4559 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -992] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375014" + "plane" "(-655 -4559 127) (-655 -4385 127) (-655 -4385 129)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -992] 0.125" + "vaxis" "[0 0 -1 -72] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375013" + "plane" "(-649 -4385 127) (-649 -4559 127) (-649 -4559 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375012" + "plane" "(-655 -4385 127) (-649 -4385 127) (-649 -4385 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375011" + "plane" "(-649 -4559 127) (-655 -4559 127) (-655 -4559 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349246" + side + { + "id" "374399" + "plane" "(-478 -4008 127) (-478 -4005 127) (-472 -4005 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374398" + "plane" "(-478 -4005 41) (-478 -4008 41) (-472 -4008 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374397" + "plane" "(-478 -4008 41) (-478 -4005 41) (-478 -4005 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 -80.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374396" + "plane" "(-472 -4005 41) (-472 -4008 41) (-472 -4008 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 103.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374395" + "plane" "(-478 -4005 41) (-472 -4005 41) (-472 -4005 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374394" + "plane" "(-472 -4008 41) (-478 -4008 41) (-478 -4008 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349247" + side + { + "id" "374405" + "plane" "(-478 -4008 159) (-478 -4005 159) (-472 -4005 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374404" + "plane" "(-478 -4005 129) (-478 -4008 129) (-472 -4008 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374403" + "plane" "(-478 -4008 129) (-478 -4005 129) (-478 -4005 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 -80.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374402" + "plane" "(-472 -4005 129) (-472 -4008 129) (-472 -4008 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -111.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374401" + "plane" "(-478 -4005 129) (-472 -4005 129) (-472 -4005 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 120.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374400" + "plane" "(-472 -4008 129) (-478 -4008 129) (-478 -4008 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349266" + side + { + "id" "374423" + "plane" "(-351 -4008 127) (-351 -4005 127) (-345 -4005 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374422" + "plane" "(-351 -4005 41) (-351 -4008 41) (-345 -4008 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374421" + "plane" "(-351 -4008 41) (-351 -4005 41) (-351 -4005 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 -80.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374420" + "plane" "(-345 -4005 41) (-345 -4008 41) (-345 -4008 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 103.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374419" + "plane" "(-351 -4005 41) (-345 -4005 41) (-345 -4005 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 120] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374418" + "plane" "(-345 -4008 41) (-351 -4008 41) (-351 -4008 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 120] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349267" + side + { + "id" "374429" + "plane" "(-351 -4008 159) (-351 -4005 159) (-345 -4005 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374428" + "plane" "(-351 -4005 129) (-351 -4008 129) (-345 -4008 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374427" + "plane" "(-351 -4008 129) (-351 -4005 129) (-351 -4005 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 -80.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374426" + "plane" "(-345 -4005 129) (-345 -4008 129) (-345 -4008 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -111.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374425" + "plane" "(-351 -4005 129) (-345 -4005 129) (-345 -4005 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -127.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374424" + "plane" "(-345 -4008 129) (-351 -4008 129) (-351 -4008 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349326" + side + { + "id" "374435" + "plane" "(-32 -4000 -15.9467) (-176 -4000 -15.9657) (-176 -4016 -15.9657)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374434" + "plane" "(-176 -4000 48) (-176 -4000 -15.9646) (-32 -4000 -15.9456)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374433" + "plane" "(-32 -4016 -15.9476) (-176 -4016 -15.9665) (-176 -4016 48)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 -31.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374432" + "plane" "(-176 -4016 48) (-176 -4016 -15.9669) (-176 -4000 -15.9669)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374431" + "plane" "(-32 -4016 48) (-176 -4016 48) (-176 -4000 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" "374430" + "plane" "(-32 -4000 48) (-32 -4000 -15.9453) (-32 -4016 -15.9453)" + "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 154 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349327" + side + { + "id" "374441" + "plane" "(368 -4000 -31.9341) (-32 -4000 -32) (-32 -4016 -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" "374440" + "plane" "(-32 -4000 -31.9987) (368 -4000 -31.9327) (368 -4000 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" "374439" + "plane" "(368 -4016 48) (368 -4016 -31.9327) (-32 -4016 -31.9987)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 -31.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374438" + "plane" "(368 -4000 48) (368 -4000 -31.9347) (368 -4016 -31.9347)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374437" + "plane" "(368 -4016 48) (-32 -4016 48) (-32 -4000 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" "374436" + "plane" "(-32 -4016 48) (-32 -4016 -31.9983) (-32 -4000 -31.9983)" + "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 154 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349382" + side + { + "id" "374447" + "plane" "(-77 -3784 244) (-77 -3504 244) (-64 -3504 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374446" + "plane" "(-77 -3504 17) (-77 -3784 17) (-64 -3808 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374445" + "plane" "(-77 -3784 17) (-77 -3504 17) (-77 -3504 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374444" + "plane" "(-64 -3504 17) (-64 -3808 17) (-64 -3808 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374443" + "plane" "(-77 -3504 17) (-64 -3504 17) (-64 -3504 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374442" + "plane" "(-64 -3808 17) (-77 -3784 17) (-77 -3784 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 164 213" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349385" + side + { + "id" "374453" + "plane" "(-72 -3848.84 244) (-64 -3832 244) (-64 -4001 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374452" + "plane" "(-72 -4001 17) (-64 -4001 17) (-64 -3832 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374451" + "plane" "(-64 -3832 17) (-64 -4001 17) (-64 -4001 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374450" + "plane" "(-64 -4001 17) (-72 -4001 17) (-72 -4001 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374449" + "plane" "(-72 -3848.84 17) (-64 -3832 17) (-64 -3832 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374448" + "plane" "(-72 -4001 17) (-72 -3848.84 17) (-72 -3848.84 244)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 149 202" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349510" + side + { + "id" "374490" + "plane" "(-656 -4401 244.25) (-699 -4401 244.25) (-699 -4390 244.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -16] 0.125" + "vaxis" "[-1 0 0 23.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374489" + "plane" "(-656 -4376 36.25) (-664 -4376 36.25) (-699 -4390 36.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -16] 0.125" + "vaxis" "[1 0 0 -23.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374488" + "plane" "(-656 -4401 36.25) (-699 -4401 36.25) (-699 -4401 244.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -17] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374487" + "plane" "(-664 -4376 36.25) (-656 -4376 36.25) (-656 -4376 244.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -33] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374486" + "plane" "(-699 -4401 36.25) (-699 -4390 36.25) (-699 -4390 244.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -41] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374485" + "plane" "(-656 -4376 36.25) (-656 -4401 36.25) (-656 -4401 244.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 55] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374484" + "plane" "(-699 -4390 36.25) (-664 -4376 36.25) (-664 -4376 244.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "250 199 0" + "groupid" "1510371" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349557" + side + { + "id" "374506" + "plane" "(-664 -4352 160) (-656 -4339 160) (-656 -4352 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374505" + "plane" "(-664 -4352 31) (-656 -4352 31) (-656 -4339 31)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374504" + "plane" "(-656 -4339 31) (-656 -4352 31) (-656 -4352 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374503" + "plane" "(-656 -4352 31) (-664 -4352 31) (-664 -4352 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374502" + "plane" "(-664 -4352 31) (-656 -4339 31) (-656 -4339 160)" + "material" "TOOLS/TOOLSCLIP" + "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 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349569" + side + { + "id" "374530" + "plane" "(-32 -4008 159) (-32 -3998 159) (-31 -3998 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374529" + "plane" "(-32 -3998 41) (-32 -4008 41) (-31 -4008 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374528" + "plane" "(-32 -4008 41) (-32 -3998 41) (-32 -3998 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 127.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374527" + "plane" "(-31 -3998 41) (-31 -4008 41) (-31 -4008 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374526" + "plane" "(-32 -3998 41) (-31 -3998 41) (-31 -3998 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374525" + "plane" "(-31 -4008 41) (-32 -4008 41) (-32 -4008 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349575" + side + { + "id" "374542" + "plane" "(367 -4008 159) (367 -3998 159) (368 -3998 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374541" + "plane" "(367 -3998 41) (367 -4008 41) (368 -4008 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374540" + "plane" "(367 -4008 41) (367 -3998 41) (367 -3998 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 127.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374539" + "plane" "(368 -3998 41) (368 -4008 41) (368 -4008 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374538" + "plane" "(367 -3998 41) (368 -3998 41) (368 -3998 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374537" + "plane" "(368 -4008 41) (367 -4008 41) (367 -4008 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349584" + side + { + "id" "374548" + "plane" "(-32 -4008 48) (368 -4008 48) (368 -4008 128)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374547" + "plane" "(368 -4008 128) (368 -4008 48) (368 -4016 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" "374546" + "plane" "(368 -4008 48) (-32 -4008 48) (-32 -4016 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" "374545" + "plane" "(368 -4016 128) (368 -4016 48) (-32 -4016 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374544" + "plane" "(-32 -4016 48) (-32 -4008 48) (-32 -4008 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374543" + "plane" "(-32 -4008 128) (368 -4008 128) (368 -4016 128)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "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 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349585" + side + { + "id" "374554" + "plane" "(368 -4008 128) (368 -4008 240) (-32 -4008 240)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -1824] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374553" + "plane" "(-32 -4008 240) (368 -4008 240) (368 -4016 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.944562 0 0.328333 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374552" + "plane" "(368 -4008 240) (368 -4008 128) (368 -4016 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" "374551" + "plane" "(-32 -4016 240) (368 -4016 240) (368 -4016 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374550" + "plane" "(-32 -4008 128) (-32 -4008 240) (-32 -4016 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374549" + "plane" "(368 -4008 128) (-32 -4008 128) (-32 -4016 128)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "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 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349587" + side + { + "id" "374566" + "plane" "(-31 -4008 160) (-31 -3998 160) (367 -3998 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374565" + "plane" "(-31 -3998 159) (-31 -4008 159) (367 -4008 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -808] 0.125" + "vaxis" "[0 -1 0 -135.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374564" + "plane" "(-31 -4008 159) (-31 -3998 159) (-31 -3998 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -448] 0.125" + "vaxis" "[0 -1 0 -148] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374563" + "plane" "(367 -3998 159) (367 -4008 159) (367 -4008 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374562" + "plane" "(-31 -3998 159) (367 -3998 159) (367 -3998 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -808] 0.125" + "vaxis" "[0 0 -1 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374561" + "plane" "(367 -4008 159) (-31 -4008 159) (-31 -4008 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6331818" + side + { + "id" "374119" + "plane" "(-448 -4048 48) (-448 -4048 240) (368 -4048 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" "374118" + "plane" "(368 -4048 240) (-448 -4048 240) (-448 -4016 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.974184 0 0.225753 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374117" + "plane" "(368 -4016 48) (368 -4048 48) (368 -4048 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" "374116" + "plane" "(-448 -4048 240) (-448 -4048 48) (-448 -4016 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374115" + "plane" "(-448 -4016 48) (-448 -4048 48) (368 -4048 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" "374114" + "plane" "(368 -4016 48) (368 -4016 240) (-448 -4016 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "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 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332098" + side + { + "id" "374143" + "plane" "(-32 -4000 240) (-176 -4000 240) (-176 -4000 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374142" + "plane" "(-176 -4016 240) (-176 -4000 240) (-32 -4000 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.944562 0 0.328333 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374141" + "plane" "(-176 -4016 48) (-176 -4000 48) (-176 -4000 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374140" + "plane" "(-32 -4000 48) (-176 -4000 48) (-176 -4016 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" "374139" + "plane" "(-176 -4016 48) (-176 -4016 240) (-32 -4016 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374138" + "plane" "(-32 -4000 240) (-32 -4000 48) (-32 -4016 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 154 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332337" + side + { + "id" "374173" + "plane" "(-658 -4048 160) (-648 -4048 160) (-648 -4049 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374172" + "plane" "(-658 -4049 40) (-648 -4049 40) (-648 -4048 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374171" + "plane" "(-658 -4048 160) (-658 -4049 160) (-658 -4049 40)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00174915] 0.125" + "vaxis" "[0 -1 0 232.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374170" + "plane" "(-648 -4048 40) (-648 -4049 40) (-648 -4049 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374169" + "plane" "(-648 -4048 160) (-658 -4048 160) (-658 -4048 40)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374168" + "plane" "(-648 -4049 40) (-658 -4049 40) (-658 -4049 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332379" + side + { + "id" "374179" + "plane" "(-640 -4048 160) (-640 -4048 128) (-640 -4344 128)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374178" + "plane" "(-640 -4048 128) (-640 -4048 160) (-648 -4048 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" "374177" + "plane" "(-640 -4344 160) (-640 -4344 128) (-648 -4344 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" "374176" + "plane" "(-648 -4048 160) (-640 -4048 160) (-640 -4344 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" "374175" + "plane" "(-648 -4344 160) (-648 -4344 128) (-648 -4048 128)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 -1 0 -1824] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374174" + "plane" "(-648 -4344 128) (-640 -4344 128) (-640 -4048 128)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "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 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332380" + side + { + "id" "374185" + "plane" "(-640 -4048 128) (-640 -4048 40) (-640 -4344 40)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374184" + "plane" "(-648 -4048 40) (-640 -4048 40) (-640 -4048 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" "374183" + "plane" "(-640 -4344 128) (-640 -4344 40) (-648 -4344 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" "374182" + "plane" "(-648 -4344 40) (-640 -4344 40) (-640 -4048 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374181" + "plane" "(-648 -4344 128) (-648 -4344 40) (-648 -4048 40)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 -1 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374180" + "plane" "(-648 -4048 128) (-640 -4048 128) (-640 -4344 128)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "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 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332389" + side + { + "id" "374191" + "plane" "(-176 -4016 160) (-176 -4016 128) (-608 -4016 128)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374190" + "plane" "(-608 -4016 160) (-608 -4016 128) (-608 -4008 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" "374189" + "plane" "(-176 -4016 128) (-176 -4016 160) (-176 -4008 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" "374188" + "plane" "(-176 -4016 160) (-608 -4016 160) (-608 -4008 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" "374187" + "plane" "(-608 -4008 160) (-608 -4008 128) (-176 -4008 128)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[-1 0 0 -1824] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374186" + "plane" "(-608 -4008 128) (-608 -4016 128) (-176 -4016 128)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "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 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332390" + side + { + "id" "374197" + "plane" "(-176 -4016 128) (-176 -4016 40) (-608 -4016 40)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374196" + "plane" "(-608 -4016 128) (-608 -4016 40) (-608 -4008 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" "374195" + "plane" "(-176 -4008 40) (-176 -4016 40) (-176 -4016 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" "374194" + "plane" "(-608 -4008 40) (-608 -4016 40) (-176 -4016 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374193" + "plane" "(-608 -4008 128) (-608 -4008 40) (-176 -4008 40)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[-1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374192" + "plane" "(-176 -4016 128) (-608 -4016 128) (-608 -4008 128)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "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 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332403" + side + { + "id" "374221" + "plane" "(-654 -4049 129) (-648 -4049 129) (-648 -4343 129)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -288] 0.125" + "vaxis" "[1 0 0 248] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374220" + "plane" "(-654 -4343 127) (-648 -4343 127) (-648 -4049 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -288] 0.125" + "vaxis" "[-1 0 0 -248] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374219" + "plane" "(-654 -4049 129) (-654 -4343 129) (-654 -4343 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -288] 0.125" + "vaxis" "[0 0 1 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374218" + "plane" "(-648 -4049 127) (-648 -4343 127) (-648 -4343 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374217" + "plane" "(-648 -4049 129) (-654 -4049 129) (-654 -4049 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374216" + "plane" "(-648 -4343 127) (-654 -4343 127) (-654 -4343 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332408" + side + { + "id" "374233" + "plane" "(-658 -4049 160) (-648 -4049 160) (-648 -4343 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -623.996] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374232" + "plane" "(-658 -4343 158) (-648 -4343 158) (-648 -4049 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -288] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374231" + "plane" "(-658 -4049 160) (-658 -4343 160) (-658 -4343 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -288] 0.125" + "vaxis" "[0 0 1 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374230" + "plane" "(-648 -4049 158) (-648 -4343 158) (-648 -4343 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374229" + "plane" "(-648 -4049 160) (-658 -4049 160) (-658 -4049 158)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374228" + "plane" "(-648 -4343 158) (-658 -4343 158) (-658 -4343 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332433" + side + { + "id" "374257" + "plane" "(-654 -4131 127) (-648 -4131 127) (-648 -4134 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374256" + "plane" "(-654 -4134 41) (-648 -4134 41) (-648 -4131 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374255" + "plane" "(-654 -4131 127) (-654 -4134 127) (-654 -4134 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 -96.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374254" + "plane" "(-648 -4131 41) (-648 -4134 41) (-648 -4134 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374253" + "plane" "(-648 -4131 127) (-654 -4131 127) (-654 -4131 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374252" + "plane" "(-648 -4134 41) (-654 -4134 41) (-654 -4134 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332454" + side + { + "id" "374281" + "plane" "(-654 -4131 158) (-648 -4131 158) (-648 -4134 158)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374280" + "plane" "(-654 -4134 129) (-648 -4134 129) (-648 -4131 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374279" + "plane" "(-654 -4131 158) (-654 -4134 158) (-654 -4134 129)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 -96.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374278" + "plane" "(-648 -4131 129) (-648 -4134 129) (-648 -4134 158)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374277" + "plane" "(-648 -4131 158) (-654 -4131 158) (-654 -4131 129)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -7.99805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374276" + "plane" "(-648 -4134 129) (-654 -4134 129) (-654 -4134 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -255.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332472" + side + { + "id" "374305" + "plane" "(-608 -4008 160) (-608 -3998 160) (-176 -3998 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" "374304" + "plane" "(-608 -3998 159) (-608 -4008 159) (-176 -4008 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -288] 0.125" + "vaxis" "[0 -1 0 -135.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374303" + "plane" "(-608 -4008 159) (-608 -3998 159) (-608 -3998 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -448] 0.125" + "vaxis" "[0 -1 0 -148] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374302" + "plane" "(-176 -3998 159) (-176 -4008 159) (-176 -4008 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374301" + "plane" "(-608 -3998 159) (-176 -3998 159) (-176 -3998 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -288] 0.125" + "vaxis" "[0 0 -1 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374300" + "plane" "(-176 -4008 159) (-608 -4008 159) (-608 -4008 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332549" + side + { + "id" "374329" + "plane" "(-177 -3998 159) (-176 -3998 159) (-176 -4008 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374328" + "plane" "(-177 -4008 41) (-176 -4008 41) (-176 -3998 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374327" + "plane" "(-177 -3998 159) (-177 -4008 159) (-177 -4008 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 127.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374326" + "plane" "(-176 -3998 41) (-176 -4008 41) (-176 -4008 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374325" + "plane" "(-176 -3998 159) (-177 -3998 159) (-177 -3998 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374324" + "plane" "(-176 -4008 41) (-177 -4008 41) (-177 -4008 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6332551" + side + { + "id" "374330" + "plane" "(-607 -4002 130) (-178 -4002 130) (-178 -4008 130)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -288] 0.125" + "vaxis" "[0 1 0 127.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374331" + "plane" "(-607 -4008 127) (-178 -4008 127) (-178 -4002 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -288] 0.125" + "vaxis" "[0 -1 0 -135.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374332" + "plane" "(-607 -4002 130) (-607 -4008 130) (-607 -4008 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374333" + "plane" "(-178 -4002 127) (-178 -4008 127) (-178 -4008 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374334" + "plane" "(-178 -4002 130) (-607 -4002 130) (-607 -4002 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -288] 0.125" + "vaxis" "[0 0 -1 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374335" + "plane" "(-178 -4008 127) (-607 -4008 127) (-607 -4008 130)" + "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 198 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6315113" + side + { + "id" "374108" + "plane" "(-864 -3692 119) (-864 -3520 119) (-504 -3520 119)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-864 -3692 119]" + "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 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" + } + 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 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" + } + 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 255 255 125 50 0 0 0 0" + "row2" "0 255 255 255 255 255 255 0 0" + "row3" "0 255 255 175 250 175 255 0 0" + "row4" "0 255 255 50 255 0 255 0 0" + "row5" "0 255 0 200 255 250 175 0 0" + "row6" "0 255 255 0 100 0 255 100 0" + "row7" "0 0 50 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" "374109" + "plane" "(-864 -3520 47) (-864 -3692 47) (-504 -3692 47)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374110" + "plane" "(-864 -3692 47) (-864 -3520 47) (-864 -3520 119)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374111" + "plane" "(-504 -3520 47) (-504 -3692 47) (-504 -3692 119)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374112" + "plane" "(-864 -3520 47) (-504 -3520 47) (-504 -3520 119)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374113" + "plane" "(-504 -3692 47) (-864 -3692 47) (-864 -3692 119)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6297788" + side + { + "id" "374083" + "plane" "(-873 -3720 291) (-878 -3707 291) (-830 -3707 291)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -8] 0.125" + "vaxis" "[-1 0 0 39.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374082" + "plane" "(-878 -3707 33.5) (-873 -3720 33.5) (-837 -3720 33.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -8] 0.125" + "vaxis" "[1 0 0 -39.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374081" + "plane" "(-873 -3720 33.5) (-873 -3720 291) (-837 -3720 291)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -33] 0.125" + "vaxis" "[0 0 -1 10] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374080" + "plane" "(-830 -3707 33.5) (-830 -3707 291) (-878 -3707 291)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 47] 0.125" + "vaxis" "[0 0 -1 10] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374079" + "plane" "(-878 -3707 33.5) (-878 -3707 291) (-873 -3720 291)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 31] 0.125" + "vaxis" "[0 0 -1 10] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374078" + "plane" "(-837 -3720 33.5) (-837 -3720 291) (-830 -3707 291)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -17] 0.125" + "vaxis" "[0 0 -1 10] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 101 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6279959" + side + { + "id" "373694" + "plane" "(-1412 -3803 34) (-1412 -3471 34) (-1344 -3471 34)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1344 -3471 34]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 -0.969697 0 0 0 0 0.999512 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.999512 0" + "row2" "0 0 0 0 0 0 0 0 -0.969697 0 0 0 0 0.999512 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 -0.969697 0 0 0 0 0.999512 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0.99939 -0.0156155 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.99939 -0.0156155 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.969697 0 0 0 0 0.999512 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 -1 0 0 -1 0 0 1 0 0 1 0 7.28911e-05 1 0 0 0 0 0 0 0 0 0 0 0 0" + "row8" "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.999512 0" + } + distances + { + "row0" "0 0 3.8147e-06 0 0.000244141 0 0 0 0" + "row1" "0 0 3.8147e-06 0 0 0 0 0 0.000244141" + "row2" "0 0 3.8147e-06 0 0.000244141 0 0 0 0" + "row3" "0 0 3.8147e-06 0 0.000244141 0 0 0 0" + "row4" "0 0 0.00024417 0 0 0 0 0 0" + "row5" "0 0 0.00024417 0 0 0 0 0 0" + "row6" "0 0 3.8147e-06 0 0.000244141 0 0 0 0" + "row7" "5 0.997177 8.34936 8.28882 3.34939 0 0 0 0" + "row8" "3.32882 5 3.32882 0 0 0 0 0 0.000244141" + } + 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 128.444 253.111 124.667 0 0 0 0 0" + "row3" "0 128.444 253.111 124.667 0 0 0 0 0" + "row4" "100 87.4074 74.4444 36.6667 0 0 0 0 0" + "row5" "25 140.852 253.111 124.667 0 0 0 0 0" + "row6" "175 215.296 253.852 175.778 98.8889 61.1111 25 25 24.2593" + "row7" "0 128.444 255 255 255 255 251 160.333 72.7778" + "row8" "25 140.852 254.593 226.889 198.519 148.148 97.7778 47.4074 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 0 9 9 9 9 9 9 9 9 9 9 9 9" + "row7" "9 9 9 0 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" "373693" + "plane" "(-1345 -3785 33) (-1344 -3471 33) (-1412 -3471 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373692" + "plane" "(-1412 -3803 33) (-1412 -3803 34) (-1345 -3785 34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373691" + "plane" "(-1345 -3785 33) (-1345 -3785 34) (-1344 -3471 34)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373690" + "plane" "(-1344 -3471 33) (-1344 -3471 34) (-1412 -3471 34)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373689" + "plane" "(-1412 -3471 33) (-1412 -3471 34) (-1412 -3803 34)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6279960" + side + { + "id" "373700" + "plane" "(-1479 -3787 34) (-1479 -3471 34) (-1412 -3471 34)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1412 -3471 34]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0.999512 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0" + "row1" "0 0.999512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0.999512 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0 0 0 0 0 0 0 0.999512 0 0 0 0 0 0 -0.969697 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.99939 -0.0156155 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.99939 -0.0156155 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0 0 0 0 0 0.999512 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 0 0.999512 0 0 0 0 0 0 -0.969697 0 0 0 0 0 0" + "row8" "0 0.999512 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" + } + distances + { + "row0" "0 0 0 0 0.000244141 0 3.8147e-06 0 0" + "row1" "0.000244141 0 0 0 0 0 3.8147e-06 0 0" + "row2" "0 0 0 0 0.000244141 0 3.8147e-06 0 0" + "row3" "0 0 0 0 0.000244141 0 3.8147e-06 0 0" + "row4" "0 0 0 0 0 0 0.00024417 0 0" + "row5" "0 0 0 0 0 0 0.00024417 0 0" + "row6" "0 0 0 0 0.000244141 0 3.8147e-06 0 0" + "row7" "0 0 0 0 0.000244141 0 3.8147e-06 0 0" + "row8" "0.000244141 0 0 0 0 0 3.10268 8.35243 8.29211" + } + 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" "24.2593 11.8519 0 100 0 255 150 255 0" + "row7" "72.7778 255 255 255 255 255 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" "373699" + "plane" "(-1479 -3787 33) (-1412 -3803 33) (-1412 -3471 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373698" + "plane" "(-1479 -3471 33) (-1479 -3471 34) (-1479 -3787 34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373697" + "plane" "(-1479 -3787 33) (-1479 -3787 34) (-1412 -3803 34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373696" + "plane" "(-1412 -3471 33) (-1412 -3471 34) (-1479 -3471 34)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373695" + "plane" "(-1412 -3803 33) (-1412 -3803 34) (-1412 -3471 34)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280241" + side + { + "id" "373787" + "plane" "(-880 -3708 280) (-880 -3504 280) (-488 -3504 280)" + "material" "TOOLS/TOOLSCLIP_DIRT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373788" + "plane" "(-880 -3504 17) (-880 -3708 17) (-488 -3708 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373789" + "plane" "(-880 -3708 17) (-880 -3504 17) (-880 -3504 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373790" + "plane" "(-488 -3504 17) (-488 -3708 17) (-488 -3708 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373791" + "plane" "(-880 -3504 17) (-488 -3504 17) (-488 -3504 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373792" + "plane" "(-488 -3708 17) (-880 -3708 17) (-880 -3708 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 150 251" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280865" + side + { + "id" "373993" + "plane" "(-104 -3768 32) (-80 -3768 32) (-80 -3892 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373992" + "plane" "(-104 -3892 16) (-80 -3892 16) (-80 -3768 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" "373991" + "plane" "(-80 -3768 16) (-80 -3892 16) (-80 -3892 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" "373990" + "plane" "(-104 -3768 16) (-80 -3768 16) (-80 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373989" + "plane" "(-80 -3892 16) (-104 -3892 16) (-104 -3892 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373988" + "plane" "(-104 -3892 16) (-104 -3768 16) (-104 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280937" + side + { + "id" "373999" + "plane" "(-440 -3768 32) (-878 -3768 32) (-878 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373998" + "plane" "(-440 -3550 16) (-878 -3550 16) (-878 -3768 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" "373997" + "plane" "(-878 -3768 16) (-878 -3550 16) (-878 -3550 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" "373996" + "plane" "(-878 -3550 16) (-440 -3550 16) (-440 -3550 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" "373995" + "plane" "(-440 -3768 16) (-878 -3768 16) (-878 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373994" + "plane" "(-440 -3550 16) (-440 -3768 16) (-440 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280943" + side + { + "id" "374011" + "plane" "(-104 -3550 32) (-80 -3550 32) (-80 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374010" + "plane" "(-104 -3768 16) (-80 -3768 16) (-80 -3550 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" "374009" + "plane" "(-80 -3550 16) (-80 -3768 16) (-80 -3768 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" "374008" + "plane" "(-104 -3550 16) (-80 -3550 16) (-80 -3550 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" "374007" + "plane" "(-80 -3768 16) (-104 -3768 16) (-104 -3768 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374006" + "plane" "(-104 -3768 16) (-104 -3550 16) (-104 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280972" + side + { + "id" "374023" + "plane" "(-752 -4064 32) (-752 -3984 32) (-712 -3942 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374022" + "plane" "(-752 -4064 16) (-712 -4064 16) (-712 -3942 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" "374021" + "plane" "(-752 -3984 16) (-752 -3984 32) (-752 -4064 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" "374020" + "plane" "(-752 -4064 16) (-752 -4064 32) (-712 -4064 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" "374019" + "plane" "(-712 -3942 16) (-712 -3942 32) (-752 -3984 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374018" + "plane" "(-712 -4064 16) (-712 -4064 32) (-712 -3942 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280973" + side + { + "id" "374029" + "plane" "(-712 -4064 32) (-712 -3942 32) (-672 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374028" + "plane" "(-672 -4064 16) (-672 -3920 16) (-712 -3942 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" "374027" + "plane" "(-712 -4064 16) (-712 -4064 32) (-672 -4064 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" "374026" + "plane" "(-672 -4064 16) (-672 -4064 32) (-672 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374025" + "plane" "(-672 -3920 16) (-672 -3920 32) (-712 -3942 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374024" + "plane" "(-712 -3942 16) (-712 -3942 32) (-712 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6262940" + side + { + "id" "373549" + "plane" "(-656 -4539 35) (-725 -4512 35) (-724 -4170 35)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-725 -4512 35]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -1 0 0 -1 0 0 -1 0 0 0.999999 0 0 0.999999 0 0 0.999998 0 0 0.999999 0 0 -0.999995 0 0 -0.999998" + "row1" "0 0 1 0 0 0.999998 0 0 -0.999998 0 0 1 0 0 1 0 0 -0.999999 0 0 0.999999 0 0 -0.999999 0 0 0.999998" + "row2" "0 0 1 0 0 1 0 0 -1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999997 0 0 0.999998" + "row3" "0 0 1 0 0 0.999995 0 0 1 0 0 -0.999999 0 0 0.999999 0 0 0.999999 0 0 1 0 0 -0.999999 0 0 0.999998" + "row4" "0 0 0.999999 0 0 1 0 0 0.999998 0 0 -0.999998 0 0 1 0 0 1 0 0 0.999997 0 0 0.999999 0 0 0.999985" + "row5" "0 0 0.999999 0 0 0.999997 0 0 1 0 0 1 0 0 0.999993 0 0 0.999998 0 0 1 0 0 1 0 0 0.999997" + "row6" "0 0 0.999999 0 0 -0.999998 0 0 -1 0 0 1 0 0 1 0 0 0.999997 0 0 0.999999 0 0 0.999999 0 0 0.999999" + "row7" "0 0 0.999999 0 0 0.999963 0 0 -0.999992 0 0 1 0 0 0.999999 0 0 1 0 0 0.999999 0 0 0.999999 0 0 -0.999999" + "row8" "0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.999999 0 0 -0.999996 0 0 1 0 0 0.999997 0 0 -0.999995" + } + distances + { + "row0" "9.02559 10.0938 3.59571 0.18071 0.158169 0.0630455 0.140743 0.0228004 0.0607796" + "row1" "0.583336 0.0738449 0.0513496 0.583336 0.440365 0.230354 0.16711 0.195255 0.0593796" + "row2" "0.47036 0.423714 0.291668 0.447182 0.264965 0.307652 0.318409 0.0473213 0.0676422" + "row3" "0.328289 0.0225983 0.248196 0.21027 0.112274 0.126373 0.523018 0.170082 0.060215" + "row4" "0.188557 0.36972 0.0634727 0.0521431 0.261974 0.23727 0.0389214 0.195839 0.00809097" + "row5" "0.12748 0.0378685 0.446354 0.583336 0.0180016 0.0630569 0.394497 0.583336 0.0366859" + "row6" "0.123882 0.0582619 0.291668 0.329205 0.254887 0.0473289 0.0860863 0.220211 0.183865" + "row7" "0.148945 0.00323868 0.0142441 0.583336 0.176327 0.392834 0.18924 0.236469 0.116482" + "row8" "6.89163 6.18972 3.48467 2.14132 0.137779 0.0293808 0.307144 0.0462456 0.0254059" + } + 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.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668" + "row1" "0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668" + "row2" "0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668" + "row3" "0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668" + "row4" "0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668" + "row5" "0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668" + "row6" "0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668" + "row7" "0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668" + "row8" "0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668 0 0 0.291668" + } + alphas + { + "row0" "0 0 0 200 125 225 0 0 0" + "row1" "0 75 255 255 255 255 250 150 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" "50 0 75 100 125 255 175 75 25" + "row7" "0 175 255 255 175 50 75 0 0" + "row8" "0 0 0 25 150 0 0 0 0" + } + triangle_tags + { + "row0" "9 9 1 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" "373550" + "plane" "(-656 -4143 32.375) (-724 -4170 32.375) (-725 -4512 32.375)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373551" + "plane" "(-725 -4512 32.375) (-724 -4170 32.375) (-724 -4170 35)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -6.50003] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373552" + "plane" "(-656 -4539 35) (-656 -4143 35) (-656 -4143 32.375)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -6.50003] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373553" + "plane" "(-724 -4170 32.375) (-656 -4143 32.375) (-656 -4143 35)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -6.50003] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373554" + "plane" "(-725 -4512 35) (-656 -4539 35) (-656 -4539 32.375)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -6.50003] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 137" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6263029" + side + { + "id" "373683" + "plane" "(-280 -4375 -48) (-248 -4384 -48) (-666 -4384 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373684" + "plane" "(-248 -4384 -224) (-280 -4375 -224) (-666 -4375 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373685" + "plane" "(-666 -4384 -48) (-666 -4384 -224) (-666 -4375 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373686" + "plane" "(-248 -4384 -224) (-248 -4384 -48) (-280 -4375 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373687" + "plane" "(-666 -4375 -48) (-666 -4375 -224) (-280 -4375 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373688" + "plane" "(-666 -4384 -224) (-666 -4384 -48) (-248 -4384 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 184 105" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6227809" + side + { + "id" "373339" + "plane" "(-712 -4688 32) (-648 -4688 32) (-648 -4712 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373338" + "plane" "(-648 -4688 16) (-712.01 -4688 16) (-648 -4712 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" "373337" + "plane" "(-712 -4688 16) (-648 -4688 16) (-648 -4688 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" "373336" + "plane" "(-648 -4688 16) (-648 -4712 16) (-648 -4712 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373335" + "plane" "(-648 -4712 16) (-712 -4688 16) (-712 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6227891" + side + { + "id" "373351" + "plane" "(-648 -4688 32) (-602 -4688 32) (-602 -4720 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373350" + "plane" "(-602 -4720 16) (-602 -4688 16) (-648 -4688 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" "373349" + "plane" "(-602 -4688 16) (-602 -4720 16) (-602 -4720 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" "373348" + "plane" "(-648 -4688 16) (-602 -4688 16) (-602 -4688 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" "373347" + "plane" "(-648 -4712 16) (-648 -4688 16) (-648 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373346" + "plane" "(-602 -4720 16) (-648 -4712 16) (-648 -4712 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6227997" + side + { + "id" "373363" + "plane" "(-602 -4960 32) (-602 -4992 32) (-648 -4992 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373362" + "plane" "(-648 -4944 16) (-648 -4992 16) (-602 -4992 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" "373361" + "plane" "(-602 -4960 16) (-602 -4992 16) (-602 -4992 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" "373360" + "plane" "(-602 -4992 16) (-648 -4992 16) (-648 -4992 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" "373359" + "plane" "(-648 -4992 16) (-648 -4944 16) (-648 -4944 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373358" + "plane" "(-648 -4944 16) (-602 -4960 16) (-602 -4960 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6228242" + side + { + "id" "373387" + "plane" "(-648 -4992 32) (-712 -4992 32) (-712 -4912 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373386" + "plane" "(-712 -4992 16) (-648 -4992 16) (-648 -4944 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" "373385" + "plane" "(-648 -4992 16) (-712 -4992 16) (-712 -4992 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" "373384" + "plane" "(-648 -4944 16) (-648 -4992 16) (-648 -4992 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373383" + "plane" "(-712 -4992 16) (-712 -4912 16) (-712 -4912 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373382" + "plane" "(-712 -4912 16) (-648 -4944 16) (-648 -4944 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6228457" + side + { + "id" "373411" + "plane" "(-712 -4992 32) (-768 -4992 32) (-768 -4864 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373410" + "plane" "(-768 -4864 16) (-768 -4992 16) (-712 -4992 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" "373409" + "plane" "(-712 -4992 16) (-768 -4992 16) (-768 -4992 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" "373408" + "plane" "(-712 -4912 16) (-712 -4992 16) (-712 -4992 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373407" + "plane" "(-768 -4992 16) (-768 -4864 16) (-768 -4864 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373406" + "plane" "(-768 -4864 16) (-712 -4912 16) (-712 -4912 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6228675" + side + { + "id" "373435" + "plane" "(-768 -4992 32) (-824 -4992 32) (-824 -4784 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373434" + "plane" "(-824 -4784 16) (-824 -4992 16) (-768 -4992 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" "373433" + "plane" "(-768 -4992 16) (-824 -4992 16) (-824 -4992 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" "373432" + "plane" "(-768 -4864 16) (-768 -4992 16) (-768 -4992 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373431" + "plane" "(-824 -4992 16) (-824 -4784 16) (-824 -4784 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373430" + "plane" "(-824 -4784 16) (-768 -4864 16) (-768 -4864 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6228717" + side + { + "id" "373453" + "plane" "(-888 -4992 32) (-992 -4992 32) (-992 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373452" + "plane" "(-888 -4688 16) (-992 -4688 16) (-992 -4992 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" "373451" + "plane" "(-992 -4992 16) (-992 -4688 16) (-992 -4688 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" "373450" + "plane" "(-992 -4688 16) (-888 -4688 16) (-888 -4688 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" "373449" + "plane" "(-888 -4992 16) (-992 -4992 16) (-992 -4992 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" "373448" + "plane" "(-888 -4688 16) (-888 -4992 16) (-888 -4992 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6228787" + side + { + "id" "373470" + "plane" "(-888 -4992 32) (-888 -4688 32) (-824 -4784 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373469" + "plane" "(-888 -4992 16) (-824 -4992 16) (-824 -4784 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" "373468" + "plane" "(-888 -4992 16) (-888 -4992 32) (-824 -4992 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" "373467" + "plane" "(-824 -4992 16) (-824 -4992 32) (-824 -4784 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373466" + "plane" "(-888 -4688 16) (-888 -4688 32) (-888 -4992 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373465" + "plane" "(-824 -4784 16) (-824 -4784 32) (-888 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 232" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6228798" + side + { + "id" "373482" + "plane" "(-602 -4992 32) (-602 -4960 32) (-576 -4960 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373481" + "plane" "(-602 -4960 16) (-602 -4992 16) (-576 -4992 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" "373480" + "plane" "(-602 -4992 16) (-602 -4960 16) (-602 -4960 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" "373479" + "plane" "(-576 -4960 16) (-576 -4992 16) (-576 -4992 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" "373478" + "plane" "(-576 -4992 16) (-602 -4992 16) (-602 -4992 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" "373477" + "plane" "(-602 -4960 16) (-576 -4960 16) (-576 -4960 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 240" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6228803" + side + { + "id" "373500" + "plane" "(-602 -4720 32) (-602 -4662 32) (-576 -4662 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373499" + "plane" "(-602 -4662 16) (-602 -4720 16) (-576 -4720 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" "373498" + "plane" "(-602 -4720 16) (-602 -4662 16) (-602 -4662 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" "373497" + "plane" "(-576 -4662 16) (-576 -4720 16) (-576 -4720 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" "373496" + "plane" "(-602 -4662 16) (-576 -4662 16) (-576 -4662 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" "373495" + "plane" "(-576 -4720 16) (-602 -4720 16) (-602 -4720 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 240" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6229049" + side + { + "id" "373512" + "plane" "(-1049 -4064 32) (-1072 -3805 32) (-1000 -3805 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373511" + "plane" "(-1072 -3805 16) (-1049 -4064 16) (-944 -4064 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" "373510" + "plane" "(-1049 -4064 16) (-1072 -3805 16) (-1072 -3805 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" "373509" + "plane" "(-1072 -3805 16) (-1000 -3805 16) (-1000 -3805 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" "373508" + "plane" "(-944 -4064 16) (-1049 -4064 16) (-1049 -4064 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" "373507" + "plane" "(-1000 -3805 16) (-944 -4064 16) (-944 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6229229" + side + { + "id" "373536" + "plane" "(-1072 -3805 32) (-1072 -3550 32) (-1008 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373535" + "plane" "(-1072 -3550 16) (-1072 -3805 16) (-1000 -3805 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" "373534" + "plane" "(-1072 -3805 16) (-1072 -3550 16) (-1072 -3550 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" "373533" + "plane" "(-1072 -3550 16) (-1008 -3550 16) (-1008 -3550 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" "373532" + "plane" "(-1000 -3805 16) (-1072 -3805 16) (-1072 -3805 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" "373531" + "plane" "(-1008 -3550 16) (-1000 -3805 16) (-1000 -3805 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 120" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6210376" + side + { + "id" "373273" + "plane" "(-602 -4688 32) (-712 -4688 32) (-744 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373272" + "plane" "(-602 -4648 16) (-744 -4648 16) (-711.995 -4688 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" "373271" + "plane" "(-602 -4688 32) (-602 -4648 32) (-602 -4648 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" "373270" + "plane" "(-602 -4648 32) (-744 -4648 32) (-744 -4648 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" "373269" + "plane" "(-712 -4688 32) (-602 -4688 32) (-602 -4688 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" "373268" + "plane" "(-744 -4648 32) (-712 -4688 32) (-711.995 -4688 16)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 215 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6210506" + side + { + "id" "373279" + "plane" "(-888 -4688 32) (-1009 -4688 32) (-1009 -4648 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373278" + "plane" "(-912 -4648 16) (-1009 -4648 16) (-1009 -4688 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" "373277" + "plane" "(-1009 -4688 16) (-1009 -4648 16) (-1009 -4648 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" "373276" + "plane" "(-1009 -4648 16) (-912 -4648 16) (-912 -4648 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" "373275" + "plane" "(-888 -4688 16) (-1009 -4688 16) (-1009 -4688 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" "373274" + "plane" "(-912 -4648 16) (-888 -4688 16) (-888 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 215 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6210834" + side + { + "id" "373291" + "plane" "(-752 -4064 32) (-656 -4064 32) (-656 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373290" + "plane" "(-760 -4088 16) (-656 -4088 16) (-656 -4064 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" "373289" + "plane" "(-656 -4064 16) (-656 -4088 16) (-656 -4088 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" "373288" + "plane" "(-752 -4064 16) (-656 -4064 16) (-656 -4064 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" "373287" + "plane" "(-656 -4088 16) (-760 -4088 16) (-760 -4088 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" "373286" + "plane" "(-760 -4088 16) (-752 -4064 16) (-752 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "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 244" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6210966" + side + { + "id" "373309" + "plane" "(-936 -4088 32) (-1064 -4088 32) (-1064 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373308" + "plane" "(-944 -4064 16) (-1064 -4064 16) (-1064 -4088 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" "373307" + "plane" "(-1064 -4088 16) (-1064 -4064 16) (-1064 -4064 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" "373306" + "plane" "(-1064 -4064 16) (-944 -4064 16) (-944 -4064 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" "373305" + "plane" "(-936 -4088 16) (-1064 -4088 16) (-1064 -4088 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" "373304" + "plane" "(-944 -4064 16) (-936 -4088 16) (-936 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "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 244" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192693" + side + { + "id" "373090" + "plane" "(-1456 -5152 32) (-1456 -3824 32) (-1088 -3824 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1456 -5152 32]" + "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 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" + } + 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 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" + } + 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 75 255 255 255 75 0 0" + "row2" "0 0 0 25 55 255 255 255 0" + "row3" "0 0 0 0 0 180 255 255 0" + "row4" "0 0 200 200 255 255 255 100 0" + "row5" "0 0 0 0 255 255 255 0 0" + "row6" "0 0 0 0 255 255 255 0 0" + "row7" "0 150 255 255 255 255 255 0 0" + "row8" "0 0 0 0 225 255 255 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" "373089" + "plane" "(-1456 -3824 31) (-1456 -3824 32) (-1456 -5152 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" "373088" + "plane" "(-1088 -5152 31) (-1088 -5152 32) (-1088 -3824 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373087" + "plane" "(-1456 -5152 31) (-1456 -5152 32) (-1088 -5152 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" "373086" + "plane" "(-1088 -3824 31) (-1088 -3824 32) (-1456 -3824 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373085" + "plane" "(-1456 -3824 31) (-1456 -5152 31) (-1088 -5152 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 139 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192694" + side + { + "id" "373096" + "plane" "(-1456 -3824 -16) (-1456 -5152 -16) (-1088 -5152 -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" "373095" + "plane" "(-1456 -5152 -16) (-1456 -3824 -16) (-1456 -3824 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373094" + "plane" "(-1088 -3824 -16) (-1088 -5152 -16) (-1088 -5152 31)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373093" + "plane" "(-1088 -5152 -16) (-1456 -5152 -16) (-1456 -5152 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373092" + "plane" "(-1456 -3824 -16) (-1088 -3824 -16) (-1088 -3824 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373091" + "plane" "(-1456 -5152 31) (-1456 -3824 31) (-1088 -3824 31)" + "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 139 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192737" + side + { + "id" "373108" + "plane" "(-1456 -2912 -16) (-1456 -3824 -16) (-1088 -3824 -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" "373107" + "plane" "(-1456 -3824 32) (-1456 -3824 -16) (-1456 -2912 -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" "373106" + "plane" "(-1088 -2912 32) (-1088 -2912 -16) (-1088 -3824 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373105" + "plane" "(-1456 -2912 32) (-1456 -2912 -16) (-1088 -2912 -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" "373104" + "plane" "(-1088 -3824 32) (-1088 -3824 -16) (-1456 -3824 -16)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373103" + "plane" "(-1456 -3824 32) (-1456 -2912 32) (-1088 -2912 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 139 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192880" + side + { + "id" "373114" + "plane" "(-1008 -5008 32) (-1088 -5008 32) (-1088 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1088 -5008 32]" + "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 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" + } + 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 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" + } + 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" "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" "373113" + "plane" "(-1008 -4688 31) (-1008 -4688 32) (-1088 -4688 32)" + "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" "373112" + "plane" "(-1088 -4688 31) (-1088 -4688 32) (-1088 -5008 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373111" + "plane" "(-1088 -5008 31) (-1088 -5008 32) (-1008 -5008 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373110" + "plane" "(-1008 -5008 31) (-1008 -5008 32) (-1008 -4688 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" "373109" + "plane" "(-1008 -4688 31) (-1088 -4688 31) (-1088 -5008 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192881" + side + { + "id" "373120" + "plane" "(-1008 -4688 -16) (-1088 -4688 -16) (-1088 -5008 -16)" + "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" "373119" + "plane" "(-1088 -4688 -16) (-1008 -4688 -16) (-1008 -4688 31)" + "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" "373118" + "plane" "(-1088 -5008 -16) (-1088 -4688 -16) (-1088 -4688 31)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373117" + "plane" "(-1008 -5008 -16) (-1088 -5008 -16) (-1088 -5008 31)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373116" + "plane" "(-1008 -4688 -16) (-1008 -5008 -16) (-1008 -5008 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373115" + "plane" "(-1008 -5008 31) (-1088 -5008 31) (-1088 -4688 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192886" + side + { + "id" "373130" + "plane" "(-1088 -3804.8 16) (-1088 -4688 16) (-1004.68 -4688 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" "373129" + "plane" "(-1004.68 -4688 16) (-1088 -4688 16) (-1088 -4688 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373128" + "plane" "(-1088 -4688 16) (-1088 -3804.8 16) (-1088 -3804.8 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.130752 -0.991415 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373127" + "plane" "(-1088 -3804.8 16) (-1004.68 -4688 16) (-1004.68 -4688 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.0939225 0.995579 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373126" + "plane" "(-1004.68 -4688 31) (-1088 -4688 31) (-1088 -3804.8 31)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 144 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192906" + side + { + "id" "373136" + "plane" "(-1004.68 -4688 32) (-1088 -4688 32) (-1088 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1088 -4688 32]" + "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 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" + } + 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 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" + } + 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" "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" "373135" + "plane" "(-1088 -4688 31) (-1088 -4688 32) (-1004.68 -4688 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" "373134" + "plane" "(-1088 -3920 32) (-1088 -4688 32) (-1088 -4688 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.130752 -0.991415 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373133" + "plane" "(-1004.68 -4688 31) (-1004.68 -4688 32) (-1077.13 -3920 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.0939225 0.995579 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373132" + "plane" "(-1088 -3920 31) (-1088 -4688 31) (-1004.68 -4688 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373131" + "plane" "(-1077.13 -3920 31) (-1077.13 -3920 32) (-1088 -3920 32)" + "material" "CS_APOLLO/OUTSIDE/BLEND_CONC" + "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 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192912" + side + { + "id" "373153" + "plane" "(-1088 -5008 -16) (-1088 -5152 -16) (-528 -5152 -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" "373152" + "plane" "(-1088 -5152 32) (-1088 -5152 -16) (-1088 -5008 -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" "373151" + "plane" "(-528 -5008 32) (-528 -5008 -16) (-528 -5152 -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" "373150" + "plane" "(-1088 -5008 32) (-1088 -5008 -16) (-528 -5008 -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" "373149" + "plane" "(-528 -5152 32) (-528 -5152 -16) (-1088 -5152 -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" "373148" + "plane" "(-1088 -5152 32) (-1088 -5008 32) (-528 -5008 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192917" + side + { + "id" "373165" + "plane" "(-936 -5664 -16) (-528 -5664 -16) (-528 -5152 -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" "373164" + "plane" "(-528 -5152 32) (-528 -5152 -16) (-528 -5664 -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" "373163" + "plane" "(-936 -5152 32) (-936 -5152 -16) (-528 -5152 -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" "373162" + "plane" "(-528 -5664 32) (-528 -5664 -16) (-936 -5664 -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" "373161" + "plane" "(-936 -5664 32) (-936 -5664 -16) (-936 -5152 -16)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373160" + "plane" "(-936 -5152 32) (-528 -5152 32) (-528 -5664 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192922" + side + { + "id" "373177" + "plane" "(-1016 -5664 -16) (-936 -5664 -16) (-936 -5392 -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" "373176" + "plane" "(-936 -5664 32) (-936 -5664 -16) (-1016 -5664 -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" "373175" + "plane" "(-936 -5392 32) (-936 -5392 -16) (-936 -5664 -16)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373174" + "plane" "(-1016 -5392 32) (-1016 -5392 -16) (-936 -5392 -16)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373173" + "plane" "(-1016 -5664 32) (-1016 -5664 -16) (-1016 -5392 -16)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373172" + "plane" "(-936 -5664 32) (-1016 -5664 32) (-1016 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192928" + side + { + "id" "373189" + "plane" "(-936 -5152 -16) (-1456 -5152 -16) (-1456 -5392 -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" "373188" + "plane" "(-1456 -5392 32) (-1456 -5392 -16) (-1456 -5152 -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" "373187" + "plane" "(-1456 -5152 32) (-1456 -5152 -16) (-936 -5152 -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" "373186" + "plane" "(-936 -5152 32) (-936 -5152 -16) (-936 -5392 -16)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373185" + "plane" "(-936 -5392 32) (-936 -5392 -16) (-1456 -5392 -16)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373184" + "plane" "(-1456 -5392 32) (-1456 -5152 32) (-936 -5152 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192932" + side + { + "id" "373195" + "plane" "(-2176 -5392 32) (-2176 -3584 32) (-1456 -3584 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-2176 -5392 32]" + "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 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" + } + 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 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" + } + 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 255 255 255 0 0" + "row1" "0 0 255 255 255 255 255 25 0" + "row2" "0 0 0 0 0 0 255 255 0" + "row3" "0 0 0 200 255 255 100 0 0" + "row4" "0 0 0 0 0 125 255 175 0" + "row5" "0 0 0 0 0 255 255 0 0" + "row6" "0 0 0 0 0 0 255 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" "373194" + "plane" "(-1456 -5392 31) (-1456 -5392 32) (-1456 -3584 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" "373193" + "plane" "(-1456 -3584 31) (-1456 -3584 32) (-2176 -3584 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" "373192" + "plane" "(-2176 -3584 31) (-2176 -3584 32) (-2176 -5392 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" "373191" + "plane" "(-2176 -5392 31) (-2176 -5392 32) (-1456 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373190" + "plane" "(-1456 -5392 31) (-1456 -3584 31) (-2176 -3584 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192933" + side + { + "id" "373201" + "plane" "(-1456 -5392 -16) (-1456 -3584 -16) (-2176 -3584 -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" "373200" + "plane" "(-1456 -3584 -16) (-1456 -5392 -16) (-1456 -5392 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373199" + "plane" "(-2176 -3584 -16) (-1456 -3584 -16) (-1456 -3584 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373198" + "plane" "(-2176 -5392 -16) (-2176 -3584 -16) (-2176 -3584 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373197" + "plane" "(-1456 -5392 -16) (-2176 -5392 -16) (-2176 -5392 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373196" + "plane" "(-2176 -5392 31) (-2176 -3584 31) (-1456 -3584 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192980" + side + { + "id" "373207" + "plane" "(-1529 -5664 32) (-2328 -5664 32) (-2328 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-2328 -5664 32]" + "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 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" + } + 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 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" + } + 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 50 0 0" + "row4" "0 0 0 0 0 0 250 0 0" + "row5" "0 0 0 0 0 225 255 0 0" + "row6" "0 0 0 0 0 255 255 150 0" + "row7" "0 0 0 0 0 255 255 255 0" + "row8" "0 0 0 0 0 255 255 255 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" "373206" + "plane" "(-2328 -5664 31) (-2328 -5664 32) (-1529 -5664 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" "373205" + "plane" "(-2328 -5392 31) (-2328 -5392 32) (-2328 -5664 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373204" + "plane" "(-1529 -5392 31) (-1529 -5392 32) (-2328 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373203" + "plane" "(-1529 -5664 31) (-1529 -5664 32) (-1529 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373202" + "plane" "(-1529 -5392 31) (-2328 -5392 31) (-2328 -5664 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6192981" + side + { + "id" "373213" + "plane" "(-1529 -5392 -16) (-2328 -5392 -16) (-2328 -5664 -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" "373212" + "plane" "(-1529 -5664 -16) (-2328 -5664 -16) (-2328 -5664 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373211" + "plane" "(-2328 -5664 -16) (-2328 -5392 -16) (-2328 -5392 31)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373210" + "plane" "(-2328 -5392 -16) (-1529 -5392 -16) (-1529 -5392 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373209" + "plane" "(-1529 -5392 -16) (-1529 -5664 -16) (-1529 -5664 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373208" + "plane" "(-1529 -5664 31) (-2328 -5664 31) (-2328 -5392 31)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141675" + side + { + "id" "372610" + "plane" "(600 -2683 0) (600 -2505 0) (605.111 -2505 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372609" + "plane" "(600 -2505 -40) (600 -2683 -40) (664 -2683 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372608" + "plane" "(600 -2683 -40) (600 -2505 -40) (600 -2505 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372607" + "plane" "(600 -2505 -40) (664 -2505 -40) (605.111 -2505 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372606" + "plane" "(664 -2683 -40) (600 -2683 -40) (600 -2683 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372605" + "plane" "(605.115 -2683 -0) (605.115 -2505 -0) (664 -2505 -40)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 144" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141676" + side + { + "id" "372611" + "plane" "(496 -2416 -4) (600 -2416 -4) (600 -2687 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372612" + "plane" "(496 -2687 -40) (600 -2687 -40) (600 -2416 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372613" + "plane" "(496 -2416 -4) (496 -2687 -4) (496 -2687 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372614" + "plane" "(600 -2416 -40) (600 -2687 -40) (600 -2687 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372615" + "plane" "(600 -2416 -4) (496 -2416 -4) (496 -2416 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372616" + "plane" "(600 -2687 -40) (496 -2687 -40) (496 -2687 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141703" + side + { + "id" "372622" + "plane" "(608 -2816 -40) (496 -2816 -40) (496 -2657 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 -638] 0.125" + "vaxis" "[0 -1 0 120] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372621" + "plane" "(496 -2657 -86) (496 -2816 -86) (608 -2816 -86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372620" + "plane" "(496 -2816 -86) (496 -2657 -86) (496 -2657 -40)" + "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" "372619" + "plane" "(608 -2816 -86) (496 -2816 -86) (496 -2816 -40)" + "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" "372618" + "plane" "(608 -2657 -86) (608 -2816 -86) (608 -2816 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372617" + "plane" "(496 -2657 -86) (608 -2657 -86) (608 -2657 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141704" + side + { + "id" "372628" + "plane" "(496 -2657 -40) (496 -2064 -40) (608 -2064 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372627" + "plane" "(608 -2064 -86) (496 -2064 -86) (496 -2657 -86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372626" + "plane" "(496 -2657 -86) (496 -2064 -86) (496 -2064 -40)" + "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" "372625" + "plane" "(496 -2064 -86) (608 -2064 -86) (608 -2064 -40)" + "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" "372624" + "plane" "(608 -2064 -86) (608 -2657 -86) (608 -2657 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372623" + "plane" "(608 -2657 -86) (496 -2657 -86) (496 -2657 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141706" + side + { + "id" "372629" + "plane" "(496 -2682 42.75) (596 -2682 42.75) (596 -2684 42.75)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372630" + "plane" "(496 -2684 -0.250004) (596 -2684 -0.250004) (596 -2682 -0.250004)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372631" + "plane" "(496 -2682 42.75) (496 -2684 42.75) (496 -2684 -0.250004)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372632" + "plane" "(596 -2682 -0.250004) (596 -2684 -0.250004) (596 -2684 42.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372633" + "plane" "(596 -2682 42.75) (496 -2682 42.75) (496 -2682 -0.250004)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372634" + "plane" "(596 -2684 -0.250004) (496 -2684 -0.250004) (496 -2684 42.75)" + "material" "TOOLS/TOOLSCLIP" + "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" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141707" + side + { + "id" "372635" + "plane" "(496 -2182 26) (600 -2182 26) (600 -2187 26)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372636" + "plane" "(496 -2187 -16.25) (600 -2187 -16.25) (600 -2182 -16.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372637" + "plane" "(496 -2182 26) (496 -2187 26) (496 -2187 -16.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372638" + "plane" "(600 -2182 -16.25) (600 -2187 -16.25) (600 -2187 26)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372639" + "plane" "(600 -2182 26) (496 -2182 26) (496 -2182 -16.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372640" + "plane" "(600 -2187 -16.25) (496 -2187 -16.25) (496 -2187 26)" + "material" "TOOLS/TOOLSCLIP" + "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 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141709" + side + { + "id" "372641" + "plane" "(595 -2426 42.75) (597 -2426 42.75) (597 -2492 42.75)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372642" + "plane" "(595 -2492 -0.25) (597 -2492 -0.25) (597 -2426 -0.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372643" + "plane" "(595 -2426 42.75) (595 -2492 42.75) (595 -2492 -0.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372644" + "plane" "(597 -2426 -0.25) (597 -2492 -0.25) (597 -2492 42.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372645" + "plane" "(597 -2426 42.75) (595 -2426 42.75) (595 -2426 -0.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372646" + "plane" "(597 -2492 -0.25) (595 -2492 -0.25) (595 -2492 42.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141710" + side + { + "id" "382560" + "plane" "(658 -2684 2) (658 -2686 2) (607 -2686 34.75)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382559" + "plane" "(658 -2686 -40.25) (658 -2684 -40.25) (607 -2684 -40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382558" + "plane" "(607 -2686 34.75) (607 -2686 -40.25) (607 -2684 -40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382557" + "plane" "(658 -2686 -40.25) (658 -2686 2) (658 -2684 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382556" + "plane" "(607 -2684 34.75) (607 -2684 -40.25) (658 -2684 -40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382555" + "plane" "(607 -2686 -40.25) (607 -2686 34.75) (658 -2686 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141712" + side + { + "id" "372664" + "plane" "(663 -2593 2) (663 -2595 2) (612 -2595 34.75)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372663" + "plane" "(663 -2595 -40.25) (663 -2593 -40.25) (612 -2593 -40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372662" + "plane" "(612 -2595 34.75) (612 -2595 -40.25) (612 -2593 -40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372661" + "plane" "(663 -2595 -40.25) (663 -2595 2) (663 -2593 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372660" + "plane" "(612 -2593 34.75) (612 -2593 -40.25) (663 -2593 -40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372659" + "plane" "(612 -2595 -40.25) (612 -2595 34.75) (663 -2595 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141714" + side + { + "id" "372676" + "plane" "(612 -2506 34.7497) (612 -2504 34.7497) (663 -2504 2)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372675" + "plane" "(612 -2504 -40.25) (612 -2506 -40.25) (663 -2506 -40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372674" + "plane" "(612 -2506 -40.25) (612 -2504 -40.25) (612 -2504 34.752)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372673" + "plane" "(663 -2504 -40.25) (663 -2506 -40.25) (663 -2506 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372672" + "plane" "(612 -2504 -40.25) (663 -2504 -40.25) (663 -2504 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372671" + "plane" "(612 -2506 34.7539) (663 -2506 2) (663 -2506 -40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6141785" + side + { + "id" "372694" + "plane" "(595 -2414 40.25) (595 -2409.67 40.25) (597 -2409.67 40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372693" + "plane" "(595 -2281 -21.75) (595 -2414 -21.75) (597 -2414 -21.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372692" + "plane" "(595 -2414 -21.75) (595 -2281 -21.75) (595 -2281 21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372691" + "plane" "(597 -2281 -21.75) (597 -2414 -21.75) (597 -2414 40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372690" + "plane" "(595 -2281 -21.75) (597 -2281 -21.75) (597 -2281 21)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372689" + "plane" "(597 -2414 -21.75) (595 -2414 -21.75) (595 -2414 40.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372688" + "plane" "(597 -2409.68 40.25) (595 -2409.68 40.25) (595 -2281 21)" + "material" "TOOLS/TOOLSCLIP_METAL" + "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 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6142014" + side + { + "id" "372706" + "plane" "(600 -2182 -40.75) (600 -2187 -40.75) (760 -2187 -40.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372705" + "plane" "(600 -2187 -40.75) (600 -2182 -40.75) (600 -2182 25.6154)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372704" + "plane" "(760 -2182 -40.75) (760 -2187 -40.75) (760 -2187 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372703" + "plane" "(600 -2182 -40.75) (760 -2182 -40.75) (760 -2182 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372702" + "plane" "(760 -2187 -40.75) (600 -2187 -40.75) (600 -2187 25.6154)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372701" + "plane" "(600 -2187 25.6154) (600 -2182 25.6154) (760 -2182 1)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 251 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6142024" + side + { + "id" "372736" + "plane" "(625 -2283 -40.75) (760 -2283 -40.75) (760 -2281 -40.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372735" + "plane" "(760 -2281 1) (760 -2281 -40.75) (760 -2283 -40.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372734" + "plane" "(625 -2281 -40.75) (760 -2281 -40.75) (760 -2281 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372733" + "plane" "(760 -2283 1) (760 -2283 -40.75) (625 -2283 -40.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372732" + "plane" "(625 -2281 21.7692) (760 -2281 1) (760 -2283 1)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372731" + "plane" "(625 -2283 21.7695) (625 -2283 -40.75) (625 -2281 -40.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 251 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6142101" + side + { + "id" "372754" + "plane" "(872 -2816 -40) (608 -2816 -40) (608 -2704 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372753" + "plane" "(608 -2704 -69) (608 -2816 -69) (872 -2816 -69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372752" + "plane" "(872 -2816 -69) (608 -2816 -69) (608 -2816 -40)" + "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" "372751" + "plane" "(608 -2816 -69) (608 -2704 -69) (608 -2704 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372750" + "plane" "(872 -2704 -69) (872 -2816 -69) (872 -2816 -40)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372749" + "plane" "(608 -2704 -69) (872 -2704 -69) (872 -2704 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6142109" + side + { + "id" "372766" + "plane" "(608 -2704 -40) (608 -2688 -40) (680 -2688 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 -638] 0.125" + "vaxis" "[0 -1 0 896] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372765" + "plane" "(608 -2688 -69) (608 -2704 -69) (680 -2704 -69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372764" + "plane" "(608 -2704 -69) (608 -2688 -69) (608 -2688 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372763" + "plane" "(608 -2688 -69) (680 -2688 -69) (680 -2688 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372762" + "plane" "(680 -2704 -69) (608 -2704 -69) (608 -2704 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372761" + "plane" "(680 -2688 -69) (680 -2704 -69) (680 -2704 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6142232" + side + { + "id" "372778" + "plane" "(680 -2064 -40) (872 -2064 -40) (872 -2704 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372777" + "plane" "(872 -2064 -69) (680 -2064 -69) (680 -2704 -69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372776" + "plane" "(680 -2064 -69) (872 -2064 -69) (872 -2064 -40)" + "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" "372775" + "plane" "(872 -2064 -69) (872 -2704 -69) (872 -2704 -40)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372774" + "plane" "(872 -2704 -69) (680 -2704 -69) (680 -2704 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372773" + "plane" "(680 -2704 -69) (680 -2064 -69) (680 -2064 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6142237" + side + { + "id" "372790" + "plane" "(680 -2688 -40) (664 -2688 -40) (664 -2064 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 -320] 0.125" + "vaxis" "[0 -1 0 895] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372789" + "plane" "(680 -2064 -69) (664 -2064 -69) (664 -2688 -69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372788" + "plane" "(664 -2064 -69) (680 -2064 -69) (680 -2064 -40)" + "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" "372787" + "plane" "(680 -2688 -69) (664 -2688 -69) (664 -2688 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372786" + "plane" "(680 -2064 -69) (680 -2688 -69) (680 -2688 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372785" + "plane" "(664 -2688 -69) (664 -2064 -69) (664 -2064 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6142238" + side + { + "id" "372796" + "plane" "(664 -2688 -40) (608 -2688 -40) (608 -2064 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372795" + "plane" "(664 -2064 -69) (608 -2064 -69) (608 -2688 -69)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372794" + "plane" "(608 -2064 -69) (664 -2064 -69) (664 -2064 -40)" + "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" "372793" + "plane" "(608 -2688 -69) (608 -2064 -69) (608 -2064 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372792" + "plane" "(664 -2688 -69) (608 -2688 -69) (608 -2688 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372791" + "plane" "(664 -2064 -69) (664 -2688 -69) (664 -2688 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6142439" + side + { + "id" "372797" + "plane" "(807 -2128 199) (776 -2182 199) (496 -2182 199)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372798" + "plane" "(776 -2182 -41) (807 -2128 -41) (496 -2128 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372799" + "plane" "(496 -2182 199) (496 -2182 -41) (496 -2128 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372800" + "plane" "(776 -2182 -41) (776 -2182 199) (807 -2128 199)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372801" + "plane" "(496 -2128 199) (496 -2128 -41) (807 -2128 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372802" + "plane" "(496 -2182 -41) (496 -2182 199) (776 -2182 199)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 178" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6104316" + side + { + "id" "371740" + "plane" "(-56 -2240 -24) (-56 -2176 -24) (-32 -2176 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371739" + "plane" "(-56 -2176 -72) (-56 -2176 -24) (-56 -2240 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[0 1 0 63.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371738" + "plane" "(-32 -2240 -72) (-32 -2240 -24) (-32 -2176 -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" "371737" + "plane" "(-32 -2176 -72) (-32 -2176 -24) (-56 -2176 -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" "371736" + "plane" "(-56 -2240 -72) (-56 -2240 -24) (-32 -2240 -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" "371735" + "plane" "(-56 -2176 -72) (-56 -2240 -72) (-32 -2240 -72)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 171 188" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6104317" + side + { + "id" "371746" + "plane" "(-336 -2176 -80) (-336 -2240 -80) (-32 -2240 -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" "371745" + "plane" "(-336 -2240 -72) (-336 -2240 -80) (-336 -2176 -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" "371744" + "plane" "(-32 -2176 -72) (-32 -2176 -80) (-32 -2240 -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" "371743" + "plane" "(-336 -2176 -72) (-336 -2176 -80) (-32 -2176 -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" "371742" + "plane" "(-32 -2240 -72) (-32 -2240 -80) (-336 -2240 -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" "371741" + "plane" "(-336 -2240 -72) (-336 -2176 -72) (-32 -2176 -72)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 171 188" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6104523" + side + { + "id" "371825" + "plane" "(-336 -2241 -24) (-336 -2176 -24) (-56 -2176 -24)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371826" + "plane" "(-336 -2176 -28) (-336 -2241 -28) (-56 -2241 -28)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371827" + "plane" "(-336 -2241 -28) (-336 -2176 -28) (-336 -2176 -24)" + "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" "371828" + "plane" "(-56 -2176 -28) (-56 -2241 -28) (-56 -2241 -24)" + "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" "371829" + "plane" "(-336 -2176 -28) (-56 -2176 -28) (-56 -2176 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371830" + "plane" "(-56 -2241 -28) (-336 -2241 -28) (-336 -2241 -24)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 243 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6105086" + side + { + "id" "371854" + "plane" "(2560 -4208 48) (2560 -4208 160) (2560 -4704 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371853" + "plane" "(2656 -4704 48) (2656 -4704 160) (2656 -4208 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" "371852" + "plane" "(2656 -4208 48) (2656 -4208 160) (2560 -4208 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371851" + "plane" "(2560 -4704 48) (2560 -4704 160) (2656 -4704 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" "371850" + "plane" "(2560 -4208 48) (2560 -4704 48) (2656 -4704 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" "371849" + "plane" "(2560 -4704 160) (2560 -4208 160) (2656 -4208 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" + } + editor + { + "color" "0 159 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6105096" + side + { + "id" "371866" + "plane" "(2560 -4208 160) (2560 -4208 192) (2560 -4704 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -380.803] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371865" + "plane" "(2656 -4704 160) (2656 -4704 192) (2656 -4208 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" "371864" + "plane" "(2656 -4208 160) (2656 -4208 192) (2560 -4208 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371863" + "plane" "(2560 -4704 160) (2560 -4704 192) (2656 -4704 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" "371862" + "plane" "(2560 -4208 160) (2560 -4704 160) (2656 -4704 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" "371861" + "plane" "(2560 -4704 192) (2560 -4208 192) (2656 -4208 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 159 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6068184" + side + { + "id" "371728" + "plane" "(-1923.16 -6013 34) (-1980 -5916.5 34) (-1865.4 -5849 34)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0.861629 0.507538 0 -756.997] 0.125" + "vaxis" "[0.507538 -0.861629 0 -308.206] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1923.16 -6013 34]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -0.999994 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 -0.999999 0 0 1 0 0 1 0 0 -0.999999" + "row2" "0 0 -0.999998 0 0 1 0 0 -1 0 0 -0.999999 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 -0.999997 0 0 1 0 0 1 0 0 -1" + "row4" "0 0 1 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -0.999999 0 0 1 0 0 -1" + "row5" "0 0 -1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0 0.999999 0 0 -0.999998 0 0 0.999998 0 0 -0.99999" + "row6" "0 0 1 0 0 1 0 0 1 0 0 0.999996 0 0 -0.999999 0 0 1 0 0 1 0 0 -1 0 0 1" + "row7" "0 0 0.999999 0 0 -0.999996 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 -0.999998 0 0 -1 0 0 1 0 0 1 0 0 -0.999999 0 0 -1" + } + distances + { + "row0" "0.020916 1.59266 1.12671 1.22569 0.40287 1.43253 1.62501 0.752148 1.17645" + "row1" "1.16377 0.445972 1.89912 0.290813 0.242207 0.144684 0.924587 0.698997 0.119873" + "row2" "0.0760231 1.50995 0.58427 0.236073 0.941017 0.877087 0.758064 0.249214 0.566254" + "row3" "0.655907 0.399799 0.853043 0.49556 1.87777 0.0451813 0.367451 1.26957 0.485523" + "row4" "0.355537 0.126389 0.693287 0.719353 0.36969 0.224667 0.0947418 1.23853 0.383858" + "row5" "0.347511 0.669991 0.531631 0.373798 1.21057 0.156055 0.0513039 0.0653152 0.0120506" + "row6" "0.899704 0.610271 0.809315 0.0321541 0.110107 1.62469 0.712177 1.18218 0.512115" + "row7" "0.14489 0.0324898 2 1.12212 0.576744 0.548985 0.365711 1.22386 0.610596" + "row8" "0.681919 1.39119 1.75512 0.0652428 0.782936 0.864964 0.862724 0.195217 0.237751" + } + 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 175 0 0 0 0 0 0 0" + "row2" "0 255 0 0 0 0 0 0 0" + "row3" "0 255 0 0 0 0 0 0 0" + "row4" "0 255 255 0 0 0 0 0 0" + "row5" "0 255 150 250 0 0 255 250 0" + "row6" "0 50 255 25 255 255 250 50 0" + "row7" "0 0 0 255 255 150 200 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" "371727" + "plane" "(-1980 -5916.5 33) (-1923.16 -6013 33) (-1808.56 -5945.5 33)" + "material" "ADS/AD01" + "uaxis" "[0.861629 0.507538 0 -88.4988] 0.25" + "vaxis" "[0.507538 -0.861629 0 -167.603] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371726" + "plane" "(-1923.16 -6013 33) (-1980 -5916.5 33) (-1980 -5916.5 34)" + "material" "ADS/AD01" + "uaxis" "[-0.507538 0.861629 0 167.603] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371725" + "plane" "(-1865.4 -5849 33) (-1808.56 -5945.5 33) (-1808.56 -5945.5 34)" + "material" "ADS/AD01" + "uaxis" "[-0.507538 0.861629 0 167.603] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371724" + "plane" "(-1980 -5916.5 33) (-1865.4 -5849 33) (-1865.39 -5849 34)" + "material" "ADS/AD01" + "uaxis" "[0.861629 0.507538 0 -88.4988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371723" + "plane" "(-1808.56 -5945.5 33) (-1923.16 -6013 33) (-1923.16 -6013 34)" + "material" "ADS/AD01" + "uaxis" "[0.861629 0.507538 0 -88.4988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6034613" + side + { + "id" "371483" + "plane" "(-658 -5251.5 34) (-543.403 -5183.99 34) (-486.559 -5280.5 34)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0.861629 0.507538 0 742.308] 0.125" + "vaxis" "[0.507538 -0.861629 0 955.934] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-601.158 -5348 34]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -0.999994 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 -0.999999 0 0 1 0 0 1 0 0 -0.999999" + "row2" "0 0 -0.999998 0 0 1 0 0 -1 0 0 -0.999999 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 -0.999997 0 0 1 0 0 1 0 0 -1" + "row4" "0 0 1 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -0.999999 0 0 1 0 0 -1" + "row5" "0 0 -1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0 0.999999 0 0 -0.999998 0 0 0.999998 0 0 -0.99999" + "row6" "0 0 1 0 0 1 0 0 1 0 0 0.999996 0 0 -0.999999 0 0 1 0 0 1 0 0 -1 0 0 1" + "row7" "0 0 0.999999 0 0 -0.999996 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 -0.999998 0 0 -1 0 0 1 0 0 1 0 0 -0.999999 0 0 -1" + } + distances + { + "row0" "0.020916 1.59266 1.12671 1.22569 0.40287 1.43253 1.62501 0.752148 1.17645" + "row1" "1.16377 0.445972 1.89912 0.290813 0.242207 0.144684 0.924587 0.698997 0.119873" + "row2" "0.0760231 1.50995 0.58427 0.236073 0.941017 0.877087 0.758064 0.249214 0.566254" + "row3" "0.655907 0.399799 0.853043 0.49556 1.87777 0.0451813 0.367451 1.26957 0.485523" + "row4" "0.355537 0.126389 0.693287 0.719353 0.36969 0.224667 0.0947418 1.23853 0.383858" + "row5" "0.347511 0.669991 0.531631 0.373798 1.21057 0.156055 0.0513039 0.0653152 0.0120506" + "row6" "0.899704 0.610271 0.809315 0.0321541 0.110107 1.62469 0.712177 1.18218 0.512115" + "row7" "0.14489 0.0324898 2 1.12212 0.576744 0.548985 0.365711 1.22386 0.610596" + "row8" "0.681919 1.39119 1.75512 0.0652428 0.782936 0.864964 0.862724 0.195217 0.237751" + } + 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 175 0 0 0 0 0 0 0" + "row2" "0 255 0 0 0 0 0 0 0" + "row3" "0 255 0 0 0 0 0 0 0" + "row4" "0 255 255 0 0 0 0 0 0" + "row5" "0 255 150 250 0 0 255 250 0" + "row6" "0 50 255 25 255 255 250 50 0" + "row7" "0 0 0 255 255 150 200 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" "371484" + "plane" "(-601.156 -5348 33) (-486.559 -5280.5 33) (-543.403 -5183.99 33)" + "material" "ADS/AD01" + "uaxis" "[0.861629 0.507538 0 149.154] 0.25" + "vaxis" "[0.507538 -0.861629 0 464.467] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371485" + "plane" "(-658 -5251.5 34) (-601.156 -5348 34) (-601.156 -5348 33)" + "material" "ADS/AD01" + "uaxis" "[-0.507538 0.861629 0 -464.467] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371486" + "plane" "(-543.403 -5183.99 33) (-486.559 -5280.5 33) (-486.559 -5280.5 34)" + "material" "ADS/AD01" + "uaxis" "[-0.507538 0.861629 0 -464.467] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371487" + "plane" "(-543.403 -5183.99 34) (-658 -5251.5 34) (-658 -5251.5 33)" + "material" "ADS/AD01" + "uaxis" "[0.861629 0.507538 0 149.154] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371488" + "plane" "(-486.559 -5280.5 33) (-601.156 -5348 33) (-601.156 -5348 34)" + "material" "ADS/AD01" + "uaxis" "[0.861629 0.507538 0 149.154] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6034690" + side + { + "id" "371500" + "plane" "(-2127 -5680.5 34) (-2012.4 -5612.99 34) (-1955.56 -5709.5 34)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0.861629 0.507538 0 322.046] 0.125" + "vaxis" "[0.507538 -0.861629 0 891.414] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-2070.16 -5777 34]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -0.999994 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 -0.999999 0 0 1 0 0 1 0 0 -0.999999" + "row2" "0 0 -0.999998 0 0 1 0 0 -1 0 0 -0.999999 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 -0.999997 0 0 1 0 0 1 0 0 -1" + "row4" "0 0 1 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 -0.999999 0 0 1 0 0 -1" + "row5" "0 0 -1 0 0 -1 0 0 1 0 0 -1 0 0 1 0 0 0.999999 0 0 -0.999998 0 0 0.999998 0 0 -0.99999" + "row6" "0 0 1 0 0 1 0 0 1 0 0 0.999996 0 0 -0.999999 0 0 1 0 0 1 0 0 -1 0 0 1" + "row7" "0 0 0.999999 0 0 -0.999996 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 -0.999998 0 0 -1 0 0 1 0 0 1 0 0 -0.999999 0 0 -1" + } + distances + { + "row0" "0.020916 1.59266 1.12671 1.22569 0.40287 1.43253 1.62501 0.752148 1.17645" + "row1" "1.16377 0.445972 1.89912 0.290813 0.242207 0.144684 0.924587 0.698997 0.119873" + "row2" "0.0760231 1.50995 0.58427 0.236073 0.941017 0.877087 0.758064 0.249214 0.566254" + "row3" "0.655907 0.399799 0.853043 0.49556 1.87777 0.0451813 0.367451 1.26957 0.485523" + "row4" "0.355537 0.126389 0.693287 0.719353 0.36969 0.224667 0.0947418 1.23853 0.383858" + "row5" "0.347511 0.669991 0.531631 0.373798 1.21057 0.156055 0.0513039 0.0653152 0.0120506" + "row6" "0.899704 0.610271 0.809315 0.0321541 0.110107 1.62469 0.712177 1.18218 0.512115" + "row7" "0.14489 0.0324898 2 1.12212 0.576744 0.548985 0.365711 1.22386 0.610596" + "row8" "0.681919 1.39119 1.75512 0.0652428 0.782936 0.864964 0.862724 0.195217 0.237751" + } + 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 175 0 0 0 0 0 0 0" + "row2" "0 255 0 0 0 0 0 0 0" + "row3" "0 255 0 0 0 0 0 0 0" + "row4" "0 255 255 0 0 0 0 0 0" + "row5" "0 255 150 250 0 0 255 250 0" + "row6" "0 50 255 25 255 255 250 50 0" + "row7" "0 0 0 255 255 150 200 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" "371499" + "plane" "(-2070.16 -5777 33) (-1955.56 -5709.5 33) (-2012.4 -5612.99 33)" + "material" "ADS/AD01" + "uaxis" "[0.861629 0.507538 0 451.023] 0.25" + "vaxis" "[0.507538 -0.861629 0 432.207] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371498" + "plane" "(-2127 -5680.5 34) (-2070.16 -5777 34) (-2070.16 -5777 33)" + "material" "ADS/AD01" + "uaxis" "[-0.507538 0.861629 0 -432.207] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371497" + "plane" "(-2012.4 -5612.99 33) (-1955.56 -5709.5 33) (-1955.56 -5709.5 34)" + "material" "ADS/AD01" + "uaxis" "[-0.507538 0.861629 0 -432.207] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371496" + "plane" "(-2012.4 -5612.99 34) (-2127 -5680.5 34) (-2127 -5680.5 33)" + "material" "ADS/AD01" + "uaxis" "[0.861629 0.507538 0 451.023] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371495" + "plane" "(-1955.56 -5709.5 33) (-2070.16 -5777 33) (-2070.16 -5777 34)" + "material" "ADS/AD01" + "uaxis" "[0.861629 0.507538 0 451.023] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6034755" + side + { + "id" "371518" + "plane" "(-3352 -3824 576) (-3352 -3720 576) (-2816 -3720 576)" + "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" "371517" + "plane" "(-3352 -3720 352) (-3352 -3720 576) (-3352 -3824 576)" + "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" "371516" + "plane" "(-2816 -3824 352) (-2816 -3824 576) (-2816 -3720 576)" + "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" "371515" + "plane" "(-2816 -3720 352) (-2816 -3720 576) (-3352 -3720 576)" + "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" "371514" + "plane" "(-3352 -3824 352) (-3352 -3824 576) (-2816 -3824 576)" + "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" "371513" + "plane" "(-3352 -3720 352) (-3352 -3824 352) (-2816 -3824 352)" + "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" "0 108 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6034756" + side + { + "id" "371524" + "plane" "(-3352 -3720 184) (-3352 -3720 352) (-3352 -3824 352)" + "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" "371523" + "plane" "(-2816 -3824 184) (-2816 -3824 352) (-2816 -3720 352)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -191.992] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371522" + "plane" "(-2816 -3720 184) (-2816 -3720 352) (-3352 -3720 352)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371521" + "plane" "(-3352 -3824 184) (-3352 -3824 352) (-2816 -3824 352)" + "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" "371520" + "plane" "(-3352 -3720 184) (-3352 -3824 184) (-2816 -3824 184)" + "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" "371519" + "plane" "(-3352 -3824 352) (-3352 -3720 352) (-2816 -3720 352)" + "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" "0 108 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6034775" + side + { + "id" "371530" + "plane" "(-3352 -3824 184) (-3352 -3824 160) (-3352 -3720 160)" + "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" "371529" + "plane" "(-2816 -3720 184) (-2816 -3720 160) (-2816 -3824 160)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[0 -1 0 -703.992] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371528" + "plane" "(-3352 -3720 184) (-3352 -3720 160) (-2816 -3720 160)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371527" + "plane" "(-2816 -3824 184) (-2816 -3824 160) (-3352 -3824 160)" + "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" "371526" + "plane" "(-3352 -3824 184) (-3352 -3720 184) (-2816 -3720 184)" + "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" "371525" + "plane" "(-3352 -3720 160) (-3352 -3824 160) (-2816 -3824 160)" + "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" "0 108 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6034776" + side + { + "id" "371536" + "plane" "(-3352 -3720 -16) (-3352 -3824 -16) (-2816 -3824 -16)" + "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" "371535" + "plane" "(-3352 -3824 160) (-3352 -3824 -16) (-3352 -3720 -16)" + "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" "371534" + "plane" "(-2816 -3720 160) (-2816 -3720 -16) (-2816 -3824 -16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 -1 0 -858.996] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371533" + "plane" "(-3352 -3720 160) (-3352 -3720 -16) (-2816 -3720 -16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 5] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371532" + "plane" "(-2816 -3824 160) (-2816 -3824 -16) (-3352 -3824 -16)" + "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" "371531" + "plane" "(-3352 -3824 160) (-3352 -3720 160) (-2816 -3720 160)" + "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" "0 108 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6017745" + side + { + "id" "371477" + "plane" "(-1648.63 -5209.05 34) (-1666.46 -5096.45 34) (-1155.83 -5015.57 34)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[0.987688 0.156434 0 453.252] 0.125" + "vaxis" "[0.156434 -0.987688 0 28.4653] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1648.63 -5209.05 34]" + "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 1 0 0 0.999999 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -0.999995" + "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 0.999999 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 -0.999999 0 0 1 0 0 1" + } + distances + { + "row0" "2.15733 1.83044 2.46847 1.84263 0.461952 2.95093 1.20668 1.64206 1.30251" + "row1" "2.59761 1.21133 0.657185 2.62122 2.88943 3.85946 3.45387 3.81995 0.81284" + "row2" "3.46519 1.34348 2.78125 2.73487 2.09978 1.7193 2.35528 5.51231 0.84177" + "row3" "0.578224 0.40834 2.8424 2.34871 2.79829 2.90698 2.93911 4.22322 1.61573" + "row4" "1.96719 0.140419 1.24793 1.59573 2.81522 1.8687 1.76508 12.3228 0.0264397" + "row5" "0.44561 3.03324 1.55079 1.74314 3.18626 1 2.37824 3.25178 3.91537" + "row6" "3.25719 0.804825 0.633163 1.32319 0.639641 0.880844 3.82868 5.04332 3.33942" + "row7" "0.514309 0.323643 3.04308 0.509766 0.182487 3.3036 0.277477 2.08293 0.806118" + "row8" "2.75195 0.374245 3.11553 2.33288 3.42109 1.53291 0.201889 1.90417 1.79224" + } + 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 -1433.75 -1369.13 -1304.5 -1239.88 -1175.25 -1110.63 -1046" + "row1" "0 -1498.38 -1433.75 -1369.13 -1304.5 -1239.88 -1175.25 -1110.63 -1046" + "row2" "0 -1498.38 -1433.75 -1369.13 -1304.5 -1239.88 -1175.25 -1110.63 -1046" + "row3" "-1563 -1498.38 -1433.75 -1369.13 -1304.5 -1239.88 -1175.25 -1110.63 -1046" + "row4" "-1563 -1498.38 -1433.75 -1369.13 -1304.5 -1239.88 -1175.25 -1110.63 -1046" + "row5" "-1563 -1498.38 -1433.75 -1369.13 -1304.5 -1239.88 -1175.25 -1110.63 -1046" + "row6" "0 -1498.38 -1433.75 -1369.13 -1304.5 -1239.88 -1175.25 -1110.63 -1046" + "row7" "0 -1498.38 -1433.75 -1369.13 -1304.5 -1239.88 -1175.25 -1110.63 -1046" + "row8" "0 0 -1433.75 -1369.13 -1304.5 -1239.88 -1175.25 -1110.63 -1046" + } + 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" "371478" + "plane" "(-1666.46 -5096.45 33) (-1648.63 -5209.05 33) (-1138 -5128.17 33)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0.987688 0.156434 0 0.832729] 0.25" + "vaxis" "[0.156434 -0.987688 0 -4.05235] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371479" + "plane" "(-1648.63 -5209.05 33) (-1666.46 -5096.45 33) (-1666.46 -5096.45 34)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[-0.156434 0.987688 0 4.05235] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371480" + "plane" "(-1155.83 -5015.57 33) (-1138 -5128.17 33) (-1138 -5128.17 34)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[-0.156434 0.987688 0 4.05235] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371481" + "plane" "(-1666.46 -5096.45 33) (-1155.83 -5015.57 33) (-1155.83 -5015.57 34)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0.987688 0.156434 0 0.832729] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371482" + "plane" "(-1138 -5128.17 33) (-1648.63 -5209.05 33) (-1648.63 -5209.05 34)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0.987688 0.156434 0 0.832729] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5999991" + side + { + "id" "371417" + "plane" "(1848 -4006 32) (1848 -3950 32) (2041 -3950 32)" + "material" "TOOLS/TOOLSCLIP_DIRT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371418" + "plane" "(1848 -3950 24) (1848 -4006 24) (2041 -4006 24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371419" + "plane" "(1848 -4006 24) (1848 -3950 24) (1848 -3950 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371420" + "plane" "(2041 -3950 24) (2041 -4006 24) (2041 -4006 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371421" + "plane" "(1848 -3950 24) (2041 -3950 24) (2041 -3950 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371422" + "plane" "(2041 -4006 24) (1848 -4006 24) (1848 -4006 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6000272" + side + { + "id" "371452" + "plane" "(1536 -2032 -16) (1536 -2064 -16) (1384 -2064 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 68] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371451" + "plane" "(1384 -2064 -44) (1536 -2064 -44) (1536 -2032 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371450" + "plane" "(1536 -2032 -44) (1536 -2064 -44) (1536 -2064 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371449" + "plane" "(1536 -2064 -44) (1384 -2064 -44) (1384 -2064 -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" "371448" + "plane" "(1384 -2064 -44) (1384 -2032 -44) (1384 -2032 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371447" + "plane" "(1384 -2032 -44) (1536 -2032 -44) (1536 -2032 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6000273" + side + { + "id" "371458" + "plane" "(1384 -1280 -16) (1536 -1280 -16) (1536 -2032 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 68] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371457" + "plane" "(1536 -2032 -44) (1536 -1280 -44) (1384 -1280 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371456" + "plane" "(1536 -1280 -44) (1536 -2032 -44) (1536 -2032 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371455" + "plane" "(1384 -1280 -44) (1536 -1280 -44) (1536 -1280 -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" "371454" + "plane" "(1384 -2032 -44) (1384 -1280 -44) (1384 -1280 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371453" + "plane" "(1536 -2032 -44) (1384 -2032 -44) (1384 -2032 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6000798" + side + { + "id" "371459" + "plane" "(-2328 -3970 32) (-2176 -3970 32) (-2176 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371460" + "plane" "(-2328 -5392 -16) (-2176 -5392 -16) (-2176 -3970 -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" "371461" + "plane" "(-2328 -3970 32) (-2328 -5392 32) (-2328 -5392 -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" "371462" + "plane" "(-2176 -3970 -16) (-2176 -5392 -16) (-2176 -5392 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" "371463" + "plane" "(-2176 -3970 32) (-2328 -3970 32) (-2328 -3970 -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" "371464" + "plane" "(-2176 -5392 -16) (-2328 -5392 -16) (-2328 -5392 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 226 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5950623" + side + { + "id" "371261" + "plane" "(1152 -5872 -48) (2256 -5872 -48) (2256 -6176 -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" "371262" + "plane" "(1152 -6176 -64) (2256 -6176 -64) (2256 -5872 -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" "371263" + "plane" "(1152 -5872 -48) (1152 -6176 -48) (1152 -6176 -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" "371264" + "plane" "(2256 -5872 -64) (2256 -6176 -64) (2256 -6176 -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" "371265" + "plane" "(2256 -5872 -48) (1152 -5872 -48) (1152 -5872 -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" "371266" + "plane" "(2256 -6176 -64) (1152 -6176 -64) (1152 -6176 -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 169 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5950624" + side + { + "id" "371267" + "plane" "(1904 -5504 48) (2032 -5504 48) (2032 -5520 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" "371268" + "plane" "(1904 -5520 0) (2032 -5520 0) (2032 -5504 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" "371269" + "plane" "(1904 -5504 48) (1904 -5520 48) (1904 -5520 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" "371270" + "plane" "(2032 -5504 0) (2032 -5520 0) (2032 -5520 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" "371271" + "plane" "(2032 -5504 48) (1904 -5504 48) (1904 -5504 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" "371272" + "plane" "(2032 -5520 0) (1904 -5520 0) (1904 -5520 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 231 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5950626" + side + { + "id" "371273" + "plane" "(2464 -4352 560) (2576 -4352 560) (2576 -4400 560)" + "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" "371274" + "plane" "(2464 -4400 400) (2576 -4400 400) (2576 -4352 400)" + "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" "371275" + "plane" "(2464 -4352 560) (2464 -4400 560) (2464 -4400 400)" + "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" "371276" + "plane" "(2576 -4352 400) (2576 -4400 400) (2576 -4400 560)" + "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" "371277" + "plane" "(2576 -4352 560) (2464 -4352 560) (2464 -4352 400)" + "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" "371278" + "plane" "(2576 -4400 400) (2464 -4400 400) (2464 -4400 560)" + "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" "0 139 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5950627" + side + { + "id" "371279" + "plane" "(2576 -4288 48) (2656 -4288 48) (2656 -4352 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" "371280" + "plane" "(2576 -4352 -16) (2656 -4352 -16) (2656 -4288 -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" "371281" + "plane" "(2576 -4288 48) (2576 -4352 48) (2576 -4352 -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" "371282" + "plane" "(2656 -4288 -16) (2656 -4352 -16) (2656 -4352 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" "371283" + "plane" "(2656 -4288 48) (2576 -4288 48) (2576 -4288 -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" "371284" + "plane" "(2656 -4352 -16) (2576 -4352 -16) (2576 -4352 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 145 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5917270" + side + { + "id" "371158" + "plane" "(1184 -5504 48) (1184 -5372 48) (1200 -5372 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" "371157" + "plane" "(1184 -5372 0) (1184 -5504 0) (1200 -5504 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" "371156" + "plane" "(1184 -5504 0) (1184 -5372 0) (1184 -5372 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 128.996] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371155" + "plane" "(1200 -5372 0) (1200 -5504 0) (1200 -5504 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371154" + "plane" "(1184 -5372 0) (1200 -5372 0) (1200 -5372 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 288.004] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371153" + "plane" "(1200 -5504 0) (1184 -5504 0) (1184 -5504 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 189 210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5917271" + side + { + "id" "371164" + "plane" "(1184 -5888 48) (1184 -5504 48) (1200 -5504 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" "371163" + "plane" "(1184 -5504 0) (1184 -5888 0) (1200 -5888 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" "371162" + "plane" "(1184 -5888 0) (1184 -5504 0) (1184 -5504 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 128.996] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371161" + "plane" "(1200 -5504 0) (1200 -5888 0) (1200 -5888 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -511.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371160" + "plane" "(1200 -5888 0) (1184 -5888 0) (1184 -5888 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -127] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371159" + "plane" "(1184 -5504 0) (1200 -5504 0) (1200 -5504 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 189 210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5917272" + side + { + "id" "371170" + "plane" "(1184 -5504 48) (1184 -5372 48) (1184 -5372 128)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 128.002] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371169" + "plane" "(1200 -5372 48) (1200 -5504 48) (1200 -5504 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371168" + "plane" "(1184 -5372 48) (1184 -5504 48) (1200 -5504 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" "371167" + "plane" "(1184 -5504 128) (1184 -5372 128) (1200 -5372 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" "371166" + "plane" "(1184 -5372 128) (1184 -5372 48) (1200 -5372 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 288.004] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371165" + "plane" "(1200 -5504 128) (1200 -5504 48) (1184 -5504 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5917273" + side + { + "id" "371176" + "plane" "(1184 -5888 128) (1184 -5888 48) (1184 -5504 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 128.002] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371175" + "plane" "(1200 -5872 128) (1200 -5872 48) (1184 -5888 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" "371174" + "plane" "(1200 -5504 48) (1200 -5872 48) (1200 -5872 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -511.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371173" + "plane" "(1184 -5504 48) (1184 -5888 48) (1200 -5872 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" "371172" + "plane" "(1200 -5872 128) (1184 -5888 128) (1184 -5504 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" "371171" + "plane" "(1184 -5504 128) (1184 -5504 48) (1200 -5504 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5917274" + side + { + "id" "371182" + "plane" "(1184 -4976 128) (1184 -5504 128) (1200 -5504 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -703.988] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371181" + "plane" "(1184 -5504 128) (1184 -4976 128) (1184 -4976 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 128.002] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371180" + "plane" "(1200 -4976 128) (1200 -5504 128) (1200 -5504 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371179" + "plane" "(1184 -5504 160) (1184 -4976 160) (1200 -4976 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" "371178" + "plane" "(1184 -4976 160) (1184 -4976 128) (1200 -4976 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371177" + "plane" "(1200 -5504 160) (1200 -5504 128) (1184 -5504 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "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 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5917275" + side + { + "id" "371188" + "plane" "(1184 -5504 128) (1184 -5888 128) (1200 -5872 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -703.988] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371187" + "plane" "(1184 -5888 160) (1184 -5888 128) (1184 -5504 128)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 128.002] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371186" + "plane" "(1200 -5504 128) (1200 -5872 128) (1200 -5872 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -511.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371185" + "plane" "(1200 -5872 160) (1200 -5872 128) (1184 -5888 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" "371184" + "plane" "(1184 -5888 160) (1184 -5504 160) (1200 -5504 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" "371183" + "plane" "(1184 -5504 160) (1184 -5504 128) (1200 -5504 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "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 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5917276" + side + { + "id" "371194" + "plane" "(1184 -5504 160) (1184 -5280 160) (1184 -5280 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 -320] 0.125" + "vaxis" "[0 0 -1 254] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371193" + "plane" "(1200 -5280 192) (1200 -5280 160) (1200 -5504 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371192" + "plane" "(1184 -5280 192) (1184 -5280 160) (1200 -5280 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" "371191" + "plane" "(1184 -5280 160) (1184 -5504 160) (1200 -5504 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" "371190" + "plane" "(1184 -5504 192) (1184 -5280 192) (1200 -5280 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" "371189" + "plane" "(1200 -5504 192) (1200 -5504 160) (1184 -5504 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5917277" + side + { + "id" "371200" + "plane" "(1184 -5888 192) (1184 -5888 160) (1184 -5504 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -319.996] 0.125" + "vaxis" "[0 0 -1 254] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371199" + "plane" "(1200 -5872 192) (1200 -5872 160) (1184 -5888 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" "371198" + "plane" "(1200 -5504 160) (1200 -5872 160) (1200 -5872 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -511.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371197" + "plane" "(1184 -5504 160) (1184 -5888 160) (1200 -5872 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" "371196" + "plane" "(1200 -5872 192) (1184 -5888 192) (1184 -5504 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" "371195" + "plane" "(1184 -5504 192) (1184 -5504 160) (1200 -5504 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5900015" + side + { + "id" "371128" + "plane" "(543 -2855 253.444) (543 -2770 253.444) (570 -2796 253.444)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371127" + "plane" "(543 -2770 -36.5559) (543 -2855 -36.5559) (570 -2835 -36.5559)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371126" + "plane" "(543 -2855 -36.5553) (543 -2770 -36.5553) (543 -2770 253.447)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371125" + "plane" "(570 -2796 -36.5553) (570 -2835 -36.5553) (570 -2835 253.447)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371124" + "plane" "(570 -2835 -36.5553) (543 -2855 -36.5553) (543 -2855 253.447)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371123" + "plane" "(543 -2770 -36.5553) (570 -2796 -36.5553) (570 -2796 253.447)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 158" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5816145" + side + { + "id" "371081" + "plane" "(688 -4688 0) (1024 -4688 0) (1024 -4784 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[688 -4784 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "371082" + "plane" "(688 -4784 -16) (1024 -4784 -16) (1024 -4688 -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" "371083" + "plane" "(688 -4688 0) (688 -4784 0) (688 -4784 -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" "371084" + "plane" "(1024 -4688 -16) (1024 -4784 -16) (1024 -4784 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" "371085" + "plane" "(1024 -4688 0) (688 -4688 0) (688 -4688 -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" "371086" + "plane" "(1024 -4784 -16) (688 -4784 -16) (688 -4784 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 167 244" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5816152" + side + { + "id" "371098" + "plane" "(688 -4784 0) (1184 -4784 0) (1184 -5600 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[688 -5600 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 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" + } + 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 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" + } + 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" "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" "371097" + "plane" "(688 -5600 -16) (1184 -5600 -16) (1184 -4784 -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" "371096" + "plane" "(688 -4784 0) (688 -5600 0) (688 -5600 -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" "371095" + "plane" "(1184 -4784 -16) (1184 -5600 -16) (1184 -5600 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" "371094" + "plane" "(1184 -4784 0) (688 -4784 0) (688 -4784 -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" "371093" + "plane" "(1184 -5600 -16) (688 -5600 -16) (688 -5600 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 167 244" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799645" + side + { + "id" "370954" + "plane" "(640 -640 128) (640 -2128 128) (640 -2128 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 -1 0 -57.0039] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370953" + "plane" "(640 -2128 144) (640 -2128 128) (624 -2112 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" "370952" + "plane" "(624 -2112 144) (624 -2112 128) (624 -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" "370951" + "plane" "(640 -2128 128) (640 -640 128) (624 -640 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370950" + "plane" "(640 -640 144) (640 -2128 144) (624 -2112 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370949" + "plane" "(624 -640 144) (624 -640 128) (640 -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" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799649" + side + { + "id" "370960" + "plane" "(640 -640 144) (640 -1920 144) (640 -1920 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370959" + "plane" "(624 -1920 144) (624 -640 144) (624 -640 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" "370958" + "plane" "(624 -1920 192) (624 -640 192) (640 -640 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" "370957" + "plane" "(640 -1920 144) (640 -640 144) (624 -640 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370956" + "plane" "(640 -1920 192) (640 -1920 144) (624 -1920 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370955" + "plane" "(624 -640 192) (624 -640 144) (640 -640 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" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799681" + side + { + "id" "370966" + "plane" "(640 -640 192) (640 -1920 192) (640 -1920 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370965" + "plane" "(624 -1920 192) (624 -640 192) (624 -640 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" "370964" + "plane" "(624 -1920 208) (624 -640 208) (640 -640 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" "370963" + "plane" "(640 -1920 192) (640 -640 192) (624 -640 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" "370962" + "plane" "(640 -1920 208) (640 -1920 192) (624 -1920 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370961" + "plane" "(624 -640 208) (624 -640 192) (640 -640 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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799682" + side + { + "id" "370972" + "plane" "(640 -640 208) (640 -1872 208) (640 -1872 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370971" + "plane" "(624 -1872 256) (624 -1872 208) (624 -640 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" "370970" + "plane" "(640 -1872 208) (640 -640 208) (624 -640 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" "370969" + "plane" "(640 -1872 256) (640 -1872 208) (624 -1872 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370968" + "plane" "(624 -1872 256) (624 -640 256) (640 -640 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370967" + "plane" "(624 -640 256) (624 -640 208) (640 -640 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" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799683" + side + { + "id" "370978" + "plane" "(640 -640 256) (640 -1872 256) (640 -1872 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[0 -1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370977" + "plane" "(624 -1872 319) (624 -1872 256) (624 -640 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" "370976" + "plane" "(640 -1872 319) (640 -1872 256) (624 -1872 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370975" + "plane" "(624 -1872 319) (624 -640 319) (640 -640 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370974" + "plane" "(640 -1872 256) (640 -640 256) (624 -640 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370973" + "plane" "(624 -640 319) (624 -640 256) (640 -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" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799684" + side + { + "id" "370984" + "plane" "(640 -640 319) (640 -1872 319) (640 -1872 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370983" + "plane" "(624 -640 400) (624 -1872 400) (624 -1872 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370982" + "plane" "(624 -1872 400) (624 -640 400) (640 -640 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" "370981" + "plane" "(640 -1872 400) (640 -1872 319) (624 -1872 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370980" + "plane" "(640 -1872 319) (640 -640 319) (624 -640 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370979" + "plane" "(624 -640 400) (624 -640 319) (640 -640 319)" + "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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799685" + side + { + "id" "370990" + "plane" "(640 -640 416) (640 -2128 416) (624 -2112 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" "370989" + "plane" "(640 -2128 400) (640 -2128 416) (640 -640 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370988" + "plane" "(624 -2112 400) (624 -2112 416) (640 -2128 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" "370987" + "plane" "(624 -640 416) (624 -2112 416) (624 -2112 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 -1 0 -255.995] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370986" + "plane" "(640 -2128 400) (640 -640 400) (624 -640 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" "370985" + "plane" "(640 -640 400) (640 -640 416) (624 -640 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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799686" + side + { + "id" "370996" + "plane" "(624 -640 416) (624 -2112 416) (640 -2112 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" "370995" + "plane" "(624 -2112 560) (624 -2112 416) (624 -640 416)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370994" + "plane" "(640 -640 416) (640 -2112 416) (640 -2112 560)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370993" + "plane" "(640 -2112 560) (640 -2112 416) (624 -2112 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" "370992" + "plane" "(624 -2112 560) (624 -640 560) (640 -640 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370991" + "plane" "(624 -640 560) (624 -640 416) (640 -640 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 123 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799687" + side + { + "id" "371002" + "plane" "(624 -2112 576) (624 -640 576) (640 -640 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371001" + "plane" "(624 -640 576) (624 -2112 576) (624 -2112 560)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371000" + "plane" "(640 -2112 560) (640 -2112 576) (640 -640 576)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 25] 0.125" + "vaxis" "[0 1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370999" + "plane" "(624 -2112 560) (624 -2112 576) (640 -2112 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" "370998" + "plane" "(624 -640 560) (624 -2112 560) (640 -2112 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370997" + "plane" "(640 -640 560) (640 -640 576) (624 -640 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" + } + editor + { + "color" "0 123 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799714" + side + { + "id" "371003" + "plane" "(-112 0 576) (-96 0 576) (-96 -640 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371004" + "plane" "(-112 -640 -160) (-96 -640 -160) (-96 0 -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" "371005" + "plane" "(-112 0 576) (-112 -640 576) (-112 -640 -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" "371006" + "plane" "(-96 0 -160) (-96 -640 -160) (-96 -640 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" "371007" + "plane" "(-96 0 576) (-112 0 576) (-112 0 -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" "371008" + "plane" "(-96 -640 -160) (-112 -640 -160) (-112 -640 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" + } + editor + { + "color" "0 187 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799715" + side + { + "id" "371009" + "plane" "(-112 -640 576) (624 -640 576) (624 -656 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371010" + "plane" "(-112 -656 -160) (624 -656 -160) (624 -640 -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" "371011" + "plane" "(-112 -640 576) (-112 -656 576) (-112 -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" + } + side + { + "id" "371012" + "plane" "(624 -640 -160) (624 -656 -160) (624 -656 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" "371013" + "plane" "(624 -640 576) (-112 -640 576) (-112 -640 -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" "371014" + "plane" "(624 -656 -160) (-112 -656 -160) (-112 -656 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" + } + editor + { + "color" "0 157 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799718" + side + { + "id" "371015" + "plane" "(-96 -3.42131e-05 -144) (640 -3.42131e-05 -144) (640 -640 -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" "371016" + "plane" "(-96 -640 -160) (640 -640 -160) (640 -3.42131e-05 -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" "371017" + "plane" "(-96 -3.42131e-05 -144) (-96 -640 -144) (-96 -640 -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" "371018" + "plane" "(640 -3.42131e-05 -160) (640 -640 -160) (640 -640 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371019" + "plane" "(640 -3.42131e-05 -144) (-96 -3.42131e-05 -144) (-96 -3.42131e-05 -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" "371020" + "plane" "(640 -640 -160) (-96 -640 -160) (-96 -640 -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" + } + editor + { + "color" "0 107 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799722" + side + { + "id" "371021" + "plane" "(-96 0 -96) (640 0 -96) (640 -640 -96)" + "material" "LIQUIDS/CANALSWATER" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371022" + "plane" "(-96 -640 -160) (640 -640 -160) (640 0 -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" "371023" + "plane" "(-96 0 -96) (-96 -640 -96) (-96 -640 -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" "371024" + "plane" "(640 0 -160) (640 -640 -160) (640 -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" "371025" + "plane" "(640 0 -96) (-96 0 -96) (-96 0 -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" "371026" + "plane" "(640 -640 -160) (-96 -640 -160) (-96 -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" + } + editor + { + "color" "0 127 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799725" + side + { + "id" "371027" + "plane" "(624 0 576) (640 0 576) (640 -640 576)" + "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" "371028" + "plane" "(624 -640 -160) (640 -640 -160) (640 0 -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" "371029" + "plane" "(624 0 576) (624 -640 576) (624 -640 -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" "371030" + "plane" "(640 0 -160) (640 -640 -160) (640 -640 576)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371031" + "plane" "(640 0 576) (624 0 576) (624 0 -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" "371032" + "plane" "(640 -640 -160) (624 -640 -160) (624 -640 576)" + "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 117 130" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5799733" + side + { + "id" "371033" + "plane" "(-112 16 624) (640 16 624) (640 -640 624)" + "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" "371034" + "plane" "(-112 -640 576) (640 -640 576) (640 16 576)" + "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" "371035" + "plane" "(-112 16 624) (-112 -640 624) (-112 -640 576)" + "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" "371036" + "plane" "(640 16 576) (640 -640 576) (640 -640 624)" + "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" "371037" + "plane" "(640 16 624) (-112 16 624) (-112 16 576)" + "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" "371038" + "plane" "(640 -640 576) (-112 -640 576) (-112 -640 624)" + "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" "0 249 202" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5783102" + side + { + "id" "370877" + "plane" "(2816 -6928 608) (4376 -6928 608) (4376 -9728 608)" + "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" "370878" + "plane" "(2816 -9728 560) (4376 -9728 560) (4376 -6928 560)" + "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" "370879" + "plane" "(2816 -6928 608) (2816 -9728 608) (2816 -9728 560)" + "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" "370880" + "plane" "(4376 -6928 560) (4376 -9728 560) (4376 -9728 608)" + "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" "370881" + "plane" "(4376 -6928 608) (2816 -6928 608) (2816 -6928 560)" + "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" "370882" + "plane" "(4376 -9728 560) (2816 -9728 560) (2816 -9728 608)" + "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" "0 211 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5783108" + side + { + "id" "370888" + "plane" "(4344 -9488 -48) (4344 -9728 -48) (4376 -9728 -48)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370887" + "plane" "(4344 -9728 32) (4344 -9728 -48) (4344 -9488 -48)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370886" + "plane" "(4376 -9488 -48) (4376 -9728 -48) (4376 -9728 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370885" + "plane" "(4376 -9728 32) (4376 -9728 -48) (4344 -9728 -48)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370884" + "plane" "(4344 -9728 32) (4344 -9488 32) (4376 -9488 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370883" + "plane" "(4344 -9488 32) (4344 -9488 -48) (4376 -9488 -48)" + "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" "0 252 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5783114" + side + { + "id" "370900" + "plane" "(4344 -8912 -48) (4344 -9488 -48) (4376 -9488 -48)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370899" + "plane" "(4344 -9488 -48) (4344 -8912 -48) (4344 -8912 32)" + "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" "370898" + "plane" "(4376 -8912 -48) (4376 -9488 -48) (4376 -9488 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370897" + "plane" "(4344 -9488 32) (4344 -8912 32) (4376 -8912 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370896" + "plane" "(4376 -9488 32) (4376 -9488 -48) (4344 -9488 -48)" + "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" "370895" + "plane" "(4344 -8912 32) (4344 -8912 -48) (4376 -8912 -48)" + "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" "0 252 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5783115" + side + { + "id" "370906" + "plane" "(4344 -6928 -48) (4344 -8912 -48) (4376 -8912 -48)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[-1 0 0 96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370905" + "plane" "(4344 -8912 -48) (4344 -6928 -48) (4344 -6928 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370904" + "plane" "(4376 -6928 -48) (4376 -8912 -48) (4376 -8912 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370903" + "plane" "(4344 -8912 32) (4344 -6928 32) (4376 -6928 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370902" + "plane" "(4344 -6928 32) (4344 -6928 -48) (4376 -6928 -48)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -984] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370901" + "plane" "(4376 -8912 32) (4376 -8912 -48) (4344 -8912 -48)" + "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" "0 252 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5783235" + side + { + "id" "370931" + "plane" "(-928 -9616 -32) (-928 -9248 -32) (-448 -9248 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 256] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "24" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-928 -9616 -32]" + "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 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" + } + 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 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" + } + 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" "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" "370932" + "plane" "(-928 -9248 -80) (-928 -9616 -80) (-448 -9616 -80)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370933" + "plane" "(-928 -9616 -80) (-928 -9248 -80) (-928 -9248 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370934" + "plane" "(-448 -9248 -80) (-448 -9616 -80) (-448 -9616 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370935" + "plane" "(-928 -9248 -80) (-448 -9248 -80) (-448 -9248 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370936" + "plane" "(-448 -9616 -80) (-928 -9616 -80) (-928 -9616 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 184 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766318" + side + { + "id" "370739" + "plane" "(2815 -6896 -48) (4344 -6896 -48) (4344 -9696 -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" "370740" + "plane" "(2815 -9696 -64) (4344 -9696 -64) (4344 -6896 -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" "370741" + "plane" "(2815 -6896 -48) (2815 -9696 -48) (2815 -9696 -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" "370742" + "plane" "(4344 -6896 -64) (4344 -9696 -64) (4344 -9696 -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" "370743" + "plane" "(4344 -6896 -48) (2815 -6896 -48) (2815 -6896 -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" "370744" + "plane" "(4344 -9696 -64) (2815 -9696 -64) (2815 -9696 -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 220 141" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766475" + side + { + "id" "370751" + "plane" "(2815 -6947 -25) (3676 -6947 -25) (3676 -7021 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2815 -7021 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370752" + "plane" "(2815 -7021 -26) (3676 -7021 -26) (3676 -6947 -26)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370753" + "plane" "(2815 -6947 -25) (2815 -7021 -25) (2815 -7021 -26)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370754" + "plane" "(3676 -6947 -26) (3676 -7021 -26) (3676 -7021 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370755" + "plane" "(3676 -6947 -25) (2815 -6947 -25) (2815 -6947 -26)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370756" + "plane" "(3676 -7021 -26) (2815 -7021 -26) (2815 -7021 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "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 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766500" + side + { + "id" "370757" + "plane" "(2816 -7021 -32) (2896 -7021 -32) (2896 -9336 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 15] 0.125" + "rotation" "0" + "lightmapscale" "25" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2816 -9336 -32]" + "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 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" + } + 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 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" + } + 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" "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" "370758" + "plane" "(2816 -9336 -48) (2896 -9336 -48) (2896 -7021 -48)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370759" + "plane" "(2816 -7021 -32) (2816 -9336 -32) (2816 -9336 -48)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370760" + "plane" "(2896 -7021 -48) (2896 -9336 -48) (2896 -9336 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370761" + "plane" "(2896 -7021 -32) (2816 -7021 -32) (2816 -7021 -48)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370762" + "plane" "(2896 -9336 -48) (2816 -9336 -48) (2816 -9336 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 224 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766503" + side + { + "id" "370763" + "plane" "(2896 -7021 -32) (4344 -7021 -32) (4344 -9600 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 15] 0.125" + "rotation" "0" + "lightmapscale" "25" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2896 -9600 -32]" + "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 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" + } + 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 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" + } + 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" "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" "370764" + "plane" "(2896 -9600 -48) (4344 -9600 -48) (4344 -7021 -48)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370765" + "plane" "(2896 -7021 -32) (2896 -9600 -32) (2896 -9600 -48)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370766" + "plane" "(4344 -7021 -48) (4344 -9600 -48) (4344 -9600 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370767" + "plane" "(4344 -7021 -32) (2896 -7021 -32) (2896 -7021 -48)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370768" + "plane" "(4344 -9600 -48) (2896 -9600 -48) (2896 -9600 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 190 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766506" + side + { + "id" "370828" + "plane" "(3998 -8874 -25) (3724 -8874 -25) (3724 -8831 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 528.201] 0.025" + "vaxis" "[0.559193 0.829038 0 -491.445] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3998 -8874 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370827" + "plane" "(3998 -8831 -26) (3724 -8831 -26) (3724 -8874 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40.002] 0.25" + "vaxis" "[1 0 0 -7.09863] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370826" + "plane" "(3998 -8874 -26) (3724 -8874 -26) (3724 -8874 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 7.09863] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370825" + "plane" "(3724 -8831 -26) (3998 -8831 -26) (3998 -8831 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 7.09863] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370824" + "plane" "(3724 -8874 -26) (3724 -8831 -26) (3724 -8831 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370823" + "plane" "(3998 -8831 -26) (3998 -8874 -26) (3998 -8874 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766507" + side + { + "id" "370834" + "plane" "(3611 -8871 -25) (3337 -8871 -25) (3337 -8828 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -712.84] 0.025" + "vaxis" "[-0.559193 -0.829038 0 486.535] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3337 -8828 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370833" + "plane" "(3611 -8828 -26) (3337 -8828 -26) (3337 -8871 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -47.9961] 0.25" + "vaxis" "[-1 0 0 20.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370832" + "plane" "(3337 -8828 -26) (3611 -8828 -26) (3611 -8828 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370831" + "plane" "(3611 -8871 -26) (3337 -8871 -26) (3337 -8871 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370830" + "plane" "(3611 -8828 -26) (3611 -8871 -26) (3611 -8871 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -47.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370829" + "plane" "(3337 -8871 -26) (3337 -8828 -26) (3337 -8828 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -47.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766508" + side + { + "id" "370840" + "plane" "(3619 -8902 -29) (3619 -7247 -29) (3719 -7247 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 -856] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3619 -8902 -29]" + "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 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" + } + 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 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" + } + 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" "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" "370839" + "plane" "(3619 -7247 -38) (3619 -8902 -38) (3719 -8902 -38)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 -428] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370838" + "plane" "(3619 -8902 -38) (3619 -7247 -38) (3619 -7247 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370837" + "plane" "(3719 -7247 -38) (3719 -8902 -38) (3719 -8902 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370836" + "plane" "(3619 -7247 -38) (3719 -7247 -38) (3719 -7247 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 -428] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370835" + "plane" "(3719 -8902 -38) (3619 -8902 -38) (3619 -8902 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 -428] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766509" + side + { + "id" "370846" + "plane" "(3611 -8320 -25) (3337 -8320 -25) (3337 -8277 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -676.225] 0.025" + "vaxis" "[-0.559193 -0.829038 0 326.533] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3337 -8277 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370845" + "plane" "(3611 -8277 -26) (3337 -8277 -26) (3337 -8320 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44.0039] 0.25" + "vaxis" "[-1 0 0 20.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370844" + "plane" "(3337 -8277 -26) (3611 -8277 -26) (3611 -8277 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370843" + "plane" "(3611 -8320 -26) (3337 -8320 -26) (3337 -8320 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370842" + "plane" "(3611 -8277 -26) (3611 -8320 -26) (3611 -8320 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370841" + "plane" "(3337 -8320 -26) (3337 -8277 -26) (3337 -8277 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766510" + side + { + "id" "370852" + "plane" "(3998 -8323 -25) (3724 -8323 -25) (3724 -8280 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 491.588] 0.025" + "vaxis" "[0.559193 0.829038 0 -331.447] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3998 -8323 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370851" + "plane" "(3998 -8280 -26) (3724 -8280 -26) (3724 -8323 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -51.998] 0.25" + "vaxis" "[1 0 0 -7.09863] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370850" + "plane" "(3998 -8323 -26) (3724 -8323 -26) (3724 -8323 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 7.09863] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370849" + "plane" "(3724 -8280 -26) (3998 -8280 -26) (3998 -8280 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 7.09863] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370848" + "plane" "(3724 -8323 -26) (3724 -8280 -26) (3724 -8280 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -51.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370847" + "plane" "(3998 -8280 -26) (3998 -8323 -26) (3998 -8323 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -51.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766511" + side + { + "id" "370858" + "plane" "(3611 -7932 -25) (3337 -7932 -25) (3337 -7889 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -189.557] 0.025" + "vaxis" "[-0.559193 -0.829038 0 905.201] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3337 -7889 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370857" + "plane" "(3611 -7889 -26) (3337 -7889 -26) (3337 -7932 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.9961] 0.25" + "vaxis" "[-1 0 0 20.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370856" + "plane" "(3337 -7889 -26) (3611 -7889 -26) (3611 -7889 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370855" + "plane" "(3611 -7932 -26) (3337 -7932 -26) (3337 -7932 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370854" + "plane" "(3611 -7889 -26) (3611 -7932 -26) (3611 -7932 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370853" + "plane" "(3337 -7932 -26) (3337 -7889 -26) (3337 -7889 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766512" + side + { + "id" "370864" + "plane" "(3998 -7936 -25) (3724 -7936 -25) (3724 -7893 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 27.2949] 0.025" + "vaxis" "[0.559193 0.829038 0 -876.939] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3998 -7936 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370863" + "plane" "(3998 -7893 -26) (3724 -7893 -26) (3724 -7936 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00389957] 0.25" + "vaxis" "[1 0 0 -7.09912] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370862" + "plane" "(3998 -7936 -26) (3724 -7936 -26) (3724 -7936 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 7.09912] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370861" + "plane" "(3724 -7893 -26) (3998 -7893 -26) (3998 -7893 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 7.09912] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370860" + "plane" "(3724 -7936 -26) (3724 -7893 -26) (3724 -7893 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00389957] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370859" + "plane" "(3998 -7893 -26) (3998 -7936 -26) (3998 -7936 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.00389957] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766513" + side + { + "id" "370870" + "plane" "(3611 -7313 -25) (3337 -7313 -25) (3337 -7270 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -679.938] 0.025" + "vaxis" "[-0.559193 -0.829038 0 952.184] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3337 -7270 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370869" + "plane" "(3611 -7270 -26) (3337 -7270 -26) (3337 -7313 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40.0039] 0.25" + "vaxis" "[-1 0 0 20.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370868" + "plane" "(3337 -7270 -26) (3611 -7270 -26) (3611 -7270 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370867" + "plane" "(3611 -7313 -26) (3337 -7313 -26) (3337 -7313 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370866" + "plane" "(3611 -7270 -26) (3611 -7313 -26) (3611 -7313 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370865" + "plane" "(3337 -7313 -26) (3337 -7270 -26) (3337 -7270 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5766514" + side + { + "id" "370876" + "plane" "(3999 -7315 -25) (3725 -7315 -25) (3725 -7272 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 506.102] 0.025" + "vaxis" "[0.559193 0.829038 0 -1012.61] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3999 -7315 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370875" + "plane" "(3999 -7272 -26) (3725 -7272 -26) (3725 -7315 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12.0039] 0.25" + "vaxis" "[1 0 0 -11.0991] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370874" + "plane" "(3999 -7315 -26) (3725 -7315 -26) (3725 -7315 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 11.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370873" + "plane" "(3725 -7272 -26) (3999 -7272 -26) (3999 -7272 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 11.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370872" + "plane" "(3725 -7315 -26) (3725 -7272 -26) (3725 -7272 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370871" + "plane" "(3999 -7272 -26) (3999 -7315 -26) (3999 -7315 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5749007" + side + { + "id" "370577" + "plane" "(1720 -7248 -29) (1820 -7248 -29) (1820 -8903 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1720 -8903 -29]" + "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 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" + } + 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 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" + } + 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" "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" "370578" + "plane" "(1720 -8903 -38) (1820 -8903 -38) (1820 -7248 -38)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370579" + "plane" "(1720 -7248 -29) (1720 -8903 -29) (1720 -8903 -38)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370580" + "plane" "(1820 -7248 -38) (1820 -8903 -38) (1820 -8903 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370581" + "plane" "(1820 -7248 -29) (1720 -7248 -29) (1720 -7248 -38)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370582" + "plane" "(1820 -8903 -38) (1720 -8903 -38) (1720 -8903 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5749043" + side + { + "id" "370594" + "plane" "(2099 -7937 -25) (1825 -7937 -25) (1825 -7894 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 563.931] 0.025" + "vaxis" "[0.559193 0.829038 0 -351.478] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2099 -7937 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370593" + "plane" "(2099 -7894 -26) (1825 -7894 -26) (1825 -7937 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4.00391] 0.25" + "vaxis" "[1 0 0 -27.0991] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370592" + "plane" "(2099 -7937 -26) (1825 -7937 -26) (1825 -7937 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 27.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370591" + "plane" "(1825 -7894 -26) (2099 -7894 -26) (2099 -7894 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 27.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370590" + "plane" "(1825 -7937 -26) (1825 -7894 -26) (1825 -7894 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4.00391] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370589" + "plane" "(2099 -7894 -26) (2099 -7937 -26) (2099 -7937 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4.00391] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5749160" + side + { + "id" "370606" + "plane" "(2099 -8324 -25) (1825 -8324 -25) (1825 -8281 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 -1019.78] 0.025" + "vaxis" "[0.559193 0.829038 0 -829.984] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2099 -8324 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370605" + "plane" "(2099 -8281 -26) (1825 -8281 -26) (1825 -8324 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -47.998] 0.25" + "vaxis" "[1 0 0 -27.0986] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370604" + "plane" "(2099 -8324 -26) (1825 -8324 -26) (1825 -8324 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 27.0986] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370603" + "plane" "(1825 -8281 -26) (2099 -8281 -26) (2099 -8281 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 27.0986] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370602" + "plane" "(1825 -8324 -26) (1825 -8281 -26) (1825 -8281 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -47.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370601" + "plane" "(2099 -8281 -26) (2099 -8324 -26) (2099 -8324 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -47.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5749375" + side + { + "id" "370624" + "plane" "(1712 -8872 -25) (1438 -8872 -25) (1438 -8829 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -225.476] 0.025" + "vaxis" "[-0.559193 -0.829038 0 -38.9281] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1438 -8829 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370623" + "plane" "(1712 -8829 -26) (1438 -8829 -26) (1438 -8872 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -51.9961] 0.25" + "vaxis" "[-1 0 0 40.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370622" + "plane" "(1438 -8829 -26) (1712 -8829 -26) (1712 -8829 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370621" + "plane" "(1712 -8872 -26) (1438 -8872 -26) (1438 -8872 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370620" + "plane" "(1712 -8829 -26) (1712 -8872 -26) (1712 -8872 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -51.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370619" + "plane" "(1438 -8872 -26) (1438 -8829 -26) (1438 -8829 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -51.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5749400" + side + { + "id" "370630" + "plane" "(2099 -8875 -25) (1825 -8875 -25) (1825 -8832 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 40.8372] 0.025" + "vaxis" "[0.559193 0.829038 0 34.014] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2099 -8875 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370629" + "plane" "(2099 -8832 -26) (1825 -8832 -26) (1825 -8875 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44.002] 0.25" + "vaxis" "[1 0 0 -27.0986] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370628" + "plane" "(2099 -8875 -26) (1825 -8875 -26) (1825 -8875 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 27.0986] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370627" + "plane" "(1825 -8832 -26) (2099 -8832 -26) (2099 -8832 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 27.0986] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370626" + "plane" "(1825 -8875 -26) (1825 -8832 -26) (1825 -8832 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370625" + "plane" "(2099 -8832 -26) (2099 -8875 -26) (2099 -8875 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5749978" + side + { + "id" "370690" + "plane" "(3064 -8877 -25) (2790 -8877 -25) (2790 -8834 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 342.441] 0.025" + "vaxis" "[0.559193 0.829038 0 -1004.51] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3064 -8877 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370689" + "plane" "(3064 -8834 -26) (2790 -8834 -26) (2790 -8877 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 52.002] 0.25" + "vaxis" "[1 0 0 -47.0986] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370688" + "plane" "(3064 -8877 -26) (2790 -8877 -26) (2790 -8877 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 47.0986] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370687" + "plane" "(2790 -8834 -26) (3064 -8834 -26) (3064 -8834 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 47.0986] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370686" + "plane" "(2790 -8877 -26) (2790 -8834 -26) (2790 -8834 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 52.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370685" + "plane" "(3064 -8834 -26) (3064 -8877 -26) (3064 -8877 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 52.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5749995" + side + { + "id" "370696" + "plane" "(2677 -8874 -25) (2403 -8874 -25) (2403 -8831 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -527.08] 0.025" + "vaxis" "[-0.559193 -0.829038 0 999.6] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2403 -8831 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370695" + "plane" "(2677 -8831 -26) (2403 -8831 -26) (2403 -8874 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -59.9961] 0.25" + "vaxis" "[-1 0 0 60.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370694" + "plane" "(2403 -8831 -26) (2677 -8831 -26) (2677 -8831 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370693" + "plane" "(2677 -8874 -26) (2403 -8874 -26) (2403 -8874 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370692" + "plane" "(2677 -8831 -26) (2677 -8874 -26) (2677 -8874 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -59.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370691" + "plane" "(2403 -8874 -26) (2403 -8831 -26) (2403 -8831 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -59.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5749996" + side + { + "id" "370702" + "plane" "(2685 -7250 -29) (2785 -7250 -29) (2785 -8905 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 -552] 0.125" + "vaxis" "[0 -1 0 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2685 -8905 -29]" + "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 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" + } + 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 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" + } + 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" "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" "370701" + "plane" "(2685 -8905 -38) (2785 -8905 -38) (2785 -7250 -38)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 -788] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370700" + "plane" "(2685 -7250 -29) (2685 -8905 -29) (2685 -8905 -38)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370699" + "plane" "(2785 -7250 -38) (2785 -8905 -38) (2785 -8905 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370698" + "plane" "(2785 -7250 -29) (2685 -7250 -29) (2685 -7250 -38)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 -788] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370697" + "plane" "(2785 -8905 -38) (2685 -8905 -38) (2685 -8905 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 -788] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5750065" + side + { + "id" "370708" + "plane" "(2677 -8323 -25) (2403 -8323 -25) (2403 -8280 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -490.465] 0.025" + "vaxis" "[-0.559193 -0.829038 0 839.598] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2403 -8280 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370707" + "plane" "(2677 -8280 -26) (2403 -8280 -26) (2403 -8323 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32.0039] 0.25" + "vaxis" "[-1 0 0 60.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370706" + "plane" "(2403 -8280 -26) (2677 -8280 -26) (2677 -8280 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370705" + "plane" "(2677 -8323 -26) (2403 -8323 -26) (2403 -8323 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370704" + "plane" "(2677 -8280 -26) (2677 -8323 -26) (2677 -8323 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370703" + "plane" "(2403 -8323 -26) (2403 -8280 -26) (2403 -8280 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5750066" + side + { + "id" "370714" + "plane" "(3064 -8326 -25) (2790 -8326 -25) (2790 -8283 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 305.828] 0.025" + "vaxis" "[0.559193 0.829038 0 -844.512] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3064 -8326 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370713" + "plane" "(3064 -8283 -26) (2790 -8283 -26) (2790 -8326 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -39.998] 0.25" + "vaxis" "[1 0 0 -47.0986] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370712" + "plane" "(3064 -8326 -26) (2790 -8326 -26) (2790 -8326 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 47.0986] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370711" + "plane" "(2790 -8283 -26) (3064 -8283 -26) (3064 -8283 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 47.0986] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370710" + "plane" "(2790 -8326 -26) (2790 -8283 -26) (2790 -8283 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -39.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370709" + "plane" "(3064 -8283 -26) (3064 -8326 -26) (3064 -8326 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -39.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5750099" + side + { + "id" "370720" + "plane" "(2677 -7935 -25) (2403 -7935 -25) (2403 -7892 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -3.79688] 0.025" + "vaxis" "[-0.559193 -0.829038 0 394.266] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2403 -7892 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370719" + "plane" "(2677 -7892 -26) (2403 -7892 -26) (2403 -7935 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9961] 0.25" + "vaxis" "[-1 0 0 60.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370718" + "plane" "(2403 -7892 -26) (2677 -7892 -26) (2677 -7892 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370717" + "plane" "(2677 -7935 -26) (2403 -7935 -26) (2403 -7935 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370716" + "plane" "(2677 -7892 -26) (2677 -7935 -26) (2677 -7935 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370715" + "plane" "(2403 -7935 -26) (2403 -7892 -26) (2403 -7892 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5750128" + side + { + "id" "370726" + "plane" "(3064 -7939 -25) (2790 -7939 -25) (2790 -7896 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 865.535] 0.025" + "vaxis" "[0.559193 0.829038 0 -366.004] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3064 -7939 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370725" + "plane" "(3064 -7896 -26) (2790 -7896 -26) (2790 -7939 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12.0039] 0.25" + "vaxis" "[1 0 0 -47.0991] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370724" + "plane" "(3064 -7939 -26) (2790 -7939 -26) (2790 -7939 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 47.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370723" + "plane" "(2790 -7896 -26) (3064 -7896 -26) (3064 -7896 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 47.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370722" + "plane" "(2790 -7939 -26) (2790 -7896 -26) (2790 -7896 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370721" + "plane" "(3064 -7896 -26) (3064 -7939 -26) (3064 -7939 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5750169" + side + { + "id" "370732" + "plane" "(2677 -7316 -25) (2403 -7316 -25) (2403 -7273 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -494.178] 0.025" + "vaxis" "[-0.559193 -0.829038 0 441.248] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2403 -7273 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370731" + "plane" "(2677 -7273 -26) (2403 -7273 -26) (2403 -7316 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28.0039] 0.25" + "vaxis" "[-1 0 0 60.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370730" + "plane" "(2403 -7273 -26) (2677 -7273 -26) (2677 -7273 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370729" + "plane" "(2677 -7316 -26) (2403 -7316 -26) (2403 -7316 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370728" + "plane" "(2677 -7273 -26) (2677 -7316 -26) (2677 -7316 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370727" + "plane" "(2403 -7316 -26) (2403 -7273 -26) (2403 -7273 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5750256" + side + { + "id" "370738" + "plane" "(3065 -7318 -25) (2791 -7318 -25) (2791 -7275 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 320.342] 0.025" + "vaxis" "[0.559193 0.829038 0 -501.676] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[3065 -7318 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370737" + "plane" "(3065 -7275 -26) (2791 -7275 -26) (2791 -7318 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24.0039] 0.25" + "vaxis" "[1 0 0 -51.0991] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370736" + "plane" "(3065 -7318 -26) (2791 -7318 -26) (2791 -7318 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 51.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370735" + "plane" "(2791 -7275 -26) (3065 -7275 -26) (3065 -7275 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 51.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370734" + "plane" "(2791 -7318 -26) (2791 -7275 -26) (2791 -7275 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370733" + "plane" "(3065 -7275 -26) (3065 -7318 -26) (3065 -7318 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5732073" + side + { + "id" "370510" + "plane" "(1438 -7271 -25) (1712 -7271 -25) (1712 -7314 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -192.575] 0.025" + "vaxis" "[-0.559193 -0.829038 0 426.72] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1438 -7271 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370509" + "plane" "(1438 -7314 -26) (1712 -7314 -26) (1712 -7271 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36.0039] 0.25" + "vaxis" "[-1 0 0 40.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370508" + "plane" "(1438 -7271 -26) (1712 -7271 -26) (1712 -7271 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370507" + "plane" "(1712 -7314 -26) (1438 -7314 -26) (1438 -7314 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370506" + "plane" "(1712 -7271 -26) (1712 -7314 -26) (1712 -7314 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370505" + "plane" "(1438 -7314 -26) (1438 -7271 -26) (1438 -7271 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5732223" + side + { + "id" "370522" + "plane" "(1438 -7890 -25) (1712 -7890 -25) (1712 -7933 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 -726.192] 0.025" + "vaxis" "[-0.559193 -0.829038 0 379.739] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1438 -7890 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370521" + "plane" "(1438 -7933 -26) (1712 -7933 -26) (1712 -7890 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -7.99609] 0.25" + "vaxis" "[-1 0 0 40.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370520" + "plane" "(1438 -7890 -26) (1712 -7890 -26) (1712 -7890 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370519" + "plane" "(1712 -7933 -26) (1438 -7933 -26) (1438 -7933 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370518" + "plane" "(1712 -7890 -26) (1712 -7933 -26) (1712 -7933 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -7.99609] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370517" + "plane" "(1438 -7933 -26) (1438 -7890 -26) (1438 -7890 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -7.99609] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5732335" + side + { + "id" "370534" + "plane" "(2100 -7316 -25) (1826 -7316 -25) (1826 -7273 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 18.7377] 0.025" + "vaxis" "[0.559193 0.829038 0 -487.148] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2100 -7316 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370533" + "plane" "(2100 -7273 -26) (1826 -7273 -26) (1826 -7316 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16.0039] 0.25" + "vaxis" "[1 0 0 -31.0991] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370532" + "plane" "(2100 -7316 -26) (1826 -7316 -26) (1826 -7316 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370531" + "plane" "(1826 -7273 -26) (2100 -7273 -26) (2100 -7273 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.0991] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370530" + "plane" "(1826 -7316 -26) (1826 -7273 -26) (1826 -7273 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370529" + "plane" "(2100 -7273 -26) (2100 -7316 -26) (2100 -7316 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5732562" + side + { + "id" "370546" + "plane" "(1223 -8545 -25) (949 -8545 -25) (949 -8502 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 -549.958] 0.025" + "vaxis" "[0.559193 0.829038 0 -531.222] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1223 -8545 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370545" + "plane" "(1223 -8502 -26) (949 -8502 -26) (949 -8545 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -59.998] 0.25" + "vaxis" "[1 0 0 20.9004] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370544" + "plane" "(1223 -8545 -26) (949 -8545 -26) (949 -8545 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20.9004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370543" + "plane" "(949 -8502 -26) (1223 -8502 -26) (1223 -8502 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20.9004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370542" + "plane" "(949 -8545 -26) (949 -8502 -26) (949 -8502 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -59.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370541" + "plane" "(1223 -8502 -26) (1223 -8545 -26) (1223 -8545 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -59.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5732756" + side + { + "id" "370547" + "plane" "(861 -9331 -29) (861 -9224 -29) (2475 -9224 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 632] 0.125" + "vaxis" "[0 -1 0 794] 0.125" + "rotation" "0" + "lightmapscale" "18" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[861 -9331 -29]" + "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 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" + } + 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 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" + } + 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" "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" "370548" + "plane" "(861 -9224 -38) (861 -9331 -38) (2475 -9331 -38)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370549" + "plane" "(861 -9331 -38) (861 -9224 -38) (861 -9224 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370550" + "plane" "(2475 -9224 -38) (2475 -9331 -38) (2475 -9331 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370551" + "plane" "(861 -9224 -38) (2475 -9224 -38) (2475 -9224 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370552" + "plane" "(2475 -9331 -38) (861 -9331 -38) (861 -9331 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 127" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5732836" + side + { + "id" "370564" + "plane" "(1712 -8321 -25) (1438 -8321 -25) (1438 -8278 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.829038 -0.559193 0 835.138] 0.025" + "vaxis" "[-0.559193 -0.829038 0 825.07] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1438 -8278 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370563" + "plane" "(1712 -8278 -26) (1438 -8278 -26) (1438 -8321 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40.0039] 0.25" + "vaxis" "[-1 0 0 40.8984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370562" + "plane" "(1438 -8278 -26) (1712 -8278 -26) (1712 -8278 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370561" + "plane" "(1712 -8321 -26) (1438 -8321 -26) (1438 -8321 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8984] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370560" + "plane" "(1712 -8278 -26) (1712 -8321 -26) (1712 -8321 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370559" + "plane" "(1438 -8321 -26) (1438 -8278 -26) (1438 -8278 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40.0039] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5732982" + side + { + "id" "370576" + "plane" "(1223 -9225 -25) (949 -9225 -25) (949 -9121 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 -16.3391] 0.025" + "vaxis" "[0.559193 0.829038 0 539.758] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1223 -9225 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370575" + "plane" "(1223 -9121 -26) (949 -9121 -26) (949 -9225 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.998] 0.25" + "vaxis" "[1 0 0 20.9004] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370574" + "plane" "(1223 -9225 -26) (949 -9225 -26) (949 -9225 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20.9004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370573" + "plane" "(949 -9121 -26) (1223 -9121 -26) (1223 -9121 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20.9004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370572" + "plane" "(949 -9225 -26) (949 -9121 -26) (949 -9121 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370571" + "plane" "(1223 -9121 -26) (1223 -9225 -26) (1223 -9225 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5715829" + side + { + "id" "370481" + "plane" "(864 -9600 -32) (864 -9336 -32) (2896 -9336 -32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "17" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[864 -9600 -32]" + "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 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" + } + 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 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" + } + 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" "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" "370482" + "plane" "(864 -9336 -48) (864 -9600 -48) (2896 -9600 -48)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370483" + "plane" "(864 -9600 -48) (864 -9336 -48) (864 -9336 -32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370484" + "plane" "(2896 -9336 -48) (2896 -9600 -48) (2896 -9600 -32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370485" + "plane" "(864 -9336 -48) (2896 -9336 -48) (2896 -9336 -32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370486" + "plane" "(2896 -9600 -48) (864 -9600 -48) (864 -9600 -32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5716080" + side + { + "id" "370492" + "plane" "(1165 -6706 -29) (1165 -6609 -29) (1420 -6609 -29)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.559193 0.829038 0 -522] 0.025" + "vaxis" "[0.829038 -0.559193 0 -758] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1165 -6609 -29]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869" + "row1" "0 0.999756 0 0 0 0 0 0 0 0 0.999756 0 0 0 0 0 0 0 0 0.999756 0 0 0 0 0 0 0" + "row2" "0 0.999725 0.00781035 0 0 0.969697 0 0.999725 0.00781035 0 0 0.969697 0 0.999725 0.00781035 0 0.999725 0.00781035 0 0.999725 0.00781035 0 0.999725 0.00781035 0 0 0.969697" + "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.242476 0.969906 0.00378869 -0.998903 0 0.0156079 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.998903 0 0.0156079" + "row5" "0 0.999748 0.00390527 0 0 0.941176 0 0 0.941176 0 0 0.941176 0 0 0.941176 0 0.999748 0.00390527 0 0.999748 0.00390527 0 0 0.941176 0 0 0.941176" + "row6" "0 0 0.941176 0 0 0.941176 0 0 0.941176 0 0.999748 0.00390527 0 0.999748 0.00390527 0 0 0.941176 0 0 0.941176 0 0 0.941176 0 0.999748 0.00390527" + "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.242478 0.969913 0 -0.242478 0.969913 0 -0.242478 0.969913 0 -0.12402 0.992158 0 -0.999024 0 0 -0.999024 0 0 -0.999024 0 0 -0.999024 0 0 -0.999024 0 0" + } + distances + { + "row0" "0.000503312 0.000503312 0.000503312 0.000503312 0.000503312 0.000503312 0.000503312 0.000503312 0.000503312" + "row1" "0.000488281 0 0 0.000488281 0 0 0.000488281 0 0" + "row2" "0.000488296 3.8147e-06 0.000488296 3.8147e-06 0.000488296 0.000488296 0.000488296 0.000488296 3.8147e-06" + "row3" "0 0 0 0 0 0 0 0 0" + "row4" "0.000503312 0.000122085 0.000503312 0.000503312 0.000503312 0.000503312 0.000503312 0.000503312 0.000122085" + "row5" "0.000488285 1.90735e-06 1.90735e-06 1.90735e-06 1.90735e-06 0.000488285 0.000488285 1.90735e-06 1.90735e-06" + "row6" "1.90735e-06 1.90735e-06 1.90735e-06 0.000488285 0.000488285 1.90735e-06 1.90735e-06 1.90735e-06 0.000488285" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0.000503309 0.000503309 0.000503309 0.000984162 0.00012207 0.00012207 0.00012207 0.00012207 0.00012207" + } + 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" "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" "370491" + "plane" "(1165 -6609 -30) (1165 -6706 -30) (1420 -6706 -30)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370490" + "plane" "(1165 -6706 -30) (1165 -6609 -30) (1165 -6609 -29)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370489" + "plane" "(1165 -6609 -30) (1420 -6609 -30) (1420 -6609 -29)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370488" + "plane" "(1420 -6706 -30) (1165 -6706 -30) (1165 -6706 -29)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370487" + "plane" "(1420 -6609 -30) (1420 -6706 -30) (1420 -6706 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "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 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5716081" + side + { + "id" "370498" + "plane" "(1420 -6609 -29) (2417 -6609 -29) (2417 -6706 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1420 -6609 -29]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.242478 0.969913 0 -0.242478 0.969913 0 -0.242478 0.969913 0 -0.12402 0.992158 0 -0.999024 0 0 -0.999024 0 0 -0.999024 0 0 -0.999024 0 0 -0.999024 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.941176 0 0 0.941176 0 0 0.941176 0 0.999748 0.00390527 0 0.999748 0.00390527 0 0 0.941176 0 0 0.941176 0 0 0.941176 0 0.999748 0.00390527" + "row3" "-0.242476 0.969906 0.00378869 -0.998903 0 0.0156079 -0.998903 0 0.0156079 -0.998903 0 0.0156079 -0.998903 0 0.0156079 -0.242476 0.969906 0.00378869 -0.242476 0.969906 0.00378869 -0.998903 0 0.0156079 -0.998903 0 0.0156079" + "row4" "0 0 0.941176 0 0.999748 0.00390527 0 0 0.941176 0 0.999748 0.00390527 0 0.999748 0.00390527 0 0.999748 0.00390527 0 0.999748 0.00390527 0 0 0.941176 0 0.999748 0.00390527" + "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.999725 0.00781035 0 0 0.969697 0 0.999725 0.00781035 0 0 0.969697 0 0.999725 0.00781035 0 0.999725 0.00781035 0 0.999725 0.00781035 0 0.999725 0.00781035 0 0 0.969697" + "row7" "0 0.999756 0 0 0 0 0 0 0 0 0.999756 0 0 0 0 0 0 0 0 0.999756 0 0 0 0 0 0 0" + "row8" "-0.447113 0.894226 0.00349307 -0.447113 0.894226 0.00349307 -0.447113 0.894226 0.00349307 -0.447113 0.894226 0.00349307 -0.447113 0.894226 0.00349307 -0.447113 0.894226 0.00349307 -0.447113 0.894226 0.00349307 -0.447113 0.894226 0.00349307 -0.447113 0.894226 0.00349307" + } + distances + { + "row0" "0.000503309 0.000503309 0.000503309 0.000984162 0.00012207 0.00012207 0.00012207 0.00012207 0.00012207" + "row1" "0 0 0 0 0 0 0 0 0" + "row2" "1.90735e-06 1.90735e-06 1.90735e-06 0.000488285 0.000488285 1.90735e-06 1.90735e-06 1.90735e-06 0.000488285" + "row3" "0.000503312 0.000122085 0.000122085 0.000122085 0.000122085 0.000503312 0.000503312 0.000122085 0.000122085" + "row4" "1.90735e-06 0.000488285 1.90735e-06 0.000488285 0.000488285 0.000488285 0.000488285 1.90735e-06 0.000488285" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0.000488296 3.8147e-06 0.000488296 3.8147e-06 0.000488296 0.000488296 0.000488296 0.000488296 3.8147e-06" + "row7" "0.000488281 0 0 0.000488281 0 0 0.000488281 0 0" + "row8" "0.000545918 0.000545918 0.000545918 0.000545918 0.000545918 0.000545918 0.000545918 0.000545918 0.000545918" + } + 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" "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" "370497" + "plane" "(1420 -6706 -30) (2417 -6706 -30) (2417 -6609 -30)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370496" + "plane" "(2417 -6609 -30) (2417 -6706 -30) (2417 -6706 -29)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370495" + "plane" "(1420 -6609 -30) (2417 -6609 -30) (2417 -6609 -29)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370494" + "plane" "(2417 -6706 -30) (1420 -6706 -30) (1420 -6706 -29)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370493" + "plane" "(1420 -6706 -30) (1420 -6609 -30) (1420 -6609 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "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 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5699364" + side + { + "id" "370451" + "plane" "(1223 -7318 -25) (949 -7318 -25) (949 -7275 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 -347.151] 0.025" + "vaxis" "[0.559193 0.829038 0 763.593] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1223 -7318 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370450" + "plane" "(949 -7318 -26) (1223 -7318 -26) (1223 -7275 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -39.998] 0.25" + "vaxis" "[1 0 0 20.9004] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370449" + "plane" "(1223 -7318 -26) (949 -7318 -26) (949 -7318 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20.9004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370448" + "plane" "(949 -7275 -26) (1223 -7275 -26) (1223 -7275 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20.9004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370447" + "plane" "(949 -7318 -26) (949 -7275 -26) (949 -7275 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -39.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370446" + "plane" "(1223 -7275 -26) (1223 -7318 -26) (1223 -7318 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -39.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5699690" + side + { + "id" "370463" + "plane" "(1222 -7937 -25) (948 -7937 -25) (948 -7894 -25)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[-0.829038 0.559193 0 -870.694] 0.025" + "vaxis" "[0.559193 0.829038 0 832.942] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1222 -7937 -25]" + "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 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" + } + 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 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" + } + 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" "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" "370462" + "plane" "(948 -7937 -26) (1222 -7937 -26) (1222 -7894 -26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4.00195] 0.25" + "vaxis" "[1 0 0 24.9004] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370461" + "plane" "(1222 -7937 -26) (948 -7937 -26) (948 -7937 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -24.9004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370460" + "plane" "(948 -7894 -26) (1222 -7894 -26) (1222 -7894 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -24.9004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370459" + "plane" "(948 -7937 -26) (948 -7894 -26) (948 -7894 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4.00195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370458" + "plane" "(1222 -7894 -26) (1222 -7937 -26) (1222 -7937 -25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4.00195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5699922" + side + { + "id" "370480" + "plane" "(-928 -9616 -32) (-928 -9688 -32) (4344 -9688 -32)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370479" + "plane" "(-928 -9688 24) (-928 -9688 -32) (-928 -9616 -32)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370478" + "plane" "(4344 -9616 -32) (4344 -9688 -32) (4344 -9688 24)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370477" + "plane" "(4344 -9688 24) (4344 -9688 -32) (-928 -9688 -32)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370476" + "plane" "(-928 -9688 24) (-928 -9616 -32) (4344 -9616 -32)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "43" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-928 -9688 24]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0.613163 0.789956 0 -0.613906 -0.789379 0 -0.614148 -0.789191 0 0.613901 0.789383 0 0.612634 0.790366 0 0.614911 0.788594 0 -0.61421 -0.789142 0 0.613646 0.789581 0 -0.613765 -0.789489" + "row1" "0 0.613952 0.789343 0 0.614524 0.788898 0 -0.613988 -0.789315 0 -0.613945 -0.789349 0 0.613541 0.789663 0 -0.613738 -0.789509 0 -0.613907 -0.789378 0 0.614285 0.789084 0 0.614073 0.789249" + "row2" "0 -0.613921 -0.789368 0 -0.614833 -0.788657 0 0.613782 0.789476 0 0.613495 0.789699 0 -0.61388 -0.789399 0 -0.613128 -0.789982 0 0.613933 0.789358 0 0.613979 0.789322 0 -0.613848 -0.789424" + "row3" "0 -0.614232 -0.789125 0 -0.613897 -0.789386 0 0.613968 0.78933 0 -0.613983 -0.789319 0 -0.613709 -0.789532 0 -0.613909 -0.789377 0 -0.613657 -0.789572 0 0.613923 0.789365 0 -0.613262 -0.789879" + "row4" "0 -0.614024 -0.789288 0 0.613797 0.789464 0 -0.613859 -0.789415 0 -0.614424 -0.788976 0 -0.613979 -0.789322 0 0.624779 0.780793 0 0.61307 0.790027 0 -0.613688 -0.789548 0 -0.613918 -0.78937" + "row5" "0 -0.613878 -0.789401 0 -0.61399 -0.789313 0 -0.613789 -0.78947 0 -0.614061 -0.789259 0 -0.613769 -0.789486 0 -0.614101 -0.789227 0 -0.614824 -0.788663 0 -0.614312 -0.789063 0 -0.613776 -0.78948" + "row6" "0 0.613833 0.789436 0 -0.614048 -0.789268 0 0.611913 0.790924 0 0.613864 0.789412 0 0.613657 0.789572 0 0.614103 0.789226 0 0.6138 0.789461 0 0.61385 0.789423 0 -0.614029 -0.789283" + "row7" "0 0.618648 0.785665 0 -0.613877 -0.789401 0 -0.613854 -0.789419 0 0.614482 0.788931 0 -0.614008 -0.7893 0 0.614972 0.788533 0 -0.613942 -0.789351 0 -0.614163 -0.789179 0 0.614023 0.789288" + "row8" "0 0.61405 0.789267 0 0.613912 0.789374 0 -0.614364 -0.789022 0 -0.613709 -0.789532 0 0.613932 0.789359 0 -0.613696 -0.789542 0 -0.61399 -0.789314 0 -0.613608 -0.789611 0 -0.614702 -0.788759" + } + distances + { + "row0" "0.237307 0.639476 1.38021 1.22011 0.106801 0.0619372 0.222593 0.915061 0.583935" + "row1" "1.60016 0.500578 1.86568 0.65057 0.553906 0.717618 3.28964 0.632722 0.858764" + "row2" "3.26411 0.252546 0.945088 0.538029 0.501103 0.0780448 1.18186 1.11338 1.1868" + "row3" "0.839463 1.11989 1.1468 1.62235 0.416906 2.85536 0.584037 0.601281 0.246823" + "row4" "2.59877 1.44305 0.820882 0.454567 3.16201 0.0171935 0.130618 1.07413 1.61298" + "row5" "3.49978 0.663246 1.25374 1.97202 1.63882 0.783983 0.104832 0.782125 1.28081" + "row6" "1.68002 1.09735 0.110118 2.28445 0.246664 1.81445 0.750957 2.16042 2.83253" + "row7" "0.0631416 3.49978 1.04838 0.317849 1.45528 0.00952776 0.882806 1.09715 2.09619" + "row8" "1.90366 0.698326 0.616745 1.31278 1.84199 1.16641 1.39807 0.867373 0.322501" + } + 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.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352" + "row1" "0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352" + "row2" "0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352" + "row3" "0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352" + "row4" "0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352" + "row5" "0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352" + "row6" "0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352" + "row7" "0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352" + "row8" "0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352 0 0.613941 0.789352" + } + 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 1 1 0 0 9 9 1 1 0 0 1 1 9" + "row1" "0 1 1 9 9 9 9 1 1 9 9 9 9 9 9 0" + "row2" "9 1 1 9 9 0 0 1 1 0 0 0 0 1 1 9" + "row3" "0 9 9 0 0 9 9 0 0 9 9 9 9 0 0 1" + "row4" "1 0 0 1 1 1 1 9 9 1 1 1 1 9 9 9" + "row5" "9 1 1 9 9 9 9 9 9 9 9 9 9 9 9 0" + "row6" "0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 9" + "row7" "9 9 9 9 9 0 0 9 9 1 1 1 1 9 9 0" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } + } + editor + { + "color" "0 228 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5665794" + side + { + "id" "370422" + "plane" "(861 -9224 -29) (861 -7044 -29) (941 -7044 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 632] 0.125" + "vaxis" "[0 -1 0 794] 0.125" + "rotation" "0" + "lightmapscale" "18" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[861 -9224 -29]" + "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 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" + } + 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 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" + } + 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" "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" "370423" + "plane" "(861 -7044 -38) (861 -9224 -38) (941 -9224 -38)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 316] 0.25" + "vaxis" "[0 -1 0 200] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370424" + "plane" "(861 -9224 -38) (861 -7044 -38) (861 -7044 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 -200] 0.25" + "vaxis" "[0 0 -1 7.01335] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370425" + "plane" "(941 -7044 -38) (941 -9224 -38) (941 -9224 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[0 1 0 -200] 0.25" + "vaxis" "[0 0 -1 7.01335] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370426" + "plane" "(861 -7044 -38) (941 -7044 -38) (941 -7044 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 316] 0.25" + "vaxis" "[0 0 -1 7.01335] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370427" + "plane" "(941 -9224 -38) (861 -9224 -38) (861 -9224 -29)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 316] 0.25" + "vaxis" "[0 0 -1 7.01335] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5666126" + side + { + "id" "370434" + "plane" "(2417 -6609 -29) (2668 -6609 -29) (2668 -6706 -29)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.559193 0.829038 0 -756.618] 0.025" + "vaxis" "[0.829038 -0.559193 0 -147.227] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2417 -6706 -29]" + "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 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" + } + 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 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" + } + 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" "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" "370435" + "plane" "(2417 -6706 -30) (2668 -6706 -30) (2668 -6609 -30)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370436" + "plane" "(2417 -6609 -29) (2417 -6706 -29) (2417 -6706 -30)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370437" + "plane" "(2668 -6609 -30) (2668 -6706 -30) (2668 -6706 -29)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370438" + "plane" "(2668 -6609 -29) (2417 -6609 -29) (2417 -6609 -30)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370439" + "plane" "(2668 -6706 -30) (2417 -6706 -30) (2417 -6706 -29)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "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 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633298" + side + { + "id" "370194" + "plane" "(-1011 -2023 192) (-1145 -2023 192) (-1194 -2000 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370195" + "plane" "(-1145 -2023 -24) (-1011 -2023 -24) (-960 -2000 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370196" + "plane" "(-1194 -2000 -24) (-1194 -2000 192) (-1145 -2023 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370197" + "plane" "(-1011 -2023 -24) (-1011 -2023 192) (-960 -2000 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370198" + "plane" "(-960 -2000 -24) (-960 -2000 192) (-1194 -2000 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370199" + "plane" "(-1145 -2023 -24) (-1145 -2023 192) (-1011 -2023 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 201 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633729" + side + { + "id" "370217" + "plane" "(-1944 -1984 -16) (-1358 -1984 -16) (-1358 -1984 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" "370216" + "plane" "(-1358 -2000 -16) (-1944 -2000 -16) (-1944 -2000 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370215" + "plane" "(-1358 -2000 192) (-1944 -2000 192) (-1944 -1984 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" "370214" + "plane" "(-1358 -1984 -16) (-1944 -1984 -16) (-1944 -2000 -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" "370213" + "plane" "(-1358 -1984 192) (-1358 -1984 -16) (-1358 -2000 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -767.998] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370212" + "plane" "(-1944 -2000 192) (-1944 -2000 -16) (-1944 -1984 -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" "0 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633730" + side + { + "id" "370223" + "plane" "(-2809 -1984 -16) (-2194 -1984 -16) (-2194 -1984 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" "370222" + "plane" "(-2194 -2000 -16) (-2809 -2000 -16) (-2809 -2000 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370221" + "plane" "(-2194 -2000 192) (-2809 -2000 192) (-2809 -1984 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" "370220" + "plane" "(-2194 -1984 -16) (-2809 -1984 -16) (-2809 -2000 -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" "370219" + "plane" "(-2809 -2000 192) (-2809 -2000 -16) (-2809 -1984 -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" "370218" + "plane" "(-2194 -1984 192) (-2194 -1984 -16) (-2194 -2000 -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" "0 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633836" + side + { + "id" "370392" + "plane" "(-1358 -1984 192) (-832 -1984 192) (-832 -2000 192)" + "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" "370393" + "plane" "(-1358 -2000 -24) (-832 -2000 -24) (-832 -1984 -24)" + "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" "370394" + "plane" "(-1358 -1984 192) (-1358 -2000 192) (-1358 -2000 -24)" + "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" "370395" + "plane" "(-832 -1984 -24) (-832 -2000 -24) (-832 -2000 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" "370396" + "plane" "(-832 -1984 192) (-1358 -1984 192) (-1358 -1984 -24)" + "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" "370397" + "plane" "(-832 -2000 -24) (-1358 -2000 -24) (-1358 -2000 192)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633851" + side + { + "id" "370410" + "plane" "(-2194 -1984 192) (-1944 -1984 192) (-1944 -2000 192)" + "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" "370411" + "plane" "(-2194 -2000 -16) (-1944 -2000 -16) (-1944 -1984 -16)" + "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" "370412" + "plane" "(-2194 -1984 192) (-2194 -2000 192) (-2194 -2000 -16)" + "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" "370413" + "plane" "(-1944 -1984 -16) (-1944 -2000 -16) (-1944 -2000 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" "370414" + "plane" "(-1944 -1984 192) (-2194 -1984 192) (-2194 -1984 -16)" + "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" "370415" + "plane" "(-1944 -2000 -16) (-2194 -2000 -16) (-2194 -2000 192)" + "material" "TOOLS/TOOLSHINT" + "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 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600170" + side + { + "id" "369648" + "plane" "(-2464 -1740 -24) (-832 -1740 -24) (-832 -1984 -24)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369649" + "plane" "(-2464 -1984 -32) (-832 -1984 -32) (-832 -1740 -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" "369650" + "plane" "(-2464 -1740 -24) (-2464 -1984 -24) (-2464 -1984 -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" "369651" + "plane" "(-832 -1740 -32) (-832 -1984 -32) (-832 -1984 -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" "369652" + "plane" "(-832 -1740 -24) (-2464 -1740 -24) (-2464 -1740 -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" "369653" + "plane" "(-832 -1984 -32) (-2464 -1984 -32) (-2464 -1984 -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 238 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600171" + side + { + "id" "369654" + "plane" "(-2640 -1392 -24) (-672 -1392 -24) (-672 -1740 -24)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369655" + "plane" "(-2640 -1740 -32) (-672 -1740 -32) (-672 -1392 -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" "369656" + "plane" "(-2640 -1392 -24) (-2640 -1740 -24) (-2640 -1740 -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" "369657" + "plane" "(-672 -1392 -32) (-672 -1740 -32) (-672 -1740 -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" "369658" + "plane" "(-672 -1392 -24) (-2640 -1392 -24) (-2640 -1392 -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" "369659" + "plane" "(-672 -1740 -32) (-2640 -1740 -32) (-2640 -1740 -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 220 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600172" + side + { + "id" "369660" + "plane" "(-2624 -1740 576) (-2480 -1740 576) (-2480 -1756 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369661" + "plane" "(-2624 -1756 -24) (-2480 -1756 -24) (-2480 -1740 -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" + } + side + { + "id" "369662" + "plane" "(-2624 -1740 576) (-2624 -1756 576) (-2624 -1756 -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" "369663" + "plane" "(-2480 -1740 -24) (-2480 -1756 -24) (-2480 -1756 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" "369664" + "plane" "(-2480 -1740 576) (-2624 -1740 576) (-2624 -1740 -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" "369665" + "plane" "(-2480 -1756 -24) (-2624 -1756 -24) (-2624 -1756 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" + } + editor + { + "color" "0 174 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600173" + side + { + "id" "369666" + "plane" "(-2640 -1408 576) (-2624 -1408 576) (-2624 -1756 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369667" + "plane" "(-2640 -1756 -24) (-2624 -1756 -24) (-2624 -1408 -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" + } + side + { + "id" "369668" + "plane" "(-2640 -1408 576) (-2640 -1756 576) (-2640 -1756 -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" "369669" + "plane" "(-2624 -1408 -24) (-2624 -1756 -24) (-2624 -1756 576)" + "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" "369670" + "plane" "(-2624 -1408 576) (-2640 -1408 576) (-2640 -1408 -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" "369671" + "plane" "(-2624 -1756 -24) (-2640 -1756 -24) (-2640 -1756 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" + } + editor + { + "color" "0 224 141" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600174" + side + { + "id" "369672" + "plane" "(-2640 -1392 576) (-688 -1392 576) (-688 -1408 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369673" + "plane" "(-2640 -1408 -24) (-688 -1408 -24) (-688 -1392 -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" + } + side + { + "id" "369674" + "plane" "(-2640 -1392 576) (-2640 -1408 576) (-2640 -1408 -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" "369675" + "plane" "(-688 -1392 -24) (-688 -1408 -24) (-688 -1408 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" "369676" + "plane" "(-688 -1392 576) (-2640 -1392 576) (-2640 -1392 -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" "369677" + "plane" "(-688 -1408 -24) (-2640 -1408 -24) (-2640 -1408 576)" + "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" "0 238 139" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600175" + side + { + "id" "369678" + "plane" "(-688 -1392 576) (-672 -1392 576) (-672 -1740 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369679" + "plane" "(-688 -1740 -24) (-672 -1740 -24) (-672 -1392 -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" + } + side + { + "id" "369680" + "plane" "(-688 -1392 576) (-688 -1740 576) (-688 -1740 -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" "369681" + "plane" "(-672 -1392 -24) (-672 -1740 -24) (-672 -1740 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" "369682" + "plane" "(-672 -1392 576) (-688 -1392 576) (-688 -1392 -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" "369683" + "plane" "(-672 -1740 -24) (-688 -1740 -24) (-688 -1740 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" + } + editor + { + "color" "0 124 101" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600176" + side + { + "id" "369684" + "plane" "(-816 -1740 576) (-672 -1740 576) (-672 -1756 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369685" + "plane" "(-816 -1756 -24) (-672 -1756 -24) (-672 -1740 -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" + } + side + { + "id" "369686" + "plane" "(-816 -1740 576) (-816 -1756 576) (-816 -1756 -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" "369687" + "plane" "(-672 -1740 -24) (-672 -1756 -24) (-672 -1756 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" "369688" + "plane" "(-672 -1740 576) (-816 -1740 576) (-816 -1740 -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" "369689" + "plane" "(-672 -1756 -24) (-816 -1756 -24) (-816 -1756 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" + } + editor + { + "color" "0 198 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600177" + side + { + "id" "369690" + "plane" "(-2480 -1740 592) (-816 -1740 592) (-816 -1984 592)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369691" + "plane" "(-2480 -1984 576) (-816 -1984 576) (-816 -1740 576)" + "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" "369692" + "plane" "(-2480 -1740 592) (-2480 -1984 592) (-2480 -1984 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" "369693" + "plane" "(-816 -1740 576) (-816 -1984 576) (-816 -1984 592)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369694" + "plane" "(-816 -1740 592) (-2480 -1740 592) (-2480 -1740 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" "369695" + "plane" "(-816 -1984 576) (-2480 -1984 576) (-2480 -1984 592)" + "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 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600178" + side + { + "id" "369696" + "plane" "(-2640 -1392 592) (-672 -1392 592) (-672 -1740 592)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369697" + "plane" "(-2640 -1740 576) (-672 -1740 576) (-672 -1392 576)" + "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" "369698" + "plane" "(-2640 -1392 592) (-2640 -1740 592) (-2640 -1740 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" "369699" + "plane" "(-672 -1392 576) (-672 -1740 576) (-672 -1740 592)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369700" + "plane" "(-672 -1392 592) (-2640 -1392 592) (-2640 -1392 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" "369701" + "plane" "(-672 -1740 576) (-2640 -1740 576) (-2640 -1740 592)" + "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 195" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600234" + side + { + "id" "369737" + "plane" "(-832 -1740 -24) (-832 -1984 -24) (-816 -1984 -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" + } + side + { + "id" "369736" + "plane" "(-832 -1984 -24) (-832 -1740 -24) (-832 -1740 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369735" + "plane" "(-816 -1740 -24) (-816 -1984 -24) (-816 -1984 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" "369734" + "plane" "(-832 -1740 -24) (-816 -1740 -24) (-816 -1740 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" "369733" + "plane" "(-816 -1984 -24) (-832 -1984 -24) (-832 -1984 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" "369732" + "plane" "(-832 -1984 128) (-832 -1740 128) (-816 -1740 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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600717" + side + { + "id" "369995" + "plane" "(-832 -1740 128) (-832 -1740 144) (-832 -1984 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369994" + "plane" "(-816 -1984 128) (-816 -1984 144) (-816 -1740 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369993" + "plane" "(-816 -1740 128) (-816 -1740 144) (-832 -1740 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" "369992" + "plane" "(-832 -1984 128) (-832 -1984 144) (-816 -1984 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" "369991" + "plane" "(-832 -1740 128) (-832 -1984 128) (-816 -1984 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" "369990" + "plane" "(-832 -1984 144) (-832 -1740 144) (-816 -1740 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" + } + editor + { + "color" "0 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600724" + side + { + "id" "370007" + "plane" "(-832 -1740 144) (-832 -1740 256) (-832 -1984 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370006" + "plane" "(-816 -1984 144) (-816 -1984 256) (-816 -1740 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" "370005" + "plane" "(-816 -1740 144) (-816 -1740 256) (-832 -1740 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" "370004" + "plane" "(-832 -1984 144) (-832 -1984 256) (-816 -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" "370003" + "plane" "(-832 -1740 144) (-832 -1984 144) (-816 -1984 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" "370002" + "plane" "(-832 -1984 256) (-832 -1740 256) (-816 -1740 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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600730" + side + { + "id" "370019" + "plane" "(-832 -1740 256) (-832 -1740 319) (-832 -1984 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370018" + "plane" "(-816 -1984 256) (-816 -1984 319) (-816 -1740 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370017" + "plane" "(-816 -1740 256) (-816 -1740 319) (-832 -1740 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370016" + "plane" "(-832 -1984 256) (-832 -1984 319) (-816 -1984 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370015" + "plane" "(-832 -1740 256) (-832 -1984 256) (-816 -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" "370014" + "plane" "(-832 -1984 319) (-832 -1740 319) (-816 -1740 319)" + "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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600737" + side + { + "id" "370031" + "plane" "(-832 -1740 319) (-832 -1740 400) (-832 -1984 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370030" + "plane" "(-816 -1984 319) (-816 -1984 400) (-816 -1740 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370029" + "plane" "(-816 -1740 319) (-816 -1740 400) (-832 -1740 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370028" + "plane" "(-832 -1984 319) (-832 -1984 400) (-816 -1984 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370027" + "plane" "(-832 -1740 319) (-832 -1984 319) (-816 -1984 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370026" + "plane" "(-832 -1984 400) (-832 -1740 400) (-816 -1740 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" + } + editor + { + "color" "0 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600745" + side + { + "id" "370043" + "plane" "(-832 -1740 400) (-832 -1740 416) (-832 -1984 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370042" + "plane" "(-816 -1984 400) (-816 -1984 416) (-816 -1740 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" "370041" + "plane" "(-816 -1740 400) (-816 -1740 416) (-832 -1740 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" "370040" + "plane" "(-832 -1984 400) (-832 -1984 416) (-816 -1984 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" "370039" + "plane" "(-832 -1740 400) (-832 -1984 400) (-816 -1984 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" "370038" + "plane" "(-832 -1984 416) (-832 -1740 416) (-816 -1740 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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600753" + side + { + "id" "370049" + "plane" "(-832 -1984 576) (-832 -1740 576) (-816 -1740 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370048" + "plane" "(-832 -1740 560) (-832 -1740 576) (-832 -1984 576)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 25] 0.125" + "vaxis" "[0 1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370047" + "plane" "(-816 -1984 560) (-816 -1984 576) (-816 -1740 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" "370046" + "plane" "(-816 -1740 560) (-816 -1740 576) (-832 -1740 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" "370045" + "plane" "(-832 -1984 560) (-832 -1984 576) (-816 -1984 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" "370044" + "plane" "(-832 -1740 560) (-832 -1984 560) (-816 -1984 560)" + "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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600754" + side + { + "id" "370055" + "plane" "(-832 -1740 416) (-832 -1740 560) (-832 -1984 560)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370054" + "plane" "(-816 -1984 416) (-816 -1984 560) (-816 -1740 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370053" + "plane" "(-816 -1740 416) (-816 -1740 560) (-832 -1740 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" "370052" + "plane" "(-832 -1984 416) (-832 -1984 560) (-816 -1984 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" "370051" + "plane" "(-832 -1740 416) (-832 -1984 416) (-816 -1984 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" "370050" + "plane" "(-832 -1984 560) (-832 -1740 560) (-816 -1740 560)" + "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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600759" + side + { + "id" "370067" + "plane" "(-2480 -1740 -24) (-2480 -1984 -24) (-2464 -1984 -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" + } + side + { + "id" "370066" + "plane" "(-2480 -1984 -24) (-2480 -1740 -24) (-2480 -1740 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" "370065" + "plane" "(-2464 -1740 -24) (-2464 -1984 -24) (-2464 -1984 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370064" + "plane" "(-2480 -1740 -24) (-2464 -1740 -24) (-2464 -1740 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" "370063" + "plane" "(-2464 -1984 -24) (-2480 -1984 -24) (-2480 -1984 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" "370062" + "plane" "(-2480 -1984 128) (-2480 -1740 128) (-2464 -1740 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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600764" + side + { + "id" "370079" + "plane" "(-2480 -1740 128) (-2480 -1740 144) (-2480 -1984 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370078" + "plane" "(-2464 -1984 128) (-2464 -1984 144) (-2464 -1740 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370077" + "plane" "(-2464 -1740 128) (-2464 -1740 144) (-2480 -1740 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" "370076" + "plane" "(-2480 -1984 128) (-2480 -1984 144) (-2464 -1984 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" "370075" + "plane" "(-2480 -1740 128) (-2480 -1984 128) (-2464 -1984 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" "370074" + "plane" "(-2480 -1984 144) (-2480 -1740 144) (-2464 -1740 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" + } + editor + { + "color" "0 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600783" + side + { + "id" "370085" + "plane" "(-2480 -1984 576) (-2480 -1740 576) (-2464 -1740 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370084" + "plane" "(-2480 -1740 560) (-2480 -1740 576) (-2480 -1984 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" "370083" + "plane" "(-2464 -1984 560) (-2464 -1984 576) (-2464 -1740 576)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 25] 0.125" + "vaxis" "[0 1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370082" + "plane" "(-2464 -1740 560) (-2464 -1740 576) (-2480 -1740 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" "370081" + "plane" "(-2480 -1984 560) (-2480 -1984 576) (-2464 -1984 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" "370080" + "plane" "(-2480 -1740 560) (-2480 -1984 560) (-2464 -1984 560)" + "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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600790" + side + { + "id" "370097" + "plane" "(-2480 -1984 560) (-2480 -1984 416) (-2480 -1740 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" "370096" + "plane" "(-2464 -1740 560) (-2464 -1740 416) (-2464 -1984 416)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370095" + "plane" "(-2480 -1740 560) (-2480 -1740 416) (-2464 -1740 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" "370094" + "plane" "(-2464 -1984 560) (-2464 -1984 416) (-2480 -1984 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" "370093" + "plane" "(-2480 -1984 560) (-2480 -1740 560) (-2464 -1740 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370092" + "plane" "(-2480 -1740 416) (-2480 -1984 416) (-2464 -1984 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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600805" + side + { + "id" "370109" + "plane" "(-2480 -1984 416) (-2480 -1984 400) (-2480 -1740 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370108" + "plane" "(-2464 -1740 416) (-2464 -1740 400) (-2464 -1984 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370107" + "plane" "(-2480 -1740 416) (-2480 -1740 400) (-2464 -1740 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370106" + "plane" "(-2464 -1984 416) (-2464 -1984 400) (-2480 -1984 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370105" + "plane" "(-2480 -1984 416) (-2480 -1740 416) (-2464 -1740 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" "370104" + "plane" "(-2480 -1740 400) (-2480 -1984 400) (-2464 -1984 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" + } + editor + { + "color" "0 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600831" + side + { + "id" "370121" + "plane" "(-2480 -1984 400) (-2480 -1984 319) (-2480 -1740 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370120" + "plane" "(-2464 -1740 400) (-2464 -1740 319) (-2464 -1984 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370119" + "plane" "(-2480 -1740 400) (-2480 -1740 319) (-2464 -1740 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370118" + "plane" "(-2464 -1984 400) (-2464 -1984 319) (-2480 -1984 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370117" + "plane" "(-2480 -1984 400) (-2480 -1740 400) (-2464 -1740 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" "370116" + "plane" "(-2480 -1740 319) (-2480 -1984 319) (-2464 -1984 319)" + "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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600839" + side + { + "id" "370133" + "plane" "(-2480 -1984 319) (-2480 -1984 256) (-2480 -1740 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" "370132" + "plane" "(-2464 -1740 319) (-2464 -1740 256) (-2464 -1984 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370131" + "plane" "(-2480 -1740 319) (-2480 -1740 256) (-2464 -1740 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" "370130" + "plane" "(-2464 -1984 319) (-2464 -1984 256) (-2480 -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" "370129" + "plane" "(-2480 -1984 319) (-2480 -1740 319) (-2464 -1740 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370128" + "plane" "(-2480 -1740 256) (-2480 -1984 256) (-2464 -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" + } + editor + { + "color" "0 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600840" + side + { + "id" "370139" + "plane" "(-2480 -1984 256) (-2480 -1984 144) (-2480 -1740 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370138" + "plane" "(-2464 -1740 256) (-2464 -1740 144) (-2464 -1984 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370137" + "plane" "(-2480 -1740 256) (-2480 -1740 144) (-2464 -1740 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" "370136" + "plane" "(-2464 -1984 256) (-2464 -1984 144) (-2480 -1984 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" "370135" + "plane" "(-2480 -1740 144) (-2480 -1984 144) (-2464 -1984 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" "370134" + "plane" "(-2480 -1984 256) (-2480 -1740 256) (-2464 -1740 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 168 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5583465" + side + { + "id" "369462" + "plane" "(-1168 -5024 -46) (-1152 -5024 -46) (-1152 -5272 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369463" + "plane" "(-1168 -5272 -496) (-1152 -5272 -496) (-1152 -5024 -496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369464" + "plane" "(-1168 -5024 -46) (-1168 -5272 -46) (-1168 -5272 -496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369465" + "plane" "(-1152 -5024 -496) (-1152 -5272 -496) (-1152 -5272 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369466" + "plane" "(-1152 -5024 -46) (-1168 -5024 -46) (-1168 -5024 -496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369467" + "plane" "(-1152 -5272 -496) (-1168 -5272 -496) (-1168 -5272 -46)" + "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 249" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5583469" + side + { + "id" "369479" + "plane" "(-816 -5024 -46) (-800 -5024 -46) (-800 -5272 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369478" + "plane" "(-816 -5272 -480) (-800 -5272 -480) (-800 -5024 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369477" + "plane" "(-816 -5024 -46) (-816 -5272 -46) (-816 -5272 -480)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369476" + "plane" "(-800 -5024 -480) (-800 -5272 -480) (-800 -5272 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369475" + "plane" "(-800 -5024 -46) (-816 -5024 -46) (-816 -5024 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369474" + "plane" "(-800 -5272 -480) (-816 -5272 -480) (-816 -5272 -46)" + "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 249" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5583481" + side + { + "id" "369497" + "plane" "(-816 -4984 -224) (-240 -4984 -224) (-240 -5024 -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" "369496" + "plane" "(-816 -5024 -480) (-240 -5024 -480) (-240 -4984 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369495" + "plane" "(-240 -4984 -480) (-240 -5024 -480) (-240 -5024 -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" "369494" + "plane" "(-816 -4984 -480) (-240 -4984 -480) (-240 -4984 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369493" + "plane" "(-240 -5024 -480) (-816 -5024 -480) (-816 -5024 -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" "369492" + "plane" "(-816 -5024 -480) (-816 -4984 -480) (-816 -4984 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5583487" + side + { + "id" "369509" + "plane" "(-816 -5272 -46) (-1152 -5272 -46) (-1152 -5256 -46)" + "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" "369508" + "plane" "(-816 -5256 -480) (-1152 -5256 -480) (-1152 -5272 -480)" + "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" "369507" + "plane" "(-1152 -5256 -480) (-816 -5256 -480) (-816 -5256 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369506" + "plane" "(-816 -5272 -480) (-1152 -5272 -480) (-1152 -5272 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369505" + "plane" "(-816 -5256 -480) (-816 -5272 -480) (-816 -5272 -46)" + "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" "369504" + "plane" "(-1152 -5272 -480) (-1152 -5256 -480) (-1152 -5256 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5583488" + side + { + "id" "369515" + "plane" "(-1152 -5024 -224) (-1560 -5024 -224) (-1560 -4984 -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" "369514" + "plane" "(-1152 -4984 -480) (-1560 -4984 -480) (-1560 -5024 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369513" + "plane" "(-1560 -5024 -480) (-1560 -4984 -480) (-1560 -4984 -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" "369512" + "plane" "(-1560 -4984 -480) (-1152 -4984 -480) (-1152 -4984 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369511" + "plane" "(-1152 -5024 -480) (-1560 -5024 -480) (-1560 -5024 -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" "369510" + "plane" "(-1152 -4984 -480) (-1152 -5024 -480) (-1152 -5024 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5583495" + side + { + "id" "369516" + "plane" "(-1152 -4984 -224) (-816 -4984 -224) (-816 -4992 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 192] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369517" + "plane" "(-1152 -4992 -272) (-816 -4992 -272) (-816 -4984 -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" "369518" + "plane" "(-1152 -4984 -224) (-1152 -4992 -224) (-1152 -4992 -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" "369519" + "plane" "(-816 -4984 -272) (-816 -4992 -272) (-816 -4992 -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" "369520" + "plane" "(-816 -4984 -224) (-1152 -4984 -224) (-1152 -4984 -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" "369521" + "plane" "(-816 -4992 -272) (-1152 -4992 -272) (-1152 -4992 -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 212 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5583507" + side + { + "id" "369522" + "plane" "(-1168 -5024 -31) (-800 -5024 -31) (-800 -5272 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369523" + "plane" "(-1168 -5272 -46) (-800 -5272 -46) (-800 -5024 -46)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369524" + "plane" "(-1168 -5024 -31) (-1168 -5272 -31) (-1168 -5272 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369525" + "plane" "(-800 -5024 -46) (-800 -5272 -46) (-800 -5272 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369526" + "plane" "(-800 -5024 -31) (-1168 -5024 -31) (-1168 -5024 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369527" + "plane" "(-800 -5272 -46) (-1168 -5272 -46) (-1168 -5272 -31)" + "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 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5583516" + side + { + "id" "369528" + "plane" "(-1152 -5024 -480) (-816 -5024 -480) (-816 -5256 -480)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369529" + "plane" "(-1152 -5256 -504) (-816 -5256 -504) (-816 -5024 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369530" + "plane" "(-1152 -5024 -480) (-1152 -5256 -480) (-1152 -5256 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369531" + "plane" "(-816 -5024 -504) (-816 -5256 -504) (-816 -5256 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369532" + "plane" "(-816 -5024 -480) (-1152 -5024 -480) (-1152 -5024 -504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369533" + "plane" "(-816 -5256 -504) (-1152 -5256 -504) (-1152 -5256 -480)" + "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 118 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5567307" + side + { + "id" "369372" + "plane" "(-1400 -4800 -224) (-1400 -4384 -224) (-400 -4384 -224)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369373" + "plane" "(-1400 -4384 -272) (-1400 -4800 -272) (-400 -4800 -272)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369374" + "plane" "(-1400 -4800 -272) (-1400 -4384 -272) (-1400 -4384 -224)" + "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" "369375" + "plane" "(-400 -4384 -272) (-400 -4800 -272) (-400 -4800 -224)" + "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" "369376" + "plane" "(-1400 -4384 -272) (-400 -4384 -272) (-400 -4384 -224)" + "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" "369377" + "plane" "(-400 -4800 -272) (-1400 -4800 -272) (-1400 -4800 -224)" + "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 133 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5567308" + side + { + "id" "369378" + "plane" "(-1400 -4384 -224) (-1400 -3944 -224) (-816 -3944 -224)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369379" + "plane" "(-1400 -3944 -272) (-1400 -4384 -272) (-816 -4384 -272)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369380" + "plane" "(-1400 -4384 -272) (-1400 -3944 -272) (-1400 -3944 -224)" + "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" "369381" + "plane" "(-816 -3944 -272) (-816 -4384 -272) (-816 -4384 -224)" + "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" "369382" + "plane" "(-1400 -3944 -272) (-816 -3944 -272) (-816 -3944 -224)" + "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" "369383" + "plane" "(-816 -4384 -272) (-1400 -4384 -272) (-1400 -4384 -224)" + "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 115 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5567320" + side + { + "id" "369390" + "plane" "(1600 -5344 0) (1680 -5344 0) (1680 -5496 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369391" + "plane" "(1600 -5496 -16) (1680 -5496 -16) (1680 -5344 -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" "369392" + "plane" "(1600 -5344 0) (1600 -5496 0) (1600 -5496 -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" "369393" + "plane" "(1680 -5344 -16) (1680 -5496 -16) (1680 -5496 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" "369394" + "plane" "(1680 -5344 0) (1600 -5344 0) (1600 -5344 -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" "369395" + "plane" "(1680 -5496 -16) (1600 -5496 -16) (1600 -5496 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 109 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5567328" + side + { + "id" "369396" + "plane" "(2232 -4288 400) (2319.5 -4704 400) (2310.5 -4704 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369397" + "plane" "(2319.5 -4704 -16) (2232 -4288 -16) (2223 -4288 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369398" + "plane" "(2310.5 -4704 400) (2310.5 -4704 -16) (2223 -4288 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369399" + "plane" "(2319.5 -4704 -16) (2319.5 -4704 400) (2232 -4288 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369400" + "plane" "(2223 -4288 400) (2223 -4288 -16) (2232 -4288 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369401" + "plane" "(2310.5 -4704 -16) (2310.5 -4704 400) (2319.5 -4704 400)" + "material" "TOOLS/TOOLSCLIP" + "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 162" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5567343" + side + { + "id" "369413" + "plane" "(1184 -5372 128.5) (1184 -5306 128.5) (1200 -5306 128.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369412" + "plane" "(1184 -5306 -0.499855) (1184 -5372 -0.499855) (1200 -5372 -0.499855)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369411" + "plane" "(1184 -5372 -0.499917) (1184 -5306 -0.499917) (1184 -5306 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369410" + "plane" "(1200 -5306 -0.499931) (1200 -5372 -0.499931) (1200 -5372 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369409" + "plane" "(1184 -5306 -0.499925) (1200 -5306 -0.499925) (1200 -5306 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369408" + "plane" "(1200 -5372 -0.499922) (1184 -5372 -0.499922) (1184 -5372 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5567431" + side + { + "id" "369419" + "plane" "(624 -1772 -16) (624 -1741 -16) (1384 -1741 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 68] 0.125" + "vaxis" "[0 -1 0 -745] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369418" + "plane" "(624 -1741 -44) (624 -1772 -44) (1384 -1772 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369417" + "plane" "(624 -1772 -44) (624 -1741 -44) (624 -1741 -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" "369416" + "plane" "(1384 -1741 -44) (1384 -1772 -44) (1384 -1772 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369415" + "plane" "(1384 -1772 -44) (624 -1772 -44) (624 -1772 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369414" + "plane" "(624 -1741 -44) (1384 -1741 -44) (1384 -1741 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5567437" + side + { + "id" "369437" + "plane" "(624 -1741 -16) (624 -1280 -16) (664 -1280 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 -62] 0.125" + "vaxis" "[0 -1 0 -741] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369436" + "plane" "(664 -1280 -44) (624 -1280 -44) (624 -1741 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369435" + "plane" "(624 -1741 -44) (624 -1280 -44) (624 -1280 -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" "369434" + "plane" "(624 -1280 -44) (664 -1280 -44) (664 -1280 -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" "369433" + "plane" "(664 -1741 -44) (624 -1741 -44) (624 -1741 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369432" + "plane" "(664 -1280 -44) (664 -1741 -44) (664 -1741 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5567448" + side + { + "id" "369443" + "plane" "(1384 -1312 -16) (1384 -1741 -16) (664 -1741 -16)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369442" + "plane" "(664 -1312 -44) (664 -1741 -44) (1384 -1741 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369441" + "plane" "(1384 -1312 -44) (1384 -1741 -44) (1384 -1741 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369440" + "plane" "(1384 -1741 -44) (664 -1741 -44) (664 -1741 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369439" + "plane" "(664 -1741 -44) (664 -1312 -44) (664 -1312 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369438" + "plane" "(664 -1312 -44) (1384 -1312 -44) (1384 -1312 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5567449" + side + { + "id" "369449" + "plane" "(664 -1280 -16) (1384 -1280 -16) (1384 -1312 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 -62] 0.125" + "vaxis" "[0 -1 0 898] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369448" + "plane" "(1384 -1280 -44) (664 -1280 -44) (664 -1312 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369447" + "plane" "(664 -1280 -44) (1384 -1280 -44) (1384 -1280 -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" "369446" + "plane" "(1384 -1280 -44) (1384 -1312 -44) (1384 -1312 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369445" + "plane" "(664 -1312 -44) (664 -1280 -44) (664 -1280 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369444" + "plane" "(1384 -1312 -44) (664 -1312 -44) (664 -1312 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5534252" + side + { + "id" "382244" + "plane" "(-1024 -3216 -32) (-1024 -2912 -32) (-608 -2912 -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" "382243" + "plane" "(-1024 -2912 -224) (-1024 -3216 -224) (-608 -3216 -224)" + "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" "382242" + "plane" "(-1024 -3216 -224) (-1024 -2912 -224) (-1024 -2912 -32)" + "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" "382241" + "plane" "(-608 -2912 -224) (-608 -3216 -224) (-608 -3216 -32)" + "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" "382240" + "plane" "(-1024 -2912 -224) (-608 -2912 -224) (-608 -2912 -32)" + "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" "382239" + "plane" "(-608 -3216 -224) (-1024 -3216 -224) (-1024 -3216 -32)" + "material" "TOOLS/TOOLSHINT" + "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 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5534254" + side + { + "id" "369170" + "plane" "(-1280 -2896 -32) (-1056 -2896 -32) (-1056 -2912 -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" "369171" + "plane" "(-1280 -2912 -200) (-1056 -2912 -200) (-1056 -2896 -200)" + "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" "369172" + "plane" "(-1280 -2896 -32) (-1280 -2912 -32) (-1280 -2912 -200)" + "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" "369173" + "plane" "(-1056 -2896 -200) (-1056 -2912 -200) (-1056 -2912 -32)" + "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" "369174" + "plane" "(-1056 -2896 -32) (-1280 -2896 -32) (-1280 -2896 -200)" + "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" "369175" + "plane" "(-1056 -2912 -200) (-1280 -2912 -200) (-1280 -2912 -32)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 162 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5534262" + side + { + "id" "369182" + "plane" "(-96 -1824 192) (152 -1824 192) (152 -1920 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" "369183" + "plane" "(-96 -1920 -24) (152 -1920 -24) (152 -1824 -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" + } + side + { + "id" "369184" + "plane" "(-96 -1824 192) (-96 -1920 192) (-96 -1920 -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" "369185" + "plane" "(152 -1824 -24) (152 -1920 -24) (152 -1920 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" "369186" + "plane" "(152 -1824 192) (-96 -1824 192) (-96 -1824 -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" "369187" + "plane" "(152 -1920 -24) (-96 -1920 -24) (-96 -1920 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 196 133" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5534263" + side + { + "id" "369188" + "plane" "(2912 -1280 608) (2928 -1280 608) (2928 -1628 608)" + "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" "369189" + "plane" "(2912 -1628 -16) (2928 -1628 -16) (2928 -1280 -16)" + "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" "369190" + "plane" "(2912 -1280 608) (2912 -1628 608) (2912 -1628 -16)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369191" + "plane" "(2928 -1280 -16) (2928 -1628 -16) (2928 -1628 608)" + "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" "369192" + "plane" "(2928 -1280 608) (2912 -1280 608) (2912 -1280 -16)" + "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" "369193" + "plane" "(2928 -1628 -16) (2912 -1628 -16) (2912 -1628 608)" + "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 250 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5534998" + side + { + "id" "369223" + "plane" "(664 -2064 -16) (624 -2064 -16) (624 -1772 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 -62] 0.125" + "vaxis" "[0 -1 0 -741] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369222" + "plane" "(624 -1772 -44) (624 -2064 -44) (664 -2064 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369221" + "plane" "(624 -2064 -44) (624 -1772 -44) (624 -1772 -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" "369220" + "plane" "(664 -2064 -44) (624 -2064 -44) (624 -2064 -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" "369219" + "plane" "(624 -1772 -44) (664 -1772 -44) (664 -1772 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369218" + "plane" "(664 -1772 -44) (664 -2064 -44) (664 -2064 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5535095" + side + { + "id" "369230" + "plane" "(-3874 -9728 456) (-3874 276 456) (4380 276 456)" + "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" "369231" + "plane" "(-3874 276 448) (-3874 -9728 448) (4380 -9728 448)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369232" + "plane" "(-3874 -9728 448) (-3874 276 448) (-3874 276 456)" + "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" "369233" + "plane" "(4380 276 448) (4380 -9728 448) (4380 -9728 456)" + "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" "369234" + "plane" "(-3874 276 448) (4380 276 448) (4380 276 456)" + "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" "369235" + "plane" "(4380 -9728 448) (-3874 -9728 448) (-3874 -9728 456)" + "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 134 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5535173" + side + { + "id" "369335" + "plane" "(872 -2064 -40) (872 -2112 -40) (1112 -2112 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369334" + "plane" "(872 -2112 -40) (872 -2064 -40) (872 -2064 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369333" + "plane" "(1112 -2064 -16) (1112 -2064 -40) (1112 -2112 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369332" + "plane" "(872 -2064 -16) (872 -2064 -40) (1112 -2064 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369331" + "plane" "(1112 -2112 -40) (872 -2112 -40) (872 -2064 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 244 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5535196" + side + { + "id" "369341" + "plane" "(664 -2032 -16) (664 -1772 -16) (1384 -1772 -16)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369340" + "plane" "(1384 -2032 -44) (1384 -1772 -44) (664 -1772 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369339" + "plane" "(1384 -1772 -44) (1384 -2032 -44) (1384 -2032 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369338" + "plane" "(664 -1772 -44) (1384 -1772 -44) (1384 -1772 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369337" + "plane" "(664 -2032 -44) (664 -1772 -44) (664 -1772 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369336" + "plane" "(1384 -2032 -44) (664 -2032 -44) (664 -2032 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5535197" + side + { + "id" "369347" + "plane" "(1384 -2064 -16) (664 -2064 -16) (664 -2032 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 68] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369346" + "plane" "(664 -2064 -44) (1384 -2064 -44) (1384 -2032 -44)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369345" + "plane" "(1384 -2064 -44) (664 -2064 -44) (664 -2064 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 375] 0.125" + "vaxis" "[0 0 -1 239] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369344" + "plane" "(1384 -2032 -44) (1384 -2064 -44) (1384 -2064 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369343" + "plane" "(664 -2064 -44) (664 -2032 -44) (664 -2032 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369342" + "plane" "(664 -2032 -44) (1384 -2032 -44) (1384 -2032 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5517121" + side + { + "id" "368924" + "plane" "(1528 -5496 304) (1904 -5496 304) (1904 -5500 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368925" + "plane" "(1528 -5500 0) (1904 -5500 0) (1904 -5496 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368926" + "plane" "(1528 -5496 304) (1528 -5500 304) (1528 -5500 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368927" + "plane" "(1904 -5496 0) (1904 -5500 0) (1904 -5500 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368928" + "plane" "(1904 -5496 304) (1528 -5496 304) (1528 -5496 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368929" + "plane" "(1904 -5500 0) (1528 -5500 0) (1528 -5500 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 172 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5518445" + side + { + "id" "369146" + "plane" "(1520 -2928 128) (1536 -2928 128) (1536 -3056 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" "369147" + "plane" "(1520 -3056 16) (1536 -3056 16) (1536 -2928 16)" + "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" "369148" + "plane" "(1520 -2928 128) (1520 -3056 128) (1520 -3056 16)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369149" + "plane" "(1536 -2928 16) (1536 -3056 16) (1536 -3056 128)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369150" + "plane" "(1536 -2928 128) (1520 -2928 128) (1520 -2928 16)" + "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" "369151" + "plane" "(1536 -3056 16) (1520 -3056 16) (1520 -3056 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 232 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485107" + side + { + "id" "368599" + "plane" "(872 -2816 -40) (888 -2816 -40) (888 -3176 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 59] 0.125" + "vaxis" "[0 -1 0 127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368598" + "plane" "(872 -3176 -56) (888 -3176 -56) (888 -2816 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368597" + "plane" "(872 -2816 -56) (888 -2816 -56) (888 -2816 -40)" + "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" "368596" + "plane" "(888 -3176 -56) (872 -3176 -56) (872 -3176 -40)" + "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" "368595" + "plane" "(872 -3176 -56) (872 -2816 -56) (872 -2816 -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" "368594" + "plane" "(888 -2816 -56) (888 -3176 -56) (888 -3176 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "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 180" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485108" + side + { + "id" "368605" + "plane" "(888 -2880 -40) (1168 -2880 -40) (1168 -3176 -40)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368604" + "plane" "(888 -3176 -56) (1168 -3176 -56) (1168 -2880 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368603" + "plane" "(1168 -2880 -56) (1168 -3176 -56) (1168 -3176 -40)" + "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" "368602" + "plane" "(888 -2880 -56) (1168 -2880 -56) (1168 -2880 -40)" + "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" "368601" + "plane" "(1168 -3176 -56) (888 -3176 -56) (888 -3176 -40)" + "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" "368600" + "plane" "(888 -3176 -56) (888 -2880 -56) (888 -2880 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "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 180" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485295" + side + { + "id" "368611" + "plane" "(888 -2816 -40) (1520 -2816 -40) (1520 -2880 -40)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368610" + "plane" "(888 -2880 -56) (1520 -2880 -56) (1520 -2816 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368609" + "plane" "(1520 -2816 -56) (1520 -2880 -56) (1520 -2880 -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" "368608" + "plane" "(888 -2816 -56) (1520 -2816 -56) (1520 -2816 -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" "368607" + "plane" "(1520 -2880 -56) (888 -2880 -56) (888 -2880 -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" "368606" + "plane" "(888 -2880 -56) (888 -2816 -56) (888 -2816 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 224 129" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485305" + side + { + "id" "368629" + "plane" "(872 -2400 -40) (888 -2400 -40) (888 -2816 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 59] 0.125" + "vaxis" "[0 -1 0 127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368628" + "plane" "(872 -2816 -56) (888 -2816 -56) (888 -2400 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368627" + "plane" "(888 -2816 -56) (872 -2816 -56) (872 -2816 -40)" + "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" "368626" + "plane" "(872 -2400 -56) (888 -2400 -56) (888 -2400 -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" "368625" + "plane" "(872 -2816 -56) (872 -2400 -56) (872 -2400 -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" "368624" + "plane" "(888 -2400 -56) (888 -2816 -56) (888 -2816 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485348" + side + { + "id" "368635" + "plane" "(1640 -2416 -40) (1640 -2816 -40) (888 -2816 -40)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368634" + "plane" "(888 -2816 -56) (1640 -2816 -56) (1640 -2416 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368633" + "plane" "(1640 -2416 -56) (1640 -2816 -56) (1640 -2816 -40)" + "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" "368632" + "plane" "(1640 -2816 -56) (888 -2816 -56) (888 -2816 -40)" + "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" "368631" + "plane" "(888 -2816 -56) (888 -2416 -56) (888 -2416 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368630" + "plane" "(888 -2416 -56) (1640 -2416 -56) (1640 -2416 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485349" + side + { + "id" "368641" + "plane" "(888 -2400 -40) (1640 -2400 -40) (1640 -2416 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 59] 0.125" + "vaxis" "[0 -1 0 127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368640" + "plane" "(1640 -2416 -56) (1640 -2400 -56) (888 -2400 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368639" + "plane" "(1640 -2400 -56) (1640 -2416 -56) (1640 -2416 -40)" + "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" "368638" + "plane" "(888 -2400 -56) (1640 -2400 -56) (1640 -2400 -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" "368637" + "plane" "(888 -2416 -56) (888 -2400 -56) (888 -2400 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368636" + "plane" "(1640 -2416 -56) (888 -2416 -56) (888 -2416 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485424" + side + { + "id" "368647" + "plane" "(1640 -2632 -40) (1640 -2416 -40) (1792 -2416 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368646" + "plane" "(1640 -2416 -56) (1640 -2632 -56) (1792 -2632 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368645" + "plane" "(1640 -2632 -56) (1640 -2416 -56) (1640 -2416 -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" "368644" + "plane" "(1792 -2416 -56) (1792 -2632 -56) (1792 -2632 -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" "368643" + "plane" "(1792 -2632 -56) (1640 -2632 -56) (1640 -2632 -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" "368642" + "plane" "(1640 -2416 -56) (1792 -2416 -56) (1792 -2416 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 117 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485433" + side + { + "id" "368659" + "plane" "(1656 -2040 -40) (1792 -2040 -40) (1792 -2416 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368658" + "plane" "(1656 -2416 -56) (1792 -2416 -56) (1792 -2040 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368657" + "plane" "(1792 -2040 -56) (1792 -2416 -56) (1792 -2416 -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" "368656" + "plane" "(1656 -2040 -56) (1792 -2040 -56) (1792 -2040 -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" "368655" + "plane" "(1792 -2416 -56) (1656 -2416 -56) (1656 -2416 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368654" + "plane" "(1656 -2416 -56) (1656 -2040 -56) (1656 -2040 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "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 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485434" + side + { + "id" "368665" + "plane" "(1640 -2416 -40) (1640 -2040 -40) (1656 -2040 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 66] 0.125" + "vaxis" "[0 -1 0 -900] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368664" + "plane" "(1640 -2040 -56) (1640 -2416 -56) (1656 -2416 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368663" + "plane" "(1640 -2416 -56) (1640 -2040 -56) (1640 -2040 -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" "368662" + "plane" "(1640 -2040 -56) (1656 -2040 -56) (1656 -2040 -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" "368661" + "plane" "(1656 -2416 -56) (1640 -2416 -56) (1640 -2416 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368660" + "plane" "(1656 -2040 -56) (1656 -2416 -56) (1656 -2416 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "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 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485445" + side + { + "id" "368677" + "plane" "(1656 -2040 -40) (1640 -2040 -40) (1640 -1632 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 66] 0.125" + "vaxis" "[0 -1 0 -900] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368676" + "plane" "(1640 -1632 -56) (1640 -2040 -56) (1656 -2040 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368675" + "plane" "(1656 -2040 -56) (1640 -2040 -56) (1640 -2040 -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" "368674" + "plane" "(1640 -2040 -56) (1640 -1632 -56) (1640 -1632 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368673" + "plane" "(1640 -1632 -56) (1656 -1632 -56) (1656 -1632 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368672" + "plane" "(1656 -1632 -56) (1656 -2040 -56) (1656 -2040 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485449" + side + { + "id" "368683" + "plane" "(1792 -1648 -40) (1792 -2040 -40) (1656 -2040 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368682" + "plane" "(1656 -2040 -56) (1792 -2040 -56) (1792 -1648 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368681" + "plane" "(1792 -1648 -56) (1792 -2040 -56) (1792 -2040 -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" "368680" + "plane" "(1792 -2040 -56) (1656 -2040 -56) (1656 -2040 -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" "368679" + "plane" "(1656 -2040 -56) (1656 -1648 -56) (1656 -1648 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368678" + "plane" "(1656 -1648 -56) (1792 -1648 -56) (1792 -1648 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485450" + side + { + "id" "368689" + "plane" "(1656 -1632 -40) (1792 -1632 -40) (1792 -1648 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 66] 0.125" + "vaxis" "[0 -1 0 -900] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368688" + "plane" "(1792 -1648 -56) (1792 -1632 -56) (1656 -1632 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368687" + "plane" "(1792 -1632 -56) (1792 -1648 -56) (1792 -1648 -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" "368686" + "plane" "(1656 -1632 -56) (1792 -1632 -56) (1792 -1632 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368685" + "plane" "(1656 -1648 -56) (1656 -1632 -56) (1656 -1632 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368684" + "plane" "(1792 -1648 -56) (1656 -1648 -56) (1656 -1648 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_04" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5485548" + side + { + "id" "368690" + "plane" "(497 -2682 -32) (579 -2682 -32) (579 -2912 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368691" + "plane" "(497 -2912 -41) (579 -2912 -41) (579 -2682 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368692" + "plane" "(497 -2682 -32) (497 -2912 -32) (497 -2912 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368693" + "plane" "(579 -2682 -41) (579 -2912 -41) (579 -2912 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368694" + "plane" "(579 -2682 -32) (497 -2682 -32) (497 -2682 -41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368695" + "plane" "(579 -2912 -41) (497 -2912 -41) (497 -2912 -32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5447574" + side + { + "id" "364399" + "plane" "(1680 -5496 48) (1680 -5330.6 48) (1928 -5296 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364398" + "plane" "(1680 -5330.6 0) (1680 -5496 0) (2024 -5496 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" "364397" + "plane" "(2024 -5296 0) (2024 -5496 0) (2024 -5496 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" "364396" + "plane" "(1680 -5496 0) (1680 -5330.6 0) (1680 -5330.6 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" "364395" + "plane" "(2024 -5496 0) (1680 -5496 0) (1680 -5496 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364394" + "plane" "(1928 -5296 0) (2024 -5296 0) (2024 -5296 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364393" + "plane" "(1680 -5330.6 0) (1928 -5296 0) (1928 -5296 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 212 165" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428541" + side + { + "id" "361139" + "plane" "(1200 -5504 304) (1200 -4992 304) (1328 -4992 304)" + "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" "361138" + "plane" "(1200 -4992 224) (1200 -4992 304) (1200 -5504 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" "361137" + "plane" "(1328 -5504 224) (1328 -5504 304) (1328 -4992 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" "361136" + "plane" "(1328 -4992 224) (1328 -4992 304) (1200 -4992 304)" + "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" "361135" + "plane" "(1200 -5504 224) (1200 -5504 304) (1328 -5504 304)" + "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" "361134" + "plane" "(1200 -4992 224) (1200 -5504 224) (1328 -5504 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428542" + side + { + "id" "361145" + "plane" "(1328 -5504 304) (1328 -5416 304) (1520 -5416 304)" + "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" "361144" + "plane" "(1328 -5416 224) (1328 -5416 304) (1328 -5504 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" "361143" + "plane" "(1520 -5504 224) (1520 -5504 304) (1520 -5416 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0.912026 0.410132 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361142" + "plane" "(1520 -5416 224) (1520 -5416 304) (1328 -5416 304)" + "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" "361141" + "plane" "(1328 -5504 224) (1328 -5504 304) (1520 -5504 304)" + "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" "361140" + "plane" "(1328 -5416 224) (1328 -5504 224) (1520 -5504 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 143 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428543" + side + { + "id" "361151" + "plane" "(1520 -5072 304) (1520 -5158 304) (1487.77 -5165 304)" + "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" "361150" + "plane" "(1520 -5158 224) (1520 -5158 304) (1520 -5072 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361149" + "plane" "(1453.58 -5072 224) (1453.58 -5072 304) (1487.77 -5165 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" "361148" + "plane" "(1520 -5072 224) (1520 -5072 304) (1453.58 -5072 304)" + "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" "361147" + "plane" "(1487.77 -5165 224) (1487.77 -5165 304) (1520 -5158 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0.977221 0.212226 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361146" + "plane" "(1453.58 -5072 224) (1487.77 -5165 224) (1520 -5158 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "5375135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428544" + side + { + "id" "361157" + "plane" "(1453.58 -5072 304) (1487.77 -5165 304) (1460.42 -5183 304)" + "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" "361156" + "plane" "(1487.77 -5165 224) (1487.77 -5165 304) (1453.58 -5072 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" "361155" + "plane" "(1328 -5072 224) (1328 -5072 304) (1460.42 -5183 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" "361154" + "plane" "(1453.57 -5072 224) (1453.57 -5072 304) (1328 -5072 304)" + "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" "361153" + "plane" "(1460.42 -5183 224) (1460.42 -5183 304) (1487.77 -5165 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0.835325 0.549758 0 275.678] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361152" + "plane" "(1328 -5072 224) (1460.42 -5183 224) (1487.77 -5165 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "5375135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428545" + side + { + "id" "361163" + "plane" "(1328 -5072 304) (1460.42 -5183 304) (1442.84 -5211 304)" + "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" "361162" + "plane" "(1460.42 -5183 224) (1460.42 -5183 304) (1328 -5072 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" "361161" + "plane" "(1328 -5176 224) (1328 -5176 304) (1442.84 -5211 304)" + "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" "361160" + "plane" "(1328 -5072 224) (1328 -5072 304) (1328 -5176 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" "361159" + "plane" "(1442.84 -5211 224) (1442.84 -5211 304) (1460.42 -5183 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0.53174 0.846908 0 249.527] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361158" + "plane" "(1460.42 -5183 224) (1328 -5072 224) (1328 -5176 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "5375135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428546" + side + { + "id" "361169" + "plane" "(1328 -5176 304) (1442.84 -5211 304) (1436 -5244 304)" + "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" "361168" + "plane" "(1442.84 -5211 224) (1442.84 -5211 304) (1328 -5176 304)" + "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" "361167" + "plane" "(1328 -5244 224) (1328 -5244 304) (1436 -5244 304)" + "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" "361166" + "plane" "(1328 -5176 224) (1328 -5176 304) (1328 -5244 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" "361165" + "plane" "(1436 -5244 224) (1436 -5244 304) (1442.84 -5211 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0.202958 0.979188 0 278.074] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361164" + "plane" "(1442.84 -5211 224) (1328 -5176 224) (1328 -5244 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "5375135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428547" + side + { + "id" "361175" + "plane" "(1328 -5244 304) (1436 -5244 304) (1442.84 -5277 304)" + "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" "361174" + "plane" "(1436 -5244 224) (1436 -5244 304) (1328 -5244 304)" + "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" "361173" + "plane" "(1328 -5312 224) (1328 -5312 304) (1442.84 -5277 304)" + "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" "361172" + "plane" "(1328 -5244 224) (1328 -5244 304) (1328 -5312 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" "361171" + "plane" "(1442.84 -5277 224) (1442.84 -5277 304) (1436 -5244 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-0.202958 0.979187 0 172.277] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361170" + "plane" "(1436 -5244 224) (1328 -5244 224) (1328 -5312 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "5375135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428548" + side + { + "id" "361181" + "plane" "(1328 -5312 304) (1442.84 -5277 304) (1460.42 -5305 304)" + "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" "361180" + "plane" "(1442.84 -5277 224) (1442.84 -5277 304) (1328 -5312 304)" + "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" "361179" + "plane" "(1328 -5416 224) (1328 -5416 304) (1460.42 -5305 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" "361178" + "plane" "(1328 -5312 224) (1328 -5312 304) (1328 -5416 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" "361177" + "plane" "(1460.42 -5305 224) (1460.42 -5305 304) (1442.84 -5277 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-0.531739 0.846909 0 404.711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361176" + "plane" "(1442.84 -5277 224) (1328 -5312 224) (1328 -5416 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "5375135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428549" + side + { + "id" "361187" + "plane" "(1328 -5416 304) (1460.42 -5305 304) (1487.77 -5323 304)" + "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" "361186" + "plane" "(1460.42 -5305 224) (1460.42 -5305 304) (1328 -5416 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" "361185" + "plane" "(1453.58 -5416 224) (1453.58 -5416 304) (1487.77 -5323 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" "361184" + "plane" "(1328 -5416 224) (1328 -5416 304) (1453.58 -5416 304)" + "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" "361183" + "plane" "(1487.77 -5323 224) (1487.77 -5323 304) (1460.42 -5305 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-0.260113 0.965578 0 170.348] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361182" + "plane" "(1460.42 -5305 224) (1328 -5416 224) (1453.58 -5416 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "5375135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428550" + side + { + "id" "361193" + "plane" "(1453.58 -5416 304) (1487.77 -5323 304) (1520 -5330 304)" + "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" "361192" + "plane" "(1487.77 -5323 224) (1487.77 -5323 304) (1453.58 -5416 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" "361191" + "plane" "(1520 -5416 224) (1520 -5416 304) (1520 -5330 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0.905993 0.423293 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361190" + "plane" "(1453.58 -5416 224) (1453.58 -5416 304) (1520 -5416 304)" + "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" "361189" + "plane" "(1520 -5330 224) (1520 -5330 304) (1487.77 -5323 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-0.585852 0.810418 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361188" + "plane" "(1487.77 -5323 224) (1453.58 -5416 224) (1520 -5416 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 220 220" + "groupid" "5375135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428551" + side + { + "id" "361199" + "plane" "(1232 -4976 304) (1232 -4752 304) (1392 -4752 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" "361198" + "plane" "(1232 -4752 224) (1232 -4752 304) (1232 -4976 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" "361197" + "plane" "(1392 -4976 224) (1392 -4976 304) (1392 -4752 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361196" + "plane" "(1392 -4752 224) (1392 -4752 304) (1232 -4752 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361195" + "plane" "(1232 -4976 224) (1232 -4976 304) (1392 -4976 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361194" + "plane" "(1232 -4752 224) (1232 -4976 224) (1392 -4976 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 123 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428552" + side + { + "id" "361205" + "plane" "(1328 -5072 304) (1328 -4976 304) (1520 -4976 304)" + "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" "361204" + "plane" "(1328 -4976 224) (1328 -4976 304) (1328 -5072 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" "361203" + "plane" "(1520 -5072 224) (1520 -5072 304) (1520 -4976 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361202" + "plane" "(1520 -4976 224) (1520 -4976 304) (1328 -4976 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361201" + "plane" "(1328 -5072 224) (1328 -5072 304) (1520 -5072 304)" + "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" "361200" + "plane" "(1328 -4976 224) (1328 -5072 224) (1520 -5072 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 143 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428553" + side + { + "id" "361211" + "plane" "(1200 -4976 304) (1328 -4976 304) (1328 -4992 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" "361210" + "plane" "(1328 -4992 224) (1328 -4992 304) (1328 -4976 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" "361209" + "plane" "(1328 -4976 224) (1328 -4976 304) (1200 -4976 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361208" + "plane" "(1200 -4992 224) (1200 -4992 304) (1328 -4992 304)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361207" + "plane" "(1200 -4976 224) (1200 -4976 304) (1200 -4992 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" "361206" + "plane" "(1200 -4992 224) (1328 -4992 224) (1328 -4976 224)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428561" + side + { + "id" "361223" + "plane" "(1200 -4768 224) (1200 -4768 192) (1232 -4768 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" "361222" + "plane" "(1232 -5120 192) (1200 -5120 192) (1200 -5120 224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 -415.292] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361221" + "plane" "(1200 -5120 224) (1200 -5120 192) (1200 -4768 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" "361220" + "plane" "(1232 -4768 192) (1200 -4768 192) (1200 -5120 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" "361219" + "plane" "(1232 -5120 224) (1200 -5120 224) (1200 -4768 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" "361218" + "plane" "(1232 -4768 224) (1232 -4768 192) (1232 -5120 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.946643 0.322281 0 -14.4375] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428947" + side + { + "id" "361631" + "plane" "(1024 -4704 156) (1024 -4704 48) (1024 -4480 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 383.998] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361630" + "plane" "(1040 -4480 48) (1040 -4704 48) (1040 -4704 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361629" + "plane" "(1040 -4704 156) (1040 -4704 48) (1024 -4704 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" "361628" + "plane" "(1024 -4704 156) (1024 -4480 156) (1040 -4480 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361627" + "plane" "(1024 -4480 48) (1024 -4704 48) (1040 -4704 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" "361626" + "plane" "(1024 -4480 156) (1024 -4480 48) (1040 -4480 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 226 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428948" + side + { + "id" "361637" + "plane" "(1024 -4480 0) (1024 -4704 0) (1040 -4704 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" "361636" + "plane" "(1024 -4704 48) (1024 -4704 0) (1024 -4480 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361635" + "plane" "(1040 -4480 0) (1040 -4704 0) (1040 -4704 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361634" + "plane" "(1040 -4704 48) (1040 -4704 0) (1024 -4704 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" "361633" + "plane" "(1024 -4704 48) (1024 -4480 48) (1040 -4480 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" "361632" + "plane" "(1024 -4480 48) (1024 -4480 0) (1040 -4480 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 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428949" + side + { + "id" "361643" + "plane" "(1024 -4704 -32) (1024 -4784 -32) (1040 -4784 -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" "361642" + "plane" "(1024 -4784 48) (1024 -4784 -32) (1024 -4704 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361641" + "plane" "(1040 -4704 48) (1040 -4704 -32) (1040 -4784 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361640" + "plane" "(1040 -4784 48) (1040 -4784 -32) (1024 -4784 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361639" + "plane" "(1024 -4704 48) (1024 -4704 -32) (1040 -4704 -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" "361638" + "plane" "(1024 -4784 48) (1024 -4704 48) (1040 -4704 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 226 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428950" + side + { + "id" "361649" + "plane" "(1024 -4784 156) (1024 -4784 48) (1024 -4704 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 383.998] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361648" + "plane" "(1040 -4704 156) (1040 -4704 48) (1040 -4784 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361647" + "plane" "(1040 -4784 156) (1040 -4784 48) (1024 -4784 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -511.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361646" + "plane" "(1024 -4704 156) (1024 -4704 48) (1040 -4704 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" "361645" + "plane" "(1024 -4784 156) (1024 -4704 156) (1040 -4704 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361644" + "plane" "(1024 -4704 48) (1024 -4784 48) (1040 -4784 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 226 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428951" + side + { + "id" "361655" + "plane" "(1024 -4784 172) (1024 -4784 160) (1024 -4704 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -320] 0.125" + "vaxis" "[0 0 -1 94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361654" + "plane" "(1040 -4704 172) (1040 -4704 160) (1040 -4784 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0.00390625] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361653" + "plane" "(1040 -4784 172) (1040 -4784 160) (1024 -4784 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -383] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361652" + "plane" "(1024 -4704 172) (1024 -4704 160) (1040 -4704 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" "361651" + "plane" "(1024 -4784 172) (1024 -4704 172) (1040 -4704 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361650" + "plane" "(1024 -4704 160) (1024 -4784 160) (1040 -4784 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "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 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428952" + side + { + "id" "361661" + "plane" "(1024 -4704 172) (1024 -4704 160) (1024 -4200 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -320] 0.125" + "vaxis" "[0 0 -1 94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361660" + "plane" "(1040 -4200 172) (1040 -4200 160) (1040 -4704 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0.00390625] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361659" + "plane" "(1040 -4704 172) (1040 -4704 160) (1024 -4704 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" "361658" + "plane" "(1024 -4200 172) (1024 -4200 160) (1040 -4200 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 511.992] 0.125" + "vaxis" "[0 0 -1 94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361657" + "plane" "(1024 -4704 172) (1024 -4200 172) (1040 -4200 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361656" + "plane" "(1024 -4200 160) (1024 -4704 160) (1040 -4704 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" + } + editor + { + "color" "0 226 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428956" + side + { + "id" "361685" + "plane" "(1024 -4704 172) (1024 -4704 192) (1024 -4784 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 448.004] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361684" + "plane" "(1040 -4784 172) (1040 -4784 192) (1040 -4704 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0.00390625] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361683" + "plane" "(1024 -4784 172) (1024 -4784 192) (1040 -4784 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -511.994] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361682" + "plane" "(1040 -4704 172) (1040 -4704 192) (1024 -4704 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" "361681" + "plane" "(1024 -4704 172) (1024 -4784 172) (1040 -4784 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361680" + "plane" "(1024 -4784 192) (1024 -4704 192) (1040 -4704 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 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428957" + side + { + "id" "361691" + "plane" "(1024 -4352 156) (1040 -4352 156) (1040 -4480 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361690" + "plane" "(1024 -4480 112) (1040 -4480 112) (1040 -4352 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" "361689" + "plane" "(1024 -4352 156) (1024 -4480 156) (1024 -4480 112)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 383.998] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361688" + "plane" "(1040 -4352 112) (1040 -4480 112) (1040 -4480 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361687" + "plane" "(1040 -4352 156) (1024 -4352 156) (1024 -4352 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" "361686" + "plane" "(1040 -4480 112) (1024 -4480 112) (1024 -4480 156)" + "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 243 140" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428959" + side + { + "id" "361703" + "plane" "(1024 -4216 -16) (1024 -4352 -16) (1040 -4352 -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" "361702" + "plane" "(1024 -4352 -16) (1024 -4216 -16) (1024 -4216 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361701" + "plane" "(1040 -4216 48) (1040 -4216 -16) (1040 -4352 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361700" + "plane" "(1024 -4216 48) (1024 -4216 -16) (1040 -4216 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361699" + "plane" "(1024 -4352 48) (1024 -4216 48) (1040 -4216 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" "361698" + "plane" "(1040 -4352 48) (1040 -4352 -16) (1024 -4352 -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 226 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428960" + side + { + "id" "361709" + "plane" "(1024 -4784 160) (1024 -4784 156) (1024 -4704 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -320] 0.125" + "vaxis" "[0 0 -1 94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361708" + "plane" "(1040 -4704 160) (1040 -4704 156) (1040 -4784 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361707" + "plane" "(1040 -4784 160) (1040 -4784 156) (1024 -4784 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -383] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361706" + "plane" "(1024 -4704 160) (1024 -4704 156) (1040 -4704 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361705" + "plane" "(1024 -4704 156) (1024 -4784 156) (1040 -4784 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361704" + "plane" "(1024 -4784 160) (1024 -4704 160) (1040 -4704 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "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 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428961" + side + { + "id" "361715" + "plane" "(1024 -4704 160) (1024 -4704 156) (1024 -4200 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -320] 0.125" + "vaxis" "[0 0 -1 94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361714" + "plane" "(1040 -4200 160) (1040 -4200 156) (1040 -4704 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361713" + "plane" "(1040 -4704 160) (1040 -4704 156) (1024 -4704 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361712" + "plane" "(1024 -4200 160) (1024 -4200 156) (1040 -4200 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 511.992] 0.125" + "vaxis" "[0 0 -1 94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361711" + "plane" "(1024 -4200 156) (1024 -4704 156) (1040 -4704 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "361710" + "plane" "(1024 -4704 160) (1024 -4200 160) (1040 -4200 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" + } + editor + { + "color" "0 226 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5430123" + side + { + "id" "363197" + "plane" "(1589 -4928 40) (1600 -4968 40) (1600 -4968 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.213697 0.9769 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363196" + "plane" "(1576 -4968 40) (1600 -4968 40) (1589 -4928 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363195" + "plane" "(1589 -4928 160) (1600 -4968 160) (1576 -4968 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" "363194" + "plane" "(1600 -4968 160) (1600 -4968 40) (1576 -4968 40)" + "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" "363193" + "plane" "(1576 -4968 40) (1567 -4928 40) (1567 -4928 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" "363192" + "plane" "(1567 -4928 40) (1589 -4928 40) (1589 -4928 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[1 0 0 -654] 0.125" + "vaxis" "[0 0 -1 228] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5430124" + side + { + "id" "363203" + "plane" "(1490 -4928 40) (1490 -4928 160) (1451.5 -4752 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0.213692 0.976901 0 -844] 0.125" + "vaxis" "[0 0 -1 215] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363202" + "plane" "(1451.5 -4752 40) (1432 -4752 40) (1472 -4928 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363201" + "plane" "(1451.5 -4752 160) (1490 -4928 160) (1472 -4928 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" "363200" + "plane" "(1451.5 -4752 40) (1451.5 -4752 160) (1432 -4752 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" "363199" + "plane" "(1432 -4752 40) (1432 -4752 160) (1472 -4928 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" "363198" + "plane" "(1490 -4928 40) (1472 -4928 40) (1472 -4928 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5430680" + side + { + "id" "363335" + "plane" "(1589 -4928 160) (1448 -4928 160) (1408 -4752 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 -1 0 32.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363334" + "plane" "(1448 -4928 144) (1589 -4928 144) (1547.5 -4752 144)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363333" + "plane" "(1589 -4928 144) (1589 -4928 160) (1547.5 -4752 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.213697 0.9769 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363332" + "plane" "(1448 -4928 144) (1448 -4928 160) (1589 -4928 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" "363331" + "plane" "(1408 -4752 144) (1408 -4752 160) (1448 -4928 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" "363330" + "plane" "(1547.5 -4752 144) (1547.5 -4752 160) (1408 -4752 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" + } + editor + { + "color" "0 137 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5430763" + side + { + "id" "363455" + "plane" "(1584 -4928 144) (1545 -4752 144) (1547 -4752 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.258819 0.965926 0 44.3477] 0.25" + "vaxis" "[0.965926 0.258819 0 21.2949] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363454" + "plane" "(1545 -4752 40) (1584 -4928 40) (1586 -4928 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.258819 0.965926 0 44.3477] 0.25" + "vaxis" "[0.965926 0.258819 0 21.2949] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363453" + "plane" "(1584 -4928 40) (1584 -4928 144) (1586 -4928 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.965926 -0.258819 0 -21.2949] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363452" + "plane" "(1547 -4752 40) (1547 -4752 144) (1545 -4752 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.965926 -0.258819 0 -21.2949] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363451" + "plane" "(1545 -4752 40) (1545 -4752 144) (1584 -4928 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.258819 0.965926 0 44.3477] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "363450" + "plane" "(1586 -4928 40) (1586 -4928 144) (1547 -4752 144)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-0.258819 0.965926 0 4.35352] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431374" + side + { + "id" "364152" + "plane" "(1040 -4272 320) (1392 -4272 320) (1392 -4376 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" "364153" + "plane" "(1040 -4376 248) (1392 -4376 248) (1392 -4272 248)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364154" + "plane" "(1040 -4272 320) (1040 -4376 320) (1040 -4376 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" "364155" + "plane" "(1392 -4272 248) (1392 -4376 248) (1392 -4376 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" "364156" + "plane" "(1392 -4272 320) (1040 -4272 320) (1040 -4272 248)" + "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" "364157" + "plane" "(1392 -4376 248) (1040 -4376 248) (1040 -4376 320)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 159" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431501" + side + { + "id" "364257" + "plane" "(1392 -4216 0) (1392 -4272 0) (1464 -4272 0)" + "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" "364256" + "plane" "(1392 -4272 0) (1392 -4216 0) (1392 -4216 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" + } + side + { + "id" "364255" + "plane" "(1464 -4216 0) (1464 -4272 0) (1464 -4272 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364254" + "plane" "(1392 -4216 0) (1464 -4216 0) (1464 -4216 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" "364253" + "plane" "(1464 -4272 0) (1392 -4272 0) (1392 -4272 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364252" + "plane" "(1392 -4272 160) (1392 -4216 160) (1464 -4216 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" + } + editor + { + "color" "0 251 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431502" + side + { + "id" "364262" + "plane" "(1552 -4216 0) (1464 -4216 0) (1464 -4272 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" "364261" + "plane" "(1464 -4272 0) (1464 -4216 0) (1464 -4216 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" "364260" + "plane" "(1464 -4216 0) (1552 -4216 0) (1552 -4216 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" "364259" + "plane" "(1552 -4216 0) (1464 -4272 0) (1464 -4272 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0.843661 0.536876 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364258" + "plane" "(1464 -4272 160) (1464 -4216 160) (1552 -4216 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" + } + editor + { + "color" "0 227 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431504" + side + { + "id" "364274" + "plane" "(1559 -4200 128) (1559 -4200 160) (1559 -4216 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" "364273" + "plane" "(1559 -4200 160) (1559 -4200 128) (1591 -4200 128)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364272" + "plane" "(1591 -4216 128) (1559 -4216 128) (1559 -4216 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364271" + "plane" "(1591 -4200 128) (1559 -4200 128) (1559 -4216 128)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364270" + "plane" "(1591 -4216 128) (1591 -4216 160) (1591 -4200 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 0] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364269" + "plane" "(1591 -4216 160) (1559 -4216 160) (1559 -4200 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" + } + editor + { + "color" "0 131 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431506" + side + { + "id" "364286" + "plane" "(1527 -4200 48) (1527 -4200 160) (1527 -4216 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" "364285" + "plane" "(1559 -4216 48) (1559 -4216 160) (1559 -4200 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -1441.33] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364284" + "plane" "(1559 -4200 48) (1559 -4200 160) (1527 -4200 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364283" + "plane" "(1527 -4216 48) (1527 -4216 160) (1559 -4216 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364282" + "plane" "(1527 -4200 48) (1527 -4216 48) (1559 -4216 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" "364281" + "plane" "(1527 -4216 160) (1527 -4200 160) (1559 -4200 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" + } + editor + { + "color" "0 174 115" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431507" + side + { + "id" "364292" + "plane" "(2048 -4208 48) (2048 -4208 160) (2048 -4288 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364291" + "plane" "(2085 -4208 48) (2085 -4208 160) (2048 -4208 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364290" + "plane" "(2048 -4288 48) (2048 -4288 160) (2085 -4288 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364289" + "plane" "(2085 -4288 48) (2085 -4288 160) (2085 -4208 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" "364288" + "plane" "(2085 -4208 48) (2048 -4208 48) (2048 -4288 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" "364287" + "plane" "(2085 -4288 160) (2048 -4288 160) (2048 -4208 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" + } + editor + { + "color" "0 221 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431508" + side + { + "id" "364298" + "plane" "(2085 -4208 160) (2085 -4208 48) (2560 -4208 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364297" + "plane" "(2560 -4288 160) (2560 -4288 48) (2085 -4288 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364296" + "plane" "(2560 -4208 160) (2560 -4208 48) (2560 -4288 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" "364295" + "plane" "(2085 -4288 160) (2085 -4288 48) (2085 -4208 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" "364294" + "plane" "(2560 -4208 48) (2085 -4208 48) (2085 -4288 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" "364293" + "plane" "(2560 -4288 160) (2085 -4288 160) (2085 -4208 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" + } + editor + { + "color" "0 221 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431511" + side + { + "id" "364316" + "plane" "(1392 -4272 304) (1392 -4216 304) (1464 -4216 304)" + "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" "364315" + "plane" "(1392 -4216 192) (1392 -4216 304) (1392 -4272 304)" + "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" "364314" + "plane" "(1464 -4272 192) (1464 -4272 304) (1464 -4216 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364313" + "plane" "(1464 -4216 192) (1464 -4216 304) (1392 -4216 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364312" + "plane" "(1392 -4272 192) (1392 -4272 304) (1464 -4272 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364311" + "plane" "(1392 -4216 192) (1392 -4272 192) (1464 -4272 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 251 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431512" + side + { + "id" "364322" + "plane" "(1392 -4216 160) (1392 -4216 192) (1392 -4272 192)" + "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" "364321" + "plane" "(1464 -4272 160) (1464 -4272 192) (1464 -4216 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364320" + "plane" "(1464 -4216 160) (1464 -4216 192) (1392 -4216 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" "364319" + "plane" "(1392 -4272 160) (1392 -4272 192) (1464 -4272 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -511.988] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364318" + "plane" "(1392 -4216 160) (1392 -4272 160) (1464 -4272 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" "364317" + "plane" "(1392 -4272 192) (1392 -4216 192) (1464 -4216 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 251 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431513" + side + { + "id" "364327" + "plane" "(1464 -4272 304) (1464 -4216 304) (1552 -4216 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" "364326" + "plane" "(1464 -4216 192) (1464 -4216 304) (1464 -4272 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" "364325" + "plane" "(1552 -4216 192) (1552 -4216 304) (1464 -4216 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364324" + "plane" "(1464 -4272 192) (1464 -4272 304) (1552 -4216 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.843661 0.536876 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364323" + "plane" "(1552 -4216 192) (1464 -4216 192) (1464 -4272 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 227 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431514" + side + { + "id" "364332" + "plane" "(1464 -4216 160) (1464 -4216 192) (1464 -4272 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" "364331" + "plane" "(1552 -4216 160) (1552 -4216 192) (1464 -4216 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" "364330" + "plane" "(1464 -4272 160) (1464 -4272 192) (1552 -4216 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.843661 0.536876 0 211.316] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364329" + "plane" "(1552 -4216 160) (1464 -4216 160) (1464 -4272 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" "364328" + "plane" "(1464 -4272 192) (1464 -4216 192) (1552 -4216 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 227 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431518" + side + { + "id" "364356" + "plane" "(1559 -4200 160) (1559 -4200 192) (1559 -4216 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" "364355" + "plane" "(1591 -4200 160) (1591 -4200 192) (1559 -4200 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364354" + "plane" "(1559 -4216 160) (1559 -4216 192) (1591 -4216 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -381.537] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364353" + "plane" "(1591 -4216 160) (1591 -4216 192) (1591 -4200 192)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 0] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364352" + "plane" "(1591 -4200 160) (1559 -4200 160) (1559 -4216 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" "364351" + "plane" "(1591 -4216 192) (1559 -4216 192) (1559 -4200 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 131 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431520" + side + { + "id" "364368" + "plane" "(1527 -4200 160) (1527 -4200 192) (1527 -4216 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" "364367" + "plane" "(1559 -4216 160) (1559 -4216 192) (1559 -4200 192)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -1441.33] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364366" + "plane" "(1559 -4200 160) (1559 -4200 192) (1527 -4200 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364365" + "plane" "(1527 -4216 160) (1527 -4216 192) (1559 -4216 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -381.537] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364364" + "plane" "(1527 -4200 160) (1527 -4216 160) (1559 -4216 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" "364363" + "plane" "(1527 -4216 192) (1527 -4200 192) (1559 -4200 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 174 115" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431522" + side + { + "id" "364380" + "plane" "(2048 -4208 160) (2048 -4208 192) (2048 -4288 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.905882 -0.423529 0 -55.5273] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364379" + "plane" "(2085 -4208 160) (2085 -4208 192) (2048 -4208 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364378" + "plane" "(2048 -4288 160) (2048 -4288 192) (2085 -4288 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 131.197] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364377" + "plane" "(2085 -4288 160) (2085 -4288 192) (2085 -4208 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" "364376" + "plane" "(2085 -4208 160) (2048 -4208 160) (2048 -4288 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" "364375" + "plane" "(2085 -4288 192) (2048 -4288 192) (2048 -4208 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 221 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431524" + side + { + "id" "364392" + "plane" "(2085 -4208 192) (2085 -4208 160) (2560 -4208 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364391" + "plane" "(2560 -4288 192) (2560 -4288 160) (2085 -4288 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 131.197] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364390" + "plane" "(2560 -4208 192) (2560 -4208 160) (2560 -4288 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" "364389" + "plane" "(2085 -4288 192) (2085 -4288 160) (2085 -4208 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" "364388" + "plane" "(2560 -4208 160) (2085 -4208 160) (2085 -4288 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" "364387" + "plane" "(2560 -4288 192) (2085 -4288 192) (2085 -4208 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 221 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5407992" + side + { + "id" "354534" + "plane" "(1600 -4992 0) (2016 -4992 0) (2016 -5344 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354533" + "plane" "(1600 -5344 -16) (2016 -5344 -16) (2016 -4992 -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" "354532" + "plane" "(2016 -4992 -16) (2016 -5344 -16) (2016 -5344 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" "354531" + "plane" "(1600 -4992 -16) (2016 -4992 -16) (2016 -4992 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" "354530" + "plane" "(2016 -5344 -16) (1600 -5344 -16) (1600 -5344 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" "354529" + "plane" "(1600 -5344 -16) (1600 -4992 -16) (1600 -4992 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" + } + editor + { + "color" "0 125 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5408343" + side + { + "id" "355584" + "plane" "(1600 -5504 320) (1200 -5504 320) (1200 -4992 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" "355583" + "plane" "(1600 -4992 304) (1200 -4992 304) (1200 -5504 304)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "355582" + "plane" "(1200 -5504 304) (1200 -4992 304) (1200 -4992 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" "355581" + "plane" "(1200 -4992 304) (1600 -4992 304) (1600 -4992 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" "355580" + "plane" "(1600 -5504 304) (1200 -5504 304) (1200 -5504 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" "355579" + "plane" "(1600 -4992 304) (1600 -5504 304) (1600 -5504 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 185 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5408344" + side + { + "id" "355590" + "plane" "(1920 -5504 320) (1600 -5504 320) (1600 -4992 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" "355589" + "plane" "(1920 -4992 304) (1600 -4992 304) (1600 -5504 304)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "355588" + "plane" "(1600 -4992 304) (1920 -4992 304) (1920 -4992 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" "355587" + "plane" "(1920 -5504 304) (1600 -5504 304) (1600 -5504 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" "355586" + "plane" "(1920 -4992 304) (1920 -5504 304) (1920 -5504 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" "355585" + "plane" "(1600 -5504 304) (1600 -4992 304) (1600 -4992 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 185 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5408972" + side + { + "id" "356737" + "plane" "(1200 -5872 0) (1200 -5504 0) (1584 -5504 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356736" + "plane" "(1584 -5504 -16) (1200 -5504 -16) (1200 -5872 -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" "356735" + "plane" "(1200 -5504 -16) (1584 -5504 -16) (1584 -5504 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" "356734" + "plane" "(1200 -5872 -16) (1200 -5504 -16) (1200 -5504 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356733" + "plane" "(1584 -5872 -16) (1200 -5872 -16) (1200 -5872 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" "356732" + "plane" "(1584 -5504 -16) (1584 -5872 -16) (1584 -5872 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5408973" + side + { + "id" "356743" + "plane" "(2184 -5528 48) (2184 -5864 48) (1584 -5864 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356742" + "plane" "(2184 -5864 0) (2184 -5528 0) (1584 -5528 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" "356741" + "plane" "(2184 -5864 0) (2184 -5864 48) (2184 -5528 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356740" + "plane" "(2184 -5528 0) (2184 -5528 48) (1584 -5528 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356739" + "plane" "(1584 -5864 0) (1584 -5864 48) (2184 -5864 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356738" + "plane" "(1584 -5528 0) (1584 -5528 48) (1584 -5864 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 175 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409114" + side + { + "id" "356749" + "plane" "(1200 -5520 160) (1200 -5520 112) (1200 -5504 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" "356748" + "plane" "(1200 -5504 160) (1200 -5504 112) (1352 -5504 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356747" + "plane" "(1352 -5520 160) (1352 -5520 112) (1200 -5520 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356746" + "plane" "(1352 -5504 160) (1352 -5504 112) (1352 -5520 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" "356745" + "plane" "(1352 -5520 160) (1200 -5520 160) (1200 -5504 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" "356744" + "plane" "(1352 -5504 112) (1200 -5504 112) (1200 -5520 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" "0 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409115" + side + { + "id" "356755" + "plane" "(1304 -5504 0) (1200 -5504 0) (1200 -5520 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" "356754" + "plane" "(1200 -5520 112) (1200 -5520 0) (1200 -5504 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" "356753" + "plane" "(1200 -5504 112) (1200 -5504 0) (1304 -5504 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356752" + "plane" "(1304 -5520 112) (1304 -5520 0) (1200 -5520 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356751" + "plane" "(1304 -5504 112) (1304 -5504 0) (1304 -5520 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" "356750" + "plane" "(1304 -5520 112) (1200 -5520 112) (1200 -5504 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" "0 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409116" + side + { + "id" "356761" + "plane" "(1352 -5504 160) (1352 -5504 112) (1480 -5504 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356760" + "plane" "(1480 -5520 160) (1480 -5520 112) (1352 -5520 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356759" + "plane" "(1352 -5520 160) (1352 -5520 112) (1352 -5504 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" "356758" + "plane" "(1480 -5504 160) (1480 -5504 112) (1480 -5520 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" "356757" + "plane" "(1480 -5520 160) (1352 -5520 160) (1352 -5504 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" "356756" + "plane" "(1480 -5504 112) (1352 -5504 112) (1352 -5520 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" "0 154 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409133" + side + { + "id" "356779" + "plane" "(1480 -5504 48) (1432 -5504 48) (1432 -5520 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" "356778" + "plane" "(1432 -5504 48) (1480 -5504 48) (1480 -5504 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356777" + "plane" "(1480 -5520 112) (1480 -5520 48) (1432 -5520 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356776" + "plane" "(1480 -5504 112) (1480 -5504 48) (1480 -5520 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" "356775" + "plane" "(1480 -5520 112) (1432 -5520 112) (1432 -5504 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" "356774" + "plane" "(1432 -5520 112) (1432 -5520 48) (1432 -5504 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 154 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409134" + side + { + "id" "356785" + "plane" "(1432 -5504 48) (1480 -5504 48) (1480 -5520 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" "356784" + "plane" "(1432 -5520 0) (1480 -5520 0) (1480 -5504 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" "356783" + "plane" "(1480 -5504 0) (1480 -5520 0) (1480 -5520 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" "356782" + "plane" "(1432 -5504 0) (1480 -5504 0) (1480 -5504 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356781" + "plane" "(1480 -5520 0) (1432 -5520 0) (1432 -5520 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356780" + "plane" "(1432 -5520 0) (1432 -5504 0) (1432 -5504 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 188 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409183" + side + { + "id" "356797" + "plane" "(1584 -5520 48) (2192 -5520 48) (2184 -5528 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356796" + "plane" "(2192 -5520 0) (1584 -5520 0) (1584 -5528 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" "356795" + "plane" "(1584 -5520 0) (2192 -5520 0) (2192 -5520 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" "356794" + "plane" "(2192 -5520 0) (2184 -5528 0) (2184 -5528 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356793" + "plane" "(2184 -5528 0) (1584 -5528 0) (1584 -5528 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" "356792" + "plane" "(1584 -5528 0) (1584 -5520 0) (1584 -5520 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 175 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409228" + side + { + "id" "356839" + "plane" "(2192 -5872 48) (1584 -5872 48) (1584 -5864 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356838" + "plane" "(1584 -5872 0) (2192 -5872 0) (2184 -5864 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" "356837" + "plane" "(2192 -5872 0) (1584 -5872 0) (1584 -5872 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" "356836" + "plane" "(2184 -5864 0) (2192 -5872 0) (2192 -5872 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356835" + "plane" "(1584 -5864 0) (2184 -5864 0) (2184 -5864 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356834" + "plane" "(1584 -5872 0) (1584 -5864 0) (1584 -5864 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409403" + side + { + "id" "357187" + "plane" "(2032 -5520 304) (1904 -5520 304) (1904 -5504 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" "357186" + "plane" "(2032 -5504 192) (2032 -5504 304) (1904 -5504 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.582116 0.813105 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357185" + "plane" "(1904 -5520 192) (1904 -5520 304) (2032 -5520 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357184" + "plane" "(1904 -5504 192) (1904 -5504 304) (1904 -5520 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" "357183" + "plane" "(2032 -5520 192) (2032 -5520 304) (2032 -5504 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" "357182" + "plane" "(2032 -5504 192) (1904 -5504 192) (1904 -5520 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 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409404" + side + { + "id" "357193" + "plane" "(2032 -5504 160) (1904 -5504 160) (1904 -5520 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" "357192" + "plane" "(1904 -5504 160) (2032 -5504 160) (2032 -5504 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.641246 -0.767335 0 -106.201] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357191" + "plane" "(2032 -5520 160) (1904 -5520 160) (1904 -5520 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357190" + "plane" "(1904 -5520 160) (1904 -5504 160) (1904 -5504 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" "357189" + "plane" "(2032 -5504 160) (2032 -5520 160) (2032 -5520 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" "357188" + "plane" "(2032 -5520 192) (1904 -5520 192) (1904 -5504 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 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409405" + side + { + "id" "357199" + "plane" "(2032 -5520 0) (2192 -5520 0) (2192 -5504 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" "357198" + "plane" "(2192 -5504 0) (2192 -5520 0) (2192 -5520 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" "357197" + "plane" "(2032 -5504 0) (2192 -5504 0) (2192 -5504 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357196" + "plane" "(2192 -5520 0) (2032 -5520 0) (2032 -5520 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357195" + "plane" "(2032 -5520 0) (2032 -5504 0) (2032 -5504 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" "357194" + "plane" "(2032 -5504 160) (2192 -5504 160) (2192 -5520 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" + } + editor + { + "color" "0 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409406" + side + { + "id" "357205" + "plane" "(2032 -5504 304) (2192 -5504 304) (2192 -5520 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" "357204" + "plane" "(2192 -5520 192) (2192 -5520 304) (2192 -5504 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" "357203" + "plane" "(2192 -5504 192) (2192 -5504 304) (2032 -5504 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.582116 0.813105 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357202" + "plane" "(2032 -5520 192) (2032 -5520 304) (2192 -5520 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357201" + "plane" "(2032 -5504 192) (2032 -5504 304) (2032 -5520 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" "357200" + "plane" "(2032 -5520 192) (2192 -5520 192) (2192 -5504 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 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409407" + side + { + "id" "357211" + "plane" "(2192 -5520 160) (2192 -5520 192) (2192 -5504 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" "357210" + "plane" "(2192 -5504 160) (2192 -5504 192) (2032 -5504 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.641246 -0.767335 0 -106.201] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357209" + "plane" "(2032 -5520 160) (2032 -5520 192) (2192 -5520 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357208" + "plane" "(2032 -5504 160) (2032 -5504 192) (2032 -5520 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" "357207" + "plane" "(2032 -5520 160) (2192 -5520 160) (2192 -5504 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" "357206" + "plane" "(2032 -5504 192) (2192 -5504 192) (2192 -5520 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 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409536" + side + { + "id" "357451" + "plane" "(1200 -5120 0) (1232 -5120 0) (1232 -4976 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" "357450" + "plane" "(1200 -4976 160) (1200 -4976 0) (1232 -4976 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" "357449" + "plane" "(1232 -5120 0) (1200 -5120 0) (1200 -5120 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357448" + "plane" "(1200 -5120 160) (1200 -5120 0) (1200 -4976 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" "357447" + "plane" "(1200 -4976 160) (1232 -4976 160) (1232 -5120 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" "357446" + "plane" "(1232 -4976 160) (1232 -4976 0) (1232 -5120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409661" + side + { + "id" "357566" + "plane" "(1024 -4768 0) (1024 -4216 0) (1200 -4216 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357567" + "plane" "(1024 -4216 -16) (1024 -4768 -16) (1200 -4768 -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" "357568" + "plane" "(1024 -4768 -16) (1024 -4216 -16) (1024 -4216 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" "357569" + "plane" "(1200 -4216 -16) (1200 -4768 -16) (1200 -4768 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" "357570" + "plane" "(1024 -4216 -16) (1200 -4216 -16) (1200 -4216 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" "357571" + "plane" "(1200 -4768 -16) (1024 -4768 -16) (1024 -4768 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 147 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409694" + side + { + "id" "357613" + "plane" "(1184 -5280 192) (1184 -5280 160) (1184 -4976 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357612" + "plane" "(1200 -4976 160) (1200 -5280 160) (1200 -5280 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357611" + "plane" "(1200 -5280 192) (1200 -5280 160) (1184 -5280 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" "357610" + "plane" "(1184 -4976 160) (1184 -5280 160) (1200 -5280 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" "357609" + "plane" "(1184 -5280 192) (1184 -4976 192) (1200 -4976 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" "357608" + "plane" "(1184 -4976 192) (1184 -4976 160) (1200 -4976 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409695" + side + { + "id" "357619" + "plane" "(1184 -4768 160) (1184 -4768 192) (1184 -4976 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357618" + "plane" "(1232 -4768 160) (1232 -4976 160) (1232 -4976 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1077936128" + } + side + { + "id" "357617" + "plane" "(1184 -4768 160) (1232 -4768 160) (1232 -4768 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" "357616" + "plane" "(1184 -4976 160) (1232 -4976 160) (1232 -4768 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" "357615" + "plane" "(1184 -4768 192) (1232 -4768 192) (1232 -4976 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" "357614" + "plane" "(1232 -4976 160) (1184 -4976 160) (1184 -4976 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409700" + side + { + "id" "357649" + "plane" "(1184 -5124 128) (1184 -4976 128) (1200 -4976 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" "357648" + "plane" "(1184 -4976 128) (1184 -5124 128) (1184 -5124 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 128.002] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357647" + "plane" "(1200 -5124 48) (1200 -5124 128) (1200 -4976 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357646" + "plane" "(1184 -5124 48) (1184 -5124 128) (1200 -5124 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -511.992] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357645" + "plane" "(1184 -4976 48) (1184 -5124 48) (1200 -5124 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" "357644" + "plane" "(1200 -4976 48) (1200 -4976 128) (1184 -4976 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 230 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409701" + side + { + "id" "357655" + "plane" "(1184 -4768 160) (1232 -4768 160) (1232 -4976 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" "357654" + "plane" "(1184 -4768 160) (1184 -4976 160) (1184 -4976 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 128.002] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357653" + "plane" "(1232 -4768 160) (1232 -4768 48) (1232 -4976 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357652" + "plane" "(1232 -4768 160) (1184 -4768 160) (1184 -4768 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" "357651" + "plane" "(1184 -4976 48) (1232 -4976 48) (1232 -4768 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" "357650" + "plane" "(1184 -4976 160) (1232 -4976 160) (1232 -4976 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 230 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409702" + side + { + "id" "357661" + "plane" "(1184 -4976 -32) (1184 -5124 -32) (1200 -5124 -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" "357660" + "plane" "(1184 -5124 48) (1184 -5124 -32) (1184 -4976 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357659" + "plane" "(1200 -4976 -32) (1200 -5124 -32) (1200 -5124 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357658" + "plane" "(1200 -5124 48) (1200 -5124 -32) (1184 -5124 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -511.992] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357657" + "plane" "(1184 -5124 48) (1184 -4976 48) (1200 -4976 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" "357656" + "plane" "(1184 -4976 48) (1184 -4976 -32) (1200 -4976 -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 230 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409703" + side + { + "id" "357667" + "plane" "(1184 -4976 -32) (1232 -4976 -32) (1232 -4768 -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" "357666" + "plane" "(1184 -4768 -32) (1184 -4768 48) (1184 -4976 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357665" + "plane" "(1232 -4768 -32) (1232 -4976 -32) (1232 -4976 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357664" + "plane" "(1184 -4768 -32) (1232 -4768 -32) (1232 -4768 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" "357663" + "plane" "(1184 -4768 48) (1232 -4768 48) (1232 -4976 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" "357662" + "plane" "(1232 -4976 -32) (1184 -4976 -32) (1184 -4976 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 230 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409779" + side + { + "id" "357781" + "plane" "(1200 -4976 192) (1200 -4976 160) (1232 -4976 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" "357780" + "plane" "(1232 -5120 160) (1200 -5120 160) (1200 -5120 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357779" + "plane" "(1200 -5120 192) (1200 -5120 160) (1200 -4976 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" "357778" + "plane" "(1200 -5120 160) (1232 -5120 160) (1232 -4976 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" "357777" + "plane" "(1200 -4976 192) (1232 -4976 192) (1232 -5120 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" "357776" + "plane" "(1232 -4976 192) (1232 -4976 160) (1232 -5120 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "1077936128" + } + editor + { + "color" "0 156 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409786" + side + { + "id" "357793" + "plane" "(1448 -4968 192) (1448 -4968 160) (1448 -4992 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" "357792" + "plane" "(1416 -4968 160) (1448 -4968 160) (1448 -4968 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" "357791" + "plane" "(1448 -4992 192) (1448 -4992 160) (1416 -4992 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357790" + "plane" "(1416 -4992 160) (1448 -4992 160) (1448 -4968 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 1 0 31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357789" + "plane" "(1416 -4968 192) (1448 -4968 192) (1448 -4992 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" "357788" + "plane" "(1416 -4992 192) (1416 -4992 160) (1416 -4968 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -31.9863] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409890" + side + { + "id" "357973" + "plane" "(1408 -4968 160) (1408 -4968 192) (1408 -4768 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357972" + "plane" "(1392 -4968 160) (1392 -4968 192) (1408 -4968 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" "357971" + "plane" "(1392 -4768 160) (1392 -4768 192) (1392 -4968 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357970" + "plane" "(1408 -4768 160) (1408 -4768 192) (1392 -4768 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357969" + "plane" "(1392 -4768 160) (1392 -4968 160) (1408 -4968 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" "357968" + "plane" "(1408 -4768 192) (1408 -4968 192) (1392 -4968 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 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409967" + side + { + "id" "358099" + "plane" "(1424 -4736 0) (1424 -4672 0) (1392 -4672 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358098" + "plane" "(1424 -4672 160) (1424 -4672 0) (1424 -4736 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358097" + "plane" "(1392 -4672 160) (1392 -4672 0) (1424 -4672 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -52.3672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358096" + "plane" "(1392 -4736 160) (1392 -4736 0) (1392 -4672 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358095" + "plane" "(1424 -4736 160) (1424 -4736 0) (1392 -4736 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" "358094" + "plane" "(1392 -4736 160) (1392 -4672 160) (1424 -4672 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409971" + side + { + "id" "358123" + "plane" "(1424 -4768 160) (1424 -4768 192) (1424 -4672 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358122" + "plane" "(1424 -4672 160) (1424 -4672 192) (1392 -4672 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -52.3672] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358121" + "plane" "(1392 -4672 160) (1392 -4672 192) (1392 -4768 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358120" + "plane" "(1392 -4768 160) (1392 -4768 192) (1424 -4768 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" "358119" + "plane" "(1424 -4768 160) (1424 -4672 160) (1392 -4672 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" "358118" + "plane" "(1392 -4768 192) (1392 -4672 192) (1424 -4672 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 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409973" + side + { + "id" "358135" + "plane" "(1424 -4546 160) (1424 -4546 192) (1392 -4546 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" "358134" + "plane" "(1392 -4672 160) (1392 -4672 192) (1424 -4672 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" "358133" + "plane" "(1424 -4672 160) (1424 -4672 192) (1424 -4546 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358132" + "plane" "(1392 -4546 160) (1392 -4546 192) (1392 -4672 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358131" + "plane" "(1424 -4546 160) (1392 -4546 160) (1392 -4672 160)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358130" + "plane" "(1424 -4672 192) (1392 -4672 192) (1392 -4546 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 180 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409975" + side + { + "id" "358147" + "plane" "(1392 -4480 160) (1392 -4480 192) (1392 -4546 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358146" + "plane" "(1424 -4546 160) (1424 -4546 192) (1424 -4480 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358145" + "plane" "(1424 -4480 160) (1424 -4480 192) (1392 -4480 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358144" + "plane" "(1392 -4546 160) (1392 -4546 192) (1424 -4546 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" "358143" + "plane" "(1392 -4480 160) (1392 -4546 160) (1424 -4546 160)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358142" + "plane" "(1392 -4546 192) (1392 -4480 192) (1424 -4480 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 130 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409986" + side + { + "id" "358148" + "plane" "(1040 -4216 320) (1392 -4216 320) (1392 -4768 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" "358149" + "plane" "(1040 -4768 304) (1392 -4768 304) (1392 -4216 304)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358150" + "plane" "(1040 -4216 320) (1040 -4768 320) (1040 -4768 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" "358151" + "plane" "(1392 -4216 304) (1392 -4768 304) (1392 -4768 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" "358152" + "plane" "(1392 -4216 320) (1040 -4216 320) (1040 -4216 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358153" + "plane" "(1392 -4768 304) (1040 -4768 304) (1040 -4768 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 161 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410026" + side + { + "id" "358213" + "plane" "(1040 -4752 0) (1040 -4768 0) (1232 -4768 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" "358212" + "plane" "(1040 -4768 0) (1040 -4752 0) (1040 -4752 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" "358211" + "plane" "(1232 -4752 0) (1232 -4768 0) (1232 -4768 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358210" + "plane" "(1040 -4752 0) (1232 -4752 0) (1232 -4752 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358209" + "plane" "(1232 -4768 0) (1040 -4768 0) (1040 -4768 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" "358208" + "plane" "(1040 -4768 160) (1040 -4752 160) (1232 -4752 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" + } + editor + { + "color" "0 219 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410027" + side + { + "id" "358219" + "plane" "(1040 -4768 304) (1040 -4752 304) (1232 -4752 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" "358218" + "plane" "(1040 -4752 192) (1040 -4752 304) (1040 -4768 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" "358217" + "plane" "(1232 -4768 192) (1232 -4768 304) (1232 -4752 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358216" + "plane" "(1232 -4752 192) (1232 -4752 304) (1040 -4752 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[-1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358215" + "plane" "(1040 -4768 192) (1040 -4768 304) (1232 -4768 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358214" + "plane" "(1040 -4752 192) (1040 -4768 192) (1232 -4768 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 219 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410028" + side + { + "id" "358225" + "plane" "(1040 -4752 160) (1040 -4752 192) (1040 -4768 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" "358224" + "plane" "(1232 -4768 160) (1232 -4768 192) (1232 -4752 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358223" + "plane" "(1232 -4752 160) (1232 -4752 192) (1040 -4752 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -511.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358222" + "plane" "(1040 -4768 160) (1040 -4768 192) (1232 -4768 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" "358221" + "plane" "(1040 -4752 160) (1040 -4768 160) (1232 -4768 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" "358220" + "plane" "(1040 -4768 192) (1040 -4752 192) (1232 -4752 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 219 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410206" + side + { + "id" "358561" + "plane" "(1392 -4968 32) (1392 -4736 32) (1392 -4736 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358560" + "plane" "(1392 -4736 160) (1392 -4736 32) (1408 -4736 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.931434 0.363909 0 -9.71289] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358559" + "plane" "(1392 -4736 32) (1392 -4968 32) (1408 -4968 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" "358558" + "plane" "(1392 -4968 160) (1392 -4736 160) (1408 -4736 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" "358557" + "plane" "(1408 -4968 32) (1392 -4968 32) (1392 -4968 160)" + "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" "358556" + "plane" "(1408 -4736 160) (1408 -4736 32) (1408 -4968 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410214" + side + { + "id" "358573" + "plane" "(1547.5 -4752 40) (1547.5 -4752 160) (1544 -4736 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.213697 0.9769 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358572" + "plane" "(1544 -4736 160) (1408 -4704 160) (1408 -4704 40)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-0.908667 0.417521 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358571" + "plane" "(1408 -4704 40) (1408 -4752 40) (1547.5 -4752 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358570" + "plane" "(1544 -4736 160) (1547.5 -4752 160) (1408 -4752 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" "358569" + "plane" "(1408 -4704 160) (1408 -4752 160) (1408 -4752 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" "358568" + "plane" "(1408 -4752 40) (1408 -4752 160) (1547.5 -4752 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[1 0 0 -76] 0.125" + "vaxis" "[0 0 -1 215] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410329" + side + { + "id" "358667" + "plane" "(1408 -4704 192) (1408 -4752 192) (1408 -4752 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" "358666" + "plane" "(1547.5 -4752 160) (1547.5 -4752 192) (1544 -4736 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.19087 0.981615 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358665" + "plane" "(1544 -4736 160) (1544 -4736 192) (1408 -4704 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-0.927137 0.374721 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358664" + "plane" "(1547.5 -4752 160) (1544 -4736 160) (1408 -4704 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" "358663" + "plane" "(1544 -4736 192) (1547.5 -4752 192) (1408 -4752 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" "358662" + "plane" "(1408 -4752 160) (1408 -4752 192) (1547.5 -4752 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 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410330" + side + { + "id" "358673" + "plane" "(1448 -4992 160) (1448 -4968 160) (1448 -4968 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" "358672" + "plane" "(1576 -4992 160) (1576 -4992 192) (1576 -4968 192)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.0938606 0.995585 0 22.6641] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358671" + "plane" "(1576 -4992 160) (1448 -4992 160) (1448 -4992 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358670" + "plane" "(1448 -4992 160) (1576 -4992 160) (1576 -4968 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" "358669" + "plane" "(1448 -4968 192) (1576 -4968 192) (1576 -4992 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" "358668" + "plane" "(1448 -4968 160) (1576 -4968 160) (1576 -4968 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 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410391" + side + { + "id" "358703" + "plane" "(1392 -4736 0) (1392 -4968 0) (1408 -4968 0)" + "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" "358702" + "plane" "(1392 -4968 0) (1392 -4736 0) (1392 -4736 32)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358701" + "plane" "(1392 -4736 32) (1392 -4736 0) (1408 -4736 0)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-0.931434 0.363909 0 -9.71289] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358700" + "plane" "(1392 -4968 32) (1392 -4736 32) (1408 -4736 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" "358699" + "plane" "(1408 -4968 0) (1392 -4968 0) (1392 -4968 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" "358698" + "plane" "(1408 -4736 32) (1408 -4736 0) (1408 -4968 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410461" + side + { + "id" "358823" + "plane" "(1576 -4992 160) (1560 -4944 160) (1560 -4944 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.0772676 0.99701 0 4.19922] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358822" + "plane" "(1552 -4992 40) (1552 -4992 160) (1576 -4992 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358821" + "plane" "(1560 -4944 40) (1544 -4944 40) (1552 -4992 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358820" + "plane" "(1576 -4992 160) (1552 -4992 160) (1544 -4944 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" "358819" + "plane" "(1560 -4944 160) (1544 -4944 160) (1544 -4944 40)" + "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" "358818" + "plane" "(1544 -4944 40) (1544 -4944 160) (1552 -4992 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0.164399 -0.986394 0 -33] 0.125" + "vaxis" "[0 0 -1 224] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410466" + side + { + "id" "358829" + "plane" "(1416 -4992 160) (1416 -4992 40) (1416 -4976 40)" + "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" "358828" + "plane" "(1448 -4992 40) (1416 -4992 40) (1416 -4992 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 29.3184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358827" + "plane" "(1448 -4976 40) (1416 -4976 40) (1416 -4992 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358826" + "plane" "(1448 -4992 160) (1416 -4992 160) (1416 -4976 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" "358825" + "plane" "(1416 -4976 160) (1416 -4976 40) (1448 -4976 40)" + "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" "358824" + "plane" "(1448 -4976 40) (1448 -4992 40) (1448 -4992 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 895.992] 0.125" + "vaxis" "[0 0 -1 224] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410478" + side + { + "id" "358841" + "plane" "(1448 -4992 144) (1448 -4992 160) (1560 -4992 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358840" + "plane" "(1560 -4992 160) (1448 -4992 160) (1448 -4976 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" "358839" + "plane" "(1560 -4976 144) (1560 -4976 160) (1448 -4976 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" "358838" + "plane" "(1560 -4992 144) (1560 -4992 160) (1560 -4976 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" "358837" + "plane" "(1448 -4992 160) (1448 -4992 144) (1448 -4976 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358836" + "plane" "(1560 -4976 144) (1448 -4976 144) (1448 -4992 144)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410479" + side + { + "id" "358847" + "plane" "(1571 -4944 144) (1571 -4944 40) (1448 -4944 40)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 0 -1 224] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358846" + "plane" "(1571 -4928 40) (1448 -4928 40) (1448 -4944 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358845" + "plane" "(1448 -4928 144) (1448 -4928 40) (1571 -4928 40)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[-0.902173 0.431375 0 -654] 0.125" + "vaxis" "[0 0 -1 228] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358844" + "plane" "(1571 -4928 144) (1571 -4928 40) (1571 -4944 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" "358843" + "plane" "(1448 -4944 144) (1448 -4944 40) (1448 -4928 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" "358842" + "plane" "(1571 -4944 144) (1448 -4944 144) (1448 -4928 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410485" + side + { + "id" "358883" + "plane" "(1432 -4976 144) (1432 -4928 144) (1448 -4928 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" "358882" + "plane" "(1432 -4928 40) (1432 -4976 40) (1448 -4976 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358881" + "plane" "(1432 -4976 40) (1432 -4928 40) (1432 -4928 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358880" + "plane" "(1448 -4928 40) (1448 -4976 40) (1448 -4976 144)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 895.992] 0.125" + "vaxis" "[0 0 -1 224] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358879" + "plane" "(1432 -4928 40) (1448 -4928 40) (1448 -4928 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" "358878" + "plane" "(1448 -4976 40) (1432 -4976 40) (1432 -4976 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" + } + editor + { + "color" "0 125 154" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410496" + side + { + "id" "358884" + "plane" "(1448 -4976 40) (1448 -4944 40) (1576 -4944 40)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 -402] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358885" + "plane" "(1448 -4944 0) (1448 -4976 0) (1576 -4976 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" "358886" + "plane" "(1448 -4976 0) (1448 -4944 0) (1448 -4944 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" "358887" + "plane" "(1576 -4944 0) (1576 -4976 0) (1576 -4976 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" "358888" + "plane" "(1448 -4944 0) (1576 -4944 0) (1576 -4944 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" "358889" + "plane" "(1576 -4976 0) (1448 -4976 0) (1448 -4976 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 137 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5410499" + side + { + "id" "358901" + "plane" "(1448 -4928 160) (1560 -4928 160) (1560 -4976 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 -1 0 -31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358900" + "plane" "(1448 -4976 144) (1560 -4976 144) (1560 -4928 144)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358899" + "plane" "(1448 -4928 160) (1448 -4976 160) (1448 -4976 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "358898" + "plane" "(1560 -4928 144) (1560 -4976 144) (1560 -4976 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" "358897" + "plane" "(1560 -4928 160) (1448 -4928 160) (1448 -4928 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" "358896" + "plane" "(1560 -4976 144) (1448 -4976 144) (1448 -4976 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" + } + editor + { + "color" "0 137 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5391801" + side + { + "id" "354480" + "plane" "(1352 -5520 304) (1200 -5520 304) (1200 -5504 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" "354479" + "plane" "(1200 -5504 192) (1200 -5504 304) (1200 -5520 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" "354478" + "plane" "(1352 -5504 192) (1352 -5504 304) (1200 -5504 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.582116 0.813105 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354477" + "plane" "(1200 -5520 192) (1200 -5520 304) (1352 -5520 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354476" + "plane" "(1352 -5520 192) (1352 -5520 304) (1352 -5504 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" "354475" + "plane" "(1352 -5504 192) (1200 -5504 192) (1200 -5520 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 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5391802" + side + { + "id" "354486" + "plane" "(1200 -5504 160) (1200 -5504 192) (1200 -5520 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" "354485" + "plane" "(1352 -5504 160) (1352 -5504 192) (1200 -5504 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.641246 -0.767335 0 -106.201] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354484" + "plane" "(1200 -5520 160) (1200 -5520 192) (1352 -5520 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354483" + "plane" "(1352 -5520 160) (1352 -5520 192) (1352 -5504 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" "354482" + "plane" "(1352 -5504 160) (1200 -5504 160) (1200 -5520 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" "354481" + "plane" "(1352 -5520 192) (1200 -5520 192) (1200 -5504 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 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5391803" + side + { + "id" "354492" + "plane" "(1480 -5520 304) (1352 -5520 304) (1352 -5504 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" "354491" + "plane" "(1480 -5504 192) (1480 -5504 304) (1352 -5504 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.582116 0.813105 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354490" + "plane" "(1352 -5520 192) (1352 -5520 304) (1480 -5520 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354489" + "plane" "(1352 -5504 192) (1352 -5504 304) (1352 -5520 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" "354488" + "plane" "(1480 -5520 192) (1480 -5520 304) (1480 -5504 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" "354487" + "plane" "(1480 -5504 192) (1352 -5504 192) (1352 -5520 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 154 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5391804" + side + { + "id" "354498" + "plane" "(1480 -5504 160) (1480 -5504 192) (1352 -5504 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.641246 -0.767335 0 -106.201] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354497" + "plane" "(1352 -5520 160) (1352 -5520 192) (1480 -5520 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354496" + "plane" "(1352 -5504 160) (1352 -5504 192) (1352 -5520 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" "354495" + "plane" "(1480 -5520 160) (1480 -5520 192) (1480 -5504 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" "354494" + "plane" "(1480 -5504 160) (1352 -5504 160) (1352 -5520 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" "354493" + "plane" "(1480 -5520 192) (1352 -5520 192) (1352 -5504 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 154 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5391805" + side + { + "id" "354504" + "plane" "(1904 -5520 304) (1480 -5520 304) (1480 -5504 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" "354503" + "plane" "(1904 -5504 192) (1904 -5504 304) (1480 -5504 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0.582116 0.813105 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354502" + "plane" "(1480 -5520 192) (1480 -5520 304) (1904 -5520 304)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354501" + "plane" "(1480 -5504 192) (1480 -5504 304) (1480 -5520 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" "354500" + "plane" "(1904 -5520 192) (1904 -5520 304) (1904 -5504 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" "354499" + "plane" "(1904 -5504 192) (1480 -5504 192) (1480 -5520 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 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5391806" + side + { + "id" "354510" + "plane" "(1904 -5504 160) (1904 -5504 192) (1480 -5504 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.641246 -0.767335 0 -106.201] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354509" + "plane" "(1480 -5520 160) (1480 -5520 192) (1904 -5520 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354508" + "plane" "(1480 -5504 160) (1480 -5504 192) (1480 -5520 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" "354507" + "plane" "(1904 -5520 160) (1904 -5520 192) (1904 -5504 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" "354506" + "plane" "(1904 -5504 160) (1480 -5504 160) (1480 -5520 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" "354505" + "plane" "(1904 -5520 192) (1480 -5520 192) (1480 -5504 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 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5391823" + side + { + "id" "354516" + "plane" "(1600 -5504 0) (1480 -5504 0) (1480 -5520 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" "354515" + "plane" "(1480 -5504 160) (1480 -5504 0) (1600 -5504 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354514" + "plane" "(1600 -5520 0) (1480 -5520 0) (1480 -5520 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354513" + "plane" "(1480 -5520 160) (1480 -5520 0) (1480 -5504 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" "354512" + "plane" "(1600 -5520 160) (1480 -5520 160) (1480 -5504 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" "354511" + "plane" "(1600 -5504 160) (1600 -5504 0) (1600 -5520 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" + } + editor + { + "color" "0 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5391824" + side + { + "id" "354522" + "plane" "(1904 -5504 0) (1600 -5504 0) (1600 -5520 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" "354521" + "plane" "(1600 -5504 0) (1904 -5504 0) (1904 -5504 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354520" + "plane" "(1904 -5520 160) (1904 -5520 0) (1600 -5520 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "354519" + "plane" "(1904 -5504 160) (1904 -5504 0) (1904 -5520 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" "354518" + "plane" "(1904 -5520 160) (1600 -5520 160) (1600 -5504 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" "354517" + "plane" "(1600 -5520 160) (1600 -5520 0) (1600 -5504 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" + } + editor + { + "color" "0 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5374491" + side + { + "id" "376826" + "plane" "(1424 -4336 0) (2072 -4336 0) (2072 -4992 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376825" + "plane" "(1424 -4992 -16) (2072 -4992 -16) (2072 -4336 -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" "376824" + "plane" "(1424 -4336 0) (1424 -4992 0) (1424 -4992 -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" "376823" + "plane" "(2072 -4336 -16) (2072 -4992 -16) (2072 -4992 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" "376822" + "plane" "(2072 -4336 0) (1424 -4336 0) (1424 -4336 -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" "376821" + "plane" "(2072 -4992 -16) (1424 -4992 -16) (1424 -4992 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 179 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323610" + side + { + "id" "352003" + "plane" "(-1224 -3751 -96) (-1098 -3751 -96) (-1098 -3775 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 -32.0015] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352002" + "plane" "(-1098 -3751 -224) (-1224 -3751 -224) (-1224 -3775 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 -32.0015] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352001" + "plane" "(-1224 -3751 -224) (-1098 -3751 -224) (-1098 -3751 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32.0015] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352000" + "plane" "(-1098 -3775 -224) (-1224 -3775 -224) (-1224 -3775 -96)" + "material" "EFFECTS/OFFELEVDRSA" + "uaxis" "[1 0 0 365.73] 0.246094" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351999" + "plane" "(-1098 -3751 -224) (-1098 -3775 -224) (-1098 -3775 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351998" + "plane" "(-1224 -3775 -224) (-1224 -3751 -224) (-1224 -3751 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323611" + side + { + "id" "352009" + "plane" "(-1224 -3784 -224) (-1224 -3752 -224) (-904 -3752 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 -1 0 80] 0.25" + "vaxis" "[-1 0 0 -64.0015] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352008" + "plane" "(-904 -3784 -240) (-904 -3752 -240) (-1224 -3752 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -32.0015] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352007" + "plane" "(-1224 -3784 -240) (-1224 -3752 -240) (-1224 -3752 -224)" + "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" "352006" + "plane" "(-904 -3752 -240) (-904 -3784 -240) (-904 -3784 -224)" + "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" "352005" + "plane" "(-1224 -3752 -240) (-904 -3752 -240) (-904 -3752 -224)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 608] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352004" + "plane" "(-904 -3784 -240) (-1224 -3784 -240) (-1224 -3784 -224)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 544] 0.25" + "vaxis" "[0 0 -1 -896] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 237" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323621" + side + { + "id" "352057" + "plane" "(-1032 -3752 -96) (-904 -3752 -96) (-904 -3768 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352056" + "plane" "(-904 -3752 -224) (-1032 -3752 -224) (-1032 -3768 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352055" + "plane" "(-1032 -3752 -224) (-904 -3752 -224) (-904 -3752 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00146484] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352054" + "plane" "(-904 -3768 -224) (-1032 -3768 -224) (-1032 -3768 -96)" + "material" "EFFECTS/OFFELEVDRSA" + "uaxis" "[1 0 0 32.0015] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352053" + "plane" "(-904 -3752 -224) (-904 -3768 -224) (-904 -3768 -96)" + "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" "352052" + "plane" "(-1032 -3768 -224) (-1032 -3752 -224) (-1032 -3752 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 246 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324110" + side + { + "id" "352222" + "plane" "(-710 -4369 -48) (-666 -4375 -48) (-666 -4384 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352223" + "plane" "(-710 -4384 -224) (-666 -4384 -224) (-666 -4375 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352224" + "plane" "(-710 -4369 -224) (-710 -4369 -48) (-710 -4384 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352225" + "plane" "(-666 -4384 -224) (-666 -4384 -48) (-666 -4375 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352226" + "plane" "(-666 -4375 -224) (-666 -4375 -48) (-710 -4369 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352227" + "plane" "(-710 -4384 -224) (-710 -4384 -48) (-666 -4384 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324182" + side + { + "id" "352377" + "plane" "(-1032 -3752 -352) (-904 -3752 -352) (-904 -3768 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352376" + "plane" "(-904 -3752 -480) (-1032 -3752 -480) (-1032 -3768 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352375" + "plane" "(-1032 -3752 -480) (-904 -3752 -480) (-904 -3752 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00146484] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352374" + "plane" "(-904 -3768 -480) (-1032 -3768 -480) (-1032 -3768 -352)" + "material" "EFFECTS/OFFELEVDRSA" + "uaxis" "[1 0 0 32.0015] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352373" + "plane" "(-904 -3752 -480) (-904 -3768 -480) (-904 -3768 -352)" + "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" "352372" + "plane" "(-1032 -3768 -480) (-1032 -3752 -480) (-1032 -3752 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 246 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324183" + side + { + "id" "352383" + "plane" "(-1224 -3784 -480) (-1224 -3752 -480) (-904 -3752 -480)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 -1 0 80] 0.25" + "vaxis" "[-1 0 0 -64.0015] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352382" + "plane" "(-904 -3784 -496) (-904 -3752 -496) (-1224 -3752 -496)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 -32.0015] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352381" + "plane" "(-1224 -3784 -496) (-1224 -3752 -496) (-1224 -3752 -480)" + "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" "352380" + "plane" "(-904 -3752 -496) (-904 -3784 -496) (-904 -3784 -480)" + "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" "352379" + "plane" "(-1224 -3752 -496) (-904 -3752 -496) (-904 -3752 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352378" + "plane" "(-904 -3784 -496) (-1224 -3784 -496) (-1224 -3784 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 237" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324184" + side + { + "id" "352389" + "plane" "(-1224 -3751 -352) (-1098 -3751 -352) (-1098 -3775 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 -32.0015] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352388" + "plane" "(-1098 -3751 -480) (-1224 -3751 -480) (-1224 -3775 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 -32.0015] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352387" + "plane" "(-1224 -3751 -480) (-1098 -3751 -480) (-1098 -3751 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32.0015] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352386" + "plane" "(-1098 -3775 -480) (-1224 -3775 -480) (-1224 -3775 -352)" + "material" "EFFECTS/OFFELEVDRSA" + "uaxis" "[1 0 0 365.729] 0.246094" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352385" + "plane" "(-1098 -3751 -480) (-1098 -3775 -480) (-1098 -3775 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352384" + "plane" "(-1224 -3775 -480) (-1224 -3751 -480) (-1224 -3751 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324259" + side + { + "id" "352437" + "plane" "(-904 -3736 -240) (-816 -3736 -240) (-816 -3784 -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" "352436" + "plane" "(-904 -3784 -480) (-816 -3784 -480) (-816 -3736 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352435" + "plane" "(-816 -3736 -480) (-816 -3784 -480) (-816 -3784 -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" "352434" + "plane" "(-904 -3736 -480) (-816 -3736 -480) (-816 -3736 -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" "352433" + "plane" "(-816 -3784 -480) (-904 -3784 -480) (-904 -3784 -240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352432" + "plane" "(-904 -3784 -480) (-904 -3736 -480) (-904 -3736 -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" + } + editor + { + "color" "0 135 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324289" + side + { + "id" "352449" + "plane" "(-904 -3784 -240) (-1032 -3784 -240) (-1032 -3736 -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" "352448" + "plane" "(-904 -3736 -352) (-1032 -3736 -352) (-1032 -3784 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352447" + "plane" "(-1032 -3736 -352) (-904 -3736 -352) (-904 -3736 -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" "352446" + "plane" "(-904 -3784 -352) (-1032 -3784 -352) (-1032 -3784 -240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352445" + "plane" "(-904 -3736 -352) (-904 -3784 -352) (-904 -3784 -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" "352444" + "plane" "(-1032 -3784 -352) (-1032 -3736 -352) (-1032 -3736 -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" + } + editor + { + "color" "0 135 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324342" + side + { + "id" "352467" + "plane" "(-1224 -3784 -240) (-1560 -3784 -240) (-1560 -3736 -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" "352466" + "plane" "(-1224 -3736 -480) (-1560 -3736 -480) (-1560 -3784 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352465" + "plane" "(-1560 -3784 -480) (-1560 -3736 -480) (-1560 -3736 -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" "352464" + "plane" "(-1560 -3736 -480) (-1224 -3736 -480) (-1224 -3736 -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" "352463" + "plane" "(-1224 -3784 -480) (-1560 -3784 -480) (-1560 -3784 -240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352462" + "plane" "(-1224 -3736 -480) (-1224 -3784 -480) (-1224 -3784 -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" + } + editor + { + "color" "0 135 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324349" + side + { + "id" "352473" + "plane" "(-1098 -3784 -240) (-1224 -3784 -240) (-1224 -3736 -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" "352472" + "plane" "(-1098 -3736 -352) (-1224 -3736 -352) (-1224 -3784 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352471" + "plane" "(-1224 -3736 -352) (-1098 -3736 -352) (-1098 -3736 -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" "352470" + "plane" "(-1098 -3784 -352) (-1224 -3784 -352) (-1224 -3784 -240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352469" + "plane" "(-1224 -3784 -352) (-1224 -3736 -352) (-1224 -3736 -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" "352468" + "plane" "(-1098 -3736 -352) (-1098 -3784 -352) (-1098 -3784 -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" + } + editor + { + "color" "0 135 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324350" + side + { + "id" "352479" + "plane" "(-1032 -3784 -240) (-1098 -3784 -240) (-1098 -3736 -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" "352478" + "plane" "(-1032 -3736 -480) (-1098 -3736 -480) (-1098 -3784 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352477" + "plane" "(-1098 -3736 -480) (-1032 -3736 -480) (-1032 -3736 -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" "352476" + "plane" "(-1032 -3784 -480) (-1098 -3784 -480) (-1098 -3784 -240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352475" + "plane" "(-1032 -3736 -480) (-1032 -3784 -480) (-1032 -3784 -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" "352474" + "plane" "(-1098 -3784 -480) (-1098 -3736 -480) (-1098 -3736 -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" + } + editor + { + "color" "0 135 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5305280" + side + { + "id" "351716" + "plane" "(-1560 -3944 -224) (-1560 -3784 -224) (-816 -3784 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "351717" + "plane" "(-1560 -3784 -272) (-1560 -3944 -272) (-816 -3944 -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" "351718" + "plane" "(-1560 -3944 -272) (-1560 -3784 -272) (-1560 -3784 -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" "351719" + "plane" "(-816 -3784 -272) (-816 -3944 -272) (-816 -3944 -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" "351720" + "plane" "(-1560 -3784 -272) (-816 -3784 -272) (-816 -3784 -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" "351721" + "plane" "(-816 -3944 -272) (-1560 -3944 -272) (-1560 -3944 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[1 0 0 -841] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 153 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5305635" + side + { + "id" "351722" + "plane" "(-1560 -4800 -224) (-1560 -3944 -224) (-1400 -3944 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "351723" + "plane" "(-1560 -3944 -272) (-1560 -4800 -272) (-1400 -4800 -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" "351724" + "plane" "(-1560 -4800 -272) (-1560 -3944 -272) (-1560 -3944 -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" "351725" + "plane" "(-1400 -3944 -272) (-1400 -4800 -272) (-1400 -4800 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365.004] 0.063" + "vaxis" "[0 -1 0 -185.313] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351726" + "plane" "(-1560 -3944 -272) (-1400 -3944 -272) (-1400 -3944 -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" "351727" + "plane" "(-1400 -4800 -272) (-1560 -4800 -272) (-1560 -4800 -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 191 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5305638" + side + { + "id" "351728" + "plane" "(-1560 -4984 -224) (-1560 -4800 -224) (-400 -4800 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "351729" + "plane" "(-1560 -4800 -272) (-1560 -4984 -272) (-400 -4984 -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" "351730" + "plane" "(-1560 -4984 -272) (-1560 -4800 -272) (-1560 -4800 -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" "351731" + "plane" "(-400 -4800 -272) (-400 -4984 -272) (-400 -4984 -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" "351732" + "plane" "(-1560 -4800 -272) (-400 -4800 -272) (-400 -4800 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[1 0 0 -841] 0.102" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351733" + "plane" "(-400 -4984 -272) (-1560 -4984 -272) (-1560 -4984 -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 149 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5306044" + side + { + "id" "351734" + "plane" "(-400 -4384 -224) (-240 -4384 -224) (-240 -4984 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "351735" + "plane" "(-400 -4984 -272) (-240 -4984 -272) (-240 -4384 -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" "351736" + "plane" "(-400 -4384 -224) (-400 -4984 -224) (-400 -4984 -272)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 364.997] 0.063" + "vaxis" "[0 1 0 312.254] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351737" + "plane" "(-240 -4384 -272) (-240 -4984 -272) (-240 -4984 -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" "351738" + "plane" "(-240 -4384 -224) (-400 -4384 -224) (-400 -4384 -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" "351739" + "plane" "(-240 -4984 -272) (-400 -4984 -272) (-400 -4984 -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 103 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5306767" + side + { + "id" "351764" + "plane" "(-1560 -3736 -24) (-1096 -3736 -24) (-1096 -5024 -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" + } + side + { + "id" "351765" + "plane" "(-1560 -5024 -46) (-1096 -5024 -46) (-1096 -3736 -46)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351766" + "plane" "(-1560 -3736 -24) (-1560 -5024 -24) (-1560 -5024 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351767" + "plane" "(-1096 -3736 -46) (-1096 -5024 -46) (-1096 -5024 -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" "351768" + "plane" "(-1096 -3736 -24) (-1560 -3736 -24) (-1560 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351769" + "plane" "(-1096 -5024 -46) (-1560 -5024 -46) (-1560 -5024 -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 221 134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5306769" + side + { + "id" "351770" + "plane" "(-1096 -3736 -31) (-832 -3736 -31) (-832 -5024 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351771" + "plane" "(-1096 -5024 -46) (-832 -5024 -46) (-832 -3736 -46)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351772" + "plane" "(-1096 -3736 -31) (-1096 -5024 -31) (-1096 -5024 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351773" + "plane" "(-832 -3736 -46) (-832 -5024 -46) (-832 -5024 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351774" + "plane" "(-832 -3736 -31) (-1096 -3736 -31) (-1096 -3736 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351775" + "plane" "(-832 -5024 -46) (-1096 -5024 -46) (-1096 -5024 -31)" + "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 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5306774" + side + { + "id" "351776" + "plane" "(-832 -4400 -31) (-208 -4400 -31) (-208 -5024 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351777" + "plane" "(-832 -5024 -46) (-208 -5024 -46) (-208 -4400 -46)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351778" + "plane" "(-832 -4400 -31) (-832 -5024 -31) (-832 -5024 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351779" + "plane" "(-208 -4400 -46) (-208 -5024 -46) (-208 -5024 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351780" + "plane" "(-208 -4400 -31) (-832 -4400 -31) (-832 -4400 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351781" + "plane" "(-208 -5024 -46) (-832 -5024 -46) (-832 -5024 -31)" + "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 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5306918" + side + { + "id" "351788" + "plane" "(-240 -4384 -224) (-208 -4384 -224) (-208 -5024 -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" "351789" + "plane" "(-240 -5024 -480) (-208 -5024 -480) (-208 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351790" + "plane" "(-240 -4384 -224) (-240 -5024 -224) (-240 -5024 -480)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351791" + "plane" "(-208 -4384 -480) (-208 -5024 -480) (-208 -5024 -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" "351792" + "plane" "(-208 -4384 -224) (-240 -4384 -224) (-240 -4384 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351793" + "plane" "(-208 -5024 -480) (-240 -5024 -480) (-240 -5024 -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 147 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5306983" + side + { + "id" "351794" + "plane" "(-1600 -4984 -224) (-1600 -3736 -224) (-1560 -3736 -224)" + "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" "351795" + "plane" "(-1600 -3736 -480) (-1600 -4984 -480) (-1560 -4984 -480)" + "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" "351796" + "plane" "(-1600 -4984 -480) (-1600 -3736 -480) (-1600 -3736 -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" "351797" + "plane" "(-1560 -3736 -480) (-1560 -4984 -480) (-1560 -4984 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 330] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351798" + "plane" "(-1600 -3736 -480) (-1560 -3736 -480) (-1560 -3736 -224)" + "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" "351799" + "plane" "(-1560 -4984 -480) (-1600 -4984 -480) (-1600 -4984 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5306999" + side + { + "id" "351817" + "plane" "(-424 -4384 0) (-248 -4384 0) (-248 -4400 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -94] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351816" + "plane" "(-248 -4384 0) (-424 -4384 0) (-424 -4384 -48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0.706223 0 0.707988 16] 0.125" + "vaxis" "[0.706223 0 -0.707988 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351815" + "plane" "(-424 -4400 -48) (-424 -4400 0) (-248 -4400 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" "351814" + "plane" "(-424 -4384 -48) (-424 -4384 0) (-424 -4400 0)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 7.526] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351813" + "plane" "(-424 -4400 -48) (-248 -4400 -48) (-248 -4384 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351812" + "plane" "(-248 -4400 -48) (-248 -4400 0) (-248 -4384 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5307000" + side + { + "id" "351823" + "plane" "(-248 -4384 0) (-16 -4384 0) (-16 -4400 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -94] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351822" + "plane" "(-16 -4400 -88) (-16 -4400 0) (-16 -4384 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" "351821" + "plane" "(-16 -4384 -88) (-16 -4384 0) (-248 -4384 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0.706223 0 0.707988 16] 0.125" + "vaxis" "[0.706223 0 -0.707988 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351820" + "plane" "(-248 -4400 0) (-16 -4400 0) (-16 -4400 -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" + } + side + { + "id" "351819" + "plane" "(-248 -4400 -88) (-16 -4400 -88) (-16 -4384 -88)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 166] 0.063" + "vaxis" "[0 1 0 868.133] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351818" + "plane" "(-248 -4384 -88) (-248 -4384 0) (-248 -4400 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 -397.301] 0.063" + "vaxis" "[0 1 0 868.132] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5307029" + side + { + "id" "351824" + "plane" "(-832 -3736 -32) (-816 -3736 -32) (-816 -4384 -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" "351825" + "plane" "(-832 -4384 -48) (-816 -4384 -48) (-816 -3736 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351826" + "plane" "(-832 -3736 -32) (-832 -4384 -32) (-832 -4384 -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" "351827" + "plane" "(-816 -3736 -48) (-816 -4384 -48) (-816 -4384 -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" "351828" + "plane" "(-816 -3736 -32) (-832 -3736 -32) (-832 -3736 -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" "351829" + "plane" "(-816 -4384 -48) (-832 -4384 -48) (-832 -4384 -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 147 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5288839" + side + { + "id" "351530" + "plane" "(-576 -4672 240) (-16 -4672 240) (-16 -4688 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" "351529" + "plane" "(-576 -4672 160) (-546.91 -4688 160) (-16 -4688 160)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351528" + "plane" "(-16 -4672 160) (-16 -4688 160) (-16 -4688 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" "351527" + "plane" "(-576 -4672 160) (-16 -4672 160) (-16 -4672 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351526" + "plane" "(-16 -4688 160) (-546.91 -4688 160) (-546.91 -4688 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" "351525" + "plane" "(-546.909 -4688 160) (-576 -4672 160) (-576 -4672 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" "0 162 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5288840" + side + { + "id" "351535" + "plane" "(-576 -4688 240) (-576 -4672 240) (-546.91 -4688 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" "351534" + "plane" "(-576 -4672 160) (-576 -4688 160) (-546.91 -4688 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351533" + "plane" "(-576 -4688 160) (-576 -4672 160) (-576 -4672 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" "351532" + "plane" "(-546.91 -4688 160) (-576 -4688 160) (-576 -4688 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" "351531" + "plane" "(-576 -4672 160) (-546.913 -4688 160) (-546.909 -4688 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" "0 162 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5272345" + side + { + "id" "351477" + "plane" "(64 -5696 160.5) (94 -5696 160.5) (94 -5731 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351478" + "plane" "(64 -5731 31.5) (94 -5731 31.5) (94 -5696 31.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351479" + "plane" "(64 -5696 160.5) (64 -5731 160.5) (64 -5731 31.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351480" + "plane" "(94 -5696 31.5) (94 -5731 31.5) (94 -5731 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351481" + "plane" "(94 -5696 160.5) (64 -5696 160.5) (64 -5696 31.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351482" + "plane" "(94 -5731 31.5) (64 -5731 31.5) (64 -5731 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 243 144" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5272351" + side + { + "id" "351488" + "plane" "(-358 -5731 237) (-358 -5697 237) (-173 -5697 237)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351487" + "plane" "(-358 -5697 32) (-358 -5731 32) (-173 -5731 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351486" + "plane" "(-358 -5731 32) (-358 -5697 32) (-358 -5697 237)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351485" + "plane" "(-173 -5697 32) (-173 -5731 32) (-173 -5731 237)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351484" + "plane" "(-358 -5697 32) (-173 -5697 32) (-173 -5697 237)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351483" + "plane" "(-173 -5731 32) (-358 -5731 32) (-358 -5731 237)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 131" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5256433" + side + { + "id" "351476" + "plane" "(280 -4670 240) (280 -4560 240) (368 -4560 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" "351475" + "plane" "(280 -4560 -16) (280 -4670 -16) (368 -4560 -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" "351474" + "plane" "(280 -4670 -16) (280 -4560 -16) (280 -4560 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" "351473" + "plane" "(280 -4560 -16) (368 -4560 -16) (368 -4560 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" "351472" + "plane" "(368 -4560 -16) (280 -4670 -16) (280 -4670 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" + } + editor + { + "color" "0 206 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5224723" + side + { + "id" "351430" + "plane" "(400 -5616 156) (560 -5616 156) (560 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351431" + "plane" "(400 -5872 32) (560 -5872 32) (560 -5616 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" "351432" + "plane" "(400 -5616 156) (400 -5872 156) (400 -5872 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" "351433" + "plane" "(560 -5616 32) (560 -5872 32) (560 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351434" + "plane" "(560 -5616 156) (400 -5616 156) (400 -5616 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" "351435" + "plane" "(560 -5872 32) (400 -5872 32) (400 -5872 156)" + "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 109 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5224724" + side + { + "id" "351436" + "plane" "(144 -5600 160) (848 -5600 160) (848 -5888 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" "351437" + "plane" "(144 -5888 0) (848 -5888 0) (848 -5600 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" "351438" + "plane" "(144 -5600 160) (144 -5888 160) (144 -5888 0)" + "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" "351439" + "plane" "(848 -5600 0) (848 -5888 0) (848 -5888 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" "351440" + "plane" "(848 -5600 160) (144 -5600 160) (144 -5600 0)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351441" + "plane" "(848 -5888 0) (144 -5888 0) (144 -5888 160)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 164" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5224727" + side + { + "id" "351442" + "plane" "(-984 -6128 576) (-976 -6128 576) (-976 -6664 576)" + "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" "351443" + "plane" "(-984 -6664 -48) (-976 -6664 -48) (-976 -6128 -48)" + "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" "351444" + "plane" "(-984 -6128 576) (-984 -6664 576) (-984 -6664 -48)" + "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" "351445" + "plane" "(-976 -6128 -48) (-976 -6664 -48) (-976 -6664 576)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351446" + "plane" "(-976 -6128 576) (-984 -6128 576) (-984 -6128 -48)" + "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" "351447" + "plane" "(-976 -6664 -48) (-984 -6664 -48) (-984 -6664 576)" + "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 157 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5224751" + side + { + "id" "351448" + "plane" "(-3876 -9728 198) (-3876 275 198) (4378 275 198)" + "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" "351449" + "plane" "(-3876 275 182) (-3876 -9728 182) (4378 -9728 182)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351450" + "plane" "(-3876 -9728 182) (-3876 275 182) (-3876 275 198)" + "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" "351451" + "plane" "(4378 275 182) (4378 -9728 182) (4378 -9728 198)" + "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" "351452" + "plane" "(-3876 275 182) (4378 275 182) (4378 275 198)" + "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" "351453" + "plane" "(4378 -9728 182) (-3876 -9728 182) (-3876 -9728 198)" + "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 145 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5224773" + side + { + "id" "351459" + "plane" "(-81 -6009 293) (-49 -6009 293) (-49 -6039 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351458" + "plane" "(-86 -6039 32) (-49 -6039 32) (-49 -6009 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351457" + "plane" "(-81 -6009 32) (-81 -6009 293) (-86 -6039 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351456" + "plane" "(-49 -6039 32) (-49 -6039 293) (-49 -6009 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351455" + "plane" "(-86 -6039 32) (-86 -6039 293) (-49 -6039 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351454" + "plane" "(-49 -6009 32) (-49 -6009 293) (-81 -6009 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5224774" + side + { + "id" "351465" + "plane" "(-81 -6009 293) (-81 -5924 293) (-49 -5924 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351464" + "plane" "(-81 -5924 32) (-81 -6009 32) (-49 -6009 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351463" + "plane" "(-81 -6009 32) (-81 -5924 32) (-81 -5924 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351462" + "plane" "(-49 -5924 32) (-49 -6009 32) (-49 -6009 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351461" + "plane" "(-81 -5924 32) (-49 -5924 32) (-49 -5924 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351460" + "plane" "(-49 -6009 32) (-81 -6009 32) (-81 -6009 293)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5208871" + side + { + "id" "351418" + "plane" "(1344 -2912 368) (1360 -2912 368) (1360 -3128 368)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351419" + "plane" "(1344 -3128 208) (1360 -3128 208) (1360 -2912 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351420" + "plane" "(1344 -2912 368) (1344 -3128 368) (1344 -3128 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351421" + "plane" "(1360 -2912 208) (1360 -3128 208) (1360 -3128 368)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351422" + "plane" "(1360 -2912 368) (1344 -2912 368) (1344 -2912 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351423" + "plane" "(1360 -3128 208) (1344 -3128 208) (1344 -3128 368)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5208884" + side + { + "id" "351424" + "plane" "(447 -2377 144) (480 -2377 144) (480 -2450 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351425" + "plane" "(443.5 -2450 -40) (480 -2450 -40) (480 -2377 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351426" + "plane" "(447 -2377 -40) (447 -2377 144) (443.5 -2450 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351427" + "plane" "(480 -2450 -40) (480 -2450 144) (480 -2377 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351428" + "plane" "(480 -2377 -40) (480 -2377 144) (447 -2377 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351429" + "plane" "(443.5 -2450 -40) (443.5 -2450 144) (480 -2450 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 242 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5143548" + side + { + "id" "351287" + "plane" "(-640 -4112 224) (-640 -4112 -32) (-640 -4016 -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" "351286" + "plane" "(-640 -4016 224) (-640 -4016 -32) (-424 -4016 -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" "351285" + "plane" "(-424 -4112 224) (-424 -4112 -32) (-640 -4112 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351284" + "plane" "(-424 -4016 -32) (-640 -4016 -32) (-640 -4112 -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" "351283" + "plane" "(-424 -4016 224) (-424 -4016 -32) (-424 -4112 -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" "351282" + "plane" "(-424 -4112 224) (-640 -4112 224) (-640 -4016 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" + } + editor + { + "color" "0 183 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5127814" + side + { + "id" "351275" + "plane" "(-32 -5944 182) (-32 -5924 182) (142 -5924 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351274" + "plane" "(-32 -5924 70) (-32 -5924 182) (-32 -5944 182)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351273" + "plane" "(142 -5944 70) (142 -5944 182) (142 -5924 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -25.8867] 0.125" + "vaxis" "[0 0 -1 117.162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351272" + "plane" "(142 -5924 70) (142 -5924 182) (-32 -5924 182)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351271" + "plane" "(-32 -5944 70) (-32 -5944 182) (142 -5944 182)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351270" + "plane" "(-32 -5924 70) (-32 -5944 70) (142 -5944 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" + } + editor + { + "color" "0 205 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5127815" + side + { + "id" "351281" + "plane" "(-32 -5924 32) (-32 -5944 32) (142 -5944 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351280" + "plane" "(-32 -5944 32) (-32 -5924 32) (-32 -5924 70)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351279" + "plane" "(142 -5924 32) (142 -5944 32) (142 -5944 70)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351278" + "plane" "(-32 -5924 32) (142 -5924 32) (142 -5924 70)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351277" + "plane" "(142 -5944 32) (-32 -5944 32) (-32 -5944 70)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351276" + "plane" "(-32 -5944 70) (-32 -5924 70) (142 -5924 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" + } + editor + { + "color" "0 205 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5111728" + side + { + "id" "351035" + "plane" "(-32 -5984 70) (-32 -5944 70) (142 -5944 70)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351034" + "plane" "(-32 -5944 32) (-32 -5984 32) (142 -5984 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351033" + "plane" "(-32 -5984 32) (-32 -5944 32) (-32 -5944 70)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351032" + "plane" "(142 -5944 32) (142 -5984 32) (142 -5984 70)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351031" + "plane" "(142 -5984 32) (-32 -5984 32) (-32 -5984 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" "351030" + "plane" "(-32 -5944 32) (142 -5944 32) (142 -5944 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" + } + editor + { + "color" "0 205 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5111946" + side + { + "id" "351113" + "plane" "(62 -5944 144) (64 -5944 144) (64 -5966 144)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 -8.5] 0.125" + "vaxis" "[1 0 0 168] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351112" + "plane" "(62 -5966 142) (64 -5966 142) (64 -5944 142)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 212] 0.25" + "vaxis" "[0 -1 0 4.25] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351111" + "plane" "(62 -5944 144) (62 -5966 144) (62 -5966 142)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 -8.5] 0.125" + "vaxis" "[0 0 1 -232] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351110" + "plane" "(64 -5944 142) (64 -5966 142) (64 -5966 144)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 -8.5] 0.125" + "vaxis" "[0 0 -1 40] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351109" + "plane" "(64 -5944 144) (62 -5944 144) (62 -5944 142)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 212] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351108" + "plane" "(64 -5966 142) (62 -5966 142) (62 -5966 144)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -760.496] 0.125" + "vaxis" "[1 0 0 167.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 218" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5111966" + side + { + "id" "351125" + "plane" "(14 -5944 144) (16 -5944 144) (16 -5966 144)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 -8.5] 0.125" + "vaxis" "[1 0 0 40] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351124" + "plane" "(14 -5966 142) (16 -5966 142) (16 -5944 142)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 404] 0.25" + "vaxis" "[0 -1 0 4.25] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351123" + "plane" "(14 -5944 144) (14 -5966 144) (14 -5966 142)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 -8.5] 0.125" + "vaxis" "[0 0 1 -232] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351122" + "plane" "(16 -5944 142) (16 -5966 142) (16 -5966 144)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 -8.5] 0.125" + "vaxis" "[0 0 -1 40] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351121" + "plane" "(16 -5944 144) (14 -5944 144) (14 -5944 142)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 404] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351120" + "plane" "(16 -5966 142) (14 -5966 142) (14 -5966 144)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -760.496] 0.125" + "vaxis" "[1 0 0 39.9979] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 102" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5112134" + side + { + "id" "351245" + "plane" "(-11 -6000 214) (-11 -5680 214) (152 -5680 214)" + "material" "AR_DIZZY/DIZZY_TAR_ROOF_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351244" + "plane" "(-11 -5680 182) (-11 -6000 182) (148 -6000 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351243" + "plane" "(-11 -6000 182) (-11 -5680 182) (-11 -5680 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351242" + "plane" "(152 -5680 182) (152 -5995 182) (152 -5995 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351241" + "plane" "(-11 -5680 182) (152 -5680 182) (152 -5680 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351240" + "plane" "(148 -6000 182) (-11 -6000 182) (-11 -6000 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351239" + "plane" "(152 -5995 182) (148 -6000 182) (148 -6000 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0.624695 0.780869 0 193.07] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 138 179" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5063963" + side + { + "id" "350694" + "plane" "(-2600 -6112 1016) (-2600 -5600 1016) (-1536 -5600 1016)" + "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" "350695" + "plane" "(-2600 -5600 368) (-2600 -6112 368) (-1536 -6112 368)" + "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" "350696" + "plane" "(-2600 -6112 368) (-2600 -5600 368) (-2600 -5600 1016)" + "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" "350697" + "plane" "(-1536 -5600 368) (-1536 -6112 368) (-1536 -6112 1016)" + "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" "350698" + "plane" "(-2600 -5600 368) (-1536 -5600 368) (-1536 -5600 1016)" + "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" "350699" + "plane" "(-1536 -6112 368) (-2600 -6112 368) (-2600 -6112 1016)" + "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" "0 229 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5064057" + side + { + "id" "350700" + "plane" "(2048 -1280 552) (3552 -1280 552) (3552 -1628 552)" + "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" "350701" + "plane" "(2048 -1628 328) (3552 -1628 328) (3552 -1280 328)" + "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" "350702" + "plane" "(2048 -1280 552) (2048 -1628 552) (2048 -1628 328)" + "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" "350703" + "plane" "(3552 -1280 328) (3552 -1628 328) (3552 -1628 552)" + "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" "350704" + "plane" "(3552 -1280 552) (2048 -1280 552) (2048 -1280 328)" + "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" "350705" + "plane" "(3552 -1628 328) (2048 -1628 328) (2048 -1628 552)" + "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" "0 167 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5064058" + side + { + "id" "350706" + "plane" "(2048 0 560) (2912 0 560) (2912 -1280 560)" + "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" "350707" + "plane" "(2048 -1280 328) (2912 -1280 328) (2912 0 328)" + "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" "350708" + "plane" "(2048 0 560) (2048 -1280 560) (2048 -1280 328)" + "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" "350709" + "plane" "(2912 0 328) (2912 -1280 328) (2912 -1280 560)" + "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" "350710" + "plane" "(2912 0 560) (2048 0 560) (2048 0 328)" + "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" "350711" + "plane" "(2912 -1280 328) (2048 -1280 328) (2048 -1280 560)" + "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" "0 117 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5064114" + side + { + "id" "350730" + "plane" "(-2176 -3344 1016) (-2008 -3344 1016) (-2008 -5600 1016)" + "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" "350731" + "plane" "(-2176 -5600 560) (-2008 -5600 560) (-2008 -3344 560)" + "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" "350732" + "plane" "(-2176 -3344 1016) (-2176 -5600 1016) (-2176 -5600 560)" + "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" "350733" + "plane" "(-2008 -3344 560) (-2008 -5600 560) (-2008 -5600 1016)" + "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" "350734" + "plane" "(-2008 -3344 1016) (-2176 -3344 1016) (-2176 -3344 560)" + "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" "350735" + "plane" "(-2008 -5600 560) (-2176 -5600 560) (-2176 -5600 1016)" + "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" "0 117 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5047659" + side + { + "id" "350327" + "plane" "(8799 8194 5162) (8800 8194 5162) (8800 8029 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350328" + "plane" "(8799 8029 5152) (8800 8029 5152) (8800 8194 5152)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350329" + "plane" "(8799 8194 5162) (8799 8029 5162) (8799 8029 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350330" + "plane" "(8800 8194 5152) (8800 8029 5152) (8800 8029 5162)" + "material" "BRICK/HR_BRICK/BRICK_B" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350331" + "plane" "(8800 8194 5162) (8799 8194 5162) (8799 8194 5152)" + "material" "BRICK/HR_BRICK/BRICK_B" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350332" + "plane" "(8800 8029 5152) (8799 8029 5152) (8799 8029 5162)" + "material" "BRICK/HR_BRICK/BRICK_B" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5047715" + side + { + "id" "350333" + "plane" "(8285 10697 5150) (9769 10697 5150) (9769 9583 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8285 9583 5150]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 -1 0 0 0 0 0 0" + "row1" "0 0 0 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 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" + "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" + } + distances + { + "row0" "0 5 5 5 0 10 5 0 0" + "row1" "0 10 25 5 5 15 10 0 0" + "row2" "0 0 10 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" + } + 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" "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" "350334" + "plane" "(8285 9583 5149) (9769 9583 5149) (9769 10697 5149)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350335" + "plane" "(8285 10697 5150) (8285 9583 5150) (8285 9583 5149)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350336" + "plane" "(9769 10697 5149) (9769 9583 5149) (9769 9583 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350337" + "plane" "(9769 10697 5150) (8285 10697 5150) (8285 10697 5149)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350338" + "plane" "(9769 9583 5149) (8285 9583 5149) (8285 9583 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 243 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5047851" + side + { + "id" "350339" + "plane" "(9386 8901 5162) (9736 8901 5162) (9736 8900 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350340" + "plane" "(9386 8900 5152) (9736 8900 5152) (9736 8901 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350341" + "plane" "(9386 8901 5162) (9386 8900 5162) (9386 8900 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350342" + "plane" "(9736 8901 5152) (9736 8900 5152) (9736 8900 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350343" + "plane" "(9736 8901 5162) (9386 8901 5162) (9386 8901 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350344" + "plane" "(9736 8900 5152) (9386 8900 5152) (9386 8900 5162)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[-1 0 0 461.75] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 127 204" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5047900" + side + { + "id" "350345" + "plane" "(8194 8901 5162) (8504 8901 5162) (8504 8900 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350346" + "plane" "(8194 8900 5152) (8504 8900 5152) (8504 8901 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350347" + "plane" "(8194 8901 5162) (8194 8900 5162) (8194 8900 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350348" + "plane" "(8504 8901 5152) (8504 8900 5152) (8504 8900 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350349" + "plane" "(8504 8901 5162) (8194 8901 5162) (8194 8901 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350350" + "plane" "(8504 8900 5152) (8194 8900 5152) (8194 8900 5162)" + "material" "BRICK/HR_BRICK/BRICK_B" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5047956" + side + { + "id" "350351" + "plane" "(-27 -2245 152) (-4 -2245 152) (-4 -2440 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350352" + "plane" "(-27 -2440 -24) (-4 -2440 -24) (-4 -2245 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350353" + "plane" "(-27 -2245 152) (-27 -2440 152) (-27 -2440 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350354" + "plane" "(-4 -2245 -24) (-4 -2440 -24) (-4 -2440 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350355" + "plane" "(-4 -2245 152) (-27 -2245 152) (-27 -2245 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350356" + "plane" "(-4 -2440 -24) (-27 -2440 -24) (-27 -2440 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 170 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5048028" + side + { + "id" "350455" + "plane" "(-2608 -3824 576) (-2608 -2912 576) (-2600 -2912 576)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350456" + "plane" "(-2608 -2912 48) (-2608 -3824 48) (-2600 -3824 48)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350457" + "plane" "(-2608 -3824 48) (-2608 -2912 48) (-2608 -2912 576)" + "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" "350458" + "plane" "(-2600 -2912 48) (-2600 -3824 48) (-2600 -3824 576)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350459" + "plane" "(-2608 -2912 48) (-2600 -2912 48) (-2600 -2912 576)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350460" + "plane" "(-2600 -3824 48) (-2608 -3824 48) (-2608 -3824 576)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 176 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5048263" + side + { + "id" "350574" + "plane" "(1197 -4784 560) (1229 -4784 560) (1229 -5096 560)" + "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" "350575" + "plane" "(1197 -5096 400) (1229 -5096 400) (1229 -4784 400)" + "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" "350576" + "plane" "(1197 -4784 560) (1197 -5096 560) (1197 -5096 400)" + "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" "350577" + "plane" "(1229 -4784 400) (1229 -5096 400) (1229 -5096 560)" + "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" "350578" + "plane" "(1229 -4784 560) (1197 -4784 560) (1197 -4784 400)" + "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" "350579" + "plane" "(1229 -5096 400) (1197 -5096 400) (1197 -5096 560)" + "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" "0 192 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5048264" + side + { + "id" "350580" + "plane" "(2048 -5712 560) (2224 -5712 560) (2224 -5872 560)" + "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" "350581" + "plane" "(2048 -5872 400) (2224 -5872 400) (2224 -5712 400)" + "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" "350582" + "plane" "(2048 -5712 560) (2048 -5872 560) (2048 -5872 400)" + "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" "350583" + "plane" "(2224 -5712 400) (2224 -5872 400) (2224 -5872 560)" + "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" "350584" + "plane" "(2224 -5712 560) (2048 -5712 560) (2048 -5712 400)" + "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" "350585" + "plane" "(2224 -5872 400) (2048 -5872 400) (2048 -5872 560)" + "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" "0 122 187" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5048265" + side + { + "id" "350586" + "plane" "(-2776 -5632 560) (-2776 -3872 560) (-2600 -3872 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350587" + "plane" "(-2776 -3872 352) (-2776 -5632 352) (-2600 -5632 352)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350588" + "plane" "(-2776 -5632 352) (-2776 -3872 352) (-2776 -3872 560)" + "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" "350589" + "plane" "(-2600 -3872 352) (-2600 -5632 352) (-2600 -5632 560)" + "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" "350590" + "plane" "(-2776 -3872 352) (-2600 -3872 352) (-2600 -3872 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350591" + "plane" "(-2600 -5632 352) (-2776 -5632 352) (-2776 -5632 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 164 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5016748" + side + { + "id" "350065" + "plane" "(968 -4638 -32) (985 -4638 -32) (985 -4662 -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" "350066" + "plane" "(968 -4662 -78) (985 -4662 -78) (985 -4638 -78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350067" + "plane" "(968 -4638 -32) (968 -4662 -32) (968 -4662 -78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350068" + "plane" "(985 -4638 -78) (985 -4662 -78) (985 -4662 -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" "350069" + "plane" "(985 -4638 -32) (968 -4638 -32) (968 -4638 -78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350070" + "plane" "(985 -4662 -78) (968 -4662 -78) (968 -4662 -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 117 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4985965" + side + { + "id" "350064" + "plane" "(2109 -5496 89) (2109 -5438 89) (2167 -5438 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350063" + "plane" "(2109 -5438 48) (2109 -5496 48) (2167 -5496 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350062" + "plane" "(2109 -5496 48) (2109 -5438 48) (2109 -5438 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350061" + "plane" "(2167 -5438 48) (2167 -5496 48) (2167 -5496 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350060" + "plane" "(2109 -5438 48) (2167 -5438 48) (2167 -5438 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350059" + "plane" "(2167 -5496 48) (2109 -5496 48) (2109 -5496 89)" + "material" "TOOLS/TOOLSCLIP" + "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 175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4955214" + side + { + "id" "349833" + "plane" "(-20 -5238 202.875) (-20 -5225 202.875) (165 -5225 202.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349834" + "plane" "(-20 -5225 -0.125) (-20 -5238 -0.125) (165 -5238 -0.125)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349835" + "plane" "(-20 -5238 -0.125) (-20 -5225 -0.125) (-20 -5225 202.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349836" + "plane" "(165 -5225 -0.125) (165 -5238 -0.125) (165 -5238 202.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349837" + "plane" "(-20 -5225 -0.125) (165 -5225 -0.125) (165 -5225 202.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349838" + "plane" "(165 -5238 -0.125) (-20 -5238 -0.125) (-20 -5238 202.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 215 184" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4939819" + side + { + "id" "349809" + "plane" "(-771 -3504 279) (-766 -3491 279) (-587 -3491 279)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349810" + "plane" "(-766 -3491 12.5997) (-771 -3504 12.5997) (-581 -3504 12.5997)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349811" + "plane" "(-771 -3504 12.5984) (-766 -3491 12.5984) (-766 -3491 278.997)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349812" + "plane" "(-587 -3491 12.5982) (-581 -3504 12.5982) (-581 -3504 278.997)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349813" + "plane" "(-766 -3491 12.5983) (-587 -3491 12.5983) (-587 -3491 278.997)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349814" + "plane" "(-581 -3504 12.5983) (-771 -3504 12.5983) (-771 -3504 278.997)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 115" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4908623" + side + { + "id" "349574" + "plane" "(1461 -2488 400) (1487 -2433 400) (1520 -2433 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349573" + "plane" "(1461 -2552 -40) (1520 -2552 -40) (1520 -2433 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349572" + "plane" "(1461 -2488 -40) (1461 -2488 400) (1461 -2552 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349571" + "plane" "(1520 -2552 -40) (1520 -2552 400) (1520 -2433 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349570" + "plane" "(1520 -2433 -40) (1520 -2433 400) (1487 -2433 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349569" + "plane" "(1461 -2552 -40) (1461 -2552 400) (1520 -2552 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349568" + "plane" "(1487 -2433 -40) (1487 -2433 400) (1461 -2488 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 224 165" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4908653" + side + { + "id" "349575" + "plane" "(1520 -2272 400) (1520 -2433 400) (1487 -2433 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349576" + "plane" "(1487 -2433 -40) (1520 -2433 -40) (1520 -2272 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349577" + "plane" "(1520 -2272 -40) (1520 -2272 400) (1487 -2433 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349578" + "plane" "(1520 -2433 -40) (1520 -2433 400) (1520 -2272 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349580" + "plane" "(1487 -2433 -40) (1487 -2433 400) (1520 -2433 400)" + "material" "TOOLS/TOOLSCLIP" + "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 241" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4908774" + side + { + "id" "349598" + "plane" "(-576 -3808 -48) (-576 -3744 -48) (-560 -3744 -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" "349597" + "plane" "(-576 -3744 -48) (-576 -3808 -48) (-576 -3808 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349596" + "plane" "(-560 -3792 -56) (-560 -3792 -48) (-560 -3744 -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" "349595" + "plane" "(-576 -3808 -56) (-576 -3808 -48) (-560 -3792 -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" "349594" + "plane" "(-560 -3744 -56) (-560 -3744 -48) (-576 -3744 -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" "349593" + "plane" "(-576 -3744 -56) (-576 -3808 -56) (-560 -3792 -56)" + "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 146 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4908775" + side + { + "id" "349604" + "plane" "(-576 -3808 -56) (-576 -3808 -144) (-576 -3744 -144)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 -1 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349603" + "plane" "(-560 -3744 -144) (-560 -3792 -144) (-560 -3792 -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" "349602" + "plane" "(-576 -3808 -144) (-576 -3808 -56) (-560 -3792 -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" "349601" + "plane" "(-576 -3744 -144) (-576 -3808 -144) (-560 -3792 -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" "349600" + "plane" "(-560 -3744 -144) (-560 -3744 -56) (-576 -3744 -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" "349599" + "plane" "(-576 -3808 -56) (-576 -3744 -56) (-560 -3744 -56)" + "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 146 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4908798" + side + { + "id" "349628" + "plane" "(-576 -3744 -224) (-576 -3808 -224) (-560 -3792 -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" "349627" + "plane" "(-576 -3808 -216) (-576 -3808 -224) (-576 -3744 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349626" + "plane" "(-560 -3744 -224) (-560 -3792 -224) (-560 -3792 -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" "349625" + "plane" "(-560 -3792 -216) (-560 -3792 -224) (-576 -3808 -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" "349624" + "plane" "(-576 -3744 -216) (-576 -3744 -224) (-560 -3744 -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" "349623" + "plane" "(-576 -3808 -216) (-576 -3744 -216) (-560 -3744 -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" + } + editor + { + "color" "0 146 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892768" + side + { + "id" "349165" + "plane" "(1792 -1644 486) (1792 -1628 486) (1824 -1628 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349164" + "plane" "(1792 -1628 481) (1792 -1628 486) (1792 -1644 486)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -398] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349163" + "plane" "(1824 -1644 481) (1824 -1644 486) (1824 -1628 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349162" + "plane" "(1824 -1628 481) (1824 -1628 486) (1792 -1628 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349161" + "plane" "(1792 -1644 481) (1792 -1644 486) (1824 -1644 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349160" + "plane" "(1792 -1628 481) (1792 -1644 481) (1824 -1644 481)" + "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 110 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892769" + side + { + "id" "349171" + "plane" "(1792 -1628 358) (1792 -1644 358) (1824 -1644 358)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 208] 0.125" + "vaxis" "[1 0 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349170" + "plane" "(1792 -1644 358) (1792 -1628 358) (1792 -1628 481)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349169" + "plane" "(1824 -1628 358) (1824 -1644 358) (1824 -1644 481)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349168" + "plane" "(1792 -1628 358) (1824 -1628 358) (1824 -1628 481)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349167" + "plane" "(1824 -1644 358) (1792 -1644 358) (1792 -1644 481)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349166" + "plane" "(1792 -1644 481) (1792 -1628 481) (1824 -1628 481)" + "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 110 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892770" + side + { + "id" "349177" + "plane" "(1792 -2456 486) (1792 -1644 486) (1840 -1644 486)" + "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" "349176" + "plane" "(1792 -1644 481) (1792 -1644 486) (1792 -2456 486)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -398] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349175" + "plane" "(1840 -2456 486) (1840 -1644 486) (1840 -1644 481)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349174" + "plane" "(1840 -1644 481) (1840 -1644 486) (1792 -1644 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349173" + "plane" "(1792 -2456 481) (1792 -2456 486) (1840 -2456 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349172" + "plane" "(1792 -1644 481) (1792 -2456 481) (1840 -2456 481)" + "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 165 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892771" + side + { + "id" "349183" + "plane" "(1792 -2456 358) (1792 -1644 358) (1792 -1644 481)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349182" + "plane" "(1840 -1644 481) (1840 -1644 358) (1840 -2456 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349181" + "plane" "(1840 -1644 358) (1840 -1644 481) (1792 -1644 481)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349180" + "plane" "(1792 -1644 358) (1792 -2456 358) (1840 -2456 358)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 511.998] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349179" + "plane" "(1792 -2456 358) (1792 -2456 481) (1840 -2456 481)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349178" + "plane" "(1792 -2456 481) (1792 -1644 481) (1840 -1644 481)" + "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 165 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892778" + side + { + "id" "349189" + "plane" "(1792 -2672 486) (1792 -2456 486) (1808 -2456 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349188" + "plane" "(1792 -2456 486) (1792 -2672 486) (1792 -2672 481)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -398] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349187" + "plane" "(1808 -2672 481) (1808 -2672 486) (1808 -2456 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349186" + "plane" "(1792 -2672 481) (1792 -2672 486) (1808 -2672 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[-1 0 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349185" + "plane" "(1808 -2456 481) (1808 -2456 486) (1792 -2456 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349184" + "plane" "(1792 -2456 481) (1792 -2672 481) (1808 -2672 481)" + "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 165 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892779" + side + { + "id" "349195" + "plane" "(1792 -2672 481) (1792 -2672 358) (1792 -2456 358)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349194" + "plane" "(1808 -2456 358) (1808 -2672 358) (1808 -2672 481)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349193" + "plane" "(1792 -2672 358) (1792 -2672 481) (1808 -2672 481)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[-1 0 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349192" + "plane" "(1792 -2456 358) (1792 -2672 358) (1808 -2672 358)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 511.998] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349191" + "plane" "(1808 -2456 358) (1808 -2456 481) (1792 -2456 481)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349190" + "plane" "(1792 -2672 481) (1792 -2456 481) (1808 -2456 481)" + "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 165 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892785" + side + { + "id" "349201" + "plane" "(1632 -3192 536) (1632 -3192 531) (1632 -2672 531)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -13.9961] 0.125" + "vaxis" "[0 0 1 -17.0015] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349200" + "plane" "(2192 -2672 536) (2192 -2672 531) (2192 -3192 531)" + "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" "349199" + "plane" "(1632 -2672 536) (1632 -2672 531) (2192 -2672 531)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -398] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349198" + "plane" "(2192 -3192 536) (2192 -3192 531) (1632 -3192 531)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -398] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349197" + "plane" "(1632 -3192 536) (1632 -2672 536) (2192 -2672 536)" + "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" "349196" + "plane" "(1632 -2672 531) (1632 -3192 531) (2192 -3192 531)" + "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" "0 145 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892786" + side + { + "id" "349207" + "plane" "(1632 -2672 368) (1632 -3192 368) (2192 -3192 368)" + "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" "349206" + "plane" "(1632 -3192 531) (1632 -3192 368) (1632 -2672 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349205" + "plane" "(2192 -2672 531) (2192 -2672 368) (2192 -3192 368)" + "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" "349204" + "plane" "(1632 -2672 531) (1632 -2672 368) (2192 -2672 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[1 0 0 -896.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349203" + "plane" "(2192 -3192 531) (2192 -3192 368) (1632 -3192 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[-1 0 0 -960.997] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349202" + "plane" "(1632 -3192 531) (1632 -2672 531) (2192 -2672 531)" + "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" "0 145 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892793" + side + { + "id" "349213" + "plane" "(2192 -3728 536) (2192 -3728 531) (2192 -2672 531)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -206.003] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349212" + "plane" "(2416 -2672 536) (2416 -2672 531) (2416 -3728 531)" + "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" "349211" + "plane" "(2192 -2672 536) (2192 -2672 531) (2416 -2672 531)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349210" + "plane" "(2416 -3728 536) (2416 -3728 531) (2192 -3728 531)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 305.998] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349209" + "plane" "(2192 -3728 536) (2192 -2672 536) (2416 -2672 536)" + "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" "349208" + "plane" "(2192 -2672 531) (2192 -3728 531) (2416 -3728 531)" + "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" "0 155 188" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892794" + side + { + "id" "349219" + "plane" "(2192 -2672 368) (2192 -3728 368) (2416 -3728 368)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349218" + "plane" "(2192 -3728 531) (2192 -3728 368) (2192 -2672 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 208] 0.125" + "vaxis" "[0 0 -1 -961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349217" + "plane" "(2416 -2672 531) (2416 -2672 368) (2416 -3728 368)" + "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" "349216" + "plane" "(2192 -2672 531) (2192 -2672 368) (2416 -2672 368)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349215" + "plane" "(2416 -3728 531) (2416 -3728 368) (2192 -3728 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 208] 0.125" + "vaxis" "[0 0 -1 -961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349214" + "plane" "(2192 -3728 531) (2192 -2672 531) (2416 -2672 531)" + "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" "0 155 188" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892804" + side + { + "id" "349225" + "plane" "(2416 -3728 536) (2416 -3728 531) (2416 -3712 531)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 -1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349224" + "plane" "(2808 -3712 536) (2808 -3712 531) (2808 -3728 531)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349223" + "plane" "(2416 -3712 536) (2416 -3712 531) (2808 -3712 531)" + "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" "349222" + "plane" "(2808 -3728 536) (2808 -3728 531) (2416 -3728 531)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349221" + "plane" "(2416 -3728 536) (2416 -3712 536) (2808 -3712 536)" + "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" "349220" + "plane" "(2416 -3712 531) (2416 -3728 531) (2808 -3728 531)" + "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" "0 235 164" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892805" + side + { + "id" "349231" + "plane" "(2416 -3712 368) (2416 -3728 368) (2800 -3728 368)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349230" + "plane" "(2416 -3728 531) (2416 -3728 368) (2416 -3712 368)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 -1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349229" + "plane" "(2800 -3712 531) (2800 -3712 368) (2800 -3728 368)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349228" + "plane" "(2416 -3712 531) (2416 -3712 368) (2800 -3712 368)" + "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" "349227" + "plane" "(2800 -3728 531) (2800 -3728 368) (2416 -3728 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 208] 0.125" + "vaxis" "[0 0 -1 -961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349226" + "plane" "(2416 -3728 531) (2416 -3712 531) (2800 -3712 531)" + "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" "0 235 164" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892811" + side + { + "id" "349237" + "plane" "(2792 -4248 536) (2792 -3792 536) (2808 -3792 536)" + "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" "349236" + "plane" "(2792 -3792 531) (2792 -3792 536) (2792 -4248 536)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349235" + "plane" "(2808 -4248 531) (2808 -4248 536) (2808 -3792 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" + } + side + { + "id" "349234" + "plane" "(2808 -3792 531) (2808 -3792 536) (2792 -3792 536)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 128] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349233" + "plane" "(2792 -4248 531) (2792 -4248 536) (2808 -4248 536)" + "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" "349232" + "plane" "(2792 -3792 531) (2792 -4248 531) (2808 -4248 531)" + "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 227 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892812" + side + { + "id" "349243" + "plane" "(2792 -4248 531) (2792 -4248 368) (2792 -3792 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349242" + "plane" "(2808 -3792 531) (2808 -3792 368) (2808 -4248 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" "349241" + "plane" "(2792 -3792 531) (2792 -3792 368) (2808 -3792 368)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 128] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349240" + "plane" "(2808 -4248 531) (2808 -4248 368) (2792 -4248 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" "349239" + "plane" "(2792 -3792 368) (2792 -4248 368) (2808 -4248 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" "349238" + "plane" "(2792 -4248 531) (2792 -3792 531) (2808 -3792 531)" + "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 227 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892813" + side + { + "id" "349249" + "plane" "(2792 -3792 536) (2792 -3728 536) (2808 -3728 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349248" + "plane" "(2792 -3728 531) (2792 -3728 536) (2792 -3792 536)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349247" + "plane" "(2808 -3792 531) (2808 -3792 536) (2808 -3728 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" + } + side + { + "id" "349246" + "plane" "(2808 -3728 531) (2808 -3728 536) (2792 -3728 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349245" + "plane" "(2792 -3792 531) (2792 -3792 536) (2808 -3792 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349244" + "plane" "(2792 -3728 531) (2792 -3792 531) (2808 -3792 531)" + "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 225 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892814" + side + { + "id" "349255" + "plane" "(2792 -3728 368) (2792 -3792 368) (2800 -3792 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" "349254" + "plane" "(2792 -3792 531) (2792 -3792 368) (2792 -3728 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349253" + "plane" "(2800 -3728 531) (2800 -3728 368) (2800 -3792 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" "349252" + "plane" "(2792 -3728 531) (2792 -3728 368) (2800 -3728 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" "349251" + "plane" "(2800 -3792 531) (2800 -3792 368) (2792 -3792 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" "349250" + "plane" "(2792 -3792 531) (2792 -3728 531) (2800 -3728 531)" + "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 225 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892834" + side + { + "id" "349261" + "plane" "(2112 -3792 382) (2112 -3456 382) (2128 -3456 382)" + "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" "349260" + "plane" "(2112 -3456 377) (2112 -3456 382) (2112 -3792 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349259" + "plane" "(2128 -3792 377) (2128 -3792 382) (2128 -3456 382)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349258" + "plane" "(2128 -3456 377) (2128 -3456 382) (2112 -3456 382)" + "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" "349257" + "plane" "(2112 -3792 377) (2112 -3792 382) (2128 -3792 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349256" + "plane" "(2112 -3456 377) (2112 -3792 377) (2128 -3792 377)" + "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 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892835" + side + { + "id" "349267" + "plane" "(2112 -3456 358) (2112 -3456 377) (2112 -3792 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -268] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349266" + "plane" "(2128 -3792 358) (2128 -3792 377) (2128 -3456 377)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349265" + "plane" "(2128 -3456 358) (2128 -3456 377) (2112 -3456 377)" + "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" "349264" + "plane" "(2112 -3792 358) (2112 -3792 377) (2128 -3792 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -268] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349263" + "plane" "(2112 -3456 358) (2112 -3792 358) (2128 -3792 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349262" + "plane" "(2112 -3792 377) (2112 -3456 377) (2128 -3456 377)" + "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 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892836" + side + { + "id" "349273" + "plane" "(2128 -3792 382) (2128 -3792 377) (2128 -3776 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349272" + "plane" "(2128 -3776 382) (2128 -3776 377) (2240 -3776 377)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[-1 0 0 -319.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349271" + "plane" "(2128 -3792 377) (2128 -3792 382) (2240 -3792 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349270" + "plane" "(2240 -3792 382) (2128 -3792 382) (2128 -3776 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349269" + "plane" "(2240 -3776 382) (2240 -3776 377) (2240 -3792 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349268" + "plane" "(2240 -3776 377) (2128 -3776 377) (2128 -3792 377)" + "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 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892837" + side + { + "id" "349279" + "plane" "(2128 -3792 377) (2128 -3792 358) (2128 -3776 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349278" + "plane" "(2128 -3776 377) (2128 -3776 358) (2240 -3776 358)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[-1 0 0 -319.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349277" + "plane" "(2128 -3792 358) (2128 -3792 377) (2240 -3792 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -268] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349276" + "plane" "(2240 -3776 377) (2240 -3776 358) (2240 -3792 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349275" + "plane" "(2240 -3776 358) (2128 -3776 358) (2128 -3792 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349274" + "plane" "(2240 -3792 377) (2128 -3792 377) (2128 -3776 377)" + "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 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892849" + side + { + "id" "349285" + "plane" "(2056 -3200 382) (2128 -3200 382) (2128 -3456 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349284" + "plane" "(2128 -3456 377) (2128 -3456 382) (2128 -3200 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349283" + "plane" "(2128 -3200 377) (2128 -3200 382) (2056 -3200 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349282" + "plane" "(2056 -3456 377) (2056 -3456 382) (2128 -3456 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349281" + "plane" "(2056 -3200 377) (2056 -3200 382) (2056 -3456 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349280" + "plane" "(2056 -3456 377) (2128 -3456 377) (2128 -3200 377)" + "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 253 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892850" + side + { + "id" "349291" + "plane" "(2128 -3456 358) (2128 -3456 377) (2128 -3200 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349290" + "plane" "(2128 -3200 358) (2128 -3200 377) (2056 -3200 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349289" + "plane" "(2056 -3456 358) (2056 -3456 377) (2128 -3456 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -267.576] 0.125" + "vaxis" "[0 0 -1 64.2426] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349288" + "plane" "(2056 -3200 358) (2056 -3200 377) (2056 -3456 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349287" + "plane" "(2056 -3456 358) (2128 -3456 358) (2128 -3200 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349286" + "plane" "(2056 -3200 377) (2128 -3200 377) (2128 -3456 377)" + "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 253 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892868" + side + { + "id" "349319" + "plane" "(2792 -3776 382) (2792 -3776 377) (2792 -3792 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.799127 0.60116 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349318" + "plane" "(2792 -3776 377) (2792 -3776 382) (2240 -3776 382)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[-1 0 0 -319.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349317" + "plane" "(2792 -3792 382) (2792 -3792 377) (2240 -3792 377)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349316" + "plane" "(2240 -3776 382) (2792 -3776 382) (2792 -3792 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349315" + "plane" "(2240 -3792 382) (2240 -3792 377) (2240 -3776 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349314" + "plane" "(2240 -3792 377) (2792 -3792 377) (2792 -3776 377)" + "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 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892869" + side + { + "id" "349325" + "plane" "(2808 -3776 377) (2808 -3776 358) (2808 -3792 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.80727 0.59018 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349324" + "plane" "(2240 -3776 377) (2240 -3776 358) (2808 -3776 358)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[-1 0 0 -319.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349323" + "plane" "(2808 -3792 377) (2808 -3792 358) (2240 -3792 358)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -268] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349322" + "plane" "(2240 -3792 377) (2240 -3792 358) (2240 -3776 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349321" + "plane" "(2240 -3792 358) (2808 -3792 358) (2808 -3776 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349320" + "plane" "(2240 -3776 377) (2808 -3776 377) (2808 -3792 377)" + "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 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814497" + side + { + "id" "348715" + "plane" "(-592 -4056 240) (-592 -4728 240) (352 -4728 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" "348714" + "plane" "(352 -4728 240) (-592 -4728 240) (-592 -4728 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348713" + "plane" "(352 -4728 440) (-592 -4728 440) (-592 -4056 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" "348712" + "plane" "(-592 -4728 440) (-592 -4728 240) (-592 -4056 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" "348711" + "plane" "(-592 -4056 240) (352 -4056 240) (352 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348710" + "plane" "(352 -4056 240) (352 -4728 240) (352 -4728 440)" + "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 169 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814499" + side + { + "id" "348727" + "plane" "(352 -4728 448) (-598 -4728 448) (-598 -4056 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348726" + "plane" "(-598 -4728 448) (352 -4728 448) (352 -4728 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[1 0 0 -10] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348725" + "plane" "(-598 -4056 440) (-598 -4728 440) (352 -4728 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" "348724" + "plane" "(-598 -4056 448) (-598 -4728 448) (-598 -4728 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348723" + "plane" "(-598 -4056 440) (352 -4056 440) (352 -4056 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" + } + side + { + "id" "348722" + "plane" "(352 -4056 440) (352 -4728 440) (352 -4728 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" + } + editor + { + "color" "0 169 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814661" + side + { + "id" "348865" + "plane" "(365 -4056 360) (366 -4056 360) (366 -4368 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348864" + "plane" "(365 -4368 240) (366 -4368 240) (366 -4056 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" "348863" + "plane" "(365 -4056 360) (365 -4368 360) (365 -4368 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" "348862" + "plane" "(366 -4056 240) (366 -4368 240) (366 -4368 360)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 61] 4.875" + "vaxis" "[0 0 -1 0] 1.875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348861" + "plane" "(366 -4056 360) (365 -4056 360) (365 -4056 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" "348860" + "plane" "(366 -4368 240) (365 -4368 240) (365 -4368 360)" + "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 126 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814873" + side + { + "id" "348876" + "plane" "(-1018 -4483 240) (-1018 -4456 240) (-992 -4456 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348875" + "plane" "(-1018 -4456 0) (-1018 -4483 0) (-992 -4456 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348874" + "plane" "(-1018 -4483 -0) (-1018 -4456 -0) (-1018 -4456 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348873" + "plane" "(-1018 -4456 -0) (-992 -4456 -0) (-992 -4456 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348872" + "plane" "(-992 -4456 -0) (-1018 -4483 -0) (-1018 -4483 240)" + "material" "TOOLS/TOOLSCLIP" + "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 210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4815157" + side + { + "id" "348921" + "plane" "(1201 -3424 240) (1263.66 -3396 240) (1277 -3396 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348920" + "plane" "(1201 -3424 16) (1277 -3424 16) (1277 -3396 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348919" + "plane" "(1277 -3396 16) (1277 -3424 16) (1277 -3424 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348918" + "plane" "(1263.67 -3396 16) (1277 -3396 16) (1277 -3396 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348917" + "plane" "(1277 -3424 16) (1201 -3424 16) (1201 -3424 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348916" + "plane" "(1201 -3424 16) (1263.67 -3396 16) (1263.66 -3396 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 244" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764635" + side + { + "id" "346990" + "plane" "(160 -5900 264) (1056 -5900 264) (1056 -5916 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346991" + "plane" "(160 -5916 160) (1056 -5916 160) (1056 -5900 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346992" + "plane" "(160 -5900 264) (160 -5916 264) (160 -5916 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346993" + "plane" "(1056 -5900 160) (1056 -5916 160) (1056 -5916 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346994" + "plane" "(1056 -5900 264) (160 -5900 264) (160 -5900 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346995" + "plane" "(1056 -5916 160) (160 -5916 160) (160 -5916 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 185 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764636" + side + { + "id" "346996" + "plane" "(360 -5359 264) (624 -5359 264) (624 -5536 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346997" + "plane" "(360 -5536 176) (624 -5536 176) (624 -5359 176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346998" + "plane" "(360 -5359 264) (360 -5536 264) (360 -5536 176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346999" + "plane" "(624 -5359 176) (624 -5536 176) (624 -5536 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347000" + "plane" "(624 -5359 264) (360 -5359 264) (360 -5359 176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347001" + "plane" "(624 -5536 176) (360 -5536 176) (360 -5536 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764666" + side + { + "id" "347007" + "plane" "(784 -3424 32) (888 -3424 32) (888 -3424 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347006" + "plane" "(888 -3440 156) (888 -3440 32) (784 -3440 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" "347005" + "plane" "(888 -3440 32) (888 -3440 156) (888 -3424 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -447.998] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347004" + "plane" "(888 -3424 32) (784 -3424 32) (784 -3440 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" "347003" + "plane" "(784 -3424 32) (784 -3424 156) (784 -3440 156)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -320] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347002" + "plane" "(888 -3440 156) (784 -3440 156) (784 -3424 156)" + "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 140 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764667" + side + { + "id" "347013" + "plane" "(888 -3440 224) (784 -3440 224) (784 -3424 224)" + "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" "347012" + "plane" "(888 -3424 156) (888 -3424 224) (784 -3424 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -405] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347011" + "plane" "(784 -3440 224) (888 -3440 224) (888 -3440 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347010" + "plane" "(888 -3440 156) (888 -3440 224) (888 -3424 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -212.998] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347009" + "plane" "(784 -3424 156) (784 -3424 224) (784 -3440 224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -320] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347008" + "plane" "(888 -3424 156) (784 -3424 156) (784 -3440 156)" + "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 140 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764677" + side + { + "id" "347019" + "plane" "(784 -3440 224) (336 -3440 224) (336 -3424 224)" + "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" "347018" + "plane" "(336 -3424 156) (336 -3424 224) (336 -3440 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" "347017" + "plane" "(784 -3424 156) (784 -3424 224) (336 -3424 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -405] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347016" + "plane" "(336 -3440 156) (336 -3440 224) (784 -3440 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" "347015" + "plane" "(784 -3440 156) (784 -3440 224) (784 -3424 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" "347014" + "plane" "(784 -3424 156) (336 -3424 156) (336 -3440 156)" + "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 140 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764678" + side + { + "id" "347025" + "plane" "(384 -3424 128) (384 -3424 156) (384 -3440 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347024" + "plane" "(784 -3424 128) (784 -3424 156) (384 -3424 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347023" + "plane" "(384 -3440 128) (384 -3440 156) (784 -3440 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347022" + "plane" "(784 -3440 128) (784 -3440 156) (784 -3424 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347021" + "plane" "(784 -3424 128) (384 -3424 128) (384 -3440 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 832] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347020" + "plane" "(784 -3440 156) (384 -3440 156) (384 -3424 156)" + "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 140 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764683" + side + { + "id" "347031" + "plane" "(336 -3424 224) (336 -3424 156) (336 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347030" + "plane" "(352 -3312 224) (352 -3312 156) (352 -3424 156)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -148.998] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347029" + "plane" "(336 -3312 224) (336 -3312 156) (352 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347028" + "plane" "(352 -3424 224) (352 -3424 156) (336 -3424 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347027" + "plane" "(336 -3424 224) (336 -3312 224) (352 -3312 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" "347026" + "plane" "(336 -3312 156) (336 -3424 156) (352 -3424 156)" + "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 111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764684" + side + { + "id" "347037" + "plane" "(320 -3424 156) (320 -3424 31) (320 -3312 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347036" + "plane" "(352 -3312 156) (352 -3312 31) (352 -3424 31)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347035" + "plane" "(320 -3312 156) (320 -3312 31) (352 -3312 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347034" + "plane" "(352 -3424 156) (352 -3424 31) (320 -3424 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347033" + "plane" "(320 -3312 31) (320 -3424 31) (352 -3424 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347032" + "plane" "(320 -3424 156) (320 -3312 156) (352 -3312 156)" + "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 111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764727" + side + { + "id" "347073" + "plane" "(-48 -3296 16) (-32 -3296 16) (-32 -3296 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347072" + "plane" "(-32 -3312 16) (-64 -3312 16) (-64 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347071" + "plane" "(-64 -3312 16) (-48 -3296 16) (-48 -3296 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347070" + "plane" "(-48 -3296 16) (-64 -3312 16) (-32 -3312 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" "347069" + "plane" "(-32 -3296 16) (-32 -3312 16) (-32 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347068" + "plane" "(-64 -3312 156) (-48 -3296 156) (-32 -3296 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 249" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764736" + side + { + "id" "347079" + "plane" "(-64 -3312 156) (-64 -3312 224) (-64 -3605 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 437.975] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347078" + "plane" "(-32 -3312 224) (-32 -3312 156) (-32 -3605 156)" + "material" "CEILING/HR_C/HR_CEILING_001_COLOR" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347077" + "plane" "(-64 -3312 224) (-64 -3312 156) (-32 -3312 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347076" + "plane" "(-64 -3605 224) (-64 -3312 224) (-32 -3312 224)" + "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" "347075" + "plane" "(-32 -3605 224) (-32 -3605 156) (-64 -3605 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347074" + "plane" "(-64 -3312 156) (-64 -3605 156) (-32 -3605 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764737" + side + { + "id" "347085" + "plane" "(-64 -3605 48) (-64 -3312 48) (-64 -3312 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347084" + "plane" "(-32 -3312 156) (-32 -3312 48) (-32 -3605 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347083" + "plane" "(-64 -3312 156) (-64 -3312 48) (-32 -3312 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" "347082" + "plane" "(-64 -3312 48) (-64 -3605 48) (-32 -3605 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" "347081" + "plane" "(-32 -3605 156) (-32 -3605 48) (-64 -3605 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347080" + "plane" "(-64 -3605 156) (-64 -3312 156) (-32 -3312 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764741" + side + { + "id" "347091" + "plane" "(-64 -3605 156) (-64 -3605 224) (-64 -3730 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 437.975] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347090" + "plane" "(-32 -3730 156) (-32 -3730 224) (-32 -3605 224)" + "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" "347089" + "plane" "(-64 -3730 224) (-64 -3605 224) (-32 -3605 224)" + "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" "347088" + "plane" "(-64 -3605 224) (-64 -3605 156) (-32 -3605 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347087" + "plane" "(-32 -3730 224) (-32 -3730 156) (-64 -3730 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347086" + "plane" "(-64 -3605 156) (-64 -3730 156) (-32 -3730 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764742" + side + { + "id" "347097" + "plane" "(-64 -3605 144) (-64 -3605 156) (-64 -3730 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347096" + "plane" "(-32 -3730 144) (-32 -3730 156) (-32 -3605 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347095" + "plane" "(-64 -3605 156) (-64 -3605 144) (-32 -3605 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347094" + "plane" "(-32 -3730 156) (-32 -3730 144) (-64 -3730 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347093" + "plane" "(-64 -3605 144) (-64 -3730 144) (-32 -3730 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347092" + "plane" "(-64 -3730 156) (-64 -3605 156) (-32 -3605 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764748" + side + { + "id" "347103" + "plane" "(-64 -3832 224) (-64 -3832 156) (-64 -3730 156)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 437.975] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347102" + "plane" "(-32 -3832 156) (-32 -3832 224) (-32 -3730 224)" + "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" "347101" + "plane" "(-32 -3832 224) (-32 -3832 156) (-64 -3832 156)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -10.0234] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347100" + "plane" "(-64 -3832 224) (-64 -3730 224) (-32 -3730 224)" + "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" "347099" + "plane" "(-64 -3730 224) (-64 -3730 156) (-32 -3730 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347098" + "plane" "(-64 -3730 156) (-64 -3832 156) (-32 -3832 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764749" + side + { + "id" "347109" + "plane" "(-64 -3832 156) (-64 -3832 48) (-64 -3730 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347108" + "plane" "(-32 -3730 48) (-32 -3832 48) (-32 -3832 156)" + "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" "347107" + "plane" "(-32 -3832 156) (-32 -3832 48) (-64 -3832 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347106" + "plane" "(-64 -3730 48) (-64 -3832 48) (-32 -3832 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" "347105" + "plane" "(-64 -3730 156) (-64 -3730 48) (-32 -3730 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347104" + "plane" "(-64 -3832 156) (-64 -3730 156) (-32 -3730 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764756" + side + { + "id" "347115" + "plane" "(808 -3776 224) (808 -3488 224) (888 -3488 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" "347114" + "plane" "(808 -3488 156) (808 -3488 224) (808 -3776 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" "347113" + "plane" "(888 -3776 156) (888 -3776 224) (888 -3488 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -213] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347112" + "plane" "(888 -3488 156) (888 -3488 224) (808 -3488 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -27.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347111" + "plane" "(808 -3776 156) (808 -3776 224) (888 -3776 224)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347110" + "plane" "(808 -3488 156) (808 -3776 156) (888 -3776 156)" + "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 146 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764757" + side + { + "id" "347121" + "plane" "(808 -3488 32) (808 -3488 156) (808 -3776 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347120" + "plane" "(888 -3776 32) (888 -3776 156) (888 -3488 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -447.996] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347119" + "plane" "(888 -3488 32) (888 -3488 156) (808 -3488 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -27.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347118" + "plane" "(808 -3776 32) (808 -3776 156) (888 -3776 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347117" + "plane" "(808 -3488 32) (808 -3776 32) (888 -3776 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" "347116" + "plane" "(808 -3776 156) (808 -3488 156) (888 -3488 156)" + "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 146 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764764" + side + { + "id" "347127" + "plane" "(808 -3488 224) (808 -3440 224) (888 -3440 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" "347126" + "plane" "(808 -3440 156) (808 -3440 224) (808 -3488 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" "347125" + "plane" "(888 -3488 156) (888 -3488 224) (888 -3440 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -213] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347124" + "plane" "(888 -3440 156) (888 -3440 224) (808 -3440 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" "347123" + "plane" "(808 -3488 156) (808 -3488 224) (888 -3488 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347122" + "plane" "(808 -3440 156) (808 -3488 156) (888 -3488 156)" + "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 124 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764765" + side + { + "id" "347133" + "plane" "(808 -3440 32) (808 -3440 156) (808 -3488 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347132" + "plane" "(888 -3488 32) (888 -3488 156) (888 -3440 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -447.998] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347131" + "plane" "(888 -3440 32) (888 -3440 156) (808 -3440 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347130" + "plane" "(808 -3488 32) (808 -3488 156) (888 -3488 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347129" + "plane" "(808 -3440 32) (808 -3488 32) (888 -3488 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" "347128" + "plane" "(808 -3488 156) (808 -3440 156) (888 -3440 156)" + "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 124 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764775" + side + { + "id" "347139" + "plane" "(384 -3816 224) (384 -3776 224) (888 -3776 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" "347138" + "plane" "(384 -3776 156) (384 -3776 224) (384 -3816 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" "347137" + "plane" "(888 -3816 156) (888 -3816 224) (888 -3776 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -213] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347136" + "plane" "(888 -3776 156) (888 -3776 224) (384 -3776 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" "347135" + "plane" "(384 -3816 156) (384 -3816 224) (888 -3816 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" "347134" + "plane" "(384 -3776 156) (384 -3816 156) (888 -3816 156)" + "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 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764776" + side + { + "id" "347145" + "plane" "(384 -3776 32) (384 -3776 156) (384 -3816 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347144" + "plane" "(888 -3816 32) (888 -3816 156) (888 -3776 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -447.996] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347143" + "plane" "(888 -3776 32) (888 -3776 156) (384 -3776 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347142" + "plane" "(384 -3816 32) (384 -3816 156) (888 -3816 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347141" + "plane" "(384 -3776 32) (384 -3816 32) (888 -3816 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" "347140" + "plane" "(384 -3816 156) (384 -3776 156) (888 -3776 156)" + "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 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764777" + side + { + "id" "347151" + "plane" "(776 -3816 224) (888 -3816 224) (888 -3832 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" "347150" + "plane" "(888 -3832 156) (888 -3832 224) (888 -3816 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -213] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347149" + "plane" "(888 -3816 156) (888 -3816 224) (776 -3816 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" "347148" + "plane" "(776 -3832 224) (888 -3832 224) (888 -3832 156)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -84.9922] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347147" + "plane" "(776 -3816 156) (776 -3816 224) (776 -3832 224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347146" + "plane" "(776 -3832 156) (888 -3832 156) (888 -3816 156)" + "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 130 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764778" + side + { + "id" "347157" + "plane" "(888 -3832 32) (888 -3832 156) (888 -3816 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -447.996] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347156" + "plane" "(776 -3816 32) (888 -3816 32) (888 -3816 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347155" + "plane" "(888 -3832 156) (888 -3832 32) (776 -3832 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -63.9922] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347154" + "plane" "(776 -3832 32) (888 -3832 32) (888 -3816 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" "347153" + "plane" "(776 -3816 32) (776 -3816 156) (776 -3832 156)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347152" + "plane" "(776 -3816 156) (888 -3816 156) (888 -3832 156)" + "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 130 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764786" + side + { + "id" "347163" + "plane" "(776 -3832 224) (528 -3832 224) (528 -3816 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" "347162" + "plane" "(776 -3816 156) (776 -3816 224) (528 -3816 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" "347161" + "plane" "(528 -3832 156) (528 -3832 224) (776 -3832 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -84.9922] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347160" + "plane" "(776 -3832 156) (776 -3832 224) (776 -3816 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" "347159" + "plane" "(528 -3816 156) (528 -3816 224) (528 -3832 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" "347158" + "plane" "(776 -3816 156) (528 -3816 156) (528 -3832 156)" + "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 130 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764787" + side + { + "id" "347169" + "plane" "(528 -3816 128) (776 -3816 128) (776 -3816 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347168" + "plane" "(776 -3832 128) (528 -3832 128) (528 -3832 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -63.9922] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347167" + "plane" "(776 -3816 128) (528 -3816 128) (528 -3832 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 -512] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347166" + "plane" "(776 -3832 128) (776 -3832 156) (776 -3816 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347165" + "plane" "(528 -3816 128) (528 -3816 156) (528 -3832 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347164" + "plane" "(776 -3832 156) (528 -3832 156) (528 -3816 156)" + "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 130 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764801" + side + { + "id" "347175" + "plane" "(528 -3832 224) (-32 -3832 224) (-32 -3792 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" "347174" + "plane" "(-32 -3792 156) (-32 -3792 224) (-32 -3832 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" "347173" + "plane" "(528 -3792 224) (-32 -3792 224) (-32 -3792 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347172" + "plane" "(-32 -3832 156) (-32 -3832 224) (528 -3832 224)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -85] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347171" + "plane" "(528 -3832 156) (528 -3832 224) (528 -3792 224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347170" + "plane" "(528 -3792 156) (-32 -3792 156) (-32 -3832 156)" + "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 130 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764802" + side + { + "id" "347181" + "plane" "(-32 -3832 156) (-32 -3832 32) (-32 -3744 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" "347180" + "plane" "(-32 -3744 156) (-32 -3744 32) (528 -3744 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" "347179" + "plane" "(528 -3832 156) (528 -3832 32) (-32 -3832 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -63.9922] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347178" + "plane" "(528 -3744 32) (-32 -3744 32) (-32 -3832 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" "347177" + "plane" "(528 -3744 156) (528 -3744 32) (528 -3832 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347176" + "plane" "(528 -3832 156) (-32 -3832 156) (-32 -3744 156)" + "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 130 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764825" + side + { + "id" "347193" + "plane" "(1808 -3440 208) (1608 -3440 208) (1608 -3456 208)" + "material" "DEV/REFLECTIVITY_40B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347192" + "plane" "(1608 -3456 208) (1608 -3440 208) (1608 -3440 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" "347191" + "plane" "(1608 -3440 208) (1808 -3440 208) (1808 -3440 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" "347190" + "plane" "(1808 -3456 208) (1608 -3456 208) (1608 -3456 224)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "347189" + "plane" "(1808 -3440 208) (1808 -3456 208) (1808 -3456 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" "347188" + "plane" "(1808 -3456 224) (1608 -3456 224) (1608 -3440 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" + } + editor + { + "color" "0 245 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747922" + side + { + "id" "346392" + "plane" "(-1016 -5664 32) (-1047 -5664 32) (-1047 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346391" + "plane" "(-1016 -5392 -16) (-1047 -5392 -16) (-1047 -5664 -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" "346390" + "plane" "(-1016 -5664 -16) (-1047 -5664 -16) (-1047 -5664 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" "346389" + "plane" "(-1047 -5392 -16) (-1016 -5392 -16) (-1016 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346388" + "plane" "(-1016 -5392 -16) (-1016 -5664 -16) (-1016 -5664 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346387" + "plane" "(-1047 -5664 -16) (-1047 -5392 -16) (-1047 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747946" + side + { + "id" "346398" + "plane" "(-1529 -5423 32) (-1529 -5392 32) (-1047 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346397" + "plane" "(-1047 -5392 -16) (-1529 -5392 -16) (-1529 -5423 -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" "346396" + "plane" "(-1529 -5423 -16) (-1529 -5392 -16) (-1529 -5392 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" "346395" + "plane" "(-1529 -5392 -16) (-1047 -5392 -16) (-1047 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346394" + "plane" "(-1047 -5392 -16) (-1047 -5423 -16) (-1047 -5423 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346393" + "plane" "(-1047 -5423 -16) (-1529 -5423 -16) (-1529 -5423 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747947" + side + { + "id" "346404" + "plane" "(-1047 -5664 32) (-1497 -5664 32) (-1497 -5423 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05_BLEND_CHEAP" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346403" + "plane" "(-1497 -5423 -16) (-1497 -5664 -16) (-1047 -5664 -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" "346402" + "plane" "(-1497 -5664 -16) (-1497 -5423 -16) (-1497 -5423 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" "346401" + "plane" "(-1047 -5664 -16) (-1497 -5664 -16) (-1497 -5664 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" "346400" + "plane" "(-1047 -5423 -16) (-1047 -5664 -16) (-1047 -5664 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346399" + "plane" "(-1497 -5423 -16) (-1047 -5423 -16) (-1047 -5423 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747976" + side + { + "id" "346446" + "plane" "(-1497 -5664 32) (-1529 -5664 32) (-1529 -5423 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346445" + "plane" "(-1529 -5423 -16) (-1529 -5664 -16) (-1497 -5664 -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" "346444" + "plane" "(-1497 -5664 -16) (-1529 -5664 -16) (-1529 -5664 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" "346443" + "plane" "(-1529 -5664 -16) (-1529 -5423 -16) (-1529 -5423 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346442" + "plane" "(-1529 -5423 -16) (-1497 -5423 -16) (-1497 -5423 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346441" + "plane" "(-1497 -5423 -16) (-1497 -5664 -16) (-1497 -5664 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749519" + side + { + "id" "346897" + "plane" "(-481 -3659 318) (-481 -3649 318) (-473 -3649 318)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346898" + "plane" "(-481 -3649 32.2283) (-481 -3659 32.2283) (-473 -3659 32.2283)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346899" + "plane" "(-481 -3659 32.2275) (-481 -3649 32.2275) (-481 -3649 318)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346900" + "plane" "(-473 -3649 32.2274) (-473 -3659 32.2274) (-473 -3659 318)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346901" + "plane" "(-481 -3649 32.2274) (-473 -3649 32.2274) (-473 -3649 318)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346902" + "plane" "(-473 -3659 32.2274) (-481 -3659 32.2274) (-481 -3659 318)" + "material" "TOOLS/TOOLSCLIP" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749611" + side + { + "id" "346931" + "plane" "(-488 -3616 96) (-474 -3650.79 96) (-474 -3659.21 96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346930" + "plane" "(-488 -3696 16) (-474 -3659.21 16) (-474 -3650.78 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346929" + "plane" "(-488 -3616 16) (-488 -3616 96) (-488 -3696 96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346928" + "plane" "(-474 -3659.21 16) (-474 -3659.21 96) (-474 -3650.79 96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346927" + "plane" "(-488 -3696 16) (-488 -3696 96) (-474 -3659.21 96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346926" + "plane" "(-474 -3650.78 16) (-474 -3650.79 96) (-488 -3616 96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 137" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749658" + side + { + "id" "346949" + "plane" "(-1080 -3635 318) (-1080 -3616 318) (-1072 -3616 318)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346948" + "plane" "(-1080 -3616 32.2283) (-1080 -3635 32.2283) (-1072 -3624 32.2283)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346947" + "plane" "(-1080 -3635 32.2275) (-1080 -3616 32.2275) (-1080 -3616 318)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346946" + "plane" "(-1072 -3616 32.2274) (-1072 -3624 32.2274) (-1072 -3624 318)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346945" + "plane" "(-1080 -3616 32.2275) (-1072 -3616 32.2275) (-1072 -3616 318)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346944" + "plane" "(-1072 -3624 32.2274) (-1080 -3635 32.2274) (-1080 -3635 318)" + "material" "TOOLS/TOOLSCLIP" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749682" + side + { + "id" "346965" + "plane" "(-1084 -3616 318.114) (-1084 -3604 318.114) (-1072 -3616 318.114)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346964" + "plane" "(-1084 -3604 32.1137) (-1084 -3616 32.1137) (-1072 -3616 32.1137)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346963" + "plane" "(-1084 -3616 32.1135) (-1084 -3604 32.1135) (-1084 -3604 318.115)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346962" + "plane" "(-1072 -3616 32.1135) (-1084 -3616 32.1135) (-1084 -3616 318.115)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346961" + "plane" "(-1084 -3604 32.1135) (-1072 -3616 32.1135) (-1072 -3616 318.115)" + "material" "TOOLS/TOOLSCLIP" + "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 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726276" + side + { + "id" "345118" + "plane" "(-64 -5894 190) (112 -5894 190) (112 -5924 190)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345117" + "plane" "(-80.4518 -5924 32) (112 -5924 32) (112 -5894 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345116" + "plane" "(112 -5894 32) (112 -5924 32) (112 -5924 190)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345115" + "plane" "(-64 -5894 32) (112 -5894 32) (112 -5894 190)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345114" + "plane" "(112 -5924 32) (-80.4518 -5924 32) (-80.4518 -5924 190)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345113" + "plane" "(-80.4516 -5924 32) (-64 -5894 32) (-64 -5894 190)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 121" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731863" + side + { + "id" "345842" + "plane" "(-1041 -4198 240) (-1041.66 -4160 240) (-1022 -4160 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345841" + "plane" "(-1041 -4198 0) (-980 -4198 0) (-1022 -4160 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345840" + "plane" "(-1041.67 -4160 0) (-1041.66 -4160 240) (-1041 -4198 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345839" + "plane" "(-1041 -4198 0) (-1041 -4198 240) (-980 -4198 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345838" + "plane" "(-980 -4198 0) (-980 -4198 240) (-1022 -4160 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345837" + "plane" "(-1022 -4160 0) (-1022 -4160 240) (-1041.66 -4160 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731932" + side + { + "id" "345852" + "plane" "(-1042 -4141 240) (-1022 -4160 240) (-1041.66 -4160 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345851" + "plane" "(-1041.67 -4160 0) (-1022 -4160 0) (-1042 -4141 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345850" + "plane" "(-1042 -4141 0) (-1042 -4141 240) (-1041.66 -4160 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345849" + "plane" "(-1041.67 -4160 0) (-1041.66 -4160 240) (-1022 -4160 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345848" + "plane" "(-1022 -4160 0) (-1022 -4160 240) (-1042 -4141 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4710895" + side + { + "id" "345107" + "plane" "(-32 -5881 214) (-11 -5881 214) (-11 -6000 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345108" + "plane" "(-32 -6000 182) (-11 -6000 182) (-11 -5881 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345109" + "plane" "(-32 -5881 214) (-32 -6000 214) (-32 -6000 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" "345110" + "plane" "(-11 -5881 182) (-11 -6000 182) (-11 -6000 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345111" + "plane" "(-11 -5881 214) (-32 -5881 214) (-32 -5881 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" "345112" + "plane" "(-11 -6000 182) (-32 -6000 182) (-32 -6000 214)" + "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 205 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4695470" + side + { + "id" "345060" + "plane" "(144 -5888 0) (160 -5888 0) (160 -5984 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[144 -5984 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 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" + } + 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 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" + } + 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" "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" "345061" + "plane" "(144 -5984 -48) (160 -5984 -48) (160 -5888 -48)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345062" + "plane" "(144 -5888 0) (144 -5984 0) (144 -5984 -48)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345063" + "plane" "(160 -5888 -48) (160 -5984 -48) (160 -5984 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345064" + "plane" "(160 -5888 0) (144 -5888 0) (144 -5888 -48)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345065" + "plane" "(160 -5984 -48) (144 -5984 -48) (144 -5984 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4695475" + side + { + "id" "345071" + "plane" "(96 -5680 182) (96 -5600 182) (144 -5600 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345070" + "plane" "(96 -5600 32) (96 -5600 182) (96 -5680 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 486.105] 0.125" + "vaxis" "[0 0 -1 117.162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345069" + "plane" "(144 -5680 32) (144 -5680 182) (144 -5600 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -25.8867] 0.125" + "vaxis" "[0 0 -1 117.162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345068" + "plane" "(144 -5600 32) (144 -5600 182) (96 -5600 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 486.109] 0.125" + "vaxis" "[0 0 -1 117.162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345067" + "plane" "(96 -5680 32) (96 -5680 182) (144 -5680 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" "345066" + "plane" "(96 -5600 32) (96 -5680 32) (144 -5680 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 198 219" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4695476" + side + { + "id" "345077" + "plane" "(96 -5600 0) (96 -5664 0) (144 -5664 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" "345076" + "plane" "(96 -5664 0) (96 -5600 0) (96 -5600 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 486.105] 0.125" + "vaxis" "[0 0 -1 117.162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345075" + "plane" "(144 -5600 0) (144 -5664 0) (144 -5664 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345074" + "plane" "(96 -5600 0) (144 -5600 0) (144 -5600 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345073" + "plane" "(144 -5664 0) (96 -5664 0) (96 -5664 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" "345072" + "plane" "(96 -5664 32) (96 -5600 32) (144 -5600 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 198 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4695560" + side + { + "id" "345078" + "plane" "(144 -5600 0) (168 -5600 0) (168 -5888 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[144 -5888 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 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" + } + 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 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" + } + 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" "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" "345079" + "plane" "(144 -5888 -16) (168 -5888 -16) (168 -5600 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345080" + "plane" "(144 -5600 0) (144 -5888 0) (144 -5888 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345081" + "plane" "(168 -5600 -16) (168 -5888 -16) (168 -5888 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345082" + "plane" "(168 -5600 0) (144 -5600 0) (144 -5600 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345083" + "plane" "(168 -5888 -16) (144 -5888 -16) (144 -5888 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "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 113" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4695594" + side + { + "id" "345095" + "plane" "(168 -5856 160) (168 -5882 160) (144 -5888 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345094" + "plane" "(168 -5882 -16) (168 -5856 -16) (144 -5856 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345093" + "plane" "(144 -5856 160) (144 -5888 160) (144 -5888 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345092" + "plane" "(168 -5882 160) (168 -5856 160) (168 -5856 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345091" + "plane" "(168 -5856 160) (144 -5856 160) (144 -5856 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345090" + "plane" "(144 -5888 160) (168 -5882 160) (168 -5882 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 126 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4695741" + side + { + "id" "345101" + "plane" "(200 -5872 160) (168 -5882 160) (168 -5872 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345102" + "plane" "(200 -5872 -16) (168 -5872 -16) (168 -5882 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345103" + "plane" "(168 -5882 160) (168 -5882 -16) (168 -5872 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345105" + "plane" "(168 -5872 160) (168 -5872 -16) (200 -5872 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345106" + "plane" "(168 -5882 -16) (168 -5882 160) (200 -5872 160)" + "material" "TOOLS/TOOLSCLIP" + "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 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4679943" + side + { + "id" "344725" + "plane" "(820 -5731 112.955) (820 -5698 112.955) (826 -5692 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344724" + "plane" "(820 -5698 7.95522) (820 -5731 7.95522) (826 -5736 7.95522)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344723" + "plane" "(820 -5731 7.95604) (820 -5698 7.95604) (820 -5698 112.957)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344722" + "plane" "(826 -5692 7.95622) (826 -5736 7.95622) (826 -5736 112.957)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344721" + "plane" "(820 -5698 7.95607) (826 -5692 7.95607) (826 -5692 112.957)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344720" + "plane" "(826 -5736 7.95606) (820 -5731 7.95606) (820 -5731 112.957)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 234 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4679945" + side + { + "id" "344737" + "plane" "(660 -5731 113) (660 -5698 113) (666 -5692 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344736" + "plane" "(660 -5698 8) (660 -5731 8) (666 -5736 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344735" + "plane" "(660 -5731 8.00081) (660 -5698 8.00081) (660 -5698 113.002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344734" + "plane" "(666 -5692 8.001) (666 -5736 8.001) (666 -5736 113.002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344733" + "plane" "(660 -5698 8.00085) (666 -5692 8.00085) (666 -5692 113.002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344732" + "plane" "(666 -5736 8.00084) (660 -5731 8.00084) (660 -5731 113.002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 234 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4679970" + side + { + "id" "344755" + "plane" "(600 -5736 113) (600 -5692 113) (606 -5698 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344754" + "plane" "(600 -5692 8) (600 -5736 8) (606 -5731 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344753" + "plane" "(600 -5736 8) (600 -5692 8) (600 -5692 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344752" + "plane" "(606 -5698 8) (606 -5731 8) (606 -5731 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344751" + "plane" "(606 -5731 8) (600 -5736 8) (600 -5736 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344750" + "plane" "(600 -5692 8) (606 -5698 8) (606 -5698 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4679972" + side + { + "id" "344767" + "plane" "(760 -5736 113) (760 -5692 113) (766 -5698 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344766" + "plane" "(760 -5692 8) (760 -5736 8) (766 -5731 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344765" + "plane" "(760 -5736 8) (760 -5692 8) (760 -5692 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344764" + "plane" "(766 -5698 8) (766 -5731 8) (766 -5731 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344763" + "plane" "(766 -5731 8) (760 -5736 8) (760 -5736 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344762" + "plane" "(760 -5692 8) (766 -5698 8) (766 -5698 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4679975" + side + { + "id" "344768" + "plane" "(666 -5692 52) (760 -5692 52) (760 -5736 52)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344769" + "plane" "(666 -5736 8) (760 -5736 8) (760 -5692 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344770" + "plane" "(666 -5692 52) (666 -5736 52) (666 -5736 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344771" + "plane" "(760 -5692 8) (760 -5736 8) (760 -5736 52)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344772" + "plane" "(760 -5692 52) (666 -5692 52) (666 -5692 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344773" + "plane" "(760 -5736 8) (666 -5736 8) (666 -5736 52)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 178 183" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4680033" + side + { + "id" "344786" + "plane" "(680 -5739 56) (680 -5734 56) (752 -5734 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344785" + "plane" "(680 -5734 8) (680 -5750 8) (752 -5750 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344784" + "plane" "(680 -5750 8) (680 -5734 8) (680 -5734 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344783" + "plane" "(752 -5734 8) (752 -5750 8) (752 -5750 50)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344782" + "plane" "(680 -5734 8) (752 -5734 8) (752 -5734 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344781" + "plane" "(752 -5750 8) (680 -5750 8) (680 -5750 50)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344780" + "plane" "(680 -5750 50) (680 -5739 56) (752 -5739 56)" + "material" "TOOLS/TOOLSCLIP_METAL" + "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 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4680053" + side + { + "id" "344805" + "plane" "(752 -5739 56) (752 -5734 56) (760 -5734 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344804" + "plane" "(752 -5734 8) (752 -5750 8) (760 -5736 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344803" + "plane" "(752 -5750 8) (752 -5734 8) (752 -5734 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344802" + "plane" "(760 -5734 8) (760 -5736 8) (760 -5736 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344801" + "plane" "(752 -5734 8) (760 -5734 8) (760 -5734 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344800" + "plane" "(760 -5736 8) (752 -5750 8) (752 -5750 50)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344799" + "plane" "(752 -5750 50) (752 -5739 56) (758.284 -5739 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4680072" + side + { + "id" "344824" + "plane" "(666 -5736 56) (666 -5734 56) (680 -5734 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344823" + "plane" "(666 -5734 8) (666 -5736 8) (680 -5750 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344822" + "plane" "(666 -5736 8) (666 -5734 8) (666 -5734 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344821" + "plane" "(680 -5734 8) (680 -5750 8) (680 -5750 50)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344820" + "plane" "(666 -5734 8) (680 -5734 8) (680 -5734 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344819" + "plane" "(680 -5750 8) (666 -5736 8) (666 -5736 56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344818" + "plane" "(669 -5739 56) (680 -5739 56) (680 -5750 50)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 254 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4662579" + side + { + "id" "344135" + "plane" "(-241 -6296 182) (-127 -6296 182) (-127 -6304 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344136" + "plane" "(-241 -6304 32) (-127 -6304 32) (-127 -6296 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344137" + "plane" "(-241 -6296 182) (-241 -6304 182) (-241 -6304 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344138" + "plane" "(-127 -6296 32) (-127 -6304 32) (-127 -6304 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344139" + "plane" "(-127 -6296 182) (-241 -6296 182) (-241 -6296 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344140" + "plane" "(-127 -6304 32) (-241 -6304 32) (-241 -6304 182)" + "material" "TOOLS/TOOLSCLIP" + "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 251" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4662605" + side + { + "id" "344164" + "plane" "(1527 -4200 0) (1527 -4216 0) (1559 -4216 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" "344163" + "plane" "(1527 -4216 0) (1527 -4200 0) (1527 -4200 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" "344162" + "plane" "(1559 -4200 0) (1559 -4216 0) (1559 -4216 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -1441.33] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344161" + "plane" "(1527 -4200 0) (1559 -4200 0) (1559 -4200 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344160" + "plane" "(1559 -4216 0) (1527 -4216 0) (1527 -4216 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344159" + "plane" "(1527 -4216 48) (1527 -4200 48) (1559 -4200 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 174 115" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4662631" + side + { + "id" "344212" + "plane" "(2368 -4208 -16) (2048 -4208 -16) (2048 -4288 -16)" + "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" "344211" + "plane" "(2048 -4288 48) (2048 -4288 -16) (2048 -4208 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344210" + "plane" "(2048 -4208 48) (2048 -4208 -16) (2368 -4208 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344209" + "plane" "(2368 -4288 48) (2368 -4288 -16) (2048 -4288 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344208" + "plane" "(2368 -4208 48) (2368 -4208 -16) (2368 -4288 -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" "344207" + "plane" "(2368 -4288 48) (2048 -4288 48) (2048 -4208 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 221 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4662652" + side + { + "id" "344248" + "plane" "(2368 -4208 -16) (2368 -4288 -16) (2656 -4288 -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" "344247" + "plane" "(2368 -4288 48) (2368 -4288 -16) (2368 -4208 -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" "344246" + "plane" "(2656 -4208 48) (2656 -4208 -16) (2656 -4288 -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" "344245" + "plane" "(2368 -4208 48) (2368 -4208 -16) (2656 -4208 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344244" + "plane" "(2656 -4288 48) (2656 -4288 -16) (2368 -4288 -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" "344243" + "plane" "(2368 -4288 48) (2368 -4208 48) (2656 -4208 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 159 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4647285" + side + { + "id" "344087" + "plane" "(-224 -5680 160.5) (-224 -5615 160.5) (-167 -5680 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344086" + "plane" "(-224 -5680 31.5) (-167 -5680 31.5) (-224 -5615 31.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344085" + "plane" "(-224 -5615 31.5) (-224 -5615 160.5) (-224 -5680 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344084" + "plane" "(-224 -5680 31.5) (-224 -5680 160.5) (-167 -5680 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344083" + "plane" "(-167 -5680 31.5) (-167 -5680 160.5) (-224 -5615 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 161 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4647529" + side + { + "id" "344088" + "plane" "(1326 -2441 -34) (1792 -2441 -34) (1792 -2528 -34)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1326 -2528 -34]" + "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 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" + } + 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 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" + } + 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" "150 125 0 0 0 0 0 0 0" + "row3" "25 255 0 0 0 0 0 0 0" + "row4" "250 250 200 0 0 0 0 0 0" + "row5" "255 175 100 0 0 0 0 0 0" + "row6" "255 255 50 0 0 0 0 0 0" + "row7" "255 255 0 0 0 0 0 0 0" + "row8" "255 250 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" "344089" + "plane" "(1326 -2528 -35) (1792 -2528 -35) (1792 -2441 -35)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344090" + "plane" "(1326 -2441 -34) (1326 -2528 -34) (1326 -2528 -35)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344091" + "plane" "(1792 -2441 -35) (1792 -2528 -35) (1792 -2528 -34)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344092" + "plane" "(1792 -2441 -34) (1326 -2441 -34) (1326 -2441 -35)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344093" + "plane" "(1792 -2528 -35) (1326 -2528 -35) (1326 -2528 -34)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4647530" + side + { + "id" "344094" + "plane" "(1544 -2528 -34) (1792 -2528 -34) (1792 -2592 -34)" + "material" "GRASS/HR_GRASS/GRASS_B" + "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" "[1544 -2592 -34]" + "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 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" + } + 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 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" + } + 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" "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" "344095" + "plane" "(1544 -2592 -35) (1792 -2592 -35) (1792 -2528 -35)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344096" + "plane" "(1544 -2528 -34) (1544 -2592 -34) (1544 -2592 -35)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344097" + "plane" "(1792 -2528 -35) (1792 -2592 -35) (1792 -2592 -34)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344098" + "plane" "(1792 -2528 -34) (1544 -2528 -34) (1544 -2528 -35)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344099" + "plane" "(1792 -2592 -35) (1544 -2592 -35) (1544 -2592 -34)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4647576" + side + { + "id" "344110" + "plane" "(-811 -2262 152) (-826 -2262 152) (-813 -2235 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344109" + "plane" "(-811 -2262 -24) (-813 -2235 -24) (-826 -2262 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344108" + "plane" "(-811 -2262 -24) (-811 -2262 152) (-813 -2235 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344107" + "plane" "(-826 -2262 -24) (-826 -2262 152) (-811 -2262 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344106" + "plane" "(-813 -2235 -24) (-813 -2235 152) (-826 -2262 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 159 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4647679" + side + { + "id" "344121" + "plane" "(-1019 -2262 152) (-1019 -2236 152) (-1000 -2262 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344120" + "plane" "(-1019 -2236 -24) (-1019 -2262 -24) (-1000 -2262 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344119" + "plane" "(-1019 -2262 -24) (-1019 -2236 -24) (-1019 -2236 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344118" + "plane" "(-1000 -2262 -24) (-1019 -2262 -24) (-1019 -2262 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344117" + "plane" "(-1019 -2236 -24) (-1000 -2262 -24) (-1000 -2262 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 149 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4647680" + side + { + "id" "344122" + "plane" "(-816 -2242 152) (-792 -2242 152) (-792 -2437 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344123" + "plane" "(-816 -2437 -24) (-792 -2437 -24) (-792 -2242 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344124" + "plane" "(-816 -2242 152) (-816 -2437 152) (-816 -2437 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344125" + "plane" "(-792 -2242 -24) (-792 -2437 -24) (-792 -2437 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344126" + "plane" "(-792 -2242 152) (-816 -2242 152) (-816 -2242 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344127" + "plane" "(-792 -2437 -24) (-816 -2437 -24) (-816 -2437 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 155 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631044" + side + { + "id" "343512" + "plane" "(2524 -2772 16) (2512 -2784 16) (2470 -2784 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343511" + "plane" "(2470 -2724 -16) (2470 -2784 -16) (2512 -2784 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343510" + "plane" "(2470 -2784 -16) (2470 -2724 -16) (2470 -2772 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343509" + "plane" "(2572 -2724 -16) (2512 -2784 -16) (2512 -2784 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343508" + "plane" "(2512 -2784 -16) (2470 -2784 -16) (2470 -2784 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343507" + "plane" "(2524 -2772 16) (2470 -2772 16) (2470 -2724 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631156" + side + { + "id" "343531" + "plane" "(2112 -3596 272.127) (2128 -3596 272.127) (2128 -3700 272.127)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343532" + "plane" "(2112 -3700 130.127) (2128 -3700 130.127) (2128 -3596 130.127)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343533" + "plane" "(2112 -3596 272.127) (2112 -3700 272.127) (2112 -3700 130.127)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343534" + "plane" "(2128 -3596 130.127) (2128 -3700 130.127) (2128 -3700 272.127)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343535" + "plane" "(2128 -3596 272.127) (2112 -3596 272.127) (2112 -3596 130.127)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343536" + "plane" "(2128 -3700 130.127) (2112 -3700 130.127) (2112 -3700 272.127)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 114 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631173" + side + { + "id" "343547" + "plane" "(2240 -3184 240) (2240 -3168 240) (2248 -3168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343546" + "plane" "(2240 -3168 0) (2240 -3184 0) (2248 -3168 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343545" + "plane" "(2240 -3184 -0) (2240 -3168 -0) (2240 -3168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343544" + "plane" "(2240 -3168 -0) (2248 -3168 -0) (2248 -3168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343543" + "plane" "(2248 -3168 -0) (2240 -3184 -0) (2240 -3184 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631188" + side + { + "id" "343548" + "plane" "(1910 -2869 40) (1889 -2888 40) (1889 -2736 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343549" + "plane" "(1910 -2750 16) (1889 -2736 16) (1889 -2888 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343550" + "plane" "(1889 -2888 16) (1889 -2736 16) (1889 -2736 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343551" + "plane" "(1910 -2869 40) (1910 -2750 40) (1910 -2750 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343552" + "plane" "(1889 -2736 16) (1910 -2750 16) (1910 -2750 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343553" + "plane" "(1889 -2888 40) (1910 -2869 40) (1910 -2869 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 150 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631205" + side + { + "id" "343566" + "plane" "(1557 -2839 280) (1557 -2859 280) (1537 -2872 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343567" + "plane" "(1557 -2859 16) (1557 -2839 16) (1537 -2832 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343568" + "plane" "(1537 -2872 280) (1537 -2872 16) (1537 -2832 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343569" + "plane" "(1557 -2859 16) (1557 -2859 280) (1557 -2839 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343570" + "plane" "(1537 -2832 280) (1537 -2832 16) (1557 -2839 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343571" + "plane" "(1537 -2872 16) (1537 -2872 280) (1557 -2859 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631237" + side + { + "id" "343582" + "plane" "(1312 -3144 144.5) (1328 -3128 144.5) (1328 -3144 144.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343581" + "plane" "(1312 -3144 15.5) (1328 -3144 15.5) (1328 -3128 15.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343580" + "plane" "(1328 -3128 15.5) (1328 -3144 15.5) (1328 -3144 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343579" + "plane" "(1328 -3144 15.5) (1312 -3144 15.5) (1312 -3144 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343578" + "plane" "(1312 -3144 15.5) (1328 -3128 15.5) (1328 -3128 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 242 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631260" + side + { + "id" "343593" + "plane" "(1312 -2896 144.5) (1328 -2896 144.5) (1328 -2912 144.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343592" + "plane" "(1312 -2896 15.5) (1328 -2912 15.5) (1328 -2896 15.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343591" + "plane" "(1328 -2896 15.5) (1328 -2912 15.5) (1328 -2912 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343590" + "plane" "(1312 -2896 15.5) (1328 -2896 15.5) (1328 -2896 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343589" + "plane" "(1328 -2912 15.5) (1312 -2896 15.5) (1312 -2896 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 122 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631312" + side + { + "id" "343600" + "plane" "(1762 -3117 40) (1762 -3136 40) (1584 -3135 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343601" + "plane" "(1762 -3136 16) (1762 -3117 16) (1598 -3117 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343602" + "plane" "(1584 -3135 40) (1584 -3135 16) (1598 -3117 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343603" + "plane" "(1762 -3136 16) (1762 -3136 40) (1762 -3117 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343604" + "plane" "(1598 -3117 40) (1598 -3117 16) (1762 -3117 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343605" + "plane" "(1584 -3135 16) (1584 -3135 40) (1762 -3136 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631314" + side + { + "id" "343606" + "plane" "(1746 -3111 70.1752) (1752 -3136 70.1752) (1719 -3136 70.1752)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343607" + "plane" "(1752 -3136 16.1752) (1746 -3111 16.1752) (1726 -3111 16.1752)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343608" + "plane" "(1719 -3136 70.1752) (1719 -3136 16.1752) (1726 -3111 16.1752)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343609" + "plane" "(1752 -3136 16.1752) (1752 -3136 70.1752) (1746 -3111 70.1752)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343610" + "plane" "(1726 -3111 70.1752) (1726 -3111 16.1752) (1746 -3111 16.1752)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343611" + "plane" "(1719 -3136 16.1752) (1719 -3136 70.1752) (1752 -3136 70.1752)" + "material" "TOOLS/TOOLSCLIP" + "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 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631322" + side + { + "id" "343618" + "plane" "(1440 -3456 22.5943) (1488 -3456 22.5943) (1488 -3629 22.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343619" + "plane" "(1440 -3629 -0.405712) (1488 -3629 -0.405712) (1488 -3456 -0.405712)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343620" + "plane" "(1440 -3456 22.5943) (1440 -3629 22.5943) (1440 -3629 -0.405712)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343621" + "plane" "(1488 -3456 -0.405712) (1488 -3629 -0.405712) (1488 -3629 22.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343622" + "plane" "(1488 -3456 22.5943) (1440 -3456 22.5943) (1440 -3456 -0.405712)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343623" + "plane" "(1488 -3629 -0.405712) (1440 -3629 -0.405712) (1440 -3629 22.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631426" + side + { + "id" "343650" + "plane" "(1440.06 -3875.92 50.0883) (1440.06 -3837 50.0883) (1481 -3837 50.0883)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343649" + "plane" "(1481 -3837 0.0883503) (1440.06 -3837 0.0883503) (1440.06 -3875.92 0.0883503)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343648" + "plane" "(1440.06 -3875.92 0.089045) (1440.06 -3837 0.0890455) (1440.06 -3837 50.088)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343647" + "plane" "(1440.06 -3837 0.089115) (1481 -3837 0.0891156) (1481 -3837 50.0878)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343646" + "plane" "(1477.79 -3864.27 0.0891183) (1472.08 -3869.99 0.0891184) (1472.08 -3869.99 50.0878)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343645" + "plane" "(1481 -3837 0.089144) (1477.79 -3864.27 0.0891443) (1477.79 -3864.27 50.0878)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343644" + "plane" "(1472.07 -3869.99 0.0890863) (1440.06 -3875.91 0.0890867) (1440.06 -3875.91 50.0879)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631450" + side + { + "id" "343667" + "plane" "(1768 -3456 0) (1768 -3512 0) (1776 -3504 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343666" + "plane" "(1776 -3456 0) (1776 -3504 0) (1776 -3504 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343665" + "plane" "(1768 -3456 0) (1776 -3456 0) (1776 -3456 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343664" + "plane" "(1776 -3504 0) (1768 -3512 0) (1776 -3504 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343663" + "plane" "(1768 -3512 0) (1768 -3456 0) (1776 -3456 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631468" + side + { + "id" "343672" + "plane" "(1776 -3504 0) (1768 -3512 0) (2056 -3512 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343671" + "plane" "(1768 -3512 0) (1776 -3504 0) (1776 -3504 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343670" + "plane" "(2056 -3504 0) (2056 -3512 0) (2056 -3504 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343669" + "plane" "(1776 -3504 0) (2056 -3504 0) (2056 -3504 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343668" + "plane" "(2056 -3512 0) (1768 -3512 0) (1776 -3504 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 100 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631470" + side + { + "id" "343682" + "plane" "(1816 -3464 7.99999) (2048 -3464 7.99999) (2056 -3456 7.99999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343681" + "plane" "(1808 -3456 7.99999) (1808 -3456 16) (1816 -3464 7.99999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343680" + "plane" "(2048 -3464 7.99999) (2056 -3456 16) (2056 -3456 7.99999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343679" + "plane" "(2056 -3456 7.99999) (2056 -3456 16) (1808 -3456 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343678" + "plane" "(1816 -3464 7.99999) (1808 -3456 16) (2056 -3456 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 100 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631547" + side + { + "id" "343712" + "plane" "(2029 -4160 148) (2030 -4160 148) (2030 -4200 148)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343711" + "plane" "(2006.33 -4200 0) (2030 -4200 0) (2030 -4160 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343710" + "plane" "(2030 -4160 0) (2030 -4200 0) (2030 -4200 148)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343709" + "plane" "(2029 -4160 0) (2030 -4160 0) (2030 -4160 148)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343708" + "plane" "(2030 -4200 0) (2006.33 -4200 0) (2006.33 -4200 148)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343707" + "plane" "(2006.33 -4200 0) (2029 -4160 0) (2029 -4160 148)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 216 173" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631561" + side + { + "id" "343719" + "plane" "(1707 -4200 148.25) (1657 -4200 148.25) (1660.1 -4172.9 148.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343718" + "plane" "(1685 -4165 0.249992) (1668 -4165 0.249992) (1660.1 -4172.9 0.249992)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343717" + "plane" "(1668 -4165 0.249993) (1685 -4165 0.249993) (1685 -4165 148.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343716" + "plane" "(1707 -4200 0.249992) (1657 -4200 0.249992) (1657 -4200 148.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343715" + "plane" "(1657 -4200 0.249992) (1660.1 -4172.9 0.249992) (1660.1 -4172.9 148.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343714" + "plane" "(1685 -4165 0.249993) (1707 -4200 0.249993) (1707 -4200 148.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343713" + "plane" "(1660.1 -4172.9 0.249992) (1668 -4165 0.249992) (1668 -4165 148.252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 105" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631563" + side + { + "id" "343726" + "plane" "(1826 -5504 89) (1826 -5446 89) (1884 -5446 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343727" + "plane" "(1826 -5446 48) (1826 -5504 48) (1884 -5504 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343728" + "plane" "(1826 -5504 48) (1826 -5446 48) (1826 -5446 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -6.50858] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343729" + "plane" "(1884 -5446 48) (1884 -5504 48) (1884 -5504 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -6.50858] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343730" + "plane" "(1826 -5446 48) (1884 -5446 48) (1884 -5446 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -6.50858] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343731" + "plane" "(1884 -5504 48) (1826 -5504 48) (1826 -5504 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -6.50858] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 238 175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631583" + side + { + "id" "343732" + "plane" "(947.5 -5413.5 22.5943) (980 -5388 22.5943) (980 -5560 22.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343733" + "plane" "(947 -5535 -0.405712) (980 -5560 -0.405712) (980 -5388 -0.405712)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343734" + "plane" "(947.5 -5413.5 -0.405712) (947.5 -5413.5 22.5943) (947 -5535 22.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343735" + "plane" "(980 -5560 -0.405712) (980 -5560 22.5943) (980 -5388 22.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343736" + "plane" "(980 -5388 -0.405712) (980 -5388 22.5943) (947.5 -5413.5 22.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343737" + "plane" "(947 -5535 -0.405712) (947 -5535 22.5943) (980 -5560 22.5943)" + "material" "TOOLS/TOOLSCLIP" + "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 251" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631598" + side + { + "id" "343738" + "plane" "(922 -5872 0) (1184 -5872 0) (1184 -5888 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[922 -5888 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 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" + } + 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 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" + } + 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" "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" "343739" + "plane" "(922 -5888 -48) (1184 -5888 -48) (1184 -5872 -48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343740" + "plane" "(922 -5872 0) (922 -5888 0) (922 -5888 -48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343741" + "plane" "(1184 -5872 -48) (1184 -5888 -48) (1184 -5888 0)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343742" + "plane" "(1184 -5872 0) (922 -5872 0) (922 -5872 -48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343743" + "plane" "(1184 -5888 -48) (922 -5888 -48) (922 -5888 0)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631600" + side + { + "id" "343744" + "plane" "(124 -6001 54.8443) (112 -6025 54.8443) (-32 -6025 54.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343745" + "plane" "(112 -6025 31.8443) (124 -6001 31.8443) (-32 -6001 31.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343746" + "plane" "(-32 -6025 54.8443) (-32 -6025 31.8443) (-32 -6001 31.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343747" + "plane" "(112 -6025 31.8443) (112 -6025 54.8443) (124 -6001 54.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343748" + "plane" "(-32 -6001 54.8443) (-32 -6001 31.8443) (124 -6001 31.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343749" + "plane" "(-32 -6025 31.8443) (-32 -6025 54.8443) (112 -6025 54.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 184 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631622" + side + { + "id" "343760" + "plane" "(-1075 -3936 240) (-1075 -3925 240) (-1061 -3936 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343759" + "plane" "(-1075 -3925 0) (-1075 -3936 0) (-1061 -3936 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343758" + "plane" "(-1075 -3936 -0) (-1075 -3925 -0) (-1075 -3925 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343757" + "plane" "(-1061 -3936 -0) (-1075 -3936 -0) (-1075 -3936 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343756" + "plane" "(-1075 -3925 -0) (-1061 -3936 -0) (-1061 -3936 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 162 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631671" + side + { + "id" "343761" + "plane" "(-936 -4202 54.8443) (-936 -4452 54.8443) (-964 -4457 54.8443)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343762" + "plane" "(-936 -4452 31.8443) (-936 -4202 31.8443) (-964 -4198 31.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343763" + "plane" "(-964 -4457 54.8443) (-964 -4457 31.8443) (-964 -4198 31.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343764" + "plane" "(-936 -4452 31.8443) (-936 -4452 54.8443) (-936 -4202 54.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343765" + "plane" "(-964 -4198 54.8443) (-964 -4198 31.8443) (-936 -4202 31.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343766" + "plane" "(-964 -4457 31.8443) (-964 -4457 54.8443) (-936 -4452 54.8443)" + "material" "TOOLS/TOOLSCLIP" + "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 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631764" + side + { + "id" "343800" + "plane" "(160 -1920 192) (152 -1920 192) (152 -1824 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" "343799" + "plane" "(152 -1824 89) (152 -1824 192) (152 -1920 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" "343798" + "plane" "(256 -1824 89) (256 -1824 192) (152 -1824 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" "343797" + "plane" "(152 -1920 89) (152 -1920 192) (160 -1920 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" "343796" + "plane" "(160 -1920 89) (160 -1920 192) (256 -1824 192)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343795" + "plane" "(256 -1824 89) (152 -1824 89) (152 -1920 89)" + "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" "166 191 0" + "groupid" "4631763" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631765" + side + { + "id" "343806" + "plane" "(152 -1920 89) (152 -1920 -16) (152 -1862 -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" "343805" + "plane" "(160 -1920 89) (160 -1920 -16) (152 -1920 -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" "343804" + "plane" "(160 -1920 -16) (160 -1920 89) (185 -1895 89)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343803" + "plane" "(185 -1895 89) (160 -1920 89) (152 -1920 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343802" + "plane" "(152 -1862 89) (152 -1862 -16) (185 -1895 -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" "343801" + "plane" "(152 -1862 -16) (152 -1920 -16) (160 -1920 -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" + } + editor + { + "color" "166 191 0" + "groupid" "4631763" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631766" + side + { + "id" "343811" + "plane" "(256 -1824 -16) (256 -1824 89) (206 -1824 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343810" + "plane" "(256 -1824 89) (256 -1824 -16) (231 -1849 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343809" + "plane" "(206 -1824 89) (256 -1824 89) (231 -1849 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343808" + "plane" "(231 -1849 89) (231 -1849 -16) (206 -1824 -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" "343807" + "plane" "(256 -1824 -16) (206 -1824 -16) (231 -1849 -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" + } + editor + { + "color" "166 191 0" + "groupid" "4631763" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631767" + side + { + "id" "343816" + "plane" "(168 -1912 89) (168 -1832 89) (248 -1832 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343815" + "plane" "(248 -1832 -48) (168 -1832 -48) (168 -1912 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343814" + "plane" "(168 -1912 -48) (168 -1832 -48) (168 -1832 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343813" + "plane" "(168 -1832 -48) (248 -1832 -48) (248 -1832 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343812" + "plane" "(248 -1832 -48) (168 -1912 -48) (168 -1912 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "166 191 0" + "groupid" "4631763" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631768" + side + { + "id" "343822" + "plane" "(152 -1862 -48) (152 -1920 -48) (160 -1920 -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" "343821" + "plane" "(152 -1920 -16) (152 -1920 -48) (152 -1862 -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" "343820" + "plane" "(160 -1920 -16) (160 -1920 -48) (152 -1920 -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" "343819" + "plane" "(185 -1895 -16) (185 -1895 -48) (160 -1920 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343818" + "plane" "(152 -1862 -16) (152 -1862 -48) (185 -1895 -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" "343817" + "plane" "(185 -1895 -16) (160 -1920 -16) (152 -1920 -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" + } + editor + { + "color" "166 191 0" + "groupid" "4631762" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631880" + side + { + "id" "343832" + "plane" "(256 -1824 -48) (206 -1824 -48) (231 -1849 -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" "343831" + "plane" "(206 -1824 -16) (206 -1824 -48) (256 -1824 -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" "343830" + "plane" "(256 -1824 -16) (256 -1824 -48) (231 -1849 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343829" + "plane" "(231 -1849 -16) (231 -1849 -48) (206 -1824 -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" "343828" + "plane" "(206 -1824 -16) (256 -1824 -16) (231 -1849 -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" + } + editor + { + "color" "0 111 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631894" + side + { + "id" "343844" + "plane" "(-112 -1920 192) (-208 -1824 192) (-96 -1824 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" "343843" + "plane" "(-208 -1824 -16) (-208 -1824 192) (-112 -1920 192)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343842" + "plane" "(-96 -1920 -16) (-96 -1920 192) (-96 -1824 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" "343841" + "plane" "(-96 -1824 -16) (-96 -1824 192) (-208 -1824 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" "343840" + "plane" "(-112 -1920 -16) (-112 -1920 192) (-96 -1920 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" "343839" + "plane" "(-208 -1824 -16) (-112 -1920 -16) (-96 -1920 -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" + } + editor + { + "color" "0 100 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631895" + side + { + "id" "343850" + "plane" "(-208 -1824 -48) (-112 -1920 -48) (-96 -1920 -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" "343849" + "plane" "(-112 -1920 -48) (-208 -1824 -48) (-208 -1824 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343848" + "plane" "(-96 -1824 -48) (-96 -1920 -48) (-96 -1920 -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" "343847" + "plane" "(-208 -1824 -48) (-96 -1824 -48) (-96 -1824 -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" "343846" + "plane" "(-96 -1920 -48) (-112 -1920 -48) (-112 -1920 -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" "343845" + "plane" "(-112 -1920 -16) (-208 -1824 -16) (-96 -1824 -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" + } + editor + { + "color" "0 100 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631989" + side + { + "id" "343868" + "plane" "(-808 -3744 -46) (-776 -3744 -46) (-808 -3784 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343867" + "plane" "(-808 -3784 -224) (-776 -3744 -224) (-808 -3744 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343866" + "plane" "(-808 -3744 -224) (-808 -3744 -46) (-808 -3784 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343865" + "plane" "(-776 -3744 -224) (-776 -3744 -46) (-808 -3744 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343863" + "plane" "(-808 -3784 -224) (-808 -3784 -46) (-776 -3744 -46)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 126 115" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631992" + side + { + "id" "343874" + "plane" "(-576 -3784 -48) (-576 -3808 -48) (-584 -3784 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343875" + "plane" "(-576 -3784 -256) (-584 -3784 -256) (-576 -3808 -256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343876" + "plane" "(-576 -3808 -48) (-576 -3808 -256) (-584 -3784 -256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343877" + "plane" "(-576 -3808 -256) (-576 -3808 -48) (-576 -3784 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343878" + "plane" "(-584 -3784 -48) (-584 -3784 -256) (-576 -3784 -256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 113" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4631994" + side + { + "id" "343880" + "plane" "(-584 -3744 -48) (-584 -3784 -48) (-608 -3744 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343881" + "plane" "(-584 -3744 -256) (-608 -3744 -256) (-584 -3784 -256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343882" + "plane" "(-584 -3784 -48) (-584 -3784 -256) (-608 -3744 -256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343883" + "plane" "(-584 -3784 -256) (-584 -3784 -48) (-584 -3744 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343884" + "plane" "(-608 -3744 -48) (-608 -3744 -256) (-584 -3744 -256)" + "material" "TOOLS/TOOLSCLIP" + "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 153" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632036" + side + { + "id" "343896" + "plane" "(-26 -4778 160) (-26 -4768 160) (-16 -4768 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343895" + "plane" "(-26 -4768 0) (-26 -4778 0) (-16 -4768 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343894" + "plane" "(-26 -4778 0) (-26 -4768 0) (-26 -4768 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343893" + "plane" "(-26 -4768 0) (-16 -4768 0) (-16 -4768 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343892" + "plane" "(-16 -4768 0) (-26 -4778 0) (-26 -4778 160)" + "material" "TOOLS/TOOLSCLIP" + "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 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632037" + side + { + "id" "343897" + "plane" "(295 -4688 160) (295 -4712 160) (248 -4712 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343898" + "plane" "(295 -4712 0) (295 -4688 0) (232 -4688 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343899" + "plane" "(248 -4712 160) (248 -4712 0) (232 -4688 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343900" + "plane" "(295 -4712 0) (295 -4712 160) (295 -4688 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343901" + "plane" "(232 -4688 160) (232 -4688 0) (295 -4688 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343902" + "plane" "(248 -4712 0) (248 -4712 160) (295 -4712 160)" + "material" "TOOLS/TOOLSCLIP" + "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 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632043" + side + { + "id" "343903" + "plane" "(-278 -6050 72) (-309 -6059 72) (-310 -5900 72)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343904" + "plane" "(-279 -5910 32) (-310 -5900 32) (-309 -6059 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343905" + "plane" "(-309 -6059 32) (-310 -5900 32) (-310 -5900 72)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343906" + "plane" "(-278 -6050 72) (-279 -5910 72) (-279 -5910 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343907" + "plane" "(-310 -5900 32) (-279 -5910 32) (-279 -5910 72)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343908" + "plane" "(-309 -6059 72) (-278 -6050 72) (-278 -6050 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 138 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632048" + side + { + "id" "343909" + "plane" "(384 -5288 22.8443) (384 -5447 22.8443) (358 -5425 22.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343910" + "plane" "(384 -5447 -0.155727) (384 -5288 -0.155727) (358 -5304 -0.155727)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343911" + "plane" "(358 -5425 22.8443) (358 -5425 -0.155727) (358 -5304 -0.155727)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343912" + "plane" "(384 -5447 -0.155727) (384 -5447 22.8443) (384 -5288 22.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343913" + "plane" "(358 -5304 22.8443) (358 -5304 -0.155727) (384 -5288 -0.155727)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343914" + "plane" "(358 -5425 -0.155727) (358 -5425 22.8443) (384 -5447 22.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 112 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632050" + side + { + "id" "343915" + "plane" "(603 -5279 22.8443) (603 -5424 22.8443) (576 -5440 22.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343916" + "plane" "(603 -5424 -0.155712) (603 -5279 -0.155712) (576 -5279 -0.155712)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343917" + "plane" "(576 -5440 22.8443) (576 -5440 -0.155712) (576 -5279 -0.155712)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343918" + "plane" "(603 -5424 -0.155712) (603 -5424 22.8443) (603 -5279 22.8443)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343919" + "plane" "(576 -5279 22.8443) (576 -5279 -0.155712) (603 -5279 -0.155712)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343920" + "plane" "(576 -5440 -0.155712) (576 -5440 22.8443) (603 -5424 22.8443)" + "material" "TOOLS/TOOLSCLIP" + "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 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632052" + side + { + "id" "343921" + "plane" "(882 -5566 156) (891 -5600 156) (848 -5600 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343922" + "plane" "(891 -5600 0) (882 -5566 0) (855 -5566 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343923" + "plane" "(848 -5600 156) (848 -5600 0) (855 -5566 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343924" + "plane" "(891 -5600 0) (891 -5600 156) (882 -5566 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343925" + "plane" "(855 -5566 156) (855 -5566 0) (882 -5566 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343926" + "plane" "(848 -5600 0) (848 -5600 156) (891 -5600 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 224 129" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632070" + side + { + "id" "343937" + "plane" "(368 -5872 160) (384 -5872 160) (384 -5888 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343936" + "plane" "(368 -5872 0) (384 -5888 0) (384 -5872 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343935" + "plane" "(384 -5872 0) (384 -5888 0) (384 -5888 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343934" + "plane" "(368 -5872 0) (384 -5872 0) (384 -5872 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343933" + "plane" "(384 -5888 0) (368 -5872 0) (368 -5872 160)" + "material" "TOOLS/TOOLSCLIP" + "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 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632085" + side + { + "id" "343950" + "plane" "(1559 -4200 400) (2048 -4200 400) (2048 -4216 400)" + "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" "343951" + "plane" "(1559 -4216 -16) (2048 -4216 -16) (2048 -4200 -16)" + "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" "343952" + "plane" "(1559 -4200 400) (1559 -4216 400) (1559 -4216 -16)" + "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" "343953" + "plane" "(2048 -4200 -16) (2048 -4216 -16) (2048 -4216 400)" + "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" "343954" + "plane" "(2048 -4200 400) (1559 -4200 400) (1559 -4200 -16)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343955" + "plane" "(2048 -4216 -16) (1559 -4216 -16) (1559 -4216 400)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632173" + side + { + "id" "343997" + "plane" "(-533 -3736 77.8495) (-533 -3708 77.8495) (-488 -3708 77.8495)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343996" + "plane" "(-533 -3708 27.8495) (-533 -3736 27.8495) (-520 -3744 27.8495)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343995" + "plane" "(-533 -3736 27.8486) (-533 -3708 27.8486) (-533 -3708 77.8477)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343994" + "plane" "(-488 -3708 27.8485) (-501 -3744 27.8485) (-501 -3744 77.8477)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343993" + "plane" "(-533 -3708 27.8486) (-488 -3708 27.8486) (-488 -3708 77.8477)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343992" + "plane" "(-501 -3744 27.8486) (-520 -3744 27.8486) (-520 -3744 77.8477)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343991" + "plane" "(-520 -3744 27.8486) (-533 -3736 27.8486) (-533 -3736 77.8477)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 244 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4632234" + side + { + "id" "344004" + "plane" "(497 -2682 253.444) (544 -2720 253.444) (543 -2864 253.444)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344003" + "plane" "(543 -2864 -36.5558) (544 -2720 -36.5558) (497 -2682 -36.5558)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344002" + "plane" "(496 -2682 253.444) (496 -2904 253.444) (496 -2904 -36.5558)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344001" + "plane" "(543 -2864 253.444) (544 -2720 253.444) (544 -2720 -36.5558)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344000" + "plane" "(497 -2682 253.444) (496 -2682 253.444) (496 -2682 -36.5558)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343999" + "plane" "(496 -2904 253.444) (543 -2864 253.444) (543 -2864 -36.5558)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343998" + "plane" "(544 -2720 253.444) (497 -2682 253.444) (497 -2682 -36.5558)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 134" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613032" + side + { + "id" "342535" + "plane" "(1184 -4784 -32) (1184 -4768 -32) (1158 -4768 -32)" + "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" "342534" + "plane" "(1184 -4768 -32) (1184 -4784 -32) (1184 -4784 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" "342533" + "plane" "(1184 -4768 -32) (1184 -4768 48) (1158 -4768 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" "342532" + "plane" "(1184 -4784 -32) (1158 -4784 -32) (1158 -4784 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342531" + "plane" "(1184 -4784 48) (1158 -4784 48) (1158 -4768 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" "342530" + "plane" "(1158 -4784 -32) (1158 -4768 -32) (1158 -4768 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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613038" + side + { + "id" "342547" + "plane" "(1158 -4768 -32) (1093 -4768 -32) (1093 -4776 -32)" + "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" "342546" + "plane" "(1093 -4768 -32) (1158 -4768 -32) (1158 -4768 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" "342545" + "plane" "(1158 -4776 -32) (1093 -4776 -32) (1093 -4776 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342544" + "plane" "(1158 -4776 48) (1093 -4776 48) (1093 -4768 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" "342543" + "plane" "(1158 -4768 48) (1158 -4768 -32) (1158 -4776 -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" "342542" + "plane" "(1093 -4776 48) (1093 -4776 -32) (1093 -4768 -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" + } + editor + { + "color" "0 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613039" + side + { + "id" "342553" + "plane" "(1093 -4768 -32) (1040 -4768 -32) (1040 -4784 -32)" + "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" "342552" + "plane" "(1040 -4784 48) (1040 -4784 -32) (1040 -4768 -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" + } + side + { + "id" "342551" + "plane" "(1040 -4768 48) (1040 -4768 -32) (1093 -4768 -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" "342550" + "plane" "(1093 -4784 -32) (1040 -4784 -32) (1040 -4784 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342549" + "plane" "(1093 -4784 48) (1040 -4784 48) (1040 -4768 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" "342548" + "plane" "(1093 -4768 48) (1093 -4768 -32) (1093 -4784 -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" + } + editor + { + "color" "0 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613060" + side + { + "id" "342589" + "plane" "(1093 -4768 48) (1158 -4768 48) (1158 -4768 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" "342588" + "plane" "(1158 -4776 48) (1093 -4776 48) (1093 -4776 112)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -511.994] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342587" + "plane" "(1158 -4768 48) (1093 -4768 48) (1093 -4776 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" "342586" + "plane" "(1093 -4768 48) (1093 -4768 112) (1093 -4776 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" "342585" + "plane" "(1158 -4776 48) (1158 -4776 112) (1158 -4768 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" "342584" + "plane" "(1158 -4776 112) (1093 -4776 112) (1093 -4768 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" "0 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613302" + side + { + "id" "342601" + "plane" "(1158 -4768 112) (1158 -4768 155) (1093 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342600" + "plane" "(1093 -4784 112) (1093 -4784 155) (1158 -4784 155)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -511.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342599" + "plane" "(1093 -4768 112) (1093 -4768 155) (1093 -4784 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342598" + "plane" "(1158 -4784 112) (1158 -4784 155) (1158 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342597" + "plane" "(1158 -4768 112) (1093 -4768 112) (1093 -4784 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" "342596" + "plane" "(1158 -4784 155) (1093 -4784 155) (1093 -4768 155)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613303" + side + { + "id" "342607" + "plane" "(1158 -4784 400) (1158 -4768 400) (1184 -4768 400)" + "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" "342606" + "plane" "(1184 -4768 400) (1184 -4768 155) (1184 -4784 155)" + "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" "342605" + "plane" "(1158 -4768 400) (1158 -4768 155) (1184 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342604" + "plane" "(1184 -4784 400) (1184 -4784 155) (1158 -4784 155)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342603" + "plane" "(1158 -4784 400) (1158 -4784 155) (1158 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342602" + "plane" "(1184 -4768 155) (1158 -4768 155) (1158 -4784 155)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613304" + side + { + "id" "342613" + "plane" "(1184 -4768 48) (1184 -4784 48) (1184 -4784 155)" + "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" "342612" + "plane" "(1158 -4768 48) (1184 -4768 48) (1184 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342611" + "plane" "(1184 -4784 48) (1158 -4784 48) (1158 -4784 155)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -511.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342610" + "plane" "(1184 -4784 48) (1184 -4768 48) (1158 -4768 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" "342609" + "plane" "(1158 -4784 48) (1158 -4768 48) (1158 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342608" + "plane" "(1184 -4784 155) (1158 -4784 155) (1158 -4768 155)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613306" + side + { + "id" "342625" + "plane" "(1040 -4768 48) (1040 -4768 155) (1040 -4784 155)" + "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" "342624" + "plane" "(1040 -4768 155) (1040 -4768 48) (1093 -4768 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" "342623" + "plane" "(1093 -4784 48) (1040 -4784 48) (1040 -4784 155)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -511.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342622" + "plane" "(1093 -4768 48) (1040 -4768 48) (1040 -4784 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" "342621" + "plane" "(1093 -4784 48) (1093 -4784 155) (1093 -4768 155)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342620" + "plane" "(1093 -4784 155) (1040 -4784 155) (1040 -4768 155)" + "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 215 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613630" + side + { + "id" "342718" + "plane" "(-304 -1920 192) (-312 -1920 192) (-312 -1824 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" "342717" + "plane" "(-312 -1824 89) (-312 -1824 192) (-312 -1920 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" "342716" + "plane" "(-208 -1824 89) (-208 -1824 192) (-312 -1824 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" "342715" + "plane" "(-312 -1920 89) (-312 -1920 192) (-304 -1920 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" "342714" + "plane" "(-304 -1920 89) (-304 -1920 192) (-208 -1824 192)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342713" + "plane" "(-208 -1824 89) (-312 -1824 89) (-312 -1920 89)" + "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" "166 191 0" + "groupid" "4631706" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613973" + side + { + "id" "342755" + "plane" "(-312 -1920 89) (-312 -1920 -16) (-312 -1862 -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" "342754" + "plane" "(-304 -1920 89) (-304 -1920 -16) (-312 -1920 -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" "342753" + "plane" "(-304 -1920 -16) (-304 -1920 89) (-279 -1895 89)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342752" + "plane" "(-279 -1895 89) (-304 -1920 89) (-312 -1920 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342751" + "plane" "(-312 -1862 89) (-312 -1862 -16) (-279 -1895 -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" "342750" + "plane" "(-312 -1862 -16) (-312 -1920 -16) (-304 -1920 -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" + } + editor + { + "color" "166 191 0" + "groupid" "4631706" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613974" + side + { + "id" "342761" + "plane" "(-312 -1862 -48) (-312 -1920 -48) (-304 -1920 -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" "342760" + "plane" "(-312 -1920 -16) (-312 -1920 -48) (-312 -1862 -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" "342759" + "plane" "(-304 -1920 -16) (-304 -1920 -48) (-312 -1920 -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" "342758" + "plane" "(-279 -1895 -48) (-304 -1920 -48) (-304 -1920 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342757" + "plane" "(-312 -1862 -16) (-312 -1862 -48) (-279 -1895 -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" "342756" + "plane" "(-279 -1895 -16) (-304 -1920 -16) (-312 -1920 -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" + } + editor + { + "color" "166 191 0" + "groupid" "4631713" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613975" + side + { + "id" "342766" + "plane" "(-208 -1824 -16) (-208 -1824 89) (-258 -1824 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342765" + "plane" "(-208 -1824 89) (-208 -1824 -16) (-233 -1849 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342764" + "plane" "(-258 -1824 89) (-208 -1824 89) (-233 -1849 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342763" + "plane" "(-233 -1849 89) (-233 -1849 -16) (-258 -1824 -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" "342762" + "plane" "(-208 -1824 -16) (-258 -1824 -16) (-233 -1849 -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" + } + editor + { + "color" "166 191 0" + "groupid" "4631706" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613976" + side + { + "id" "342771" + "plane" "(-208 -1824 -48) (-258 -1824 -48) (-233 -1849 -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" "342770" + "plane" "(-258 -1824 -48) (-208 -1824 -48) (-208 -1824 -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" "342769" + "plane" "(-208 -1824 -16) (-208 -1824 -48) (-233 -1849 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342768" + "plane" "(-233 -1849 -16) (-233 -1849 -48) (-258 -1824 -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" "342767" + "plane" "(-258 -1824 -16) (-208 -1824 -16) (-233 -1849 -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" + } + editor + { + "color" "0 111 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613998" + side + { + "id" "342784" + "plane" "(-258 -1824 -48) (-312 -1824 -48) (-312 -1862 -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" "342783" + "plane" "(-312 -1862 -48) (-312 -1824 -48) (-312 -1824 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342782" + "plane" "(-312 -1824 89) (-312 -1824 -48) (-258 -1824 -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" "342781" + "plane" "(-312 -1862 89) (-312 -1824 89) (-258 -1824 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342780" + "plane" "(-258 -1824 89) (-258 -1824 -48) (-238 -1844 -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" "342779" + "plane" "(-284 -1890 -48) (-312 -1862 -48) (-312 -1862 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342778" + "plane" "(-238 -1844 -48) (-284 -1890 -48) (-284 -1890 89)" + "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 111 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614012" + side + { + "id" "342795" + "plane" "(-296 -1912 89) (-296 -1832 89) (-216 -1832 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342794" + "plane" "(-296 -1832 -48) (-296 -1912 -48) (-216 -1832 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342793" + "plane" "(-296 -1912 -48) (-296 -1832 -48) (-296 -1832 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342792" + "plane" "(-296 -1832 -48) (-216 -1832 -48) (-216 -1832 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342791" + "plane" "(-216 -1832 -48) (-296 -1912 -48) (-296 -1912 89)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "166 191 0" + "groupid" "4631706" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614054" + side + { + "id" "342814" + "plane" "(8822 7984 5153) (8822 7999 5153) (9201 7999 5153)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342813" + "plane" "(8822 7999 5152) (8822 7984 5152) (9201 7984 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342812" + "plane" "(8822 7984 5152) (8822 7999 5152) (8822 7999 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342811" + "plane" "(9201 7999 5152) (9201 7984 5152) (9201 7984 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342810" + "plane" "(9201 7984 5152) (8822 7984 5152) (8822 7984 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342809" + "plane" "(8822 7999 5152) (9201 7999 5152) (9201 7999 5153)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614055" + side + { + "id" "342820" + "plane" "(8822 7999 5153) (8822 8000 5153) (9201 8000 5153)" + "material" "CONCRETE/BLACKTOP_EXT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342819" + "plane" "(8822 8000 5152) (8822 7999 5152) (9201 7999 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342818" + "plane" "(8822 7999 5152) (8822 8000 5152) (8822 8000 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342817" + "plane" "(9201 8000 5152) (9201 7999 5152) (9201 7999 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342816" + "plane" "(8822 8000 5152) (9201 8000 5152) (9201 8000 5153)" + "material" "CONCRETE/BLACKTOP_EXT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 1 -302.25] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342815" + "plane" "(9201 7999 5152) (8822 7999 5152) (8822 7999 5153)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614139" + side + { + "id" "342833" + "plane" "(9575 7928 5167) (9583 7928 5167) (9583 7912 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342834" + "plane" "(9575 7912 5152) (9583 7912 5152) (9583 7928 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342835" + "plane" "(9575 7928 5167) (9575 7912 5167) (9575 7912 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342836" + "plane" "(9583 7928 5152) (9583 7912 5152) (9583 7912 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342837" + "plane" "(9583 7928 5167) (9575 7928 5167) (9575 7928 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342838" + "plane" "(9583 7912 5152) (9575 7912 5152) (9575 7912 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614147" + side + { + "id" "342850" + "plane" "(9511 7928 5167) (9519 7928 5167) (9519 7912 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342849" + "plane" "(9511 7912 5152) (9519 7912 5152) (9519 7928 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342848" + "plane" "(9511 7928 5167) (9511 7912 5167) (9511 7912 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342847" + "plane" "(9519 7928 5152) (9519 7912 5152) (9519 7912 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342846" + "plane" "(9519 7928 5167) (9511 7928 5167) (9511 7928 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342845" + "plane" "(9519 7912 5152) (9511 7912 5152) (9511 7912 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614153" + side + { + "id" "342910" + "plane" "(9447 7929 5167) (9455 7929 5167) (9455 7913 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342909" + "plane" "(9447 7913 5152) (9455 7913 5152) (9455 7929 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342908" + "plane" "(9447 7929 5167) (9447 7913 5167) (9447 7913 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342907" + "plane" "(9455 7929 5152) (9455 7913 5152) (9455 7913 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342906" + "plane" "(9455 7929 5167) (9447 7929 5167) (9447 7929 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342905" + "plane" "(9455 7913 5152) (9447 7913 5152) (9447 7913 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614154" + side + { + "id" "342916" + "plane" "(9374 7929 5167) (9382 7929 5167) (9382 7913 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342915" + "plane" "(9374 7913 5152) (9382 7913 5152) (9382 7929 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342914" + "plane" "(9374 7929 5167) (9374 7913 5167) (9374 7913 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342913" + "plane" "(9382 7929 5152) (9382 7913 5152) (9382 7913 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342912" + "plane" "(9382 7929 5167) (9374 7929 5167) (9374 7929 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342911" + "plane" "(9382 7913 5152) (9374 7913 5152) (9374 7913 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614155" + side + { + "id" "342922" + "plane" "(9310 7929 5167) (9318 7929 5167) (9318 7913 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342921" + "plane" "(9310 7913 5152) (9318 7913 5152) (9318 7929 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342920" + "plane" "(9310 7929 5167) (9310 7913 5167) (9310 7913 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342919" + "plane" "(9318 7929 5152) (9318 7913 5152) (9318 7913 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342918" + "plane" "(9318 7929 5167) (9310 7929 5167) (9310 7929 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342917" + "plane" "(9318 7913 5152) (9310 7913 5152) (9310 7913 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614156" + side + { + "id" "342970" + "plane" "(9207 7927 5167) (9215 7927 5167) (9215 7911 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342969" + "plane" "(9207 7911 5152) (9215 7911 5152) (9215 7927 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342968" + "plane" "(9207 7927 5167) (9207 7911 5167) (9207 7911 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342967" + "plane" "(9215 7927 5152) (9215 7911 5152) (9215 7911 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342966" + "plane" "(9215 7927 5167) (9207 7927 5167) (9207 7927 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342965" + "plane" "(9215 7911 5152) (9207 7911 5152) (9207 7911 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614157" + side + { + "id" "342976" + "plane" "(9143 7927 5167) (9151 7927 5167) (9151 7911 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342975" + "plane" "(9143 7911 5152) (9151 7911 5152) (9151 7927 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342974" + "plane" "(9143 7927 5167) (9143 7911 5167) (9143 7911 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342973" + "plane" "(9151 7927 5152) (9151 7911 5152) (9151 7911 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342972" + "plane" "(9151 7927 5167) (9143 7927 5167) (9143 7927 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342971" + "plane" "(9151 7911 5152) (9143 7911 5152) (9143 7911 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614158" + side + { + "id" "342982" + "plane" "(9070 7928 5167) (9078 7928 5167) (9078 7912 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342981" + "plane" "(9070 7912 5152) (9078 7912 5152) (9078 7928 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342980" + "plane" "(9070 7928 5167) (9070 7912 5167) (9070 7912 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342979" + "plane" "(9078 7928 5152) (9078 7912 5152) (9078 7912 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342978" + "plane" "(9078 7928 5167) (9070 7928 5167) (9070 7928 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342977" + "plane" "(9078 7912 5152) (9070 7912 5152) (9070 7912 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614159" + side + { + "id" "342988" + "plane" "(9006 7928 5167) (9014 7928 5167) (9014 7912 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342987" + "plane" "(9006 7912 5152) (9014 7912 5152) (9014 7928 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342986" + "plane" "(9006 7928 5167) (9006 7912 5167) (9006 7912 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342985" + "plane" "(9014 7928 5152) (9014 7912 5152) (9014 7912 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342984" + "plane" "(9014 7928 5167) (9006 7928 5167) (9006 7928 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342983" + "plane" "(9014 7912 5152) (9006 7912 5152) (9006 7912 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614160" + side + { + "id" "342994" + "plane" "(8942 7929 5167) (8950 7929 5167) (8950 7913 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342993" + "plane" "(8942 7913 5152) (8950 7913 5152) (8950 7929 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342992" + "plane" "(8942 7929 5167) (8942 7913 5167) (8942 7913 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342991" + "plane" "(8950 7929 5152) (8950 7913 5152) (8950 7913 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342990" + "plane" "(8950 7929 5167) (8942 7929 5167) (8942 7929 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342989" + "plane" "(8950 7913 5152) (8942 7913 5152) (8942 7913 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614161" + side + { + "id" "343000" + "plane" "(8869 7929 5167) (8877 7929 5167) (8877 7913 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342999" + "plane" "(8869 7913 5152) (8877 7913 5152) (8877 7929 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342998" + "plane" "(8869 7929 5167) (8869 7913 5167) (8869 7913 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342997" + "plane" "(8877 7929 5152) (8877 7913 5152) (8877 7913 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342996" + "plane" "(8877 7929 5167) (8869 7929 5167) (8869 7929 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342995" + "plane" "(8877 7913 5152) (8869 7913 5152) (8869 7913 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614162" + side + { + "id" "343006" + "plane" "(8805 7929 5167) (8813 7929 5167) (8813 7913 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343005" + "plane" "(8805 7913 5152) (8813 7913 5152) (8813 7929 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343004" + "plane" "(8805 7929 5167) (8805 7913 5167) (8805 7913 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343003" + "plane" "(8813 7929 5152) (8813 7913 5152) (8813 7913 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343002" + "plane" "(8813 7929 5167) (8805 7929 5167) (8805 7929 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343001" + "plane" "(8813 7913 5152) (8805 7913 5152) (8805 7913 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614175" + side + { + "id" "343042" + "plane" "(8540 7930 5167) (8548 7930 5167) (8548 7914 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343041" + "plane" "(8540 7914 5152) (8548 7914 5152) (8548 7930 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343040" + "plane" "(8540 7930 5167) (8540 7914 5167) (8540 7914 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343039" + "plane" "(8548 7930 5152) (8548 7914 5152) (8548 7914 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343038" + "plane" "(8548 7930 5167) (8540 7930 5167) (8540 7930 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343037" + "plane" "(8548 7914 5152) (8540 7914 5152) (8540 7914 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614182" + side + { + "id" "343084" + "plane" "(8704 7928 5167) (8712 7928 5167) (8712 7912 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343083" + "plane" "(8704 7912 5152) (8712 7912 5152) (8712 7928 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343082" + "plane" "(8704 7928 5167) (8704 7912 5167) (8704 7912 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343081" + "plane" "(8712 7928 5152) (8712 7912 5152) (8712 7912 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343080" + "plane" "(8712 7928 5167) (8704 7928 5167) (8704 7928 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343079" + "plane" "(8712 7912 5152) (8704 7912 5152) (8704 7912 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614183" + side + { + "id" "343090" + "plane" "(8640 7928 5167) (8648 7928 5167) (8648 7912 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343089" + "plane" "(8640 7912 5152) (8648 7912 5152) (8648 7928 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343088" + "plane" "(8640 7928 5167) (8640 7912 5167) (8640 7912 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343087" + "plane" "(8648 7928 5152) (8648 7912 5152) (8648 7912 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343086" + "plane" "(8648 7928 5167) (8640 7928 5167) (8640 7928 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343085" + "plane" "(8648 7912 5152) (8640 7912 5152) (8640 7912 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614192" + side + { + "id" "343120" + "plane" "(8368 7930 5167) (8376 7930 5167) (8376 7914 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343119" + "plane" "(8368 7914 5152) (8376 7914 5152) (8376 7930 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343118" + "plane" "(8368 7930 5167) (8368 7914 5167) (8368 7914 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343117" + "plane" "(8376 7930 5152) (8376 7914 5152) (8376 7914 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343116" + "plane" "(8376 7930 5167) (8368 7930 5167) (8368 7930 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343115" + "plane" "(8376 7914 5152) (8368 7914 5152) (8368 7914 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614193" + side + { + "id" "343126" + "plane" "(8432 7930 5167) (8440 7930 5167) (8440 7914 5167)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343125" + "plane" "(8432 7914 5152) (8440 7914 5152) (8440 7930 5152)" + "material" "CONCRETE/CONCRETE_EXT_14B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343124" + "plane" "(8432 7930 5167) (8432 7914 5167) (8432 7914 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343123" + "plane" "(8440 7930 5152) (8440 7914 5152) (8440 7914 5167)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343122" + "plane" "(8440 7930 5167) (8432 7930 5167) (8432 7930 5152)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343121" + "plane" "(8440 7914 5152) (8432 7914 5152) (8432 7914 5167)" + "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 111 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614259" + side + { + "id" "343150" + "plane" "(8640 7777 5153) (8640 7792 5153) (9019 7792 5153)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343149" + "plane" "(8640 7792 5152) (8640 7777 5152) (9019 7777 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343148" + "plane" "(8640 7777 5152) (8640 7792 5152) (8640 7792 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343147" + "plane" "(9019 7792 5152) (9019 7777 5152) (9019 7777 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343146" + "plane" "(9019 7777 5152) (8640 7777 5152) (8640 7777 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343145" + "plane" "(8640 7792 5152) (9019 7792 5152) (9019 7792 5153)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614260" + side + { + "id" "343156" + "plane" "(8640 7776 5162) (8640 7777 5162) (9019 7777 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343155" + "plane" "(8640 7777 5152) (8640 7776 5152) (9019 7776 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343154" + "plane" "(8640 7776 5152) (8640 7777 5152) (8640 7777 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343153" + "plane" "(9019 7777 5152) (9019 7776 5152) (9019 7776 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343152" + "plane" "(8640 7777 5152) (9019 7777 5152) (9019 7777 5162)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343151" + "plane" "(9019 7776 5152) (8640 7776 5152) (8640 7776 5162)" + "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 212 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614269" + side + { + "id" "343162" + "plane" "(8640 7792 5153) (8640 7793 5153) (9019 7793 5153)" + "material" "CONCRETE/BLACKTOP_EXT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343161" + "plane" "(8640 7793 5152) (8640 7792 5152) (9019 7792 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343160" + "plane" "(8640 7792 5152) (8640 7793 5152) (8640 7793 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343159" + "plane" "(9019 7793 5152) (9019 7792 5152) (9019 7792 5153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343158" + "plane" "(8640 7793 5152) (9019 7793 5152) (9019 7793 5153)" + "material" "CONCRETE/BLACKTOP_EXT_01" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 1 -302.25] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343157" + "plane" "(9019 7792 5152) (8640 7792 5152) (8640 7792 5153)" + "material" "GRASS/HR_GRASS/GRASS_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614490" + side + { + "id" "343163" + "plane" "(9344 8520 5162) (9346 8520 5162) (9346 8072 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343164" + "plane" "(9344 8072 5152) (9346 8072 5152) (9346 8520 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343165" + "plane" "(9344 8520 5162) (9344 8072 5162) (9344 8072 5152)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343166" + "plane" "(9346 8520 5152) (9346 8072 5152) (9346 8072 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343167" + "plane" "(9346 8520 5162) (9344 8520 5162) (9344 8520 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343168" + "plane" "(9346 8072 5152) (9344 8072 5152) (9344 8072 5162)" + "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 133 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614579" + side + { + "id" "343169" + "plane" "(9372 8729 5162) (9373 8729 5162) (9373 8558 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343170" + "plane" "(9372 8558 5152) (9373 8558 5152) (9373 8729 5152)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343171" + "plane" "(9372 8729 5162) (9372 8558 5162) (9372 8558 5152)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343172" + "plane" "(9373 8729 5152) (9373 8558 5152) (9373 8558 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343173" + "plane" "(9373 8729 5162) (9372 8729 5162) (9372 8729 5152)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343174" + "plane" "(9373 8558 5152) (9372 8558 5152) (9372 8558 5162)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "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 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614664" + side + { + "id" "343186" + "plane" "(9736 8901 5162) (9737 8901 5162) (9737 7951 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343185" + "plane" "(9736 7951 5152) (9737 7951 5152) (9737 8901 5152)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343184" + "plane" "(9736 8901 5162) (9736 7951 5162) (9736 7951 5152)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343183" + "plane" "(9737 8901 5152) (9737 7951 5152) (9737 7951 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343182" + "plane" "(9737 8901 5162) (9736 8901 5162) (9736 8901 5152)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343181" + "plane" "(9737 7951 5152) (9736 7951 5152) (9736 7951 5162)" + "material" "BRICK/EMBASSY_BRICKWALL_01A" + "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 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614876" + side + { + "id" "343210" + "plane" "(2485.12 -6176 -25) (2816 -6176 -25) (2816 -6278 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2485.12 -6176 -25]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0.999756 0 0 0 0 0 0 0 0 0 0.941176 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0.941176 0 0 0 0 0 0 0 0.999756 0 0 0 0 0 0.999748 0.00390527 0 0 0 0 0.999748 0.00390527" + "row2" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.999748 0.00390527 0 0 0 0 0 0 0 0 0" + "row3" "0 0 0 -0.447116 0.894232 0 0 0 0 0 0 0 0 0 0 0 0.999756 0 0 0.999756 0 0 0.999756 0 0 0 0" + "row4" "0 0 0 -0.447116 0.894232 0 -0.999512 0 0 0.999512 0 0 -0.999512 0 0 -0.999512 0 0 0 0 0 -0.999512 0 0 0 0 0" + "row5" "0 0 0 -0.999512 0 0 0 0 0 0 0 0 0 0 0 -0.447113 0.894226 0.00349307 -0.999512 0 0 0 0 0 0 0 0" + "row6" "0 0 0 -0.999512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -0.999512 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" + } + distances + { + "row0" "0.000488281 0 0 1.90735e-06 0 0 0 0 0" + "row1" "0 1.90735e-06 0 0 0.000488281 0 0.000488285 0 0.000488285" + "row2" "0 0 0 0 0 0.000488285 0 0 0" + "row3" "0 0.000545915 0 0 0 0.000488281 0.000488281 0.000488281 0" + "row4" "0 0.000545915 0.000244141 0.000244141 0.000244141 0.000244141 0 0.000244141 0" + "row5" "0 0.000244141 0 0 0 0.000545918 0.000244141 0 0" + "row6" "0 0.000244141 0 0 0 0 0 0.000244141 0" + "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 0 1 -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" "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" "343209" + "plane" "(2491.12 -6278 -26) (2816 -6278 -26) (2816 -6176 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343208" + "plane" "(2816 -6176 -26) (2816 -6278 -26) (2816 -6278 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343207" + "plane" "(2485.12 -6176 -26) (2816 -6176 -26) (2816 -6176 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343206" + "plane" "(2816 -6278 -26) (2491.12 -6278 -26) (2491.12 -6278 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343205" + "plane" "(2491.12 -6278 -26) (2485.12 -6176 -26) (2485.12 -6176 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614943" + side + { + "id" "343216" + "plane" "(2314 -6278 -25) (2224 -6278 -25) (2224 -6176 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2224 -6176 -25]" + "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.447113 0.894226 0.00349307 -0.447113 0.894226 0.00349307" + "row1" "0 0 0 0.447113 -0.894226 -0.00349307 0 0 -0.941176 0 0 0 0 0 0 0 0 0 0 0 0.941176 0 0 0 0 0 0" + "row2" "0 0 0 0 -0.999756 0 0 0 0 0 -0.999748 -0.00390527 0 0 0 0 0 0 0 0 0.941176 0 0 0 0 0 0" + "row3" "0 0 0.941176 0 0 0 -0.999512 0 0 0.447116 -0.894232 0 0 -0.999756 0 -0.999512 0 0 -0.999481 0 0.00780845 0 0.999748 0.00390527 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 -0.941176 0 0 0 0 0 0 0 0 0.941176 -0.999481 0 0.00780845 0 0 0" + "row5" "0 0.999748 0.00390527 0 -0.999756 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.999748 0.00390527 -0.999481 0 0.00780845 0 0 0" + "row6" "-0.999512 0 0 0 0 0 0 -0.999748 -0.00390527 0 -0.999748 -0.00390527 0.447113 -0.894226 -0.00349307 0 0.999748 0.00390527 0 0 0 -0.447113 0.894226 0.00349307 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.999512 0 0 0 0 0 0 -0.999748 -0.00390527 0 0 0 -0.447113 0.894226 0.00349307 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0 0 0 0.000545918 0.000545918" + "row1" "0 0.000545918 1.90735e-06 0 0 0 1.90735e-06 0 0" + "row2" "0 0.000488281 0 0.000488285 0 0 1.90735e-06 0 0" + "row3" "1.90735e-06 0 0.000244141 0.000545915 0.000488281 0.000244141 0.000244148 0.000488285 0" + "row4" "0 0 0 1.90735e-06 0 0 1.90735e-06 0.000244148 0" + "row5" "0.000488285 0.000488281 0 0 0 0 0.000488285 0.000244148 0" + "row6" "0.000244141 0 0.000488285 0.000488285 0.000545918 0.000488285 0 0.000545918 0" + "row7" "0 0 0 0 0 0 0 0 0" + "row8" "0 0.000244141 0 0.000488285 0 0.000545918 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" "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" "343215" + "plane" "(2314 -6176 -26) (2224 -6176 -26) (2224 -6278 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343214" + "plane" "(2224 -6278 -26) (2224 -6176 -26) (2224 -6176 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343213" + "plane" "(2224 -6176 -26) (2314 -6176 -26) (2314 -6176 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343212" + "plane" "(2314 -6278 -26) (2224 -6278 -26) (2224 -6278 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343211" + "plane" "(2314 -6176 -26) (2314 -6278 -26) (2314 -6278 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4614944" + side + { + "id" "343222" + "plane" "(2491.12 -6278 -25) (2314 -6278 -25) (2314 -6176 -25)" + "material" "CONCRETE/BAGGAGE_CONCRETEFLOORA" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2314 -6176 -25]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 -0.999512 0 0 0 0 0 0 -0.999748 -0.00390527 0 0 0 -0.447113 0.894226 0.00349307 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 -0.999512 0 0 0 0 0 0 0 -0.941176 -0.999512 0 0 -0.999512 0 0 0 0 0 -0.447116 0.894232 0 0 0 0.941176" + "row2" "0 0 0.941176 -0.447116 0.894232 0 0 -0.999756 0 0 0 0 0 0 0 0 0 0.941176 0 0.999748 0.00390527 0 0 0.941176 0 0 0" + "row3" "-0.447113 0.894226 0.00349307 0 0 0 0 0 0 0.999512 0 0 0 0 -0.941176 0 0 0 0 0.999748 0.00390527 -0.447113 0.894226 0.00349307 0 0 0" + "row4" "0 0 0 0 0.999756 0 0 0 0 0 0 0 0.447116 -0.894232 0 0 0.999756 0 0 0 0 0 0 0 0 0 0" + "row5" "-0.999481 0 0.00780845 0 0 0 0 0 0 0 0 -0.941176 0 0 0 0 0 0.941176 -0.447113 0.894226 0.00349307 0 0 0 0 0 0" + "row6" "0 0 0 0 -0.999748 0.00390527 0 0 0 0 0 0 0 0.999756 0 0 0 0.941176 -0.447113 0.894226 0.00349307 0 0 0 0 0.999725 0.00781035" + "row7" "0 0 0 0.447116 -0.894232 0 0 0 -0.941176 0 0 -0.941176 -0.242507 0.970028 0 -0.447113 0.894226 0.00349307 0 0.999756 0 0 0 0 0 0 0" + "row8" "-0.242506 0.970026 0.00189458 0 0 0 0 0 0 0.999481 0 0.00780845 0 0 0 0 0 0 0 0.999756 0 0 0.999748 0.00390527 0 0 -0.941176" + } + distances + { + "row0" "0 0.000244141 0 0.000488285 0 0.000545918 0 0 0" + "row1" "0 0.000244141 0 1.90735e-06 0.000244141 0.000244141 0 0.000545915 1.90735e-06" + "row2" "1.90735e-06 0.000545915 0.000488281 0 0 1.90735e-06 0.000488285 1.90735e-06 0" + "row3" "0.000545918 0 0 0.000244141 1.90735e-06 0 0.000488285 0.000545918 0" + "row4" "0 0.000488281 0 0 0.000545915 0.000488281 0 0 0" + "row5" "0.000244148 0 0 1.90735e-06 0 1.90735e-06 0.000545918 0 0" + "row6" "0 0.000488285 0 0 0.000488281 1.90735e-06 0.000545918 0 0.000488296" + "row7" "0 0.000545915 1.90735e-06 1.90735e-06 0.00100662 0.000545918 0.000488281 0 0" + "row8" "0.00100662 0 0 0.000244148 0 0 0.000488281 0.000488285 1.90735e-06" + } + 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" "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" "343221" + "plane" "(2485.12 -6176 -26) (2314 -6176 -26) (2314 -6278 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343220" + "plane" "(2314 -6176 -26) (2485.12 -6176 -26) (2485.12 -6176 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343219" + "plane" "(2491.12 -6278 -26) (2314 -6278 -26) (2314 -6278 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343218" + "plane" "(2485.12 -6176 -26) (2491.12 -6278 -26) (2491.12 -6278 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343217" + "plane" "(2314 -6278 -26) (2314 -6176 -26) (2314 -6176 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4615398" + side + { + "id" "343264" + "plane" "(1040 -4216 172) (1040 -4216 156) (1040 -4200 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343263" + "plane" "(1527 -4200 172) (1527 -4200 156) (1527 -4216 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343262" + "plane" "(1040 -4200 172) (1040 -4200 156) (1527 -4200 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 511.992] 0.125" + "vaxis" "[0 0 -1 94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343261" + "plane" "(1527 -4216 172) (1527 -4216 156) (1040 -4216 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343260" + "plane" "(1040 -4216 172) (1040 -4200 172) (1527 -4200 172)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343259" + "plane" "(1040 -4200 156) (1040 -4216 156) (1527 -4216 156)" + "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 100 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4615399" + side + { + "id" "343270" + "plane" "(1040 -4200 48) (1040 -4216 48) (1527 -4216 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" "343269" + "plane" "(1040 -4216 156) (1040 -4216 48) (1040 -4200 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" "343268" + "plane" "(1527 -4200 156) (1527 -4200 48) (1527 -4216 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" "343267" + "plane" "(1040 -4200 156) (1040 -4200 48) (1527 -4200 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343266" + "plane" "(1527 -4216 156) (1527 -4216 48) (1040 -4216 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" "343265" + "plane" "(1040 -4216 156) (1040 -4200 156) (1527 -4200 156)" + "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 100 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4615624" + side + { + "id" "343300" + "plane" "(848 -5888 48) (864 -5872 48) (1040 -5872 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" "343299" + "plane" "(864 -5872 0) (848 -5888 0) (1040 -5888 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" "343298" + "plane" "(848 -5888 0) (864 -5872 0) (864 -5872 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" "343297" + "plane" "(864 -5872 0) (1040 -5872 0) (1040 -5872 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" "343296" + "plane" "(1040 -5888 0) (848 -5888 0) (848 -5888 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343295" + "plane" "(1040 -5872 0) (1040 -5888 0) (1040 -5888 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 103 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4615630" + side + { + "id" "343312" + "plane" "(864 -5872 156) (864 -5616 156) (1040 -5616 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343311" + "plane" "(864 -5616 48) (864 -5616 156) (864 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343310" + "plane" "(1040 -5872 48) (1040 -5872 156) (1040 -5616 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343309" + "plane" "(1040 -5616 48) (1040 -5616 156) (864 -5616 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343308" + "plane" "(864 -5872 48) (864 -5872 156) (1040 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343307" + "plane" "(864 -5616 48) (864 -5872 48) (1040 -5872 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 244 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4615631" + side + { + "id" "343318" + "plane" "(864 -5616 0) (864 -5872 0) (1040 -5872 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" "343317" + "plane" "(864 -5872 0) (864 -5616 0) (864 -5616 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" "343316" + "plane" "(1040 -5616 0) (1040 -5872 0) (1040 -5872 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343315" + "plane" "(864 -5616 0) (1040 -5616 0) (1040 -5616 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" "343314" + "plane" "(1040 -5872 0) (864 -5872 0) (864 -5872 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" "343313" + "plane" "(864 -5872 48) (864 -5616 48) (1040 -5616 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 244 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4615700" + side + { + "id" "343331" + "plane" "(1040 -5857 240.062) (1182 -5857 240.062) (1182 -5888 240.062)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343332" + "plane" "(1040 -5888 0.0621262) (1182 -5888 0.0621262) (1182 -5857 0.0621262)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343333" + "plane" "(1040 -5857 240.062) (1040 -5888 240.062) (1040 -5888 0.0621262)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343334" + "plane" "(1182 -5857 0.0621262) (1182 -5888 0.0621262) (1182 -5888 240.062)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343335" + "plane" "(1182 -5857 240.062) (1040 -5857 240.062) (1040 -5857 0.0621262)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343336" + "plane" "(1182 -5888 0.0621262) (1040 -5888 0.0621262) (1040 -5888 240.062)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4615796" + side + { + "id" "343361" + "plane" "(1040 -5585 6) (1184 -5585 6) (1184 -5855 6)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1040 -5855 6]" + "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 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" + } + 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 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" + } + 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" "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" "343362" + "plane" "(1040 -5855 5) (1184 -5855 5) (1184 -5585 5)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343363" + "plane" "(1040 -5585 6) (1040 -5855 6) (1040 -5855 5)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343364" + "plane" "(1184 -5585 5) (1184 -5855 5) (1184 -5855 6)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343365" + "plane" "(1184 -5585 6) (1040 -5585 6) (1040 -5585 5)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343366" + "plane" "(1184 -5855 5) (1040 -5855 5) (1040 -5855 6)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4615888" + side + { + "id" "343367" + "plane" "(1024 -5616 160) (1040 -5616 160) (1040 -5872 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" "343368" + "plane" "(1024 -5872 156) (1040 -5872 156) (1040 -5616 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343369" + "plane" "(1024 -5616 160) (1024 -5872 160) (1024 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343370" + "plane" "(1040 -5616 156) (1040 -5872 156) (1040 -5872 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -383] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343371" + "plane" "(1040 -5616 160) (1024 -5616 160) (1024 -5616 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343372" + "plane" "(1040 -5872 156) (1024 -5872 156) (1024 -5872 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" + } + editor + { + "color" "0 203 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4598091" + side + { + "id" "342493" + "plane" "(1277 -3396 240) (1312 -3376 240) (1312 -3424 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342492" + "plane" "(1271 -3424 16) (1312 -3424 16) (1312 -3376 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342491" + "plane" "(1312 -3376 16) (1312 -3424 16) (1312 -3424 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342490" + "plane" "(1277 -3396 16) (1312 -3376 16) (1312 -3376 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342489" + "plane" "(1312 -3424 16) (1271 -3424 16) (1271 -3424 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342488" + "plane" "(1271 -3424 16) (1277 -3396 16) (1277 -3396 240)" + "material" "TOOLS/TOOLSCLIP" + "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 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4567328" + side + { + "id" "342440" + "plane" "(-760 -4610 32) (-644.056 -4610 32) (-618 -4645 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342439" + "plane" "(-744 -4648 16) (-618 -4648 16) (-618 -4645 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" "342438" + "plane" "(-760 -4610 16) (-760 -4610 32) (-744 -4648 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" "342437" + "plane" "(-618 -4648 16) (-618 -4648 32) (-618 -4645 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" "342436" + "plane" "(-644.056 -4610 16) (-644.056 -4610 32) (-760 -4610 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" "342435" + "plane" "(-744 -4648 16) (-744 -4648 32) (-618 -4648 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" "342434" + "plane" "(-618 -4645 16) (-618 -4645 32) (-644.056 -4610 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 161" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4567900" + side + { + "id" "342451" + "plane" "(1632 -3192 560) (1632 -2672 560) (2192 -2672 560)" + "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" "342450" + "plane" "(1632 -2672 536) (1632 -2672 560) (1632 -3192 560)" + "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" "342449" + "plane" "(2192 -3192 536) (2192 -3192 560) (2192 -2672 560)" + "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" "342448" + "plane" "(2192 -2672 536) (2192 -2672 560) (1632 -2672 560)" + "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" "342447" + "plane" "(1632 -3192 536) (1632 -3192 560) (2192 -3192 560)" + "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" "342446" + "plane" "(1632 -2672 536) (1632 -3192 536) (2192 -3192 536)" + "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" "0 145 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4568074" + side + { + "id" "342463" + "plane" "(2192 -3728 560) (2192 -2672 560) (2416 -2672 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342462" + "plane" "(2192 -2672 536) (2192 -2672 560) (2192 -3728 560)" + "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" "342461" + "plane" "(2416 -3728 536) (2416 -3728 560) (2416 -2672 560)" + "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" "342460" + "plane" "(2416 -2672 536) (2416 -2672 560) (2192 -2672 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342459" + "plane" "(2192 -3728 536) (2192 -3728 560) (2416 -3728 560)" + "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" "342458" + "plane" "(2192 -2672 536) (2192 -3728 536) (2416 -3728 536)" + "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" "0 155 188" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4568084" + side + { + "id" "342475" + "plane" "(2416 -3728 560) (2416 -3712 560) (2792 -3712 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342474" + "plane" "(2416 -3712 536) (2416 -3712 560) (2416 -3728 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 -1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342473" + "plane" "(2792 -3728 536) (2792 -3728 560) (2792 -3712 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342472" + "plane" "(2792 -3712 536) (2792 -3712 560) (2416 -3712 560)" + "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" "342471" + "plane" "(2416 -3728 536) (2416 -3728 560) (2792 -3728 560)" + "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" "342470" + "plane" "(2416 -3712 536) (2416 -3728 536) (2792 -3728 536)" + "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" "0 235 164" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551607" + side + { + "id" "342087" + "plane" "(8912 8215 5152) (8912 8340 5152) (8946 8340 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 125] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8912 8215 5152]" + "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 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" + } + 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 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" + } + 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" "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" "342088" + "plane" "(8912 8340 5151) (8912 8215 5151) (8946 8215 5151)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342089" + "plane" "(8912 8215 5151) (8912 8340 5151) (8912 8340 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342090" + "plane" "(8946 8340 5151) (8946 8215 5151) (8946 8215 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342091" + "plane" "(8912 8340 5151) (8946 8340 5151) (8946 8340 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342092" + "plane" "(8946 8215 5151) (8912 8215 5151) (8912 8215 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551611" + side + { + "id" "342104" + "plane" "(8822 7983 5162) (8822 7984 5162) (9201 7984 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342103" + "plane" "(8822 7984 5152) (8822 7983 5152) (9201 7983 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342102" + "plane" "(8822 7983 5152) (8822 7984 5152) (8822 7984 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342101" + "plane" "(9201 7984 5152) (9201 7983 5152) (9201 7983 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342100" + "plane" "(8822 7984 5152) (9201 7984 5152) (9201 7984 5162)" + "material" "BRICK/HR_BRICK/BRICK_B" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342099" + "plane" "(9201 7983 5152) (8822 7983 5152) (8822 7983 5162)" + "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 212 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551643" + side + { + "id" "342116" + "plane" "(8193 8527 5162) (8193 8901 5162) (8194 8901 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342115" + "plane" "(8193 8901 5152) (8193 8527 5152) (8194 8527 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342114" + "plane" "(8193 8527 5152) (8193 8901 5152) (8193 8901 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342113" + "plane" "(8194 8901 5152) (8194 8527 5152) (8194 8527 5162)" + "material" "BRICK/HR_BRICK/BRICK_B" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342112" + "plane" "(8193 8901 5152) (8194 8901 5152) (8194 8901 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342111" + "plane" "(8194 8527 5152) (8193 8527 5152) (8193 8527 5162)" + "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 212 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551655" + side + { + "id" "342128" + "plane" "(8453 7434 5162) (8453 8557 5162) (8454 8557 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342127" + "plane" "(8453 8557 5152) (8453 7434 5152) (8454 7434 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342126" + "plane" "(8453 7434 5152) (8453 8557 5152) (8453 8557 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342125" + "plane" "(8454 8557 5152) (8454 7434 5152) (8454 7434 5162)" + "material" "BRICK/HR_BRICK/BRICK_B" + "uaxis" "[0 1 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342124" + "plane" "(8453 8557 5152) (8454 8557 5152) (8454 8557 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342123" + "plane" "(8454 7434 5152) (8453 7434 5152) (8453 7434 5162)" + "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 212 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551684" + side + { + "id" "342134" + "plane" "(2224 -6144 560) (2224 -5712 560) (2256 -5712 560)" + "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" "342133" + "plane" "(2224 -5712 400) (2224 -5712 560) (2224 -6144 560)" + "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" "342132" + "plane" "(2256 -6144 400) (2256 -6144 560) (2256 -5712 560)" + "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" "342131" + "plane" "(2256 -5712 400) (2256 -5712 560) (2224 -5712 560)" + "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" "342130" + "plane" "(2224 -6144 400) (2224 -6144 560) (2256 -6144 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" "342129" + "plane" "(2224 -5712 400) (2224 -6144 400) (2256 -6144 400)" + "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" "0 232 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551701" + side + { + "id" "342158" + "plane" "(2224 -6144 184) (2224 -6144 156) (2224 -5712 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -191.996] 0.125" + "vaxis" "[0 0 -1 189] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342157" + "plane" "(2256 -5712 184) (2256 -5712 156) (2256 -6144 156)" + "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" "342156" + "plane" "(2224 -5712 184) (2224 -5712 156) (2256 -5712 156)" + "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" "342155" + "plane" "(2256 -6144 184) (2256 -6144 156) (2224 -6144 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342154" + "plane" "(2224 -6144 184) (2224 -5712 184) (2256 -5712 184)" + "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" "342153" + "plane" "(2224 -5712 156) (2224 -6144 156) (2256 -6144 156)" + "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" "0 232 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551702" + side + { + "id" "342164" + "plane" "(2224 -6144 156) (2224 -6144 48) (2224 -5712 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 255.996] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342163" + "plane" "(2256 -5712 156) (2256 -5712 48) (2256 -6144 48)" + "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" "342162" + "plane" "(2224 -5712 156) (2224 -5712 48) (2256 -5712 48)" + "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" "342161" + "plane" "(2256 -6144 156) (2256 -6144 48) (2224 -6144 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" "342160" + "plane" "(2224 -5712 48) (2224 -6144 48) (2256 -6144 48)" + "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" "342159" + "plane" "(2224 -6144 156) (2224 -5712 156) (2256 -5712 156)" + "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" "0 232 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551773" + side + { + "id" "342165" + "plane" "(2224 -6144 48) (2752 -6144 48) (2752 -6176 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" "342166" + "plane" "(2224 -6176 -48) (2752 -6176 -48) (2752 -6144 -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" "342167" + "plane" "(2224 -6144 48) (2224 -6176 48) (2224 -6176 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -127] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342168" + "plane" "(2752 -6144 -48) (2752 -6176 -48) (2752 -6176 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" "342169" + "plane" "(2752 -6144 48) (2224 -6144 48) (2224 -6144 -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" "342170" + "plane" "(2752 -6176 -48) (2224 -6176 -48) (2224 -6176 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -127] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 245 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551780" + side + { + "id" "342171" + "plane" "(2224 -6144 560) (2752 -6144 560) (2752 -6176 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342172" + "plane" "(2224 -6176 400) (2752 -6176 400) (2752 -6144 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" "342173" + "plane" "(2224 -6144 560) (2224 -6176 560) (2224 -6176 400)" + "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" "342174" + "plane" "(2752 -6144 400) (2752 -6176 400) (2752 -6176 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342175" + "plane" "(2752 -6144 560) (2224 -6144 560) (2224 -6144 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342176" + "plane" "(2752 -6176 400) (2224 -6176 400) (2224 -6176 560)" + "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" "0 231 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551786" + side + { + "id" "342183" + "plane" "(2224 -6144 156) (2752 -6144 156) (2752 -6176 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342184" + "plane" "(2224 -6176 48) (2752 -6176 48) (2752 -6144 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" "342185" + "plane" "(2224 -6144 156) (2224 -6176 156) (2224 -6176 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342186" + "plane" "(2752 -6144 48) (2752 -6176 48) (2752 -6176 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342187" + "plane" "(2752 -6144 156) (2224 -6144 156) (2224 -6144 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" "342188" + "plane" "(2752 -6176 48) (2224 -6176 48) (2224 -6176 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 119 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4551789" + side + { + "id" "342189" + "plane" "(2224 -6144 184) (2752 -6144 184) (2752 -6176 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342190" + "plane" "(2224 -6176 156) (2752 -6176 156) (2752 -6144 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342191" + "plane" "(2224 -6144 184) (2224 -6176 184) (2224 -6176 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -191.996] 0.125" + "vaxis" "[0 0 -1 189] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342192" + "plane" "(2752 -6144 156) (2752 -6176 156) (2752 -6176 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" "342193" + "plane" "(2752 -6144 184) (2224 -6144 184) (2224 -6144 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342194" + "plane" "(2752 -6176 156) (2224 -6176 156) (2224 -6176 184)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 192] 0.125" + "vaxis" "[0 0 -1 189] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4552139" + side + { + "id" "342259" + "plane" "(448.873 -4981.14 160) (406.665 -4995.53 160) (368.294 -5018.14 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342260" + "plane" "(493 -4976 260) (537.127 -4981.14 260) (579.335 -4995.53 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342261" + "plane" "(493 -4976 160) (537.127 -4981.14 160) (537.127 -4981.14 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342262" + "plane" "(537.127 -4981.14 160) (579.335 -4995.53 160) (579.335 -4995.53 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342263" + "plane" "(579.335 -4995.53 160) (617.706 -5018.14 160) (617.706 -5018.14 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342264" + "plane" "(617.706 -5018.14 160) (651.281 -5048.97 160) (651.281 -5048.97 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342265" + "plane" "(651.281 -5048.97 160) (677.181 -5087 160) (677.181 -5087 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342266" + "plane" "(677.181 -5087 160) (695.407 -5129.14 160) (695.407 -5129.14 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342267" + "plane" "(695.407 -5129.14 160) (705 -5174.36 160) (705 -5174.36 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342268" + "plane" "(705 -5174.36 160) (705 -5221.64 160) (705 -5221.64 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342269" + "plane" "(705 -5221.64 160) (695.407 -5266.86 160) (695.407 -5266.86 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342270" + "plane" "(695.407 -5266.86 160) (677.181 -5309 160) (677.181 -5309 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342271" + "plane" "(677.181 -5309 160) (651.281 -5347.03 160) (651.281 -5347.03 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342272" + "plane" "(651.281 -5347.03 160) (617.706 -5377.86 160) (617.706 -5377.86 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342273" + "plane" "(617.706 -5377.86 160) (579.335 -5400.47 160) (579.335 -5400.47 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342274" + "plane" "(579.335 -5400.47 160) (537.127 -5414.86 160) (537.127 -5414.86 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342275" + "plane" "(537.127 -5414.86 160) (493 -5420 160) (493 -5420 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342276" + "plane" "(493 -5420 160) (448.873 -5414.86 160) (448.873 -5414.86 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342277" + "plane" "(448.873 -5414.86 160) (406.665 -5400.47 160) (406.665 -5400.47 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342278" + "plane" "(406.665 -5400.47 160) (368.294 -5377.86 160) (368.294 -5377.86 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342279" + "plane" "(368.294 -5377.86 160) (334.719 -5347.03 160) (334.719 -5347.03 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342280" + "plane" "(334.719 -5347.03 160) (308.819 -5309 160) (308.819 -5309 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342281" + "plane" "(308.819 -5309 160) (290.593 -5266.86 160) (290.593 -5266.86 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342282" + "plane" "(290.593 -5266.86 160) (281 -5221.64 160) (281 -5221.64 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342283" + "plane" "(281 -5221.64 160) (281 -5174.36 160) (281 -5174.36 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342284" + "plane" "(281 -5174.36 160) (290.593 -5129.14 160) (290.593 -5129.14 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342285" + "plane" "(290.593 -5129.14 160) (308.819 -5087 160) (308.819 -5087 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342286" + "plane" "(308.819 -5087 160) (334.719 -5048.97 160) (334.719 -5048.97 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342287" + "plane" "(334.719 -5048.97 160) (368.294 -5018.14 160) (368.294 -5018.14 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342288" + "plane" "(368.294 -5018.14 160) (406.665 -4995.53 160) (406.665 -4995.53 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342289" + "plane" "(406.665 -4995.53 160) (448.873 -4981.14 160) (448.873 -4981.14 260)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342290" + "plane" "(448.873 -4981.14 160) (493 -4976 160) (493 -4976 260)" + "material" "TOOLS/TOOLSCLIP" + "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 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522498" + side + { + "id" "341875" + "plane" "(-533 -3708 54.5943) (-533 -3736 54.5943) (-811 -3736 54.5943)" + "material" "TOOLS/TOOLSCLIP_METAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341876" + "plane" "(-533 -3736 31.5943) (-533 -3708 31.5943) (-840 -3708 31.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341877" + "plane" "(-840 -3708 54.5943) (-811 -3736 54.5943) (-811 -3736 31.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341878" + "plane" "(-533 -3736 54.5943) (-533 -3708 54.5943) (-533 -3708 31.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341879" + "plane" "(-533 -3708 54.5943) (-840 -3708 54.5943) (-840 -3708 31.5943)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341880" + "plane" "(-811 -3736 54.5943) (-533 -3736 54.5943) (-533 -3736 31.5943)" + "material" "TOOLS/TOOLSCLIP" + "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 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522728" + side + { + "id" "341960" + "plane" "(2056 -3456 224) (2128 -3456 224) (2128 -3200 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" "341959" + "plane" "(2128 -3200 224) (2128 -3456 224) (2128 -3456 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341958" + "plane" "(2056 -3200 224) (2128 -3200 224) (2128 -3200 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341957" + "plane" "(2128 -3456 224) (2056 -3456 224) (2056 -3456 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341956" + "plane" "(2056 -3456 224) (2056 -3200 224) (2056 -3200 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341955" + "plane" "(2056 -3200 358) (2128 -3200 358) (2128 -3456 358)" + "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 253 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522745" + side + { + "id" "341972" + "plane" "(2112 -3456 272) (2112 -3456 358) (2112 -3792 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341971" + "plane" "(2128 -3792 272) (2128 -3792 358) (2128 -3456 358)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341970" + "plane" "(2128 -3456 272) (2128 -3456 358) (2112 -3456 358)" + "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" "341969" + "plane" "(2112 -3792 272) (2112 -3792 358) (2128 -3792 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341968" + "plane" "(2112 -3456 272) (2112 -3792 272) (2128 -3792 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" "341967" + "plane" "(2112 -3792 358) (2112 -3456 358) (2128 -3456 358)" + "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 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522758" + side + { + "id" "341984" + "plane" "(2128 -3792 358) (2128 -3792 208) (2128 -3776 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" "341983" + "plane" "(2128 -3776 358) (2128 -3776 208) (2240 -3776 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[-1 0 0 -319.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341982" + "plane" "(2240 -3792 208) (2128 -3792 208) (2128 -3792 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341981" + "plane" "(2240 -3776 208) (2128 -3776 208) (2128 -3792 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" "341980" + "plane" "(2240 -3776 358) (2240 -3776 208) (2240 -3792 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" "341979" + "plane" "(2240 -3792 358) (2128 -3792 358) (2128 -3776 358)" + "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 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522762" + side + { + "id" "341985" + "plane" "(2128 -3200 382) (2192 -3200 382) (2192 -3776 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341986" + "plane" "(2128 -3776 368) (2192 -3776 368) (2192 -3200 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" "341987" + "plane" "(2128 -3200 382) (2128 -3776 382) (2128 -3776 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" "341988" + "plane" "(2192 -3200 368) (2192 -3776 368) (2192 -3776 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341989" + "plane" "(2192 -3200 382) (2128 -3200 382) (2128 -3200 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" "341990" + "plane" "(2192 -3776 368) (2128 -3776 368) (2128 -3776 382)" + "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 170 223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522763" + side + { + "id" "341991" + "plane" "(2192 -3776 382) (2192 -3728 382) (2792 -3728 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341992" + "plane" "(2192 -3728 368) (2192 -3776 368) (2792 -3776 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" "341993" + "plane" "(2192 -3776 368) (2192 -3728 368) (2192 -3728 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341994" + "plane" "(2792 -3728 368) (2792 -3776 368) (2792 -3776 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341995" + "plane" "(2192 -3728 368) (2792 -3728 368) (2792 -3728 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341996" + "plane" "(2792 -3776 368) (2192 -3776 368) (2192 -3776 382)" + "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 112 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522772" + side + { + "id" "342008" + "plane" "(2240 -3776 358) (2240 -3776 296) (2497 -3776 296)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[-1 0 0 -319.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342007" + "plane" "(2497 -3792 358) (2497 -3792 296) (2240 -3792 296)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342006" + "plane" "(2240 -3792 358) (2240 -3792 296) (2240 -3776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342005" + "plane" "(2497 -3776 358) (2497 -3776 296) (2497 -3792 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342004" + "plane" "(2497 -3776 296) (2240 -3776 296) (2240 -3792 296)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342003" + "plane" "(2497 -3792 358) (2240 -3792 358) (2240 -3776 358)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522788" + side + { + "id" "342020" + "plane" "(2808 -3776 358) (2808 -3776 208) (2808 -3792 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.665708 0.746211 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342019" + "plane" "(2497 -3776 358) (2497 -3776 208) (2808 -3776 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[-1 0 0 -319.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342018" + "plane" "(2808 -3792 358) (2808 -3792 208) (2497 -3792 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342017" + "plane" "(2497 -3792 208) (2808 -3792 208) (2808 -3776 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" "342016" + "plane" "(2497 -3792 358) (2497 -3792 208) (2497 -3776 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" "342015" + "plane" "(2497 -3776 358) (2808 -3776 358) (2808 -3792 358)" + "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 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522791" + side + { + "id" "342021" + "plane" "(2792 -4248 368) (2792 -4096 368) (2808 -4096 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" "342022" + "plane" "(2792 -4096 16) (2792 -4248 16) (2808 -4248 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" "342023" + "plane" "(2792 -4248 16) (2792 -4096 16) (2792 -4096 368)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342024" + "plane" "(2808 -4096 16) (2808 -4248 16) (2808 -4248 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" "342025" + "plane" "(2792 -4096 16) (2808 -4096 16) (2808 -4096 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" "342026" + "plane" "(2808 -4248 16) (2792 -4248 16) (2792 -4248 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 212 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522794" + side + { + "id" "342027" + "plane" "(2792 -4248 16) (2792 -4096 16) (2808 -4096 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" "342028" + "plane" "(2792 -4096 -48) (2792 -4248 -48) (2808 -4248 -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" "342029" + "plane" "(2792 -4248 -48) (2792 -4096 -48) (2792 -4096 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -416] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342030" + "plane" "(2808 -4096 -48) (2808 -4248 -48) (2808 -4248 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" "342031" + "plane" "(2792 -4096 -48) (2808 -4096 -48) (2808 -4096 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" "342032" + "plane" "(2808 -4248 -48) (2792 -4248 -48) (2792 -4248 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 146 183" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4523025" + side + { + "id" "342057" + "plane" "(8912 8207 5152) (8912 8215 5152) (9297 8215 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8912 8207 5152]" + "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 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" + } + 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 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" + } + 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" "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" "342058" + "plane" "(8912 8215 5151) (8912 8207 5151) (9297 8207 5151)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342059" + "plane" "(8912 8207 5151) (8912 8215 5151) (8912 8215 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342060" + "plane" "(9297 8215 5151) (9297 8207 5151) (9297 8207 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342061" + "plane" "(8912 8215 5151) (9297 8215 5151) (9297 8215 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342062" + "plane" "(9297 8207 5151) (8912 8207 5151) (8912 8207 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "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 215" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4523155" + side + { + "id" "342063" + "plane" "(8746 8679 5148) (8746 8901 5148) (9369 8901 5148)" + "material" "LIQUIDS/CEMENTPLANTWATER_CHEAP" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342064" + "plane" "(8746 8901 5147) (8746 8679 5147) (9369 8679 5147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342065" + "plane" "(8746 8679 5147) (8746 8901 5147) (8746 8901 5148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342066" + "plane" "(9369 8901 5147) (9369 8679 5147) (9369 8679 5148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342067" + "plane" "(8746 8901 5147) (9369 8901 5147) (9369 8901 5148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342068" + "plane" "(9369 8679 5147) (8746 8679 5147) (8746 8679 5148)" + "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 112 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4523223" + side + { + "id" "342069" + "plane" "(8452.69 7434 5162) (9642.69 7434 5162) (9642.69 7433 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342070" + "plane" "(8452.69 7433 5152) (9642.69 7433 5152) (9642.69 7434 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342071" + "plane" "(8452.69 7434 5162) (8452.69 7433 5162) (8452.69 7433 5152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342072" + "plane" "(9642.69 7434 5152) (9642.69 7433 5152) (9642.69 7433 5162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342073" + "plane" "(9642.69 7434 5162) (8452.69 7434 5162) (8452.69 7434 5152)" + "material" "BRICK/HR_BRICK/BRICK_B" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 0 -1 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342074" + "plane" "(9642.69 7433 5152) (8452.69 7433 5152) (8452.69 7433 5162)" + "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 212 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4493738" + side + { + "id" "341869" + "plane" "(1199 -4784 400) (1229 -4784 400) (1229 -5504 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" "341870" + "plane" "(1199 -5504 384) (1229 -5504 384) (1229 -4784 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" "341871" + "plane" "(1199 -4784 400) (1199 -5504 400) (1199 -5504 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" "341872" + "plane" "(1229 -4784 384) (1229 -5504 384) (1229 -5504 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341873" + "plane" "(1229 -4784 400) (1199 -4784 400) (1199 -4784 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" "341874" + "plane" "(1229 -5504 384) (1199 -5504 384) (1199 -5504 400)" + "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 123 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4421701" + side + { + "id" "341355" + "plane" "(1040 -5888 160) (864 -5888 160) (864 -5872 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" "341354" + "plane" "(1040 -5872 160) (864 -5872 160) (864 -5872 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341353" + "plane" "(1040 -5888 156) (864 -5888 156) (864 -5888 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -382.996] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341352" + "plane" "(864 -5872 156) (864 -5872 160) (864 -5888 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" "341351" + "plane" "(1040 -5872 156) (864 -5872 156) (864 -5888 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341350" + "plane" "(1040 -5888 156) (1040 -5888 160) (1040 -5872 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -383] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 103 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4421702" + side + { + "id" "341361" + "plane" "(1200 -5872 192) (1472 -5872 192) (1472 -5888 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" "341360" + "plane" "(1472 -5888 160) (1472 -5888 192) (1472 -5872 192)" + "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" "341359" + "plane" "(1200 -5872 160) (1472 -5872 160) (1472 -5872 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341358" + "plane" "(1184 -5888 192) (1472 -5888 192) (1472 -5888 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 448] 0.125" + "vaxis" "[0 0 -1 254] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341357" + "plane" "(1184 -5888 160) (1472 -5888 160) (1472 -5872 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" "341356" + "plane" "(1200 -5872 160) (1200 -5872 192) (1184 -5888 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 103 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4422351" + side + { + "id" "341486" + "plane" "(-64 -3605 32) (-56 -3605 32) (-56 -4000 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 122] 0.025" + "vaxis" "[0 -1 0 4] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-64 -4000 32]" + "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 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" + } + 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 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" + } + 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" "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" "341487" + "plane" "(-64 -4000 16) (-56 -4000 16) (-56 -3605 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" "341488" + "plane" "(-64 -3605 32) (-64 -4000 32) (-64 -4000 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" "341489" + "plane" "(-56 -3605 16) (-56 -4000 16) (-56 -4000 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" "341490" + "plane" "(-56 -3605 32) (-64 -3605 32) (-64 -3605 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" "341491" + "plane" "(-56 -4000 16) (-64 -4000 16) (-64 -4000 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 156 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4422541" + side + { + "id" "341551" + "plane" "(-55 -3730 48) (-55 -3605 48) (-55 -3605 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341550" + "plane" "(-32 -3605 48) (-32 -3730 48) (-32 -3730 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341549" + "plane" "(-55 -3605 48) (-55 -3730 48) (-32 -3730 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" "341548" + "plane" "(-55 -3605 144) (-55 -3605 48) (-32 -3605 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341547" + "plane" "(-32 -3730 144) (-32 -3730 48) (-55 -3730 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341546" + "plane" "(-55 -3730 144) (-55 -3605 144) (-32 -3605 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4422643" + side + { + "id" "341552" + "plane" "(-32 -3440 224) (384 -3440 224) (384 -3792 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" "341553" + "plane" "(-32 -3792 208) (384 -3792 208) (384 -3440 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" "341554" + "plane" "(-32 -3440 224) (-32 -3792 224) (-32 -3792 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" "341555" + "plane" "(384 -3440 208) (384 -3792 208) (384 -3792 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" "341556" + "plane" "(384 -3440 224) (-32 -3440 224) (-32 -3440 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" "341557" + "plane" "(384 -3792 208) (-32 -3792 208) (-32 -3792 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 198 179" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4422651" + side + { + "id" "341569" + "plane" "(-64 -3312 -16) (-64 -3605 -16) (-32 -3605 -16)" + "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" "341568" + "plane" "(-64 -3605 -16) (-64 -3312 -16) (-64 -3312 48)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 -962] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341567" + "plane" "(-32 -3312 48) (-32 -3312 -16) (-32 -3605 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341566" + "plane" "(-64 -3312 48) (-64 -3312 -16) (-32 -3312 -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" "341565" + "plane" "(-64 -3605 48) (-64 -3312 48) (-32 -3312 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" "341564" + "plane" "(-32 -3605 48) (-32 -3605 -16) (-64 -3605 -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 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4422654" + side + { + "id" "341575" + "plane" "(-64 -3730 -16) (-64 -3760 -16) (-48 -3760 -16)" + "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" "341574" + "plane" "(-64 -3760 48) (-64 -3760 -16) (-64 -3730 -16)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 -962] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341573" + "plane" "(-48 -3730 -16) (-48 -3760 -16) (-48 -3760 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" "341572" + "plane" "(-48 -3760 48) (-48 -3760 -16) (-64 -3760 -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" "341571" + "plane" "(-64 -3760 48) (-64 -3730 48) (-48 -3730 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" "341570" + "plane" "(-64 -3730 48) (-64 -3730 -16) (-48 -3730 -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 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4422655" + side + { + "id" "341581" + "plane" "(-55 -3605 -16) (-55 -3730 -16) (-32 -3730 -16)" + "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" "341580" + "plane" "(-55 -3730 -16) (-55 -3605 -16) (-55 -3605 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341579" + "plane" "(-32 -3605 -16) (-32 -3730 -16) (-32 -3730 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341578" + "plane" "(-55 -3730 48) (-55 -3605 48) (-32 -3605 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" "341577" + "plane" "(-55 -3605 48) (-55 -3605 -16) (-32 -3605 -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" "341576" + "plane" "(-32 -3730 48) (-32 -3730 -16) (-55 -3730 -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 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4422730" + side + { + "id" "341600" + "plane" "(-78 -3328 256) (-64 -3328 256) (-64 -3996 256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341601" + "plane" "(-78 -3996 216) (-64 -3996 216) (-64 -3328 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341602" + "plane" "(-78 -3328 256) (-78 -3996 256) (-78 -3996 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341603" + "plane" "(-64 -3328 216) (-64 -3996 216) (-64 -3996 256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341604" + "plane" "(-64 -3328 256) (-78 -3328 256) (-78 -3328 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341605" + "plane" "(-64 -3996 216) (-78 -3996 216) (-78 -3996 256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 242 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4423032" + side + { + "id" "341644" + "plane" "(-64 -3760 -16) (-64 -3416 -16) (-32 -3416 -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" "341645" + "plane" "(-64 -3416 -32) (-64 -3760 -32) (-32 -3760 -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" "341646" + "plane" "(-64 -3760 -32) (-64 -3416 -32) (-64 -3416 -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" "341647" + "plane" "(-32 -3416 -32) (-32 -3760 -32) (-32 -3760 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341648" + "plane" "(-64 -3416 -32) (-32 -3416 -32) (-32 -3416 -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" "341649" + "plane" "(-32 -3760 -32) (-64 -3760 -32) (-64 -3760 -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 234 175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4393552" + side + { + "id" "341127" + "plane" "(-368 -4344 -224) (-368 -4152 -224) (-200 -4152 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341126" + "plane" "(-368 -4152 -240) (-368 -4344 -240) (-200 -4344 -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" "341125" + "plane" "(-200 -4152 -240) (-200 -4344 -240) (-200 -4344 -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" "341124" + "plane" "(-368 -4344 -240) (-368 -4152 -240) (-368 -4152 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341123" + "plane" "(-368 -4152 -240) (-200 -4152 -240) (-200 -4152 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341122" + "plane" "(-200 -4344 -240) (-368 -4344 -240) (-368 -4344 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4393727" + side + { + "id" "341164" + "plane" "(-192 -4352 -224) (-200 -4344 -224) (-200 -4152 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -34] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341165" + "plane" "(-192 -4144 -240) (-200 -4152 -240) (-200 -4344 -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" "341166" + "plane" "(-200 -4344 -240) (-200 -4152 -240) (-200 -4152 -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" "341167" + "plane" "(-192 -4352 -224) (-192 -4144 -224) (-192 -4144 -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" "341168" + "plane" "(-200 -4152 -240) (-192 -4144 -240) (-192 -4144 -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" "341169" + "plane" "(-200 -4344 -224) (-192 -4352 -224) (-192 -4352 -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" "0 244 113" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4379799" + side + { + "id" "341079" + "plane" "(-368 -4344 -224) (-464 -4344 -224) (-464 -3984 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341078" + "plane" "(-368 -3984 -240) (-464 -3984 -240) (-464 -4344 -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" "341077" + "plane" "(-464 -4344 -240) (-464 -3984 -240) (-464 -3984 -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" "341076" + "plane" "(-464 -3984 -240) (-368 -3984 -240) (-368 -3984 -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" "341075" + "plane" "(-368 -4344 -240) (-464 -4344 -240) (-464 -4344 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341074" + "plane" "(-368 -3984 -240) (-368 -4344 -240) (-368 -4344 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4379816" + side + { + "id" "341097" + "plane" "(-360 -4144 -224) (-360 -4112 -224) (-192 -4112 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "341096" + "plane" "(-192 -4144 -240) (-192 -4112 -240) (-360 -4112 -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" "341095" + "plane" "(-192 -4112 -240) (-192 -4144 -240) (-192 -4144 -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" "341094" + "plane" "(-360 -4112 -240) (-192 -4112 -240) (-192 -4112 -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" "341093" + "plane" "(-360 -4144 -240) (-360 -4112 -240) (-360 -4112 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341092" + "plane" "(-192 -4144 -240) (-360 -4144 -240) (-360 -4144 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4351295" + side + { + "id" "340744" + "plane" "(-920 -2976 192) (-920 -2912 192) (-712 -2912 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340745" + "plane" "(-920 -2912 0) (-920 -2976 0) (-712 -2976 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340746" + "plane" "(-920 -2976 0) (-920 -2912 0) (-920 -2912 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340747" + "plane" "(-712 -2912 0) (-712 -2976 0) (-712 -2976 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340748" + "plane" "(-920 -2912 0) (-712 -2912 0) (-712 -2912 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340749" + "plane" "(-712 -2976 0) (-920 -2976 0) (-920 -2976 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 126 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4351668" + side + { + "id" "340755" + "plane" "(-1089 -3184 240) (-904 -3184 240) (-941 -3243 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340754" + "plane" "(-1089 -3243 0) (-941 -3243 0) (-904 -3184 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340753" + "plane" "(-1089 -3184 240) (-1089 -3243 240) (-1089 -3243 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340752" + "plane" "(-904 -3184 240) (-1089 -3184 240) (-1089 -3184 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340751" + "plane" "(-1089 -3243 240) (-941 -3243 240) (-941 -3243 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340750" + "plane" "(-941 -3243 240) (-904 -3184 240) (-904 -3184 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 104 213" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4351673" + side + { + "id" "340767" + "plane" "(-464 -3200 0) (-464 -3328 0) (-888 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-464 -3200 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 -0.999512 0 0 0 0 0 0 0 -0.998051 0 0 0 0 0 0 0 0 -0.447018 0.894037 0 -0.999024 0 0" + "row1" "0 0 0 0 0 0 0 0 0 0.998051 0 0 0 0 0 0 0 0 -0.998051 0 0 -0.447018 -0.894037 0 0 -0.999512 0" + "row2" "0 0 0 0 0 0 0 0 0 0.998051 0 0 0 -0.999512 0 0 0 0 0 0 0 -0.999349 0 0 -0.242421 -0.969683 0" + "row3" "-0.996109 0 0 0 0 0 0 0 0 0.998051 0 0 0 -0.999512 0 0 0 0 0 0 0 -0.999024 0 0 0 0 0" + "row4" "-0.996109 0 0 0 -0.999512 0 0 0 0 0.998051 0 0 0 -0.999512 0 0 0 0 0 0 0 -0.999024 0 0 0 0 0" + "row5" "0 0 0 0 0 0 0 0 0 0.998051 0 0 0 -0.999512 0 0 0 0 0 0 0 -0.599766 -0.799688 0 -0.242421 -0.969683 0" + "row6" "0 0 0 0 0 0 0 0 0 0.998051 0 0 0 -0.999512 0 0 0 0 -0.998051 0 0 -0.999024 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0 0 0 0 0 0 -0.998051 0 0 0 0 0 0 0 0 -0.999024 0 0 -0.999024 0 0" + "row8" "0 0 0 0 -0.999512 0 0 0 0 0.998051 0 0 0 0 0 0 0 0 0 0 0 -0.999024 0 0 -0.259964 -0.965581 0" + } + distances + { + "row0" "0 0.000244141 0 0 6.10352e-05 0 0 0.000272958 0.00012207" + "row1" "0 0 0 6.10352e-05 0 0 6.10352e-05 0.000272958 0.000244141" + "row2" "0 0 0 6.10352e-05 0.000244141 0 0 0.000183105 0.000251654" + "row3" "3.05176e-05 0 0 6.10352e-05 0.000244141 0 0 0.00012207 0" + "row4" "3.05176e-05 0.000244141 0 6.10352e-05 0.000244141 0 0 0.00012207 0" + "row5" "0 0 0 6.10352e-05 0.000244141 0 0 0.000305176 0.000251654" + "row6" "0 0 0 6.10352e-05 0.000244141 0 6.10352e-05 0.00012207 0" + "row7" "0 0 0 0 6.10352e-05 0 0 0.00012207 0.00012207" + "row8" "0 0.000244141 0 6.10352e-05 0 0 0 0.00012207 0.00328684" + } + 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" "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" "340766" + "plane" "(-888 -3328 -1) (-464 -3328 -1) (-464 -3200 -1)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340765" + "plane" "(-464 -3200 -1) (-464 -3328 -1) (-464 -3328 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340764" + "plane" "(-464 -3328 -1) (-888 -3328 -1) (-888 -3328 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340763" + "plane" "(-888 -3200 -1) (-464 -3200 -1) (-464 -3200 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340762" + "plane" "(-888 -3328 -1) (-888 -3200 -1) (-888 -3200 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 170 131" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4351760" + side + { + "id" "340773" + "plane" "(-1072 -3256 0) (-1072 -3200 0) (-888 -3200 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-888 -3200 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.999024 0 0 -0.351043 -0.936115 0 -0.351043 -0.936115 0 -0.999024 0 0 -0.999024 0 0 -0.999024 0 0 0 0 0 0 0 0 0 0 0" + "row1" "-0.998051 0 0 -0.351043 -0.936115 0 -0.351043 -0.936115 0 -0.999024 0 0 -0.999024 0 0 -0.999024 0 0 0 0 0 0 0 0 0 0 0" + "row2" "0 -0.999512 0 -0.447018 -0.894037 0 -0.242478 -0.969913 0 -0.998051 0 0 -0.242421 -0.969683 0 -0.447018 -0.894037 0 0 -0.999512 0 0 0 0 0 0 0" + "row3" "0 -0.999512 0 -0.447018 -0.894037 0 -0.447018 -0.894037 0 -0.999024 0 0 -0.447018 -0.894037 0 -0.447018 -0.894037 0 0 -0.999512 0 0 0 0 0 0 0" + "row4" "-0.242421 -0.969683 0 -0.447018 -0.894037 0 -0.242478 -0.969913 0 -0.999024 0 0 -0.447018 -0.894037 0 -0.447018 -0.894037 0 0 -0.999512 0 0 0 0 0 0 0" + "row5" "-0.242421 -0.969683 0 -0.447018 -0.894037 0 -0.447018 -0.894037 0 -0.999024 0 0 -0.447018 -0.894037 0 -0.447018 -0.894037 0 0 -0.999512 0 0 0 0 0 0 0" + "row6" "0 0 0 -0.447018 -0.894037 0 -0.447018 -0.894037 0 -0.999024 0 0 -0.999024 0 0 -0.999024 0 0 0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 -0.447018 -0.894037 0 -0.447018 -0.894037 0 -0.998051 0 0 -0.998051 0 0 -0.999024 0 0 0 0 0 0 0 0 0 0 0" + "row8" "0 0 0 -0.242478 -0.969913 0 -0.447018 -0.894037 0 -0.998051 0 0 -0.998051 0 0 -0.447018 -0.894037 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0.00012207 0.000521485 0.000521485 0.00012207 0.00012207 0.00012207 0 0 0" + "row1" "6.10352e-05 0.000521485 0.000521485 0.00012207 0.00012207 0.00012207 0 0 0" + "row2" "0.000244141 0.000272958 0.000503309 6.10352e-05 0.000251654 0.000272958 0.000244141 0 0" + "row3" "0.000244141 0.000272958 0.000272958 0.00012207 0.000272958 0.000272958 0.000244141 0 0" + "row4" "0.000251654 0.000272958 0.000503309 0.00012207 0.000272958 0.000272958 0.000244141 0 0" + "row5" "0.000251654 0.000272958 0.000272958 0.00012207 0.000272958 0.000272958 0.000244141 0 0" + "row6" "0 0.000272958 0.000272958 0.00012207 0.00012207 0.00012207 0 0 0" + "row7" "0 0.000272958 0.000272958 6.10352e-05 6.10352e-05 0.00012207 0 0 0" + "row8" "0 0.000503309 0.000272958 6.10352e-05 6.10352e-05 0.000272958 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" "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" "340772" + "plane" "(-888 -3200 -1) (-1072 -3200 -1) (-1072 -3256 -1)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340771" + "plane" "(-1072 -3256 -1) (-1072 -3200 -1) (-1072 -3200 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340770" + "plane" "(-1072 -3200 -1) (-888 -3200 -1) (-888 -3200 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340769" + "plane" "(-888 -3200 -1) (-888 -3256 -1) (-888 -3256 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340768" + "plane" "(-888 -3256 -1) (-1072 -3256 -1) (-1072 -3256 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 170 131" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4351761" + side + { + "id" "340779" + "plane" "(-888 -3328 0) (-1072 -3328 0) (-1072 -3256 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-888 -3256 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 -0.242478 -0.969913 0 -0.447018 -0.894037 0 -0.998051 0 0 -0.998051 0 0 -0.447018 -0.894037 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 -0.242478 -0.969913 0 -0.447018 -0.894037 0 -0.998051 0 0 -0.242421 -0.969683 0 -0.242478 -0.969913 0 0 -0.999512 0 0 -0.999512 0 0 0 0" + "row2" "-0.242421 -0.969683 0 -0.242478 -0.969913 0 -0.242478 -0.969913 0 -0.999024 0 0 -0.242478 -0.969913 0 -0.242478 -0.969913 0 0 -0.999756 0 0 -0.999756 0 0 -0.999512 0" + "row3" "-0.242421 -0.969683 0 -0.242478 -0.969913 0 -0.447018 -0.894037 0 -0.999024 0 0 -0.447018 -0.894037 0 -0.447018 -0.894037 0 0 -0.999756 0 0 -0.999756 0 0 -0.999756 0" + "row4" "0 0 0 -0.242478 -0.969913 0 -0.999024 0 0 -0.999024 0 0 -0.447018 0.894037 0 -0.447018 0.894037 0 0 0 0 0 0 0 0 0 0" + "row5" "0 0 0 -0.242478 -0.969913 0 -0.999024 0 0 -0.999024 0 0 -0.447018 0.894037 0 -0.447018 0.894037 0 0 0 0 0 0 0 0 0 0" + "row6" "-0.999024 0 0 -0.599766 -0.799688 0 -0.599766 -0.799688 0 -0.999024 0 0 -0.999024 0 0 -0.999024 0 0 0 0 0 0 0 0 0 0 0" + "row7" "-0.279978 -0.959925 0 -0.287334 -0.957781 0 -0.351103 -0.936276 0 -0.400774 -0.916055 0 -0.447116 -0.894232 0 -0.999024 0 0 0 0 0 0 0 0 0 0 0" + "row8" "-0.259964 -0.965581 0 -0.276301 -0.961047 0 -0.292211 -0.956327 0 -0.330335 -0.943815 0 -0.33032 -0.943771 0 -0.447018 -0.894037 0 0 0 0 0 -0.999512 0 0 -0.999512 0" + } + distances + { + "row0" "0 0.000503309 0.000272958 6.10352e-05 6.10352e-05 0.000272958 0 0 0" + "row1" "0 0.000503309 0.000272958 6.10352e-05 0.000251654 0.000503309 0.000244141 0.000244141 0" + "row2" "0.000251654 0.000503309 0.000503309 0.00012207 0.000503309 0.000503309 0.000488281 0.000488281 0.000244141" + "row3" "0.000251654 0.000503309 0.000272958 0.00012207 0.000272958 0.000272958 0.000488281 0.000488281 0.000488281" + "row4" "0 0.000503309 0.00012207 0.00012207 0.000272958 0.000272958 0 0 0" + "row5" "0 0.000503309 0.00012207 0.00012207 0.000272958 0.000272958 0 0 0" + "row6" "0.00012207 0.000305176 0.000305176 0.00012207 0.00012207 0.00012207 0 0 0" + "row7" "0.00152588 0.0025489 0.00208594 0.00106593 0.000545915 0.00012207 0 0 0" + "row8" "0.00328684 0.0050806 0.0045951 0.00258662 0.00129331 0.000272958 0 0.000244141 0.000244141" + } + 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" "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" "340778" + "plane" "(-1072 -3256 -1) (-1072 -3328 -1) (-888 -3328 -1)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340777" + "plane" "(-888 -3328 -1) (-1072 -3328 -1) (-1072 -3328 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340776" + "plane" "(-1072 -3328 -1) (-1072 -3256 -1) (-1072 -3256 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340775" + "plane" "(-888 -3256 -1) (-888 -3328 -1) (-888 -3328 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340774" + "plane" "(-1072 -3256 -1) (-888 -3256 -1) (-888 -3256 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 170 131" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4351764" + side + { + "id" "340780" + "plane" "(-1008 -2912 192) (-920 -2912 192) (-920 -3168 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" "340781" + "plane" "(-1008 -3168 128) (-920 -3168 128) (-920 -2912 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" "340782" + "plane" "(-1008 -2912 192) (-1008 -3168 192) (-1008 -3168 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" "340783" + "plane" "(-920 -2912 128) (-920 -3168 128) (-920 -3168 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340784" + "plane" "(-920 -2912 192) (-1008 -2912 192) (-1008 -2912 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" "340785" + "plane" "(-920 -3168 128) (-1008 -3168 128) (-1008 -3168 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 210 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4351766" + side + { + "id" "340786" + "plane" "(-1008 -2912 128) (-920 -2912 128) (-920 -3168 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" "340787" + "plane" "(-1008 -3168 0) (-920 -3168 0) (-920 -2912 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" "340788" + "plane" "(-1008 -2912 128) (-1008 -3168 128) (-1008 -3168 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" "340789" + "plane" "(-920 -2912 0) (-920 -3168 0) (-920 -3168 128)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[0 1 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340790" + "plane" "(-920 -2912 128) (-1008 -2912 128) (-1008 -2912 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" "340791" + "plane" "(-920 -3168 0) (-1008 -3168 0) (-1008 -3168 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 166 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4351787" + side + { + "id" "340797" + "plane" "(-1008 -3120 0) (-1024 -3120 0) (-1024 -2912 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -90] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340796" + "plane" "(-1008 -2912 -16) (-1024 -2912 -16) (-1024 -3120 -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" "340795" + "plane" "(-1024 -3120 -16) (-1024 -2912 -16) (-1024 -2912 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" "340794" + "plane" "(-1008 -3120 -16) (-1024 -3120 -16) (-1024 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340793" + "plane" "(-1024 -2912 -16) (-1008 -2912 -16) (-1008 -2912 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340792" + "plane" "(-1008 -2912 -16) (-1008 -3120 -16) (-1008 -3120 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" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4351788" + side + { + "id" "340803" + "plane" "(-920 -2920 0) (-912 -2920 0) (-912 -3160 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -6] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340802" + "plane" "(-920 -3168 -16) (-912 -3160 -16) (-912 -2920 -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" "340801" + "plane" "(-920 -3168 0) (-912 -3160 0) (-912 -3160 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340800" + "plane" "(-912 -2920 0) (-920 -2920 0) (-920 -2920 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340799" + "plane" "(-912 -3160 0) (-912 -2920 0) (-912 -2920 -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" "340798" + "plane" "(-920 -2920 0) (-920 -3168 0) (-920 -3168 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4352332" + side + { + "id" "340809" + "plane" "(-3384 -2912 576) (-3384 -2896 576) (400 -2896 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340808" + "plane" "(-3384 -2896 560) (-3384 -2896 576) (-3384 -2912 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" "340807" + "plane" "(400 -2912 560) (400 -2912 576) (400 -2896 576)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 25] 0.125" + "vaxis" "[0 1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340806" + "plane" "(400 -2896 560) (400 -2896 576) (-3384 -2896 576)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340805" + "plane" "(-3384 -2912 560) (-3384 -2912 576) (400 -2912 576)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 25] 0.125" + "vaxis" "[1 0 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340804" + "plane" "(-3384 -2896 560) (-3384 -2912 560) (400 -2912 560)" + "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 139 244" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4352333" + side + { + "id" "340815" + "plane" "(-3384 -2896 416) (-3384 -2912 416) (400 -2912 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" "340814" + "plane" "(-3384 -2912 416) (-3384 -2896 416) (-3384 -2896 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340813" + "plane" "(400 -2896 416) (400 -2912 416) (400 -2912 560)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340812" + "plane" "(-3384 -2896 416) (400 -2896 416) (400 -2896 560)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340811" + "plane" "(400 -2912 416) (-3384 -2912 416) (-3384 -2912 560)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 192] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340810" + "plane" "(-3384 -2912 560) (-3384 -2896 560) (400 -2896 560)" + "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 139 244" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4352436" + side + { + "id" "340821" + "plane" "(384 -2896 576) (384 -2112 576) (400 -2112 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340820" + "plane" "(384 -2112 560) (384 -2112 576) (384 -2896 576)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340819" + "plane" "(400 -2896 560) (400 -2896 576) (400 -2112 576)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 25] 0.125" + "vaxis" "[0 1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340818" + "plane" "(400 -2112 560) (400 -2112 576) (384 -2112 576)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340817" + "plane" "(384 -2896 560) (384 -2896 576) (400 -2896 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" "340816" + "plane" "(384 -2112 560) (384 -2896 560) (400 -2896 560)" + "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 205 202" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4352437" + side + { + "id" "340827" + "plane" "(384 -2112 416) (384 -2896 416) (400 -2896 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" "340826" + "plane" "(384 -2896 416) (384 -2112 416) (384 -2112 560)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340825" + "plane" "(400 -2112 416) (400 -2896 416) (400 -2896 560)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340824" + "plane" "(384 -2112 416) (400 -2112 416) (400 -2112 560)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340823" + "plane" "(400 -2896 416) (384 -2896 416) (384 -2896 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" "340822" + "plane" "(384 -2896 560) (384 -2112 560) (400 -2112 560)" + "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 205 202" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4352438" + side + { + "id" "340833" + "plane" "(400 -2128 576) (400 -2112 576) (640 -2112 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340832" + "plane" "(400 -2112 560) (400 -2112 576) (400 -2128 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" "340831" + "plane" "(640 -2128 560) (640 -2128 576) (640 -2112 576)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 25] 0.125" + "vaxis" "[0 1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340830" + "plane" "(640 -2112 560) (640 -2112 576) (400 -2112 576)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340829" + "plane" "(400 -2128 560) (400 -2128 576) (640 -2128 576)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 25] 0.125" + "vaxis" "[1 0 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340828" + "plane" "(400 -2112 560) (400 -2128 560) (640 -2128 560)" + "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 101 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4352439" + side + { + "id" "340839" + "plane" "(400 -2112 416) (400 -2128 416) (640 -2128 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" "340838" + "plane" "(400 -2128 416) (400 -2112 416) (400 -2112 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340837" + "plane" "(640 -2112 416) (640 -2128 416) (640 -2128 560)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340836" + "plane" "(400 -2112 416) (640 -2112 416) (640 -2112 560)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340835" + "plane" "(640 -2128 416) (400 -2128 416) (400 -2128 560)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 192] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340834" + "plane" "(400 -2128 560) (400 -2112 560) (640 -2112 560)" + "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 101 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4337260" + side + { + "id" "340612" + "plane" "(295 -4792 160) (295 -4660 160) (334 -4660 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340613" + "plane" "(295 -4660 1.14441e-05) (295 -4792 1.14441e-05) (334 -4792 1.14441e-05)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340614" + "plane" "(295 -4792 1.14441e-05) (295 -4660 1.14441e-05) (295 -4660 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340615" + "plane" "(334 -4660 1.14441e-05) (334 -4792 1.14441e-05) (334 -4792 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340616" + "plane" "(295 -4660 1.14441e-05) (334 -4660 1.14441e-05) (334 -4660 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340617" + "plane" "(334 -4792 1.14441e-05) (295 -4792 1.14441e-05) (295 -4792 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 243 228" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4337263" + side + { + "id" "340618" + "plane" "(-129 -4768 160) (-26 -4768 160) (-26 -4862 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340619" + "plane" "(-129 -4862 12) (-26 -4862 12) (-26 -4768 12)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340620" + "plane" "(-129 -4768 160) (-129 -4862 160) (-129 -4862 12)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340621" + "plane" "(-26 -4768 12) (-26 -4862 12) (-26 -4862 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340622" + "plane" "(-26 -4768 160) (-129 -4768 160) (-129 -4768 12)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340623" + "plane" "(-26 -4862 12) (-129 -4862 12) (-129 -4862 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4337299" + side + { + "id" "340629" + "plane" "(-129 -4862 160) (-26 -4862 160) (-62 -4880 160)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340628" + "plane" "(-113 -4880 0) (-62 -4880 0) (-26 -4862 0)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340627" + "plane" "(-129 -4862 0) (-26 -4862 0) (-26 -4862 160)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340626" + "plane" "(-62 -4880 0) (-113 -4880 0) (-113 -4880 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340625" + "plane" "(-113 -4880 0) (-129 -4862 0) (-129 -4862 160)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340624" + "plane" "(-26 -4862 0) (-62 -4880 0) (-62 -4880 160)" + "material" "TOOLS/TOOLSCLIP" + "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 101" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4238202" + side + { + "id" "340232" + "plane" "(-1344 -3105 33.25) (-1440 -3105 33.25) (-1440 -2963 33.25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1440 -3105 33.25]" + "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 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" + } + 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 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" + } + 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.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333" + "row1" "0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333" + "row2" "0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333" + "row3" "0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333" + "row4" "0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333" + "row5" "0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333" + "row6" "0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333" + "row7" "0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333" + "row8" "0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333 0 0 0.0208333" + } + alphas + { + "row0" "0 0 0 75 125 100 125 50 0" + "row1" "0 0 0 100 175 255 255 255 50" + "row2" "0 0 0 0 0 25 225 255 0" + "row3" "0 0 0 0 0 0 0 175 100" + "row4" "0 0 0 0 0 0 0 175 125" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0 0 0" + "row7" "0 0 0 75 255 255 0 0 0" + "row8" "0 0 250 255 255 150 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" "340231" + "plane" "(-1440 -2963 32.25) (-1440 -3105 32.25) (-1344 -3105 32.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340230" + "plane" "(-1440 -3105 32.25) (-1440 -2963 32.25) (-1440 -2963 33.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340229" + "plane" "(-1344 -3105 32.25) (-1440 -3105 32.25) (-1440 -3105 33.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340228" + "plane" "(-1344 -2963 32.25) (-1344 -3105 32.25) (-1344 -3105 33.25)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340227" + "plane" "(-1440 -2963 32.25) (-1344 -2963 32.25) (-1344 -2963 33.25)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4238831" + side + { + "id" "340233" + "plane" "(1140 -3101 -2.19064) (1152 -3101 -2.19064) (1152 -3135 -2.19064)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340234" + "plane" "(1140 -3135 -36.1906) (1152 -3135 -36.1906) (1152 -3101 -36.1906)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340235" + "plane" "(1140 -3101 -2.19064) (1140 -3135 -2.19064) (1140 -3135 -36.1906)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340236" + "plane" "(1152 -3101 -36.1906) (1152 -3135 -36.1906) (1152 -3135 -2.19064)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340237" + "plane" "(1152 -3101 -2.19064) (1140 -3101 -2.19064) (1140 -3101 -36.1906)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340238" + "plane" "(1152 -3135 -36.1906) (1140 -3135 -36.1906) (1140 -3135 -2.19064)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4239247" + side + { + "id" "340329" + "plane" "(1012 -3176 -2.19064) (987 -3176 -2.19064) (987 -3164 -2.19064)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340328" + "plane" "(1012 -3164 -36.1906) (987 -3164 -36.1906) (987 -3176 -36.1906)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340327" + "plane" "(987 -3164 -36.191) (1012 -3164 -36.191) (1012 -3164 -2.19141)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340326" + "plane" "(1012 -3176 -36.191) (987 -3176 -36.191) (987 -3176 -2.19141)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340325" + "plane" "(1012 -3164 -36.191) (1012 -3176 -36.191) (1012 -3176 -2.19141)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340324" + "plane" "(987 -3176 -36.191) (987 -3164 -36.191) (987 -3164 -2.19141)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4239382" + side + { + "id" "340330" + "plane" "(-336 -2400 -24) (-336 -2360 -24) (-272 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340331" + "plane" "(-336 -2360 -32) (-336 -2400 -32) (-272 -2400 -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" "340332" + "plane" "(-336 -2400 -32) (-336 -2360 -32) (-336 -2360 -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" "340333" + "plane" "(-272 -2360 -32) (-272 -2400 -32) (-272 -2400 -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" "340334" + "plane" "(-336 -2360 -32) (-272 -2360 -32) (-272 -2360 -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" "340335" + "plane" "(-272 -2400 -32) (-336 -2400 -32) (-336 -2400 -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 227 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4239394" + side + { + "id" "340347" + "plane" "(-336 -2469 -24) (-336 -2400 -24) (-32 -2400 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340346" + "plane" "(-336 -2400 -32) (-336 -2469 -32) (-32 -2469 -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" "340345" + "plane" "(-336 -2469 -32) (-336 -2400 -32) (-336 -2400 -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" "340344" + "plane" "(-32 -2400 -32) (-32 -2469 -32) (-32 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340343" + "plane" "(-32 -2469 -32) (-336 -2469 -32) (-336 -2469 -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" "340342" + "plane" "(-336 -2400 -32) (-32 -2400 -32) (-32 -2400 -24)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4239440" + side + { + "id" "340353" + "plane" "(-272 -2280 -24) (-272 -2240 -24) (-32 -2240 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340352" + "plane" "(-272 -2240 -80) (-272 -2280 -80) (-32 -2280 -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" "340351" + "plane" "(-272 -2280 -80) (-272 -2240 -80) (-272 -2240 -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" "340350" + "plane" "(-32 -2240 -80) (-32 -2280 -80) (-32 -2280 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340349" + "plane" "(-272 -2240 -80) (-32 -2240 -80) (-32 -2240 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340348" + "plane" "(-32 -2280 -80) (-272 -2280 -80) (-272 -2280 -24)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4239441" + side + { + "id" "340359" + "plane" "(-272 -2400 -24) (-272 -2280 -24) (-32 -2280 -24)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340358" + "plane" "(-272 -2280 -32) (-272 -2400 -32) (-32 -2400 -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" "340357" + "plane" "(-272 -2400 -32) (-272 -2280 -32) (-272 -2280 -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" "340356" + "plane" "(-32 -2280 -32) (-32 -2400 -32) (-32 -2400 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340355" + "plane" "(-32 -2400 -32) (-272 -2400 -32) (-272 -2400 -24)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340354" + "plane" "(-272 -2280 -32) (-32 -2280 -32) (-32 -2280 -24)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4239650" + side + { + "id" "340360" + "plane" "(640 -1744 400) (840 -1744 400) (840 -2120 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340361" + "plane" "(640 -2120 -16) (840 -2120 -16) (840 -1744 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340362" + "plane" "(640 -1744 400) (640 -2120 400) (640 -2120 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340363" + "plane" "(840 -1744 -16) (840 -2120 -16) (840 -2120 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340364" + "plane" "(840 -1744 400) (640 -1744 400) (640 -1744 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340365" + "plane" "(840 -2120 -16) (640 -2120 -16) (640 -2120 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 180" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4239711" + side + { + "id" "340383" + "plane" "(840 -1815 400) (840 -1744 400) (909 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340382" + "plane" "(840 -1744 -16) (840 -1815 -16) (909 -1746 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340381" + "plane" "(840 -1815 -16) (840 -1744 -16) (840 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340380" + "plane" "(909 -1744 -16) (909 -1746 -16) (909 -1746 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340379" + "plane" "(840 -1744 -16) (909 -1744 -16) (909 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340378" + "plane" "(909 -1746 -16) (840 -1815 -16) (840 -1815 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 109 174" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4223888" + side + { + "id" "340040" + "plane" "(2041 -3986 309) (1857 -3986 309) (1857 -3970 309)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340039" + "plane" "(2041 -3970 0) (1857 -3970 0) (1857 -3986 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340038" + "plane" "(2041 -3986 0) (1857 -3986 0) (1857 -3986 309)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340037" + "plane" "(1857 -3970 0) (2041 -3970 0) (2041 -3970 309)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340036" + "plane" "(1857 -3986 0) (1857 -3970 0) (1857 -3970 309)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340035" + "plane" "(2041 -3970 0) (2041 -3986 0) (2041 -3986 309)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "202 111 0" + "groupid" "4223887" + "visgroupid" "27" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4208733" + side + { + "id" "339631" + "plane" "(384 -1936 208) (624 -1936 208) (624 -2112 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339632" + "plane" "(384 -2112 192) (624 -2112 192) (624 -1936 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339633" + "plane" "(384 -1936 208) (384 -2112 208) (384 -2112 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339634" + "plane" "(624 -1936 192) (624 -2112 192) (624 -2112 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339635" + "plane" "(624 -1936 208) (384 -1936 208) (384 -1936 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339636" + "plane" "(624 -2112 192) (384 -2112 192) (384 -2112 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 172 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4208827" + side + { + "id" "339637" + "plane" "(-1402 -1936 208) (384 -1936 208) (384 -2667 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339638" + "plane" "(-1402 -2667 192) (384 -2667 192) (384 -1936 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339639" + "plane" "(-1402 -1936 208) (-1402 -2667 208) (-1402 -2667 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339640" + "plane" "(384 -1936 192) (384 -2667 192) (384 -2667 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339641" + "plane" "(384 -1936 208) (-1402 -1936 208) (-1402 -1936 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339642" + "plane" "(384 -2667 192) (-1402 -2667 192) (-1402 -2667 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4208828" + side + { + "id" "339643" + "plane" "(-1280 -2667 208) (232 -2667 208) (232 -2828 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339644" + "plane" "(-1280 -2828 192) (232 -2828 192) (232 -2667 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339645" + "plane" "(-1280 -2667 208) (-1280 -2828 208) (-1280 -2828 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339646" + "plane" "(232 -2667 192) (232 -2828 192) (232 -2828 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339647" + "plane" "(232 -2667 208) (-1280 -2667 208) (-1280 -2667 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339648" + "plane" "(232 -2828 192) (-1280 -2828 192) (-1280 -2828 208)" + "material" "TOOLS/TOOLSCLIP" + "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 187" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4208869" + side + { + "id" "339654" + "plane" "(2410 -3768 16) (2248 -3768 16) (2248 -3560 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339653" + "plane" "(2410 -3560 0) (2248 -3560 0) (2248 -3768 0)" + "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" "339652" + "plane" "(2248 -3560 0) (2410 -3560 0) (2410 -3560 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" "339651" + "plane" "(2410 -3768 0) (2248 -3768 0) (2248 -3768 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339650" + "plane" "(2248 -3768 0) (2248 -3560 0) (2248 -3560 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" "339649" + "plane" "(2410 -3560 0) (2410 -3768 0) (2410 -3768 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 150" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4208870" + side + { + "id" "339660" + "plane" "(2416 -3768 16) (2410 -3768 16) (2410 -3560 16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339659" + "plane" "(2416 -3560 0) (2410 -3560 0) (2410 -3768 0)" + "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" "339658" + "plane" "(2410 -3560 0) (2416 -3560 0) (2416 -3560 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" "339657" + "plane" "(2416 -3768 0) (2410 -3768 0) (2410 -3768 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339656" + "plane" "(2416 -3560 0) (2416 -3768 0) (2416 -3768 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" "339655" + "plane" "(2410 -3768 0) (2410 -3560 0) (2410 -3560 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "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 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4208901" + side + { + "id" "339667" + "plane" "(2460 -2936 368) (2460 -2550 368) (2469 -2550 368)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339668" + "plane" "(2460 -2550 15.75) (2460 -2936 15.75) (2469 -2936 15.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339669" + "plane" "(2460 -2936 15.75) (2460 -2550 15.75) (2460 -2550 368)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339670" + "plane" "(2469 -2550 15.75) (2469 -2936 15.75) (2469 -2936 368)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339671" + "plane" "(2460 -2550 15.75) (2469 -2550 15.75) (2469 -2550 368)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339672" + "plane" "(2469 -2936 15.75) (2460 -2936 15.75) (2460 -2936 368)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 149" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4208927" + side + { + "id" "339750" + "plane" "(950 -4876 309) (950 -4648 309) (966 -4648 309)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339749" + "plane" "(950 -4648 -1.52588e-05) (950 -4876 -1.52588e-05) (966 -4876 -1.52588e-05)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339748" + "plane" "(950 -4876 -1.52588e-05) (950 -4648 -1.52588e-05) (950 -4648 309)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339747" + "plane" "(966 -4648 -1.52588e-05) (966 -4876 -1.52588e-05) (966 -4876 309)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339746" + "plane" "(950 -4648 -1.52588e-05) (966 -4648 -1.52588e-05) (966 -4648 309)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339745" + "plane" "(966 -4876 -1.52588e-05) (950 -4876 -1.52588e-05) (950 -4876 309)" + "material" "TOOLS/TOOLSCLIP" + "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 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4209398" + side + { + "id" "339818" + "plane" "(-800 -2328 -24) (-272 -2328 -24) (-272 -2360 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339817" + "plane" "(-800 -2360 -32) (-272 -2360 -32) (-272 -2328 -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" "339816" + "plane" "(-272 -2328 -32) (-272 -2360 -32) (-272 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339815" + "plane" "(-800 -2328 -32) (-272 -2328 -32) (-272 -2328 -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" "339814" + "plane" "(-272 -2360 -32) (-800 -2360 -32) (-800 -2360 -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" "339813" + "plane" "(-800 -2360 -32) (-800 -2328 -32) (-800 -2328 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4209401" + side + { + "id" "339824" + "plane" "(-1040 -2360 -24) (-2208 -2360 -24) (-2208 -2328 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339823" + "plane" "(-1040 -2328 -32) (-2208 -2328 -32) (-2208 -2360 -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" "339822" + "plane" "(-2208 -2360 -32) (-2208 -2328 -32) (-2208 -2328 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339821" + "plane" "(-2208 -2328 -32) (-1040 -2328 -32) (-1040 -2328 -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" "339820" + "plane" "(-1040 -2360 -32) (-2208 -2360 -32) (-2208 -2360 -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" "339819" + "plane" "(-1040 -2328 -32) (-1040 -2360 -32) (-1040 -2360 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4209879" + side + { + "id" "339927" + "plane" "(-1040 -2144 -24) (-800 -2144 -24) (-800 -2246 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339928" + "plane" "(-1040 -2246 -32) (-800 -2246 -32) (-800 -2144 -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" "339929" + "plane" "(-1040 -2144 -24) (-1040 -2246 -24) (-1040 -2246 -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" "339930" + "plane" "(-800 -2144 -32) (-800 -2246 -32) (-800 -2246 -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" "339931" + "plane" "(-800 -2144 -24) (-1040 -2144 -24) (-1040 -2144 -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" "339932" + "plane" "(-800 -2246 -32) (-1040 -2246 -32) (-1040 -2246 -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 104 185" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4210070" + side + { + "id" "339939" + "plane" "(-1039 -2244 152) (-1015 -2244 152) (-1015 -2439 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339940" + "plane" "(-1039 -2439 -24) (-1015 -2439 -24) (-1015 -2244 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339941" + "plane" "(-1039 -2244 152) (-1039 -2439 152) (-1039 -2439 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339942" + "plane" "(-1015 -2244 -24) (-1015 -2439 -24) (-1015 -2439 152)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339943" + "plane" "(-1015 -2244 152) (-1039 -2244 152) (-1039 -2244 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339944" + "plane" "(-1015 -2439 -24) (-1039 -2439 -24) (-1039 -2439 152)" + "material" "TOOLS/TOOLSCLIP" + "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 179" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4210220" + side + { + "id" "339945" + "plane" "(-1040 -2430 -24) (-800 -2430 -24) (-800 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339946" + "plane" "(-1040 -2469 -32) (-800 -2469 -32) (-800 -2430 -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" "339947" + "plane" "(-1040 -2430 -24) (-1040 -2469 -24) (-1040 -2469 -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" "339948" + "plane" "(-800 -2430 -32) (-800 -2469 -32) (-800 -2469 -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" "339949" + "plane" "(-800 -2430 -24) (-1040 -2430 -24) (-1040 -2430 -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" "339950" + "plane" "(-800 -2469 -32) (-1040 -2469 -32) (-1040 -2469 -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 118 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4210225" + side + { + "id" "339951" + "plane" "(-1056 -2501 0) (-744 -2501 0) (-744 -2896 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_DARK" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 -88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339952" + "plane" "(-1056 -2896 -32) (-744 -2896 -32) (-744 -2501 -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" "339953" + "plane" "(-1056 -2501 0) (-1056 -2896 0) (-1056 -2896 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 885] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339954" + "plane" "(-744 -2501 -32) (-744 -2896 -32) (-744 -2896 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" "339955" + "plane" "(-744 -2501 0) (-1056 -2501 0) (-1056 -2501 -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" "339956" + "plane" "(-744 -2896 -32) (-1056 -2896 -32) (-1056 -2896 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 112 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4180834" + side + { + "id" "339522" + "plane" "(1616 -4536 277) (1616 -4464 277) (1952 -4464 277)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339521" + "plane" "(1616 -4464 160) (1616 -4464 277) (1616 -4536 277)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339520" + "plane" "(1952 -4536 160) (1952 -4536 277) (1952 -4464 277)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 19.998] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339519" + "plane" "(1952 -4464 160) (1952 -4464 277) (1616 -4464 277)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339518" + "plane" "(1616 -4536 160) (1616 -4536 277) (1952 -4536 277)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339517" + "plane" "(1616 -4464 160) (1616 -4536 160) (1952 -4536 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 151 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4180920" + side + { + "id" "339583" + "plane" "(2048 -4374 384) (2048 -4256 384) (2312 -4256 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" "339584" + "plane" "(2048 -4256 288) (2048 -4374 288) (2312 -4374 288)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[0 1 0 -164] 0.125" + "vaxis" "[1 0 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339585" + "plane" "(2048 -4374 288) (2048 -4256 288) (2048 -4256 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" "339586" + "plane" "(2312 -4256 288) (2312 -4374 288) (2312 -4374 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" "339587" + "plane" "(2048 -4256 288) (2312 -4256 288) (2312 -4256 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" "339588" + "plane" "(2312 -4374 288) (2048 -4374 288) (2048 -4374 384)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4181387" + side + { + "id" "339624" + "plane" "(-5.24805 -4247 -53.5) (-5 -4247 -53.5) (-5 -4249 -53.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339623" + "plane" "(-199 -4247 -224.5) (-199 -4249 -224.5) (-5 -4249 -224.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339622" + "plane" "(-199 -4249 -224.5) (-199 -4247 -224.5) (-199 -4247 -182.335)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339621" + "plane" "(-5 -4247 -224.5) (-5 -4249 -224.5) (-5 -4249 -53.4982)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339620" + "plane" "(-199 -4247 -224.5) (-5 -4247 -224.5) (-5 -4247 -53.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339619" + "plane" "(-5 -4249 -224.5) (-199 -4249 -224.5) (-199 -4249 -182.337)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339618" + "plane" "(-199 -4249 -182.336) (-199 -4247 -182.336) (-5.24609 -4247 -53.5)" + "material" "TOOLS/TOOLSCLIP" + "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 159" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4181428" + side + { + "id" "339625" + "plane" "(-746 -5680 248) (-12 -5680 248) (-12 -6288 248)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339626" + "plane" "(-746 -6288 234) (-12 -6288 234) (-12 -5680 234)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339627" + "plane" "(-746 -5680 248) (-746 -6288 248) (-746 -6288 234)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339628" + "plane" "(-12 -5680 234) (-12 -6288 234) (-12 -6288 248)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339629" + "plane" "(-12 -5680 248) (-746 -5680 248) (-746 -5680 234)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339630" + "plane" "(-12 -6288 234) (-746 -6288 234) (-746 -6288 248)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 104 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4152931" + side + { + "id" "339439" + "plane" "(1392 -4376 320) (1392 -4215 320) (2048 -4215 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" "339440" + "plane" "(1392 -4215 248) (1392 -4376 248) (2048 -4376 248)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339441" + "plane" "(1392 -4376 248) (1392 -4215 248) (1392 -4215 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" "339442" + "plane" "(2048 -4215 248) (2048 -4376 248) (2048 -4376 320)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339443" + "plane" "(1392 -4215 248) (2048 -4215 248) (2048 -4215 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" "339444" + "plane" "(2048 -4376 248) (1392 -4376 248) (1392 -4376 320)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 249" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4153140" + side + { + "id" "339493" + "plane" "(2041 -3928 320.199) (2064 -3928 320.199) (2064 -4032 320.199)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339494" + "plane" "(2041 -4032 0.198776) (2064 -4032 0.198776) (2064 -3928 0.198776)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339495" + "plane" "(2041 -3928 320.199) (2041 -4032 320.199) (2041 -4032 0.198776)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339496" + "plane" "(2064 -3928 0.198776) (2064 -4032 0.198776) (2064 -4032 320.199)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339497" + "plane" "(2064 -3928 320.199) (2041 -3928 320.199) (2041 -3928 0.198776)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339498" + "plane" "(2064 -4032 0.198776) (2041 -4032 0.198776) (2041 -4032 320.199)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4153141" + side + { + "id" "339499" + "plane" "(2064 -4032 320.199) (2047.5 -4200 320.199) (2024.5 -4200 320.199)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339500" + "plane" "(2047.5 -4200 0.198776) (2064 -4032 0.198776) (2041 -4032 0.198776)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339501" + "plane" "(2024.5 -4200 320.199) (2024.5 -4200 0.198776) (2041 -4032 0.198776)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339502" + "plane" "(2047.5 -4200 0.198776) (2047.5 -4200 320.199) (2064 -4032 320.199)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339503" + "plane" "(2041 -4032 320.199) (2041 -4032 0.198776) (2064 -4032 0.198776)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339504" + "plane" "(2024.5 -4200 0.198776) (2024.5 -4200 320.199) (2047.5 -4200 320.199)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 112 141" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4138868" + side + { + "id" "339314" + "plane" "(1520 -3136 352) (1520 -2896 352) (1536 -2896 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339315" + "plane" "(1520 -2896 208) (1520 -3136 208) (1536 -3136 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339316" + "plane" "(1520 -3136 208) (1520 -2896 208) (1520 -2896 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339317" + "plane" "(1536 -2896 208) (1536 -3136 208) (1536 -3136 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339318" + "plane" "(1520 -2896 208) (1536 -2896 208) (1536 -2896 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339319" + "plane" "(1536 -3136 208) (1520 -3136 208) (1520 -3136 352)" + "material" "TOOLS/TOOLSCLIP" + "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 159" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4138888" + side + { + "id" "339337" + "plane" "(1488 -4200 0) (1488 -4176 0) (2088 -4176 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -130] 0.125" + "vaxis" "[0 -1 0 -69] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339336" + "plane" "(1488 -4176 -48) (1488 -4200 -48) (2088 -4200 -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" "339335" + "plane" "(1488 -4200 -48) (1488 -4176 -48) (1488 -4176 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" "339334" + "plane" "(2088 -4176 -48) (2088 -4200 -48) (2088 -4200 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" "339333" + "plane" "(2088 -4200 -48) (1488 -4200 -48) (1488 -4200 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339332" + "plane" "(1488 -4176 -48) (2088 -4176 -48) (2088 -4176 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4138889" + side + { + "id" "339343" + "plane" "(1488 -4176 0) (1488 -3984 0) (2088 -3984 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339342" + "plane" "(1488 -3984 -48) (1488 -4176 -48) (2088 -4176 -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" "339341" + "plane" "(1488 -4176 -48) (1488 -3984 -48) (1488 -3984 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" "339340" + "plane" "(2088 -3984 -48) (2088 -4176 -48) (2088 -4176 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" "339339" + "plane" "(1488 -3984 -48) (2088 -3984 -48) (2088 -3984 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" "339338" + "plane" "(2088 -4176 -48) (1488 -4176 -48) (1488 -4176 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4139123" + side + { + "id" "339403" + "plane" "(1024 -4216 48) (1024 -4200 48) (1527 -4200 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" "339404" + "plane" "(1024 -4200 -16) (1024 -4216 -16) (1527 -4216 -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" "339405" + "plane" "(1024 -4216 -16) (1024 -4200 -16) (1024 -4200 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339406" + "plane" "(1527 -4200 -16) (1527 -4216 -16) (1527 -4216 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" "339407" + "plane" "(1024 -4200 -16) (1527 -4200 -16) (1527 -4200 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339408" + "plane" "(1527 -4216 -16) (1024 -4216 -16) (1024 -4216 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 190 227" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4088517" + side + { + "id" "339218" + "plane" "(-179 -5680 160.5) (-113 -5683 160.5) (-113 -5693 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339219" + "plane" "(-179 -5696 31.5002) (-113 -5693 31.5002) (-113 -5683 31.5002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339220" + "plane" "(-179 -5680 31.5002) (-179 -5680 160.5) (-179 -5696 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339221" + "plane" "(-113 -5693 31.5002) (-113 -5693 160.5) (-113 -5683 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339222" + "plane" "(-113 -5683 31.5002) (-113 -5683 160.5) (-179 -5680 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339223" + "plane" "(-179 -5696 31.5002) (-179 -5696 160.5) (-113 -5693 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 104 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4088518" + side + { + "id" "339224" + "plane" "(3 -5683 160.5) (69 -5680 160.5) (69 -5696 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339225" + "plane" "(3 -5693 31.5002) (69 -5696 31.5002) (69 -5680 31.5002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339226" + "plane" "(3 -5683 31.5002) (3 -5683 160.5) (3 -5693 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339227" + "plane" "(69 -5696 31.5002) (69 -5696 160.5) (69 -5680 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339228" + "plane" "(69 -5680 31.5002) (69 -5680 160.5) (3 -5683 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339229" + "plane" "(3 -5693 31.5002) (3 -5693 160.5) (69 -5696 160.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4060490" + side + { + "id" "339206" + "plane" "(2576 -4400 560) (2576 -4352 560) (2808 -4352 560)" + "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" "339207" + "plane" "(2576 -4352 -16) (2576 -4400 -16) (2808 -4400 -16)" + "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" "339208" + "plane" "(2576 -4400 -16) (2576 -4352 -16) (2576 -4352 560)" + "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" "339209" + "plane" "(2808 -4352 -16) (2808 -4400 -16) (2808 -4400 560)" + "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" "339210" + "plane" "(2576 -4352 -16) (2808 -4352 -16) (2808 -4352 560)" + "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" "339211" + "plane" "(2808 -4400 -16) (2576 -4400 -16) (2576 -4400 560)" + "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" "0 222 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4060493" + side + { + "id" "339212" + "plane" "(1824 -2480 -32) (2384 -2480 -32) (2384 -2560 -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" "339213" + "plane" "(1824 -2560 -48) (2384 -2560 -48) (2384 -2480 -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" "339214" + "plane" "(1824 -2480 -32) (1824 -2560 -32) (1824 -2560 -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" "339215" + "plane" "(2384 -2480 -48) (2384 -2560 -48) (2384 -2560 -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" "339216" + "plane" "(2384 -2480 -32) (1824 -2480 -32) (1824 -2480 -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" "339217" + "plane" "(2384 -2560 -48) (1824 -2560 -48) (1824 -2560 -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 164 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4046104" + side + { + "id" "339193" + "plane" "(2088 -4208 0) (2088 -3792 0) (2112 -3792 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 -1 0 58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339192" + "plane" "(2088 -3792 -16) (2088 -4208 -16) (2112 -4208 -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" "339191" + "plane" "(2088 -4208 -16) (2088 -3792 -16) (2088 -3792 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" "339190" + "plane" "(2112 -3792 -16) (2112 -4208 -16) (2112 -4208 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" "339189" + "plane" "(2088 -3792 -16) (2112 -3792 -16) (2112 -3792 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" "339188" + "plane" "(2112 -4208 -16) (2088 -4208 -16) (2088 -4208 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 168 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4032205" + side + { + "id" "339145" + "plane" "(2608 -4352 -16) (2464 -4352 -16) (2464 -3776 -16)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339144" + "plane" "(2608 -3776 -32) (2464 -3776 -32) (2464 -4352 -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" "339143" + "plane" "(2464 -3776 -32) (2608 -3776 -32) (2608 -3776 -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" "339142" + "plane" "(2608 -4352 -32) (2464 -4352 -32) (2464 -4352 -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" "339141" + "plane" "(2608 -3776 -32) (2608 -4352 -32) (2608 -4352 -16)" + "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" "339140" + "plane" "(2464 -4352 -32) (2464 -3776 -32) (2464 -3776 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4032206" + side + { + "id" "339151" + "plane" "(2464 -4208 -16) (2064 -4208 -16) (2064 -3776 -16)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339150" + "plane" "(2464 -3776 -32) (2064 -3776 -32) (2064 -4208 -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" "339149" + "plane" "(2064 -4208 -32) (2064 -3776 -32) (2064 -3776 -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" "339148" + "plane" "(2064 -3776 -32) (2464 -3776 -32) (2464 -3776 -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" "339147" + "plane" "(2464 -4208 -32) (2064 -4208 -32) (2064 -4208 -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" "339146" + "plane" "(2464 -3776 -32) (2464 -4208 -32) (2464 -4208 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4004933" + side + { + "id" "339041" + "plane" "(-920 -2920 192) (-920 -2912 192) (-376 -2912 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" "339040" + "plane" "(-920 -2912 184) (-920 -2916 184) (-376 -2916 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339039" + "plane" "(-920 -2916 184) (-920 -2912 184) (-920 -2912 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" "339038" + "plane" "(-376 -2912 184) (-376 -2916 184) (-376 -2920 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339037" + "plane" "(-920 -2912 184) (-376 -2912 184) (-376 -2912 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" "339036" + "plane" "(-920 -2920 186) (-920 -2920 192) (-376 -2920 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339035" + "plane" "(-376 -2916 184) (-920 -2916 184) (-920 -2920 186)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1772] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 208 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4004940" + side + { + "id" "339055" + "plane" "(-912 -3168 192) (-912 -3160 192) (-376 -3160 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" "339054" + "plane" "(-912 -3164 184) (-912 -3168 184) (-376 -3168 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339053" + "plane" "(-376 -3164 184) (-376 -3168 184) (-376 -3168 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" "339052" + "plane" "(-912 -3168 184) (-912 -3164 184) (-912 -3160 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339051" + "plane" "(-376 -3168 184) (-912 -3168 184) (-912 -3168 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" "339050" + "plane" "(-376 -3160 186) (-376 -3160 192) (-912 -3160 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339049" + "plane" "(-912 -3160 186) (-912 -3164 184) (-376 -3164 184)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1772] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976571" + side + { + "id" "338517" + "plane" "(2624 -4080 -48) (2624 -4096 -48) (2808 -4096 -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" "338516" + "plane" "(2624 -4096 16) (2624 -4096 -48) (2624 -4080 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -160] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338515" + "plane" "(2808 -4080 16) (2808 -4080 -48) (2808 -4096 -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" "338514" + "plane" "(2624 -4080 16) (2624 -4080 -48) (2808 -4080 -48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -111.984] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338513" + "plane" "(2808 -4096 16) (2808 -4096 -48) (2624 -4096 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -415.997] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338512" + "plane" "(2624 -4096 16) (2624 -4080 16) (2808 -4080 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" + } + editor + { + "color" "0 222 187" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976643" + side + { + "id" "338559" + "plane" "(2808 -3776 176) (2808 -3776 208) (2608 -3776 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338558" + "plane" "(2608 -3792 176) (2608 -3792 208) (2808 -3792 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338557" + "plane" "(2808 -3792 208) (2608 -3792 208) (2608 -3776 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" "338556" + "plane" "(2608 -3792 208) (2608 -3792 176) (2608 -3776 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" "338555" + "plane" "(2808 -3776 208) (2808 -3776 176) (2808 -3792 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" "338554" + "plane" "(2808 -3776 176) (2608 -3776 176) (2608 -3792 176)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "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 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976741" + side + { + "id" "338571" + "plane" "(2608 -3776 16) (2640 -3776 16) (2640 -3776 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338570" + "plane" "(2640 -3792 144) (2640 -3792 16) (2608 -3792 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338569" + "plane" "(2640 -3776 144) (2640 -3776 16) (2640 -3792 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" "338568" + "plane" "(2640 -3776 16) (2608 -3776 16) (2608 -3792 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" "338567" + "plane" "(2640 -3792 144) (2608 -3792 144) (2608 -3776 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" "338566" + "plane" "(2608 -3792 144) (2608 -3792 16) (2608 -3776 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976743" + side + { + "id" "338583" + "plane" "(2640 -3776 -48) (2608 -3776 -48) (2608 -3792 -48)" + "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" "338582" + "plane" "(2608 -3776 -48) (2640 -3776 -48) (2640 -3776 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338581" + "plane" "(2640 -3792 16) (2640 -3792 -48) (2608 -3792 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338580" + "plane" "(2640 -3776 16) (2640 -3776 -48) (2640 -3792 -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" "338579" + "plane" "(2640 -3792 16) (2608 -3792 16) (2608 -3776 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" "338578" + "plane" "(2608 -3792 16) (2608 -3792 -48) (2608 -3776 -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 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976744" + side + { + "id" "338589" + "plane" "(2608 -3776 -48) (2344 -3776 -48) (2344 -3792 -48)" + "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" "338588" + "plane" "(2344 -3776 16) (2344 -3776 -48) (2608 -3776 -48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338587" + "plane" "(2608 -3792 -48) (2344 -3792 -48) (2344 -3792 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338586" + "plane" "(2344 -3792 16) (2344 -3792 -48) (2344 -3776 -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" "338585" + "plane" "(2608 -3792 16) (2344 -3792 16) (2344 -3776 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" "338584" + "plane" "(2608 -3776 16) (2608 -3776 -48) (2608 -3792 -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 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976765" + side + { + "id" "338607" + "plane" "(2808 -4096 -16) (2808 -4352 -16) (2608 -4352 -16)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338606" + "plane" "(2608 -4096 -32) (2608 -4352 -32) (2808 -4352 -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" "338605" + "plane" "(2808 -4096 -32) (2808 -4352 -32) (2808 -4352 -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" "338604" + "plane" "(2808 -4352 -32) (2608 -4352 -32) (2608 -4352 -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" "338603" + "plane" "(2608 -4352 -32) (2608 -4096 -32) (2608 -4096 -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" "338602" + "plane" "(2608 -4096 -32) (2808 -4096 -32) (2808 -4096 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976777" + side + { + "id" "338625" + "plane" "(2608 -3776 144) (2808 -3776 144) (2808 -3776 176)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338624" + "plane" "(2808 -3792 176) (2808 -3792 144) (2608 -3792 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338623" + "plane" "(2808 -3776 176) (2808 -3776 144) (2808 -3792 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338622" + "plane" "(2808 -3776 144) (2608 -3776 144) (2608 -3792 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338621" + "plane" "(2808 -3792 176) (2608 -3792 176) (2608 -3776 176)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338620" + "plane" "(2608 -3792 176) (2608 -3792 144) (2608 -3776 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "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 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976800" + side + { + "id" "338673" + "plane" "(2608 -3792 -48) (2608 -4096 -48) (2624 -4096 -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" "338672" + "plane" "(2608 -4096 -16) (2608 -4096 -48) (2608 -3792 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 96] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338671" + "plane" "(2624 -3792 -16) (2624 -3792 -48) (2624 -4096 -48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.013] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338670" + "plane" "(2608 -3792 -16) (2608 -3792 -48) (2624 -3792 -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" "338669" + "plane" "(2624 -4096 -16) (2624 -4096 -48) (2608 -4096 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -543.997] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338668" + "plane" "(2608 -4096 -16) (2608 -3792 -16) (2624 -3792 -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" + } + editor + { + "color" "0 138 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976804" + side + { + "id" "338685" + "plane" "(2608 -3888 -16) (2608 -3792 -16) (2608 -3792 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 96] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338684" + "plane" "(2624 -3792 16) (2624 -3792 -16) (2624 -3888 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.013] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338683" + "plane" "(2608 -3792 16) (2608 -3792 -16) (2624 -3792 -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" "338682" + "plane" "(2608 -3888 16) (2608 -3792 16) (2624 -3792 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" "338681" + "plane" "(2608 -3792 -16) (2608 -3888 -16) (2624 -3888 -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" "338680" + "plane" "(2624 -3888 16) (2624 -3888 -16) (2608 -3888 -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 138 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3976813" + side + { + "id" "338691" + "plane" "(2608 -4096 16) (2608 -4096 -16) (2608 -4016 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 96] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338690" + "plane" "(2624 -4016 -16) (2624 -4096 -16) (2624 -4096 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.013] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338689" + "plane" "(2624 -4096 16) (2624 -4096 -16) (2608 -4096 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -543.997] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338688" + "plane" "(2608 -4096 16) (2608 -4016 16) (2624 -4016 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" "338687" + "plane" "(2608 -4016 -16) (2608 -4096 -16) (2624 -4096 -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" "338686" + "plane" "(2608 -4016 16) (2608 -4016 -16) (2624 -4016 -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 138 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3977145" + side + { + "id" "338799" + "plane" "(2608 -4096 -16) (2608 -4080 -16) (2888 -4080 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338798" + "plane" "(2888 -4096 -32) (2888 -4080 -32) (2608 -4080 -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" "338797" + "plane" "(2888 -4080 -32) (2888 -4096 -32) (2888 -4096 -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" "338796" + "plane" "(2608 -4096 -32) (2608 -4080 -32) (2608 -4080 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338795" + "plane" "(2888 -4096 -32) (2608 -4096 -32) (2608 -4096 -16)" + "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" "338794" + "plane" "(2608 -4080 -32) (2888 -4080 -32) (2888 -4080 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3977158" + side + { + "id" "338805" + "plane" "(2608 -4080 -16) (2608 -4070 -16) (2888 -4070 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338804" + "plane" "(2888 -4080 -32) (2888 -4070 -32) (2608 -4070 -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" "338803" + "plane" "(2888 -4070 -32) (2888 -4080 -32) (2888 -4080 -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" "338802" + "plane" "(2608 -4080 -32) (2608 -4070 -32) (2608 -4070 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338801" + "plane" "(2888 -4080 -32) (2608 -4080 -32) (2608 -4080 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338800" + "plane" "(2608 -4070 -32) (2888 -4070 -32) (2888 -4070 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3977159" + side + { + "id" "338811" + "plane" "(2608 -4070 -16) (2608 -3776 -16) (2792 -3776 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338810" + "plane" "(2792 -4070 -32) (2792 -3776 -32) (2608 -3776 -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" "338809" + "plane" "(2792 -3776 -32) (2792 -4070 -32) (2792 -4070 -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" "338808" + "plane" "(2608 -3776 -32) (2792 -3776 -32) (2792 -3776 -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" "338807" + "plane" "(2608 -4070 -32) (2608 -3776 -32) (2608 -3776 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338806" + "plane" "(2792 -4070 -32) (2608 -4070 -32) (2608 -4070 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3962967" + side + { + "id" "338403" + "plane" "(-368 -2912 128) (-400 -2912 128) (-400 -2896 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" "338402" + "plane" "(-400 -2896 48) (-400 -2896 128) (-400 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -320] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338401" + "plane" "(-368 -2896 128) (-400 -2896 128) (-400 -2896 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338400" + "plane" "(-400 -2912 48) (-400 -2912 128) (-368 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[-1 0 0 -954.994] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338399" + "plane" "(-368 -2896 48) (-400 -2896 48) (-400 -2912 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" "338398" + "plane" "(-368 -2912 48) (-368 -2912 128) (-368 -2896 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 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3962968" + side + { + "id" "338409" + "plane" "(-80 -2912 128) (-368 -2912 128) (-368 -2896 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" "338408" + "plane" "(-80 -2896 48) (-80 -2896 128) (-368 -2896 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338407" + "plane" "(-368 -2912 128) (-80 -2912 128) (-80 -2912 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338406" + "plane" "(-80 -2912 48) (-80 -2912 128) (-80 -2896 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" "338405" + "plane" "(-80 -2896 48) (-368 -2896 48) (-368 -2912 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" "338404" + "plane" "(-368 -2896 48) (-368 -2896 128) (-368 -2912 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 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3962969" + side + { + "id" "338415" + "plane" "(-400 -2912 48) (-400 -2912 8) (-400 -2896 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -320] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338414" + "plane" "(-400 -2896 48) (-400 -2896 8) (-368 -2896 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338413" + "plane" "(-368 -2912 8) (-400 -2912 8) (-400 -2912 48)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[-1 0 0 -954.994] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338412" + "plane" "(-368 -2896 8) (-400 -2896 8) (-400 -2912 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" "338411" + "plane" "(-368 -2912 48) (-400 -2912 48) (-400 -2896 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" "338410" + "plane" "(-368 -2896 48) (-368 -2896 8) (-368 -2912 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" + } + editor + { + "color" "0 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3962970" + side + { + "id" "338421" + "plane" "(-368 -2896 8) (-80 -2896 8) (-80 -2896 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338420" + "plane" "(-80 -2912 48) (-80 -2912 8) (-368 -2912 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338419" + "plane" "(-80 -2896 48) (-80 -2896 8) (-80 -2912 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" "338418" + "plane" "(-80 -2896 8) (-368 -2896 8) (-368 -2912 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" "338417" + "plane" "(-80 -2912 48) (-368 -2912 48) (-368 -2896 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" "338416" + "plane" "(-368 -2912 48) (-368 -2912 8) (-368 -2896 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3962977" + side + { + "id" "338427" + "plane" "(-368 -2896 -16) (-400 -2896 -16) (-400 -2912 -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" "338426" + "plane" "(-400 -2912 8) (-400 -2912 -16) (-400 -2896 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -320] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338425" + "plane" "(-400 -2896 8) (-400 -2896 -16) (-368 -2896 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338424" + "plane" "(-368 -2912 -16) (-400 -2912 -16) (-400 -2912 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[-1 0 0 -954.994] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338423" + "plane" "(-368 -2912 8) (-400 -2912 8) (-400 -2896 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" "338422" + "plane" "(-368 -2896 8) (-368 -2896 -16) (-368 -2912 -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" "0 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3935145" + side + { + "id" "338291" + "plane" "(0 -4688 128.442) (0 -4672 128.442) (66 -4672 128.442)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338292" + "plane" "(0 -4672 -0.558453) (0 -4688 -0.558453) (66 -4688 -0.558453)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338293" + "plane" "(0 -4688 -0.558519) (0 -4672 -0.558519) (0 -4672 128.441)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338294" + "plane" "(66 -4672 -0.558531) (66 -4688 -0.558531) (66 -4688 128.441)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338295" + "plane" "(0 -4672 -0.558525) (66 -4672 -0.558525) (66 -4672 128.441)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338296" + "plane" "(66 -4688 -0.558525) (0 -4688 -0.558525) (0 -4688 128.441)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 128 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3935146" + side + { + "id" "338297" + "plane" "(182 -4688 128.442) (182 -4672 128.442) (248 -4672 128.442)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338298" + "plane" "(182 -4672 -0.558456) (182 -4688 -0.558456) (248 -4688 -0.558456)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338299" + "plane" "(182 -4688 -0.558519) (182 -4672 -0.558519) (182 -4672 128.441)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338300" + "plane" "(248 -4672 -0.558531) (248 -4688 -0.558531) (248 -4688 128.441)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338301" + "plane" "(182 -4672 -0.558525) (248 -4672 -0.558525) (248 -4672 128.441)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338302" + "plane" "(248 -4688 -0.558525) (182 -4688 -0.558525) (182 -4688 128.441)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3935573" + side + { + "id" "338350" + "plane" "(1437 -2104 400) (1437 -1744 400) (1536 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338351" + "plane" "(1437 -1744 -16) (1437 -2104 -16) (1536 -2104 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338352" + "plane" "(1437 -2104 -16) (1437 -1744 -16) (1437 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338353" + "plane" "(1536 -1744 -16) (1536 -2104 -16) (1536 -2104 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338354" + "plane" "(1437 -1744 -16) (1536 -1744 -16) (1536 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338355" + "plane" "(1536 -2104 -16) (1437 -2104 -16) (1437 -2104 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 178 219" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3921187" + side + { + "id" "338158" + "plane" "(1232 -4992 0) (1232 -5000 0) (1570 -5000 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338157" + "plane" "(1232 -5000 0) (1232 -5000 236) (1570 -5000 236)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338156" + "plane" "(1232 -5000 236) (1232 -4992 236) (1576 -4992 236)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338155" + "plane" "(1576 -4992 0) (1576 -4992 236) (1232 -4992 236)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338154" + "plane" "(1570 -5000 0) (1570 -5000 236) (1576 -4992 236)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338153" + "plane" "(1232 -5000 0) (1232 -4992 0) (1232 -4992 236)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 149 178" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3907497" + side + { + "id" "338096" + "plane" "(620 -4672 191) (584 -4672 191) (560 -4648 191)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338095" + "plane" "(648 -4648 0) (560 -4648 0) (584 -4672 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338094" + "plane" "(560 -4648 0) (648 -4648 0) (648 -4648 191)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338093" + "plane" "(620 -4672 0) (584 -4672 0) (584 -4672 191)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338092" + "plane" "(648 -4648 0) (620 -4672 0) (620 -4672 191)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338091" + "plane" "(584 -4672 0) (560 -4648 0) (560 -4648 191)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3907627" + side + { + "id" "338133" + "plane" "(561.5 -3400 224) (919 -3400 224) (944 -3424 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338132" + "plane" "(528.5 -3424 -40) (944 -3424 -40) (919 -3400 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338131" + "plane" "(919 -3400 224) (561.5 -3400 224) (561.5 -3400 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338130" + "plane" "(528.5 -3424 224) (944 -3424 224) (944 -3424 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338129" + "plane" "(561.5 -3400 224) (528.5 -3424 224) (528.5 -3424 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338128" + "plane" "(944 -3424 224) (919 -3400 224) (919 -3400 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 126 251" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3907767" + side + { + "id" "338146" + "plane" "(1416 -2552 400) (1520 -2552 400) (1520 -2816 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338145" + "plane" "(1520 -2816 -40) (1520 -2552 -40) (1416 -2552 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338144" + "plane" "(1336 -2616 400) (1336 -2816 400) (1336 -2816 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338143" + "plane" "(1520 -2816 400) (1520 -2552 400) (1520 -2552 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338142" + "plane" "(1520 -2552 400) (1416 -2552 400) (1416 -2552 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338141" + "plane" "(1336 -2816 400) (1520 -2816 400) (1520 -2816 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338140" + "plane" "(1416 -2552 400) (1336 -2616 400) (1336 -2616 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 243" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3867121" + side + { + "id" "338047" + "plane" "(-829 -4384 -48) (-829 -4232 -48) (-808 -4232 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338046" + "plane" "(-829 -4232 -224) (-829 -4384 -224) (-700 -4384 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338045" + "plane" "(-829 -4384 -224) (-829 -4232 -224) (-829 -4232 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338044" + "plane" "(-700 -4382 -224) (-700 -4384 -224) (-700 -4384 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338043" + "plane" "(-829 -4232 -224) (-808 -4232 -224) (-808 -4232 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338042" + "plane" "(-700 -4384 -224) (-829 -4384 -224) (-829 -4384 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338041" + "plane" "(-808 -4232 -224) (-700 -4382 -224) (-700 -4382 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 131 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3867168" + side + { + "id" "338078" + "plane" "(160 -4120 184) (248 -4120 184) (248 -4208 184)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338077" + "plane" "(149 -4120 -96) (248 -4224 -96) (248 -4208 -96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338074" + "plane" "(248 -4120 -96) (248 -4120 184) (160 -4120 184)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338073" + "plane" "(248 -4224 -96) (248 -4224 184) (248 -4208 184)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338072" + "plane" "(149 -4120 -96) (149 -4120 184) (248 -4224 184)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3853416" + side + { + "id" "337814" + "plane" "(1129 -3109 83) (1129 -2909 83) (1145 -2909 83)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337815" + "plane" "(1129 -2909 -45) (1129 -3109 -45) (1145 -3109 -45)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337816" + "plane" "(1129 -3109 -45) (1129 -2909 -45) (1129 -2909 83)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337817" + "plane" "(1145 -2909 -45) (1145 -3109 -45) (1145 -3109 83)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337818" + "plane" "(1129 -2909 -45) (1145 -2909 -45) (1145 -2909 83)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337819" + "plane" "(1145 -3109 -45) (1129 -3109 -45) (1129 -3109 83)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 237 0" + "groupid" "3853443" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3853639" + side + { + "id" "337921" + "plane" "(760 -5736 160) (760 -5692 160) (848 -5692 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337920" + "plane" "(760 -5692 113) (760 -5736 113) (848 -5736 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337919" + "plane" "(760 -5736 113) (760 -5692 113) (760 -5692 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337918" + "plane" "(848 -5692 113) (848 -5736 113) (848 -5736 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337917" + "plane" "(760 -5692 113) (848 -5692 113) (848 -5692 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337916" + "plane" "(848 -5736 113) (760 -5736 113) (760 -5736 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3853876" + side + { + "id" "337969" + "plane" "(1156.64 -6624 0) (288 -6624 0) (288 -6600 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[288 -6600 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.996109 0 0 0.996109 0 0 0.996109 0 0 0.996109 0 0 0.996109 0 0" + "row1" "0.998051 0 0 0.184244 -0.982636 0 0.9987 0 0 0.998051 0 0 0.998051 0 0" + "row2" "0.141416 -0.989915 0 0.12403 -0.992244 0 0.164392 -0.986354 0 0.144301 -0.989493 0 0.12403 -0.992244 0" + "row3" "0.161896 -0.986793 0 0.179714 -0.9837 0 0.16725 -0.985897 0 0.170538 -0.985332 0 0.174367 -0.98466 0" + "row4" "0.447116 -0.894232 0 0 0 0 0.242507 -0.970028 0 0.242507 -0.970028 0 0.242507 -0.970028 0" + } + distances + { + "row0" "3.05176e-05 3.05176e-05 3.05176e-05 3.05176e-05 3.05176e-05" + "row1" "6.10352e-05 0.00049679 9.15527e-05 6.10352e-05 6.10352e-05" + "row2" "0.00345267 0.00344457 0.0029701 0.00296068 0.00344457" + "row3" "0.00791694 0.00645272 0.0069336 0.00644203 0.00595054" + "row4" "0.000545915 0 0.00100662 0.00100662 0.00100662" + } + 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" "337968" + "plane" "(288 -6600 -48) (288 -6624 -48) (1156.64 -6624 -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" "337967" + "plane" "(1156.64 -6624 -48) (288 -6624 -48) (288 -6624 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" "337966" + "plane" "(288 -6624 -48) (288 -6600 -48) (288 -6600 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337965" + "plane" "(288 -6600 -48) (1189.36 -6600 -48) (1189.36 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337964" + "plane" "(1189.36 -6600 -48) (1156.64 -6624 -48) (1156.63 -6624 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3854029" + side + { + "id" "337970" + "plane" "(966 -4648 7) (1040 -4648 7) (1040 -4900 7)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "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" "[966 -4900 7]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -0.999999 0 0 -0.999997 0 0 -0.999999 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.999999 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 -0.999999" + "row2" "0 0 1 0 0 -0.999998 0 0 -1 0 0 -0.999999 0 0 0.999998 0 0 1 0 0 1 0 0 -1 0 0 1" + "row3" "0 0 -1 0 0 -0.999999 0 0 -1 0 0 1 0 0 -1 0 0 -1 0 0 0.999999 0 0 -1 0 0 1" + "row4" "0 0 -1 0 0 -1 0 0 -1 0 0 -0.999998 0 0 -1 0 0 1 0 0 -1 0 0 -0.999999 0 0 -1" + "row5" "0 0 0.999999 0 0 1 0 0 -1 0 0 1 0 0 -0.999999 0 0 -1 0 0 1 0 0 1 0 0 0.999999" + "row6" "0 0 -0.999991 0 0 -0.999999 0 0 -1 0 0 -1 0 0 1 0 0 -0.999999 0 0 1 0 0 -0.999999 0 0 -1" + "row7" "0 0 -1 0 0 -1 0 0 -1 0 0 -0.999999 0 0 1 0 0 -1 0 0 -0.999997 0 0 -0.999999 0 0 1" + "row8" "0 0 -1 0 0 1 0 0 -1 0 0 -0.999999 0 0 -1 0 0 -1 0 0 1 0 0 -1 0 0 -1" + } + distances + { + "row0" "0.230237 0.0447178 0.143579 0.64669 1.08041 0.994139 1.03431 0.210967 0.326301" + "row1" "0.508505 0.387466 1.32583 1.46928 0.523542 0.557481 1.01709 0.477579 0.147738" + "row2" "0.69031 0.0530486 0.728683 0.148215 0.0676999 0.622529 1.16326 0.501945 1.05366" + "row3" "0.682642 0.248436 1.21586 0.522469 0.914795 1.53325 0.196771 0.261449 0.846674" + "row4" "0.671858 0.448751 0.515713 0.067771 1.13971 0.313824 0.419127 0.174998 0.500317" + "row5" "0.187058 1.20645 0.934644 0.865757 0.170466 0.688259 1.37145 0.803518 0.108369" + "row6" "0.0130539 0.225806 0.406094 0.358049 0.449181 0.092649 0.564789 0.177844 1.5867" + "row7" "0.761078 0.795139 0.300383 0.115561 0.471722 0.539484 0.0431771 0.144222 0.449238" + "row8" "1.65739 0.58331 1.05772 0.0960479 0.618103 0.483186 0.34626 0.455672 1.07878" + } + 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" "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" "337971" + "plane" "(966 -4900 6) (1040 -4900 6) (1040 -4648 6)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337972" + "plane" "(966 -4648 7) (966 -4900 7) (966 -4900 6)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337973" + "plane" "(1040 -4648 6) (1040 -4900 6) (1040 -4900 7)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337974" + "plane" "(1040 -4648 7) (966 -4648 7) (966 -4648 6)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337975" + "plane" "(1040 -4900 6) (966 -4900 6) (966 -4900 7)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 178 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3854120" + side + { + "id" "337976" + "plane" "(1040 -4648 264) (1038 -4962 264) (961 -4910 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337977" + "plane" "(1038 -4962 0) (1040 -4648 0) (961 -4648 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337978" + "plane" "(961 -4910 264) (961 -4910 0) (961 -4648 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337979" + "plane" "(1038 -4962 0) (1038 -4962 264) (1040 -4648 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337980" + "plane" "(961 -4648 264) (961 -4648 0) (1040 -4648 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337981" + "plane" "(961 -4910 0) (961 -4910 264) (1038 -4962 264)" + "material" "TOOLS/TOOLSCLIP" + "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 213" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839210" + side + { + "id" "337477" + "plane" "(384 -3776 0) (384 -3816 0) (888 -3816 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" "337476" + "plane" "(384 -3816 0) (384 -3776 0) (384 -3776 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" "337475" + "plane" "(888 -3776 0) (888 -3816 0) (888 -3816 32)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 382] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337474" + "plane" "(384 -3776 0) (888 -3776 0) (888 -3776 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" "337473" + "plane" "(888 -3816 0) (384 -3816 0) (384 -3816 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" "337472" + "plane" "(384 -3816 32) (384 -3776 32) (888 -3776 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 232 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839231" + side + { + "id" "337519" + "plane" "(776 -3832 0) (888 -3832 0) (888 -3816 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" "337518" + "plane" "(888 -3816 32) (888 -3816 0) (888 -3832 0)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 382] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337517" + "plane" "(776 -3816 0) (888 -3816 0) (888 -3816 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" "337516" + "plane" "(888 -3832 32) (888 -3832 0) (776 -3832 0)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[1 0 0 -961.996] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337515" + "plane" "(776 -3816 32) (888 -3816 32) (888 -3832 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" "337514" + "plane" "(776 -3832 32) (776 -3832 0) (776 -3816 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839242" + side + { + "id" "337537" + "plane" "(-48 -3792 -32) (-48 -3832 -32) (528 -3832 -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" "337536" + "plane" "(-48 -3832 -32) (-48 -3792 -32) (-48 -3792 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" "337535" + "plane" "(-48 -3792 -32) (528 -3792 -32) (528 -3792 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" "337534" + "plane" "(-48 -3832 -32) (-48 -3832 32) (528 -3832 32)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[1 0 0 -961.996] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337533" + "plane" "(-48 -3832 32) (-48 -3792 32) (528 -3792 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" "337532" + "plane" "(528 -3792 -32) (528 -3832 -32) (528 -3832 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839327" + side + { + "id" "337544" + "plane" "(2097 -3768 236.125) (2112 -3768 236.125) (2097 -3792 236.125)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337545" + "plane" "(2097 -3792 -56.8755) (2112 -3768 -56.8755) (2097 -3768 -56.8755)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337546" + "plane" "(2097 -3768 -56.8755) (2097 -3768 236.125) (2097 -3792 236.125)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337547" + "plane" "(2097 -3792 -56.8755) (2097 -3792 236.125) (2112 -3768 236.125)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337548" + "plane" "(2112 -3768 -56.8755) (2112 -3768 236.125) (2097 -3768 236.125)" + "material" "TOOLS/TOOLSCLIP" + "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 229" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839359" + side + { + "id" "337561" + "plane" "(-1088 -3805 32) (-1088 -3550 32) (-1072 -3550 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-1072 -3550 32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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.999512 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 -0.999512 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0.000244141 0 0 0 0" + "row4" "0 0.000244141 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" "206.429 218.571 230.714 242.857 255" + "row4" "48.5714 36.4286 24.2857 12.1429 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" "337560" + "plane" "(-1088 -3550 16) (-1088 -3805 16) (-1072 -3805 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" "337559" + "plane" "(-1088 -3805 16) (-1088 -3550 16) (-1088 -3550 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" "337558" + "plane" "(-1088 -3550 16) (-1072 -3550 16) (-1072 -3550 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" "337557" + "plane" "(-1072 -3805 16) (-1088 -3805 16) (-1088 -3805 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" "337556" + "plane" "(-1072 -3550 16) (-1072 -3805 16) (-1072 -3805 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 165 130" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839361" + side + { + "id" "337573" + "plane" "(-1072 -3328 -2) (-1088 -3328 -2) (-1088 -3550 -2)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337572" + "plane" "(-1088 -3550 32) (-1088 -3550 -2) (-1088 -3328 -2)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337571" + "plane" "(-1088 -3328 -0) (-1088 -3328 -2) (-1072 -3328 -2)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337570" + "plane" "(-1072 -3550 -2) (-1088 -3550 -2) (-1088 -3550 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337569" + "plane" "(-1072 -3550 32) (-1088 -3550 32) (-1088 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -0.98977 0.142671 249.017] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1072 -3328 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 -0.999024 0 0 0 0 0 -0.447018 -0.894037 0 0 0 0 0 -0.999512 0 0.999024 0 0 0 0 0 0 0 0" + "row1" "0 -0.99951 0.00195217 -0.242478 -0.969912 0.00094718 -0.447018 -0.894035 0.00174616 -0.447018 -0.894035 0.00174616 0 -0.99951 0.00195217 -0.447018 -0.894035 0.00174616 0 0 0.8 -0.447018 -0.894035 0.00174616 -0.447018 -0.894035 0.00174616" + "row2" "-0.447016 -0.894031 0.00349231 -0.447115 -0.894231 0.00174654 -0.447016 -0.894031 0.00349231 -0.447115 -0.894231 0.00174654 -0.447016 -0.894031 0.00349231 -0.447016 -0.894031 0.00349231 0 0 0 -0.447016 -0.894031 0.00349231 -0.447016 -0.894031 0.00349231" + "row3" "-0.242478 -0.969911 0.00189436 0 -0.999512 0 -0.447016 -0.894031 0.00349231 -0.447115 -0.894231 0.00174654 -0.242478 -0.969913 0 -0.164372 -0.986232 0.00256831 0 -0.999504 0.00390431 -0.242478 -0.969911 0.00189436 -0.242478 -0.969911 0.00189436" + "row4" "0 0 0 -0.447007 -0.894015 0.00698449 0 -0.999512 0 -0.242476 -0.969906 0.00378869 0 0 0 -0.447007 -0.894015 0.00698449 0 0 0 -0.447018 -0.894037 0 -0.447113 -0.894226 0.00349307" + "row5" "0 0 0 -0.447007 -0.894015 0.00698449 0 0 0 -0.998903 0 0.0156079 0 0 0 0 0 0 0.447007 0.894015 -0.00698449 0 0 0 0 0 0" + "row6" "0 0 0 -0.447007 -0.894015 0.00698449 0 0 0 -0.447018 -0.894037 0 0 0.999481 -0.00780845 0 -0.999512 0 0.447018 0.894037 0 0 -0.999512 0 0 0 0" + "row7" "0 0 0 -0.998903 0 0.0156079 0 0 0 -0.998903 0 0.0156079 0 0 0 0 0 0 0.447007 0.894015 -0.00698449 0 0 0 0 0 0" + "row8" "0 0 0 -0.999024 0 0 0 0 0 -0.447018 -0.894037 0 0 0 0 0 0 0 0.998903 0 -0.0156079 0 0 0 0 0 0" + } + distances + { + "row0" "0 0.00012207 0 0.000272958 0 0.000244141 0.00012207 0 0" + "row1" "0.000244141 0.000503309 0.000272958 0.000272958 0.000244141 0.000272958 4.76837e-07 0.000272958 0.000272958" + "row2" "0.000272959 0.000545916 0.000272959 0.000545916 0.000272959 0.000272959 0 0.000272959 0.000272959" + "row3" "0.00050331 0.000244141 0.000272959 0.000545916 0.000503309 0.000742527 0.000244142 0.00050331 0.00050331" + "row4" "0 0.000272964 0.000244141 0.000503312 0 0.000272964 0 0.000272958 0.000545918" + "row5" "0 0.000272964 0 0.000122085 0 0 0.000272964 0 0" + "row6" "0 0.000272964 0 0.000272958 0.000244148 0.000244141 0.000272958 0.000244141 0" + "row7" "0 0.000122085 0 0.000122085 0 0 0.000272964 0 0" + "row8" "0 0.00012207 0 0.000272958 0 0 0.000122085 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.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977" + "row1" "0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977" + "row2" "0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977" + "row3" "0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977" + "row4" "0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977" + "row5" "0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977" + "row6" "0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977" + "row7" "0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977" + "row8" "0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977 0 0.14267 0.98977" + } + 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" "337568" + "plane" "(-1072 -3328 0) (-1072 -3328 -2) (-1072 -3550 -2)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 154 183" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839363" + side + { + "id" "337585" + "plane" "(-1088 -3328 0) (-1088 -3184 0) (-1072 -3184 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1072 -3184 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 -0.999512 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0 -0.999512 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.999512 0 0 -0.999512 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.999512 0 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.000244141 0 0 0 0" + "row1" "0 0 0.000244141 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.000244141 0.000244141 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.000244141 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 0 1 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" "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" "337584" + "plane" "(-1088 -3184 -1) (-1088 -3328 -1) (-1072 -3328 -1)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337583" + "plane" "(-1088 -3328 -1) (-1088 -3184 -1) (-1088 -3184 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337582" + "plane" "(-1088 -3184 -1) (-1072 -3184 -1) (-1072 -3184 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337581" + "plane" "(-1072 -3328 -1) (-1088 -3328 -1) (-1088 -3328 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337580" + "plane" "(-1072 -3184 -1) (-1072 -3328 -1) (-1072 -3328 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 170 131" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839372" + side + { + "id" "337597" + "plane" "(-1072 -3184 0) (-464 -3184 0) (-464 -3200 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-464 -3184 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0.998051 0 0 0 0 0 0 -0.999512 0 -0.998051 0 0 -0.998051 0 0 -0.998051 0 0 0 0 0" + "row1" "0 0 0 0 0 0 0.998051 0 0 -0.998051 0 0 0 -0.999512 0 -0.998051 0 0 -0.998051 0 0 -0.999024 0 0 0 0 0" + "row2" "0 0 0 0 0 0 0.998051 0 0 0 0 0 -0.998051 0 0 0 0 0 -0.242421 -0.969683 0 0 0 0 0 0 0" + "row3" "0 0 0 0 0 0 0.998051 0 0 0 0 0 0 -0.999756 0 0 0 0 -0.242421 -0.969683 0 -0.998051 0 0 0 0 0" + "row4" "-0.996109 0 0 0 0 0 0.998051 0 0 0 0 0 0 -0.999512 0 -0.998051 0 0 -0.242421 -0.969683 0 0 0 0 0 0 0" + "row5" "-0.996109 0 0 0 0 0 0.998051 0 0 0 0 0 0 0 0 -0.999024 0 0 -0.242421 -0.969683 0 -0.999024 0 0 0 0 0" + "row6" "0 0 0 0 0 0 0.998051 0 0 0 0 0 0 -0.999512 0 -0.999024 0 0 -0.242421 -0.969683 0 -0.998051 0 0 0 0 0" + "row7" "0 0 0 0 0 0 0.998051 0 0 0 0 0 -0.242421 -0.969683 0 -0.998051 0 0 -0.242421 -0.969683 0 -0.998051 0 0 0 0 0" + "row8" "0 0 0 0 0 0 0.998051 0 0 -0.998051 0 0 0 0 0 -0.242421 0.969683 0 -0.242478 -0.969913 0 0 0.999512 0 0 0 0" + } + distances + { + "row0" "0 0 6.10352e-05 0 0.000244141 6.10352e-05 6.10352e-05 6.10352e-05 0" + "row1" "0 0 6.10352e-05 6.10352e-05 0.000244141 6.10352e-05 6.10352e-05 0.00012207 0" + "row2" "0 0 6.10352e-05 0 6.10352e-05 0 0.000251654 0 0" + "row3" "0 0 6.10352e-05 0 0.000488281 0 0.000251654 6.10352e-05 0" + "row4" "3.05176e-05 0 6.10352e-05 0 0.000244141 6.10352e-05 0.000251654 0 0" + "row5" "3.05176e-05 0 6.10352e-05 0 0 0.00012207 0.000251654 0.00012207 0" + "row6" "0 0 6.10352e-05 0 0.000244141 0.00012207 0.000251654 6.10352e-05 0" + "row7" "0 0 6.10352e-05 0 0.000251654 6.10352e-05 0.000251654 6.10352e-05 0" + "row8" "0 0 6.10352e-05 6.10352e-05 0 0.000251654 0.000503309 0.000244141 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" "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" "337596" + "plane" "(-464 -3200 -1) (-464 -3184 -1) (-1072 -3184 -1)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337595" + "plane" "(-464 -3184 -1) (-464 -3200 -1) (-464 -3200 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337594" + "plane" "(-1072 -3184 -1) (-464 -3184 -1) (-464 -3184 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337593" + "plane" "(-1072 -3200 -1) (-1072 -3184 -1) (-1072 -3184 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337592" + "plane" "(-464 -3200 -1) (-1072 -3200 -1) (-1072 -3200 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 170 131" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839377" + side + { + "id" "337609" + "plane" "(-80 -3550 32) (-64 -3550 32) (-64 -4064 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 122] 0.025" + "vaxis" "[0 -1 0 4] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-64 -3550 32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0" + "row1" "0 0 0 0.999024 0 0 0.447018 0.894037 0 0.447018 -0.894037 0 0.999024 0 0" + "row2" "0 0 0 0.999024 0 0 0.999024 0 0 0.447018 -0.894037 0 0.999024 0 0" + "row3" "0 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0 0.447018 -0.894037 0" + "row4" "0 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0 0.447018 -0.894037 0" + } + distances + { + "row0" "0 0.00012207 0.00012207 0.00012207 0.00012207" + "row1" "0 0.00012207 0.000272958 0.000272958 0.00012207" + "row2" "0 0.00012207 0.00012207 0.000272958 0.00012207" + "row3" "0 0.00012207 0.00012207 0.00012207 0.000272958" + "row4" "0 0.00012207 0.00012207 0.00012207 0.000272958" + } + 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" "255 253.14 251.279 249.419 247.558" + "row2" "255 255 255 255 255" + "row3" "175 176.86 178.721 180.581 182.442" + "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" "337608" + "plane" "(-80 -4064 16) (-64 -4064 16) (-64 -3550 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" "337607" + "plane" "(-64 -3550 16) (-64 -4064 16) (-64 -4064 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" "337606" + "plane" "(-80 -3550 16) (-64 -3550 16) (-64 -3550 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" "337605" + "plane" "(-64 -4064 16) (-80 -4064 16) (-80 -4064 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" "337604" + "plane" "(-80 -4064 16) (-80 -3550 16) (-80 -3550 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839438" + side + { + "id" "337610" + "plane" "(638 -5244 156) (618 -5280 156) (595 -5279 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337611" + "plane" "(618 -5280 0) (638 -5244 0) (626 -5232 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337612" + "plane" "(595 -5279 156) (595 -5279 0) (626 -5232 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337613" + "plane" "(618 -5280 0) (618 -5280 156) (638 -5244 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337614" + "plane" "(626 -5232 156) (626 -5232 0) (638 -5244 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337615" + "plane" "(595 -5279 0) (595 -5279 156) (618 -5280 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 170 183" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839446" + side + { + "id" "337616" + "plane" "(617 -5075 162.096) (642.602 -5114.52 162.096) (643 -5137 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337617" + "plane" "(642.602 -5114.52 0.0960693) (617 -5075 0.0960693) (582 -5075 0.0960693)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337618" + "plane" "(643 -5137 162.096) (643 -5137 0.0960693) (582 -5075 0.0960693)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337619" + "plane" "(642.602 -5114.52 0.0960693) (642.602 -5114.52 162.096) (617 -5075 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337620" + "plane" "(582 -5075 162.096) (582 -5075 0.0960693) (617 -5075 0.0960693)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337621" + "plane" "(643 -5137 0.0960693) (643 -5137 162.096) (642.602 -5114.52 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 139" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839559" + side + { + "id" "337622" + "plane" "(980 -5600 5) (980 -5396 5) (1040 -5396 5)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "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" "[980 -5600 5]" + "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 1 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" + } + distances + { + "row0" "1.78577 1.64168 1.78074 1.69941 1.77033 1.65268 1.84023 1.74148 1.8338" + "row1" "1.73104 1.75105 1.68956 1.69936 1.78808 1.88556 1.62335 1.77122 1.78895" + "row2" "1.89364 1.69766 1.72332 1.6924 1.71628 1.64508 1.67036 1.75368 1.67281" + "row3" "1.83232 1.71267 1.84845 1.72226 1.72011 1.63566 1.71715 1.80113 1.58329" + "row4" "1.96746 1.78408 1.81926 1.74317 1.61795 1.7716 1.98474 1.67512 1.75228" + "row5" "1.80854 1.6134 1.72137 1.72594 1.6813 1.78431 1.68327 1.95215 1.56395" + "row6" "1.87812 1.71592 1.7967 1.91122 1.78345 1.90415 1.77209 1.89522 1.69829" + "row7" "1.78573 1.79352 1.5273 1.8642 1.72632 1.73594 1.77617 1.73183 1.56966" + "row8" "1.91593 1.95826 1.73608 1.51584 1.84466 1.64012 1.87848 1.82483 1.81376" + } + 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" "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" "337623" + "plane" "(980 -5396 4) (980 -5600 4) (1040 -5600 4)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337624" + "plane" "(980 -5600 4) (980 -5396 4) (980 -5396 5)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337625" + "plane" "(1040 -5396 4) (1040 -5600 4) (1040 -5600 5)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337626" + "plane" "(980 -5396 4) (1040 -5396 4) (1040 -5396 5)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337627" + "plane" "(1040 -5600 4) (980 -5600 4) (980 -5600 5)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839686" + side + { + "id" "337640" + "plane" "(974 -5420 264) (1040 -5376 264) (1040 -5598 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337641" + "plane" "(974 -5598 0) (1040 -5598 0) (1040 -5376 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337642" + "plane" "(974 -5420 0) (974 -5420 264) (974 -5598 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337643" + "plane" "(1040 -5598 0) (1040 -5598 264) (1040 -5376 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337644" + "plane" "(1040 -5376 0) (1040 -5376 264) (974 -5420 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337645" + "plane" "(974 -5598 0) (974 -5598 264) (1040 -5598 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 172 133" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825609" + side + { + "id" "337165" + "plane" "(-384 -3160 0) (-656 -3160 0) (-656 -3120 0)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337164" + "plane" "(-384 -3120 -16) (-656 -3120 -16) (-656 -3160 -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" "337163" + "plane" "(-656 -3120 -16) (-384 -3120 -16) (-384 -3120 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337162" + "plane" "(-656 -3160 -16) (-656 -3120 -16) (-656 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337161" + "plane" "(-384 -3160 -16) (-656 -3160 -16) (-656 -3160 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337160" + "plane" "(-384 -3120 -16) (-384 -3160 -16) (-384 -3160 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825618" + side + { + "id" "337177" + "plane" "(-656 -3160 0) (-384 -3160 0) (-376 -3168 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337176" + "plane" "(-384 -3160 -16) (-656 -3160 -16) (-656 -3168 -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" "337175" + "plane" "(-376 -3168 -16) (-376 -3168 0) (-384 -3160 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" "337174" + "plane" "(-656 -3160 -16) (-656 -3160 0) (-656 -3168 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337173" + "plane" "(-384 -3160 -16) (-384 -3160 0) (-656 -3160 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337172" + "plane" "(-656 -3168 -16) (-656 -3168 0) (-376 -3168 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825619" + side + { + "id" "337183" + "plane" "(-352 -3168 0) (-352 -3184 0) (-656 -3184 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" "337182" + "plane" "(-656 -3168 -16) (-656 -3184 -16) (-352 -3184 -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" "337181" + "plane" "(-352 -3168 -16) (-352 -3184 -16) (-352 -3184 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" "337180" + "plane" "(-352 -3184 -16) (-656 -3184 -16) (-656 -3184 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" "337179" + "plane" "(-656 -3184 -16) (-656 -3168 -16) (-656 -3168 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337178" + "plane" "(-656 -3168 -16) (-352 -3168 -16) (-352 -3168 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825624" + side + { + "id" "337189" + "plane" "(-376 -3168 0) (-384 -3160 0) (-384 -3120 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337188" + "plane" "(-376 -3120 -16) (-384 -3120 -16) (-384 -3160 -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" "337187" + "plane" "(-384 -3120 -16) (-376 -3120 -16) (-376 -3120 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337186" + "plane" "(-376 -3168 -16) (-384 -3160 -16) (-384 -3160 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337185" + "plane" "(-384 -3160 -16) (-384 -3120 -16) (-384 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337184" + "plane" "(-376 -3120 -16) (-376 -3168 -16) (-376 -3168 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825625" + side + { + "id" "337195" + "plane" "(-368 -3120 0) (-352 -3120 0) (-352 -3168 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" "337194" + "plane" "(-368 -3168 -16) (-352 -3168 -16) (-352 -3120 -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" "337193" + "plane" "(-352 -3120 -16) (-352 -3168 -16) (-352 -3168 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" "337192" + "plane" "(-368 -3120 -16) (-352 -3120 -16) (-352 -3120 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337191" + "plane" "(-352 -3168 -16) (-368 -3168 -16) (-368 -3168 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337190" + "plane" "(-368 -3168 -16) (-368 -3120 -16) (-368 -3120 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825633" + side + { + "id" "337201" + "plane" "(-368 -2896 0) (-352 -2896 0) (-352 -3120 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" "337200" + "plane" "(-368 -3120 -16) (-352 -3120 -16) (-352 -2896 -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" "337199" + "plane" "(-352 -2896 -16) (-352 -3120 -16) (-352 -3120 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" "337198" + "plane" "(-368 -2896 -16) (-352 -2896 -16) (-352 -2896 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" "337197" + "plane" "(-352 -3120 -16) (-368 -3120 -16) (-368 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337196" + "plane" "(-368 -3120 -16) (-368 -2896 -16) (-368 -2896 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825644" + side + { + "id" "337231" + "plane" "(-398 -2912 0) (-398 -2896 0) (-368 -2896 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" "337230" + "plane" "(-368 -2896 -16) (-398 -2896 -16) (-398 -2912 -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" "337229" + "plane" "(-398 -2896 -16) (-368 -2896 -16) (-368 -2896 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" "337228" + "plane" "(-398 -2912 -16) (-398 -2896 -16) (-398 -2896 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337227" + "plane" "(-368 -2896 -16) (-368 -2912 -16) (-368 -2912 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337226" + "plane" "(-368 -2912 -16) (-398 -2912 -16) (-398 -2912 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825647" + side + { + "id" "337237" + "plane" "(-384 -3120 0) (-398 -3120 0) (-398 -2920 0)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337236" + "plane" "(-398 -2920 -16) (-398 -3120 -16) (-384 -3120 -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" "337235" + "plane" "(-384 -3120 -16) (-398 -3120 -16) (-398 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337234" + "plane" "(-398 -3120 -16) (-398 -2920 -16) (-398 -2920 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337233" + "plane" "(-384 -2920 -16) (-384 -3120 -16) (-384 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337232" + "plane" "(-398 -2920 -16) (-384 -2920 -16) (-384 -2920 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825648" + side + { + "id" "337243" + "plane" "(-384 -2920 0) (-398 -2920 0) (-398 -2912 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -90] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337242" + "plane" "(-398 -2920 -16) (-384 -2920 -16) (-376 -2912 -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" "337241" + "plane" "(-398 -2912 -16) (-398 -2912 0) (-398 -2920 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337240" + "plane" "(-384 -2920 -16) (-384 -2920 0) (-376 -2912 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337239" + "plane" "(-376 -2912 -16) (-376 -2912 0) (-398 -2912 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337238" + "plane" "(-398 -2920 -16) (-398 -2920 0) (-384 -2920 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825651" + side + { + "id" "337249" + "plane" "(-376 -3120 0) (-384 -3120 0) (-384 -2920 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -1] 0.125" + "vaxis" "[1 0 0 -98] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337248" + "plane" "(-384 -2920 -16) (-384 -3120 -16) (-376 -3120 -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" "337247" + "plane" "(-376 -3120 -16) (-384 -3120 -16) (-384 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337246" + "plane" "(-376 -2912 -16) (-376 -3120 -16) (-376 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337245" + "plane" "(-384 -3120 -16) (-384 -2920 -16) (-384 -2920 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337244" + "plane" "(-384 -2920 -16) (-376 -2912 -16) (-376 -2912 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825705" + side + { + "id" "337267" + "plane" "(-920 -2920 0) (-920 -2912 0) (-646 -2912 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -90] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337266" + "plane" "(-646 -2912 -16) (-920 -2912 -16) (-920 -2920 -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" "337265" + "plane" "(-920 -2920 -16) (-920 -2912 -16) (-920 -2912 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" "337264" + "plane" "(-920 -2912 -16) (-646 -2912 -16) (-646 -2912 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" "337263" + "plane" "(-646 -2912 -16) (-646 -2920 -16) (-646 -2920 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337262" + "plane" "(-646 -2920 -16) (-920 -2920 -16) (-920 -2920 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825710" + side + { + "id" "337279" + "plane" "(-646 -3120 0) (-912 -3120 0) (-912 -2920 0)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337278" + "plane" "(-912 -3120 -16) (-646 -3120 -16) (-646 -2920 -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" "337277" + "plane" "(-646 -3120 -16) (-912 -3120 -16) (-912 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337276" + "plane" "(-646 -2920 -16) (-646 -3120 -16) (-646 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337275" + "plane" "(-912 -2920 -16) (-646 -2920 -16) (-646 -2920 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337274" + "plane" "(-912 -3120 -16) (-912 -2920 -16) (-912 -2920 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825718" + side + { + "id" "337291" + "plane" "(-984 -3184 0) (-1024 -3184 0) (-1024 -3168 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" "337290" + "plane" "(-1024 -3168 -16) (-1024 -3184 -16) (-984 -3184 -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" "337289" + "plane" "(-1024 -3184 -16) (-1024 -3168 -16) (-1024 -3168 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" "337288" + "plane" "(-984 -3184 -16) (-1024 -3184 -16) (-1024 -3184 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" "337287" + "plane" "(-984 -3168 -16) (-984 -3184 -16) (-984 -3184 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337286" + "plane" "(-1024 -3168 -16) (-984 -3168 -16) (-984 -3168 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825727" + side + { + "id" "337297" + "plane" "(-1024 -3168 0) (-1024 -3120 0) (-1008 -3120 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" "337296" + "plane" "(-1008 -3120 -16) (-1024 -3120 -16) (-1024 -3168 -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" "337295" + "plane" "(-1024 -3168 -16) (-1024 -3120 -16) (-1024 -3120 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" "337294" + "plane" "(-1024 -3120 -16) (-1008 -3120 -16) (-1008 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337293" + "plane" "(-1008 -3168 -16) (-1024 -3168 -16) (-1024 -3168 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337292" + "plane" "(-1008 -3120 -16) (-1008 -3168 -16) (-1008 -3168 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" + } + editor + { + "color" "0 181 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825738" + side + { + "id" "337321" + "plane" "(-920 -3168 0) (-912 -3160 0) (-904 -3160 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337320" + "plane" "(-904 -3160 -16) (-912 -3160 -16) (-920 -3168 -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" "337319" + "plane" "(-904 -3168 0) (-904 -3160 0) (-904 -3160 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337318" + "plane" "(-920 -3168 0) (-904 -3168 0) (-904 -3168 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337317" + "plane" "(-912 -3160 0) (-920 -3168 0) (-920 -3168 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337316" + "plane" "(-904 -3160 0) (-912 -3160 0) (-912 -3160 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825739" + side + { + "id" "337327" + "plane" "(-912 -3160 0) (-912 -3120 0) (-904 -3120 0)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337326" + "plane" "(-904 -3120 -16) (-912 -3120 -16) (-912 -3160 -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" "337325" + "plane" "(-912 -3120 -16) (-904 -3120 -16) (-904 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337324" + "plane" "(-904 -3120 -16) (-904 -3160 -16) (-904 -3160 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337323" + "plane" "(-912 -3160 -16) (-912 -3120 -16) (-912 -3120 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337322" + "plane" "(-904 -3160 -16) (-912 -3160 -16) (-912 -3160 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825796" + side + { + "id" "337423" + "plane" "(244 -2036 -24) (240 -2032 -24) (352 -2032 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 452.102] 0.078" + "vaxis" "[1 0 0 -155.596] 0.109" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "337422" + "plane" "(240 -2032 -56) (244 -2036 -56) (348.008 -2036 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337421" + "plane" "(352 -2032 -56) (352 -2032 -24) (240 -2032 -24)" + "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" "337420" + "plane" "(244 -2036 -56) (244 -2036 -24) (348 -2036 -24)" + "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" "337419" + "plane" "(348.008 -2036 -56) (348 -2036 -24) (352 -2032 -24)" + "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" "337418" + "plane" "(240 -2032 -56) (240 -2032 -24) (244 -2036 -24)" + "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" "157 186 0" + "groupid" "3825795" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825797" + side + { + "id" "337429" + "plane" "(244 -2108 -24) (244 -2036 -24) (348 -2036 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 452.102] 0.078" + "vaxis" "[1 0 0 -155.596] 0.109" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "337428" + "plane" "(244 -2036 -56) (244 -2108 -56) (348 -2108 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337427" + "plane" "(244 -2108 -56) (244 -2036 -56) (244 -2036 -24)" + "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" "337426" + "plane" "(348 -2036 -56) (348 -2108 -56) (348 -2108 -24)" + "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" "337425" + "plane" "(244 -2036 -56) (348 -2036 -56) (348 -2036 -24)" + "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" "337424" + "plane" "(348 -2108 -56) (244 -2108 -56) (244 -2108 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "3825795" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825798" + side + { + "id" "337435" + "plane" "(348 -2108 -24) (348 -2036 -24) (352 -2032 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[1 0 0 608] 0.078" + "vaxis" "[0 -1 0 -315] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "337434" + "plane" "(348 -2036 -56) (348 -2108 -56) (352 -2112 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337433" + "plane" "(352 -2032 -56) (352 -2112 -56) (352 -2112 -24)" + "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" "337432" + "plane" "(348 -2108 -56) (348 -2036 -56) (348 -2036 -24)" + "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" "337431" + "plane" "(348 -2036 -56) (352 -2032 -56) (352 -2032 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 288] 0.25" + "vaxis" "[0 0 -1 -352] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337430" + "plane" "(352 -2112 -56) (348 -2108 -56) (348 -2108 -24)" + "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" "157 186 0" + "groupid" "3825795" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825799" + side + { + "id" "337441" + "plane" "(240 -2112 -24) (240 -2032 -24) (244 -2036 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 5] 0.078" + "vaxis" "[0 1 0 -315] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "337440" + "plane" "(240 -2032 -56) (240 -2112 -56) (244 -2108 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337439" + "plane" "(240 -2112 -56) (240 -2032 -56) (240 -2032 -24)" + "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" "337438" + "plane" "(244 -2036 -56) (244 -2108 -56) (244 -2108 -24)" + "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" "337437" + "plane" "(240 -2032 -56) (244 -2036 -56) (244 -2036 -24)" + "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" "337436" + "plane" "(244 -2108 -56) (240 -2112 -56) (240 -2112 -24)" + "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" "157 186 0" + "groupid" "3825795" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3825800" + side + { + "id" "337447" + "plane" "(352 -2112 -24) (240 -2112 -24) (244 -2108 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 452.102] 0.078" + "vaxis" "[1 0 0 -155.596] 0.109" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "337446" + "plane" "(348 -2108 -56) (244 -2108 -56) (240 -2112 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337445" + "plane" "(352 -2112 -56) (240 -2112 -56) (240 -2112 -24)" + "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" "337444" + "plane" "(244 -2108 -56) (348 -2108 -56) (348 -2108 -24)" + "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" "337443" + "plane" "(348 -2108 -56) (352 -2112 -56) (352 -2112 -24)" + "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" "337442" + "plane" "(240 -2112 -56) (244 -2108 -56) (244 -2108 -24)" + "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" "157 186 0" + "groupid" "3825795" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3826401" + side + { + "id" "337453" + "plane" "(240 -1936 -24) (352 -1936 -24) (352 -2032 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337452" + "plane" "(240 -2032 -56) (352 -2032 -56) (352 -1936 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337451" + "plane" "(352 -1936 -56) (352 -2032 -56) (352 -2032 -24)" + "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" "337450" + "plane" "(352 -2032 -56) (240 -2032 -56) (240 -2032 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337449" + "plane" "(240 -1936 -56) (352 -1936 -56) (352 -1936 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337448" + "plane" "(240 -2032 -56) (240 -1936 -56) (240 -1936 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3826402" + side + { + "id" "337459" + "plane" "(-336 -2112 -24) (-336 -1936 -24) (240 -1936 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337458" + "plane" "(-336 -1936 -56) (-336 -2112 -56) (240 -2112 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337457" + "plane" "(-336 -2112 -56) (-336 -1936 -56) (-336 -1936 -24)" + "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" "337456" + "plane" "(240 -2112 -56) (-336 -2112 -56) (-336 -2112 -24)" + "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" "337455" + "plane" "(-336 -1936 -56) (240 -1936 -56) (240 -1936 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337454" + "plane" "(240 -1936 -56) (240 -2112 -56) (240 -2112 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3810926" + side + { + "id" "336326" + "plane" "(288 -6624 0) (-64 -6624 0) (-64 -6600 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-64 -6600 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0.0175733 -0.999723 0 0.0156212 -0.999756 0 0.0156212 -0.999756 0 0.0156212 -0.999756 0 0.011717 -0.99985 0" + "row2" "0.0187458 -0.999775 0 0.0187458 -0.999775 0 0.0234296 -0.999664 0 0.0187458 -0.999775 0 0.0187458 -0.999775 0" + "row3" "0.0281132 -0.99958 0 0.0249916 -0.999663 0 0.0277663 -0.999587 0 0.0208282 -0.999756 0 0.0249916 -0.999663 0" + "row4" "0.996109 0 0 0.996109 0 0 0.996109 0 0 0.996109 0 0 0.996109 0 0" + } + distances + { + "row0" "0 0 0 0 0" + "row1" "0.000976713 0.000976682 0.000976682 0.000976682 0.00146494" + "row2" "0.00244184 0.00244184 0.00195366 0.00244184 0.00244184" + "row3" "0.00488474 0.00488434 0.00439623 0.00439548 0.00488434" + "row4" "3.05176e-05 3.05176e-05 3.05176e-05 3.05176e-05 3.05176e-05" + } + 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" "336325" + "plane" "(-64 -6600 -48) (-64 -6624 -48) (288 -6624 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.7273] 0.157143" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336324" + "plane" "(-64 -6624 -48) (-64 -6600 -48) (-64 -6600 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" "336323" + "plane" "(288 -6624 -48) (-64 -6624 -48) (-64 -6624 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.7273] 0.157143" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336322" + "plane" "(288 -6600 -48) (288 -6624 -48) (288 -6624 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336321" + "plane" "(-64 -6600 -48) (288 -6600 -48) (288 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3810932" + side + { + "id" "336332" + "plane" "(-40 -6048 0) (288 -6048 0) (288 -6600 0)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 261] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-40 -6048 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.969697 0 0 0.969697 0 0 0.00781035 -0.999725 0 0.00781035 -0.999725 0 0.00781035 -0.999725 0" + "row1" "0.0234282 -0.999603 0 0.0234282 -0.999603 0 0.0156218 -0.999797 0 0.0468122 -0.99866 0 0.0156218 -0.999797 0" + "row2" "0.0468207 -0.998842 0 0.0338334 -0.999387 0 0.0374718 -0.999249 0 0.0374718 -0.999249 0 0.0312335 -0.999471 0" + "row3" "0.0390315 -0.999207 0 0.0277663 -0.999587 0 0.0390315 -0.999207 0 0.0312339 -0.999485 0 0.0343539 -0.999385 0" + "row4" "0.996109 0 0 0.996109 0 0 0.996109 0 0 0.996109 0 0 0.996109 0 0" + } + distances + { + "row0" "3.8147e-06 3.8147e-06 0.000488296 0.000488296 0.000488296" + "row1" "0.000976831 0.000976831 0.00146502 0.000488817 0.00146502" + "row2" "0.00195527 0.00293137 0.00244312 0.00244312 0.00293112" + "row3" "0.00390923 0.00439623 0.00390923 0.00439668 0.0048857" + "row4" "3.05176e-05 3.05176e-05 3.05176e-05 3.05176e-05 3.05176e-05" + } + 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" "336331" + "plane" "(288 -6048 -48) (-40 -6048 -48) (-40 -6600 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.7273] 0.157143" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336330" + "plane" "(-40 -6048 -48) (288 -6048 -48) (288 -6048 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 40.7273] 0.157143" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336329" + "plane" "(288 -6048 -48) (288 -6600 -48) (288 -6600 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336328" + "plane" "(288 -6600 -48) (-40 -6600 -48) (-40 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336327" + "plane" "(-40 -6600 -48) (-40 -6048 -48) (-40 -6048 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3810933" + side + { + "id" "336338" + "plane" "(-64 -6600 0) (-64 -6048 0) (-40 -6048 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-40 -6048 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.969697 0 0 0.969697 0 0 0 -0.999756 0 0 0 0 0 0 0" + "row1" "0.969697 0 0 0 -0.999756 0 0 0 0 0 -0.999756 0 0 0 0" + "row2" "0.00781035 -0.999725 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row3" "0.00781035 -0.999725 0 0 -0.999756 0 0 0 0 0 0 0 0 0 0" + "row4" "0.00781035 -0.999725 0 0.969697 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "3.8147e-06 3.8147e-06 0.000488281 0 0" + "row1" "3.8147e-06 0.000488281 0 0.000488281 0" + "row2" "0.000488296 0 0 0 0" + "row3" "0.000488296 0.000488281 0 0 0" + "row4" "0.000488296 3.8147e-06 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" "336337" + "plane" "(-40 -6048 -48) (-64 -6048 -48) (-64 -6600 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.7273] 0.157143" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336336" + "plane" "(-64 -6600 -48) (-64 -6048 -48) (-64 -6048 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" "336335" + "plane" "(-64 -6048 -48) (-40 -6048 -48) (-40 -6048 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 40.7273] 0.157143" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336334" + "plane" "(-40 -6600 -48) (-64 -6600 -48) (-64 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336333" + "plane" "(-40 -6048 -48) (-40 -6600 -48) (-40 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3810939" + side + { + "id" "336344" + "plane" "(1176 -6048 0) (1200 -6048 0) (1200 -6600 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1176 -6048 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.242478 -0.969913 0 0.242478 -0.969913 0 0.12402 -0.992158 0 0.12402 -0.992158 0 0.12402 -0.992158 0" + "row1" "0.242478 -0.969913 0 0.12402 -0.992158 0 0.242478 -0.969913 0 0.242478 -0.969913 0 0.242478 -0.969913 0" + "row2" "0.447116 -0.894232 0 0.447116 -0.894232 0 0.447116 -0.894232 0 0.447116 -0.894232 0 0.447116 -0.894232 0" + "row3" "0.447116 -0.894232 0 0.999512 0 0 0.447116 -0.894232 0 0.447116 -0.894232 0 0.447116 -0.894232 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0.000503309 0.000503309 0.000984162 0.000984162 0.000984162" + "row1" "0.000503309 0.000984162 0.000503309 0.000503309 0.000503309" + "row2" "0.000545915 0.000545915 0.000545915 0.000545915 0.000545915" + "row3" "0.000545915 0.000244141 0.000545915 0.000545915 0.000545915" + "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" "336343" + "plane" "(1200 -6600 -48) (1200 -6048 -48) (1176 -6048 -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" "336342" + "plane" "(1200 -6048 -48) (1200 -6600 -48) (1200 -6600 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" "336341" + "plane" "(1176 -6048 -48) (1200 -6048 -48) (1200 -6048 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" "336340" + "plane" "(1200 -6600 -48) (1176 -6600 -48) (1176 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336339" + "plane" "(1176 -6600 -48) (1176 -6048 -48) (1176 -6048 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3810947" + side + { + "id" "336356" + "plane" "(1176 -5888 0) (1200 -5888 0) (1200 -6048 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1176 -5888 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0" + "row1" "0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0" + "row2" "0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0" + "row3" "0.242478 0.969913 0 0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0.00012207 0.00012207 0.00012207 0.00012207 0.00012207" + "row1" "0.00012207 0.00012207 0.00012207 0.00012207 0.00012207" + "row2" "0.00012207 0.00012207 0.00012207 0.00012207 0.00012207" + "row3" "0.000503309 0.00012207 0.00012207 0.00012207 0.00012207" + "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" "336355" + "plane" "(1176 -6048 -48) (1200 -6048 -48) (1200 -5888 -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" "336354" + "plane" "(1200 -5888 -48) (1200 -6048 -48) (1200 -6048 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" "336353" + "plane" "(1176 -5888 -48) (1200 -5888 -48) (1200 -5888 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" "336352" + "plane" "(1200 -6048 -48) (1176 -6048 -48) (1176 -6048 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" "336351" + "plane" "(1176 -6048 -48) (1176 -5888 -48) (1176 -5888 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3810960" + side + { + "id" "336368" + "plane" "(160 -5912 0) (160 -5888 0) (1176 -5888 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[160 -5888 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 -0.999756 0 0 0 0 0 0 0 0 0 0" + "row1" "0.12402 -0.992158 0 0.0933294 -0.995513 0 0.0830387 -0.996465 0 0.0623707 -0.997931 0 0.0830387 -0.996465 0" + "row2" "0.124029 -0.99223 0 0.0994989 -0.994989 0 0.124029 -0.99223 0 0.0994989 -0.994989 0 0.124029 -0.99223 0" + "row3" "0.144304 -0.989513 0 0.144304 -0.989513 0 0.157112 -0.987559 0 0.154374 -0.987992 0 0.154374 -0.987992 0" + "row4" "0.999024 0 0 0.447116 -0.894232 0 0.999024 0 0 0.999024 0 0 0.999024 0 0" + } + distances + { + "row0" "0 0.000488281 0 0 0" + "row1" "0.000984162 0.000980845 0.00146992 0.000978468 0.00146992" + "row2" "0.00246041 0.00245358 0.00246041 0.00245358 0.00246041" + "row3" "0.00592135 0.00592135 0.00543864 0.00593047 0.00593047" + "row4" "0.00012207 0.000545915 0.00012207 0.00012207 0.00012207" + } + 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" "336367" + "plane" "(1176 -5888 -48) (160 -5888 -48) (160 -5912 -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" "336366" + "plane" "(160 -5912 -48) (160 -5888 -48) (160 -5888 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" "336365" + "plane" "(160 -5888 -48) (1176 -5888 -48) (1176 -5888 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" "336364" + "plane" "(1176 -5888 -48) (1176 -5912 -48) (1176 -5912 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336363" + "plane" "(1176 -5912 -48) (160 -5912 -48) (160 -5912 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3810961" + side + { + "id" "336374" + "plane" "(1176 -6048 0) (160 -6048 0) (160 -5912 0)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 261] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[160 -5912 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 -0.999756 0 0 0 0" + "row1" "0.0830387 -0.996465 0 0.12402 -0.992158 0 0.12402 -0.992158 0 0.0830387 -0.996465 0 0.242478 -0.969913 0" + "row2" "0.124029 -0.99223 0 0.124027 -0.992218 0 0.124029 -0.99223 0 0.0830421 -0.996505 0 0.0830421 -0.996505 0" + "row3" "0.154374 -0.987992 0 0.144304 -0.989513 0 0.157112 -0.987559 0 0.142751 -0.98974 0 0.144304 -0.989513 0" + "row4" "0.999024 0 0 0.999024 0 0 0.999024 0 0 0.447116 -0.894232 0 0.999024 0 0" + } + distances + { + "row0" "0 0 0 0.000488281 0" + "row1" "0.00146992 0.000984162 0.000984162 0.00146992 0.000503309" + "row2" "0.00246041 0.00196832 0.00246041 0.00293984 0.00293984" + "row3" "0.00593047 0.00592135 0.00543864 0.00641334 0.00592135" + "row4" "0.00012207 0.00012207 0.00012207 0.000545915 0.00012207" + } + 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" "336373" + "plane" "(160 -5912 -48) (160 -6048 -48) (1176 -6048 -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" "336372" + "plane" "(160 -6048 -48) (160 -5912 -48) (160 -5912 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" "336371" + "plane" "(1176 -6048 -48) (160 -6048 -48) (160 -6048 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" "336370" + "plane" "(1176 -5912 -48) (1176 -6048 -48) (1176 -6048 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336369" + "plane" "(160 -5912 -48) (1176 -5912 -48) (1176 -5912 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811009" + side + { + "id" "336386" + "plane" "(288 -6208 0) (288 -6048 0) (1176 -6048 0)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 261] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[288 -6048 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0.999756 0 0 0.999756 0 0 0 0 0.996109 0 0 0.996109 0 0" + "row1" "0.103598 -0.994538 0 0.093335 -0.995574 0 0.0830387 -0.996465 0 0.103598 -0.994538 0 0.0623745 -0.997992 0" + "row2" "0.124032 -0.992256 0 0.112907 -0.993583 0 0.112907 -0.993583 0 0.114622 -0.99339 0 0.124032 -0.992258 0" + "row3" "0.152056 -0.988362 0 0.152056 -0.988362 0 0.152056 -0.988362 0 0.162797 -0.98665 0 0.151024 -0.988521 0" + "row4" "0 0 0 0 0 0 0.999024 0 0 0.242478 -0.969913 0 0 0 0" + } + distances + { + "row0" "0.000488281 0.000488281 0 3.05176e-05 3.05176e-05" + "row1" "0.00147277 0.00196169 0.00146992 0.00147277 0.00195694" + "row2" "0.00541289 0.00540566 0.00540566 0.00638977 0.00590497" + "row3" "0.0128447 0.0128447 0.0128447 0.0123721 0.0133366" + "row4" "0 0 0.00012207 0.000503309 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 6.76169 13.5234 20.2851 19.9323" + "row2" "0 0.365506 0.731004 1.0965 1.07743" + "row3" "0 1.53144e-07 3.06289e-07 4.59433e-07 5.88644e-07" + "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" "336385" + "plane" "(1176 -6048 -48) (288 -6048 -48) (288 -6208 -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" "336384" + "plane" "(288 -6048 -48) (1176 -6048 -48) (1176 -6048 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" "336383" + "plane" "(288 -6208 -48) (288 -6048 -48) (288 -6048 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336382" + "plane" "(1176 -6048 -48) (1176 -6208 -48) (1176 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336381" + "plane" "(1176 -6208 -48) (288 -6208 -48) (288 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811012" + side + { + "id" "336392" + "plane" "(336 -6600 0) (288 -6600 0) (288 -6208 0)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 261] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[288 -6208 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.996109 0 0 0.996109 0 0 0 0 0 0 0.999756 0 0 0.999756 0" + "row1" "0.996109 0 0 0.0623631 0.997809 0 0 0 0 0 0.999756 0 0 0.999756 0" + "row2" "0.998051 0 0 0.124005 -0.992038 0 0 0 0 0 0.999756 0 0.0623631 0.997809 0" + "row3" "0.0623631 -0.997809 0 0.996109 0 0 0 0 0 0 0.999756 0 0 0.999756 0" + "row4" "0.124005 -0.992038 0 0.998051 0 0 0.0623631 -0.997809 0 0.0623631 0.997809 0 0.996109 0 0" + } + distances + { + "row0" "3.05176e-05 3.05176e-05 0 0.000488281 0.000488281" + "row1" "3.05176e-05 0.000489234 0 0.000488281 0.000488281" + "row2" "6.10352e-05 0.000492081 0 0.000488281 0.000489234" + "row3" "0.000489234 3.05176e-05 0 0.000488281 0.000488281" + "row4" "0.000492081 6.10352e-05 0.000489234 0.000489234 3.05176e-05" + } + 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" "1.07742 0.259821 0.0460844 0 0" + "row2" "2.15484 0.519641 0.0921689 0 0" + "row3" "3.23226 0.779462 0.138253 0 0" + "row4" "4.30969 1.03928 0.184338 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" "336391" + "plane" "(288 -6208 -48) (288 -6600 -48) (336 -6600 -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" "336390" + "plane" "(288 -6600 -48) (288 -6208 -48) (288 -6208 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336389" + "plane" "(336 -6600 -48) (288 -6600 -48) (288 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336388" + "plane" "(288 -6208 -48) (336 -6208 -48) (336 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336387" + "plane" "(336 -6208 -48) (336 -6600 -48) (336 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811037" + side + { + "id" "336416" + "plane" "(1176 -6600 0) (853 -6600 0) (853 -6208 0)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 261] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[853 -6208 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.142286 -0.989813 0 0.148339 -0.988924 0 0.142286 -0.989813 0 0.129579 -0.991558 0 0.148339 -0.988924 0" + "row1" "0.157113 -0.98757 0 0.154375 -0.988002 0 0.139253 -0.990247 0 0.144305 -0.989523 0 0.154375 -0.988002 0" + "row2" "0.160394 -0.987041 0 0.151634 -0.988426 0 0.140632 -0.990051 0 0.152939 -0.988224 0 0.158676 -0.987319 0" + "row3" "0.172376 -0.985007 0 0.157112 -0.987559 0 0.144304 -0.989513 0 0.157112 -0.987559 0 0.157112 -0.987559 0" + "row4" "0 0 0 0.12402 -0.992158 0 0.12402 -0.992158 0 0 -0.999878 0 0 -0.999756 0" + } + distances + { + "row0" "0.00986601 0.00987488 0.00986601 0.0108335 0.00987488" + "row1" "0.0108773 0.0118609 0.0118341 0.0118427 0.0118609" + "row2" "0.00989372 0.0108679 0.01085 0.010376 0.0103855" + "row3" "0.00495702 0.00543864 0.00592135 0.00543864 0.00543864" + "row4" "0 0.000984162 0.000984162 0.000976563 0.000488281" + } + 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.517086 0.1247 0.0221184 0 0" + "row1" "0.182232 0.0439473 0.00779513 0 0" + "row2" "4.28225e-07 4.28225e-07 2.05407e-07 0 0" + "row3" "2.14113e-07 2.14113e-07 1.02704e-07 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" "336415" + "plane" "(853 -6600 -48) (1176 -6600 -48) (1176 -6208 -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" "336414" + "plane" "(1176 -6600 -48) (853 -6600 -48) (853 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336413" + "plane" "(1176 -6208 -48) (1176 -6600 -48) (1176 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336412" + "plane" "(853 -6208 -48) (1176 -6208 -48) (1176 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336411" + "plane" "(853 -6600 -48) (853 -6208 -48) (853 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811038" + side + { + "id" "336422" + "plane" "(853 -6600 0) (829 -6600 0) (829 -6208 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[829 -6208 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.137567 -0.990479 0 0.151023 -0.988517 0 0.130453 -0.991442 0 0.124033 -0.992266 0 0.151023 -0.988517 0" + "row1" "0.137567 -0.990479 0 0.143242 -0.989675 0 0.130453 -0.991442 0 0.124033 -0.992266 0 0.151023 -0.988517 0" + "row2" "0.143242 -0.989675 0 0.155961 -0.98775 0 0.130132 -0.991484 0 0.129842 -0.991523 0 0.148339 -0.988924 0" + "row3" "0.136217 -0.990667 0 0.148339 -0.988924 0 0.136217 -0.990667 0 0.129842 -0.991523 0 0.148339 -0.988924 0" + "row4" "0.142286 -0.989813 0 0.148339 -0.988924 0 0.142286 -0.989813 0 0.129579 -0.991558 0 0.148339 -0.988924 0" + } + distances + { + "row0" "0.00887343 0.00889104 0.00935731 0.00984162 0.00889104" + "row1" "0.00887343 0.00937401 0.00935731 0.00984162 0.00889104" + "row2" "0.00937401 0.00939228 0.00984938 0.0103415 0.00987488" + "row3" "0.00985751 0.00987488 0.00985751 0.0103415 0.00987488" + "row4" "0.00986601 0.00987488 0.00986601 0.0108335 0.00987488" + } + 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.626909 0.151185 0.026816 0 0" + "row1" "0.599453 0.144564 0.0256416 0 0" + "row2" "0.571997 0.137943 0.0244672 0 0" + "row3" "0.544541 0.131322 0.0232928 0 0" + "row4" "0.517086 0.1247 0.0221184 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" "336421" + "plane" "(829 -6600 -48) (853 -6600 -48) (853 -6208 -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" "336420" + "plane" "(853 -6600 -48) (829 -6600 -48) (829 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336419" + "plane" "(829 -6208 -48) (853 -6208 -48) (853 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336418" + "plane" "(829 -6600 -48) (829 -6208 -48) (829 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336417" + "plane" "(853 -6208 -48) (853 -6600 -48) (853 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811043" + side + { + "id" "336434" + "plane" "(360 -6600 0) (336 -6600 0) (336 -6208 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[336 -6208 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.124005 -0.992038 0 0.998051 0 0 0.0623631 -0.997809 0 0.0623631 0.997809 0 0.996109 0 0" + "row1" "0.0623707 -0.997931 0 0.124005 -0.992038 0 0.0312309 -0.99939 0 0.996109 0 0 0.0623631 -0.997809 0" + "row2" "0.0933294 -0.995513 0 0.184244 -0.982636 0 0.124005 -0.992038 0 0.124005 0.992038 0 0.998051 0 0" + "row3" "0.0933294 -0.995513 0 0.9987 0 0 0.0623707 -0.997931 0 0.998051 0 0 0.998051 0 0" + "row4" "0.124005 -0.992038 0 0.998051 0 0 0.0623707 -0.997931 0 0.996109 0 0 0.998051 0 0" + } + distances + { + "row0" "0.000492081 6.10352e-05 0.000489234 0.000489234 3.05176e-05" + "row1" "0.000978468 0.000492081 0.000977039 3.05176e-05 0.000489234" + "row2" "0.000980845 0.00049679 0.000492081 0.000492081 6.10352e-05" + "row3" "0.000980845 9.15527e-05 0.000978468 6.10352e-05 6.10352e-05" + "row4" "0.000492081 6.10352e-05 0.000978468 3.05176e-05 6.10352e-05" + } + 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" "4.30969 1.03928 0.184338 0 0" + "row1" "4.66869 1.12586 0.199693 0 0" + "row2" "5.02769 1.21243 0.215049 0 0" + "row3" "5.38669 1.299 0.230404 0 0" + "row4" "5.74569 1.38558 0.24576 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" "336433" + "plane" "(360 -6208 -48) (336 -6208 -48) (336 -6600 -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" "336432" + "plane" "(360 -6600 -48) (336 -6600 -48) (336 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336431" + "plane" "(336 -6208 -48) (360 -6208 -48) (360 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336430" + "plane" "(336 -6600 -48) (336 -6208 -48) (336 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336429" + "plane" "(360 -6208 -48) (360 -6600 -48) (360 -6600 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811049" + side + { + "id" "336440" + "plane" "(829 -6600 0) (360 -6600 0) (360 -6232 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[360 -6232 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.998051 0 0 0.998051 0 0 0.124005 -0.992038 0 0.0623631 0.997809 0 0.998051 0 0" + "row1" "0.124025 -0.992198 0 0.184266 -0.982754 0 0.103598 -0.994538 0 0.12402 -0.992158 0 0.124025 -0.992198 0" + "row2" "0.12403 -0.992244 0 0.144301 -0.989493 0 0.12403 -0.992244 0 0.12403 -0.992238 0 0.144301 -0.989493 0" + "row3" "0.114622 -0.99339 0 0.124032 -0.992259 0 0.124032 -0.992259 0 0.106531 -0.994292 0 0.124032 -0.992259 0" + "row4" "0.137567 -0.990479 0 0.151023 -0.988517 0 0.130453 -0.991442 0 0.130453 -0.991442 0 0.151023 -0.988517 0" + } + distances + { + "row0" "6.10352e-05 6.10352e-05 0.000492081 0.000489234 6.10352e-05" + "row1" "0.00147624 0.00099358 0.00147277 0.000984162 0.00147624" + "row2" "0.00344457 0.00296068 0.00344457 0.00295249 0.00296068" + "row3" "0.00638977 0.00639705 0.00639705 0.00687506 0.00639705" + "row4" "0.00887343 0.00889104 0.00935731 0.00935731 0.00889104" + } + 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" "4.67791 1.17622 0.215667 0 0" + "row1" "9.80108 2.4644 0.451862 0 0" + "row2" "10.7464 2.70211 0.495446 0 0" + "row3" "3.71848 0.934987 0.171435 0 0" + "row4" "0.510405 0.128342 0.0235324 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" "336439" + "plane" "(360 -6232 -48) (360 -6600 -48) (829 -6600 -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" "336438" + "plane" "(829 -6600 -48) (360 -6600 -48) (360 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336437" + "plane" "(829 -6232 -48) (829 -6600 -48) (829 -6600 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336436" + "plane" "(360 -6600 -48) (360 -6232 -48) (360 -6232 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336435" + "plane" "(360 -6232 -48) (829 -6232 -48) (829 -6232 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811050" + side + { + "id" "336446" + "plane" "(360 -6232 0) (360 -6208 0) (829 -6208 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[360 -6208 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.124005 -0.992038 0 0.998051 0 0 0.998051 0 0 0.998051 0 0 0.998051 0 0" + "row1" "0.093335 -0.995574 0 0.103598 -0.994538 0 0.0778829 -0.996902 0 0.124025 -0.992198 0 0.124025 -0.992198 0" + "row2" "0.108723 -0.994042 0 0.108723 -0.994042 0 0.108723 -0.994042 0 0.108723 -0.994042 0 0.12403 -0.992244 0" + "row3" "0.124032 -0.992259 0 0.124032 -0.992259 0 0.124032 -0.992259 0 0.124032 -0.992259 0 0.114622 -0.99339 0" + "row4" "0.137567 -0.990479 0 0.145492 -0.989345 0 0.137567 -0.990479 0 0.137567 -0.990479 0 0.137567 -0.990479 0" + } + distances + { + "row0" "0.000492081 6.10352e-05 6.10352e-05 6.10352e-05 6.10352e-05" + "row1" "0.00196169 0.00147277 0.00195908 0.00147624 0.00147624" + "row2" "0.00392955 0.00392955 0.00392955 0.00392955 0.00344457" + "row3" "0.00639705 0.00639705 0.00639705 0.00639705 0.00638977" + "row4" "0.00887343 0.00839006 0.00887343 0.00887343 0.00887343" + } + 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" "5.74569 5.47875 5.2118 4.94486 4.67791" + "row1" "12.0383 11.479 10.9197 10.3604 9.80108" + "row2" "13.1994 12.5862 11.9729 11.3597 10.7464" + "row3" "4.56726 4.35507 4.14287 3.93068 3.71848" + "row4" "0.626909 0.597783 0.568657 0.539531 0.510405" + } + 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" "336445" + "plane" "(829 -6208 -48) (360 -6208 -48) (360 -6232 -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" "336444" + "plane" "(360 -6208 -48) (829 -6208 -48) (829 -6208 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336443" + "plane" "(829 -6208 -48) (829 -6232 -48) (829 -6232 0)" + "material" "ASPHALT/ASPHALT_B1_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336442" + "plane" "(360 -6232 -48) (360 -6208 -48) (360 -6208 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336441" + "plane" "(829 -6232 -48) (360 -6232 -48) (360 -6232 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811468" + side + { + "id" "336458" + "plane" "(288 -4872 0) (288 -4848 0) (688 -4848 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 -130] 0.125" + "vaxis" "[1 0 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[288 -4848 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 -0.999756 0 0 0 0 0 -0.999756 0 -0.0623631 0.997809 0" + "row1" "0.0994989 -0.994989 0 0.0830421 -0.996505 0 0.0933369 -0.995594 0 0.0933369 -0.995594 0 0.0933369 -0.995594 0" + "row2" "0.113834 -0.993459 0 0.0977406 -0.995177 0 0.113834 -0.993459 0 0.0977406 -0.995177 0 0.103602 -0.994578 0" + "row3" "0 0 0 0 -0.999756 0 0 0 0 0 -0.999756 0 0 0.999756 0" + "row4" "0 0 0 0 -0.999756 0 0 0 0 0 -0.999756 0 -0.124005 0.992038 0" + } + distances + { + "row0" "0 0.000488281 0 0.000488281 0.000489234" + "row1" "0.00245358 0.00293984 0.00294253 0.00294253 0.00294253" + "row2" "0.00294886 0.00343441 0.00294886 0.00343441 0.00294554" + "row3" "0 0.000488281 0 0.000488281 0.000488281" + "row4" "0 0.000488281 0 0.000488281 0.000492081" + } + 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" "336457" + "plane" "(288 -4848 -16) (288 -4872 -16) (688 -4872 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 8.00195] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336456" + "plane" "(288 -4872 -16) (288 -4848 -16) (288 -4848 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" "336455" + "plane" "(688 -4848 -16) (688 -4872 -16) (688 -4872 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" "336454" + "plane" "(288 -4848 -16) (688 -4848 -16) (688 -4848 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8.00195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336453" + "plane" "(688 -4872 -16) (288 -4872 -16) (288 -4872 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 117" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811471" + side + { + "id" "336464" + "plane" "(288 -5600 0) (288 -4872 0) (312 -4872 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 -130] 0.125" + "vaxis" "[1 0 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[288 -4872 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.0623631 0.997809 0 0 -0.999756 0 0 0 0 0 -0.999756 0 0 0 0" + "row1" "0 0 0 0.0623631 -0.997809 0 0.996109 0 0 0.0623631 -0.997809 0 0.996109 0 0" + "row2" "0 0 0 0.0312309 -0.99939 0 0.0623631 -0.997809 0 0.0312309 -0.99939 0 0.0623631 -0.997809 0" + "row3" "0.996109 0 0 0.0623707 -0.997931 0 0.124005 -0.992038 0 0.0623707 -0.997931 0 0.124005 -0.992038 0" + "row4" "0.998051 0 0 0.0623707 -0.997931 0 0.124005 -0.992038 0 0.0623707 -0.997931 0 0.0623707 -0.997931 0" + } + distances + { + "row0" "0.000489234 0.000488281 0 0.000488281 0" + "row1" "0 0.000489234 3.05176e-05 0.000489234 3.05176e-05" + "row2" "0 0.000977039 0.000489234 0.000977039 0.000489234" + "row3" "3.05176e-05 0.000978468 0.000492081 0.000978468 0.000492081" + "row4" "6.10352e-05 0.000978468 0.000492081 0.000978468 0.000978468" + } + 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" "336463" + "plane" "(288 -4872 -16) (288 -5600 -16) (312 -5600 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 8.00195] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336462" + "plane" "(288 -5600 -16) (288 -4872 -16) (288 -4872 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" "336461" + "plane" "(312 -5600 -16) (288 -5600 -16) (288 -5600 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8.00195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336460" + "plane" "(288 -4872 -16) (312 -4872 -16) (312 -4872 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336459" + "plane" "(312 -4872 -16) (312 -5600 -16) (312 -5600 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 117" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811476" + side + { + "id" "336482" + "plane" "(664 -4872 0) (688 -4872 0) (688 -5600 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 -130] 0.125" + "vaxis" "[1 0 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[664 -4872 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 -0.999756 0 0 0 0 0 -0.999756 0 0 0 0" + "row1" "0 0.999756 0 0 -0.999878 0 0 0 0 0 -0.999878 0 0 0 0" + "row2" "-0.124005 0.992038 0 0 -0.999756 0 0 0 0 0 -0.999756 0 0 0 0" + "row3" "0 0.999756 0 0 -0.999756 0 0 0 0 0 -0.999756 0 0 0 0" + "row4" "-0.124005 0.992038 0 0 -0.999756 0 0 0 0 0 -0.999756 0 0 0 0" + } + distances + { + "row0" "0 0.000488281 0 0.000488281 0" + "row1" "0.000488281 0.000976563 0 0.000976563 0" + "row2" "0.000492081 0.000488281 0 0.000488281 0" + "row3" "0.000488281 0.000488281 0 0.000488281 0" + "row4" "0.000492081 0.000488281 0 0.000488281 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" "336481" + "plane" "(664 -5600 -16) (688 -5600 -16) (688 -4872 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 8.00195] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336480" + "plane" "(688 -4872 -16) (688 -5600 -16) (688 -5600 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" "336479" + "plane" "(688 -5600 -16) (664 -5600 -16) (664 -5600 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8.00195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336478" + "plane" "(664 -4872 -16) (688 -4872 -16) (688 -4872 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336477" + "plane" "(664 -5600 -16) (664 -4872 -16) (664 -4872 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 117" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811574" + side + { + "id" "336488" + "plane" "(664 -5600 0) (312 -5600 0) (312 -5552 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 -130] 0.125" + "vaxis" "[1 0 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[312 -5552 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.0312309 -0.99939 0 0.124005 -0.992038 0 0.0623631 -0.997809 0 0.0623707 -0.997931 0 0.0623707 -0.997931 0" + "row1" "0.0727206 -0.997312 0 0.0747863 -0.997151 0 0.0747863 -0.997151 0 0.0747863 -0.997151 0 0.0727206 -0.997312 0" + "row2" "0.124029 -0.99223 0 0.111789 -0.993683 0 0.111789 -0.993683 0 0.139246 -0.990197 0 0.124029 -0.99223 0" + "row3" "0 -0.999756 0 0 0 0 0 0 0 0 -0.999756 0 0.124005 -0.992038 0" + "row4" "-0.998051 0 0 -0.998051 0 0 -0.124005 0.992038 0 -0.998051 0 0 0 0 0" + } + distances + { + "row0" "0.000977039 0.000492081 0.000489234 0.000978468 0.000978468" + "row1" "0.00293747 0.00244826 0.00244826 0.00244826 0.00293747" + "row2" "0.00246041 0.00245681 0.00245681 0.00197234 0.00246041" + "row3" "0.000488281 0 0 0.000488281 0.000492081" + "row4" "6.10352e-05 6.10352e-05 0.000492081 6.10352e-05 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" "336487" + "plane" "(312 -5552 -16) (312 -5600 -16) (664 -5600 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 8.00195] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336486" + "plane" "(664 -5600 -16) (312 -5600 -16) (312 -5600 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8.00195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336485" + "plane" "(312 -5600 -16) (312 -5552 -16) (312 -5552 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336484" + "plane" "(664 -5552 -16) (664 -5600 -16) (664 -5600 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336483" + "plane" "(312 -5552 -16) (664 -5552 -16) (664 -5552 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 117" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811575" + side + { + "id" "336494" + "plane" "(312 -5552 0) (312 -4872 0) (664 -4872 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[312 -4872 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.998051 0 0 0.0623707 -0.997931 0 0.996109 0 0 0.124005 -0.992038 0 0.0312309 -0.99939 0" + "row1" "0.0994989 -0.994989 0 0.0727206 -0.997312 0 0.0871627 -0.996145 0 0.0712446 -0.997424 0 0.0727206 -0.997312 0" + "row2" "0.0889289 -0.996003 0 0.111789 -0.993683 0 0.124029 -0.99223 0 0.103602 -0.994578 0 0.124029 -0.99223 0" + "row3" "0.998051 0 0 0 -0.999878 0 0 -0.999756 0 0 -0.999756 0 0 -0.999756 0" + "row4" "0 0 0 -0.124005 -0.992038 0 -0.124005 0.992038 0 -0.998051 0 0 -0.998051 0 0" + } + distances + { + "row0" "6.10352e-05 0.000978468 3.05176e-05 0.000492081 0.000977039" + "row1" "0.00245358 0.00293747 0.00245073 0.00342668 0.00293747" + "row2" "0.00343157 0.00245681 0.00246041 0.00294554 0.00246041" + "row3" "6.10352e-05 0.000976563 0.000488281 0.000488281 0.000488281" + "row4" "0 0.000492081 0.000492081 6.10352e-05 6.10352e-05" + } + 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" "336493" + "plane" "(664 -4872 -16) (312 -4872 -16) (312 -5552 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 8.00195] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336492" + "plane" "(312 -4872 -16) (664 -4872 -16) (664 -4872 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336491" + "plane" "(312 -5552 -16) (312 -4872 -16) (312 -4872 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336490" + "plane" "(664 -4872 -16) (664 -5552 -16) (664 -5552 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336489" + "plane" "(664 -5552 -16) (312 -5552 -16) (312 -5552 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 117" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811691" + side + { + "id" "336495" + "plane" "(-656 -6312 -42) (-400 -6312 -42) (-400 -6360 -42)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "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" "[-656 -6360 -42]" + "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 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" + } + 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 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" + } + 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" "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" "336496" + "plane" "(-656 -6360 -43) (-400 -6360 -43) (-400 -6312 -43)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336497" + "plane" "(-656 -6312 -42) (-656 -6360 -42) (-656 -6360 -43)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336498" + "plane" "(-400 -6312 -43) (-400 -6360 -43) (-400 -6360 -42)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336499" + "plane" "(-400 -6312 -42) (-656 -6312 -42) (-656 -6312 -43)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336500" + "plane" "(-400 -6360 -43) (-656 -6360 -43) (-656 -6360 -42)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 154" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812044" + side + { + "id" "336926" + "plane" "(-1008 -6128 576) (-1008 -5696 576) (-964 -5696 576)" + "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" "336925" + "plane" "(-1008 -6128 24) (-1008 -5696 24) (-1008 -5696 576)" + "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" "336924" + "plane" "(-964 -6128 576) (-964 -5696 576) (-964 -5696 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" "336923" + "plane" "(-964 -5696 24) (-964 -5696 576) (-1008 -5696 576)" + "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" "336922" + "plane" "(-1008 -5696 24) (-1008 -6128 24) (-964 -6128 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" "336921" + "plane" "(-1008 -6128 24) (-1008 -6128 576) (-964 -6128 576)" + "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" "0 217 178" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812045" + side + { + "id" "336932" + "plane" "(-1408 -6656 576) (-1408 -6128 576) (-1376 -6128 576)" + "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" "336931" + "plane" "(-1408 -6128 576) (-1408 -6656 576) (-1408 -6656 -48)" + "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" "336930" + "plane" "(-1376 -6128 -48) (-1376 -6656 -48) (-1376 -6656 576)" + "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" "336929" + "plane" "(-1408 -6656 -48) (-1408 -6656 576) (-1376 -6656 576)" + "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" "336928" + "plane" "(-1408 -6128 -48) (-1408 -6656 -48) (-1376 -6656 -48)" + "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" "336927" + "plane" "(-1376 -6128 -48) (-1376 -6128 576) (-1408 -6128 576)" + "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" "0 217 178" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812085" + side + { + "id" "336944" + "plane" "(-1008 -5696 -48) (-1008 -6128 -48) (-976 -6128 -48)" + "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" "336943" + "plane" "(-1008 -6128 -48) (-1008 -5696 -48) (-1008 -5696 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" "336942" + "plane" "(-976 -5696 24) (-976 -5696 -48) (-976 -6128 -48)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336941" + "plane" "(-1008 -5696 24) (-1008 -5696 -48) (-976 -5696 -48)" + "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" "336940" + "plane" "(-1008 -6128 24) (-1008 -5696 24) (-976 -5696 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" + } + side + { + "id" "336939" + "plane" "(-976 -6128 24) (-976 -6128 -48) (-1008 -6128 -48)" + "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" "0 217 178" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812087" + side + { + "id" "336945" + "plane" "(-1376 -6632 560) (-1376 -6128 560) (-976 -6128 560)" + "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" "336946" + "plane" "(-1376 -6128 411) (-1376 -6632 411) (-976 -6632 411)" + "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" "336947" + "plane" "(-1376 -6632 411) (-1376 -6128 411) (-1376 -6128 560)" + "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" "336948" + "plane" "(-976 -6128 411) (-976 -6632 411) (-976 -6632 560)" + "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" "336949" + "plane" "(-1376 -6128 411) (-976 -6128 411) (-976 -6128 560)" + "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" "336950" + "plane" "(-976 -6632 411) (-1376 -6632 411) (-1376 -6632 560)" + "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" "0 145 230" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812088" + side + { + "id" "336951" + "plane" "(-1408 -6128 576) (-1408 -6104 576) (-1008 -6104 576)" + "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" "336952" + "plane" "(-1408 -6104 -48) (-1408 -6128 -48) (-1008 -6128 -48)" + "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" "336953" + "plane" "(-1408 -6128 -48) (-1408 -6104 -48) (-1408 -6104 576)" + "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" "336954" + "plane" "(-1008 -6104 -48) (-1008 -6128 -48) (-1008 -6128 576)" + "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" "336955" + "plane" "(-1408 -6104 -48) (-1008 -6104 -48) (-1008 -6104 576)" + "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" "336956" + "plane" "(-1008 -6128 -48) (-1408 -6128 -48) (-1408 -6128 576)" + "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" "0 211 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812093" + side + { + "id" "336957" + "plane" "(-1376 -6632 -48) (-1376 -6128 -48) (-976 -6128 -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" "336958" + "plane" "(-1376 -6128 -80) (-1376 -6632 -80) (-976 -6632 -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" "336959" + "plane" "(-1376 -6632 -80) (-1376 -6128 -80) (-1376 -6128 -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" "336960" + "plane" "(-976 -6128 -80) (-976 -6632 -80) (-976 -6632 -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" "336961" + "plane" "(-1376 -6128 -80) (-976 -6128 -80) (-976 -6128 -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" "336962" + "plane" "(-976 -6632 -80) (-1376 -6632 -80) (-1376 -6632 -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 221 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812327" + side + { + "id" "336986" + "plane" "(1464 -3792 0) (1464 -3424 0) (1488 -3424 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -130] 0.125" + "vaxis" "[0 -1 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336985" + "plane" "(1488 -3424 -16) (1464 -3424 -16) (1464 -3792 -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" "336984" + "plane" "(1464 -3424 -16) (1488 -3424 -16) (1488 -3424 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" "336983" + "plane" "(1464 -3792 -16) (1464 -3424 -16) (1464 -3424 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" "336982" + "plane" "(1488 -3792 -16) (1464 -3792 -16) (1464 -3792 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" "336981" + "plane" "(1488 -3424 -16) (1488 -3792 -16) (1488 -3792 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812336" + side + { + "id" "337004" + "plane" "(1488 -3424 0) (2112 -3424 0) (2112 -3480 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -130] 0.125" + "vaxis" "[0 -1 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337003" + "plane" "(2112 -3480 -16) (2112 -3424 -16) (1488 -3424 -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" "337002" + "plane" "(2112 -3424 -16) (2112 -3480 -16) (2112 -3480 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" "337001" + "plane" "(1488 -3424 -16) (2112 -3424 -16) (2112 -3424 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" "337000" + "plane" "(1488 -3480 -16) (1488 -3424 -16) (1488 -3424 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336999" + "plane" "(2112 -3480 -16) (1488 -3480 -16) (1488 -3480 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812339" + side + { + "id" "337010" + "plane" "(2088 -3792 0) (1488 -3792 0) (1488 -3480 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337009" + "plane" "(1488 -3480 -16) (1488 -3792 -16) (2088 -3792 -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" "337008" + "plane" "(2088 -3792 -16) (1488 -3792 -16) (1488 -3792 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" "337007" + "plane" "(1488 -3792 -16) (1488 -3480 -16) (1488 -3480 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337006" + "plane" "(1488 -3480 -16) (2088 -3480 -16) (2088 -3480 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337005" + "plane" "(2088 -3480 -16) (2088 -3792 -16) (2088 -3792 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812340" + side + { + "id" "337016" + "plane" "(2112 -3480 0) (2112 -3792 0) (2088 -3792 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 -1 0 58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337015" + "plane" "(2088 -3792 -16) (2112 -3792 -16) (2112 -3480 -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" "337014" + "plane" "(2112 -3480 -16) (2112 -3792 -16) (2112 -3792 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" "337013" + "plane" "(2112 -3792 -16) (2088 -3792 -16) (2088 -3792 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" "337012" + "plane" "(2088 -3480 -16) (2112 -3480 -16) (2112 -3480 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337011" + "plane" "(2088 -3792 -16) (2088 -3480 -16) (2088 -3480 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812345" + side + { + "id" "337022" + "plane" "(1488 -4200 0) (1464 -4200 0) (1464 -3792 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -130] 0.125" + "vaxis" "[0 -1 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337021" + "plane" "(1488 -3792 -16) (1464 -3792 -16) (1464 -4200 -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" "337020" + "plane" "(1464 -4200 -16) (1464 -3792 -16) (1464 -3792 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" "337019" + "plane" "(1488 -4200 -16) (1464 -4200 -16) (1464 -4200 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" "337018" + "plane" "(1464 -3792 -16) (1488 -3792 -16) (1488 -3792 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" "337017" + "plane" "(1488 -3792 -16) (1488 -4200 -16) (1488 -4200 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" + } + editor + { + "color" "0 168 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812361" + side + { + "id" "337034" + "plane" "(2088 -3960 0) (2088 -3984 0) (1488 -3984 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 -1 0 58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337033" + "plane" "(1488 -3960 -16) (1488 -3984 -16) (2088 -3984 -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" "337032" + "plane" "(2088 -3960 -16) (2088 -3984 -16) (2088 -3984 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" "337031" + "plane" "(2088 -3984 -16) (1488 -3984 -16) (1488 -3984 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" "337030" + "plane" "(1488 -3984 -16) (1488 -3960 -16) (1488 -3960 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337029" + "plane" "(1488 -3960 -16) (2088 -3960 -16) (2088 -3960 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812421" + side + { + "id" "337052" + "plane" "(1488 -3960 0) (1488 -3792 0) (2088 -3792 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337051" + "plane" "(2088 -3960 -16) (2088 -3792 -16) (1488 -3792 -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" "337050" + "plane" "(2088 -3792 -16) (2088 -3960 -16) (2088 -3960 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" "337049" + "plane" "(1488 -3792 -16) (2088 -3792 -16) (2088 -3792 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" "337048" + "plane" "(1488 -3960 -16) (1488 -3792 -16) (1488 -3792 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337047" + "plane" "(2088 -3960 -16) (1488 -3960 -16) (1488 -3960 0)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812536" + side + { + "id" "337076" + "plane" "(1440 -4165 148) (1490 -4165 148) (1536 -4200 148)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337075" + "plane" "(1440 -4200 0) (1536 -4200 0) (1490 -4165 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337074" + "plane" "(1440 -4165 148) (1440 -4200 148) (1440 -4200 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337073" + "plane" "(1490 -4165 148) (1440 -4165 148) (1440 -4165 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337072" + "plane" "(1440 -4200 148) (1536 -4200 148) (1536 -4200 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337071" + "plane" "(1536 -4200 148) (1490 -4165 148) (1490 -4165 0)" + "material" "TOOLS/TOOLSCLIP" + "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 222" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812627" + side + { + "id" "337100" + "plane" "(608 -3200 -40) (608 -2816 -40) (872 -2816 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337099" + "plane" "(872 -2816 -56) (608 -2816 -56) (608 -3200 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337098" + "plane" "(608 -2816 -56) (872 -2816 -56) (872 -2816 -40)" + "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" "337097" + "plane" "(608 -3200 -56) (608 -2816 -56) (608 -2816 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337096" + "plane" "(872 -2816 -56) (872 -3200 -56) (872 -3200 -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" "337095" + "plane" "(872 -3200 -56) (608 -3200 -56) (608 -3200 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 180" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812628" + side + { + "id" "337106" + "plane" "(872 -3424 -40) (608 -3424 -40) (608 -3200 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337105" + "plane" "(608 -3200 -56) (608 -3424 -56) (872 -3424 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337104" + "plane" "(872 -3424 -56) (608 -3424 -56) (608 -3424 -40)" + "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" "337103" + "plane" "(608 -3424 -56) (608 -3200 -56) (608 -3200 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337102" + "plane" "(872 -3200 -56) (872 -3424 -56) (872 -3424 -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" "337101" + "plane" "(608 -3200 -56) (872 -3200 -56) (872 -3200 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 180" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812690" + side + { + "id" "337118" + "plane" "(608 -3424 -40) (384 -3424 -40) (384 -3200 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337117" + "plane" "(384 -3200 -56) (384 -3424 -56) (608 -3424 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337116" + "plane" "(384 -3424 -56) (384 -3200 -56) (384 -3200 -40)" + "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" "337115" + "plane" "(608 -3424 -56) (384 -3424 -56) (384 -3424 -40)" + "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" "337114" + "plane" "(608 -3200 -56) (608 -3424 -56) (608 -3424 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337113" + "plane" "(384 -3200 -56) (608 -3200 -56) (608 -3200 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 180" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3798227" + side + { + "id" "336302" + "plane" "(-352 -3168 0) (-352 -2930 0) (-48 -2930 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-352 -2930 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "-0.0512195 -0.992038 0 -0.0385444 -0.995392 0 -0.0385444 -0.995392 0 -0.0385444 -0.995392 0 -0.0257608 -0.99789 0" + "row2" "-0.0104828 -0.999556 0 -0.0104828 -0.999556 0 -0.0104828 -0.999556 0 -0.0104828 -0.999556 0 -0.00806492 -0.999712 0" + "row3" "0.0161212 -0.999177 0 0.0129005 -0.999451 0 0.0161212 -0.999177 0 0.0129005 -0.999451 0 0.0143324 -0.999344 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0" + "row1" "0.000492081 0.000490422 0.000490422 0.000490422 0.000733851" + "row2" "0.000976877 0.000976877 0.000976877 0.000976877 0.00122094" + "row3" "0.00195461 0.00195408 0.00195461 0.00195408 0.00219859" + "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" "161.719 0 0 0 0" + "row3" "255 201.211 0 17.9298 255" + "row4" "255 248.672 225 227.109 255" + } + 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" "336301" + "plane" "(-352 -2930 -16) (-352 -3168 -16) (-48 -3168 -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" "336300" + "plane" "(-352 -3168 -16) (-352 -2930 -16) (-352 -2930 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" "336299" + "plane" "(-48 -2930 -16) (-48 -3168 -16) (-48 -3168 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" "336298" + "plane" "(-48 -3168 -16) (-352 -3168 -16) (-352 -3168 0)" + "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" "336297" + "plane" "(-352 -2930 -16) (-48 -2930 -16) (-48 -2930 0)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "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 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3785536" + side + { + "id" "336274" + "plane" "(546 -6776 0) (546 -6640 0) (864 -6640 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[546 -6640 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 -1.65302 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 1.65302 0 0 -1.65302 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 6.10352e-05 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 6.10352e-05 6.10352e-05 0" + "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" "336273" + "plane" "(546 -6640 -32) (546 -6776 -32) (864 -6776 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336272" + "plane" "(546 -6776 -32) (546 -6640 -32) (546 -6640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 28.988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336271" + "plane" "(864 -6640 -32) (864 -6776 -32) (864 -6776 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" "336270" + "plane" "(864 -6776 -32) (546 -6776 -32) (546 -6776 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" "336269" + "plane" "(546 -6640 -32) (864 -6640 -32) (864 -6640 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3785537" + side + { + "id" "336280" + "plane" "(531 -6640 0) (531 -6624 0) (864 -6624 0)" + "material" "METAL/HR_METAL/INFERNO/METAL_GROUND_TRIM_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -85] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[531 -6624 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 -1.73099 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 -1.73099 0 0 1.73099 0 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 6.10352e-05 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 6.10352e-05 6.10352e-05 0 0" + "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" "336279" + "plane" "(864 -6624 -32) (531 -6624 -32) (531 -6640 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336278" + "plane" "(531 -6640 -32) (531 -6624 -32) (531 -6624 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 28.988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336277" + "plane" "(531 -6624 -32) (864 -6624 -32) (864 -6624 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 52.988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336276" + "plane" "(864 -6624 -32) (864 -6640 -32) (864 -6640 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" "336275" + "plane" "(864 -6640 -32) (531 -6640 -32) (531 -6640 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772620" + side + { + "id" "336083" + "plane" "(188 -6648 251) (496 -6648 251) (496 -6776 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336084" + "plane" "(188 -6776 240) (496 -6776 240) (496 -6648 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336085" + "plane" "(188 -6648 251) (188 -6776 251) (188 -6776 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336086" + "plane" "(496 -6648 240) (496 -6776 240) (496 -6776 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336087" + "plane" "(496 -6648 251) (188 -6648 251) (188 -6648 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336088" + "plane" "(496 -6776 240) (188 -6776 240) (188 -6776 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 244" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772628" + side + { + "id" "336089" + "plane" "(-55.9999 -6648 251) (-55.9999 -5888 251) (1216 -5888 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336090" + "plane" "(-55.9999 -5888 240) (-55.9999 -6648 240) (1216 -6648 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336091" + "plane" "(-55.9999 -6648 240) (-55.9999 -5888 240) (-55.9999 -5888 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336092" + "plane" "(1216 -5888 240) (1216 -6648 240) (1216 -6648 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336093" + "plane" "(-55.9999 -5888 240) (1216 -5888 240) (1216 -5888 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336094" + "plane" "(1216 -6648 240) (-55.9999 -6648 240) (-55.9999 -6648 251)" + "material" "TOOLS/TOOLSCLIP" + "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 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772629" + side + { + "id" "336095" + "plane" "(-243 -4672 251) (1024 -4672 251) (1024 -5600 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336096" + "plane" "(-243 -5600 240) (1024 -5600 240) (1024 -4672 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336097" + "plane" "(-243 -4672 251) (-243 -5600 251) (-243 -5600 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336098" + "plane" "(1024 -4672 240) (1024 -5600 240) (1024 -5600 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336099" + "plane" "(1024 -4672 251) (-243 -4672 251) (-243 -4672 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336100" + "plane" "(1024 -5600 240) (-243 -5600 240) (-243 -5600 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 177 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772630" + side + { + "id" "336101" + "plane" "(432 -4688 240) (432 -4632 240) (1024 -4632 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336102" + "plane" "(432 -4632 208) (432 -4688 208) (1024 -4688 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336103" + "plane" "(432 -4688 208) (432 -4632 208) (432 -4632 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336104" + "plane" "(1024 -4632 208) (1024 -4688 208) (1024 -4688 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336105" + "plane" "(432 -4632 208) (1024 -4632 208) (1024 -4632 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336106" + "plane" "(1024 -4688 208) (432 -4688 208) (432 -4688 240)" + "material" "TOOLS/TOOLSCLIP" + "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 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772658" + side + { + "id" "336107" + "plane" "(-1087 -4672 251) (-243 -4672 251) (-243 -5265 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336108" + "plane" "(-1087 -5265 240) (-243 -5265 240) (-243 -4672 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336109" + "plane" "(-1087 -4672 251) (-1087 -5265 251) (-1087 -5265 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336110" + "plane" "(-243 -4672 240) (-243 -5265 240) (-243 -5265 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336111" + "plane" "(-243 -4672 251) (-1087 -4672 251) (-1087 -4672 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336112" + "plane" "(-243 -5265 240) (-1087 -5265 240) (-1087 -5265 251)" + "material" "TOOLS/TOOLSCLIP" + "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 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772659" + side + { + "id" "336113" + "plane" "(-1092 -4000 251) (-672 -4000 251) (-672 -4672 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336114" + "plane" "(-1092 -4672 240) (-672 -4672 240) (-672 -4000 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336115" + "plane" "(-1092 -4000 251) (-1092 -4672 251) (-1092 -4672 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336116" + "plane" "(-672 -4000 240) (-672 -4672 240) (-672 -4672 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336117" + "plane" "(-672 -4000 251) (-1092 -4000 251) (-1092 -4000 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336118" + "plane" "(-672 -4672 240) (-1092 -4672 240) (-1092 -4672 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772660" + side + { + "id" "336119" + "plane" "(-1100 -3152 251) (-96 -3152 251) (-96 -4000 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336120" + "plane" "(-1100 -4000 240) (-96 -4000 240) (-96 -3152 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336121" + "plane" "(-1100 -3152 240) (-1100 -3152 251) (-1100 -4000 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336122" + "plane" "(-96 -4000 240) (-96 -4000 251) (-96 -3152 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336123" + "plane" "(-96 -3152 240) (-96 -3152 251) (-1100 -3152 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336124" + "plane" "(-1100 -4000 240) (-1100 -4000 251) (-96 -4000 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772666" + side + { + "id" "336125" + "plane" "(-1008 -3168 240) (-368 -3168 240) (-368 -3184 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336126" + "plane" "(-1008 -3184 208) (-368 -3184 208) (-368 -3168 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336127" + "plane" "(-1008 -3168 240) (-1008 -3184 240) (-1008 -3184 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336128" + "plane" "(-368 -3168 208) (-368 -3184 208) (-368 -3184 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336129" + "plane" "(-368 -3168 240) (-1008 -3168 240) (-1008 -3168 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336130" + "plane" "(-368 -3184 208) (-1008 -3184 208) (-1008 -3184 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772667" + side + { + "id" "336131" + "plane" "(360 -2912 251) (1312 -2912 251) (1312 -3448 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336132" + "plane" "(360 -3448 240) (1312 -3448 240) (1312 -2912 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336133" + "plane" "(360 -2912 251) (360 -3448 251) (360 -3448 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336134" + "plane" "(1312 -2912 240) (1312 -3448 240) (1312 -3448 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336135" + "plane" "(1312 -2912 251) (360 -2912 251) (360 -2912 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336136" + "plane" "(1312 -3448 240) (360 -3448 240) (360 -3448 251)" + "material" "TOOLS/TOOLSCLIP" + "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 130" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772669" + side + { + "id" "336137" + "plane" "(400 -2128 251) (1312 -2128 251) (1312 -2912 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336138" + "plane" "(400 -2912 240) (1312 -2912 240) (1312 -2128 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336139" + "plane" "(400 -2128 251) (400 -2912 251) (400 -2912 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336140" + "plane" "(1312 -2128 240) (1312 -2912 240) (1312 -2912 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336141" + "plane" "(1312 -2128 251) (400 -2128 251) (400 -2128 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336142" + "plane" "(1312 -2912 240) (400 -2912 240) (400 -2912 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 233 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772670" + side + { + "id" "336143" + "plane" "(640 -1744 251) (1520 -1744 251) (1520 -2128 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336144" + "plane" "(640 -2128 240) (1520 -2128 240) (1520 -1744 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336145" + "plane" "(640 -1744 251) (640 -2128 251) (640 -2128 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336146" + "plane" "(1520 -1744 240) (1520 -2128 240) (1520 -2128 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336147" + "plane" "(1520 -1744 251) (640 -1744 251) (640 -1744 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336148" + "plane" "(1520 -2128 240) (640 -2128 240) (640 -2128 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 159 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772671" + side + { + "id" "336149" + "plane" "(1312 -2128 251) (1520 -2128 251) (1520 -2880 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336150" + "plane" "(1312 -2880 240) (1520 -2880 240) (1520 -2128 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336151" + "plane" "(1312 -2128 251) (1312 -2880 251) (1312 -2880 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336152" + "plane" "(1520 -2128 240) (1520 -2880 240) (1520 -2880 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336153" + "plane" "(1520 -2128 251) (1312 -2128 251) (1312 -2128 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336154" + "plane" "(1520 -2880 240) (1312 -2880 240) (1312 -2880 251)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772673" + side + { + "id" "336155" + "plane" "(384 -3440 240) (384 -3392 240) (920 -3392 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336156" + "plane" "(384 -3392 224) (384 -3440 224) (920 -3440 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336157" + "plane" "(384 -3440 224) (384 -3392 224) (384 -3392 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336158" + "plane" "(920 -3392 224) (920 -3440 224) (920 -3440 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336159" + "plane" "(384 -3392 224) (920 -3392 224) (920 -3392 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336160" + "plane" "(920 -3440 224) (384 -3440 224) (384 -3440 240)" + "material" "TOOLS/TOOLSCLIP" + "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 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3772678" + side + { + "id" "336161" + "plane" "(400 -2128 240) (496 -2128 240) (496 -2912 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336162" + "plane" "(400 -2912 208) (496 -2912 208) (496 -2128 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336163" + "plane" "(400 -2128 240) (400 -2912 240) (400 -2912 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336164" + "plane" "(496 -2128 208) (496 -2912 208) (496 -2912 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336165" + "plane" "(496 -2128 240) (400 -2128 240) (400 -2128 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336166" + "plane" "(496 -2912 208) (400 -2912 208) (400 -2912 240)" + "material" "TOOLS/TOOLSCLIP" + "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 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3745683" + side + { + "id" "335308" + "plane" "(1744 -2560 16) (1968 -2560 16) (1968 -2568 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -640] 0.125" + "vaxis" "[0 1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335307" + "plane" "(1968 -2560 -40) (1744 -2560 -40) (1744 -2568 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335306" + "plane" "(1744 -2560 -40) (1968 -2560 -40) (1968 -2560 16)" + "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" "335305" + "plane" "(1744 -2568 -40) (1744 -2560 -40) (1744 -2560 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" "335304" + "plane" "(1968 -2568 -40) (1744 -2568 -40) (1744 -2568 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" "335303" + "plane" "(1968 -2560 -40) (1968 -2568 -40) (1968 -2568 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "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 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3745684" + side + { + "id" "335314" + "plane" "(1968 -2560 16) (2470 -2560 16) (2462 -2568 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -640] 0.125" + "vaxis" "[0 1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335313" + "plane" "(2470 -2560 -40) (1968 -2560 -40) (1968 -2568 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335312" + "plane" "(1968 -2560 -40) (2470 -2560 -40) (2470 -2560 16)" + "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" "335311" + "plane" "(2470 -2560 -40) (2462 -2568 -40) (2462 -2568 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" "335310" + "plane" "(2462 -2568 -40) (1968 -2568 -40) (1968 -2568 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" "335309" + "plane" "(1968 -2568 -40) (1968 -2560 -40) (1968 -2560 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "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 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3745946" + side + { + "id" "335428" + "plane" "(1808 -2536 -24) (1808 -2560 -24) (1936 -2560 -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" + } + side + { + "id" "335427" + "plane" "(1808 -2560 240) (1808 -2560 -24) (1808 -2536 -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" "335426" + "plane" "(1936 -2560 -24) (1808 -2560 -24) (1808 -2560 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -359.356] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335425" + "plane" "(1936 -2560 240) (1808 -2560 240) (1808 -2536 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" "335424" + "plane" "(1936 -2536 -24) (1936 -2560 -24) (1936 -2560 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 235.127] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335423" + "plane" "(1808 -2536 240) (1808 -2536 -24) (1936 -2536 -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 136 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3745947" + side + { + "id" "335434" + "plane" "(1936 -2456 -24) (1808 -2456 -24) (1808 -2536 -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" + } + side + { + "id" "335433" + "plane" "(1808 -2536 -24) (1808 -2456 -24) (1808 -2456 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" "335432" + "plane" "(1808 -2456 240) (1808 -2456 -24) (1936 -2456 -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" "335431" + "plane" "(1808 -2536 240) (1808 -2456 240) (1936 -2456 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" "335430" + "plane" "(1936 -2456 240) (1936 -2456 -24) (1936 -2536 -24)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 235.127] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335429" + "plane" "(1936 -2536 -24) (1808 -2536 -24) (1808 -2536 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" "0 136 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3745950" + side + { + "id" "335440" + "plane" "(2384 -2552 240) (1824 -2552 240) (1824 -2536 240)" + "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" "335439" + "plane" "(1824 -2536 208) (1824 -2552 208) (2384 -2552 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[0 -1 0 -163] 0.125" + "vaxis" "[1 0 0 -349] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335438" + "plane" "(1824 -2552 208) (1824 -2536 208) (1824 -2536 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335437" + "plane" "(2384 -2552 208) (1824 -2552 208) (1824 -2552 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" "335436" + "plane" "(2384 -2536 208) (2384 -2552 208) (2384 -2552 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" "335435" + "plane" "(1824 -2536 208) (2384 -2536 208) (2384 -2536 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" "0 246 195" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3745951" + side + { + "id" "335446" + "plane" "(1824 -2536 240) (1824 -2480 240) (2384 -2480 240)" + "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" "335445" + "plane" "(2384 -2480 208) (1824 -2480 208) (1824 -2536 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[0 -1 0 -163] 0.125" + "vaxis" "[1 0 0 -349] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335444" + "plane" "(1824 -2480 208) (2384 -2480 208) (2384 -2480 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335443" + "plane" "(1824 -2536 208) (1824 -2480 208) (1824 -2480 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335442" + "plane" "(2384 -2480 208) (2384 -2536 208) (2384 -2536 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" "335441" + "plane" "(2384 -2536 208) (1824 -2536 208) (1824 -2536 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" "0 246 195" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3745967" + side + { + "id" "335452" + "plane" "(2384 -2536 -200) (2384 -2560 -200) (2478 -2560 -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" "335451" + "plane" "(2478 -2560 -200) (2384 -2560 -200) (2384 -2560 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 363.126] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335450" + "plane" "(2478 -2560 240) (2384 -2560 240) (2384 -2536 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" "335449" + "plane" "(2384 -2560 240) (2384 -2560 -200) (2384 -2536 -200)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 -1 0 -20.8712] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335448" + "plane" "(2478 -2536 -200) (2478 -2560 -200) (2478 -2560 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 219.117] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335447" + "plane" "(2384 -2536 -200) (2478 -2536 -200) (2478 -2536 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" "0 136 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3745968" + side + { + "id" "335458" + "plane" "(2478 -2144 -200) (2384 -2144 -200) (2384 -2536 -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" "335457" + "plane" "(2384 -2536 240) (2384 -2144 240) (2478 -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" "335456" + "plane" "(2384 -2536 -200) (2384 -2144 -200) (2384 -2144 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 -1 0 -20.8712] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335455" + "plane" "(2384 -2144 -200) (2478 -2144 -200) (2478 -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" "335454" + "plane" "(2478 -2144 -200) (2478 -2536 -200) (2478 -2536 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 219.117] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335453" + "plane" "(2478 -2536 -200) (2384 -2536 -200) (2384 -2536 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" "0 136 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3746507" + side + { + "id" "335848" + "plane" "(1800 -3136 16) (1536 -3136 16) (1536 -3168 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" "335847" + "plane" "(1536 -3168 208) (1536 -3168 16) (1536 -3136 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" "335846" + "plane" "(1536 -3136 208) (1536 -3136 16) (1800 -3136 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 143.992] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335845" + "plane" "(1800 -3168 208) (1800 -3168 16) (1536 -3168 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" "335844" + "plane" "(1800 -3136 208) (1800 -3136 16) (1800 -3168 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" "335843" + "plane" "(1800 -3168 208) (1536 -3168 208) (1536 -3136 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" + } + editor + { + "color" "0 130 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3732344" + side + { + "id" "335140" + "plane" "(2128 -3504 0) (2128 -3552 0) (2176 -3552 0)" + "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" "335139" + "plane" "(2176 -3504 0) (2176 -3552 0) (2176 -3552 208)" + "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" "335138" + "plane" "(2176 -3552 208) (2176 -3552 0) (2128 -3552 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335137" + "plane" "(2128 -3552 208) (2128 -3552 0) (2128 -3504 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" "335136" + "plane" "(2176 -3504 208) (2176 -3552 208) (2128 -3552 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" "335135" + "plane" "(2128 -3504 208) (2128 -3504 0) (2176 -3504 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -111.997] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3732345" + side + { + "id" "335146" + "plane" "(2144 -3504 0) (2144 -3168 0) (2128 -3168 0)" + "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" "335145" + "plane" "(2144 -3168 240) (2144 -3168 0) (2144 -3504 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 272] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335144" + "plane" "(2128 -3168 240) (2128 -3168 0) (2144 -3168 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" "335143" + "plane" "(2128 -3504 0) (2128 -3168 0) (2128 -3168 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" "335142" + "plane" "(2128 -3168 240) (2144 -3168 240) (2144 -3504 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" "335141" + "plane" "(2144 -3504 240) (2144 -3504 0) (2128 -3504 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 220 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3703490" + side + { + "id" "334731" + "plane" "(-1092 -4456 235) (-1092 -4198 235) (-964 -4198 235)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334732" + "plane" "(-1092 -4198 2) (-1092 -4456 2) (-964 -4456 2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334733" + "plane" "(-1092 -4456 2) (-1092 -4198 2) (-1092 -4198 235)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334734" + "plane" "(-964 -4198 2) (-964 -4456 2) (-964 -4456 235)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334735" + "plane" "(-1092 -4198 2) (-964 -4198 2) (-964 -4198 235)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334736" + "plane" "(-964 -4456 2) (-1092 -4456 2) (-1092 -4456 235)" + "material" "TOOLS/TOOLSCLIP" + "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 211" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3704225" + side + { + "id" "334767" + "plane" "(-92 -6272 182) (-48 -6272 182) (-48 -6296 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334768" + "plane" "(-139 -6296 32) (-48 -6296 32) (-48 -6272 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334769" + "plane" "(-92 -6272 32) (-92 -6272 182) (-139 -6296 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334770" + "plane" "(-48 -6296 32) (-48 -6296 182) (-48 -6272 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334771" + "plane" "(-48 -6272 32) (-48 -6272 182) (-92 -6272 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334772" + "plane" "(-139 -6296 32) (-139 -6296 182) (-48 -6296 182)" + "material" "TOOLS/TOOLSCLIP" + "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 203" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3704250" + side + { + "id" "334773" + "plane" "(-362 -6312 344) (-362 -6244 344) (-189 -6244 344)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334774" + "plane" "(-362 -6244 32) (-362 -6312 32) (-189 -6312 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334775" + "plane" "(-362 -6312 32) (-362 -6244 32) (-362 -6244 344)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334776" + "plane" "(-189 -6244 32) (-189 -6312 32) (-189 -6312 344)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334777" + "plane" "(-362 -6244 32) (-189 -6244 32) (-189 -6244 344)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334778" + "plane" "(-189 -6312 32) (-362 -6312 32) (-362 -6312 344)" + "material" "TOOLS/TOOLSCLIP" + "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 197" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3704664" + side + { + "id" "334797" + "plane" "(94 -5894 190) (94 -5696 190) (123 -5696 190)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334798" + "plane" "(94 -5696 32) (94 -5894 32) (123 -5894 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334799" + "plane" "(94 -5894 32) (94 -5696 32) (94 -5696 190)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334800" + "plane" "(123 -5696 32) (123 -5894 32) (123 -5894 190)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334801" + "plane" "(94 -5696 32) (123 -5696 32) (123 -5696 190)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334802" + "plane" "(123 -5894 32) (94 -5894 32) (94 -5894 190)" + "material" "TOOLS/TOOLSCLIP" + "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 159" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3648280" + side + { + "id" "334380" + "plane" "(-48 -6280 182) (-48 -6214 182) (-32 -6214 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334381" + "plane" "(-48 -6214 32) (-48 -6280 32) (-32 -6280 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334382" + "plane" "(-48 -6280 32) (-48 -6214 32) (-48 -6214 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334383" + "plane" "(-32 -6214 32) (-32 -6280 32) (-32 -6280 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334384" + "plane" "(-48 -6214 32) (-32 -6214 32) (-32 -6214 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334385" + "plane" "(-32 -6280 32) (-48 -6280 32) (-48 -6280 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3648281" + side + { + "id" "334386" + "plane" "(-48 -6032 182) (-32 -6032 182) (-32 -6098 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334387" + "plane" "(-48 -6098 32) (-32 -6098 32) (-32 -6032 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334388" + "plane" "(-48 -6032 182) (-48 -6098 182) (-48 -6098 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334389" + "plane" "(-32 -6032 32) (-32 -6098 32) (-32 -6098 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334390" + "plane" "(-32 -6032 182) (-48 -6032 182) (-48 -6032 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334391" + "plane" "(-32 -6098 32) (-48 -6098 32) (-48 -6098 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 112 133" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3648289" + side + { + "id" "334403" + "plane" "(516 -5888 313) (516 -5903 313) (392 -5905 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334402" + "plane" "(516 -5903 0) (516 -5888 0) (388 -5888 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334401" + "plane" "(516 -5903 0) (516 -5903 313) (516 -5888 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334400" + "plane" "(516 -5888 0) (516 -5888 313) (388 -5888 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334399" + "plane" "(392 -5905 0) (392 -5905 313) (516 -5903 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334398" + "plane" "(388 -5888 0) (388 -5888 313) (392 -5905 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 174 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3648297" + side + { + "id" "334415" + "plane" "(560 -5903 313) (516 -5903 313) (516 -5888 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334414" + "plane" "(576 -5888 0) (516 -5888 0) (516 -5903 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334413" + "plane" "(516 -5903 0) (516 -5888 0) (516 -5888 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334412" + "plane" "(516 -5888 0) (576 -5888 0) (576 -5888 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334411" + "plane" "(560 -5903 0) (516 -5903 0) (516 -5903 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334410" + "plane" "(576 -5888 0) (560 -5903 0) (560 -5903 313)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3648335" + side + { + "id" "334436" + "plane" "(905 -5892.91 160) (905 -5888 160) (1094 -5888 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334435" + "plane" "(905 -5888 0) (905 -5892.91 0) (971.656 -5904 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334434" + "plane" "(905 -5892.91 0) (905 -5888 0) (905 -5888 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334433" + "plane" "(1094 -5888 0) (1094 -5891 0) (1094 -5891 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334432" + "plane" "(905 -5888 0) (1094 -5888 0) (1094 -5888 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334431" + "plane" "(1049.28 -5904 0) (971.656 -5904 0) (971.656 -5904 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334430" + "plane" "(971.656 -5904 0) (905 -5892.91 0) (905 -5892.91 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334429" + "plane" "(1094 -5891 0) (1049.28 -5904 0) (1049.28 -5904 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 118 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3648380" + side + { + "id" "334437" + "plane" "(462 -5043 156) (528 -5043 156) (528 -5052 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334438" + "plane" "(462 -5052 0) (528 -5052 0) (528 -5043 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334439" + "plane" "(462 -5043 156) (462 -5052 156) (462 -5052 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334440" + "plane" "(528 -5043 0) (528 -5052 0) (528 -5052 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334441" + "plane" "(528 -5043 156) (462 -5043 156) (462 -5043 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334442" + "plane" "(528 -5052 0) (462 -5052 0) (462 -5052 156)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 246 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3648500" + side + { + "id" "334443" + "plane" "(1684 -5314 41) (1677 -5257 41) (1789 -5242 41)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334444" + "plane" "(1677 -5257 -0.124996) (1684 -5314 -0.124996) (1798 -5298 -0.124996)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334445" + "plane" "(1684 -5314 -0.124998) (1677 -5257 -0.124998) (1677 -5257 40.9984)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334446" + "plane" "(1789 -5242 -0.124998) (1798 -5298 -0.124998) (1798 -5298 40.9981)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334447" + "plane" "(1677 -5257 -0.124998) (1789 -5242 -0.124998) (1789 -5242 40.9982)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334448" + "plane" "(1798 -5298 -0.124998) (1684 -5314 -0.124998) (1684 -5314 40.9983)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3634735" + side + { + "id" "334229" + "plane" "(2056 -4488 0) (2056 -4296 0) (2048 -4288 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" "334228" + "plane" "(2048 -4288 0) (2048 -4288 48) (2048 -4496 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334227" + "plane" "(2056 -4296 0) (2056 -4296 48) (2048 -4288 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" "334226" + "plane" "(2048 -4496 0) (2048 -4496 48) (2056 -4488 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" "334225" + "plane" "(2056 -4488 0) (2056 -4488 48) (2056 -4296 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334224" + "plane" "(2056 -4296 48) (2056 -4488 48) (2048 -4496 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 252" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3634760" + side + { + "id" "334265" + "plane" "(2056 -4704 0) (1920 -5104 0) (1928 -5104 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" "334264" + "plane" "(1920 -5104 0) (2056 -4704 0) (2056 -4704 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334263" + "plane" "(2056 -4704 0) (2060 -4712 0) (2060 -4712 48)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334262" + "plane" "(1928 -5104 0) (1920 -5104 0) (1920 -5104 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" "334261" + "plane" "(2060 -4712 0) (1928 -5104 0) (1928 -5104 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334260" + "plane" "(1920 -5104 48) (2056 -4704 48) (2060 -4712 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.304769 -0.896378 -0.321903 0] 0.125" + "vaxis" "[0.946772 -0.321903 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 209" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3634762" + side + { + "id" "334277" + "plane" "(2056 -4704 0) (2060 -4712 0) (2152 -4712 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" "334276" + "plane" "(2056 -4704 0) (2144 -4704 0) (2144 -4704 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334275" + "plane" "(2060 -4712 0) (2056 -4704 0) (2056 -4704 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" "334274" + "plane" "(2152 -4712 0) (2060 -4712 0) (2060 -4712 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334273" + "plane" "(2144 -4704 0) (2152 -4712 0) (2152 -4712 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334272" + "plane" "(2060 -4712 48) (2056 -4704 48) (2144 -4704 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 209" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3634764" + side + { + "id" "334289" + "plane" "(1928 -5104 0) (1920 -5104 0) (1920 -5168 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" "334288" + "plane" "(1920 -5168 0) (1920 -5104 0) (1920 -5104 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334287" + "plane" "(1920 -5104 0) (1928 -5104 0) (1928 -5104 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" "334286" + "plane" "(1928 -5104 0) (1928 -5160 0) (1928 -5160 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334285" + "plane" "(1928 -5160 0) (1920 -5168 0) (1920 -5168 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" "334284" + "plane" "(1920 -5168 48) (1920 -5104 48) (1928 -5104 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 199" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3634841" + side + { + "id" "334361" + "plane" "(2048 -4496 48) (2056 -4488 48) (2152 -4488 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334360" + "plane" "(2152 -4488 0) (2056 -4488 0) (2048 -4496 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" "334359" + "plane" "(2145.15 -4496 48) (2152 -4488 48) (2152 -4488 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" "334358" + "plane" "(2048 -4496 48) (2145.15 -4496 48) (2145.15 -4496 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334357" + "plane" "(2056 -4488 48) (2048 -4496 48) (2048 -4496 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334356" + "plane" "(2152 -4488 48) (2056 -4488 48) (2056 -4488 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 252" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3634842" + side + { + "id" "334367" + "plane" "(2056 -4488 48) (2056 -4296 48) (2152 -4296 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334366" + "plane" "(2152 -4488 0) (2152 -4296 0) (2056 -4296 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" "334365" + "plane" "(2152 -4296 0) (2152 -4488 0) (2152 -4488 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" "334364" + "plane" "(2056 -4296 0) (2152 -4296 0) (2152 -4296 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" "334363" + "plane" "(2056 -4488 0) (2056 -4296 0) (2056 -4296 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334362" + "plane" "(2152 -4488 0) (2056 -4488 0) (2056 -4488 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 252" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3620995" + side + { + "id" "334139" + "plane" "(384 -2930 -40) (384 -2816 -40) (608 -2816 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 -638] 0.125" + "vaxis" "[0 -1 0 120] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334138" + "plane" "(608 -2816 -56) (384 -2816 -56) (384 -2930 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334137" + "plane" "(384 -2930 -56) (384 -2816 -56) (384 -2816 -40)" + "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" "334136" + "plane" "(384 -2816 -56) (608 -2816 -56) (608 -2816 -40)" + "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" "334135" + "plane" "(608 -2816 -56) (608 -2930 -56) (608 -2930 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334134" + "plane" "(608 -2930 -56) (384 -2930 -56) (384 -2930 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 180" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3621008" + side + { + "id" "334157" + "plane" "(1536 -2040 -40) (1536 -1424 -40) (1640 -1424 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334156" + "plane" "(1536 -1424 -56) (1536 -2040 -56) (1640 -2040 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334155" + "plane" "(1536 -2040 -56) (1536 -1424 -56) (1536 -1424 -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" "334154" + "plane" "(1536 -1424 -56) (1640 -1424 -56) (1640 -1424 -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" "334153" + "plane" "(1640 -2040 -56) (1536 -2040 -56) (1536 -2040 -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" "334152" + "plane" "(1640 -1424 -56) (1640 -2040 -56) (1640 -2040 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3621079" + side + { + "id" "334169" + "plane" "(1640 -1424 -40) (1792 -1424 -40) (1792 -1632 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334168" + "plane" "(1792 -1632 -56) (1792 -1424 -56) (1640 -1424 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334167" + "plane" "(1792 -1424 -56) (1792 -1632 -56) (1792 -1632 -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" "334166" + "plane" "(1640 -1424 -56) (1792 -1424 -56) (1792 -1424 -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" "334165" + "plane" "(1640 -1632 -56) (1640 -1424 -56) (1640 -1424 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334164" + "plane" "(1792 -1632 -56) (1640 -1632 -56) (1640 -1632 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3621148" + side + { + "id" "334187" + "plane" "(1928 -5104 48) (2024 -5104 48) (2024 -5296 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334186" + "plane" "(2024 -5104 0) (1928 -5104 0) (1928 -5296 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" "334185" + "plane" "(1928 -5104 0) (2024 -5104 0) (2024 -5104 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" "334184" + "plane" "(2024 -5104 0) (2024 -5296 0) (2024 -5296 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334183" + "plane" "(2024 -5296 0) (1928 -5296 0) (1928 -5296 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" "334182" + "plane" "(1928 -5296 0) (1928 -5104 0) (1928 -5104 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 199" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3621208" + side + { + "id" "334199" + "plane" "(2168 -5104 48) (1928 -5104 48) (2057.31 -4720 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334198" + "plane" "(2057.31 -4720 0) (1928 -5104 0) (2168 -5104 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" "334197" + "plane" "(2168 -5104 0) (1928 -5104 0) (1928 -5104 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" "334196" + "plane" "(1928 -5104 0) (2057.31 -4720 0) (2057.31 -4720 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" "334195" + "plane" "(2294.37 -4720 0) (2168 -5104 0) (2168 -5104 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334194" + "plane" "(2057.3 -4720 0) (2294.37 -4720 0) (2294.37 -4720 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "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 209" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3621213" + side + { + "id" "334217" + "plane" "(2297 -4712 48) (2294.37 -4720 48) (2057 -4720 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334216" + "plane" "(2060 -4712 0) (2057 -4720 0) (2294.37 -4720 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" "334215" + "plane" "(2297 -4712 0) (2297 -4712 48) (2060 -4712 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334214" + "plane" "(2294.37 -4720 0) (2294.37 -4720 48) (2297 -4712 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334213" + "plane" "(2057 -4720 0) (2057 -4720 48) (2294.37 -4720 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334212" + "plane" "(2060 -4712 0) (2060 -4712 48) (2057 -4720 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "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 209" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3607535" + side + { + "id" "333952" + "plane" "(2944 -6176 -48) (2944 -6896 -48) (2976 -6896 -48)" + "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" "333951" + "plane" "(2944 -6896 -48) (2944 -6176 -48) (2944 -6176 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333950" + "plane" "(2976 -6176 32) (2976 -6176 -48) (2976 -6896 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333949" + "plane" "(2944 -6176 32) (2944 -6176 -48) (2976 -6176 -48)" + "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" "333948" + "plane" "(2944 -6896 32) (2944 -6176 32) (2976 -6176 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333947" + "plane" "(2976 -6896 32) (2976 -6896 -48) (2944 -6896 -48)" + "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" "0 252 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3607538" + side + { + "id" "333958" + "plane" "(4344 -9760 560) (4344 -6928 560) (4376 -6928 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333957" + "plane" "(4344 -6928 560) (4344 -9760 560) (4344 -9760 32)" + "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" "333956" + "plane" "(4376 -6928 32) (4376 -9760 32) (4376 -9760 560)" + "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" "333955" + "plane" "(4344 -9760 32) (4344 -9760 560) (4376 -9760 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333954" + "plane" "(4344 -6928 32) (4344 -9760 32) (4376 -9760 32)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333953" + "plane" "(4376 -6928 32) (4376 -6928 560) (4344 -6928 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 252 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3607539" + side + { + "id" "333964" + "plane" "(2944 -6896 560) (2944 -6176 560) (2976 -6176 560)" + "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" "333963" + "plane" "(2944 -6896 32) (2944 -6176 32) (2944 -6176 560)" + "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" "333962" + "plane" "(2976 -6896 560) (2976 -6176 560) (2976 -6176 32)" + "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" "333961" + "plane" "(2976 -6176 32) (2976 -6176 560) (2944 -6176 560)" + "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" "333960" + "plane" "(2944 -6176 32) (2944 -6896 32) (2976 -6896 32)" + "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" "333959" + "plane" "(2944 -6896 32) (2944 -6896 560) (2976 -6896 560)" + "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" "0 252 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3607547" + side + { + "id" "333965" + "plane" "(2944 -6928 32) (2944 -6896 32) (4376 -6896 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" "333966" + "plane" "(2944 -6896 -48) (2944 -6928 -48) (4376 -6928 -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" "333967" + "plane" "(2944 -6928 -48) (2944 -6896 -48) (2944 -6896 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" "333968" + "plane" "(4376 -6896 -48) (4376 -6928 -48) (4376 -6928 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" "333969" + "plane" "(2944 -6896 -48) (4376 -6896 -48) (4376 -6896 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333970" + "plane" "(4376 -6928 -48) (2944 -6928 -48) (2944 -6928 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 131 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3607549" + side + { + "id" "333971" + "plane" "(2944 -6928 560) (2944 -6896 560) (4376 -6896 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333972" + "plane" "(2944 -6896 32) (2944 -6928 32) (4376 -6928 32)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333973" + "plane" "(2944 -6928 32) (2944 -6896 32) (2944 -6896 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333974" + "plane" "(4376 -6896 32) (4376 -6928 32) (4376 -6928 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333975" + "plane" "(2944 -6896 32) (4376 -6896 32) (4376 -6896 560)" + "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" "333976" + "plane" "(4376 -6928 32) (2944 -6928 32) (2944 -6928 560)" + "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" "0 119 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3607550" + side + { + "id" "333977" + "plane" "(2816 -6928 608) (2816 -6144 608) (2976 -6144 608)" + "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" "333978" + "plane" "(2816 -6144 560) (2816 -6928 560) (2976 -6928 560)" + "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" "333979" + "plane" "(2816 -6928 560) (2816 -6144 560) (2816 -6144 608)" + "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" "333980" + "plane" "(2976 -6144 560) (2976 -6928 560) (2976 -6928 608)" + "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" "333981" + "plane" "(2816 -6144 560) (2976 -6144 560) (2976 -6144 608)" + "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" "333982" + "plane" "(2976 -6928 560) (2816 -6928 560) (2816 -6928 608)" + "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" "0 145 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3607551" + side + { + "id" "333983" + "plane" "(2816 -6176 -48) (2944 -6176 -48) (2944 -7072 -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" "333984" + "plane" "(2816 -7072 -64) (2944 -7072 -64) (2944 -6176 -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" "333985" + "plane" "(2816 -6176 -48) (2816 -7072 -48) (2816 -7072 -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" "333986" + "plane" "(2944 -6176 -64) (2944 -7072 -64) (2944 -7072 -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" "333987" + "plane" "(2944 -6176 -48) (2816 -6176 -48) (2816 -6176 -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" "333988" + "plane" "(2944 -7072 -64) (2816 -7072 -64) (2816 -7072 -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 147 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3594051" + side + { + "id" "333929" + "plane" "(8816.69 8207 5152) (8816.69 8423 5152) (8912.69 8423 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8816.69 8207 5152]" + "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 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" + } + 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 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" + } + 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 150 255 25 0 0 0" + "row3" "0 0 255 255 255 255 75 0 0" + "row4" "0 0 0 255 255 255 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" "333930" + "plane" "(8816.69 8423 5151) (8816.69 8207 5151) (8912.69 8207 5151)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333931" + "plane" "(8816.69 8207 5151) (8816.69 8423 5151) (8816.69 8423 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333932" + "plane" "(8912.69 8423 5151) (8912.69 8207 5151) (8912.69 8207 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333933" + "plane" "(8816.69 8423 5151) (8912.69 8423 5151) (8912.69 8423 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333934" + "plane" "(8912.69 8207 5151) (8816.69 8207 5151) (8816.69 8207 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3594109" + side + { + "id" "333935" + "plane" "(9184 8207 5152) (9184 8679 5152) (9344.69 8679 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[9184 8207 5152]" + "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 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" + } + 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 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" + } + 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 50 255 0 0 0 0 0" + "row3" "0 255 255 25 0 0 0 0 0" + "row4" "0 255 255 255 255 255 25 0 0" + "row5" "0 0 255 255 255 255 255 0 0" + "row6" "0 0 255 255 255 175 75 0 0" + "row7" "0 0 0 0 250 125 255 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" "333936" + "plane" "(9184 8679 5151) (9184 8207 5151) (9344.69 8207 5151)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333937" + "plane" "(9184 8207 5151) (9184 8679 5151) (9184 8679 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333938" + "plane" "(9344.69 8679 5151) (9344.69 8207 5151) (9344.69 8207 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333939" + "plane" "(9184 8679 5151) (9344.69 8679 5151) (9344.69 8679 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333940" + "plane" "(9344.69 8207 5151) (9184 8207 5151) (9184 8207 5152)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3552500" + side + { + "id" "333298" + "plane" "(-1851 -2896 416) (-1747 -2896 416) (-1747 -2912 416)" + "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" "333297" + "plane" "(-1851 -2912 128) (-1747 -2912 128) (-1747 -2896 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" "333296" + "plane" "(-1851 -2896 416) (-1851 -2912 416) (-1851 -2912 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" "333295" + "plane" "(-1747 -2896 128) (-1747 -2912 128) (-1747 -2912 416)" + "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" "333294" + "plane" "(-1747 -2896 416) (-1851 -2896 416) (-1851 -2896 128)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333293" + "plane" "(-1747 -2912 128) (-1851 -2912 128) (-1851 -2912 416)" + "material" "TOOLS/TOOLSHINT" + "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 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3552503" + side + { + "id" "333299" + "plane" "(160 -2896 416) (264 -2896 416) (264 -2912 416)" + "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" "333300" + "plane" "(160 -2912 208) (264 -2912 208) (264 -2896 208)" + "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" "333301" + "plane" "(160 -2896 416) (160 -2912 416) (160 -2912 208)" + "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" "333302" + "plane" "(264 -2896 208) (264 -2912 208) (264 -2912 416)" + "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" "333303" + "plane" "(264 -2896 416) (160 -2896 416) (160 -2896 208)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333304" + "plane" "(264 -2912 208) (160 -2912 208) (160 -2912 416)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 126 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3552506" + side + { + "id" "333305" + "plane" "(384 -2434 416) (400 -2434 416) (400 -2682 416)" + "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" "333306" + "plane" "(384 -2682 208) (400 -2682 208) (400 -2434 208)" + "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" "333307" + "plane" "(384 -2434 416) (384 -2682 416) (384 -2682 208)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333308" + "plane" "(400 -2434 208) (400 -2682 208) (400 -2682 416)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333309" + "plane" "(400 -2434 416) (384 -2434 416) (384 -2434 208)" + "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" "333310" + "plane" "(400 -2682 208) (384 -2682 208) (384 -2682 416)" + "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 184 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3552510" + side + { + "id" "333311" + "plane" "(1344 -2912 344) (1360 -2912 344) (1360 -3128 344)" + "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" "333312" + "plane" "(1344 -3128 224) (1360 -3128 224) (1360 -2912 224)" + "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" "333313" + "plane" "(1344 -2912 344) (1344 -3128 344) (1344 -3128 224)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333314" + "plane" "(1360 -2912 224) (1360 -3128 224) (1360 -3128 344)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333315" + "plane" "(1360 -2912 344) (1344 -2912 344) (1344 -2912 224)" + "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" "333316" + "plane" "(1360 -3128 224) (1344 -3128 224) (1344 -3128 344)" + "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 112 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3552527" + side + { + "id" "333329" + "plane" "(2640 -3776 96) (2768 -3776 96) (2768 -3792 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" "333330" + "plane" "(2640 -3792 -16) (2768 -3792 -16) (2768 -3776 -16)" + "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" "333331" + "plane" "(2640 -3776 96) (2640 -3792 96) (2640 -3792 -16)" + "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" "333332" + "plane" "(2768 -3776 -16) (2768 -3792 -16) (2768 -3792 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" "333333" + "plane" "(2768 -3776 96) (2640 -3776 96) (2640 -3776 -16)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333334" + "plane" "(2768 -3792 -16) (2640 -3792 -16) (2640 -3792 96)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3552562" + side + { + "id" "333395" + "plane" "(0 -4656 128) (248 -4656 128) (248 -4672 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" "333396" + "plane" "(0 -4672 0) (248 -4672 0) (248 -4656 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" "333397" + "plane" "(0 -4656 128) (0 -4672 128) (0 -4672 0)" + "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" "333398" + "plane" "(248 -4656 0) (248 -4672 0) (248 -4672 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" "333399" + "plane" "(248 -4656 128) (0 -4656 128) (0 -4656 0)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333400" + "plane" "(248 -4672 0) (0 -4672 0) (0 -4672 128)" + "material" "TOOLS/TOOLSHINT" + "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 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3552565" + side + { + "id" "333401" + "plane" "(-776 -3728 -46) (-608 -3728 -46) (-608 -3744 -46)" + "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" "333402" + "plane" "(-776 -3744 -224) (-608 -3744 -224) (-608 -3728 -224)" + "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" "333403" + "plane" "(-776 -3728 -46) (-776 -3744 -46) (-776 -3744 -224)" + "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" "333404" + "plane" "(-608 -3728 -224) (-608 -3744 -224) (-608 -3744 -46)" + "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" "333405" + "plane" "(-608 -3728 -46) (-776 -3728 -46) (-776 -3728 -224)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333406" + "plane" "(-608 -3744 -224) (-776 -3744 -224) (-776 -3744 -46)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3552569" + side + { + "id" "333418" + "plane" "(-816 -3216 -32) (-1056 -3216 -32) (-1056 -2912 -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" "333417" + "plane" "(-816 -2912 -200) (-1056 -2912 -200) (-1056 -3216 -200)" + "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" "333416" + "plane" "(-816 -3216 -200) (-1056 -3216 -200) (-1056 -3216 -32)" + "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" "333415" + "plane" "(-1056 -2912 -200) (-816 -2912 -200) (-816 -2912 -32)" + "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" "333414" + "plane" "(-1056 -3216 -200) (-1056 -2912 -200) (-1056 -2912 -32)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333413" + "plane" "(-816 -2912 -200) (-816 -3216 -200) (-816 -3216 -32)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3535906" + side + { + "id" "331366" + "plane" "(1457 -4200 240) (1457 -3456 240) (2128 -3456 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331367" + "plane" "(1457 -3456 170) (1457 -4200 170) (2128 -4200 170)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331368" + "plane" "(1457 -4200 170) (1457 -3456 170) (1457 -3456 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331369" + "plane" "(2128 -3456 170) (2128 -4200 170) (2128 -4200 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331370" + "plane" "(1457 -3456 170) (2128 -3456 170) (2128 -3456 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331371" + "plane" "(2128 -4200 170) (1457 -4200 170) (1457 -4200 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3535923" + side + { + "id" "331384" + "plane" "(496 -2682 128.5) (480 -2682 128.5) (480 -2616 128.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331385" + "plane" "(494 -2616 -0.499878) (480 -2616 -0.499878) (480 -2682 -0.499878)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331386" + "plane" "(480 -2682 128.5) (480 -2682 -0.499878) (480 -2616 -0.499878)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331387" + "plane" "(494 -2616 128.5) (494 -2616 -0.499878) (496 -2682 -0.499878)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331388" + "plane" "(480 -2616 128.5) (480 -2616 -0.499878) (494 -2616 -0.499878)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331389" + "plane" "(496 -2682 128.5) (496 -2682 -0.499878) (480 -2682 -0.499878)" + "material" "TOOLS/TOOLSCLIP" + "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 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3535924" + side + { + "id" "331390" + "plane" "(482 -2500 128.5) (480 -2434 128.5) (496 -2434 128.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331391" + "plane" "(480 -2434 -0.499878) (482 -2500 -0.499878) (493 -2500 -0.499878)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331392" + "plane" "(482 -2500 -0.499936) (480 -2434 -0.499936) (480 -2434 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331393" + "plane" "(496 -2434 -0.499942) (493 -2500 -0.499942) (493 -2500 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331394" + "plane" "(480 -2434 -0.499939) (496 -2434 -0.49994) (496 -2434 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331395" + "plane" "(493 -2500 -0.499938) (482 -2500 -0.499938) (482 -2500 128.502)" + "material" "TOOLS/TOOLSCLIP" + "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 154" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3537751" + side + { + "id" "332068" + "plane" "(384 -5600 156) (384 -5232 156) (576 -5232 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_ROOF_001" + "uaxis" "[-0.740911 -0.671603 0 -117] 0.182" + "vaxis" "[-0.367857 0.405819 -0.836655 -282] 0.099" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "332067" + "plane" "(384 -5232 32) (384 -5232 156) (384 -5600 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332066" + "plane" "(576 -5600 32) (576 -5600 156) (576 -5232 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332065" + "plane" "(576 -5232 32) (576 -5232 156) (384 -5232 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332064" + "plane" "(384 -5600 32) (384 -5600 156) (576 -5600 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332063" + "plane" "(384 -5232 32) (384 -5600 32) (576 -5600 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_ROOF_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 158 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3537752" + side + { + "id" "332074" + "plane" "(384 -5232 0) (384 -5600 0) (576 -5600 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" "332073" + "plane" "(384 -5600 0) (384 -5232 0) (384 -5232 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332072" + "plane" "(576 -5232 0) (576 -5600 0) (576 -5600 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332071" + "plane" "(384 -5232 0) (576 -5232 0) (576 -5232 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" "332070" + "plane" "(576 -5600 0) (384 -5600 0) (384 -5600 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" "332069" + "plane" "(384 -5600 32) (384 -5232 32) (576 -5232 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -23.998] 0.25" + "vaxis" "[0 -1 0 -63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 158 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3537757" + side + { + "id" "332075" + "plane" "(384 -5232 160) (576 -5232 160) (576 -5600 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" "332076" + "plane" "(384 -5600 156) (576 -5600 156) (576 -5232 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332077" + "plane" "(384 -5232 160) (384 -5600 160) (384 -5600 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332078" + "plane" "(576 -5232 156) (576 -5600 156) (576 -5600 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332079" + "plane" "(576 -5232 160) (384 -5232 160) (384 -5232 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332080" + "plane" "(576 -5600 156) (384 -5600 156) (384 -5600 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" + } + editor + { + "color" "0 119 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3537951" + side + { + "id" "332356" + "plane" "(360 -5232 208) (624 -5232 208) (624 -5536 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" "332357" + "plane" "(360 -5536 160) (624 -5536 160) (624 -5232 160)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 420] 0.125" + "vaxis" "[0 1 0 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332358" + "plane" "(360 -5232 208) (360 -5536 208) (360 -5536 160)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 1 0 484] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "332359" + "plane" "(624 -5232 160) (624 -5536 160) (624 -5536 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 -1 0 -1006.29] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "332360" + "plane" "(624 -5232 208) (360 -5232 208) (360 -5232 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" "332361" + "plane" "(624 -5536 160) (360 -5536 160) (360 -5536 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" + } + editor + { + "color" "0 113 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538802" + side + { + "id" "333196" + "plane" "(342 -5136 162.096) (359 -5121 162.096) (626 -5121 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333195" + "plane" "(342 -5216 0.0961456) (359 -5232 0.0961456) (638 -5244 0.0961456)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333194" + "plane" "(342 -5136 0.0961456) (342 -5136 162.096) (342 -5216 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333193" + "plane" "(643 -5217 0.0961456) (643 -5217 162.096) (643 -5137 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333192" + "plane" "(359 -5232 0.0961456) (359 -5232 162.096) (638 -5244 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333191" + "plane" "(638 -5244 0.0961456) (638 -5244 162.096) (643 -5217 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333190" + "plane" "(643 -5137 0.0961456) (643 -5137 162.096) (626 -5121 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333189" + "plane" "(359 -5121 0.0961456) (359 -5121 162.096) (342 -5136 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333188" + "plane" "(342 -5216 0.0961456) (342 -5216 162.096) (359 -5232 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333187" + "plane" "(626 -5121 0.0961456) (626 -5121 162.096) (359 -5121 162.096)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538867" + side + { + "id" "333197" + "plane" "(580 -5736 160) (580 -5692 160) (666 -5692 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333198" + "plane" "(580 -5692 113) (580 -5736 113) (666 -5736 113)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333199" + "plane" "(580 -5736 113) (580 -5692 113) (580 -5692 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333200" + "plane" "(666 -5692 113) (666 -5736 113) (666 -5736 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333201" + "plane" "(580 -5692 113) (666 -5692 113) (666 -5692 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333202" + "plane" "(666 -5736 113) (580 -5736 113) (580 -5736 160)" + "material" "TOOLS/TOOLSCLIP" + "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 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3509772" + side + { + "id" "331318" + "plane" "(2056 -4280 48) (2232 -4280 48) (2232 -4288 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331319" + "plane" "(2056 -4288 0) (2232 -4288 0) (2232 -4280 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" "331320" + "plane" "(2056 -4280 48) (2056 -4288 48) (2056 -4288 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" "331321" + "plane" "(2232 -4280 0) (2232 -4288 0) (2232 -4288 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" "331322" + "plane" "(2232 -4280 48) (2056 -4280 48) (2056 -4280 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" "331323" + "plane" "(2232 -4288 0) (2056 -4288 0) (2056 -4288 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 162 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3496591" + side + { + "id" "331245" + "plane" "(2560 -4736 400) (2312 -4736 400) (2312 -4704 400)" + "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" "331244" + "plane" "(2312 -4704 -16) (2312 -4736 -16) (2560 -4736 -16)" + "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" "331243" + "plane" "(2560 -4736 -16) (2312 -4736 -16) (2312 -4736 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331242" + "plane" "(2560 -4704 -16) (2560 -4736 -16) (2560 -4736 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331241" + "plane" "(2312 -4736 -16) (2312 -4704 -16) (2312 -4704 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331240" + "plane" "(2312 -4704 -16) (2560 -4704 -16) (2560 -4704 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -351.984] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3496592" + side + { + "id" "331251" + "plane" "(2312 -4704 400) (2312 -4288 400) (2560 -4288 400)" + "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" "331250" + "plane" "(2560 -4288 288) (2312 -4288 288) (2312 -4704 288)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[0 1 0 -164] 0.125" + "vaxis" "[1 0 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331249" + "plane" "(2312 -4288 288) (2560 -4288 288) (2560 -4288 400)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331248" + "plane" "(2560 -4288 288) (2560 -4704 288) (2560 -4704 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331247" + "plane" "(2312 -4704 288) (2312 -4288 288) (2312 -4288 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331246" + "plane" "(2560 -4704 288) (2312 -4704 288) (2312 -4704 400)" + "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 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3496602" + side + { + "id" "331258" + "plane" "(2576 -4704 48) (2312 -4704 48) (2232 -4288 48)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "331259" + "plane" "(2576 -4288 0) (2232 -4288 0) (2312 -4704 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" "331260" + "plane" "(2312 -4704 48) (2312 -4704 0) (2232 -4288 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" "331261" + "plane" "(2576 -4288 48) (2576 -4288 0) (2576 -4704 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" "331262" + "plane" "(2232 -4288 48) (2232 -4288 0) (2576 -4288 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" "331263" + "plane" "(2576 -4704 48) (2576 -4704 0) (2312 -4704 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 191 144" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3467873" + side + { + "id" "329727" + "plane" "(1424 -4165 209) (1424 -3456 209) (1440 -3456 209)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329728" + "plane" "(1424 -3456 0.199936) (1424 -4165 0.199936) (1440 -4165 0.199936)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329729" + "plane" "(1424 -4165 0.199604) (1424 -3456 0.199599) (1424 -3456 209)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329730" + "plane" "(1440 -3456 0.199556) (1440 -4165 0.199551) (1440 -4165 209)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329731" + "plane" "(1424 -3456 0.199568) (1440 -3456 0.199568) (1440 -3456 209)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329732" + "plane" "(1440 -4165 0.199587) (1424 -4165 0.199586) (1424 -4165 209)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 233 214" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3467898" + side + { + "id" "329763" + "plane" "(1376 -4200 57) (1376 -3456 57) (1424 -3456 57)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1376 -4200 57]" + "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 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" + } + 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 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" + } + 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" "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" "329764" + "plane" "(1376 -3456 56) (1376 -4200 56) (1424 -4200 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329765" + "plane" "(1376 -4200 56) (1376 -3456 56) (1376 -3456 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329766" + "plane" "(1424 -3456 56) (1424 -4200 56) (1424 -4200 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329767" + "plane" "(1376 -3456 56) (1424 -3456 56) (1424 -3456 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329768" + "plane" "(1424 -4200 56) (1376 -4200 56) (1376 -4200 57)" + "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 211 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3467900" + side + { + "id" "329769" + "plane" "(888 -3440 57) (1312 -3440 57) (1312 -3488 57)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "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" "[888 -3488 57]" + "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 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" + } + 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 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" + } + 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" "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" "329770" + "plane" "(888 -3488 56) (1312 -3488 56) (1312 -3440 56)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329771" + "plane" "(888 -3440 57) (888 -3488 57) (888 -3488 56)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329772" + "plane" "(1312 -3440 56) (1312 -3488 56) (1312 -3488 57)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329773" + "plane" "(1312 -3440 57) (888 -3440 57) (888 -3440 56)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329774" + "plane" "(1312 -3488 56) (888 -3488 56) (888 -3488 57)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3467903" + side + { + "id" "329775" + "plane" "(1312 -3456 57) (1377 -3456 57) (1377 -3488 57)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1312 -3488 57]" + "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 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" + } + 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 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" + } + 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" "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" "329776" + "plane" "(1312 -3488 56) (1377 -3488 56) (1377 -3456 56)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329777" + "plane" "(1312 -3456 57) (1312 -3488 57) (1312 -3488 56)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329778" + "plane" "(1377 -3456 56) (1377 -3488 56) (1377 -3488 57)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329779" + "plane" "(1377 -3456 57) (1312 -3456 57) (1312 -3456 56)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329780" + "plane" "(1377 -3488 56) (1312 -3488 56) (1312 -3488 57)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "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 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468085" + side + { + "id" "329804" + "plane" "(536 -3424 -40) (412 -3424 -40) (412 -3440 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329803" + "plane" "(412 -3440 32) (412 -3440 -40) (412 -3424 -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" "329802" + "plane" "(412 -3424 32) (412 -3424 -40) (536 -3424 -40)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 0 1 382] 0.25" + "vaxis" "[1 0 0 -319] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329801" + "plane" "(536 -3440 -40) (412 -3440 -40) (412 -3440 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" "329800" + "plane" "(536 -3440 32) (412 -3440 32) (412 -3424 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" "329799" + "plane" "(536 -3424 32) (536 -3424 -40) (536 -3440 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468086" + side + { + "id" "329810" + "plane" "(888 -3424 -40) (784 -3424 -40) (784 -3440 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329809" + "plane" "(784 -3424 -40) (888 -3424 -40) (888 -3424 32)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 0 1 382] 0.25" + "vaxis" "[1 0 0 -319] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329808" + "plane" "(888 -3440 32) (888 -3440 -40) (784 -3440 -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" "329807" + "plane" "(888 -3424 32) (888 -3424 -40) (888 -3440 -40)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 382] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329806" + "plane" "(888 -3440 32) (784 -3440 32) (784 -3424 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" "329805" + "plane" "(784 -3440 32) (784 -3440 -40) (784 -3424 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -320] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468096" + side + { + "id" "329828" + "plane" "(412 -3440 128) (412 -3440 32) (412 -3424 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" "329827" + "plane" "(412 -3424 128) (412 -3424 32) (536 -3424 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329826" + "plane" "(536 -3440 128) (536 -3440 32) (412 -3440 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" "329825" + "plane" "(536 -3424 32) (412 -3424 32) (412 -3440 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" "329824" + "plane" "(536 -3424 128) (536 -3424 32) (536 -3440 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329823" + "plane" "(536 -3440 128) (412 -3440 128) (412 -3424 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 140 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468274" + side + { + "id" "329858" + "plane" "(384 -3296 0) (384 -3280 0) (856 -3280 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329857" + "plane" "(384 -3200 -40) (384 -3296 -40) (856 -3296 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329856" + "plane" "(384 -3296 -40) (384 -3200 -40) (384 -3280 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329855" + "plane" "(856 -3200 -40) (856 -3296 -40) (856 -3296 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329854" + "plane" "(856 -3296 -40) (384 -3296 -40) (384 -3296 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329853" + "plane" "(856 -3280 0) (384 -3280 0) (384 -3200 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 167 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468521" + side + { + "id" "329984" + "plane" "(808 -3760 0) (528 -3760 0) (528 -3776 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329983" + "plane" "(528 -3760 0) (808 -3760 0) (808 -3760 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" "329982" + "plane" "(808 -3776 32) (808 -3776 0) (528 -3776 0)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 0 1 382] 0.25" + "vaxis" "[-1 0 0 512.996] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329981" + "plane" "(808 -3760 32) (808 -3760 0) (808 -3776 0)" + "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" "329980" + "plane" "(808 -3776 32) (528 -3776 32) (528 -3760 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" "329979" + "plane" "(528 -3776 32) (528 -3776 0) (528 -3760 0)" + "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" "0 200 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468526" + side + { + "id" "329990" + "plane" "(428 -3760 0) (412 -3776 0) (528 -3776 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329989" + "plane" "(412 -3776 0) (428 -3760 0) (428 -3760 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" "329988" + "plane" "(428 -3760 0) (528 -3760 0) (528 -3760 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" "329987" + "plane" "(412 -3776 0) (412 -3776 32) (528 -3776 32)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 0 1 382] 0.25" + "vaxis" "[-1 0 0 512.996] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329986" + "plane" "(412 -3776 32) (428 -3760 32) (528 -3760 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" "329985" + "plane" "(528 -3760 0) (528 -3776 0) (528 -3776 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468530" + side + { + "id" "330002" + "plane" "(428 -3760 208) (528 -3760 208) (528 -3776 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330001" + "plane" "(412 -3776 208) (412 -3776 32) (428 -3760 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" "330000" + "plane" "(428 -3760 32) (528 -3760 32) (528 -3760 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" "329999" + "plane" "(412 -3776 208) (528 -3776 208) (528 -3776 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329998" + "plane" "(412 -3776 32) (528 -3776 32) (528 -3760 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" "329997" + "plane" "(528 -3760 208) (528 -3760 32) (528 -3776 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -384] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468534" + side + { + "id" "330014" + "plane" "(776 -3776 208) (528 -3776 208) (528 -3760 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330013" + "plane" "(528 -3760 127) (776 -3760 127) (776 -3760 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" "330012" + "plane" "(528 -3776 208) (776 -3776 208) (776 -3776 127)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330011" + "plane" "(776 -3760 127) (528 -3760 127) (528 -3776 127)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 -584] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330010" + "plane" "(528 -3760 127) (528 -3760 208) (528 -3776 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" "330009" + "plane" "(776 -3776 127) (776 -3776 208) (776 -3760 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 200 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468535" + side + { + "id" "330020" + "plane" "(808 -3776 208) (528 -3776 208) (528 -3760 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330019" + "plane" "(528 -3760 32) (808 -3760 32) (808 -3760 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" "330018" + "plane" "(528 -3776 208) (808 -3776 208) (808 -3776 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330017" + "plane" "(808 -3776 32) (808 -3776 208) (808 -3760 208)" + "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" "330016" + "plane" "(808 -3760 32) (528 -3760 32) (528 -3776 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" "330015" + "plane" "(528 -3760 32) (528 -3760 208) (528 -3776 208)" + "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" "0 200 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468551" + side + { + "id" "330039" + "plane" "(-723 -3184 128.5) (-723 -3168 128.5) (-656 -3168 128.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330040" + "plane" "(-723 -3168 -0.49987) (-723 -3184 -0.49987) (-656 -3184 -0.49987)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330041" + "plane" "(-723 -3184 -0.499927) (-723 -3168 -0.499927) (-723 -3168 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330042" + "plane" "(-656 -3168 -0.499935) (-656 -3184 -0.499935) (-656 -3184 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330043" + "plane" "(-723 -3168 -0.49993) (-656 -3168 -0.499931) (-656 -3168 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330044" + "plane" "(-656 -3184 -0.499932) (-723 -3184 -0.499932) (-723 -3184 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468552" + side + { + "id" "330045" + "plane" "(-648 -2912 128.75) (-648 -2896 128.75) (-582 -2896 128.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330046" + "plane" "(-648 -2896 -0.249916) (-648 -2912 -0.249916) (-582 -2912 -0.249916)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330047" + "plane" "(-648 -2912 -0.249952) (-648 -2896 -0.249952) (-648 -2896 128.748)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330048" + "plane" "(-582 -2896 -0.249957) (-582 -2912 -0.249957) (-582 -2912 128.748)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330049" + "plane" "(-648 -2896 -0.249954) (-582 -2896 -0.249954) (-582 -2896 128.748)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330050" + "plane" "(-582 -2912 -0.249955) (-648 -2912 -0.249955) (-648 -2912 128.748)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468553" + side + { + "id" "330051" + "plane" "(-467 -2912 128.75) (-467 -2896 128.75) (-399 -2896 128.75)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330052" + "plane" "(-467 -2896 -0.249916) (-467 -2912 -0.249916) (-399 -2912 -0.249916)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330053" + "plane" "(-467 -2912 -0.249952) (-467 -2896 -0.249952) (-467 -2896 128.748)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330054" + "plane" "(-399 -2896 -0.249957) (-399 -2912 -0.249957) (-399 -2912 128.748)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330055" + "plane" "(-467 -2896 -0.249954) (-399 -2896 -0.249954) (-399 -2896 128.748)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330056" + "plane" "(-399 -2912 -0.249955) (-467 -2912 -0.249955) (-467 -2912 128.748)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 155 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468696" + side + { + "id" "330057" + "plane" "(1121 -2874 250.069) (1121 -2864 250.069) (1132 -2864 250.069)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330058" + "plane" "(1121 -2864 -39.9308) (1121 -2874 -39.9308) (1132 -2874 -39.9308)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330059" + "plane" "(1121 -2874 -39.9303) (1121 -2864 -39.9303) (1121 -2864 250.07)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330060" + "plane" "(1132 -2864 -39.9302) (1132 -2874 -39.9302) (1132 -2874 250.07)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330061" + "plane" "(1121 -2864 -39.9302) (1132 -2864 -39.9302) (1132 -2864 250.07)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330062" + "plane" "(1132 -2874 -39.9303) (1121 -2874 -39.9303) (1121 -2874 250.07)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468707" + side + { + "id" "330069" + "plane" "(1328 -2962 144.5) (1328 -2896 144.5) (1343 -2896 144.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330070" + "plane" "(1328 -2896 15.5002) (1328 -2962 15.5002) (1343 -2962 15.5002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330071" + "plane" "(1328 -2962 15.5001) (1328 -2896 15.5001) (1328 -2896 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330072" + "plane" "(1343 -2896 15.5001) (1343 -2962 15.5001) (1343 -2962 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330073" + "plane" "(1328 -2896 15.5001) (1343 -2896 15.5001) (1343 -2896 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330074" + "plane" "(1343 -2962 15.5001) (1328 -2962 15.5001) (1328 -2962 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 213 126" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468708" + side + { + "id" "330075" + "plane" "(1328 -3144 144.5) (1328 -3078 144.5) (1344 -3078 144.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330076" + "plane" "(1328 -3078 15.5002) (1328 -3144 15.5002) (1344 -3144 15.5002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330077" + "plane" "(1328 -3144 15.5001) (1328 -3078 15.5001) (1328 -3078 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330078" + "plane" "(1344 -3078 15.5001) (1344 -3144 15.5001) (1344 -3144 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330079" + "plane" "(1328 -3078 15.5001) (1344 -3078 15.5001) (1344 -3078 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330080" + "plane" "(1344 -3144 15.5001) (1328 -3144 15.5001) (1328 -3144 144.498)" + "material" "TOOLS/TOOLSCLIP" + "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 164" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468711" + side + { + "id" "330081" + "plane" "(1990 -3424 144.5) (2056 -3424 144.5) (2056 -3440 144.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330082" + "plane" "(1990 -3440 15.5002) (2056 -3440 15.5002) (2056 -3424 15.5002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330083" + "plane" "(1990 -3424 144.5) (1990 -3440 144.5) (1990 -3440 15.5002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330084" + "plane" "(2056 -3424 15.5002) (2056 -3440 15.5002) (2056 -3440 144.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330085" + "plane" "(2056 -3424 144.5) (1990 -3424 144.5) (1990 -3424 15.5002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330086" + "plane" "(2056 -3440 15.5002) (1990 -3440 15.5002) (1990 -3440 144.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 201 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468712" + side + { + "id" "330087" + "plane" "(1808 -3440 144.5) (1808 -3424 144.5) (1875 -3424 144.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330088" + "plane" "(1808 -3424 15.5002) (1808 -3440 15.5002) (1875 -3440 15.5002)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330089" + "plane" "(1808 -3440 15.5001) (1808 -3424 15.5001) (1808 -3424 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330090" + "plane" "(1875 -3424 15.5001) (1875 -3440 15.5001) (1875 -3440 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330091" + "plane" "(1808 -3424 15.5001) (1875 -3424 15.5001) (1875 -3424 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330092" + "plane" "(1875 -3440 15.5001) (1808 -3440 15.5001) (1808 -3440 144.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 243 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468714" + side + { + "id" "330099" + "plane" "(1184 -5190 128.5) (1184 -5124 128.5) (1200 -5124 128.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330100" + "plane" "(1184 -5124 -0.499855) (1184 -5190 -0.499855) (1200 -5190 -0.499855)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330101" + "plane" "(1184 -5190 -0.499917) (1184 -5124 -0.499917) (1184 -5124 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330102" + "plane" "(1200 -5124 -0.499931) (1200 -5190 -0.499931) (1200 -5190 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330103" + "plane" "(1184 -5124 -0.499925) (1200 -5124 -0.499925) (1200 -5124 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330104" + "plane" "(1200 -5190 -0.499922) (1184 -5190 -0.499922) (1184 -5190 128.502)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468778" + side + { + "id" "330125" + "plane" "(-1025 -4403 224) (-1025 -4335 224) (-1024 -4335 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330124" + "plane" "(-1025 -4335 0) (-1025 -4403 0) (-1015 -4403 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330123" + "plane" "(-1025 -4403 0) (-1025 -4335 0) (-1025 -4335 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330122" + "plane" "(-1001 -4352 0) (-1001 -4389 0) (-1001 -4389 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330121" + "plane" "(-1025 -4335 0) (-1024 -4335 0) (-1024 -4335 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330120" + "plane" "(-1015 -4403 0) (-1025 -4403 0) (-1025 -4403 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330119" + "plane" "(-1001 -4389 0) (-1015 -4403 0) (-1015 -4403 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330118" + "plane" "(-1024 -4335 0) (-1001 -4352 0) (-1001 -4352 224)" + "material" "TOOLS/TOOLSCLIP" + "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 178" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3468832" + side + { + "id" "330218" + "plane" "(888 -3440 240) (888 -3424 240) (1312 -3424 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330219" + "plane" "(888 -3424 16) (888 -3440 16) (1312 -3440 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330220" + "plane" "(888 -3440 16) (888 -3424 16) (888 -3424 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330221" + "plane" "(1312 -3424 16) (1312 -3440 16) (1312 -3440 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330222" + "plane" "(888 -3424 16) (1312 -3424 16) (1312 -3424 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "330223" + "plane" "(1312 -3440 16) (888 -3440 16) (888 -3440 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 114" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3454653" + side + { + "id" "329589" + "plane" "(1040 -3456 0) (1040 -3424 0) (1312 -3424 0)" + "material" "NATURE/GRASSWITHERED00" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329590" + "plane" "(1040 -3424 -56) (1040 -3456 -56) (1312 -3456 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329591" + "plane" "(1040 -3456 -56) (1040 -3424 -56) (1040 -3424 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" "329592" + "plane" "(1312 -3424 -56) (1312 -3456 -56) (1312 -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" "329593" + "plane" "(1040 -3424 -56) (1312 -3424 -56) (1312 -3424 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" "329594" + "plane" "(1312 -3456 -56) (1040 -3456 -56) (1040 -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 169 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3454655" + side + { + "id" "329595" + "plane" "(808 -3488 0) (824 -3488 0) (824 -3727 0)" + "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" "329596" + "plane" "(808 -3727 -40) (824 -3727 -40) (824 -3488 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329597" + "plane" "(808 -3488 0) (808 -3727 0) (808 -3727 -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" "329598" + "plane" "(824 -3488 -40) (824 -3727 -40) (824 -3727 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" "329599" + "plane" "(824 -3488 0) (808 -3488 0) (808 -3488 -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" "329600" + "plane" "(824 -3727 -40) (808 -3727 -40) (808 -3727 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 201 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3454837" + side + { + "id" "329696" + "plane" "(808 -3440 -40) (808 -3488 -40) (824 -3488 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329695" + "plane" "(808 -3488 -40) (808 -3440 -40) (808 -3440 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" "329694" + "plane" "(824 -3440 -40) (824 -3488 -40) (824 -3488 32)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 0 1 382] 0.25" + "vaxis" "[0 -1 0 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329693" + "plane" "(808 -3440 -40) (824 -3440 -40) (824 -3440 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" "329692" + "plane" "(824 -3488 -40) (808 -3488 -40) (808 -3488 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329691" + "plane" "(808 -3488 32) (808 -3440 32) (824 -3440 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 124 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3454842" + side + { + "id" "329708" + "plane" "(808 -3440 0) (808 -3776 0) (888 -3776 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" "329707" + "plane" "(808 -3776 32) (808 -3776 0) (808 -3440 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" "329706" + "plane" "(888 -3440 32) (888 -3440 0) (888 -3776 0)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 382] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329705" + "plane" "(808 -3440 32) (808 -3440 0) (888 -3440 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -27.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329704" + "plane" "(888 -3776 32) (888 -3776 0) (808 -3776 0)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[1 0 0 382] 0.25" + "vaxis" "[0 0 -1 512.996] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329703" + "plane" "(808 -3776 32) (808 -3440 32) (888 -3440 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 146 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3441652" + side + { + "id" "329535" + "plane" "(824 -3424 0) (1040 -3424 0) (1040 -3760 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329536" + "plane" "(824 -3760 -40) (1040 -3760 -40) (1040 -3424 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329537" + "plane" "(824 -3424 0) (824 -3760 0) (824 -3760 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329538" + "plane" "(1040 -3424 -40) (1040 -3760 -40) (1040 -3760 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329539" + "plane" "(1040 -3424 0) (824 -3424 0) (824 -3424 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329540" + "plane" "(1040 -3760 -40) (824 -3760 -40) (824 -3760 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 183" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3428474" + side + { + "id" "329481" + "plane" "(1040 -4208 0) (1040 -3456 0) (1464 -3456 0)" + "material" "NATURE/GRASSWITHERED00" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329482" + "plane" "(1040 -3456 -40) (1040 -4208 -40) (1464 -4208 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329483" + "plane" "(1040 -4208 -40) (1040 -3456 -40) (1040 -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" "329484" + "plane" "(1464 -3456 -40) (1464 -4208 -40) (1464 -4208 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" "329485" + "plane" "(1040 -3456 -40) (1464 -3456 -40) (1464 -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" + } + side + { + "id" "329486" + "plane" "(1464 -4208 -40) (1040 -4208 -40) (1040 -4208 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 162 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3428488" + side + { + "id" "329492" + "plane" "(1608 -3456 147) (1312 -3456 147) (1312 -3456 224)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329491" + "plane" "(1608 -3456 224) (1312 -3456 224) (1312 -3440 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" "329490" + "plane" "(1312 -3456 224) (1312 -3456 147) (1312 -3440 147)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329489" + "plane" "(1312 -3440 147) (1312 -3456 147) (1608 -3456 147)" + "material" "DEV/REFLECTIVITY_40B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329488" + "plane" "(1608 -3440 224) (1312 -3440 224) (1312 -3440 147)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329487" + "plane" "(1608 -3440 147) (1608 -3456 147) (1608 -3456 224)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3428489" + side + { + "id" "329498" + "plane" "(1648 -3456 208) (1648 -3456 147) (1608 -3456 147)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329497" + "plane" "(1648 -3440 147) (1648 -3456 147) (1648 -3456 208)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0.428319 -0.903627 0 1] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329496" + "plane" "(1648 -3456 208) (1608 -3456 208) (1608 -3440 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" "329495" + "plane" "(1608 -3456 147) (1648 -3456 147) (1648 -3440 147)" + "material" "DEV/REFLECTIVITY_40B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329494" + "plane" "(1648 -3440 147) (1648 -3440 208) (1608 -3440 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329493" + "plane" "(1608 -3456 208) (1608 -3456 147) (1608 -3440 147)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "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 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3386398" + side + { + "id" "329384" + "plane" "(1056 -5536 232) (1056 -5916 176) (160 -5916 176)" + "material" "AR_DIZZY/DIZZY_TAR_ROOF_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329383" + "plane" "(1056 -5916 160) (1056 -5536 160) (160 -5536 160)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 420] 0.125" + "vaxis" "[0 1 0 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329382" + "plane" "(160 -5536 160) (160 -5536 232) (160 -5916 176)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 1 0 995.996] 0.125" + "vaxis" "[0 0 1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329381" + "plane" "(160 -5536 232) (160 -5536 160) (1056 -5536 160)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 484] 0.125" + "vaxis" "[0 0 1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329380" + "plane" "(1056 -5916 176) (1056 -5916 160) (160 -5916 160)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 420] 0.125" + "vaxis" "[0 0 -1 -999.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329379" + "plane" "(1056 -5536 232) (1056 -5536 160) (1056 -5916 160)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 1 0 484] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 125 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3372755" + side + { + "id" "329355" + "plane" "(1648 -3200 368) (1808 -3200 368) (1808 -3416 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" "329356" + "plane" "(1648 -3416 224) (1808 -3416 224) (1808 -3200 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" "329357" + "plane" "(1648 -3200 368) (1648 -3416 368) (1648 -3416 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" "329358" + "plane" "(1808 -3200 224) (1808 -3416 224) (1808 -3416 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" "329359" + "plane" "(1808 -3200 368) (1648 -3200 368) (1648 -3200 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" "329360" + "plane" "(1808 -3416 224) (1648 -3416 224) (1648 -3416 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 151 164" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3359125" + side + { + "id" "329336" + "plane" "(-1088 -3235 4) (-1088 -3168 4) (-913 -3168 4)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1088 -3235 4]" + "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 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" + } + 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 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" + } + 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" "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" "329337" + "plane" "(-1088 -3168 -5) (-1088 -3235 -5) (-913 -3235 -5)" + "material" "ADS/AD01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329338" + "plane" "(-1088 -3235 -5) (-1088 -3168 -5) (-1088 -3168 4)" + "material" "ADS/AD01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329339" + "plane" "(-913 -3168 -5) (-913 -3235 -5) (-913 -3235 4)" + "material" "ADS/AD01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329340" + "plane" "(-1088 -3168 -5) (-913 -3168 -5) (-913 -3168 4)" + "material" "ADS/AD01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329341" + "plane" "(-913 -3235 -5) (-1088 -3235 -5) (-1088 -3235 4)" + "material" "ADS/AD01" + "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 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3344917" + side + { + "id" "329306" + "plane" "(-2952 -2896 416) (-2848 -2896 416) (-2848 -2912 416)" + "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" "329307" + "plane" "(-2952 -2912 128) (-2848 -2912 128) (-2848 -2896 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" "329308" + "plane" "(-2952 -2896 416) (-2952 -2912 416) (-2952 -2912 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" "329309" + "plane" "(-2848 -2896 128) (-2848 -2912 128) (-2848 -2912 416)" + "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" "329310" + "plane" "(-2848 -2896 416) (-2952 -2896 416) (-2952 -2896 128)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329311" + "plane" "(-2848 -2912 128) (-2952 -2912 128) (-2952 -2912 416)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 152 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3344932" + side + { + "id" "329312" + "plane" "(9344.69 8207 5152) (9344.69 8901 5152) (9737 8901 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[9344.69 8207 5152]" + "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 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 -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" + "row8" "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" + } + 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 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" "10 0 0 0 0 0 0 0 0" + "row8" "5 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 0 1 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" "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" "329313" + "plane" "(9344.69 8901 5151) (9344.69 8207 5151) (9737 8207 5151)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329314" + "plane" "(9344.69 8207 5151) (9344.69 8901 5151) (9344.69 8901 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329315" + "plane" "(9737 8901 5151) (9737 8207 5151) (9737 8207 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329316" + "plane" "(9344.69 8901 5151) (9737 8901 5151) (9737 8901 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329317" + "plane" "(9737 8207 5151) (9344.69 8207 5151) (9344.69 8207 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3345063" + side + { + "id" "329318" + "plane" "(8194 8207 5152) (8194 8557 5152) (8816.69 8557 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8194 8207 5152]" + "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 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" + } + 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 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" + } + 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" "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" "329319" + "plane" "(8194 8557 5151) (8194 8207 5151) (8816.69 8207 5151)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329320" + "plane" "(8194 8207 5151) (8194 8557 5151) (8194 8557 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329321" + "plane" "(8816.69 8557 5151) (8816.69 8207 5151) (8816.69 8207 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329322" + "plane" "(8194 8557 5151) (8816.69 8557 5151) (8816.69 8557 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329323" + "plane" "(8816.69 8207 5151) (8194 8207 5151) (8194 8207 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3345302" + side + { + "id" "329330" + "plane" "(-1952 -2911.87 1) (-1456 -2911.87 1) (-1456 -3066.87 1)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1952 -3066.87 1]" + "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 1 0 0 1 0 0 0 0 0 0" + "row3" "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" + "row4" "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" + "row5" "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" + "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" + } + 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 5 5 0 0" + "row3" "0 0 0 0 0 5 0 0 0" + "row4" "0 0 0 0 0 5 5 0 0" + "row5" "0 0 0 0 0 5 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" + } + 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 255 255 255 255 255 255 255 255" + "row1" "255 0 0 0 0 0 0 0 255" + "row2" "255 0 0 255 255 0 0 0 255" + "row3" "255 0 0 255 255 0 0 255 255" + "row4" "255 0 0 255 255 255 255 255 255" + "row5" "255 255 255 255 255 255 255 0 0" + "row6" "255 255 255 255 255 255 255 255 0" + "row7" "255 255 255 255 255 0 0 0 0" + "row8" "255 255 255 255 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" "329331" + "plane" "(-1952 -3066.87 0) (-1456 -3066.87 0) (-1456 -2911.87 0)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329332" + "plane" "(-1952 -2911.87 1) (-1952 -3066.87 1) (-1952 -3066.87 0)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329333" + "plane" "(-1456 -2911.87 0) (-1456 -3066.87 0) (-1456 -3066.87 1)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329334" + "plane" "(-1456 -2911.87 1) (-1952 -2911.87 1) (-1952 -2911.87 0)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329335" + "plane" "(-1456 -3066.87 0) (-1952 -3066.87 0) (-1952 -3066.87 1)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "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 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3330558" + side + { + "id" "329009" + "plane" "(2192 -5872 48) (2184 -5864 48) (2184 -5528 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329008" + "plane" "(2192 -5520 0) (2184 -5528 0) (2184 -5864 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" "329007" + "plane" "(2192 -5872 48) (2192 -5520 48) (2192 -5520 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" "329006" + "plane" "(2192 -5520 48) (2184 -5528 48) (2184 -5528 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" "329005" + "plane" "(2184 -5864 48) (2192 -5872 48) (2192 -5872 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" "329004" + "plane" "(2184 -5528 48) (2184 -5864 48) (2184 -5864 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" + } + editor + { + "color" "0 175 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3330697" + side + { + "id" "329052" + "plane" "(-48 -6312 182) (-48 -6280 182) (-32 -6280 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329051" + "plane" "(-48 -6280 32) (-48 -6312 32) (-37 -6312 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" "329050" + "plane" "(-48 -6312 32) (-48 -6280 32) (-48 -6280 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329049" + "plane" "(-32 -6280 32) (-32 -6307 32) (-32 -6307 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -170] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329048" + "plane" "(-37 -6312 32) (-48 -6312 32) (-48 -6312 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -170] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329047" + "plane" "(-48 -6280 32) (-32 -6280 32) (-32 -6280 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -192] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329046" + "plane" "(-32 -6307 32) (-37 -6312 32) (-37 -6312 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.707107 0.707107 0 -431.19] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 112 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3330698" + side + { + "id" "329059" + "plane" "(-48 -6312 214) (-48 -6213 214) (-32 -6213 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329058" + "plane" "(-48 -6213 182) (-48 -6312 182) (-37 -6312 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329057" + "plane" "(-48 -6312 182) (-48 -6213 182) (-48 -6213 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329056" + "plane" "(-32 -6213 182) (-32 -6307 182) (-32 -6307 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329055" + "plane" "(-48 -6213 182) (-32 -6213 182) (-32 -6213 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329054" + "plane" "(-37 -6312 182) (-48 -6312 182) (-48 -6312 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329053" + "plane" "(-32 -6307 182) (-37 -6312 182) (-37 -6312 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0.707107 0.707107 0 -106.189] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3330710" + side + { + "id" "329070" + "plane" "(-49 -6324 240) (-49 -6312 240) (-37 -6312 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329069" + "plane" "(-49 -6312 4) (-49 -6324 4) (-37 -6312 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329068" + "plane" "(-49 -6324 4) (-49 -6312 4) (-49 -6312 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329067" + "plane" "(-49 -6312 4) (-37 -6312 4) (-37 -6312 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329066" + "plane" "(-37 -6312 4) (-49 -6324 4) (-49 -6324 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3330868" + side + { + "id" "329083" + "plane" "(-592 -3184 272) (-352 -3184 272) (-279 -3234 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329084" + "plane" "(-352 -3184 -16) (-592 -3184 -16) (-561 -3233 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329085" + "plane" "(-592 -3184 -16) (-592 -3184 272) (-561 -3233 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329086" + "plane" "(-279 -3234 -16) (-279 -3234 272) (-352 -3184 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329087" + "plane" "(-352 -3184 -16) (-352 -3184 272) (-592 -3184 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329088" + "plane" "(-561 -3233 -16) (-561 -3233 272) (-279 -3234 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 237 106" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3331056" + side + { + "id" "329125" + "plane" "(1684 -4216 136) (1684 -4200 136) (1797 -4200 136)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329126" + "plane" "(1684 -4200 0) (1684 -4216 0) (1797 -4216 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329127" + "plane" "(1684 -4216 0) (1684 -4200 0) (1684 -4200 136)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329128" + "plane" "(1797 -4200 0) (1797 -4216 0) (1797 -4216 136)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329129" + "plane" "(1684 -4200 0) (1797 -4200 0) (1797 -4200 136)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329130" + "plane" "(1797 -4216 0) (1684 -4216 0) (1684 -4216 136)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3331409" + side + { + "id" "329172" + "plane" "(-1048 -3208 -200) (-1056 -3208 -200) (-1056 -3144 -200)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329171" + "plane" "(-1056 -3144 -224) (-1056 -3208 -224) (-1048 -3208 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329170" + "plane" "(-1048 -3208 -224) (-1056 -3208 -224) (-1056 -3208 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 992] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329169" + "plane" "(-1056 -3208 -224) (-1056 -3144 -224) (-1056 -3144 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329168" + "plane" "(-1056 -3144 -224) (-1048 -3152 -224) (-1048 -3152 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 992] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329167" + "plane" "(-1048 -3152 -224) (-1048 -3208 -224) (-1048 -3208 -200)" + "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 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3302428" + side + { + "id" "328850" + "plane" "(2152 -4280 48) (2277 -4280 48) (2277 -4288 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328851" + "plane" "(2152 -4288 0) (2277 -4288 0) (2277 -4280 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" "328852" + "plane" "(2152 -4280 48) (2152 -4288 48) (2152 -4288 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" "328853" + "plane" "(2277 -4280 0) (2277 -4288 0) (2277 -4288 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" "328854" + "plane" "(2277 -4280 48) (2152 -4280 48) (2152 -4280 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" "328855" + "plane" "(2277 -4288 0) (2152 -4288 0) (2152 -4288 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 214 183" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3288333" + side + { + "id" "328693" + "plane" "(826 -5736 112.955) (826 -5692 112.955) (848 -5692 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328694" + "plane" "(826 -5692 7.95517) (826 -5736 7.95517) (848 -5736 7.95517)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328695" + "plane" "(826 -5736 7.95601) (826 -5692 7.95601) (826 -5692 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328696" + "plane" "(848 -5692 7.95619) (848 -5736 7.95619) (848 -5736 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328697" + "plane" "(826 -5692 7.95611) (848 -5692 7.95611) (848 -5692 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328698" + "plane" "(848 -5736 7.95609) (826 -5736 7.95609) (826 -5736 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3288334" + side + { + "id" "328710" + "plane" "(576 -5736 112.955) (576 -5692 112.955) (600 -5692 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328709" + "plane" "(576 -5692 7.95517) (576 -5736 7.95517) (600 -5736 7.95517)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328708" + "plane" "(576 -5736 7.95601) (576 -5692 7.95601) (576 -5692 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328707" + "plane" "(600 -5692 7.95619) (600 -5736 7.95619) (600 -5736 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328706" + "plane" "(576 -5692 7.95611) (600 -5692 7.95611) (600 -5692 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328705" + "plane" "(600 -5736 7.95609) (576 -5736 7.95609) (576 -5736 112.955)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 231 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3288388" + side + { + "id" "328711" + "plane" "(1800 -3136 240) (1928 -3136 240) (1928 -3144 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328712" + "plane" "(1800 -3144 16) (1928 -3144 16) (1928 -3136 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328713" + "plane" "(1800 -3136 240) (1800 -3144 240) (1800 -3144 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328714" + "plane" "(1928 -3136 16) (1928 -3144 16) (1928 -3144 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328715" + "plane" "(1928 -3136 240) (1800 -3136 240) (1800 -3136 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328716" + "plane" "(1928 -3144 16) (1800 -3144 16) (1800 -3144 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3261587" + side + { + "id" "328658" + "plane" "(1914 -4216 128) (1914 -4200 128) (2102 -4200 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328659" + "plane" "(1914 -4200 0) (1914 -4216 0) (2102 -4216 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328660" + "plane" "(1914 -4216 0) (1914 -4200 0) (1914 -4200 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328661" + "plane" "(2102 -4200 0) (2102 -4216 0) (2102 -4216 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328662" + "plane" "(1914 -4200 0) (2102 -4200 0) (2102 -4200 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328663" + "plane" "(2102 -4216 0) (1914 -4216 0) (1914 -4216 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3192714" + side + { + "id" "328057" + "plane" "(-1056 -2912 -32) (-1056 -2485 -32) (-1040 -2485 -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" "328056" + "plane" "(-1056 -2912 -200) (-1056 -2485 -200) (-1056 -2485 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 -1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328055" + "plane" "(-1040 -2896 -32) (-1040 -2485 -32) (-1040 -2485 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328054" + "plane" "(-1040 -2485 -200) (-1040 -2485 -32) (-1056 -2485 -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" "328053" + "plane" "(-1056 -2485 -200) (-1056 -2912 -200) (-1040 -2896 -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" "328052" + "plane" "(-1056 -2912 -200) (-1056 -2912 -32) (-1040 -2896 -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 242 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3192715" + side + { + "id" "328063" + "plane" "(-1040 -2896 -32) (-608 -2896 -32) (-608 -2912 -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" "328062" + "plane" "(-1056 -2912 -32) (-1056 -2912 -200) (-1040 -2896 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328061" + "plane" "(-608 -2912 -32) (-608 -2896 -32) (-608 -2896 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328060" + "plane" "(-1056 -2912 -32) (-608 -2912 -32) (-608 -2912 -200)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328059" + "plane" "(-1056 -2912 -200) (-608 -2912 -200) (-608 -2896 -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" "328058" + "plane" "(-608 -2896 -32) (-1040 -2896 -32) (-1040 -2896 -200)" + "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 242 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3070949" + side + { + "id" "327805" + "plane" "(9361.69 9200 5150) (9361.69 9583 5150) (9642.69 9583 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[9361.69 9200 5150]" + "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 0" + "row1" "0 0 -1 0 0 -1 0 0 0 0 0 -1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row2" "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" + "row3" "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" + "row4" "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" + "row5" "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" + "row6" "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" + "row7" "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" + "row8" "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" + } + distances + { + "row0" "10 10 15 5 10 5 10 5 0" + "row1" "5 10 0 5 0 0 0 0 0" + "row2" "10 5 5 0 0 0 0 0 0" + "row3" "5 0 0 0 0 0 0 0 0" + "row4" "5 5 0 0 0 0 0 0 0" + "row5" "20 0 0 0 0 0 0 0 0" + "row6" "5 10 0 0 0 0 0 0 0" + "row7" "5 5 0 0 0 0 0 0 0" + "row8" "5 5 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 0 1 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" "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" "327806" + "plane" "(9361.69 9583 5149) (9361.69 9200 5149) (9642.69 9200 5149)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327807" + "plane" "(9361.69 9200 5149) (9361.69 9583 5149) (9361.69 9583 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327808" + "plane" "(9642.69 9583 5149) (9642.69 9200 5149) (9642.69 9200 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327809" + "plane" "(9361.69 9583 5149) (9642.69 9583 5149) (9642.69 9583 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327810" + "plane" "(9642.69 9200 5149) (9361.69 9200 5149) (9361.69 9200 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3070986" + side + { + "id" "327811" + "plane" "(8835.69 9272 5150) (8835.69 9583 5150) (9231.69 9583 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8835.69 9272 5150]" + "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 0 0 0 0 0 0 -1 0 0 -1 0 0 -1 0 0 -1" + "row2" "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" + "row3" "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" + "row4" "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" + "row5" "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 -1" + "row6" "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 -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" + "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" "5 10 5 5 5 5 10 5 5" + "row1" "5 10 5 0 0 10 5 5 5" + "row2" "5 0 0 0 0 0 0 5 10" + "row3" "5 0 0 0 0 0 0 10 5" + "row4" "0 0 0 0 0 0 0 5 5" + "row5" "5 0 0 0 0 0 0 0 5" + "row6" "5 5 0 0 0 0 0 0 5" + "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 0 1 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" "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" "327812" + "plane" "(8835.69 9583 5149) (8835.69 9272 5149) (9231.69 9272 5149)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327813" + "plane" "(8835.69 9272 5149) (8835.69 9583 5149) (8835.69 9583 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327814" + "plane" "(9231.69 9583 5149) (9231.69 9272 5149) (9231.69 9272 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327815" + "plane" "(8835.69 9583 5149) (9231.69 9583 5149) (9231.69 9583 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327816" + "plane" "(9231.69 9272 5149) (8835.69 9272 5149) (8835.69 9272 5150)" + "material" "NATURE/HR_C/HR_GRASS_DIRT_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3042534" + side + { + "id" "327107" + "plane" "(160 -2896 319) (160 -2896 400) (-376 -2896 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327106" + "plane" "(-376 -2912 319) (-376 -2912 400) (160 -2912 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327105" + "plane" "(160 -2912 400) (-376 -2912 400) (-376 -2896 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" "327104" + "plane" "(-376 -2912 400) (-376 -2912 319) (-376 -2896 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327103" + "plane" "(160 -2896 400) (160 -2896 319) (160 -2912 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327102" + "plane" "(160 -2896 319) (-376 -2896 319) (-376 -2912 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3042539" + side + { + "id" "327125" + "plane" "(-376 -2896 256) (-376 -2896 208) (160 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327124" + "plane" "(160 -2912 256) (160 -2912 208) (-376 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327123" + "plane" "(160 -2896 208) (-376 -2896 208) (-376 -2912 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" "327122" + "plane" "(-376 -2912 256) (-376 -2912 208) (-376 -2896 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" "327121" + "plane" "(160 -2896 256) (160 -2896 208) (160 -2912 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" "327120" + "plane" "(160 -2912 256) (-376 -2912 256) (-376 -2896 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3042559" + side + { + "id" "327143" + "plane" "(160 -2896 256) (160 -2896 319) (-376 -2896 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327142" + "plane" "(-376 -2912 256) (-376 -2912 319) (160 -2912 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[-1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327141" + "plane" "(160 -2896 319) (160 -2896 256) (160 -2912 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" "327140" + "plane" "(-376 -2912 319) (-376 -2912 256) (-376 -2896 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327139" + "plane" "(160 -2896 256) (-376 -2896 256) (-376 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327138" + "plane" "(160 -2912 319) (-376 -2912 319) (-376 -2896 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3042604" + side + { + "id" "327156" + "plane" "(-928 -9696 -48) (-928 -6640 -48) (-448 -6640 -48)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327157" + "plane" "(-928 -6640 -80) (-928 -9696 -80) (-448 -9696 -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" "327158" + "plane" "(-928 -9696 -80) (-928 -6640 -80) (-928 -6640 -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" "327159" + "plane" "(-448 -6640 -80) (-448 -9696 -80) (-448 -9696 -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" "327160" + "plane" "(-928 -6640 -80) (-448 -6640 -80) (-448 -6640 -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" "327161" + "plane" "(-448 -9696 -80) (-928 -9696 -80) (-928 -9696 -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 144 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3042615" + side + { + "id" "327173" + "plane" "(-624 -6632 -48) (-1376 -6632 -48) (-1376 -6648 -48)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327172" + "plane" "(-1376 -6648 24) (-1376 -6648 -48) (-1376 -6632 -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" "327171" + "plane" "(-1376 -6632 24) (-1376 -6632 -48) (-624 -6632 -48)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327170" + "plane" "(-624 -6648 -48) (-1376 -6648 -48) (-1376 -6648 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327169" + "plane" "(-624 -6648 24) (-1376 -6648 24) (-1376 -6632 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327168" + "plane" "(-624 -6632 24) (-624 -6632 -48) (-624 -6648 -48)" + "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" "0 173 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3042629" + side + { + "id" "327180" + "plane" "(-656 -6632 608) (-464 -6632 608) (-464 -6640 608)" + "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" "327181" + "plane" "(-656 -6640 560) (-464 -6640 560) (-464 -6632 560)" + "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" "327182" + "plane" "(-656 -6632 608) (-656 -6640 608) (-656 -6640 560)" + "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" "327183" + "plane" "(-464 -6632 560) (-464 -6640 560) (-464 -6640 608)" + "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" "327184" + "plane" "(-464 -6632 608) (-656 -6632 608) (-656 -6632 560)" + "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" "327185" + "plane" "(-464 -6640 560) (-656 -6640 560) (-656 -6640 608)" + "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" "0 214 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3043478" + side + { + "id" "327311" + "plane" "(1040 -4208 0) (1024 -4208 0) (1024 -3760 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327310" + "plane" "(1040 -3760 -16) (1024 -3760 -16) (1024 -4208 -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" "327309" + "plane" "(1024 -4208 -16) (1024 -3760 -16) (1024 -3760 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" "327308" + "plane" "(1040 -4208 -16) (1024 -4208 -16) (1024 -4208 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" "327307" + "plane" "(1024 -3760 -16) (1040 -3760 -16) (1040 -3760 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327306" + "plane" "(1040 -3760 -16) (1040 -4208 -16) (1040 -4208 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" + } + editor + { + "color" "0 191 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3043483" + side + { + "id" "327323" + "plane" "(1024 -3760 0) (1024 -3776 0) (408 -3776 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327322" + "plane" "(408 -3760 -36) (408 -3776 -36) (1024 -3776 -36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327321" + "plane" "(1024 -3760 -36) (1024 -3776 -36) (1024 -3776 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" "327320" + "plane" "(1024 -3776 -36) (408 -3776 -36) (408 -3776 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" "327319" + "plane" "(408 -3776 -36) (408 -3760 -36) (408 -3760 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" "327318" + "plane" "(408 -3760 -36) (1024 -3760 -36) (1024 -3760 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 212 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3028949" + side + { + "id" "326731" + "plane" "(-48 -3296 -40) (-64 -3312 -40) (-32 -3312 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326730" + "plane" "(-48 -3296 -40) (-32 -3296 -40) (-32 -3296 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" "326729" + "plane" "(-64 -3312 -40) (-64 -3312 16) (-32 -3312 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" "326728" + "plane" "(-64 -3312 -40) (-48 -3296 -40) (-48 -3296 16)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 -962] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326727" + "plane" "(-64 -3312 16) (-48 -3296 16) (-32 -3296 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" "326726" + "plane" "(-32 -3296 -40) (-32 -3312 -40) (-32 -3312 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" "0 124 249" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029463" + side + { + "id" "326879" + "plane" "(640 -2128 319) (640 -2128 400) (640 -2059 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326878" + "plane" "(640 -2128 400) (640 -2128 319) (624 -2112 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326877" + "plane" "(624 -2112 400) (624 -2112 319) (624 -2059 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326876" + "plane" "(640 -2059 400) (640 -2128 400) (624 -2112 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" "326875" + "plane" "(624 -2059 400) (624 -2059 319) (640 -2059 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326874" + "plane" "(624 -2059 319) (624 -2112 319) (640 -2128 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029566" + side + { + "id" "326891" + "plane" "(640 -2059 319) (640 -2059 256) (640 -2128 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326890" + "plane" "(640 -2128 319) (640 -2128 256) (624 -2112 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" "326889" + "plane" "(624 -2112 319) (624 -2112 256) (624 -2059 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326888" + "plane" "(624 -2059 319) (624 -2059 256) (640 -2059 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326887" + "plane" "(640 -2059 319) (640 -2128 319) (624 -2112 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326886" + "plane" "(624 -2059 256) (624 -2112 256) (640 -2128 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029567" + side + { + "id" "326897" + "plane" "(640 -2059 256) (640 -2059 208) (640 -2128 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326896" + "plane" "(640 -2128 256) (640 -2128 208) (624 -2112 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" "326895" + "plane" "(624 -2112 256) (624 -2112 208) (624 -2059 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326894" + "plane" "(624 -2059 208) (624 -2112 208) (640 -2128 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" "326893" + "plane" "(624 -2059 256) (624 -2059 208) (640 -2059 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326892" + "plane" "(640 -2059 256) (640 -2128 256) (624 -2112 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029572" + side + { + "id" "326909" + "plane" "(640 -1872 208) (640 -1955 208) (640 -1955 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326908" + "plane" "(624 -1955 208) (624 -1872 208) (624 -1872 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326907" + "plane" "(624 -1872 208) (624 -1955 208) (640 -1955 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" "326906" + "plane" "(640 -1955 256) (640 -1955 208) (624 -1955 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326905" + "plane" "(624 -1872 256) (624 -1872 208) (640 -1872 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326904" + "plane" "(624 -1955 256) (624 -1872 256) (640 -1872 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029575" + side + { + "id" "326915" + "plane" "(640 -1955 319) (640 -1955 400) (640 -1872 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326914" + "plane" "(624 -1872 319) (624 -1872 400) (624 -1955 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326913" + "plane" "(624 -1955 400) (624 -1872 400) (640 -1872 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" "326912" + "plane" "(640 -1955 400) (640 -1955 319) (624 -1955 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326911" + "plane" "(624 -1872 400) (624 -1872 319) (640 -1872 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326910" + "plane" "(624 -1872 319) (624 -1955 319) (640 -1955 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029576" + side + { + "id" "326921" + "plane" "(640 -1955 256) (640 -1955 319) (640 -1872 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[0 -1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326920" + "plane" "(624 -1872 256) (624 -1872 319) (624 -1955 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326919" + "plane" "(640 -1955 319) (640 -1955 256) (624 -1955 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326918" + "plane" "(624 -1872 319) (624 -1872 256) (640 -1872 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326917" + "plane" "(624 -1872 256) (624 -1955 256) (640 -1955 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326916" + "plane" "(624 -1955 319) (624 -1872 319) (640 -1872 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029604" + side + { + "id" "326957" + "plane" "(384 -2128 256) (384 -2128 208) (384 -2112 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326956" + "plane" "(624 -2112 256) (624 -2112 208) (640 -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" "326955" + "plane" "(384 -2112 256) (384 -2112 208) (624 -2112 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326954" + "plane" "(640 -2128 256) (640 -2128 208) (384 -2128 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 582.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326953" + "plane" "(384 -2112 208) (384 -2128 208) (640 -2128 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" "326952" + "plane" "(384 -2128 256) (384 -2112 256) (624 -2112 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029607" + side + { + "id" "326963" + "plane" "(384 -2128 400) (384 -2128 319) (384 -2112 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326962" + "plane" "(624 -2112 400) (624 -2112 319) (640 -2128 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326961" + "plane" "(384 -2112 400) (384 -2112 319) (624 -2112 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326960" + "plane" "(640 -2128 400) (640 -2128 319) (384 -2128 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 582.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326959" + "plane" "(384 -2128 400) (384 -2112 400) (624 -2112 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" "326958" + "plane" "(384 -2112 319) (384 -2128 319) (640 -2128 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029608" + side + { + "id" "326969" + "plane" "(384 -2128 319) (384 -2128 256) (384 -2112 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326968" + "plane" "(624 -2112 319) (624 -2112 256) (640 -2128 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" "326967" + "plane" "(384 -2112 319) (384 -2112 256) (624 -2112 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326966" + "plane" "(640 -2128 319) (640 -2128 256) (384 -2128 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[-1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326965" + "plane" "(384 -2112 256) (384 -2128 256) (640 -2128 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326964" + "plane" "(384 -2128 319) (384 -2112 319) (624 -2112 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029612" + side + { + "id" "326975" + "plane" "(384 -2128 319) (384 -2128 400) (384 -2434 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326974" + "plane" "(400 -2128 400) (400 -2128 319) (400 -2434 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -185] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326973" + "plane" "(384 -2128 400) (384 -2128 319) (400 -2128 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326972" + "plane" "(384 -2434 400) (384 -2128 400) (400 -2128 400)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326971" + "plane" "(400 -2434 400) (400 -2434 319) (384 -2434 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326970" + "plane" "(384 -2128 319) (384 -2434 319) (400 -2434 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029616" + side + { + "id" "326987" + "plane" "(384 -2434 319) (384 -2434 256) (384 -2128 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326986" + "plane" "(400 -2128 319) (400 -2128 256) (400 -2434 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[0 -1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326985" + "plane" "(384 -2128 319) (384 -2128 256) (400 -2128 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" "326984" + "plane" "(400 -2434 319) (400 -2434 256) (384 -2434 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" "326983" + "plane" "(384 -2434 319) (384 -2128 319) (400 -2128 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326982" + "plane" "(384 -2128 256) (384 -2434 256) (400 -2434 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029617" + side + { + "id" "326993" + "plane" "(384 -2434 256) (384 -2434 208) (384 -2128 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326992" + "plane" "(400 -2128 256) (400 -2128 208) (400 -2434 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -185] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326991" + "plane" "(384 -2128 256) (384 -2128 208) (400 -2128 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" "326990" + "plane" "(384 -2128 208) (384 -2434 208) (400 -2434 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" "326989" + "plane" "(400 -2434 256) (400 -2434 208) (384 -2434 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" "326988" + "plane" "(384 -2434 256) (384 -2128 256) (400 -2128 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029624" + side + { + "id" "327005" + "plane" "(384 -2896 256) (384 -2896 208) (384 -2682 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327004" + "plane" "(400 -2682 208) (400 -2912 208) (400 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -185] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327003" + "plane" "(400 -2912 256) (400 -2912 208) (384 -2896 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" "327002" + "plane" "(384 -2682 208) (384 -2896 208) (400 -2912 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" "327001" + "plane" "(384 -2682 256) (384 -2682 208) (400 -2682 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" "327000" + "plane" "(384 -2896 256) (384 -2682 256) (400 -2682 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029639" + side + { + "id" "327023" + "plane" "(384 -2896 400) (384 -2896 319) (384 -2682 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327022" + "plane" "(400 -2912 319) (400 -2912 400) (400 -2682 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -185] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327021" + "plane" "(400 -2912 400) (400 -2912 319) (384 -2896 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327020" + "plane" "(384 -2896 400) (384 -2682 400) (400 -2682 400)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327019" + "plane" "(384 -2682 400) (384 -2682 319) (400 -2682 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327018" + "plane" "(384 -2682 319) (384 -2896 319) (400 -2912 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029640" + side + { + "id" "327029" + "plane" "(384 -2896 319) (384 -2896 256) (384 -2682 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327028" + "plane" "(400 -2912 256) (400 -2912 319) (400 -2682 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[0 -1 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327027" + "plane" "(400 -2912 319) (400 -2912 256) (384 -2896 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" "327026" + "plane" "(384 -2682 319) (384 -2682 256) (400 -2682 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" "327025" + "plane" "(384 -2682 256) (384 -2896 256) (400 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327024" + "plane" "(384 -2896 319) (384 -2682 319) (400 -2682 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029715" + side + { + "id" "327047" + "plane" "(264 -2896 319) (264 -2896 256) (384 -2896 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327046" + "plane" "(400 -2912 319) (400 -2912 256) (264 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[-1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327045" + "plane" "(384 -2896 319) (384 -2896 256) (400 -2912 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" "327044" + "plane" "(264 -2912 319) (264 -2912 256) (264 -2896 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" "327043" + "plane" "(400 -2912 319) (264 -2912 319) (264 -2896 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327042" + "plane" "(384 -2896 256) (264 -2896 256) (264 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029716" + side + { + "id" "327053" + "plane" "(264 -2896 256) (264 -2896 208) (384 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327052" + "plane" "(400 -2912 256) (400 -2912 208) (264 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327051" + "plane" "(384 -2896 208) (264 -2896 208) (264 -2912 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" "327050" + "plane" "(384 -2896 256) (384 -2896 208) (400 -2912 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" "327049" + "plane" "(264 -2912 256) (264 -2912 208) (264 -2896 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" "327048" + "plane" "(400 -2912 256) (264 -2912 256) (264 -2896 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029733" + side + { + "id" "327065" + "plane" "(-3384 -2912 256) (-3384 -2912 208) (-3384 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 454.99] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327064" + "plane" "(-3384 -2896 256) (-3384 -2896 208) (-2952 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327063" + "plane" "(-2952 -2912 208) (-3384 -2912 208) (-3384 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327062" + "plane" "(-2952 -2896 208) (-3384 -2896 208) (-3384 -2912 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" "327061" + "plane" "(-2952 -2896 256) (-2952 -2896 208) (-2952 -2912 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" "327060" + "plane" "(-2952 -2912 256) (-3384 -2912 256) (-3384 -2896 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029740" + side + { + "id" "327071" + "plane" "(-3384 -2912 400) (-3384 -2912 319) (-3384 -2896 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 454.99] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327070" + "plane" "(-3384 -2896 400) (-3384 -2896 319) (-2952 -2896 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327069" + "plane" "(-3384 -2912 319) (-3384 -2912 400) (-2952 -2912 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327068" + "plane" "(-2952 -2912 400) (-3384 -2912 400) (-3384 -2896 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" "327067" + "plane" "(-2952 -2896 400) (-2952 -2896 319) (-2952 -2912 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327066" + "plane" "(-2952 -2896 319) (-3384 -2896 319) (-3384 -2912 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029741" + side + { + "id" "327077" + "plane" "(-3384 -2912 319) (-3384 -2912 256) (-3384 -2896 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 454.99] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327076" + "plane" "(-3384 -2896 319) (-3384 -2896 256) (-2952 -2896 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327075" + "plane" "(-3384 -2912 256) (-3384 -2912 319) (-2952 -2912 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[-1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327074" + "plane" "(-2952 -2896 319) (-2952 -2896 256) (-2952 -2912 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" "327073" + "plane" "(-2952 -2896 256) (-3384 -2896 256) (-3384 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327072" + "plane" "(-2952 -2912 319) (-3384 -2912 319) (-3384 -2896 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029747" + side + { + "id" "327083" + "plane" "(-1851 -2896 319) (-1851 -2896 400) (-2848 -2896 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327082" + "plane" "(-2848 -2912 319) (-2848 -2912 400) (-1851 -2912 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327081" + "plane" "(-1851 -2912 400) (-2848 -2912 400) (-2848 -2896 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" "327080" + "plane" "(-1851 -2896 400) (-1851 -2896 319) (-1851 -2912 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327079" + "plane" "(-2848 -2912 400) (-2848 -2912 319) (-2848 -2896 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327078" + "plane" "(-1851 -2896 319) (-2848 -2896 319) (-2848 -2912 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029771" + side + { + "id" "327095" + "plane" "(-2848 -2896 319) (-2848 -2896 256) (-1851 -2896 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327094" + "plane" "(-1851 -2912 319) (-1851 -2912 256) (-2848 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001_BLUE" + "uaxis" "[-1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327093" + "plane" "(-1851 -2896 319) (-1851 -2896 256) (-1851 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327092" + "plane" "(-2848 -2912 319) (-2848 -2912 256) (-2848 -2896 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" "327091" + "plane" "(-1851 -2912 319) (-2848 -2912 319) (-2848 -2896 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327090" + "plane" "(-1851 -2896 256) (-2848 -2896 256) (-2848 -2912 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029772" + side + { + "id" "327101" + "plane" "(-2848 -2896 256) (-2848 -2896 208) (-1851 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327100" + "plane" "(-1851 -2912 256) (-1851 -2912 208) (-2848 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327099" + "plane" "(-1851 -2896 208) (-2848 -2896 208) (-2848 -2912 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" "327098" + "plane" "(-1851 -2896 256) (-1851 -2896 208) (-1851 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327097" + "plane" "(-2848 -2912 256) (-2848 -2912 208) (-2848 -2896 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" "327096" + "plane" "(-1851 -2912 256) (-2848 -2912 256) (-2848 -2896 256)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015320" + side + { + "id" "326185" + "plane" "(0 -4752 160) (-80 -4752 160) (-80 -4672 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326184" + "plane" "(0 -4672 16) (0 -4672 160) (-80 -4672 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326183" + "plane" "(-80 -4752 16) (-80 -4752 160) (0 -4752 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" "326182" + "plane" "(-80 -4672 16) (-80 -4672 160) (-80 -4752 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326181" + "plane" "(0 -4752 16) (0 -4752 160) (0 -4672 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326180" + "plane" "(0 -4672 16) (-80 -4672 16) (-80 -4752 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" + } + editor + { + "color" "0 180 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015321" + side + { + "id" "326191" + "plane" "(0 -4672 0) (-80 -4672 0) (-80 -4752 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326190" + "plane" "(-80 -4672 0) (0 -4672 0) (0 -4672 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326189" + "plane" "(0 -4752 0) (-80 -4752 0) (-80 -4752 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" "326188" + "plane" "(-80 -4752 0) (-80 -4672 0) (-80 -4672 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326187" + "plane" "(0 -4672 0) (0 -4752 0) (0 -4752 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326186" + "plane" "(0 -4752 16) (-80 -4752 16) (-80 -4672 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" + } + editor + { + "color" "0 180 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015327" + side + { + "id" "326197" + "plane" "(0 -4752 0) (-136 -4752 0) (-136 -4768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326196" + "plane" "(-17 -4768 16) (-17 -4768 0) (-136 -4768 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326195" + "plane" "(-136 -4752 16) (-136 -4752 0) (0 -4752 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326194" + "plane" "(-136 -4768 16) (-136 -4768 0) (-136 -4752 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -192] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326193" + "plane" "(0 -4752 16) (0 -4752 0) (-17 -4768 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326192" + "plane" "(-17 -4768 16) (-136 -4768 16) (-136 -4752 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" + } + editor + { + "color" "0 180 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015328" + side + { + "id" "326203" + "plane" "(-17 -4768 160) (-136 -4768 160) (-136 -4752 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326202" + "plane" "(-136 -4768 16) (-136 -4768 160) (-17 -4768 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326201" + "plane" "(0 -4752 16) (0 -4752 160) (-136 -4752 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[1 0 0 16] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326200" + "plane" "(-136 -4752 16) (-136 -4752 160) (-136 -4768 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -192] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326199" + "plane" "(-17 -4768 16) (-17 -4768 160) (0 -4752 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326198" + "plane" "(0 -4752 16) (-136 -4752 16) (-136 -4768 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" + } + editor + { + "color" "0 180 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015450" + side + { + "id" "326317" + "plane" "(-384 -4768 160) (-416 -4768 160) (-416 -4752 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326316" + "plane" "(-416 -4752 16) (-416 -4752 160) (-416 -4768 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326315" + "plane" "(-416 -4768 16) (-416 -4768 160) (-384 -4768 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326314" + "plane" "(-384 -4752 16) (-384 -4752 160) (-416 -4752 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[1 0 0 16] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326313" + "plane" "(-384 -4768 16) (-384 -4768 160) (-384 -4752 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -128] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326312" + "plane" "(-384 -4752 16) (-416 -4752 16) (-416 -4768 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" + } + editor + { + "color" "0 180 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015451" + side + { + "id" "326323" + "plane" "(-384 -4752 0) (-416 -4752 0) (-416 -4768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326322" + "plane" "(-416 -4768 16) (-416 -4768 0) (-416 -4752 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326321" + "plane" "(-384 -4768 16) (-384 -4768 0) (-416 -4768 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326320" + "plane" "(-416 -4752 16) (-416 -4752 0) (-384 -4752 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326319" + "plane" "(-384 -4752 16) (-384 -4752 0) (-384 -4768 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -128] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326318" + "plane" "(-384 -4768 16) (-416 -4768 16) (-416 -4752 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" + } + editor + { + "color" "0 180 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015490" + side + { + "id" "326407" + "plane" "(-656 -4016 -16) (-656 -4048 -16) (-640 -4048 -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" "326406" + "plane" "(-656 -4048 -16) (-656 -4016 -16) (-656 -4016 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326405" + "plane" "(-640 -4016 -16) (-640 -4048 -16) (-640 -4048 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326404" + "plane" "(-656 -4016 -16) (-640 -4016 -16) (-640 -4016 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" "326403" + "plane" "(-640 -4048 -16) (-656 -4048 -16) (-656 -4048 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -127.992] 0.125" + "vaxis" "[1 0 0 62.9985] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326402" + "plane" "(-656 -4048 48) (-656 -4016 48) (-640 -4016 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 142 215" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015491" + side + { + "id" "326413" + "plane" "(-656 -4048 240) (-656 -4016 240) (-640 -4016 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" "326412" + "plane" "(-656 -4016 48) (-656 -4016 240) (-656 -4048 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[0 1 0 251.43] 0.125" + "vaxis" "[0 0 -1 350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326411" + "plane" "(-640 -4048 48) (-640 -4048 240) (-640 -4016 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326410" + "plane" "(-640 -4016 48) (-640 -4016 240) (-656 -4016 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" "326409" + "plane" "(-656 -4048 48) (-656 -4048 240) (-640 -4048 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -127.992] 0.125" + "vaxis" "[1 0 0 62.9985] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326408" + "plane" "(-656 -4016 48) (-656 -4048 48) (-640 -4048 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 142 215" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015492" + side + { + "id" "326420" + "plane" "(-651 -4000 -16) (-656 -4005 -16) (-656 -4016 -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" "326419" + "plane" "(-656 -4016 -16) (-656 -4005 -16) (-656 -4005 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326418" + "plane" "(-651 -4000 -16) (-608 -4000 -16) (-608 -4000 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326417" + "plane" "(-608 -4016 -16) (-656 -4016 -16) (-656 -4016 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326416" + "plane" "(-656 -4005 -16) (-651 -4000 -16) (-651 -4000 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326415" + "plane" "(-608 -4000 -16) (-608 -4016 -16) (-608 -4016 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326414" + "plane" "(-656 -4016 48) (-656 -4005 48) (-651 -4000 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 154 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015493" + side + { + "id" "326427" + "plane" "(-656 -4016 48) (-656 -4005 48) (-656 -4005 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[0 1 0 251.43] 0.125" + "vaxis" "[0 0 -1 350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326426" + "plane" "(-608 -4000 240) (-651 -4000 240) (-651 -4000 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[1 0 0 100] 0.125" + "vaxis" "[0 0 -1 350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326425" + "plane" "(-656 -4016 240) (-608 -4016 240) (-608 -4016 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326424" + "plane" "(-656 -4016 240) (-656 -4005 240) (-651 -4000 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.974184 0 0.225753 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326423" + "plane" "(-656 -4005 48) (-651 -4000 48) (-651 -4000 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[0.707107 0.707107 0 722.027] 0.125" + "vaxis" "[0 0 -1 350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326422" + "plane" "(-608 -4000 48) (-608 -4016 48) (-608 -4016 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326421" + "plane" "(-651 -4000 48) (-656 -4005 48) (-656 -4016 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 154 103" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015510" + side + { + "id" "326445" + "plane" "(-64 -3760 -40) (-64 -3832 -40) (-32 -3832 -40)" + "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" "326444" + "plane" "(-64 -3832 48) (-64 -3832 -40) (-64 -3760 -40)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 1 0 -962] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326443" + "plane" "(-32 -3760 48) (-32 -3760 -40) (-32 -3832 -40)" + "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" "326442" + "plane" "(-32 -3832 48) (-32 -3832 -40) (-64 -3832 -40)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[1 0 0 -962] 0.25" + "vaxis" "[0 0 -1 -479] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326441" + "plane" "(-64 -3760 48) (-64 -3760 -40) (-32 -3760 -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" "326440" + "plane" "(-64 -3832 48) (-64 -3760 48) (-32 -3760 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 212 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015594" + side + { + "id" "326563" + "plane" "(320 -3312 -40) (320 -3424 -40) (352 -3424 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326562" + "plane" "(320 -3424 31) (320 -3424 -40) (320 -3312 -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" "326561" + "plane" "(352 -3312 31) (352 -3312 -40) (352 -3424 -40)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A" + "uaxis" "[0 0 1 -963] 0.25" + "vaxis" "[0 1 0 -479] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326560" + "plane" "(320 -3312 31) (320 -3312 -40) (352 -3312 -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" "326559" + "plane" "(352 -3424 31) (352 -3424 -40) (320 -3424 -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" "326558" + "plane" "(320 -3424 31) (320 -3312 31) (352 -3312 31)" + "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 111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002181" + side + { + "id" "326024" + "plane" "(-768 -2896 416) (-376 -2896 416) (-376 -2912 416)" + "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" "326025" + "plane" "(-768 -2912 208) (-376 -2912 208) (-376 -2896 208)" + "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" "326026" + "plane" "(-768 -2896 416) (-768 -2912 416) (-768 -2912 208)" + "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" "326027" + "plane" "(-376 -2896 208) (-376 -2912 208) (-376 -2912 416)" + "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" "326028" + "plane" "(-376 -2896 416) (-768 -2896 416) (-768 -2896 208)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326029" + "plane" "(-376 -2912 208) (-768 -2912 208) (-768 -2912 416)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "groupid" "7163556" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002225" + side + { + "id" "326041" + "plane" "(3776 -2176 -48) (3776 -2352 -48) (3808 -2352 -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" "326040" + "plane" "(3776 -2352 -48) (3776 -2176 -48) (3776 -2176 220)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 -1 0 235.117] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326039" + "plane" "(3808 -2176 220) (3808 -2176 -48) (3808 -2352 -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" "326038" + "plane" "(3776 -2176 220) (3776 -2176 -48) (3808 -2176 -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" "326037" + "plane" "(3776 -2352 220) (3776 -2176 220) (3808 -2176 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326036" + "plane" "(3808 -2352 220) (3808 -2352 -48) (3776 -2352 -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 104 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002230" + side + { + "id" "326047" + "plane" "(3776 -2792 -48) (3776 -4080 -48) (3808 -4112 -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" "326046" + "plane" "(3776 -4080 220) (3776 -4080 -48) (3776 -2792 -48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 -1 0 235.117] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326045" + "plane" "(3808 -2792 -48) (3808 -4112 -48) (3808 -4112 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" + } + side + { + "id" "326044" + "plane" "(3808 -4112 220) (3808 -4112 -48) (3776 -4080 -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" "326043" + "plane" "(3776 -4080 220) (3776 -2792 220) (3808 -2792 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326042" + "plane" "(3776 -2792 220) (3776 -2792 -48) (3808 -2792 -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 104 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002290" + side + { + "id" "326059" + "plane" "(3776 -2352 168) (3776 -2352 220) (3776 -2792 220)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 -1 0 235.117] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326058" + "plane" "(3808 -2792 168) (3808 -2792 220) (3808 -2352 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" + } + side + { + "id" "326057" + "plane" "(3776 -2792 220) (3776 -2352 220) (3808 -2352 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326056" + "plane" "(3776 -2352 220) (3776 -2352 168) (3808 -2352 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" "326055" + "plane" "(3808 -2792 220) (3808 -2792 168) (3776 -2792 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" "326054" + "plane" "(3776 -2352 168) (3776 -2792 168) (3808 -2792 168)" + "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 104 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002291" + side + { + "id" "326065" + "plane" "(3776 -2352 -48) (3776 -2792 -48) (3808 -2792 -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" "326064" + "plane" "(3776 -2792 -48) (3776 -2352 -48) (3776 -2352 168)" + "material" "METAL/METALSHUTTERS001A" + "uaxis" "[0 1 0 175] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326063" + "plane" "(3808 -2352 -48) (3808 -2792 -48) (3808 -2792 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" "326062" + "plane" "(3776 -2352 168) (3776 -2352 -48) (3808 -2352 -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" "326061" + "plane" "(3808 -2792 168) (3808 -2792 -48) (3776 -2792 -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" "326060" + "plane" "(3776 -2792 168) (3776 -2352 168) (3808 -2352 168)" + "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 104 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002585" + side + { + "id" "326137" + "plane" "(-40 -5272 23) (-40 -5200 23) (184 -5200 23)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326136" + "plane" "(-40 -5200 1) (-40 -5272 1) (184 -5272 1)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326135" + "plane" "(-40 -5272 1) (-40 -5200 1) (-40 -5200 23)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326134" + "plane" "(184 -5200 1) (184 -5272 1) (184 -5272 23)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326133" + "plane" "(184 -5272 1) (-40 -5272 1) (-40 -5272 23)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326132" + "plane" "(-40 -5200 1) (184 -5200 1) (184 -5200 23)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "groupid" "3853900" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988895" + side + { + "id" "325759" + "plane" "(-3384 -2896 400) (-2952 -2896 400) (-2952 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[-1 0 0 -447.997] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325758" + "plane" "(-2952 -2912 400) (-3384 -2912 400) (-3384 -2912 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325757" + "plane" "(-2952 -2912 416) (-3384 -2912 416) (-3384 -2896 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" "325756" + "plane" "(-2952 -2896 400) (-3384 -2896 400) (-3384 -2912 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" "325755" + "plane" "(-3384 -2912 416) (-3384 -2912 400) (-3384 -2896 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 454.99] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325754" + "plane" "(-2952 -2896 416) (-2952 -2896 400) (-2952 -2912 400)" + "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 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988896" + side + { + "id" "325765" + "plane" "(-2848 -2896 400) (-1851 -2896 400) (-1851 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[-1 0 0 -447.997] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325764" + "plane" "(-1851 -2912 400) (-2848 -2912 400) (-2848 -2912 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325763" + "plane" "(-1851 -2912 416) (-2848 -2912 416) (-2848 -2896 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" "325762" + "plane" "(-1851 -2896 400) (-2848 -2896 400) (-2848 -2912 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" "325761" + "plane" "(-1851 -2896 416) (-1851 -2896 400) (-1851 -2912 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325760" + "plane" "(-2848 -2912 416) (-2848 -2912 400) (-2848 -2896 400)" + "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 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988901" + side + { + "id" "325795" + "plane" "(-2952 -2896 128) (-3384 -2896 128) (-3384 -2912 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" "325794" + "plane" "(-3384 -2912 192) (-3384 -2912 128) (-3384 -2896 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" "325793" + "plane" "(-3384 -2896 192) (-3384 -2896 128) (-2952 -2896 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325792" + "plane" "(-2952 -2912 128) (-3384 -2912 128) (-3384 -2912 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325791" + "plane" "(-2952 -2912 192) (-3384 -2912 192) (-3384 -2896 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" "325790" + "plane" "(-2952 -2896 192) (-2952 -2896 128) (-2952 -2912 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 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988902" + side + { + "id" "325801" + "plane" "(-2328 -2896 128) (-2848 -2896 128) (-2848 -2912 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" "325800" + "plane" "(-2848 -2896 128) (-2328 -2896 128) (-2328 -2896 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325799" + "plane" "(-2328 -2912 128) (-2848 -2912 128) (-2848 -2912 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325798" + "plane" "(-2328 -2912 192) (-2848 -2912 192) (-2848 -2896 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" "325797" + "plane" "(-2328 -2896 192) (-2328 -2896 128) (-2328 -2912 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" "325796" + "plane" "(-2848 -2912 192) (-2848 -2912 128) (-2848 -2896 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 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988903" + side + { + "id" "325807" + "plane" "(-2952 -2912 208) (-3384 -2912 208) (-3384 -2896 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" "325806" + "plane" "(-3384 -2896 192) (-3384 -2896 208) (-3384 -2912 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" "325805" + "plane" "(-2952 -2896 208) (-3384 -2896 208) (-3384 -2896 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325804" + "plane" "(-3384 -2912 192) (-3384 -2912 208) (-2952 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325803" + "plane" "(-2952 -2896 192) (-3384 -2896 192) (-3384 -2912 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" "325802" + "plane" "(-2952 -2912 192) (-2952 -2912 208) (-2952 -2896 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 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988904" + side + { + "id" "325813" + "plane" "(-1851 -2912 208) (-2848 -2912 208) (-2848 -2896 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" "325812" + "plane" "(-1851 -2896 192) (-1851 -2896 208) (-2848 -2896 208)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325811" + "plane" "(-2848 -2912 208) (-1851 -2912 208) (-1851 -2912 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325810" + "plane" "(-1851 -2912 192) (-1851 -2912 208) (-1851 -2896 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" "325809" + "plane" "(-1851 -2896 192) (-2848 -2896 192) (-2848 -2912 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" "325808" + "plane" "(-2848 -2896 192) (-2848 -2896 208) (-2848 -2912 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 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2976000" + side + { + "id" "325514" + "plane" "(-64 -4048 240) (368 -4048 240) (368 -4064 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" "325515" + "plane" "(-64 -4064 176) (368 -4064 176) (368 -4048 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" "325516" + "plane" "(-64 -4048 240) (-64 -4064 240) (-64 -4064 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" "325517" + "plane" "(368 -4048 176) (368 -4064 176) (368 -4064 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" "325518" + "plane" "(368 -4048 240) (-64 -4048 240) (-64 -4048 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" "325519" + "plane" "(368 -4064 176) (-64 -4064 176) (-64 -4064 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" "0 151 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2910860" + side + { + "id" "325304" + "plane" "(1548 -3424 147) (2056 -3424 147) (2056 -3456 147)" + "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" "325305" + "plane" "(1548 -3456 0) (2056 -3456 0) (2056 -3424 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" "325306" + "plane" "(1548 -3424 147) (1548 -3456 147) (1548 -3456 0)" + "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" "325307" + "plane" "(2056 -3424 0) (2056 -3456 0) (2056 -3456 147)" + "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" "325308" + "plane" "(2056 -3424 147) (1548 -3424 147) (1548 -3424 0)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325309" + "plane" "(2056 -3456 0) (1548 -3456 0) (1548 -3456 147)" + "material" "TOOLS/TOOLSHINT" + "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 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2910980" + side + { + "id" "325352" + "plane" "(384 -3760 224) (808 -3760 224) (808 -3776 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" "325353" + "plane" "(384 -3776 208) (808 -3776 208) (808 -3760 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" "325354" + "plane" "(384 -3760 208) (384 -3760 224) (384 -3776 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" "325355" + "plane" "(808 -3776 208) (808 -3776 224) (808 -3760 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" "325356" + "plane" "(808 -3760 208) (808 -3760 224) (384 -3760 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" "325357" + "plane" "(384 -3776 208) (384 -3776 224) (808 -3776 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 247 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2885589" + side + { + "id" "325183" + "plane" "(1520 -2620 16) (1744 -2620 16) (1744 -2879 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325184" + "plane" "(1520 -2879 -40) (1744 -2879 -40) (1744 -2620 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325185" + "plane" "(1520 -2620 16) (1520 -2879 16) (1520 -2879 -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" "325186" + "plane" "(1744 -2620 -40) (1744 -2879 -40) (1744 -2879 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" "325187" + "plane" "(1744 -2620 16) (1520 -2620 16) (1520 -2620 -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" "325188" + "plane" "(1744 -2879 -40) (1520 -2879 -40) (1520 -2879 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 212 249" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2885605" + side + { + "id" "325201" + "plane" "(1632 -2620 16) (1632 -2609 16) (1696 -2560 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325200" + "plane" "(1632 -2609 -40) (1632 -2620 -40) (1744 -2620 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325199" + "plane" "(1632 -2620 -40) (1632 -2609 -40) (1632 -2609 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" "325198" + "plane" "(1744 -2560 -40) (1744 -2620 -40) (1744 -2620 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" "325197" + "plane" "(1696 -2560 -40) (1744 -2560 -40) (1744 -2560 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" "325196" + "plane" "(1744 -2620 -40) (1632 -2620 -40) (1632 -2620 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" "325195" + "plane" "(1632 -2609 -40) (1696 -2560 -40) (1696 -2560 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 166 207" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871470" + side + { + "id" "324784" + "plane" "(2560 -2944 -16) (2560 -2728 -16) (2568 -2728 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324783" + "plane" "(2560 -2728 -48) (2560 -2944 -48) (2568 -2936 -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" "324782" + "plane" "(2560 -2944 -48) (2560 -2728 -48) (2560 -2728 -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" "324781" + "plane" "(2568 -2936 -48) (2560 -2944 -48) (2560 -2944 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324780" + "plane" "(2568 -2728 -48) (2568 -2936 -48) (2568 -2936 -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" "324779" + "plane" "(2560 -2728 -48) (2568 -2728 -48) (2568 -2728 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 197 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871524" + side + { + "id" "324822" + "plane" "(-176 -4000 160) (-176 -4000 240) (-608 -4000 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324821" + "plane" "(-608 -4016 160) (-608 -4016 240) (-176 -4016 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324820" + "plane" "(-176 -4016 240) (-608 -4016 240) (-608 -4000 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.996834 0 0.0795068 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324819" + "plane" "(-608 -4016 240) (-608 -4016 160) (-608 -4000 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" "324818" + "plane" "(-176 -4000 240) (-176 -4000 160) (-176 -4016 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" "324817" + "plane" "(-176 -4000 160) (-608 -4000 160) (-608 -4016 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -24] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 154 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871531" + side + { + "id" "324840" + "plane" "(-176 -4000 -15.7596) (-608 -4000 -16) (-608 -4016 -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" "324839" + "plane" "(-608 -4000 40) (-608 -4000 -16) (-176 -4000 -15.7581)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324838" + "plane" "(-176 -4016 40) (-176 -4016 -15.7581) (-608 -4016 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324837" + "plane" "(-608 -4016 40) (-608 -4016 -16) (-608 -4000 -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" "324836" + "plane" "(-176 -4000 40) (-176 -4000 -15.7573) (-176 -4016 -15.7573)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324835" + "plane" "(-608 -4000 40) (-176 -4000 40) (-176 -4016 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 154 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871543" + side + { + "id" "324846" + "plane" "(-608 -4000 160) (-608 -4000 40) (-176 -4000 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -61] 0.125" + "vaxis" "[0 0 -1 53] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324845" + "plane" "(-608 -4008 40) (-608 -4000 40) (-608 -4000 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324844" + "plane" "(-176 -4000 160) (-176 -4000 40) (-176 -4008 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324843" + "plane" "(-608 -4008 160) (-608 -4000 160) (-176 -4000 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324842" + "plane" "(-176 -4000 40) (-608 -4000 40) (-608 -4008 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324841" + "plane" "(-176 -4008 160) (-176 -4008 40) (-608 -4008 40)" + "material" "TOOLS/TOOLSCLIP" + "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 103" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871547" + side + { + "id" "324864" + "plane" "(-608 -4000 160) (-608 -4000 40) (-176 -4000 40)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 -61] 0.125" + "vaxis" "[0 0 -1 53] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324863" + "plane" "(-608 -4008 40) (-608 -4000 40) (-608 -4000 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" "324862" + "plane" "(-176 -4000 160) (-176 -4000 40) (-176 -4008 40)" + "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" "324861" + "plane" "(-608 -4008 160) (-608 -4000 160) (-176 -4000 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" "324860" + "plane" "(-176 -4000 40) (-608 -4000 40) (-608 -4008 40)" + "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" "324859" + "plane" "(-176 -4008 160) (-176 -4008 40) (-608 -4008 40)" + "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 154 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871574" + side + { + "id" "324900" + "plane" "(-656 -4560 240) (-656 -4048 240) (-640 -4048 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" "324899" + "plane" "(-656 -4048 160) (-656 -4048 240) (-656 -4560 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 369.21] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324898" + "plane" "(-640 -4560 160) (-640 -4560 240) (-640 -4048 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324897" + "plane" "(-640 -4048 160) (-640 -4048 240) (-656 -4048 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" "324896" + "plane" "(-656 -4560 160) (-656 -4560 240) (-640 -4560 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" "324895" + "plane" "(-656 -4048 160) (-656 -4560 160) (-640 -4560 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -231.988] 0.125" + "vaxis" "[1 0 0 62.9985] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 183 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871581" + side + { + "id" "324918" + "plane" "(-656 -4048 -16) (-656 -4344 -16) (-640 -4344 -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" "324917" + "plane" "(-656 -4344 40) (-656 -4344 -16) (-656 -4048 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324916" + "plane" "(-640 -4048 40) (-640 -4048 -16) (-640 -4344 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324915" + "plane" "(-656 -4048 40) (-656 -4048 -16) (-640 -4048 -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" "324914" + "plane" "(-640 -4344 40) (-640 -4344 -16) (-656 -4344 -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" "324913" + "plane" "(-656 -4344 40) (-656 -4048 40) (-640 -4048 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[1 0 0 63] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 183 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871614" + side + { + "id" "324946" + "plane" "(-656 -4560 160) (-656 -4560 40) (-656 -4048 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 49.21] 0.125" + "vaxis" "[0 0 -1 53] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324945" + "plane" "(-656 -4048 160) (-656 -4048 40) (-648 -4048 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324944" + "plane" "(-648 -4560 40) (-656 -4560 40) (-656 -4560 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324943" + "plane" "(-648 -4560 160) (-656 -4560 160) (-656 -4048 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324942" + "plane" "(-648 -4048 40) (-656 -4048 40) (-656 -4560 40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324941" + "plane" "(-648 -4048 160) (-648 -4048 40) (-648 -4560 40)" + "material" "TOOLS/TOOLSCLIP" + "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 212" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871622" + side + { + "id" "324964" + "plane" "(-656 -4560 160) (-656 -4560 40) (-656 -4048 40)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 -61] 0.125" + "vaxis" "[0 0 -1 53] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324963" + "plane" "(-656 -4048 160) (-656 -4048 40) (-648 -4048 40)" + "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" "324962" + "plane" "(-648 -4560 40) (-656 -4560 40) (-656 -4560 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" "324961" + "plane" "(-648 -4560 160) (-656 -4560 160) (-656 -4048 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" "324960" + "plane" "(-648 -4048 40) (-656 -4048 40) (-656 -4560 40)" + "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" "324959" + "plane" "(-648 -4048 160) (-648 -4048 40) (-648 -4560 40)" + "material" "TOOLS/TOOLSSKIP" + "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 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871635" + side + { + "id" "324977" + "plane" "(-1440 -2966 36) (-1440 -2912 36) (-1104 -2912 36)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1440 -2966 36]" + "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 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" + } + 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 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" + } + 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 255 100 200 0 150 0 0 0" + "row1" "255 255 255 255 0 255 50 0 0" + "row2" "255 150 0 200 0 175 0 0 0" + "row3" "255 0 0 0 0 50 0 0 0" + "row4" "200 0 0 0 0 0 0 0 0" + "row5" "75 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" "324978" + "plane" "(-1440 -2912 29) (-1440 -2966 29) (-1104 -2966 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324979" + "plane" "(-1440 -2966 29) (-1440 -2912 29) (-1440 -2912 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324980" + "plane" "(-1104 -2912 29) (-1104 -2966 29) (-1104 -2966 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324981" + "plane" "(-1440 -2912 29) (-1104 -2912 29) (-1104 -2912 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324982" + "plane" "(-1104 -2966 29) (-1440 -2966 29) (-1440 -2966 36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2871848" + side + { + "id" "324994" + "plane" "(1472 -3192 368) (1472 -2880 368) (1792 -2880 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324993" + "plane" "(1472 -3192 352) (1792 -3192 352) (1792 -2880 352)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324992" + "plane" "(1472 -2880 352) (1472 -2880 368) (1472 -3192 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324991" + "plane" "(1472 -3192 352) (1472 -3192 368) (1792 -3192 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324990" + "plane" "(1792 -3192 352) (1792 -3192 368) (1792 -2880 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" "324989" + "plane" "(1792 -2880 352) (1792 -2880 368) (1472 -2880 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 248 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2872418" + side + { + "id" "325123" + "plane" "(1729.13 -2555.55 368) (1792 -2544 368) (1792 -2880 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325122" + "plane" "(1792 -2544 352) (1729.14 -2555.54 352) (1688 -2572 352)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325121" + "plane" "(1729.14 -2555.54 352) (1792 -2544 352) (1792 -2544 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" "325120" + "plane" "(1792 -2544 352) (1792 -2880 352) (1792 -2880 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" "325119" + "plane" "(1792 -2880 352) (1520 -2880 352) (1519.98 -2880 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" "325118" + "plane" "(1520 -2880 352) (1526 -2840.08 352) (1525.91 -2840.55 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" "325117" + "plane" "(1526 -2840.1 352) (1540 -2771.96 352) (1540 -2771.98 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" "325116" + "plane" "(1540 -2771.97 352) (1565.98 -2708.02 352) (1566 -2708 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" "325115" + "plane" "(1565.99 -2708 352) (1574.1 -2693.9 352) (1574.12 -2693.86 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" "325114" + "plane" "(1574.12 -2693.87 352) (1600 -2652 352) (1600 -2652 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" "325113" + "plane" "(1600 -2652 352) (1640 -2606 352) (1640 -2606 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" "325112" + "plane" "(1640 -2606 352) (1688 -2572 352) (1687.99 -2572 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" "325111" + "plane" "(1688 -2572 352) (1729.14 -2555.54 352) (1729.14 -2555.54 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 248 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2872603" + side + { + "id" "325141" + "plane" "(-152 -3322 272) (-64 -3322 272) (-64 -3328 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325142" + "plane" "(-152 -3328 -16) (-64 -3328 -16) (-64 -3322 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325143" + "plane" "(-152 -3322 272) (-152 -3328 272) (-152 -3328 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325144" + "plane" "(-64 -3322 -16) (-64 -3328 -16) (-64 -3328 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325145" + "plane" "(-64 -3322 272) (-152 -3322 272) (-152 -3322 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325146" + "plane" "(-64 -3328 -16) (-152 -3328 -16) (-152 -3328 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 117" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2856932" + side + { + "id" "324682" + "plane" "(2478 -2184 -16) (2488 -2194 -16) (2488 -2560 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -1681] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324681" + "plane" "(2478 -2560 -48) (2488 -2560 -48) (2488 -2194 -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" "324680" + "plane" "(2478 -2184 -48) (2478 -2184 -16) (2478 -2560 -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" "324679" + "plane" "(2488 -2194 -48) (2488 -2194 -16) (2478 -2184 -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" "324678" + "plane" "(2478 -2560 -48) (2478 -2560 -16) (2488 -2560 -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" "324677" + "plane" "(2488 -2560 -48) (2488 -2560 -16) (2488 -2194 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2856952" + side + { + "id" "324694" + "plane" "(3776 -2184 -16) (3766 -2194 -16) (2488 -2194 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324693" + "plane" "(3766 -2194 -48) (3776 -2184 -48) (2478 -2184 -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" "324692" + "plane" "(2478 -2184 -16) (2488 -2194 -16) (2488 -2194 -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" "324691" + "plane" "(3766 -2194 -16) (3776 -2184 -16) (3776 -2184 -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" "324690" + "plane" "(3776 -2184 -16) (2478 -2184 -16) (2478 -2184 -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" "324689" + "plane" "(2488 -2194 -16) (3766 -2194 -16) (3766 -2194 -48)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2856960" + side + { + "id" "324706" + "plane" "(3776 -2184 -16) (3776 -2368 -16) (3766 -2368 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324705" + "plane" "(3776 -2368 -48) (3776 -2184 -48) (3766 -2194 -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" "324704" + "plane" "(3776 -2368 -48) (3776 -2368 -16) (3776 -2184 -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" "324703" + "plane" "(3766 -2368 -48) (3766 -2368 -16) (3776 -2368 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324702" + "plane" "(3776 -2184 -48) (3776 -2184 -16) (3766 -2194 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324701" + "plane" "(3766 -2194 -48) (3766 -2194 -16) (3766 -2368 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2856969" + side + { + "id" "324718" + "plane" "(3766 -2368 -16) (3776 -2368 -16) (3776 -4080 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324717" + "plane" "(3776 -4080 -48) (3776 -2368 -48) (3766 -2368 -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" "324716" + "plane" "(3776 -2368 -48) (3776 -4080 -48) (3776 -4080 -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" "324715" + "plane" "(3766 -2368 -48) (3776 -2368 -48) (3776 -2368 -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" "324714" + "plane" "(3776 -4080 -48) (3766 -4070 -48) (3766 -4070 -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" "324713" + "plane" "(3766 -4070 -48) (3766 -2368 -48) (3766 -2368 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2857808" + side + { + "id" "324736" + "plane" "(3408 -4080 -16) (3408 -4070 -16) (3766 -4070 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324735" + "plane" "(3408 -4080 -48) (3776 -4080 -48) (3766 -4070 -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" "324734" + "plane" "(3408 -4070 -48) (3408 -4070 -16) (3408 -4080 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 1 0 80] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324733" + "plane" "(3408 -4080 -48) (3408 -4080 -16) (3776 -4080 -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" "324732" + "plane" "(3776 -4080 -48) (3776 -4080 -16) (3766 -4070 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324731" + "plane" "(3766 -4070 -48) (3766 -4070 -16) (3408 -4070 -16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2857814" + side + { + "id" "324737" + "plane" "(2808 -3784 -8) (2808 -3776 -8) (3320 -3776 -8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 1 0 80] 0.25" + "vaxis" "[-1 0 0 95.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324738" + "plane" "(2808 -3776 -16) (2808 -3784 -16) (3320 -3784 -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" "324739" + "plane" "(2808 -3784 -16) (2808 -3776 -16) (2808 -3776 -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" "324740" + "plane" "(3320 -3776 -16) (3320 -3784 -16) (3320 -3784 -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" "324741" + "plane" "(2808 -3776 -16) (3320 -3776 -16) (3320 -3776 -8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324742" + "plane" "(3320 -3784 -16) (2808 -3784 -16) (2808 -3784 -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 151 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2857820" + side + { + "id" "324743" + "plane" "(2488 -2560 -48) (2488 -2184 -48) (2808 -2184 -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" "324744" + "plane" "(2488 -2184 -200) (2488 -2560 -200) (2808 -2560 -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" "324745" + "plane" "(2488 -2560 -200) (2488 -2184 -200) (2488 -2184 -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" "324746" + "plane" "(2808 -2184 -200) (2808 -2560 -200) (2808 -2560 -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" "324747" + "plane" "(2488 -2184 -200) (2808 -2184 -200) (2808 -2184 -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" "324748" + "plane" "(2808 -2560 -200) (2488 -2560 -200) (2488 -2560 -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 135 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2857821" + side + { + "id" "324749" + "plane" "(3336 -2332 -48) (3320 -2348 -48) (2808 -2348 -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" "324750" + "plane" "(3320 -2348 -200) (3336 -2332 -200) (2808 -2332 -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" "324751" + "plane" "(2808 -2332 -48) (2808 -2348 -48) (2808 -2348 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324752" + "plane" "(3320 -2348 -48) (3336 -2332 -48) (3336 -2332 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324753" + "plane" "(3336 -2332 -48) (2808 -2332 -48) (2808 -2332 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324754" + "plane" "(2808 -2348 -48) (3320 -2348 -48) (3320 -2348 -200)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2857822" + side + { + "id" "324755" + "plane" "(3320 -2348 -48) (3336 -2332 -48) (3336 -4080 -48)" + "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" "324756" + "plane" "(3320 -4080 -200) (3336 -4080 -200) (3336 -2332 -200)" + "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" "324757" + "plane" "(3320 -2348 -200) (3320 -2348 -48) (3320 -4080 -48)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[0 1 0 142.996] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324758" + "plane" "(3336 -4080 -200) (3336 -4080 -48) (3336 -2332 -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" "324759" + "plane" "(3336 -2332 -200) (3336 -2332 -48) (3320 -2348 -48)" + "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" "324760" + "plane" "(3320 -4080 -200) (3320 -4080 -48) (3336 -4080 -48)" + "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 111 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2857823" + side + { + "id" "324761" + "plane" "(2792 -4080 -48) (2792 -3796 -48) (3428 -3796 -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" "324762" + "plane" "(2792 -3796 -200) (2792 -4080 -200) (3428 -4080 -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" "324763" + "plane" "(2792 -4080 -200) (2792 -3796 -200) (2792 -3796 -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" "324764" + "plane" "(3428 -3796 -200) (3428 -4080 -200) (3428 -4080 -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" "324765" + "plane" "(2792 -3796 -200) (3428 -3796 -200) (3428 -3796 -48)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324766" + "plane" "(3428 -4080 -200) (2792 -4080 -200) (2792 -4080 -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 109 218" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2857949" + side + { + "id" "324778" + "plane" "(2888 -4080 -16) (2888 -4070 -16) (3408 -4070 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324777" + "plane" "(2888 -4070 -56) (2888 -4080 -56) (3408 -4080 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324776" + "plane" "(2888 -4080 -56) (2888 -4070 -56) (2888 -4070 -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" "324775" + "plane" "(3408 -4070 -56) (3408 -4080 -56) (3408 -4080 -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" "324774" + "plane" "(3408 -4080 -56) (2888 -4080 -56) (2888 -4080 -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" "324773" + "plane" "(2888 -4070 -56) (3408 -4070 -56) (3408 -4070 -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 127 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2843217" + side + { + "id" "324587" + "plane" "(-976 -6632 560) (-976 -5600 560) (1229 -5600 560)" + "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" "324588" + "plane" "(-976 -5600 411) (-976 -6632 411) (1229 -6632 411)" + "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" "324589" + "plane" "(-976 -6632 411) (-976 -5600 411) (-976 -5600 560)" + "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" "324590" + "plane" "(1229 -5600 411) (1229 -6632 411) (1229 -6632 560)" + "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" "324591" + "plane" "(-976 -5600 411) (1229 -5600 411) (1229 -5600 560)" + "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" "324592" + "plane" "(1229 -6632 411) (-976 -6632 411) (-976 -6632 560)" + "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" "0 106 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2843973" + side + { + "id" "324617" + "plane" "(-976 -6551 -41) (-208 -6551 -41) (-208 -6625 -41)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-976 -6625 -41]" + "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 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" + } + 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 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" + } + 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" "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" "324618" + "plane" "(-976 -6625 -42) (-208 -6625 -42) (-208 -6551 -42)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324619" + "plane" "(-976 -6551 -41) (-976 -6625 -41) (-976 -6625 -42)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324620" + "plane" "(-208 -6551 -42) (-208 -6625 -42) (-208 -6625 -41)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324621" + "plane" "(-208 -6551 -41) (-976 -6551 -41) (-976 -6551 -42)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324622" + "plane" "(-208 -6625 -42) (-976 -6625 -42) (-976 -6625 -41)" + "material" "GRASS/HR_GRASS/GRASS_B" + "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" "1" + } + } + solid + { + "id" "2829606" + side + { + "id" "323358" + "plane" "(-424 -4384 176) (-424 -4112 176) (-408 -4112 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" "323357" + "plane" "(-424 -4112 160) (-424 -4384 160) (-408 -4384 160)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323356" + "plane" "(-424 -4384 160) (-424 -4112 160) (-424 -4112 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" "323355" + "plane" "(-424 -4112 160) (-408 -4112 160) (-408 -4112 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323354" + "plane" "(-408 -4384 160) (-424 -4384 160) (-424 -4384 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323353" + "plane" "(-408 -4112 160) (-408 -4384 160) (-408 -4384 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 216 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2831039" + side + { + "id" "324556" + "plane" "(248 -4128 176) (248 -4384 176) (-408 -4384 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" "324555" + "plane" "(-408 -4384 160) (248 -4384 160) (248 -4128 160)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324554" + "plane" "(248 -4128 160) (248 -4384 160) (248 -4384 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324553" + "plane" "(248 -4384 160) (-408 -4384 160) (-408 -4384 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324552" + "plane" "(-408 -4384 160) (-408 -4128 160) (-408 -4128 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" "324551" + "plane" "(-408 -4128 160) (248 -4128 160) (248 -4128 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" "0 216 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2831040" + side + { + "id" "324562" + "plane" "(-408 -4112 176) (248 -4112 176) (248 -4128 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" "324561" + "plane" "(248 -4128 160) (248 -4112 160) (-408 -4112 160)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324560" + "plane" "(248 -4112 160) (248 -4128 160) (248 -4128 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324559" + "plane" "(-408 -4112 160) (248 -4112 160) (248 -4112 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324558" + "plane" "(-408 -4128 160) (-408 -4112 160) (-408 -4112 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" "324557" + "plane" "(248 -4128 160) (-408 -4128 160) (-408 -4128 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" "0 216 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2831046" + side + { + "id" "324568" + "plane" "(232 -4384 176) (248 -4384 176) (248 -4672 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" "324567" + "plane" "(232 -4672 160) (248 -4672 160) (248 -4384 160)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324566" + "plane" "(248 -4384 160) (248 -4672 160) (248 -4672 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" "324565" + "plane" "(232 -4384 160) (248 -4384 160) (248 -4384 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" "324564" + "plane" "(248 -4672 160) (232 -4672 160) (232 -4672 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" "324563" + "plane" "(232 -4672 160) (232 -4384 160) (232 -4384 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 248 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2831053" + side + { + "id" "324580" + "plane" "(16 -4672 176) (0 -4672 176) (0 -4384 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" "324579" + "plane" "(16 -4384 160) (0 -4384 160) (0 -4672 160)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324578" + "plane" "(0 -4672 160) (0 -4384 160) (0 -4384 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" "324577" + "plane" "(0 -4384 160) (16 -4384 160) (16 -4384 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" "324576" + "plane" "(16 -4672 160) (0 -4672 160) (0 -4672 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" "324575" + "plane" "(16 -4384 160) (16 -4672 160) (16 -4672 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 248 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2831054" + side + { + "id" "324586" + "plane" "(232 -4672 176) (16 -4672 176) (16 -4384 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" "324585" + "plane" "(232 -4384 160) (16 -4384 160) (16 -4672 160)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324584" + "plane" "(16 -4384 160) (232 -4384 160) (232 -4384 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" "324583" + "plane" "(232 -4672 160) (16 -4672 160) (16 -4672 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" "324582" + "plane" "(232 -4384 160) (232 -4672 160) (232 -4672 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" "324581" + "plane" "(16 -4672 160) (16 -4384 160) (16 -4384 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 248 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778647" + side + { + "id" "322848" + "plane" "(-736 -6312 32) (-736 -6000 32) (-96 -6000 32)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322847" + "plane" "(-736 -6000 -48) (-736 -6312 -48) (-96 -6312 -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" "322846" + "plane" "(-736 -6312 -48) (-736 -6000 -48) (-736 -6000 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.198391 0.980122 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322845" + "plane" "(-96 -6000 -48) (-96 -6312 -48) (-96 -6312 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" "322844" + "plane" "(-96 -6312 -48) (-736 -6312 -48) (-736 -6312 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322843" + "plane" "(-736 -6000 -48) (-96 -6000 -48) (-96 -6000 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778718" + side + { + "id" "322854" + "plane" "(-32 -6312 32) (-96 -6312 32) (-96 -6031 32)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 -757] 0.117" + "vaxis" "[0 1 0 -900] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322853" + "plane" "(-96 -6031 -16) (-96 -6312 -16) (-32 -6312 -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" "322852" + "plane" "(-96 -6312 -16) (-96 -6031 -16) (-96 -6031 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" "322851" + "plane" "(-32 -6312 -16) (-96 -6312 -16) (-96 -6312 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" "322850" + "plane" "(-32 -6031 -16) (-32 -6312 -16) (-32 -6312 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322849" + "plane" "(-96 -6031 -16) (-32 -6031 -16) (-32 -6031 32)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778719" + side + { + "id" "322860" + "plane" "(-96 -6031 32) (-96 -6000 32) (-32 -6000 32)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322859" + "plane" "(-32 -6000 -16) (-96 -6000 -16) (-96 -6031 -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" "322858" + "plane" "(-96 -6031 -16) (-96 -6000 -16) (-96 -6000 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" "322857" + "plane" "(-96 -6000 -16) (-32 -6000 -16) (-32 -6000 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322856" + "plane" "(-32 -6000 -16) (-32 -6031 -16) (-32 -6031 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322855" + "plane" "(-32 -6031 -16) (-96 -6031 -16) (-96 -6031 32)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778730" + side + { + "id" "322866" + "plane" "(-64 -6000 32) (-64 -5752 32) (144 -5752 32)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322865" + "plane" "(-64 -5752 -16) (-64 -6000 -16) (144 -6000 -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" "322864" + "plane" "(144 -5752 -16) (144 -6000 -16) (144 -6000 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322863" + "plane" "(-64 -6000 -16) (-64 -5752 -16) (-64 -5752 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" "322862" + "plane" "(144 -6000 -16) (-64 -6000 -16) (-64 -6000 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 380] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322861" + "plane" "(-64 -5752 -16) (144 -5752 -16) (144 -5752 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778734" + side + { + "id" "322878" + "plane" "(-179 -5752 32) (-179 -5696 32) (69 -5696 32)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 -1 0 -507] 0.117" + "vaxis" "[1 0 0 -900] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322877" + "plane" "(-179 -5696 -16) (-179 -5752 -16) (69 -5752 -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" "322876" + "plane" "(-179 -5752 -16) (-179 -5696 -16) (-179 -5696 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" "322875" + "plane" "(-179 -5696 -16) (69 -5696 -16) (69 -5696 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322874" + "plane" "(69 -5752 -16) (-179 -5752 -16) (-179 -5752 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322873" + "plane" "(69 -5696 -16) (69 -5752 -16) (69 -5752 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778735" + side + { + "id" "322884" + "plane" "(69 -5696 32) (144 -5696 32) (144 -5752 32)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322883" + "plane" "(69 -5752 -16) (144 -5752 -16) (144 -5696 -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" "322882" + "plane" "(144 -5696 -16) (144 -5752 -16) (144 -5752 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322881" + "plane" "(69 -5696 -16) (144 -5696 -16) (144 -5696 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322880" + "plane" "(144 -5752 -16) (69 -5752 -16) (69 -5752 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322879" + "plane" "(69 -5752 -16) (69 -5696 -16) (69 -5696 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778772" + side + { + "id" "322890" + "plane" "(-736 -5752 32) (-736 -5696 32) (-179 -5696 32)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322889" + "plane" "(-736 -5696 -48) (-736 -5752 -48) (-179 -5752 -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" "322888" + "plane" "(-736 -5752 -48) (-736 -5696 -48) (-736 -5696 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.198391 0.980122 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322887" + "plane" "(-179 -5696 -48) (-179 -5752 -48) (-179 -5752 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" "322886" + "plane" "(-736 -5696 -48) (-179 -5696 -48) (-179 -5696 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322885" + "plane" "(-179 -5752 -48) (-736 -5752 -48) (-736 -5752 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778773" + side + { + "id" "322896" + "plane" "(-736 -6000 32) (-736 -5752 32) (-64 -5752 32)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322895" + "plane" "(-736 -5752 -48) (-736 -6000 -48) (-64 -6000 -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" "322894" + "plane" "(-736 -6000 -48) (-736 -5752 -48) (-736 -5752 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.198391 0.980122 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322893" + "plane" "(-64 -5752 -48) (-64 -6000 -48) (-64 -6000 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" "322892" + "plane" "(-64 -6000 -48) (-736 -6000 -48) (-736 -6000 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322891" + "plane" "(-736 -5752 -48) (-64 -5752 -48) (-64 -5752 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778964" + side + { + "id" "322902" + "plane" "(128 -5924 182) (128 -5924 160) (128 -5916 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322901" + "plane" "(144 -5916 160) (144 -5924 160) (144 -5924 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322900" + "plane" "(144 -5924 182) (144 -5924 160) (128 -5924 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322899" + "plane" "(128 -5916 160) (128 -5924 160) (144 -5924 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" "322898" + "plane" "(128 -5924 182) (128 -5916 182) (144 -5916 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322897" + "plane" "(128 -5916 182) (128 -5916 160) (144 -5916 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778965" + side + { + "id" "322908" + "plane" "(128 -5916 160) (128 -5680 160) (128 -5680 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322907" + "plane" "(144 -5680 182) (144 -5680 160) (144 -5916 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -25.8867] 0.125" + "vaxis" "[0 0 -1 117.162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322906" + "plane" "(128 -5680 182) (128 -5680 160) (144 -5680 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322905" + "plane" "(128 -5680 160) (128 -5916 160) (144 -5916 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" "322904" + "plane" "(128 -5916 182) (128 -5680 182) (144 -5680 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322903" + "plane" "(144 -5916 182) (144 -5916 160) (128 -5916 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778966" + side + { + "id" "322914" + "plane" "(128 -5916 32) (128 -5924 32) (144 -5924 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" "322913" + "plane" "(128 -5924 32) (128 -5916 32) (128 -5916 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322912" + "plane" "(144 -5916 32) (144 -5924 32) (144 -5924 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 128] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322911" + "plane" "(128 -5924 160) (128 -5916 160) (144 -5916 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" "322910" + "plane" "(144 -5924 160) (144 -5924 32) (128 -5924 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00212193] 0.125" + "vaxis" "[1 0 0 -31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322909" + "plane" "(128 -5916 160) (128 -5916 32) (144 -5916 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00201772] 0.125" + "vaxis" "[-1 0 0 -207.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778967" + side + { + "id" "322920" + "plane" "(128 -5696 32) (128 -5916 32) (144 -5916 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" "322919" + "plane" "(128 -5916 32) (128 -5696 32) (128 -5696 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322918" + "plane" "(144 -5696 160) (144 -5696 32) (144 -5916 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -25.8867] 0.125" + "vaxis" "[0 0 -1 117.162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322917" + "plane" "(128 -5696 160) (128 -5696 32) (144 -5696 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322916" + "plane" "(128 -5916 160) (128 -5696 160) (144 -5696 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" "322915" + "plane" "(144 -5916 160) (144 -5916 32) (128 -5916 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 147 148" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778975" + side + { + "id" "322921" + "plane" "(138 -5984 182) (138 -5924 182) (146 -5924 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322922" + "plane" "(138 -5924 32) (138 -5984 32) (146 -5984 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322923" + "plane" "(138 -5984 32) (138 -5924 32) (138 -5924 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322924" + "plane" "(146 -5924 32) (146 -5984 32) (146 -5984 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322925" + "plane" "(138 -5924 32) (146 -5924 32) (146 -5924 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322926" + "plane" "(146 -5984 32) (138 -5984 32) (138 -5984 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2778977" + side + { + "id" "322927" + "plane" "(-11 -6000 182) (-11 -5992 182) (144 -5992 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322928" + "plane" "(-11 -5992 32) (-11 -6000 32) (144 -6000 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322929" + "plane" "(-11 -6000 32) (-11 -5992 32) (-11 -5992 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322930" + "plane" "(144 -5992 32) (144 -6000 32) (144 -6000 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322931" + "plane" "(-11 -5992 32) (144 -5992 32) (144 -5992 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322932" + "plane" "(144 -6000 32) (-11 -6000 32) (-11 -6000 182)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 241" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2766588" + side + { + "id" "322824" + "plane" "(-233 -5680 32) (-241 -5680 32) (-241 -5688 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" "322823" + "plane" "(-241 -5680 32) (-233 -5680 32) (-233 -5680 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1.00147 0] 0.125" + "vaxis" "[1 0.0383467 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322822" + "plane" "(-233 -5688 32) (-241 -5688 32) (-241 -5688 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -170.148] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322821" + "plane" "(-233 -5688 182) (-241 -5688 182) (-241 -5680 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322820" + "plane" "(-241 -5688 182) (-241 -5688 32) (-241 -5680 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1.00147 -0.00190132] 0.125" + "vaxis" "[0 1 0 74.918] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322819" + "plane" "(-233 -5680 182) (-233 -5680 32) (-233 -5688 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" + } + editor + { + "color" "0 114 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2766589" + side + { + "id" "322830" + "plane" "(-179 -5680 32) (-233 -5680 32) (-233 -5696 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" "322829" + "plane" "(-233 -5680 32) (-179 -5680 32) (-179 -5680 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0.0383467 0 -212.191] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322828" + "plane" "(-179 -5696 182) (-179 -5696 32) (-233 -5696 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -170.148] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322827" + "plane" "(-179 -5680 182) (-179 -5680 32) (-179 -5696 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322826" + "plane" "(-179 -5696 182) (-233 -5696 182) (-233 -5680 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322825" + "plane" "(-233 -5696 182) (-233 -5696 32) (-233 -5680 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" + } + editor + { + "color" "0 114 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2766611" + side + { + "id" "322836" + "plane" "(-64 -6368 32) (-64 -6312 32) (-32 -6312 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001_DARK" + "uaxis" "[1 0 0 230] 0.125" + "vaxis" "[0 1 0 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322835" + "plane" "(-64 -6312 -16) (-64 -6368 -16) (-32 -6337.14 -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" "322834" + "plane" "(-64 -6368 -16) (-64 -6312 -16) (-64 -6312 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" "322833" + "plane" "(-32 -6337.14 -16) (-64 -6368 -16) (-64 -6368 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.719814 0.694167 0 380.203] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322832" + "plane" "(-32 -6312 -16) (-32 -6337.14 -16) (-32 -6337.14 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322831" + "plane" "(-64 -6312 -16) (-32 -6312 -16) (-32 -6312 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 171 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753361" + side + { + "id" "322269" + "plane" "(-48 -6280 182) (-48 -6032 182) (-32 -6032 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322268" + "plane" "(-48 -6032 160) (-48 -6280 160) (-32 -6280 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 127.992] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322267" + "plane" "(-48 -6280 160) (-48 -6032 160) (-48 -6032 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322266" + "plane" "(-32 -6032 160) (-32 -6280 160) (-32 -6280 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -170] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322265" + "plane" "(-32 -6280 160) (-48 -6280 160) (-48 -6280 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" "322264" + "plane" "(-48 -6032 160) (-32 -6032 160) (-32 -6032 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" + } + editor + { + "color" "0 112 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753362" + side + { + "id" "322275" + "plane" "(-48 -6032 182) (-48 -5924 182) (-32 -5924 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322274" + "plane" "(-48 -5924 32) (-48 -6032 32) (-32 -6032 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" "322273" + "plane" "(-48 -6032 32) (-48 -5924 32) (-48 -5924 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322272" + "plane" "(-32 -5924 32) (-32 -6032 32) (-32 -6032 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -170] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322271" + "plane" "(-48 -5924 32) (-32 -5924 32) (-32 -5924 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322270" + "plane" "(-32 -6032 32) (-48 -6032 32) (-48 -6032 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -192] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 112 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753415" + side + { + "id" "322299" + "plane" "(-50 -5873 214) (-32 -5873 214) (-32 -6103 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322298" + "plane" "(-50 -6103 182) (-32 -6103 182) (-32 -5873 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322297" + "plane" "(-50 -5873 182) (-50 -5873 214) (-50 -6103 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322296" + "plane" "(-32 -6103 182) (-32 -6103 214) (-32 -5873 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322295" + "plane" "(-32 -5873 182) (-32 -5873 214) (-50 -5873 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322294" + "plane" "(-50 -6103 182) (-50 -6103 214) (-32 -6103 214)" + "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 160 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753421" + side + { + "id" "322311" + "plane" "(-48 -6119 214) (-48 -6103 214) (-32 -6103 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322310" + "plane" "(-48 -6103 182) (-48 -6119 182) (-32 -6119 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322309" + "plane" "(-48 -6119 182) (-48 -6103 182) (-48 -6103 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322308" + "plane" "(-32 -6103 182) (-32 -6119 182) (-32 -6119 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322307" + "plane" "(-48 -6103 182) (-32 -6103 182) (-32 -6103 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322306" + "plane" "(-32 -6119 182) (-48 -6119 182) (-48 -6119 214)" + "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 160 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753423" + side + { + "id" "322312" + "plane" "(-119 -6205 214) (-32 -6205 214) (-32 -6213 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322313" + "plane" "(-119 -6213 182) (-32 -6213 182) (-32 -6205 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322314" + "plane" "(-119 -6205 182) (-119 -6205 214) (-119 -6213 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322315" + "plane" "(-32 -6213 182) (-32 -6213 214) (-32 -6205 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322316" + "plane" "(-32 -6205 182) (-32 -6205 214) (-119 -6205 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322317" + "plane" "(-119 -6213 182) (-119 -6213 214) (-32 -6213 214)" + "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 146 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753433" + side + { + "id" "322329" + "plane" "(-48 -6205 214) (-48 -6119 214) (-32 -6119 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322328" + "plane" "(-48 -6119 182) (-48 -6205 182) (-32 -6205 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322327" + "plane" "(-48 -6205 182) (-48 -6119 182) (-48 -6119 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322326" + "plane" "(-32 -6119 182) (-32 -6205 182) (-32 -6205 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322325" + "plane" "(-48 -6119 182) (-32 -6119 182) (-32 -6119 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322324" + "plane" "(-32 -6205 182) (-48 -6205 182) (-48 -6205 214)" + "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 160 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753438" + side + { + "id" "322330" + "plane" "(-127 -6213 214) (-48 -6213 214) (-48 -6296 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322331" + "plane" "(-127 -6296 182) (-48 -6296 182) (-48 -6213 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322332" + "plane" "(-127 -6213 182) (-127 -6213 214) (-127 -6296 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322333" + "plane" "(-48 -6296 182) (-48 -6296 214) (-48 -6213 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322334" + "plane" "(-48 -6213 182) (-48 -6213 214) (-127 -6213 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322335" + "plane" "(-127 -6296 182) (-127 -6296 214) (-48 -6296 214)" + "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 112 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753443" + side + { + "id" "322341" + "plane" "(-233 -6312 214) (-241 -6312 214) (-241 -6280 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322340" + "plane" "(-233 -6280 182) (-241 -6280 182) (-241 -6312 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 -132] 0.125" + "vaxis" "[0 -1 0 155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322339" + "plane" "(-241 -6312 182) (-241 -6280 182) (-241 -6280 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322338" + "plane" "(-241 -6280 182) (-233 -6280 182) (-233 -6280 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322337" + "plane" "(-233 -6312 182) (-241 -6312 182) (-241 -6312 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322336" + "plane" "(-233 -6280 182) (-233 -6312 182) (-233 -6312 214)" + "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 216 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753448" + side + { + "id" "322353" + "plane" "(-111 -6312 214) (-233 -6312 214) (-233 -6296 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322352" + "plane" "(-111 -6296 182) (-233 -6296 182) (-233 -6312 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 -1 0 -131.996] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322351" + "plane" "(-233 -6296 182) (-111 -6296 182) (-111 -6296 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322350" + "plane" "(-111 -6312 182) (-233 -6312 182) (-233 -6312 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322349" + "plane" "(-233 -6312 182) (-233 -6296 182) (-233 -6296 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322348" + "plane" "(-111 -6296 182) (-111 -6312 182) (-111 -6312 214)" + "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 216 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753460" + side + { + "id" "322371" + "plane" "(-111 -6296 214) (-48 -6296 214) (-48 -6312 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322370" + "plane" "(-111 -6312 182) (-48 -6312 182) (-48 -6296 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322369" + "plane" "(-48 -6296 182) (-48 -6312 182) (-48 -6312 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322368" + "plane" "(-111 -6296 182) (-48 -6296 182) (-48 -6296 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322367" + "plane" "(-48 -6312 182) (-111 -6312 182) (-111 -6312 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322366" + "plane" "(-111 -6312 182) (-111 -6296 182) (-111 -6296 214)" + "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 216 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753462" + side + { + "id" "322372" + "plane" "(-400 -6312 32) (-64 -6312 32) (-64 -6368 32)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322373" + "plane" "(-400 -6368 -48) (-64 -6368 -48) (-64 -6312 -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" "322374" + "plane" "(-400 -6312 32) (-400 -6368 32) (-400 -6368 -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" "322375" + "plane" "(-64 -6312 -48) (-64 -6368 -48) (-64 -6368 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" "322376" + "plane" "(-64 -6312 32) (-400 -6312 32) (-400 -6312 -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" "322377" + "plane" "(-64 -6368 -48) (-400 -6368 -48) (-400 -6368 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753647" + side + { + "id" "322406" + "plane" "(-233 -6304 32) (-241 -6304 32) (-241 -6312 32)" + "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" "322405" + "plane" "(-241 -6304 32) (-233 -6304 32) (-233 -6304 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 329.744] 0.125" + "vaxis" "[0 0 -1 117.152] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322404" + "plane" "(-233 -6312 32) (-241 -6312 32) (-241 -6312 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322403" + "plane" "(-233 -6312 182) (-241 -6312 182) (-241 -6304 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322402" + "plane" "(-241 -6312 182) (-241 -6312 32) (-241 -6304 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" "322401" + "plane" "(-233 -6304 182) (-233 -6304 32) (-233 -6312 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753649" + side + { + "id" "322418" + "plane" "(-241 -6307 32) (-364 -6307 32) (-364 -6308 32)" + "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" "322417" + "plane" "(-364 -6307 182) (-364 -6307 32) (-241 -6307 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 329.744] 0.125" + "vaxis" "[0 0 -1 117.152] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322416" + "plane" "(-241 -6308 32) (-364 -6308 32) (-364 -6308 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322415" + "plane" "(-364 -6308 182) (-364 -6308 32) (-364 -6307 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" "322414" + "plane" "(-241 -6308 182) (-364 -6308 182) (-364 -6307 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322413" + "plane" "(-241 -6307 182) (-241 -6307 32) (-241 -6308 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" + } + editor + { + "color" "0 129 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753659" + side + { + "id" "322424" + "plane" "(-119 -6307 32) (-233 -6307 32) (-233 -6308 32)" + "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" "322423" + "plane" "(-233 -6307 32) (-119 -6307 32) (-119 -6307 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322422" + "plane" "(-119 -6308 32) (-233 -6308 32) (-233 -6308 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322421" + "plane" "(-119 -6308 182) (-233 -6308 182) (-233 -6307 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322420" + "plane" "(-233 -6308 182) (-233 -6308 32) (-233 -6307 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" "322419" + "plane" "(-119 -6307 182) (-119 -6307 32) (-119 -6308 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" + } + editor + { + "color" "0 129 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753672" + side + { + "id" "322436" + "plane" "(-111 -6304 32) (-119 -6304 32) (-119 -6312 32)" + "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" "322435" + "plane" "(-119 -6304 32) (-111 -6304 32) (-111 -6304 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 329.744] 0.125" + "vaxis" "[0 0 -1 117.152] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322434" + "plane" "(-111 -6312 32) (-119 -6312 32) (-119 -6312 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322433" + "plane" "(-111 -6312 182) (-119 -6312 182) (-119 -6304 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322432" + "plane" "(-119 -6312 182) (-119 -6312 32) (-119 -6304 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322431" + "plane" "(-111 -6304 182) (-111 -6304 32) (-111 -6312 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" + } + editor + { + "color" "0 129 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753673" + side + { + "id" "322442" + "plane" "(-48 -6304 32) (-111 -6304 32) (-111 -6312 32)" + "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" "322441" + "plane" "(-111 -6304 32) (-48 -6304 32) (-48 -6304 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 329.744] 0.125" + "vaxis" "[0 0 -1 117.152] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322440" + "plane" "(-48 -6312 182) (-48 -6312 32) (-111 -6312 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -170] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322439" + "plane" "(-48 -6304 182) (-48 -6304 32) (-48 -6312 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" "322438" + "plane" "(-48 -6312 182) (-111 -6312 182) (-111 -6304 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322437" + "plane" "(-111 -6312 182) (-111 -6312 32) (-111 -6304 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" + } + editor + { + "color" "0 129 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753883" + side + { + "id" "322508" + "plane" "(-11 -6000 182) (-32 -6000 182) (-32 -5984 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322507" + "plane" "(-11 -5984 32) (-32 -5984 32) (-32 -6000 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322506" + "plane" "(-32 -6000 32) (-32 -5984 32) (-32 -5984 182)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322505" + "plane" "(-11 -6000 32) (-32 -6000 32) (-32 -6000 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -26] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322504" + "plane" "(-32 -5984 32) (-11 -5984 32) (-11 -5984 182)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322503" + "plane" "(-11 -5984 32) (-11 -6000 32) (-11 -6000 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -26] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 205 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753974" + side + { + "id" "322515" + "plane" "(-42 -5881 214) (-42 -5873 214) (-11 -5873 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322516" + "plane" "(-42 -5873 182) (-42 -5881 182) (-11 -5881 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322517" + "plane" "(-42 -5881 182) (-42 -5873 182) (-42 -5873 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322518" + "plane" "(-11 -5873 182) (-11 -5881 182) (-11 -5881 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322519" + "plane" "(-42 -5873 182) (-11 -5873 182) (-11 -5873 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322520" + "plane" "(-11 -5881 182) (-42 -5881 182) (-42 -5881 214)" + "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 104 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753982" + side + { + "id" "322521" + "plane" "(-111 -5680 214) (-11 -5680 214) (-11 -5780 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322522" + "plane" "(-111 -5780 182) (-11 -5780 182) (-11 -5680 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322523" + "plane" "(-111 -5680 214) (-111 -5780 214) (-111 -5780 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" "322524" + "plane" "(-11 -5680 182) (-11 -5780 182) (-11 -5780 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322525" + "plane" "(-11 -5680 214) (-111 -5680 214) (-111 -5680 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322526" + "plane" "(-11 -5780 182) (-111 -5780 182) (-111 -5780 214)" + "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 140 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753986" + side + { + "id" "322527" + "plane" "(-127 -5780 214) (-127 -5680 214) (-111 -5680 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322528" + "plane" "(-127 -5680 182) (-127 -5780 182) (-111 -5780 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322529" + "plane" "(-127 -5780 182) (-127 -5680 182) (-127 -5680 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322530" + "plane" "(-111 -5680 182) (-111 -5780 182) (-111 -5780 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322531" + "plane" "(-127 -5680 182) (-111 -5680 182) (-111 -5680 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322532" + "plane" "(-111 -5780 182) (-127 -5780 182) (-127 -5780 214)" + "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 252 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2754023" + side + { + "id" "322533" + "plane" "(-241 -5704 214) (-241 -5680 214) (-233 -5680 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322534" + "plane" "(-241 -5680 182) (-241 -5704 182) (-233 -5704 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322535" + "plane" "(-241 -5704 182) (-241 -5680 182) (-241 -5680 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322536" + "plane" "(-233 -5680 182) (-233 -5704 182) (-233 -5704 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322537" + "plane" "(-241 -5680 182) (-233 -5680 182) (-233 -5680 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322538" + "plane" "(-233 -5704 182) (-241 -5704 182) (-241 -5704 214)" + "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 186 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2754107" + side + { + "id" "322586" + "plane" "(-32 -6000 32) (124 -6000 32) (124 -6187 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001_DARK" + "uaxis" "[0 1 0 229.688] 0.125" + "vaxis" "[1 0 0 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322587" + "plane" "(-32 -6187 0) (124 -6187 0) (124 -6000 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" "322588" + "plane" "(-32 -6000 32) (-32 -6187 32) (-32 -6187 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" "322589" + "plane" "(124 -6000 0) (124 -6187 0) (124 -6187 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 270] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322590" + "plane" "(124 -6000 32) (-32 -6000 32) (-32 -6000 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" "322591" + "plane" "(124 -6187 0) (-32 -6187 0) (-32 -6187 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 198 243" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2754131" + side + { + "id" "322603" + "plane" "(-32 -6187 32) (79 -6187 32) (79 -6333 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001_DARK" + "uaxis" "[0 1 0 229.688] 0.125" + "vaxis" "[1 0 0 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322604" + "plane" "(-32 -6333 0) (79 -6333 0) (79 -6187 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" "322605" + "plane" "(-32 -6187 32) (-32 -6333 32) (-32 -6333 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" "322606" + "plane" "(79 -6187 0) (79 -6333 0) (79 -6333 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" "322607" + "plane" "(79 -6187 32) (-32 -6187 32) (-32 -6187 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" "322608" + "plane" "(79 -6333 0) (-32 -6333 0) (-32 -6333 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 -472] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 211" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2754145" + side + { + "id" "322614" + "plane" "(-240 -5384 240) (-224 -5384 240) (-224 -5680 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322613" + "plane" "(-240 -5680 0) (-224 -5680 0) (-224 -5384 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322612" + "plane" "(-224 -5384 0) (-224 -5680 0) (-224 -5680 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322611" + "plane" "(-224 -5680 0) (-240 -5680 0) (-240 -5680 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322610" + "plane" "(-240 -5384 0) (-224 -5384 0) (-224 -5384 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322609" + "plane" "(-240 -5680 0) (-240 -5384 0) (-240 -5384 240)" + "material" "TOOLS/TOOLSCLIP" + "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 124" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2754173" + side + { + "id" "322620" + "plane" "(-64 -5696 32) (-64 -5664 32) (144 -5664 32)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[0 -1 0 514] 0.125" + "vaxis" "[1 0 0 5] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322619" + "plane" "(144 -5696 -16) (144 -5664 -16) (-64 -5664 -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" "322618" + "plane" "(144 -5664 -16) (144 -5696 -16) (144 -5696 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322617" + "plane" "(-64 -5664 -16) (144 -5664 -16) (144 -5664 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[-1 0 0 -23] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322616" + "plane" "(-64 -5696 -16) (-64 -5664 -16) (-64 -5664 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" "322615" + "plane" "(144 -5696 -16) (-64 -5696 -16) (-64 -5696 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2754208" + side + { + "id" "322632" + "plane" "(-736 -5696 32) (-736 -5664 32) (-64 -5664 32)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[0 -1 0 514] 0.125" + "vaxis" "[1 0 0 5] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322631" + "plane" "(-64 -5664 -48) (-736 -5664 -48) (-736 -5696 -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" "322630" + "plane" "(-736 -5696 -48) (-736 -5664 -48) (-736 -5664 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.198391 0.980122 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322629" + "plane" "(-736 -5664 -48) (-64 -5664 -48) (-64 -5664 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.962608 0.270893 0 -212.191] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322628" + "plane" "(-64 -5664 -48) (-64 -5696 -48) (-64 -5696 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" "322627" + "plane" "(-64 -5696 -48) (-736 -5696 -48) (-736 -5696 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 188 173" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2741039" + side + { + "id" "322197" + "plane" "(0 -4688 0) (0 -4672 0) (256 -4672 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 832] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322196" + "plane" "(0 -4672 -16) (0 -4688 -16) (256 -4688 -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" "322195" + "plane" "(0 -4688 -16) (0 -4672 -16) (0 -4672 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" "322194" + "plane" "(256 -4672 -16) (256 -4688 -16) (256 -4688 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" "322193" + "plane" "(256 -4688 -16) (0 -4688 -16) (0 -4688 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" "322192" + "plane" "(0 -4672 -16) (256 -4672 -16) (256 -4672 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 129 230" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2741040" + side + { + "id" "322203" + "plane" "(0 -4672 0) (0 -4608 0) (256 -4608 0)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322202" + "plane" "(0 -4608 -16) (0 -4672 -16) (256 -4672 -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" "322201" + "plane" "(0 -4672 -16) (0 -4608 -16) (0 -4608 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" "322200" + "plane" "(256 -4608 -16) (256 -4672 -16) (256 -4672 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" "322199" + "plane" "(0 -4608 -16) (256 -4608 -16) (256 -4608 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" "322198" + "plane" "(256 -4672 -16) (0 -4672 -16) (0 -4672 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 230" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2741142" + side + { + "id" "322222" + "plane" "(240 -4480 -96) (0 -4480 -96) (0 -4120 -96)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322221" + "plane" "(188 -4120 -128) (0 -4120 -128) (0 -4480 -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" "322220" + "plane" "(0 -4480 -128) (0 -4120 -128) (0 -4120 -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" "322219" + "plane" "(240 -4480 -128) (0 -4480 -128) (0 -4480 -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" "322218" + "plane" "(0 -4120 -128) (188 -4120 -128) (188 -4120 -96)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322217" + "plane" "(240 -4176 -128) (240 -4480 -128) (240 -4480 -96)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322216" + "plane" "(188 -4120 -128) (240 -4176 -128) (240 -4176 -96)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[-0.680451 0.732793 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 193 146" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2741143" + side + { + "id" "322227" + "plane" "(188 -4120 -96) (240 -4120 -96) (240 -4176 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.681998 0.731354 0 0] 0.125" + "vaxis" "[0.731354 0.681998 0 -96] 0.125" + "rotation" "43" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322226" + "plane" "(240 -4120 -128) (188 -4120 -128) (240 -4176 -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" "322225" + "plane" "(188 -4120 -128) (240 -4120 -128) (240 -4120 -96)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322224" + "plane" "(240 -4120 -128) (240 -4176 -128) (240 -4176 -96)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322223" + "plane" "(240 -4176 -128) (188 -4120 -128) (188 -4120 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.680451 -0.732793 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 193 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725699" + side + { + "id" "321981" + "plane" "(-241 -6272 214) (-241 -6312 214) (-364 -6312 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321980" + "plane" "(-241 -6312 182) (-241 -6272 182) (-364 -6304 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 -1 0 -131.996] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321979" + "plane" "(-364 -6304 214) (-364 -6312 214) (-364 -6312 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" "321978" + "plane" "(-241 -6312 214) (-241 -6272 214) (-241 -6272 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" "321977" + "plane" "(-241 -6272 214) (-364 -6304 214) (-364 -6304 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321976" + "plane" "(-364 -6312 214) (-241 -6312 214) (-241 -6312 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 106 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725703" + side + { + "id" "321993" + "plane" "(-127 -6296 214) (-233 -6296 214) (-233 -6272 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321992" + "plane" "(-127 -6205 182) (-233 -6272 182) (-233 -6296 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321991" + "plane" "(-233 -6296 214) (-233 -6296 182) (-233 -6272 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" "321990" + "plane" "(-127 -6205 214) (-127 -6205 182) (-127 -6296 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" "321989" + "plane" "(-233 -6272 214) (-233 -6272 182) (-127 -6205 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321988" + "plane" "(-127 -6296 214) (-127 -6296 182) (-233 -6296 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" + } + editor + { + "color" "0 106 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725706" + side + { + "id" "322005" + "plane" "(-48 -6119 214) (-48 -6205 214) (-127 -6205 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322004" + "plane" "(-48 -6205 182) (-48 -6119 182) (-56 -6119 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322003" + "plane" "(-48 -6205 214) (-48 -6205 182) (-127 -6205 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" "322002" + "plane" "(-56 -6119 214) (-56 -6119 182) (-48 -6119 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" "322001" + "plane" "(-127 -6205 214) (-127 -6205 182) (-56 -6119 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322000" + "plane" "(-48 -6119 214) (-48 -6119 182) (-48 -6205 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" + } + editor + { + "color" "0 106 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2727324" + side + { + "id" "322059" + "plane" "(-127 -5780 214) (-11 -5780 214) (-11 -5873 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322058" + "plane" "(-50 -5873 182) (-11 -5873 182) (-11 -5780 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322057" + "plane" "(-50 -5873 214) (-11 -5873 214) (-11 -5873 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" "322056" + "plane" "(-11 -5780 214) (-127 -5780 214) (-127 -5780 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" "322055" + "plane" "(-127 -5780 214) (-50 -5873 214) (-50 -5873 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322054" + "plane" "(-11 -5873 214) (-11 -5780 214) (-11 -5780 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" + } + editor + { + "color" "0 106 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2729127" + side + { + "id" "322179" + "plane" "(-233 -5680 214) (-127 -5680 214) (-127 -5780 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322178" + "plane" "(-233 -5712 182) (-127 -5780 182) (-127 -5680 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322177" + "plane" "(-127 -5780 182) (-127 -5780 214) (-127 -5680 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322176" + "plane" "(-233 -5680 182) (-233 -5680 214) (-233 -5712 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322175" + "plane" "(-233 -5712 182) (-233 -5712 214) (-127 -5780 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322174" + "plane" "(-127 -5680 182) (-127 -5680 214) (-233 -5680 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 106 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2698450" + side + { + "id" "321203" + "plane" "(1200 -6160 -32) (1304 -6160 -33) (1304 -6005 -33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321202" + "plane" "(1200 -6005 -32) (1200 -6005 -9) (1200 -6160 -9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321201" + "plane" "(1304 -6005 -33) (1200 -6005 -9) (1200 -6005 -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" "321200" + "plane" "(1200 -6160 -32) (1200 -6160 -9) (1304 -6160 -33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321199" + "plane" "(1200 -6005 -9) (1304 -6005 -33) (1304 -6160 -33)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1200 -6160 -9]" + "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 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" + } + 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 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" + } + 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.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391" + "row1" "0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391" + "row2" "0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391" + "row3" "0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391" + "row4" "0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391" + "row5" "0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391" + "row6" "0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391" + "row7" "0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391" + "row8" "0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391 0.22486 -0 0.974391" + } + 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" + } + } + } + editor + { + "color" "0 106 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2698758" + side + { + "id" "321228" + "plane" "(-448 -6756 -25) (-448 -6632 -25) (536 -6632 -25)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-448 -6756 -25]" + "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 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" + } + 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 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" + } + 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 255 0 0 0" + "row2" "0 0 0 150 75 255 0 0 0" + "row3" "0 0 0 255 0 255 0 0 0" + "row4" "0 0 0 250 75 255 0 0 0" + "row5" "0 0 0 150 0 255 0 0 0" + "row6" "0 0 0 100 0 225 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" "321229" + "plane" "(-448 -6632 -26) (-448 -6756 -26) (536 -6756 -26)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321230" + "plane" "(-448 -6756 -26) (-448 -6632 -26) (-448 -6632 -25)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321231" + "plane" "(536 -6632 -26) (536 -6756 -26) (536 -6756 -25)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321232" + "plane" "(-448 -6632 -26) (536 -6632 -26) (536 -6632 -25)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321233" + "plane" "(536 -6756 -26) (-448 -6756 -26) (-448 -6756 -25)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 153" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2699047" + side + { + "id" "321234" + "plane" "(-583 -3233 2) (-583 -3184 2) (-352 -3184 2)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-583 -3233 2]" + "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 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" + } + 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 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" + } + 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 255 241 255 255 255 126 248 0" + "row1" "255 181 0 126 157 213 234 59 37" + "row2" "255 0 17 7 0 73 59 192 0" + "row3" "0 0 0 0 45 10 0 108 0" + "row4" "0 0 7 0 0 220 0 71 0" + "row5" "0 0 0 0 0 0 0 0 0" + "row6" "0 49 0 0 21 0 0 0 0" + "row7" "7 112 0 35 91 77 0 0 0" + "row8" "189 255 255 255 255 255 112 77 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" "321235" + "plane" "(-583 -3184 1) (-583 -3233 1) (-352 -3233 1)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321236" + "plane" "(-583 -3233 1) (-583 -3184 1) (-583 -3184 2)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321237" + "plane" "(-352 -3184 1) (-352 -3233 1) (-352 -3233 2)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321238" + "plane" "(-583 -3184 1) (-352 -3184 1) (-352 -3184 2)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321239" + "plane" "(-352 -3233 1) (-583 -3233 1) (-583 -3233 2)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2699136" + side + { + "id" "321240" + "plane" "(-352 -3233 2) (-352 -2978 2) (-326 -2978 2)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-352 -3233 2]" + "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 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" + } + 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 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" + } + 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" "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" "321241" + "plane" "(-352 -2978 1) (-352 -3233 1) (-326 -3233 1)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321242" + "plane" "(-352 -3233 1) (-352 -2978 1) (-352 -2978 2)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321243" + "plane" "(-326 -2978 1) (-326 -3233 1) (-326 -3233 2)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321244" + "plane" "(-352 -2978 1) (-326 -2978 1) (-326 -2978 2)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321245" + "plane" "(-326 -3233 1) (-352 -3233 1) (-352 -3233 2)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 126 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2699255" + side + { + "id" "321281" + "plane" "(-1854 -3584 4) (-1956 -3584 4) (-1956 -3349 4)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1956 -3584 4]" + "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 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" + } + 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 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" + } + 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 125 225 0" + "row5" "0 0 0 0 150 200 255 255 75" + "row6" "0 0 0 0 125 255 175 255 25" + "row7" "0 0 25 100 200 100 100 255 75" + "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" "321280" + "plane" "(-1956 -3349 -44) (-1956 -3584 -44) (-1854 -3584 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321279" + "plane" "(-1956 -3584 -44) (-1956 -3349 -44) (-1956 -3349 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321278" + "plane" "(-1854 -3584 -44) (-1956 -3584 -44) (-1956 -3584 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321277" + "plane" "(-1854 -3349 -44) (-1854 -3584 -44) (-1854 -3584 4)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321276" + "plane" "(-1956 -3349 -44) (-1854 -3349 -44) (-1854 -3349 4)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2662493" + side + { + "id" "320985" + "plane" "(1184 -5372 128.181) (1184 -5088 128.181) (1200 -5088 128.181)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320986" + "plane" "(1184 -5088 0.181137) (1184 -5372 0.181137) (1200 -5372 0.181137)" + "material" "TOOLS/TOOLSSKIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320987" + "plane" "(1184 -5372 0.180476) (1184 -5088 0.180472) (1184 -5088 128.18)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320988" + "plane" "(1200 -5088 0.180345) (1200 -5372 0.180341) (1200 -5372 128.18)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320989" + "plane" "(1184 -5088 0.180393) (1200 -5088 0.180393) (1200 -5088 128.18)" + "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" "320990" + "plane" "(1200 -5372 0.180424) (1184 -5372 0.180424) (1184 -5372 128.18)" + "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 253 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2662497" + side + { + "id" "321002" + "plane" "(480 -2434 128) (496 -2434 128) (496 -2682 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" "321001" + "plane" "(480 -2682 0) (496 -2682 0) (496 -2434 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" "321000" + "plane" "(480 -2434 128) (480 -2682 128) (480 -2682 0)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320999" + "plane" "(496 -2434 0) (496 -2682 0) (496 -2682 128)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320998" + "plane" "(496 -2434 128) (480 -2434 128) (480 -2434 0)" + "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" "320997" + "plane" "(496 -2682 0) (480 -2682 0) (480 -2682 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 253 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2662500" + side + { + "id" "321014" + "plane" "(1328 -3392 147) (1328 -2896 147) (1344 -2896 147)" + "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" "321013" + "plane" "(1328 -2896 16) (1328 -3392 16) (1344 -3392 16)" + "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" "321012" + "plane" "(1328 -3392 16) (1328 -2896 16) (1328 -2896 147)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321011" + "plane" "(1344 -2896 16) (1344 -3392 16) (1344 -3392 147)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321010" + "plane" "(1328 -2896 16) (1344 -2896 16) (1344 -2896 147)" + "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" "321009" + "plane" "(1344 -3392 16) (1328 -3392 16) (1328 -3392 147)" + "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 253 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2650363" + side + { + "id" "320948" + "plane" "(2256 -3527 280) (2256 -3547 280) (2240 -3552 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -18] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320947" + "plane" "(2256 -3547 16) (2256 -3527 16) (2240 -3520 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 18] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320946" + "plane" "(2240 -3520 280) (2240 -3552 280) (2240 -3552 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320945" + "plane" "(2256 -3547 280) (2256 -3527 280) (2256 -3527 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320944" + "plane" "(2256 -3527 280) (2240 -3520 280) (2240 -3520 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 18] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320943" + "plane" "(2240 -3552 280) (2256 -3547 280) (2256 -3547 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -18] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2650368" + side + { + "id" "320960" + "plane" "(2191 -3040 280) (2211 -3040 280) (2224 -3056 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -18] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320959" + "plane" "(2177 -3056 16) (2224 -3056 16) (2211 -3040 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 18] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320958" + "plane" "(2191 -3040 16) (2191 -3040 280) (2177 -3056 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320957" + "plane" "(2224 -3056 16) (2224 -3056 280) (2211 -3040 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320956" + "plane" "(2211 -3040 16) (2211 -3040 280) (2191 -3040 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 18] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320955" + "plane" "(2177 -3056 16) (2177 -3056 280) (2224 -3056 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -18] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2650378" + side + { + "id" "320972" + "plane" "(2384 -2568 280) (2432 -2568 280) (2418 -2581 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320971" + "plane" "(2397 -2581 16) (2418 -2581 16) (2432 -2568 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320970" + "plane" "(2384 -2568 16) (2384 -2568 280) (2397 -2581 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320969" + "plane" "(2418 -2581 16) (2418 -2581 280) (2432 -2568 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320968" + "plane" "(2432 -2568 16) (2432 -2568 280) (2384 -2568 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320967" + "plane" "(2397 -2581 16) (2397 -2581 280) (2418 -2581 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2589978" + side + { + "id" "313178" + "plane" "(2096 -3248 224) (2096 -3424 224) (1520 -3424 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" "313177" + "plane" "(1520 -3424 208) (2096 -3424 208) (2096 -3248 208)" + "material" "DE_NUKE/HR_NUKE/OFFICELIGHT_EMITTER_001_BLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313176" + "plane" "(2096 -3248 208) (2096 -3424 208) (2096 -3424 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" "313175" + "plane" "(2096 -3424 208) (1520 -3424 208) (1520 -3424 224)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313174" + "plane" "(1520 -3424 208) (1520 -3248 208) (1520 -3248 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" "313173" + "plane" "(1520 -3248 208) (2096 -3248 208) (2096 -3248 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 103 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2589979" + side + { + "id" "313184" + "plane" "(1520 -3216 224) (2096 -3216 224) (2096 -3248 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" "313183" + "plane" "(2096 -3248 208) (2096 -3216 208) (1520 -3216 208)" + "material" "DE_NUKE/HR_NUKE/OFFICELIGHT_EMITTER_001_BLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313182" + "plane" "(2096 -3216 208) (2096 -3248 208) (2096 -3248 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" "313181" + "plane" "(1520 -3216 208) (2096 -3216 208) (2096 -3216 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" "313180" + "plane" "(1520 -3248 208) (1520 -3216 208) (1520 -3216 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" "313179" + "plane" "(2096 -3248 208) (1520 -3248 208) (1520 -3248 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 103 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2594378" + side + { + "id" "316502" + "plane" "(1924 -3216 0) (2096 -3216 0) (2128 -3200 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" "316501" + "plane" "(2128 -3200 0) (2096 -3216 0) (2096 -3216 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" "316500" + "plane" "(1924 -3200 0) (2128 -3200 0) (2128 -3200 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" "316499" + "plane" "(2096 -3216 0) (1924 -3216 0) (1924 -3216 192)" + "material" "CS_APOLLO/DECALS/SHUTTLE_MURAL_001_FULL" + "uaxis" "[1 0 0 -500] 0.2" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "316498" + "plane" "(1924 -3216 0) (1924 -3200 0) (1924 -3200 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" "316497" + "plane" "(2128 -3200 192) (2096 -3216 192) (1924 -3216 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 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2594379" + side + { + "id" "316508" + "plane" "(2128 -3200 224) (2096 -3216 224) (1924 -3216 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" "316507" + "plane" "(2096 -3216 192) (2096 -3216 224) (2128 -3200 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" "316506" + "plane" "(2128 -3200 192) (2128 -3200 224) (1924 -3200 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" "316505" + "plane" "(1924 -3216 192) (1924 -3216 224) (2096 -3216 224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -225.386] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "316504" + "plane" "(1924 -3200 192) (1924 -3200 224) (1924 -3216 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" "316503" + "plane" "(1924 -3216 192) (2096 -3216 192) (2128 -3200 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 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2594384" + side + { + "id" "316514" + "plane" "(1888 -3200 129) (1924 -3200 129) (1924 -3200 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" "316513" + "plane" "(1924 -3216 192) (1924 -3216 129) (1888 -3216 129)" + "material" "CS_APOLLO/DECALS/SHUTTLE_MURAL_001_FULL" + "uaxis" "[1 0 0 -500] 0.2" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "316512" + "plane" "(1924 -3216 129) (1924 -3216 192) (1924 -3200 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" "316511" + "plane" "(1924 -3200 129) (1888 -3200 129) (1888 -3216 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "316510" + "plane" "(1888 -3200 129) (1888 -3200 192) (1888 -3216 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" "316509" + "plane" "(1924 -3216 192) (1888 -3216 192) (1888 -3200 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 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2594385" + side + { + "id" "316520" + "plane" "(1924 -3216 224) (1888 -3216 224) (1888 -3200 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" "316519" + "plane" "(1924 -3200 192) (1924 -3200 224) (1888 -3200 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" "316518" + "plane" "(1888 -3216 224) (1924 -3216 224) (1924 -3216 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -225.386] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "316517" + "plane" "(1924 -3216 192) (1924 -3216 224) (1924 -3200 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" "316516" + "plane" "(1888 -3200 192) (1888 -3200 224) (1888 -3216 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" "316515" + "plane" "(1924 -3200 192) (1888 -3200 192) (1888 -3216 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 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2595664" + side + { + "id" "317126" + "plane" "(1798 -3200 192) (1798 -3200 129) (1888 -3200 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317125" + "plane" "(1888 -3216 129) (1798 -3216 129) (1798 -3216 192)" + "material" "CS_APOLLO/DECALS/SHUTTLE_MURAL_001_FULL" + "uaxis" "[1 0 0 -500] 0.2" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317124" + "plane" "(1798 -3200 129) (1798 -3200 192) (1798 -3216 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" "317123" + "plane" "(1888 -3200 129) (1798 -3200 129) (1798 -3216 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317122" + "plane" "(1888 -3216 129) (1888 -3216 192) (1888 -3200 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" "317121" + "plane" "(1888 -3216 192) (1798 -3216 192) (1798 -3200 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 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2595665" + side + { + "id" "317132" + "plane" "(1888 -3216 224) (1798 -3216 224) (1798 -3200 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" "317131" + "plane" "(1888 -3200 224) (1798 -3200 224) (1798 -3200 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" "317130" + "plane" "(1798 -3216 192) (1798 -3216 224) (1888 -3216 224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -225.386] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317129" + "plane" "(1798 -3200 192) (1798 -3200 224) (1798 -3216 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" "317128" + "plane" "(1888 -3216 192) (1888 -3216 224) (1888 -3200 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" "317127" + "plane" "(1888 -3200 192) (1798 -3200 192) (1798 -3216 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 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2595666" + side + { + "id" "317138" + "plane" "(1798 -3200 0) (1536 -3200 0) (1536 -3216 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" "317137" + "plane" "(1536 -3216 0) (1536 -3200 0) (1536 -3200 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" "317136" + "plane" "(1536 -3200 0) (1798 -3200 0) (1798 -3200 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" "317135" + "plane" "(1798 -3216 0) (1536 -3216 0) (1536 -3216 192)" + "material" "CS_APOLLO/DECALS/SHUTTLE_MURAL_001_FULL" + "uaxis" "[1 0 0 -778] 0.2" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317134" + "plane" "(1798 -3200 0) (1798 -3216 0) (1798 -3216 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" "317133" + "plane" "(1798 -3216 192) (1536 -3216 192) (1536 -3200 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 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2595667" + side + { + "id" "317144" + "plane" "(1798 -3216 224) (1536 -3216 224) (1536 -3200 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" "317143" + "plane" "(1536 -3200 192) (1536 -3200 224) (1536 -3216 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" "317142" + "plane" "(1798 -3200 192) (1798 -3200 224) (1536 -3200 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" "317141" + "plane" "(1536 -3216 192) (1536 -3216 224) (1798 -3216 224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -225.386] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317140" + "plane" "(1798 -3216 192) (1798 -3216 224) (1798 -3200 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" "317139" + "plane" "(1798 -3200 192) (1536 -3200 192) (1536 -3216 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 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2595668" + side + { + "id" "317150" + "plane" "(1520 -3056 16) (1520 -3216 16) (1536 -3216 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -6.39941] 0.227273" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317149" + "plane" "(1520 -3216 192) (1520 -3216 16) (1520 -3056 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "12" + "smoothing_groups" "0" + } + side + { + "id" "317148" + "plane" "(1536 -3056 192) (1536 -3056 16) (1536 -3216 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 143.992] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317147" + "plane" "(1536 -3216 192) (1536 -3216 16) (1520 -3216 16)" + "material" "CS_APOLLO/DECALS/SHUTTLE_MURAL_001_FULL" + "uaxis" "[1 0 0 -778] 0.2" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317146" + "plane" "(1520 -3056 192) (1520 -3056 16) (1536 -3056 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" "317145" + "plane" "(1520 -3216 192) (1520 -3056 192) (1536 -3056 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 144 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2595669" + side + { + "id" "317156" + "plane" "(1520 -3216 208) (1520 -3216 192) (1520 -3056 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "12" + "smoothing_groups" "0" + } + side + { + "id" "317155" + "plane" "(1536 -3056 208) (1536 -3056 192) (1536 -3216 192)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 143.992] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317154" + "plane" "(1536 -3216 208) (1536 -3216 192) (1520 -3216 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -383.996] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317153" + "plane" "(1520 -3056 208) (1520 -3056 192) (1536 -3056 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" "317152" + "plane" "(1520 -3216 208) (1520 -3056 208) (1536 -3056 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" "317151" + "plane" "(1520 -3056 192) (1520 -3216 192) (1536 -3216 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 144 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2597284" + side + { + "id" "317517" + "plane" "(1520 -3216 208) (2096 -3216 208) (2096 -3224 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317518" + "plane" "(1520 -3224 15.9999) (2096 -3224 15.9999) (2096 -3216 15.9999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317519" + "plane" "(1520 -3216 208) (1520 -3224 208) (1520 -3224 15.9999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317520" + "plane" "(2096 -3216 15.9999) (2096 -3224 15.9999) (2096 -3224 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317521" + "plane" "(2096 -3216 208) (1520 -3216 208) (1520 -3216 15.9999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "317522" + "plane" "(2096 -3224 15.9999) (1520 -3224 15.9999) (1520 -3224 208)" + "material" "TOOLS/TOOLSCLIP" + "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 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2573498" + side + { + "id" "308804" + "plane" "(1344 -3424 224) (1344 -3144 224) (1520 -3144 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" "308803" + "plane" "(1344 -3144 208) (1344 -3424 208) (1520 -3424 208)" + "material" "DE_NUKE/HR_NUKE/OFFICELIGHT_EMITTER_001_BLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308802" + "plane" "(1344 -3424 208) (1344 -3144 208) (1344 -3144 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" "308801" + "plane" "(1520 -3424 208) (1344 -3424 208) (1344 -3424 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" "308800" + "plane" "(1344 -3144 208) (1520 -3144 208) (1520 -3144 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" "308799" + "plane" "(1520 -3144 208) (1520 -3424 208) (1520 -3424 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" + } + editor + { + "color" "0 103 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2573612" + side + { + "id" "308924" + "plane" "(1520 -2844 0) (1520 -2880 0) (1536 -2880 0)" + "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" "308923" + "plane" "(1520 -2844 0) (1540 -2844 0) (1540 -2844 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.961524 -0.274721 0 -41.1135] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308922" + "plane" "(1520 -2844 0) (1520 -2844 240) (1520 -2880 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.0830443 0.996545 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308921" + "plane" "(1540 -2844 0) (1536 -2880 0) (1536 -2880 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.110434 0.993883 0 -329.94] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308920" + "plane" "(1520 -2844 240) (1540 -2844 240) (1536 -2880 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" "308919" + "plane" "(1536 -2880 0) (1520 -2880 0) (1520 -2880 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" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2573711" + side + { + "id" "309038" + "plane" "(1328 -2896 -40) (1536 -2896 -40) (1536 -2880 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309037" + "plane" "(1536 -2880 -40) (1536 -2896 -40) (1536 -2896 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 143.992] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309036" + "plane" "(1328 -2880 -40) (1536 -2880 -40) (1536 -2880 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309035" + "plane" "(1536 -2896 -40) (1328 -2896 -40) (1328 -2896 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -482.57] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309034" + "plane" "(1328 -2896 -40) (1328 -2880 -40) (1328 -2880 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" "309033" + "plane" "(1328 -2880 240) (1536 -2880 240) (1536 -2896 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" + } + editor + { + "color" "0 211 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2573712" + side + { + "id" "309044" + "plane" "(1328 -2880 368) (1536 -2880 368) (1536 -2896 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" "309043" + "plane" "(1536 -2896 240) (1536 -2896 368) (1536 -2880 368)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 511.994] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309042" + "plane" "(1536 -2880 240) (1536 -2880 368) (1328 -2880 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309041" + "plane" "(1328 -2896 240) (1328 -2896 368) (1536 -2896 368)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -482.57] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "309040" + "plane" "(1328 -2880 240) (1328 -2880 368) (1328 -2896 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" "309039" + "plane" "(1328 -2896 240) (1536 -2896 240) (1536 -2880 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" + } + editor + { + "color" "0 211 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2576334" + side + { + "id" "310983" + "plane" "(1536 -3200 368) (1536 -3168 368) (2128 -3168 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" "310984" + "plane" "(1536 -3168 208) (1536 -3200 208) (2128 -3200 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" "310985" + "plane" "(1536 -3200 208) (1536 -3168 208) (1536 -3168 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" "310986" + "plane" "(2128 -3168 208) (2128 -3200 208) (2128 -3200 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" "310987" + "plane" "(1536 -3168 208) (2128 -3168 208) (2128 -3168 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" "310988" + "plane" "(2128 -3200 208) (1536 -3200 208) (1536 -3200 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 122 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2561777" + side + { + "id" "308420" + "plane" "(1536 -3168 240) (1536 -3168 208) (1536 -3136 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" "308419" + "plane" "(1536 -3136 240) (1536 -3136 208) (1800 -3136 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.997] 0.25" + "vaxis" "[-1 0 0 255.994] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308418" + "plane" "(1536 -3168 208) (1536 -3168 240) (1800 -3168 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" "308417" + "plane" "(1800 -3168 240) (1536 -3168 240) (1536 -3136 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" "308416" + "plane" "(1800 -3136 240) (1536 -3136 208) (1536 -3168 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" + } + editor + { + "color" "0 130 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2537831" + side + { + "id" "308044" + "plane" "(-760 -4610 32) (-760 -4088 32) (-644 -4088 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308045" + "plane" "(-760 -4088 16) (-760 -4610 16) (-644 -4610 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" "308046" + "plane" "(-760 -4610 16) (-760 -4088 16) (-760 -4088 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" "308047" + "plane" "(-644 -4088 16) (-644 -4610 16) (-644 -4610 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" "308048" + "plane" "(-760 -4088 16) (-644 -4088 16) (-644 -4088 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" "308049" + "plane" "(-644 -4610 16) (-760 -4610 16) (-760 -4610 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 230 251" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2525975" + side + { + "id" "308020" + "plane" "(-804 -2046 492.5) (-804 -2002 492.5) (-544 -2002 492.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308021" + "plane" "(-804 -2002 -24.5) (-804 -2046 -24.5) (-544 -2046 -24.5)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308022" + "plane" "(-804 -2046 -24.5) (-804 -2002 -24.5) (-804 -2002 492.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308023" + "plane" "(-544 -2002 -24.5) (-544 -2046 -24.5) (-544 -2046 492.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308024" + "plane" "(-804 -2002 -24.5) (-544 -2002 -24.5) (-544 -2002 492.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308025" + "plane" "(-544 -2046 -24.5) (-804 -2046 -24.5) (-804 -2046 492.498)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2526479" + side + { + "id" "308026" + "plane" "(-2512 -2912 192) (-2496 -2912 192) (-2496 -3560 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" "308027" + "plane" "(-2512 -3560 -24) (-2496 -3560 -24) (-2496 -2912 -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" + } + side + { + "id" "308028" + "plane" "(-2512 -2912 192) (-2512 -3560 192) (-2512 -3560 -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" "308029" + "plane" "(-2496 -2912 -24) (-2496 -3560 -24) (-2496 -3560 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" "308030" + "plane" "(-2496 -2912 192) (-2512 -2912 192) (-2512 -2912 -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" "308031" + "plane" "(-2496 -3560 -24) (-2512 -3560 -24) (-2512 -3560 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 177 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2526480" + side + { + "id" "308032" + "plane" "(-3352 -2912 32) (-2512 -2912 32) (-2512 -3824 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" "308033" + "plane" "(-3352 -3824 -16) (-2512 -3824 -16) (-2512 -2912 -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" "308034" + "plane" "(-3352 -2912 32) (-3352 -3824 32) (-3352 -3824 -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" "308035" + "plane" "(-2512 -2912 -16) (-2512 -3824 -16) (-2512 -3824 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" "308036" + "plane" "(-2512 -2912 32) (-3352 -2912 32) (-3352 -2912 -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" "308037" + "plane" "(-2512 -3824 -16) (-3352 -3824 -16) (-3352 -3824 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 219 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2512626" + side + { + "id" "307756" + "plane" "(-1272 -2984 -200) (-1272 -2920 -200) (-1072 -2920 -200)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307755" + "plane" "(-1272 -2920 -224) (-1272 -2984 -224) (-1072 -2984 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307754" + "plane" "(-1072 -2920 -224) (-1072 -2984 -224) (-1072 -2984 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307753" + "plane" "(-1272 -2984 -224) (-1272 -2920 -224) (-1272 -2920 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307752" + "plane" "(-1272 -2920 -224) (-1072 -2920 -224) (-1072 -2920 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307751" + "plane" "(-1072 -2984 -224) (-1272 -2984 -224) (-1272 -2984 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2512651" + side + { + "id" "307762" + "plane" "(-1056 -3208 -200) (-1272 -3208 -200) (-1272 -3000 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307761" + "plane" "(-1272 -3000 -224) (-1272 -3208 -224) (-1056 -3208 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307760" + "plane" "(-1056 -3208 -224) (-1272 -3208 -224) (-1272 -3208 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307759" + "plane" "(-1056 -3000 -224) (-1056 -3208 -224) (-1056 -3208 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307758" + "plane" "(-1272 -3208 -224) (-1272 -3000 -224) (-1272 -3000 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307757" + "plane" "(-1272 -3000 -224) (-1056 -3000 -224) (-1056 -3000 -200)" + "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 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2512652" + side + { + "id" "307768" + "plane" "(-1272 -3000 -200) (-1272 -2984 -200) (-1072 -2984 -200)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307767" + "plane" "(-1272 -2984 -224) (-1272 -3000 -224) (-1072 -3000 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307766" + "plane" "(-1072 -2984 -224) (-1072 -3000 -224) (-1072 -3000 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307765" + "plane" "(-1272 -3000 -224) (-1272 -2984 -224) (-1272 -2984 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307764" + "plane" "(-1272 -2984 -224) (-1072 -2984 -224) (-1072 -2984 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307763" + "plane" "(-1072 -3000 -224) (-1272 -3000 -224) (-1272 -3000 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2512726" + side + { + "id" "307797" + "plane" "(-1056 -2984 -200) (-1056 -3000 -200) (-1072 -3000 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307796" + "plane" "(-1072 -3000 -224) (-1056 -3000 -224) (-1056 -2984 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307795" + "plane" "(-1056 -2984 -224) (-1056 -3000 -224) (-1056 -3000 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307794" + "plane" "(-1056 -3000 -224) (-1072 -3000 -224) (-1072 -3000 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307793" + "plane" "(-1072 -3000 -224) (-1056 -2984 -224) (-1056 -2984 -200)" + "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 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2512727" + side + { + "id" "307803" + "plane" "(-1072 -3000 -200) (-1072 -2920 -200) (-1056 -2920 -200)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307802" + "plane" "(-1056 -2920 -224) (-1072 -2920 -224) (-1072 -3000 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307801" + "plane" "(-1072 -3000 -224) (-1072 -2920 -224) (-1072 -2920 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307800" + "plane" "(-1072 -2920 -224) (-1056 -2920 -224) (-1056 -2920 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307799" + "plane" "(-1056 -2920 -224) (-1056 -2984 -224) (-1056 -2984 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307798" + "plane" "(-1056 -2984 -224) (-1072 -3000 -224) (-1072 -3000 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2498726" + side + { + "id" "307084" + "plane" "(-1024 -2912 128) (-1024 -2896 128) (-705 -2896 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" "307083" + "plane" "(-1024 -2896 -16) (-1024 -2896 128) (-1024 -2912 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" "307082" + "plane" "(-705 -2896 128) (-1024 -2896 128) (-1024 -2896 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307081" + "plane" "(-1024 -2912 -16) (-1024 -2912 128) (-705 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[1 0 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307080" + "plane" "(-1024 -2896 -16) (-1024 -2912 -16) (-705 -2912 -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" "307079" + "plane" "(-705 -2912 -16) (-705 -2912 128) (-705 -2896 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 250 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2498763" + side + { + "id" "307102" + "plane" "(480 -2128 -40) (480 -2220 -40) (496 -2220 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307101" + "plane" "(480 -2220 -40) (480 -2128 -40) (480 -2128 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307100" + "plane" "(496 -2128 -16) (496 -2128 -40) (496 -2220 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307099" + "plane" "(480 -2128 -16) (480 -2128 -40) (496 -2128 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307098" + "plane" "(480 -2220 -16) (480 -2128 -16) (496 -2128 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307097" + "plane" "(496 -2220 -16) (496 -2220 -40) (480 -2220 -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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2498770" + side + { + "id" "307108" + "plane" "(480 -2434 128) (480 -2434 8) (480 -2208 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307107" + "plane" "(496 -2208 8) (496 -2434 8) (496 -2434 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307106" + "plane" "(480 -2208 8) (480 -2434 8) (496 -2434 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307105" + "plane" "(496 -2434 128) (496 -2434 8) (480 -2434 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -207.996] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307104" + "plane" "(480 -2434 128) (480 -2208 128) (496 -2208 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307103" + "plane" "(480 -2208 128) (480 -2208 8) (496 -2208 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2498771" + side + { + "id" "307114" + "plane" "(480 -2208 -16) (480 -2128 -16) (480 -2128 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307113" + "plane" "(496 -2128 128) (496 -2128 -16) (496 -2208 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307112" + "plane" "(480 -2128 128) (480 -2128 -16) (496 -2128 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307111" + "plane" "(480 -2128 -16) (480 -2208 -16) (496 -2208 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307110" + "plane" "(480 -2208 128) (480 -2128 128) (496 -2128 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307109" + "plane" "(496 -2208 128) (496 -2208 -16) (480 -2208 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2498882" + side + { + "id" "307126" + "plane" "(480 -2208 -16) (480 -2220 -16) (496 -2220 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307125" + "plane" "(480 -2220 -16) (480 -2208 -16) (480 -2208 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307124" + "plane" "(496 -2208 -16) (496 -2220 -16) (496 -2220 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307123" + "plane" "(480 -2220 8) (480 -2208 8) (496 -2208 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307122" + "plane" "(480 -2208 8) (480 -2208 -16) (496 -2208 -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" "307121" + "plane" "(496 -2220 8) (496 -2220 -16) (480 -2220 -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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2498959" + side + { + "id" "307138" + "plane" "(480 -2220 -16) (480 -2220 8) (480 -2256 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307137" + "plane" "(496 -2256 8) (496 -2220 8) (496 -2220 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307136" + "plane" "(480 -2256 8) (480 -2220 8) (496 -2220 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307135" + "plane" "(480 -2220 8) (480 -2220 -16) (496 -2220 -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" "307134" + "plane" "(480 -2220 -16) (480 -2256 8) (496 -2256 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" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2498969" + side + { + "id" "307144" + "plane" "(480 -2256 -40) (480 -2434 -40) (496 -2434 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307143" + "plane" "(480 -2434 -40) (480 -2256 -40) (480 -2256 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307142" + "plane" "(496 -2256 -40) (496 -2434 -40) (496 -2434 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307141" + "plane" "(480 -2434 8) (480 -2256 8) (496 -2256 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307140" + "plane" "(496 -2434 8) (496 -2434 -40) (480 -2434 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -207.996] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307139" + "plane" "(480 -2256 8) (480 -2256 -40) (496 -2256 -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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2498970" + side + { + "id" "307150" + "plane" "(480 -2220 -40) (480 -2256 -40) (496 -2256 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307149" + "plane" "(480 -2256 -40) (480 -2220 -40) (480 -2220 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -0.829038 0.559194 -179] 0.125" + "vaxis" "[0 -0.559194 -0.829038 -54] 0.125" + "rotation" "34" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307148" + "plane" "(496 -2220 -40) (496 -2256 -40) (496 -2256 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307147" + "plane" "(480 -2220 -16) (480 -2220 -40) (496 -2220 -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" "307146" + "plane" "(480 -2256 8) (480 -2220 -16) (496 -2220 -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" "307145" + "plane" "(496 -2256 8) (496 -2256 -40) (480 -2256 -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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499179" + side + { + "id" "307168" + "plane" "(-648 -2912 -16) (-648 -2912 8) (-648 -2896 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307167" + "plane" "(-705 -2896 -16) (-648 -2896 -16) (-648 -2896 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307166" + "plane" "(-648 -2912 8) (-648 -2912 -16) (-705 -2912 -16)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[1 0 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307165" + "plane" "(-705 -2912 -16) (-648 -2912 -16) (-648 -2896 -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" "307164" + "plane" "(-705 -2896 -16) (-705 -2896 8) (-705 -2912 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" "307163" + "plane" "(-705 -2896 8) (-648 -2896 8) (-648 -2912 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" + } + editor + { + "color" "0 250 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499180" + side + { + "id" "307174" + "plane" "(-705 -2896 128) (-648 -2896 128) (-648 -2912 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" "307173" + "plane" "(-648 -2912 8) (-648 -2912 128) (-648 -2896 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307172" + "plane" "(-648 -2896 8) (-648 -2896 128) (-705 -2896 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307171" + "plane" "(-705 -2912 128) (-648 -2912 128) (-648 -2912 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[1 0 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307170" + "plane" "(-705 -2896 8) (-705 -2896 128) (-705 -2912 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" "307169" + "plane" "(-705 -2912 8) (-648 -2912 8) (-648 -2896 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" + } + editor + { + "color" "0 250 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499358" + side + { + "id" "307227" + "plane" "(-400 -2328 -24) (-400 -2240 -24) (-272 -2240 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307226" + "plane" "(-400 -2240 -80) (-400 -2328 -80) (-272 -2328 -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" "307225" + "plane" "(-400 -2328 -80) (-400 -2240 -80) (-400 -2240 -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" "307224" + "plane" "(-272 -2240 -80) (-272 -2328 -80) (-272 -2328 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307223" + "plane" "(-400 -2240 -80) (-272 -2240 -80) (-272 -2240 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[-1 0 0 -639.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307222" + "plane" "(-272 -2328 -80) (-400 -2328 -80) (-400 -2328 -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 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499385" + side + { + "id" "307259" + "plane" "(-336 -2360 -24) (-336 -2469 -24) (-592 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307258" + "plane" "(-592 -2360 -32) (-592 -2469 -32) (-336 -2469 -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" "307257" + "plane" "(-336 -2360 -32) (-336 -2469 -32) (-336 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307256" + "plane" "(-336 -2469 -32) (-592 -2469 -32) (-592 -2469 -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" "307255" + "plane" "(-592 -2469 -32) (-592 -2360 -32) (-592 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307254" + "plane" "(-592 -2360 -32) (-336 -2360 -32) (-336 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499413" + side + { + "id" "307271" + "plane" "(-592 -2469 -24) (-800 -2469 -24) (-800 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307270" + "plane" "(-800 -2360 -32) (-800 -2469 -32) (-592 -2469 -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" "307269" + "plane" "(-592 -2469 -32) (-800 -2469 -32) (-800 -2469 -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" "307268" + "plane" "(-800 -2469 -32) (-800 -2360 -32) (-800 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307267" + "plane" "(-592 -2360 -32) (-592 -2469 -32) (-592 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307266" + "plane" "(-800 -2360 -32) (-592 -2360 -32) (-592 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499424" + side + { + "id" "307277" + "plane" "(-800 -2328 -24) (-800 -2144 -24) (-400 -2144 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307276" + "plane" "(-400 -2144 -32) (-800 -2144 -32) (-800 -2328 -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" "307275" + "plane" "(-800 -2328 -32) (-800 -2144 -32) (-800 -2144 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307274" + "plane" "(-800 -2144 -32) (-400 -2144 -32) (-400 -2144 -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" "307273" + "plane" "(-400 -2144 -32) (-400 -2328 -32) (-400 -2328 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307272" + "plane" "(-400 -2328 -32) (-800 -2328 -32) (-800 -2328 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499425" + side + { + "id" "307283" + "plane" "(-1040 -2469 -24) (-1056 -2469 -24) (-1056 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307282" + "plane" "(-1056 -2360 -32) (-1056 -2469 -32) (-1040 -2469 -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" "307281" + "plane" "(-1056 -2469 -32) (-1056 -2360 -32) (-1056 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307280" + "plane" "(-1040 -2469 -32) (-1056 -2469 -32) (-1056 -2469 -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" "307279" + "plane" "(-1040 -2360 -32) (-1040 -2469 -32) (-1040 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307278" + "plane" "(-1056 -2360 -32) (-1040 -2360 -32) (-1040 -2360 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499436" + side + { + "id" "307289" + "plane" "(-2208 -2328 -24) (-2208 -2144 -24) (-1040 -2144 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307288" + "plane" "(-1040 -2328 -32) (-1040 -2144 -32) (-2208 -2144 -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" "307287" + "plane" "(-1040 -2144 -32) (-1040 -2328 -32) (-1040 -2328 -24)" + "material" "CONCRETE/HR_C/HR_CONC_F" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307286" + "plane" "(-2208 -2144 -32) (-1040 -2144 -32) (-1040 -2144 -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" "307285" + "plane" "(-2208 -2328 -32) (-2208 -2144 -32) (-2208 -2144 -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" "307284" + "plane" "(-1040 -2328 -32) (-2208 -2328 -32) (-2208 -2328 -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 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499447" + side + { + "id" "307309" + "plane" "(-2208 -2360 -24) (-1056 -2360 -24) (-1056 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307308" + "plane" "(-2208 -2544 -32) (-1131 -2544 -32) (-1056 -2469 -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" "307307" + "plane" "(-1056 -2469 -32) (-1056 -2469 -24) (-1056 -2360 -24)" + "material" "CONCRETE/HR_C/HR_CONC_F" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307306" + "plane" "(-2208 -2360 -32) (-2208 -2360 -24) (-2208 -2544 -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" "307305" + "plane" "(-2208 -2544 -32) (-2208 -2544 -24) (-1131 -2544 -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" "307304" + "plane" "(-1131 -2544 -32) (-1131 -2544 -24) (-1056 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307303" + "plane" "(-1056 -2360 -32) (-1056 -2360 -24) (-2208 -2360 -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 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499530" + side + { + "id" "307315" + "plane" "(-112 -1936 -48) (160 -1936 -48) (160 -1920 -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" "307314" + "plane" "(-112 -1920 -48) (160 -1920 -48) (160 -1920 -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" "307313" + "plane" "(160 -1936 -48) (-112 -1936 -48) (-112 -1936 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307312" + "plane" "(-112 -1920 -16) (160 -1920 -16) (160 -1936 -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" "307311" + "plane" "(-112 -1936 -16) (-112 -1936 -48) (-112 -1920 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307310" + "plane" "(160 -1920 -16) (160 -1920 -48) (160 -1936 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499531" + side + { + "id" "307321" + "plane" "(352 -1936 -48) (624 -1936 -48) (624 -1920 -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" "307320" + "plane" "(624 -1920 -16) (624 -1920 -48) (624 -1936 -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" "307319" + "plane" "(352 -1920 -48) (624 -1920 -48) (624 -1920 -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" "307318" + "plane" "(624 -1936 -16) (624 -1936 -48) (352 -1936 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307317" + "plane" "(352 -1920 -16) (624 -1920 -16) (624 -1936 -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" "307316" + "plane" "(352 -1936 -16) (352 -1936 -48) (352 -1920 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499534" + side + { + "id" "307322" + "plane" "(-304 -1752 -24) (352 -1752 -24) (352 -1936 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307323" + "plane" "(-304 -1936 -32) (352 -1936 -32) (352 -1752 -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" "307324" + "plane" "(-304 -1752 -24) (-304 -1936 -24) (-304 -1936 -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" "307325" + "plane" "(352 -1752 -32) (352 -1936 -32) (352 -1936 -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" "307326" + "plane" "(352 -1752 -24) (-304 -1752 -24) (-304 -1752 -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" "307327" + "plane" "(352 -1936 -32) (-304 -1936 -32) (-304 -1936 -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 101 190" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499672" + side + { + "id" "307346" + "plane" "(368 -1752 192) (368 -1920 192) (352 -1920 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" "307347" + "plane" "(368 -1920 -48) (368 -1752 -48) (352 -1752 -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" "307348" + "plane" "(352 -1920 192) (352 -1920 -48) (352 -1752 -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" "307349" + "plane" "(368 -1920 -48) (368 -1920 192) (368 -1752 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" "307350" + "plane" "(352 -1752 192) (352 -1752 -48) (368 -1752 -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" "307351" + "plane" "(352 -1920 -48) (352 -1920 192) (368 -1920 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 233 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2499876" + side + { + "id" "307406" + "plane" "(-208 -1752 192) (256 -1752 192) (256 -1824 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" "307407" + "plane" "(-208 -1824 -48) (256 -1824 -48) (256 -1752 -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" "307408" + "plane" "(-208 -1752 192) (-208 -1824 192) (-208 -1824 -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" "307409" + "plane" "(256 -1752 -48) (256 -1824 -48) (256 -1824 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" "307410" + "plane" "(256 -1752 192) (-208 -1752 192) (-208 -1752 -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" "307411" + "plane" "(256 -1824 -48) (-208 -1824 -48) (-208 -1824 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 177 138" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2500046" + side + { + "id" "307486" + "plane" "(256 -1752 192) (352 -1752 192) (352 -1920 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" "307485" + "plane" "(352 -1920 -16) (352 -1920 192) (352 -1752 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" "307484" + "plane" "(352 -1752 -16) (352 -1752 192) (256 -1752 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" "307483" + "plane" "(256 -1824 -16) (256 -1824 192) (352 -1920 192)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307482" + "plane" "(256 -1752 -16) (256 -1752 192) (256 -1824 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" "307481" + "plane" "(352 -1920 -16) (352 -1752 -16) (256 -1752 -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" + } + editor + { + "color" "0 239 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2500047" + side + { + "id" "307492" + "plane" "(352 -1920 -24) (352 -1752 -24) (256 -1752 -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" + } + side + { + "id" "307491" + "plane" "(352 -1752 -24) (352 -1920 -24) (352 -1920 -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" "307490" + "plane" "(256 -1752 -24) (352 -1752 -24) (352 -1752 -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" "307489" + "plane" "(352 -1920 -24) (256 -1824 -24) (256 -1824 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307488" + "plane" "(256 -1824 -24) (256 -1752 -24) (256 -1752 -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" "307487" + "plane" "(256 -1752 -16) (352 -1752 -16) (352 -1920 -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" + } + editor + { + "color" "0 239 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2500690" + side + { + "id" "307552" + "plane" "(-3384 -2000 192) (-3384 -2000 -16) (-3384 -1984 -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" "307551" + "plane" "(-3384 -1984 192) (-3384 -1984 -16) (-2983 -1984 -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" "307550" + "plane" "(-2983 -2000 -16) (-3384 -2000 -16) (-3384 -2000 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307549" + "plane" "(-2983 -2000 192) (-3384 -2000 192) (-3384 -1984 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" "307548" + "plane" "(-2983 -1984 -16) (-3384 -1984 -16) (-3384 -2000 -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" "307547" + "plane" "(-2983 -1984 192) (-2983 -1984 -16) (-2983 -2000 -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" "0 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2500705" + side + { + "id" "307570" + "plane" "(-2983 -1984 -24) (-2809 -1984 -24) (-2809 -1984 169)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307569" + "plane" "(-2809 -2000 -24) (-2983 -2000 -24) (-2983 -2000 169)" + "material" "METAL/HR_METAL/ROLLUP_DOOR_001" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "307568" + "plane" "(-2809 -1984 -24) (-2983 -1984 -24) (-2983 -2000 -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" + } + side + { + "id" "307567" + "plane" "(-2983 -2000 169) (-2983 -2000 -24) (-2983 -1984 -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" "307566" + "plane" "(-2809 -1984 169) (-2809 -1984 -24) (-2809 -2000 -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" "307565" + "plane" "(-2809 -2000 169) (-2983 -2000 169) (-2983 -1984 169)" + "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 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2500706" + side + { + "id" "307576" + "plane" "(-2809 -1984 169) (-2809 -1984 192) (-2983 -1984 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" "307575" + "plane" "(-2983 -2000 169) (-2983 -2000 192) (-2809 -2000 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307574" + "plane" "(-2809 -2000 192) (-2983 -2000 192) (-2983 -1984 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" "307573" + "plane" "(-2983 -2000 192) (-2983 -2000 169) (-2983 -1984 169)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307572" + "plane" "(-2809 -1984 192) (-2809 -1984 169) (-2809 -2000 169)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307571" + "plane" "(-2809 -1984 169) (-2983 -1984 169) (-2983 -2000 169)" + "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 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2500713" + side + { + "id" "307588" + "plane" "(-2983 -1984 -24) (-3384 -1984 -24) (-3384 -2000 -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" + } + side + { + "id" "307587" + "plane" "(-3384 -2000 -16) (-3384 -2000 -24) (-3384 -1984 -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" "307586" + "plane" "(-3384 -1984 -16) (-3384 -1984 -24) (-2983 -1984 -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" "307585" + "plane" "(-2983 -2000 -24) (-3384 -2000 -24) (-3384 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307584" + "plane" "(-2983 -2000 -16) (-3384 -2000 -16) (-3384 -1984 -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" "307583" + "plane" "(-2983 -1984 -16) (-2983 -1984 -24) (-2983 -2000 -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" + } + editor + { + "color" "0 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486871" + side + { + "id" "306856" + "plane" "(288 -2712 144) (232 -2712 144) (232 -2700 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306855" + "plane" "(288 -2700 0) (232 -2700 0) (232 -2712 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" "306854" + "plane" "(232 -2712 0) (232 -2700 0) (232 -2700 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306853" + "plane" "(232 -2700 0) (288 -2700 0) (288 -2700 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306852" + "plane" "(288 -2712 0) (232 -2712 0) (232 -2712 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 789.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306851" + "plane" "(288 -2700 0) (288 -2712 0) (288 -2712 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 -351.998] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486879" + side + { + "id" "306868" + "plane" "(264 -2896 144) (232 -2896 144) (232 -2712 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306867" + "plane" "(264 -2712 0) (232 -2712 0) (232 -2896 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" "306866" + "plane" "(232 -2896 0) (232 -2712 0) (232 -2712 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306865" + "plane" "(264 -2896 0) (232 -2896 0) (232 -2896 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" "306864" + "plane" "(232 -2712 0) (264 -2712 0) (264 -2712 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" "306863" + "plane" "(264 -2712 0) (264 -2896 0) (264 -2896 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 192] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486880" + side + { + "id" "306874" + "plane" "(264 -2712 136) (480 -2712 136) (480 -2896 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 -113.778] 0.421875" + "vaxis" "[0 -1 0 -378.435] 0.359375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306873" + "plane" "(264 -2896 0) (480 -2896 0) (480 -2712 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" "306872" + "plane" "(480 -2712 0) (480 -2896 0) (480 -2896 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" "306871" + "plane" "(480 -2896 0) (264 -2896 0) (264 -2896 136)" + "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" "306870" + "plane" "(264 -2712 0) (480 -2712 0) (480 -2712 136)" + "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" "306869" + "plane" "(264 -2896 0) (264 -2712 0) (264 -2712 136)" + "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 141 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486887" + side + { + "id" "306886" + "plane" "(448 -2700 144) (480 -2700 144) (480 -2712 144)" + "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" "306885" + "plane" "(448 -2712 0) (480 -2712 0) (480 -2700 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" "306884" + "plane" "(480 -2700 0) (480 -2712 0) (480 -2712 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306883" + "plane" "(448 -2700 0) (480 -2700 0) (480 -2700 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306882" + "plane" "(480 -2712 0) (448 -2712 0) (448 -2712 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306881" + "plane" "(448 -2712 0) (448 -2700 0) (448 -2700 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 95.9961] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486893" + side + { + "id" "306892" + "plane" "(448 -2712 144) (288 -2712 144) (288 -2700 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306891" + "plane" "(448 -2700 120) (448 -2700 144) (288 -2700 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306890" + "plane" "(288 -2712 120) (288 -2712 144) (448 -2712 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 789.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306889" + "plane" "(288 -2700 120) (288 -2700 144) (288 -2712 144)" + "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" "306888" + "plane" "(448 -2712 120) (448 -2712 144) (448 -2700 144)" + "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" "306887" + "plane" "(448 -2700 120) (288 -2700 120) (288 -2712 120)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -585.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486898" + side + { + "id" "306904" + "plane" "(288 -2704 120) (288 -2704 24) (448 -2704 24)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[1 0 0 -819.2] 0.15625" + "vaxis" "[0 0 -1 128] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306903" + "plane" "(448 -2712 120) (448 -2712 24) (288 -2712 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" + } + side + { + "id" "306902" + "plane" "(288 -2712 120) (288 -2712 24) (288 -2704 24)" + "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" "306901" + "plane" "(448 -2704 120) (448 -2704 24) (448 -2712 24)" + "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" "306900" + "plane" "(448 -2712 120) (288 -2712 120) (288 -2704 120)" + "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" "306899" + "plane" "(448 -2704 24) (288 -2704 24) (288 -2712 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" "0 141 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486899" + side + { + "id" "306910" + "plane" "(448 -2700 0) (288 -2700 0) (288 -2712 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" "306909" + "plane" "(288 -2700 24) (288 -2700 0) (448 -2700 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306908" + "plane" "(448 -2712 24) (448 -2712 0) (288 -2712 0)" + "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" "306907" + "plane" "(288 -2712 24) (288 -2712 0) (288 -2700 0)" + "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" "306906" + "plane" "(448 -2700 24) (448 -2700 0) (448 -2712 0)" + "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" "306905" + "plane" "(448 -2712 24) (288 -2712 24) (288 -2700 24)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 373.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2487366" + side + { + "id" "306935" + "plane" "(-230 -2880 316.125) (21 -2880 316.125) (21 -2904 316.125)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306936" + "plane" "(-230 -2904 -23.875) (21 -2904 -23.875) (21 -2880 -23.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306937" + "plane" "(-230 -2880 316.125) (-230 -2904 316.125) (-230 -2904 -23.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306938" + "plane" "(21 -2880 -23.875) (21 -2904 -23.875) (21 -2904 316.125)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306939" + "plane" "(21 -2880 316.125) (-230 -2880 316.125) (-230 -2880 -23.875)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306940" + "plane" "(21 -2904 -23.875) (-230 -2904 -23.875) (-230 -2904 316.125)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2471257" + side + { + "id" "306588" + "plane" "(-2536 -2000 -24) (-2496 -2000 -24) (-2496 -2896 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306589" + "plane" "(-2536 -2896 -32) (-2496 -2896 -32) (-2496 -2000 -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" "306590" + "plane" "(-2536 -2000 -24) (-2536 -2896 -24) (-2536 -2896 -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" "306591" + "plane" "(-2496 -2000 -32) (-2496 -2896 -32) (-2496 -2896 -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" "306592" + "plane" "(-2496 -2000 -24) (-2536 -2000 -24) (-2536 -2000 -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" "306593" + "plane" "(-2496 -2896 -32) (-2536 -2896 -32) (-2536 -2896 -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 122 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2471708" + side + { + "id" "306659" + "plane" "(-2808 -2000 -24) (-2536 -2000 -24) (-2536 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306658" + "plane" "(-2808 -2896 -32) (-2536 -2896 -32) (-2536 -2000 -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" "306657" + "plane" "(-2536 -2000 -32) (-2536 -2896 -32) (-2536 -2896 -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" "306656" + "plane" "(-2808 -2000 -32) (-2536 -2000 -32) (-2536 -2000 -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" "306655" + "plane" "(-2536 -2896 -32) (-2808 -2896 -32) (-2808 -2896 -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" "306654" + "plane" "(-2808 -2896 -32) (-2808 -2000 -32) (-2808 -2000 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 104 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2471744" + side + { + "id" "306671" + "plane" "(-2808 -2896 -24) (-2856 -2896 -24) (-2856 -2000 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306670" + "plane" "(-2808 -2000 -32) (-2856 -2000 -32) (-2856 -2896 -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" "306669" + "plane" "(-2856 -2000 -32) (-2808 -2000 -32) (-2808 -2000 -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" "306668" + "plane" "(-2808 -2896 -32) (-2856 -2896 -32) (-2856 -2896 -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" "306667" + "plane" "(-2808 -2000 -32) (-2808 -2896 -32) (-2808 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306666" + "plane" "(-2856 -2896 -32) (-2856 -2000 -32) (-2856 -2000 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 104 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2471754" + side + { + "id" "306677" + "plane" "(-3368 -2048 -24) (-3368 -2000 -24) (-2856 -2000 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306676" + "plane" "(-2856 -2000 -32) (-3368 -2000 -32) (-3368 -2048 -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" "306675" + "plane" "(-3368 -2048 -32) (-3368 -2000 -32) (-3368 -2000 -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" "306674" + "plane" "(-3368 -2000 -32) (-2856 -2000 -32) (-2856 -2000 -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" "306673" + "plane" "(-2856 -2000 -32) (-2856 -2048 -32) (-2856 -2048 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306672" + "plane" "(-2856 -2048 -32) (-3368 -2048 -32) (-3368 -2048 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 104 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2471759" + side + { + "id" "306689" + "plane" "(-3368 -2848 -24) (-3368 -2048 -24) (-2856 -2048 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306688" + "plane" "(-3368 -2048 -32) (-3368 -2848 -32) (-2856 -2848 -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" "306687" + "plane" "(-3368 -2848 -32) (-3368 -2048 -32) (-3368 -2048 -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" "306686" + "plane" "(-2856 -2048 -32) (-2856 -2848 -32) (-2856 -2848 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306685" + "plane" "(-3368 -2048 -32) (-2856 -2048 -32) (-2856 -2048 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306684" + "plane" "(-2856 -2848 -32) (-3368 -2848 -32) (-3368 -2848 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 104 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2471760" + side + { + "id" "306695" + "plane" "(-2856 -2896 -24) (-3368 -2896 -24) (-3368 -2848 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306694" + "plane" "(-3368 -2848 -32) (-3368 -2896 -32) (-2856 -2896 -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" "306693" + "plane" "(-3368 -2896 -32) (-3368 -2848 -32) (-3368 -2848 -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" "306692" + "plane" "(-2856 -2896 -32) (-3368 -2896 -32) (-3368 -2896 -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" "306691" + "plane" "(-2856 -2848 -32) (-2856 -2896 -32) (-2856 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306690" + "plane" "(-3368 -2848 -32) (-2856 -2848 -32) (-2856 -2848 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 104 145" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2458856" + side + { + "id" "306299" + "plane" "(-400 -2240 -24) (-400 -2144 -24) (-336 -2144 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306298" + "plane" "(-336 -2144 -80) (-400 -2144 -80) (-400 -2240 -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" "306297" + "plane" "(-400 -2240 -80) (-400 -2144 -80) (-400 -2144 -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" "306296" + "plane" "(-400 -2144 -80) (-336 -2144 -80) (-336 -2144 -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" "306295" + "plane" "(-336 -2144 -80) (-336 -2240 -80) (-336 -2240 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[0 1 0 511.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306294" + "plane" "(-336 -2240 -80) (-400 -2240 -80) (-400 -2240 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2458926" + side + { + "id" "306337" + "plane" "(-336 -2176 -24) (-336 -2144 -24) (-32 -2144 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306336" + "plane" "(-32 -2144 -80) (-336 -2144 -80) (-336 -2176 -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" "306335" + "plane" "(-336 -2176 -80) (-336 -2144 -80) (-336 -2144 -24)" + "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" "306334" + "plane" "(-336 -2144 -80) (-32 -2144 -80) (-32 -2144 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306333" + "plane" "(-32 -2144 -80) (-32 -2176 -80) (-32 -2176 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306332" + "plane" "(-32 -2176 -80) (-336 -2176 -80) (-336 -2176 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2458976" + side + { + "id" "306398" + "plane" "(-1040 -2430 -24) (-1040 -2246 -24) (-800 -2246 -24)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306397" + "plane" "(-1040 -2246 -32) (-1040 -2430 -32) (-800 -2430 -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" "306396" + "plane" "(-1040 -2430 -32) (-1040 -2246 -32) (-1040 -2246 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306395" + "plane" "(-800 -2246 -32) (-800 -2430 -32) (-800 -2430 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306394" + "plane" "(-1040 -2246 -32) (-800 -2246 -32) (-800 -2246 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306393" + "plane" "(-800 -2430 -32) (-1040 -2430 -32) (-1040 -2430 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "217 214 0" + "groupid" "3468640" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2459640" + side + { + "id" "306560" + "plane" "(264 -2667 224) (480 -2667 224) (480 -2700 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306561" + "plane" "(264 -2700 0) (480 -2700 0) (480 -2667 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306562" + "plane" "(264 -2667 224) (264 -2700 224) (264 -2700 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306563" + "plane" "(480 -2667 0) (480 -2700 0) (480 -2700 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306564" + "plane" "(480 -2667 224) (264 -2667 224) (264 -2667 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306565" + "plane" "(480 -2700 0) (264 -2700 0) (264 -2700 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2459662" + side + { + "id" "306576" + "plane" "(406 -2667 224) (480 -2630 224) (480 -2667 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306575" + "plane" "(406 -2667 0) (480 -2667 0) (480 -2630 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306574" + "plane" "(480 -2630 0) (480 -2667 0) (480 -2667 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306573" + "plane" "(480 -2667 0) (406 -2667 0) (406 -2667 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306572" + "plane" "(406 -2667 0) (480 -2630 0) (480 -2630 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2459682" + side + { + "id" "306587" + "plane" "(264 -2667 224) (264 -2592 224) (327 -2667 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306586" + "plane" "(264 -2592 0) (264 -2667 0) (327 -2667 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306585" + "plane" "(264 -2667 0) (264 -2592 0) (264 -2592 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306584" + "plane" "(327 -2667 0) (264 -2667 0) (264 -2667 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306583" + "plane" "(264 -2592 0) (327 -2667 0) (327 -2667 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 201 230" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2446518" + side + { + "id" "306102" + "plane" "(-960 -9728 560) (-960 -6648 560) (-928 -6648 560)" + "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" "306101" + "plane" "(-960 -6648 -48) (-960 -6648 560) (-960 -9728 560)" + "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" "306100" + "plane" "(-928 -9728 -48) (-928 -9728 560) (-928 -6648 560)" + "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" "306099" + "plane" "(-960 -9728 -48) (-960 -9728 560) (-928 -9728 560)" + "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" "306098" + "plane" "(-928 -6648 -48) (-928 -6648 560) (-960 -6648 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306097" + "plane" "(-960 -6648 -48) (-960 -9728 -48) (-928 -9728 -48)" + "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" "0 246 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2446555" + side + { + "id" "306108" + "plane" "(-1376 -6664 560) (-1376 -6632 560) (-928 -6632 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306107" + "plane" "(-1376 -6632 24) (-1376 -6632 560) (-1376 -6664 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 -96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306106" + "plane" "(-928 -6664 24) (-928 -6664 560) (-928 -6632 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306105" + "plane" "(-928 -6632 24) (-928 -6632 560) (-1376 -6632 560)" + "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" "306104" + "plane" "(-1376 -6664 24) (-1376 -6664 560) (-928 -6664 560)" + "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" "306103" + "plane" "(-1376 -6632 24) (-1376 -6664 24) (-928 -6664 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" + } + editor + { + "color" "0 173 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2446562" + side + { + "id" "306115" + "plane" "(1191 -6714 -30) (1234 -6714 -30) (1234 -6988 -30)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.559193 0.829038 0 -521.906] 0.025" + "vaxis" "[0.829038 -0.559193 0 -757.69] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1191 -6988 -30]" + "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 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" + } + 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 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" + } + 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" "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" "306116" + "plane" "(1191 -6988 -31) (1234 -6988 -31) (1234 -6714 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0.898438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306117" + "plane" "(1191 -6714 -30) (1191 -6988 -30) (1191 -6988 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.898438] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306118" + "plane" "(1234 -6714 -31) (1234 -6988 -31) (1234 -6988 -30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.898438] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306119" + "plane" "(1234 -6714 -30) (1191 -6714 -30) (1191 -6714 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306120" + "plane" "(1234 -6988 -31) (1191 -6988 -31) (1191 -6988 -30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2446706" + side + { + "id" "306132" + "plane" "(2346 -6714 -30) (2389 -6714 -30) (2389 -6988 -30)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.559193 0.829038 0 -756.617] 0.025" + "vaxis" "[0.829038 -0.559193 0 -147.227] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2346 -6988 -30]" + "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 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" + } + 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 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" + } + 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" "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" "306131" + "plane" "(2346 -6988 -31) (2389 -6988 -31) (2389 -6714 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 0.898438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306130" + "plane" "(2346 -6714 -30) (2346 -6988 -30) (2346 -6988 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.898438] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306129" + "plane" "(2389 -6714 -31) (2389 -6988 -31) (2389 -6988 -30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.898438] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306128" + "plane" "(2389 -6714 -30) (2346 -6714 -30) (2346 -6714 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306127" + "plane" "(2389 -6988 -31) (2346 -6988 -31) (2346 -6988 -30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2447803" + side + { + "id" "306233" + "plane" "(1164 -6312 239.999) (1164 -5888 239.999) (1199 -5888 239.999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306232" + "plane" "(1164 -5888 0.124252) (1164 -6312 0.124252) (1199 -6384 0.124252)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306231" + "plane" "(1164 -6312 0.124713) (1164 -5888 0.124717) (1164 -5888 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306230" + "plane" "(1199 -5888 0.124824) (1199 -6384 0.124829) (1199 -6384 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306229" + "plane" "(1164 -5888 0.124781) (1199 -5888 0.124782) (1199 -5888 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306228" + "plane" "(1199 -6384 0.124713) (1164 -6312 0.124714) (1164 -6312 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 192 169" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2420463" + side + { + "id" "305900" + "plane" "(2224 -5888 -48) (2224 -6144 -48) (2256 -6144 -48)" + "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" "305899" + "plane" "(2224 -6144 48) (2224 -6144 -48) (2224 -5888 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -127] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305898" + "plane" "(2256 -5888 48) (2256 -5888 -48) (2256 -6144 -48)" + "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" "305897" + "plane" "(2224 -5888 48) (2224 -5888 -48) (2256 -5888 -48)" + "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" "305896" + "plane" "(2256 -6144 48) (2256 -6144 -48) (2224 -6144 -48)" + "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" "305895" + "plane" "(2224 -6144 48) (2224 -5888 48) (2256 -5888 48)" + "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" "0 232 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2420469" + side + { + "id" "305906" + "plane" "(2752 -6176 560) (2752 -6144 560) (2976 -6144 560)" + "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" "305905" + "plane" "(2752 -6144 32) (2752 -6144 560) (2752 -6176 560)" + "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" "305904" + "plane" "(2976 -6176 32) (2976 -6176 560) (2976 -6144 560)" + "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" "305903" + "plane" "(2976 -6144 32) (2976 -6144 560) (2752 -6144 560)" + "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" "305902" + "plane" "(2752 -6176 32) (2752 -6176 560) (2976 -6176 560)" + "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" "305901" + "plane" "(2752 -6144 32) (2752 -6176 32) (2976 -6176 32)" + "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" "0 114 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2420470" + side + { + "id" "305912" + "plane" "(2752 -6144 -48) (2752 -6176 -48) (2976 -6176 -48)" + "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" "305911" + "plane" "(2752 -6176 32) (2752 -6176 -48) (2752 -6144 -48)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305910" + "plane" "(2976 -6144 32) (2976 -6144 -48) (2976 -6176 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305909" + "plane" "(2752 -6144 32) (2752 -6144 -48) (2976 -6144 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305908" + "plane" "(2976 -6176 32) (2976 -6176 -48) (2752 -6176 -48)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305907" + "plane" "(2752 -6176 32) (2752 -6144 32) (2976 -6144 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 114 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2421219" + side + { + "id" "305937" + "plane" "(1200 -6331 -29) (1288 -6331 -29) (1288 -6609 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1200 -6609 -29]" + "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 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" + } + 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 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" + } + 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" "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" "305938" + "plane" "(1200 -6609 -30) (1288 -6609 -30) (1288 -6331 -30)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305939" + "plane" "(1200 -6331 -29) (1200 -6609 -29) (1200 -6609 -30)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305940" + "plane" "(1288 -6331 -30) (1288 -6609 -30) (1288 -6609 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305941" + "plane" "(1288 -6331 -29) (1200 -6331 -29) (1200 -6331 -30)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305942" + "plane" "(1288 -6609 -30) (1200 -6609 -30) (1200 -6609 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 117 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2421614" + side + { + "id" "305959" + "plane" "(1199 -5888 -25) (2224 -5888 -25) (2224 -5978 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1199 -5978 -25]" + "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 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" + } + 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 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" + } + 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" "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" "305960" + "plane" "(1199 -5978 -26) (2224 -5978 -26) (2224 -5888 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305961" + "plane" "(1199 -5888 -25) (1199 -5978 -25) (1199 -5978 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305962" + "plane" "(2224 -5888 -26) (2224 -5978 -26) (2224 -5978 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305963" + "plane" "(2224 -5888 -25) (1199 -5888 -25) (1199 -5888 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305964" + "plane" "(2224 -5978 -26) (1199 -5978 -26) (1199 -5978 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2421617" + side + { + "id" "305965" + "plane" "(2118 -5978 -25) (2224 -5978 -25) (2224 -6278 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2118 -6278 -25]" + "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 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" + } + 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 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" + } + 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" "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" "305966" + "plane" "(2118 -6278 -26) (2224 -6278 -26) (2224 -5978 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305967" + "plane" "(2118 -5978 -25) (2118 -6278 -25) (2118 -6278 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305968" + "plane" "(2224 -5978 -26) (2224 -6278 -26) (2224 -6278 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305969" + "plane" "(2224 -5978 -25) (2118 -5978 -25) (2118 -5978 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305970" + "plane" "(2224 -6278 -26) (2118 -6278 -26) (2118 -6278 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2421619" + side + { + "id" "305977" + "plane" "(2672 -7022 -25) (2672 -6278 -25) (2816 -6278 -25)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2672 -7022 -25]" + "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 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" + } + 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 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" + } + 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" "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" "305978" + "plane" "(2672 -6278 -26) (2672 -7022 -26) (2816 -7022 -26)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305979" + "plane" "(2672 -7022 -26) (2672 -6278 -26) (2672 -6278 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305980" + "plane" "(2816 -6278 -26) (2816 -7022 -26) (2816 -7022 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305981" + "plane" "(2672 -6278 -26) (2816 -6278 -26) (2816 -6278 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305982" + "plane" "(2816 -7022 -26) (2672 -7022 -26) (2672 -7022 -25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001B_BLEND" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 117 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2409744" + side + { + "id" "305745" + "plane" "(1739 -1640 -33) (1797 -1640 -33) (1797 -2148 -33)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1739 -2148 -33]" + "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 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" + } + 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 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" + } + 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" "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" "305746" + "plane" "(1739 -2148 -34) (1797 -2148 -34) (1797 -1640 -34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305747" + "plane" "(1739 -1640 -33) (1739 -2148 -33) (1739 -2148 -34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305748" + "plane" "(1797 -1640 -34) (1797 -2148 -34) (1797 -2148 -33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305749" + "plane" "(1797 -1640 -33) (1739 -1640 -33) (1739 -1640 -34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305750" + "plane" "(1797 -2148 -34) (1739 -2148 -34) (1739 -2148 -33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 224 133" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2399463" + side + { + "id" "305638" + "plane" "(1904 -5505 48) (1904 -5504 48) (2032 -5504 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" "305639" + "plane" "(1904 -5504 0) (1904 -5505 0) (2032 -5505 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" "305640" + "plane" "(1904 -5505 0) (1904 -5504 0) (1904 -5504 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" "305641" + "plane" "(2032 -5504 0) (2032 -5505 0) (2032 -5505 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" "305642" + "plane" "(1904 -5504 0) (2032 -5504 0) (2032 -5504 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" "305643" + "plane" "(2032 -5505 0) (1904 -5505 0) (1904 -5505 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 122 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2386697" + side + { + "id" "305246" + "plane" "(2808 -3192 368) (1792 -3192 368) (1792 -2560 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305245" + "plane" "(1792 -2560 352) (1792 -3192 352) (2808 -3192 352)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305244" + "plane" "(2808 -3192 352) (1792 -3192 352) (1792 -3192 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305243" + "plane" "(2808 -2560 352) (2808 -3192 352) (2808 -3192 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.575702 0.81766 0 -1.08273] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305242" + "plane" "(1792 -3192 352) (1792 -2560 352) (1792 -2560 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" "305241" + "plane" "(1792 -2560 352) (2808 -2560 352) (2808 -2560 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 248 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2386798" + side + { + "id" "305270" + "plane" "(1928 -3168 16) (2088 -3168 16) (2088 -3136 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" "305269" + "plane" "(2088 -3136 208) (2088 -3136 16) (2088 -3168 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" "305268" + "plane" "(1928 -3136 16) (2088 -3136 16) (2088 -3136 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 143.992] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305267" + "plane" "(2088 -3168 208) (2088 -3168 16) (1928 -3168 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" "305266" + "plane" "(1928 -3136 208) (2088 -3136 208) (2088 -3168 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" "305265" + "plane" "(1928 -3168 208) (1928 -3168 16) (1928 -3136 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" "0 130 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2386819" + side + { + "id" "305276" + "plane" "(1928 -3136 128) (1928 -3136 208) (1800 -3136 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 143.992] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305275" + "plane" "(1800 -3168 128) (1800 -3168 208) (1928 -3168 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" "305274" + "plane" "(1928 -3168 208) (1800 -3168 208) (1800 -3136 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" "305273" + "plane" "(1800 -3168 208) (1800 -3168 128) (1800 -3136 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" "305272" + "plane" "(1928 -3136 208) (1928 -3136 128) (1928 -3168 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" "305271" + "plane" "(1928 -3136 128) (1800 -3136 128) (1800 -3168 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 130 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2386820" + side + { + "id" "305282" + "plane" "(1928 -3152 16) (1800 -3152 16) (1800 -3168 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" "305281" + "plane" "(1800 -3152 16) (1928 -3152 16) (1928 -3152 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" "305280" + "plane" "(1928 -3168 16) (1800 -3168 16) (1800 -3168 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" "305279" + "plane" "(1800 -3168 128) (1800 -3168 16) (1800 -3152 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" "305278" + "plane" "(1928 -3152 128) (1928 -3152 16) (1928 -3168 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" "305277" + "plane" "(1928 -3168 128) (1800 -3168 128) (1800 -3152 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 130 107" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2386822" + side + { + "id" "305283" + "plane" "(1800 -3136 16) (1928 -3136 16) (1928 -3152 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305284" + "plane" "(1800 -3152 -40) (1928 -3152 -40) (1928 -3136 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305285" + "plane" "(1800 -3136 16) (1800 -3152 16) (1800 -3152 -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" "305286" + "plane" "(1928 -3136 -40) (1928 -3152 -40) (1928 -3152 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" "305287" + "plane" "(1928 -3136 16) (1800 -3136 16) (1800 -3136 -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" "305288" + "plane" "(1928 -3152 -40) (1800 -3152 -40) (1800 -3152 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 115 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387091" + side + { + "id" "305324" + "plane" "(1924 -3200 0) (1798 -3200 0) (1798 -3205 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" "305323" + "plane" "(1798 -3200 0) (1924 -3200 0) (1924 -3200 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305322" + "plane" "(1924 -3205 0) (1798 -3205 0) (1798 -3205 129)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305321" + "plane" "(1924 -3200 0) (1924 -3205 0) (1924 -3205 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305320" + "plane" "(1798 -3205 0) (1798 -3200 0) (1798 -3200 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305319" + "plane" "(1924 -3205 129) (1798 -3205 129) (1798 -3200 129)" + "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 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387222" + side + { + "id" "305325" + "plane" "(1798 -3216 16) (1798 -3205 16) (1924 -3205 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -92] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305326" + "plane" "(1798 -3205 0) (1798 -3216 0) (1924 -3216 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" "305327" + "plane" "(1798 -3216 0) (1798 -3205 0) (1798 -3205 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" "305328" + "plane" "(1924 -3205 0) (1924 -3216 0) (1924 -3216 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" "305329" + "plane" "(1798 -3205 0) (1924 -3205 0) (1924 -3205 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" "305330" + "plane" "(1924 -3216 0) (1798 -3216 0) (1798 -3216 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 229 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387563" + side + { + "id" "305337" + "plane" "(2112 -3584 144) (2128 -3584 144) (2128 -3596 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" "305338" + "plane" "(2112 -3596 128) (2128 -3596 128) (2128 -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" "305339" + "plane" "(2112 -3584 144) (2112 -3596 144) (2112 -3596 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305340" + "plane" "(2128 -3584 128) (2128 -3596 128) (2128 -3596 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.008] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305341" + "plane" "(2128 -3584 144) (2112 -3584 144) (2112 -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" + } + side + { + "id" "305342" + "plane" "(2128 -3596 128) (2112 -3596 128) (2112 -3596 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" + } + editor + { + "color" "0 169 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387571" + side + { + "id" "305343" + "plane" "(2112 -3700 144) (2128 -3700 144) (2128 -3712 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" "305344" + "plane" "(2112 -3712 128) (2128 -3712 128) (2128 -3700 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" "305345" + "plane" "(2112 -3700 144) (2112 -3712 144) (2112 -3712 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305346" + "plane" "(2128 -3700 128) (2128 -3712 128) (2128 -3712 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.008] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305347" + "plane" "(2128 -3700 144) (2112 -3700 144) (2112 -3700 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" "305348" + "plane" "(2128 -3712 128) (2112 -3712 128) (2112 -3712 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" + } + editor + { + "color" "0 113 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387585" + side + { + "id" "305354" + "plane" "(2128 -3792 208) (2128 -3792 144) (2128 -3776 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305353" + "plane" "(2128 -3776 208) (2128 -3776 144) (2608 -3776 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305352" + "plane" "(2128 -3792 144) (2128 -3792 208) (2608 -3792 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305351" + "plane" "(2608 -3792 208) (2128 -3792 208) (2128 -3776 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" "305350" + "plane" "(2608 -3776 208) (2608 -3776 144) (2608 -3792 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305349" + "plane" "(2608 -3776 144) (2128 -3776 144) (2128 -3792 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" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387586" + side + { + "id" "305360" + "plane" "(2128 -3792 144) (2128 -3792 16) (2128 -3776 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" "305359" + "plane" "(2128 -3776 144) (2128 -3776 16) (2608 -3776 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305358" + "plane" "(2608 -3792 144) (2608 -3792 16) (2128 -3792 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305357" + "plane" "(2608 -3776 144) (2608 -3776 16) (2608 -3792 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" "305356" + "plane" "(2608 -3776 16) (2128 -3776 16) (2128 -3792 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" "305355" + "plane" "(2608 -3792 144) (2128 -3792 144) (2128 -3776 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" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387623" + side + { + "id" "305384" + "plane" "(2768 -3776 96) (2640 -3776 96) (2640 -3792 96)" + "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" "305383" + "plane" "(2640 -3776 96) (2768 -3776 96) (2768 -3776 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305382" + "plane" "(2768 -3792 96) (2640 -3792 96) (2640 -3792 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305381" + "plane" "(2640 -3792 144) (2640 -3792 96) (2640 -3776 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" "305380" + "plane" "(2768 -3776 144) (2768 -3776 96) (2768 -3792 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" "305379" + "plane" "(2768 -3792 144) (2640 -3792 144) (2640 -3776 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" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387625" + side + { + "id" "305396" + "plane" "(2808 -3776 144) (2808 -3776 16) (2808 -3792 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.461467 0.887157 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305395" + "plane" "(2768 -3776 144) (2768 -3776 16) (2808 -3776 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305394" + "plane" "(2808 -3792 144) (2808 -3792 16) (2768 -3792 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305393" + "plane" "(2768 -3792 144) (2768 -3792 16) (2768 -3776 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" "305392" + "plane" "(2768 -3792 16) (2808 -3792 16) (2808 -3776 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" "305391" + "plane" "(2768 -3776 144) (2808 -3776 144) (2808 -3792 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" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387680" + side + { + "id" "305438" + "plane" "(2792 -4096 368) (2792 -4096 192) (2792 -3792 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305437" + "plane" "(2808 -3792 368) (2808 -3792 192) (2808 -4096 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" "305436" + "plane" "(2792 -3792 368) (2792 -3792 192) (2808 -3792 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 128] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305435" + "plane" "(2808 -4096 368) (2808 -4096 192) (2792 -4096 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" "305434" + "plane" "(2792 -3792 192) (2792 -4096 192) (2808 -4096 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" "305433" + "plane" "(2792 -4096 368) (2792 -3792 368) (2808 -3792 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 227 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2327077" + side + { + "id" "304676" + "plane" "(1536 -3136 358) (1536 -3136 208) (1536 -3144 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" "304675" + "plane" "(1344 -3136 208) (1344 -3144 208) (1536 -3144 208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -400] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304674" + "plane" "(1344 -3144 208) (1344 -3136 208) (1344 -3136 358)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 10] 0.125" + "vaxis" "[0 0 -1 -373] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304673" + "plane" "(1344 -3136 358) (1344 -3136 208) (1536 -3136 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.997] 0.25" + "vaxis" "[-1 0 0 255.994] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304672" + "plane" "(1344 -3144 358) (1344 -3136 358) (1536 -3136 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304671" + "plane" "(1536 -3144 358) (1536 -3144 208) (1344 -3144 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "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 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2327130" + side + { + "id" "304716" + "plane" "(2056 -3456 208) (2056 -3424 208) (2112 -3424 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304715" + "plane" "(2056 -3424 144) (2056 -3424 208) (2056 -3456 208)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304714" + "plane" "(2112 -3456 144) (2112 -3456 208) (2112 -3424 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" "304713" + "plane" "(2112 -3424 144) (2112 -3424 208) (2056 -3424 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -170.488] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304712" + "plane" "(2056 -3456 144) (2056 -3456 208) (2112 -3456 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304711" + "plane" "(2056 -3424 144) (2056 -3456 144) (2112 -3456 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" + } + editor + { + "color" "0 108 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2327131" + side + { + "id" "304722" + "plane" "(2056 -3424 16) (2056 -3424 144) (2056 -3456 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304721" + "plane" "(2112 -3456 16) (2112 -3456 144) (2112 -3424 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304720" + "plane" "(2112 -3424 16) (2112 -3424 144) (2056 -3424 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -170.488] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304719" + "plane" "(2056 -3456 16) (2056 -3456 144) (2112 -3456 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304718" + "plane" "(2056 -3424 16) (2056 -3456 16) (2112 -3456 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" "304717" + "plane" "(2056 -3456 144) (2056 -3424 144) (2112 -3424 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" + } + editor + { + "color" "0 108 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2327177" + side + { + "id" "304754" + "plane" "(1312 -3424 224) (1312 -3424 147) (1312 -3144 147)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304753" + "plane" "(1344 -3144 224) (1344 -3144 147) (1344 -3424 147)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-0.898877 0.438202 0 -6.53467] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304752" + "plane" "(1312 -3144 224) (1312 -3144 147) (1344 -3144 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304751" + "plane" "(1344 -3424 224) (1344 -3424 147) (1312 -3424 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304750" + "plane" "(1312 -3144 147) (1312 -3424 147) (1344 -3424 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.15" + "vaxis" "[1 0 0 20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304749" + "plane" "(1312 -3424 224) (1312 -3144 224) (1344 -3144 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" + } + editor + { + "color" "0 219 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2305442" + side + { + "id" "303652" + "plane" "(-448 -5152 0) (-448 -4768 0) (-416 -4768 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-416 -4768 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.996109 0 0 0 0 0 0 0 0 0 0 0 -0.996109 0 0 0 0 0 -0.996109 0 0 0 0 0 0 0 0" + "row1" "-0.996109 0 0 0 0 0 0 0 0 0 0 0 -0.996109 0 0 0 0 0 -0.996109 0 0 0 0 0 0 0 0" + "row2" "-0.996109 0 0 0 0 0 0 0 0 0 0 0 -0.996109 0 0 0 0 0 -0.996109 0 0 0 0 0 0 0 0" + "row3" "-0.996109 0 0 0 0 0 0 0 0 0 0 0 -0.996109 0 0 0 0 0 -0.996109 0 0 0 0 0 0 0 0" + "row4" "-0.996109 0 0 0 0.999756 0 0 0 0 0 0.999756 0 -0.996109 0 0 0 0 0 -0.996109 0 0 0 0.999756 0 0 0 0" + "row5" "-0.996109 0 0 0 0.999756 0 0 0 0 0 0.999756 0 -0.996109 0 0 0 0 0 -0.996109 0 0 0 0.999756 0 0 0 0" + "row6" "-0.996109 0 0 0 0.999756 0 0 0 0 0 0.999756 0 -0.996109 0 0 0 0 0 -0.996109 0 0 0 0.999756 0 0 0 0" + "row7" "-0.996109 0 0 0 0.999756 0 0 0 0 0 0.999756 0 -0.996109 0 0 0 0 0 -0.996109 0 0 0 0.999756 0 0 0 0" + "row8" "-0.996109 0 0 0 0.999756 0 0 0 0 0 0.999756 0 -0.996109 0 0 0 0 0 -0.996109 0 0 0 0.999756 0 0 0 0" + } + distances + { + "row0" "3.05176e-05 0 0 0 3.05176e-05 0 3.05176e-05 0 0" + "row1" "3.05176e-05 0 0 0 3.05176e-05 0 3.05176e-05 0 0" + "row2" "3.05176e-05 0 0 0 3.05176e-05 0 3.05176e-05 0 0" + "row3" "3.05176e-05 0 0 0 3.05176e-05 0 3.05176e-05 0 0" + "row4" "3.05176e-05 0.000488281 0 0.000488281 3.05176e-05 0 3.05176e-05 0.000488281 0" + "row5" "3.05176e-05 0.000488281 0 0.000488281 3.05176e-05 0 3.05176e-05 0.000488281 0" + "row6" "3.05176e-05 0.000488281 0 0.000488281 3.05176e-05 0 3.05176e-05 0.000488281 0" + "row7" "3.05176e-05 0.000488281 0 0.000488281 3.05176e-05 0 3.05176e-05 0.000488281 0" + "row8" "3.05176e-05 0.000488281 0 0.000488281 3.05176e-05 0 3.05176e-05 0.000488281 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" "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" "303651" + "plane" "(-448 -4768 -16) (-448 -5152 -16) (-416 -5152 -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" "303650" + "plane" "(-448 -5152 -16) (-448 -4768 -16) (-448 -4768 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" "303649" + "plane" "(-448 -4768 -16) (-416 -4768 -16) (-416 -4768 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" "303648" + "plane" "(-416 -5152 -16) (-448 -5152 -16) (-448 -5152 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" "303647" + "plane" "(-416 -4768 -16) (-416 -5152 -16) (-416 -5152 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 192 213" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2305443" + side + { + "id" "303658" + "plane" "(-416 -4768 0) (-256 -4768 0) (-256 -5152 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-256 -4768 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0.996109 0 0 0 0 0 0 0 0 0 0 0 0.996109 0 0 0 0 0 0.996109 0 0 -0.996109 0 0" + "row1" "0 0 0 0.996109 0 0 0 0 0 0 0 0 0 0 0 0.996109 0 0 0 0 0 0.996109 0 0 -0.996109 0 0" + "row2" "0 0 0 0.996109 0 0 0 0 0 0 0 -1 0 0 -1 5.53836e-05 0 -1 0 0 0 0.996109 0 0 -0.996109 0 0" + "row3" "0 0 0 0.996109 0 0 0 0 -1 0 0 -1 0 0 -1 8.7448e-06 0 -1 0 0 -1 0.996109 0 0 -0.996109 0 0" + "row4" "0 0 0 0.996109 0 0 0 0 0 0 0 -1 0 0 -1 2.77015e-05 0.000443224 -1 0 0 0 0.0623631 0.997809 0 -0.996109 0 0" + "row5" "0 0 0 0.996109 0 0 0 0 -1 0 0 -1 0 0 -1 8.7448e-06 0.000139917 -1 0 0 -1 0.0623631 0.997809 0 -0.996109 0 0" + "row6" "0 0 0 0.996109 0 0 0 0 0 0 0 -1 0 0 -1 5.53775e-05 0.000886041 -0.999999 0 0 0 0.0623631 0.997809 0 -0.996109 0 0" + "row7" "0 0 0 0.996109 0 0 0 0 0 0 0 0 0 0 0 0.0623631 0.997809 0 0 0 0 0.0623631 0.997809 0 -0.996109 0 0" + "row8" "0 0 0 0.996109 0 0 0 0 0 0 0 0 0 0 0 0.0623631 0.997809 0 0 0 0 0.0623631 0.997809 0 -0.996109 0 0" + } + distances + { + "row0" "0 3.05176e-05 0 0 0 3.05176e-05 0 3.05176e-05 3.05176e-05" + "row1" "0 3.05176e-05 0 0 0 3.05176e-05 0 3.05176e-05 3.05176e-05" + "row2" "0 3.05176e-05 0 0.55102 1.06122 0.551022 0 3.05176e-05 3.05176e-05" + "row3" "0 3.05176e-05 1.95918 3.4898 4 3.4898 1.95918 3.05176e-05 3.05176e-05" + "row4" "0 3.05176e-05 0 1.10165 2.12101 1.10166 0 0.000489234 3.05176e-05" + "row5" "0 3.05176e-05 1.95918 3.4898 4 3.4898 1.95918 0.000489234 3.05176e-05" + "row6" "0 3.05176e-05 0 0.55102 1.06122 0.551082 0 0.000489234 3.05176e-05" + "row7" "0 3.05176e-05 0 0 0 0.000489234 0 0.000489234 3.05176e-05" + "row8" "0 3.05176e-05 0 0 0 0.000489234 0 0.000489234 3.05176e-05" + } + 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" "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" "303657" + "plane" "(-416 -5152 -16) (-256 -5152 -16) (-256 -4768 -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" "303656" + "plane" "(-256 -4768 -16) (-256 -5152 -16) (-256 -5152 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" "303655" + "plane" "(-416 -4768 -16) (-256 -4768 -16) (-256 -4768 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" "303654" + "plane" "(-256 -5152 -16) (-416 -5152 -16) (-416 -5152 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" "303653" + "plane" "(-416 -5152 -16) (-416 -4768 -16) (-416 -4768 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 192 213" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2203782" + side + { + "id" "300142" + "plane" "(2317.12 -4736 320) (2392 -4736 320) (2392 -5104 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" "300141" + "plane" "(2192 -5104 304) (2392 -5104 304) (2392 -4736 304)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300140" + "plane" "(2317.12 -4736 304) (2392 -4736 304) (2392 -4736 320)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300139" + "plane" "(2392 -5104 304) (2192 -5104 304) (2192 -5104 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" "300138" + "plane" "(2192 -5104 304) (2317.12 -4736 304) (2317.12 -4736 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" "300137" + "plane" "(2392 -4736 304) (2392 -5104 304) (2392 -5104 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 198 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2203783" + side + { + "id" "300148" + "plane" "(2392 -4736 320) (2688 -4736 320) (2688 -5520 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" "300147" + "plane" "(2392 -5520 272) (2688 -5520 272) (2688 -4736 272)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300146" + "plane" "(2688 -4736 272) (2688 -5520 272) (2688 -5520 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" "300145" + "plane" "(2392 -4736 272) (2688 -4736 272) (2688 -4736 320)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300144" + "plane" "(2688 -5520 272) (2392 -5520 272) (2392 -5520 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" "300143" + "plane" "(2392 -5520 272) (2392 -4736 272) (2392 -4736 320)" + "material" "CEILING/HR_C/HR_CEILING_001_COLOR" + "uaxis" "[0 1 0 -1152] 0.125" + "vaxis" "[0 0 -1 -133] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 198 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2203826" + side + { + "id" "300154" + "plane" "(2192 -5520 304) (2192 -5504 304) (2392 -5504 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" "300153" + "plane" "(2192 -5504 0) (2192 -5520 0) (2392 -5520 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" "300152" + "plane" "(2192 -5520 0) (2192 -5504 0) (2192 -5504 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" "300151" + "plane" "(2192 -5504 0) (2392 -5504 0) (2392 -5504 304)" + "material" "CS_APOLLO/EXHIBITS/SPACE" + "uaxis" "[1 0 0 20] 0.125" + "vaxis" "[0 0 -1 660] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300150" + "plane" "(2392 -5520 0) (2192 -5520 0) (2192 -5520 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300149" + "plane" "(2392 -5504 0) (2392 -5520 0) (2392 -5520 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" + } + editor + { + "color" "0 123 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2203827" + side + { + "id" "300160" + "plane" "(2392 -5504 272) (2688 -5504 272) (2688 -5520 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" "300159" + "plane" "(2392 -5520 0) (2688 -5520 0) (2688 -5504 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" "300158" + "plane" "(2688 -5504 0) (2688 -5520 0) (2688 -5520 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" "300157" + "plane" "(2392 -5504 0) (2688 -5504 0) (2688 -5504 272)" + "material" "CS_APOLLO/EXHIBITS/SPACE" + "uaxis" "[1 0 0 20] 0.125" + "vaxis" "[0 0 -1 660] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300156" + "plane" "(2688 -5520 0) (2392 -5520 0) (2392 -5520 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" "300155" + "plane" "(2392 -5520 0) (2392 -5504 0) (2392 -5504 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" + } + editor + { + "color" "0 123 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190700" + side + { + "id" "300035" + "plane" "(872 -3424 -40) (872 -3176 -40) (1168 -3176 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300036" + "plane" "(872 -3176 -56) (872 -3424 -56) (1168 -3424 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300037" + "plane" "(872 -3424 -56) (872 -3176 -56) (872 -3176 -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" "300038" + "plane" "(1168 -3176 -56) (1168 -3424 -56) (1168 -3424 -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" "300039" + "plane" "(872 -3176 -56) (1168 -3176 -56) (1168 -3176 -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" "300040" + "plane" "(1168 -3424 -56) (872 -3424 -56) (872 -3424 -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 238 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190723" + side + { + "id" "300046" + "plane" "(1792 -2560 240) (1792 -2560 16) (1792 -2456 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 948.798] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300045" + "plane" "(1808 -2456 16) (1808 -2560 16) (1808 -2560 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -126.266] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300044" + "plane" "(1808 -2560 240) (1808 -2560 16) (1792 -2560 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -359.356] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300043" + "plane" "(1792 -2456 16) (1792 -2560 16) (1808 -2560 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" "300042" + "plane" "(1792 -2560 240) (1792 -2456 240) (1808 -2456 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" "300041" + "plane" "(1792 -2456 240) (1792 -2456 16) (1808 -2456 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 194 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190724" + side + { + "id" "300052" + "plane" "(1792 -2456 16) (1792 -2406 16) (1792 -2406 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 948.798] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300051" + "plane" "(1824 -2406 240) (1824 -2406 16) (1824 -2456 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -126.266] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300050" + "plane" "(1792 -2406 16) (1792 -2456 16) (1824 -2456 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" "300049" + "plane" "(1792 -2406 240) (1792 -2406 16) (1824 -2406 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" "300048" + "plane" "(1792 -2456 240) (1792 -2406 240) (1824 -2406 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" "300047" + "plane" "(1824 -2456 240) (1824 -2456 16) (1792 -2456 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 194 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190725" + side + { + "id" "300058" + "plane" "(1792 -2406 -56) (1792 -2560 -56) (1824 -2560 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300057" + "plane" "(1792 -2560 16) (1792 -2560 -56) (1792 -2406 -56)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300056" + "plane" "(1824 -2406 -56) (1824 -2560 -56) (1824 -2560 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 63.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300055" + "plane" "(1824 -2560 16) (1824 -2560 -56) (1792 -2560 -56)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300054" + "plane" "(1792 -2560 16) (1792 -2406 16) (1824 -2406 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" "300053" + "plane" "(1792 -2406 16) (1792 -2406 -56) (1824 -2406 -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" + } + editor + { + "color" "0 194 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2176846" + side + { + "id" "299494" + "plane" "(-1008 -4992 32) (-576 -4992 32) (-576 -5008 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299495" + "plane" "(-1008 -5008 0) (-576 -5008 0) (-576 -4992 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" "299496" + "plane" "(-1008 -4992 32) (-1008 -5008 32) (-1008 -5008 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" "299497" + "plane" "(-576 -4992 0) (-576 -5008 0) (-576 -5008 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" "299498" + "plane" "(-576 -4992 32) (-1008 -4992 32) (-1008 -4992 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" "299499" + "plane" "(-576 -5008 0) (-1008 -5008 0) (-1008 -5008 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 253 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2176850" + side + { + "id" "299500" + "plane" "(-1008 -4688 32) (-992 -4688 32) (-992 -4992 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299501" + "plane" "(-1008 -4992 0) (-992 -4992 0) (-992 -4688 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" "299502" + "plane" "(-1008 -4688 32) (-1008 -4992 32) (-1008 -4992 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" "299503" + "plane" "(-992 -4688 0) (-992 -4992 0) (-992 -4992 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" "299504" + "plane" "(-992 -4688 32) (-1008 -4688 32) (-1008 -4688 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" "299505" + "plane" "(-992 -4992 0) (-1008 -4992 0) (-1008 -4992 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 229 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2176854" + side + { + "id" "299506" + "plane" "(-1072 -3805 32) (-992 -4688 32) (-1008 -4688 32)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299507" + "plane" "(-992 -4688 0) (-1072 -3805 0) (-1088 -3805 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" "299508" + "plane" "(-1008 -4688 32) (-1008 -4688 0) (-1088 -3805 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" "299509" + "plane" "(-992 -4688 0) (-992 -4688 32) (-1072 -3805 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" "299510" + "plane" "(-1088 -3805 32) (-1088 -3805 0) (-1072 -3805 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" "299511" + "plane" "(-1008 -4688 0) (-1008 -4688 32) (-992 -4688 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 249 102" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2157466" + side + { + "id" "299129" + "plane" "(-2624 -6144 560) (-2624 -5632 560) (-2600 -5632 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299128" + "plane" "(-2624 -5632 -16) (-2624 -6144 -16) (-2600 -6144 -16)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299127" + "plane" "(-2624 -6144 -16) (-2624 -5632 -16) (-2624 -5632 560)" + "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" "299126" + "plane" "(-2600 -5632 -16) (-2600 -6144 -16) (-2600 -6144 560)" + "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" "299125" + "plane" "(-2600 -6144 -16) (-2624 -6144 -16) (-2624 -6144 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299124" + "plane" "(-2624 -5632 -16) (-2600 -5632 -16) (-2600 -5632 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 204" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2157475" + side + { + "id" "299135" + "plane" "(-2616 -3824 -16) (-2616 -5632 -16) (-2456 -5632 -16)" + "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" "299134" + "plane" "(-2616 -5632 352) (-2616 -5632 -16) (-2616 -3824 -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" "299133" + "plane" "(-2456 -3824 352) (-2456 -3824 -16) (-2456 -5632 -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" "299132" + "plane" "(-2616 -3824 352) (-2616 -3824 -16) (-2456 -3824 -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" "299131" + "plane" "(-2456 -5632 352) (-2456 -5632 -16) (-2616 -5632 -16)" + "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" "299130" + "plane" "(-2616 -5632 352) (-2616 -3824 352) (-2456 -3824 352)" + "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 195 204" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2157484" + side + { + "id" "299142" + "plane" "(-2600 -6112 576) (-2600 -3824 576) (-2208 -3824 576)" + "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" "299143" + "plane" "(-2600 -3824 560) (-2600 -6112 560) (-2208 -6112 560)" + "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" "299144" + "plane" "(-2600 -6112 560) (-2600 -3824 560) (-2600 -3824 576)" + "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" "299145" + "plane" "(-2208 -3824 560) (-2208 -6112 560) (-2208 -6112 576)" + "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" "299146" + "plane" "(-2600 -3824 560) (-2208 -3824 560) (-2208 -3824 576)" + "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" "299147" + "plane" "(-2208 -6112 560) (-2600 -6112 560) (-2600 -6112 576)" + "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" "0 169 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2114130" + side + { + "id" "298458" + "plane" "(1032 -4784 160) (1044 -4784 160) (1044 -5016 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298459" + "plane" "(1032 -5016 -7.62939e-06) (1044 -5016 -7.62939e-06) (1044 -4784 -7.62939e-06)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298460" + "plane" "(1032 -4784 160) (1032 -5016 160) (1032 -5016 -7.62939e-06)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298461" + "plane" "(1044 -4784 -7.62939e-06) (1044 -5016 -7.62939e-06) (1044 -5016 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298462" + "plane" "(1044 -4784 160) (1032 -4784 160) (1032 -4784 -7.62939e-06)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298463" + "plane" "(1044 -5016 -7.62939e-06) (1032 -5016 -7.62939e-06) (1032 -5016 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 127 124" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2114131" + side + { + "id" "298464" + "plane" "(1044 -5000 160) (1184 -5000 160) (1184 -5016 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298465" + "plane" "(1044 -5016 -7.62939e-06) (1184 -5016 -7.62939e-06) (1184 -5000 -7.62939e-06)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298466" + "plane" "(1044 -5000 160) (1044 -5016 160) (1044 -5016 -7.62939e-06)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298467" + "plane" "(1184 -5000 -7.62939e-06) (1184 -5016 -7.62939e-06) (1184 -5016 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298468" + "plane" "(1184 -5000 160) (1044 -5000 160) (1044 -5000 -7.62939e-06)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298469" + "plane" "(1184 -5016 -7.62939e-06) (1044 -5016 -7.62939e-06) (1044 -5016 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 189 250" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2114284" + side + { + "id" "298523" + "plane" "(2224 -5872 156) (2224 -5872 48) (2224 -5888 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" "298522" + "plane" "(1936 -5872 156) (1936 -5872 48) (2224 -5872 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 511.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298521" + "plane" "(2224 -5888 156) (2224 -5888 48) (1936 -5888 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298520" + "plane" "(1936 -5888 156) (1936 -5888 48) (1936 -5872 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" "298519" + "plane" "(1936 -5888 48) (2224 -5888 48) (2224 -5872 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" "298518" + "plane" "(1936 -5872 156) (2224 -5872 156) (2224 -5888 156)" + "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 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2114285" + side + { + "id" "298529" + "plane" "(2224 -5872 184) (2224 -5872 156) (2224 -5888 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298528" + "plane" "(1936 -5872 184) (1936 -5872 156) (2224 -5872 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298527" + "plane" "(2224 -5888 184) (2224 -5888 156) (1936 -5888 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 448.002] 0.125" + "vaxis" "[0 0 -1 189] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298526" + "plane" "(1936 -5888 184) (1936 -5888 156) (1936 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298525" + "plane" "(1936 -5872 184) (2224 -5872 184) (2224 -5888 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298524" + "plane" "(1936 -5888 156) (2224 -5888 156) (2224 -5872 156)" + "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 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2114293" + side + { + "id" "298535" + "plane" "(2192 -5872 184) (2192 -5872 48) (2192 -5520 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -511.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298534" + "plane" "(2224 -5520 184) (2224 -5520 48) (2224 -5872 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" "298533" + "plane" "(2192 -5520 184) (2192 -5520 48) (2224 -5520 48)" + "material" "CS_APOLLO/EXHIBITS/SPACE" + "uaxis" "[1 0 0 20] 0.125" + "vaxis" "[0 0 -1 660] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298532" + "plane" "(2224 -5872 184) (2224 -5872 48) (2192 -5872 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298531" + "plane" "(2192 -5520 48) (2192 -5872 48) (2224 -5872 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" "298530" + "plane" "(2192 -5872 184) (2192 -5520 184) (2224 -5520 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2084425" + side + { + "id" "298228" + "plane" "(-464 -6640 -48) (-464 -6624 -48) (-448 -6624 -48)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -288] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298229" + "plane" "(-464 -6624 -80) (-464 -6640 -80) (-448 -6640 -80)" + "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" "298230" + "plane" "(-464 -6640 -80) (-464 -6624 -80) (-464 -6624 -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" "298231" + "plane" "(-448 -6624 -80) (-448 -6640 -80) (-448 -6640 -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" "298232" + "plane" "(-464 -6624 -80) (-448 -6624 -80) (-448 -6624 -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" "298233" + "plane" "(-448 -6640 -80) (-464 -6640 -80) (-464 -6640 -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 177 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2084456" + side + { + "id" "298240" + "plane" "(-976 -5664 -32) (-976 -5648 -32) (-640 -5648 -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" "298241" + "plane" "(-976 -5648 -64) (-976 -5664 -64) (-640 -5664 -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" "298242" + "plane" "(-976 -5664 -64) (-976 -5648 -64) (-976 -5648 -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" "298243" + "plane" "(-640 -5648 -64) (-640 -5664 -64) (-640 -5664 -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" "298244" + "plane" "(-976 -5648 -64) (-640 -5648 -64) (-640 -5648 -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" "298245" + "plane" "(-640 -5664 -64) (-976 -5664 -64) (-976 -5664 -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 159 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2074026" + side + { + "id" "298023" + "plane" "(2056 -3424 0) (2056 -3456 0) (2112 -3456 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298022" + "plane" "(2056 -3456 0) (2056 -3424 0) (2056 -3424 16)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298021" + "plane" "(2112 -3424 0) (2112 -3456 0) (2112 -3456 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" "298020" + "plane" "(2056 -3424 0) (2112 -3424 0) (2112 -3424 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -400] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298019" + "plane" "(2112 -3456 0) (2056 -3456 0) (2056 -3456 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298018" + "plane" "(2056 -3456 16) (2056 -3424 16) (2112 -3424 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" + } + editor + { + "color" "0 108 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2074027" + side + { + "id" "298029" + "plane" "(2112 -3584 144) (2112 -3584 16) (2112 -3456 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298028" + "plane" "(2128 -3456 144) (2128 -3456 16) (2128 -3584 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.008] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298027" + "plane" "(2112 -3456 144) (2112 -3456 16) (2128 -3456 16)" + "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" "298026" + "plane" "(2128 -3584 144) (2128 -3584 16) (2112 -3584 16)" + "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" "298025" + "plane" "(2112 -3584 144) (2112 -3456 144) (2128 -3456 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" "298024" + "plane" "(2112 -3456 16) (2112 -3584 16) (2128 -3584 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2074028" + side + { + "id" "298035" + "plane" "(2112 -3456 0) (2112 -3584 0) (2128 -3584 0)" + "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" "298034" + "plane" "(2112 -3584 16) (2112 -3584 0) (2112 -3456 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298033" + "plane" "(2128 -3456 16) (2128 -3456 0) (2128 -3584 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 -1 0 400] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298032" + "plane" "(2112 -3456 16) (2112 -3456 0) (2128 -3456 0)" + "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" "298031" + "plane" "(2128 -3584 16) (2128 -3584 0) (2112 -3584 0)" + "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" "298030" + "plane" "(2112 -3584 16) (2112 -3456 16) (2128 -3456 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2074035" + side + { + "id" "298041" + "plane" "(2112 -3792 144) (2112 -3792 16) (2112 -3712 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298040" + "plane" "(2128 -3712 144) (2128 -3712 16) (2128 -3792 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.008] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298039" + "plane" "(2112 -3712 144) (2112 -3712 16) (2128 -3712 16)" + "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" "298038" + "plane" "(2128 -3792 144) (2128 -3792 16) (2112 -3792 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298037" + "plane" "(2112 -3792 144) (2112 -3712 144) (2128 -3712 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" "298036" + "plane" "(2112 -3712 16) (2112 -3792 16) (2128 -3792 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2074036" + side + { + "id" "298047" + "plane" "(2112 -3712 -16) (2112 -3792 -16) (2128 -3792 -16)" + "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" "298046" + "plane" "(2112 -3792 16) (2112 -3792 -16) (2112 -3712 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298045" + "plane" "(2128 -3712 16) (2128 -3712 -16) (2128 -3792 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.008] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298044" + "plane" "(2112 -3712 16) (2112 -3712 -16) (2128 -3712 -16)" + "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" "298043" + "plane" "(2128 -3792 16) (2128 -3792 -16) (2112 -3792 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298042" + "plane" "(2112 -3792 16) (2112 -3712 16) (2128 -3712 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" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2074044" + side + { + "id" "298059" + "plane" "(2240 -3776 -48) (2128 -3776 -48) (2128 -3792 -48)" + "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" "298058" + "plane" "(2128 -3792 16) (2128 -3792 -48) (2128 -3776 -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" "298057" + "plane" "(2128 -3776 16) (2128 -3776 -48) (2240 -3776 -48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298056" + "plane" "(2240 -3792 -48) (2128 -3792 -48) (2128 -3792 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298055" + "plane" "(2240 -3776 16) (2240 -3776 -48) (2240 -3792 -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" "298054" + "plane" "(2240 -3792 16) (2128 -3792 16) (2128 -3776 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" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2074049" + side + { + "id" "298071" + "plane" "(2344 -3776 -48) (2240 -3776 -48) (2240 -3792 -48)" + "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" "298070" + "plane" "(2240 -3776 -48) (2344 -3776 -48) (2344 -3776 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298069" + "plane" "(2344 -3792 -48) (2240 -3792 -48) (2240 -3792 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298068" + "plane" "(2240 -3792 16) (2240 -3792 -48) (2240 -3776 -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" "298067" + "plane" "(2344 -3776 16) (2344 -3776 -48) (2344 -3792 -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" "298066" + "plane" "(2344 -3792 16) (2240 -3792 16) (2240 -3776 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" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2074065" + side + { + "id" "298095" + "plane" "(2768 -3792 -16) (2808 -3792 -16) (2808 -3776 -16)" + "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" "298094" + "plane" "(2808 -3776 16) (2808 -3776 -16) (2808 -3792 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.461467 0.887157 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298093" + "plane" "(2768 -3776 16) (2768 -3776 -16) (2808 -3776 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298092" + "plane" "(2808 -3792 16) (2808 -3792 -16) (2768 -3792 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298091" + "plane" "(2768 -3792 16) (2768 -3792 -16) (2768 -3776 -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" "298090" + "plane" "(2768 -3776 16) (2808 -3776 16) (2808 -3792 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" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063257" + side + { + "id" "296584" + "plane" "(2640 -3776 240) (2768 -3776 240) (2768 -3792 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296585" + "plane" "(2640 -3792 -48) (2768 -3792 -48) (2768 -3776 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296586" + "plane" "(2640 -3776 240) (2640 -3792 240) (2640 -3792 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296587" + "plane" "(2768 -3776 -48) (2768 -3792 -48) (2768 -3792 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296588" + "plane" "(2768 -3776 240) (2640 -3776 240) (2640 -3776 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296589" + "plane" "(2768 -3792 -48) (2640 -3792 -48) (2640 -3792 240)" + "material" "TOOLS/TOOLSCLIP" + "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 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063375" + side + { + "id" "296595" + "plane" "(-1512 -6144 1016) (-2600 -6144 1016) (-2600 -6112 1016)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296594" + "plane" "(-1512 -6112 -48) (-2600 -6112 -48) (-2600 -6144 -48)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296593" + "plane" "(-2600 -6144 -48) (-2600 -6112 -48) (-2600 -6112 1016)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296592" + "plane" "(-2600 -6112 -48) (-1512 -6112 -48) (-1512 -6112 1016)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296591" + "plane" "(-1512 -6144 -48) (-2600 -6144 -48) (-2600 -6144 1016)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296590" + "plane" "(-1512 -6112 -48) (-1512 -6144 -48) (-1512 -6144 1016)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063376" + side + { + "id" "296601" + "plane" "(-1536 -5600 1016) (-964 -5600 1016) (-964 -5696 1016)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296600" + "plane" "(-1536 -5696 -48) (-964 -5696 -48) (-964 -5600 -48)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296599" + "plane" "(-964 -5600 -48) (-964 -5696 -48) (-964 -5696 1016)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296598" + "plane" "(-1536 -5600 -48) (-964 -5600 -48) (-964 -5600 1016)" + "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" "296597" + "plane" "(-964 -5696 -48) (-1536 -5696 -48) (-1536 -5696 1016)" + "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" "296596" + "plane" "(-1536 -5696 -48) (-1536 -5600 -48) (-1536 -5600 1016)" + "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" "0 199 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063387" + side + { + "id" "296602" + "plane" "(-1536 -6112 1016) (-1536 -5696 1016) (-1520 -5696 1016)" + "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" "296603" + "plane" "(-1536 -5696 -48) (-1536 -6112 -48) (-1520 -6112 -48)" + "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" "296604" + "plane" "(-1536 -6112 -48) (-1536 -5696 -48) (-1536 -5696 1016)" + "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" "296605" + "plane" "(-1520 -5696 -48) (-1520 -6112 -48) (-1520 -6112 1016)" + "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" "296606" + "plane" "(-1536 -5696 -48) (-1520 -5696 -48) (-1520 -5696 1016)" + "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" "296607" + "plane" "(-1520 -6112 -48) (-1536 -6112 -48) (-1536 -6112 1016)" + "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" "0 215 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063451" + side + { + "id" "296619" + "plane" "(-2328 -6112 32) (-2600 -6112 32) (-2600 -5664 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296618" + "plane" "(-2328 -5664 -16) (-2600 -5664 -16) (-2600 -6112 -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" "296617" + "plane" "(-2600 -6112 -16) (-2600 -5664 -16) (-2600 -5664 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" "296616" + "plane" "(-2600 -5664 -16) (-2328 -5664 -16) (-2328 -5664 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" "296615" + "plane" "(-2328 -6112 -16) (-2600 -6112 -16) (-2600 -6112 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" "296614" + "plane" "(-2328 -5664 -16) (-2328 -6112 -16) (-2328 -6112 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" + } + editor + { + "color" "0 191 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063452" + side + { + "id" "296625" + "plane" "(-2328 -5664 32) (-1392 -5664 32) (-1392 -6112 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296624" + "plane" "(-2328 -6112 -16) (-1392 -6112 -16) (-1392 -5664 -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" "296623" + "plane" "(-1392 -5664 -16) (-1392 -6112 -16) (-1392 -6112 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" "296622" + "plane" "(-2328 -5664 -16) (-1392 -5664 -16) (-1392 -5664 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" "296621" + "plane" "(-1392 -6112 -16) (-2328 -6112 -16) (-2328 -6112 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" "296620" + "plane" "(-2328 -6112 -16) (-2328 -5664 -16) (-2328 -5664 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063560" + side + { + "id" "296643" + "plane" "(-2328 -5664 32) (-2424 -5664 32) (-2424 -4768 32)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296642" + "plane" "(-2424 -4768 -16) (-2424 -5664 -16) (-2328 -5664 -16)" + "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" "296641" + "plane" "(-2424 -5664 -16) (-2424 -4768 -16) (-2424 -4768 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" "296640" + "plane" "(-2328 -5664 -16) (-2424 -5664 -16) (-2424 -5664 32)" + "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" "296639" + "plane" "(-2328 -4768 -16) (-2328 -5664 -16) (-2328 -5664 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" "296638" + "plane" "(-2424 -4768 -16) (-2328 -4768 -16) (-2328 -4768 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063611" + side + { + "id" "296661" + "plane" "(-2424 -3970 32) (-2424 -3824 32) (-2176 -3824 32)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296660" + "plane" "(-2176 -3824 -16) (-2424 -3824 -16) (-2424 -3970 -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" "296659" + "plane" "(-2424 -3970 -16) (-2424 -3824 -16) (-2424 -3824 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" "296658" + "plane" "(-2424 -3824 -16) (-2176 -3824 -16) (-2176 -3824 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" "296657" + "plane" "(-2176 -3824 -16) (-2176 -3970 -16) (-2176 -3970 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" "296656" + "plane" "(-2176 -3970 -16) (-2424 -3970 -16) (-2424 -3970 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063636" + side + { + "id" "296667" + "plane" "(-2384 -4768 32) (-2440 -4768 32) (-2440 -3970 32)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -4] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296666" + "plane" "(-2384 -3970 -16) (-2440 -3970 -16) (-2440 -4768 -16)" + "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" "296665" + "plane" "(-2440 -4768 -16) (-2440 -3970 -16) (-2440 -3970 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" "296664" + "plane" "(-2384 -4768 -16) (-2440 -4768 -16) (-2440 -4768 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296663" + "plane" "(-2440 -3970 -16) (-2384 -3970 -16) (-2384 -3970 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296662" + "plane" "(-2384 -3970 -16) (-2384 -4768 -16) (-2384 -4768 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2063637" + side + { + "id" "296673" + "plane" "(-2384 -3970 32) (-2328 -3970 32) (-2328 -4768 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296672" + "plane" "(-2384 -4768 -16) (-2328 -4768 -16) (-2328 -3970 -16)" + "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" "296671" + "plane" "(-2328 -3970 -16) (-2328 -4768 -16) (-2328 -4768 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" "296670" + "plane" "(-2328 -4768 -16) (-2384 -4768 -16) (-2384 -4768 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296669" + "plane" "(-2384 -3970 -16) (-2328 -3970 -16) (-2328 -3970 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296668" + "plane" "(-2384 -4768 -16) (-2384 -3970 -16) (-2384 -3970 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064021" + side + { + "id" "297375" + "plane" "(-2440 -5632 352) (-2456 -5632 352) (-2456 -3824 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297374" + "plane" "(-2440 -3824 32) (-2456 -3824 32) (-2456 -5632 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" "297373" + "plane" "(-2456 -5632 32) (-2456 -3824 32) (-2456 -3824 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" "297372" + "plane" "(-2456 -3824 32) (-2440 -3824 32) (-2440 -3824 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" "297371" + "plane" "(-2440 -5632 32) (-2456 -5632 32) (-2456 -5632 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" "297370" + "plane" "(-2440 -3824 32) (-2440 -5632 32) (-2440 -5632 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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064050" + side + { + "id" "297417" + "plane" "(-2440 -4344 32) (-2440 -4472 32) (-2424 -4472 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" "297416" + "plane" "(-2424 -4344 160) (-2424 -4344 32) (-2424 -4472 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -29] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297415" + "plane" "(-2440 -4472 160) (-2440 -4472 32) (-2440 -4344 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" "297414" + "plane" "(-2424 -4472 160) (-2424 -4472 32) (-2440 -4472 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -896] 0.125" + "vaxis" "[1 0 0 -64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297413" + "plane" "(-2440 -4344 160) (-2440 -4344 32) (-2424 -4344 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -896] 0.125" + "vaxis" "[1 0 0 -64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297412" + "plane" "(-2440 -4472 160) (-2440 -4344 160) (-2424 -4344 160)" + "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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064088" + side + { + "id" "297435" + "plane" "(-2440 -4720 32) (-2440 -5632 32) (-2424 -5632 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" "297434" + "plane" "(-2424 -4720 160) (-2424 -4720 32) (-2424 -5632 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297433" + "plane" "(-2424 -5632 160) (-2424 -5632 32) (-2440 -5632 32)" + "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" "297432" + "plane" "(-2440 -5632 160) (-2440 -5632 32) (-2440 -4720 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" "297431" + "plane" "(-2440 -4720 160) (-2440 -4720 32) (-2424 -4720 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -896] 0.125" + "vaxis" "[1 0 0 -64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297430" + "plane" "(-2424 -4720 160) (-2424 -5632 160) (-2440 -5632 160)" + "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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064096" + side + { + "id" "297447" + "plane" "(-2424 -4096 32) (-2424 -3824 32) (-2440 -3824 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" "297446" + "plane" "(-2424 -3824 160) (-2424 -3824 32) (-2424 -4096 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 5] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297445" + "plane" "(-2440 -3824 160) (-2440 -3824 32) (-2424 -3824 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" "297444" + "plane" "(-2440 -4096 160) (-2440 -4096 32) (-2440 -3824 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" "297443" + "plane" "(-2424 -4096 160) (-2424 -4096 32) (-2440 -4096 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -896] 0.125" + "vaxis" "[1 0 0 -64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297442" + "plane" "(-2440 -4096 160) (-2440 -3824 160) (-2424 -3824 160)" + "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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064106" + side + { + "id" "297477" + "plane" "(-2816 -3800 32) (-2816 -3824 32) (-2424 -3824 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" "297476" + "plane" "(-2816 -3824 160) (-2816 -3824 32) (-2816 -3800 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" "297475" + "plane" "(-2424 -3800 160) (-2424 -3800 32) (-2424 -3824 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 5] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297474" + "plane" "(-2816 -3800 160) (-2816 -3800 32) (-2424 -3800 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 5] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297473" + "plane" "(-2424 -3824 160) (-2424 -3824 32) (-2816 -3824 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" "297472" + "plane" "(-2816 -3824 160) (-2816 -3800 160) (-2424 -3800 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" + } + editor + { + "color" "0 123 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064307" + side + { + "id" "297483" + "plane" "(-2424 -4720 352) (-2424 -5632 352) (-2440 -5632 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297482" + "plane" "(-2424 -5632 184) (-2424 -5632 352) (-2424 -4720 352)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297481" + "plane" "(-2440 -5632 184) (-2440 -5632 352) (-2424 -5632 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" "297480" + "plane" "(-2440 -4720 184) (-2440 -4720 352) (-2440 -5632 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" "297479" + "plane" "(-2424 -4720 184) (-2424 -4720 352) (-2440 -4720 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" "297478" + "plane" "(-2440 -4720 184) (-2440 -5632 184) (-2424 -5632 184)" + "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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064308" + side + { + "id" "297489" + "plane" "(-2424 -4720 184) (-2424 -4720 160) (-2424 -5632 160)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297488" + "plane" "(-2424 -5632 184) (-2424 -5632 160) (-2440 -5632 160)" + "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" "297487" + "plane" "(-2440 -5632 184) (-2440 -5632 160) (-2440 -4720 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" "297486" + "plane" "(-2440 -4720 184) (-2440 -4720 160) (-2424 -4720 160)" + "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" "297485" + "plane" "(-2440 -4720 160) (-2440 -5632 160) (-2424 -5632 160)" + "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" "297484" + "plane" "(-2424 -4720 184) (-2424 -5632 184) (-2440 -5632 184)" + "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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064309" + side + { + "id" "297495" + "plane" "(-2440 -4720 352) (-2440 -4096 352) (-2424 -4096 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297494" + "plane" "(-2424 -4720 184) (-2424 -4720 352) (-2424 -4096 352)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297493" + "plane" "(-2440 -4096 184) (-2440 -4096 352) (-2440 -4720 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" "297492" + "plane" "(-2440 -4720 184) (-2440 -4720 352) (-2424 -4720 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" "297491" + "plane" "(-2424 -4096 184) (-2424 -4096 352) (-2440 -4096 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" "297490" + "plane" "(-2440 -4096 184) (-2440 -4720 184) (-2424 -4720 184)" + "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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064310" + side + { + "id" "297501" + "plane" "(-2424 -4096 184) (-2424 -4096 160) (-2424 -4720 160)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297500" + "plane" "(-2440 -4720 184) (-2440 -4720 160) (-2440 -4096 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" "297499" + "plane" "(-2424 -4720 184) (-2424 -4720 160) (-2440 -4720 160)" + "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" "297498" + "plane" "(-2440 -4096 184) (-2440 -4096 160) (-2424 -4096 160)" + "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" "297497" + "plane" "(-2440 -4096 160) (-2440 -4720 160) (-2424 -4720 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 319.996] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297496" + "plane" "(-2440 -4720 184) (-2440 -4096 184) (-2424 -4096 184)" + "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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064311" + side + { + "id" "297507" + "plane" "(-2440 -4096 352) (-2440 -3824 352) (-2424 -3824 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297506" + "plane" "(-2424 -4096 184) (-2424 -4096 352) (-2424 -3824 352)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297505" + "plane" "(-2424 -3824 184) (-2424 -3824 352) (-2440 -3824 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" "297504" + "plane" "(-2440 -3824 184) (-2440 -3824 352) (-2440 -4096 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" "297503" + "plane" "(-2440 -4096 184) (-2440 -4096 352) (-2424 -4096 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" "297502" + "plane" "(-2424 -4096 184) (-2424 -3824 184) (-2440 -3824 184)" + "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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064312" + side + { + "id" "297513" + "plane" "(-2424 -3824 184) (-2424 -3824 160) (-2424 -4096 160)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297512" + "plane" "(-2440 -3824 184) (-2440 -3824 160) (-2424 -3824 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" "297511" + "plane" "(-2440 -4096 184) (-2440 -4096 160) (-2440 -3824 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" "297510" + "plane" "(-2424 -4096 184) (-2424 -4096 160) (-2440 -4096 160)" + "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" "297509" + "plane" "(-2424 -4096 160) (-2424 -3824 160) (-2440 -3824 160)" + "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" "297508" + "plane" "(-2440 -4096 184) (-2440 -3824 184) (-2424 -3824 184)" + "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 189 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064313" + side + { + "id" "297519" + "plane" "(-2816 -3824 352) (-2816 -3800 352) (-2424 -3800 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297518" + "plane" "(-2816 -3800 184) (-2816 -3800 352) (-2816 -3824 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" "297517" + "plane" "(-2424 -3824 184) (-2424 -3824 352) (-2424 -3800 352)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297516" + "plane" "(-2424 -3800 184) (-2424 -3800 352) (-2816 -3800 352)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297515" + "plane" "(-2816 -3824 184) (-2816 -3824 352) (-2424 -3824 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" "297514" + "plane" "(-2816 -3800 184) (-2816 -3824 184) (-2424 -3824 184)" + "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 123 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2064314" + side + { + "id" "297525" + "plane" "(-2816 -3824 184) (-2816 -3824 160) (-2816 -3800 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" "297524" + "plane" "(-2424 -3800 184) (-2424 -3800 160) (-2424 -3824 160)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297523" + "plane" "(-2816 -3800 184) (-2816 -3800 160) (-2424 -3800 160)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297522" + "plane" "(-2424 -3824 184) (-2424 -3824 160) (-2816 -3824 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" "297521" + "plane" "(-2816 -3800 160) (-2816 -3824 160) (-2424 -3824 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" "297520" + "plane" "(-2816 -3824 184) (-2816 -3800 184) (-2424 -3800 184)" + "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 123 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2065181" + side + { + "id" "297982" + "plane" "(-2600 -5664 32) (-2600 -5632 32) (-2424 -5632 32)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297983" + "plane" "(-2600 -5632 -16) (-2600 -5664 -16) (-2424 -5664 -16)" + "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" "297984" + "plane" "(-2600 -5664 -16) (-2600 -5632 -16) (-2600 -5632 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" "297985" + "plane" "(-2424 -5632 -16) (-2424 -5664 -16) (-2424 -5664 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" "297986" + "plane" "(-2600 -5632 -16) (-2424 -5632 -16) (-2424 -5632 32)" + "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" "297987" + "plane" "(-2424 -5664 -16) (-2600 -5664 -16) (-2600 -5664 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 253 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2044143" + side + { + "id" "296440" + "plane" "(1840 -2672 552) (1840 -2560 552) (2416 -2560 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296441" + "plane" "(1840 -2560 486) (1840 -2672 486) (2416 -2672 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296442" + "plane" "(1840 -2672 486) (1840 -2560 486) (1840 -2560 552)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 267] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296443" + "plane" "(2416 -2560 486) (2416 -2672 486) (2416 -2672 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296444" + "plane" "(1840 -2560 486) (2416 -2560 486) (2416 -2560 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296445" + "plane" "(2416 -2672 486) (1840 -2672 486) (1840 -2672 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 184 141" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2044166" + side + { + "id" "296464" + "plane" "(2400 -2576 552) (2416 -2576 552) (2416 -2672 552)" + "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" "296465" + "plane" "(2400 -2672 486) (2416 -2672 486) (2416 -2576 486)" + "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" "296466" + "plane" "(2400 -2576 552) (2400 -2672 552) (2400 -2672 486)" + "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" "296467" + "plane" "(2416 -2576 486) (2416 -2672 486) (2416 -2672 552)" + "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" "296468" + "plane" "(2416 -2576 552) (2400 -2576 552) (2400 -2576 486)" + "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" "296469" + "plane" "(2416 -2672 486) (2400 -2672 486) (2400 -2672 552)" + "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" "0 106 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2044170" + side + { + "id" "296470" + "plane" "(2416 -2576 552) (2416 -2560 552) (2808 -2560 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296471" + "plane" "(2416 -2560 486) (2416 -2576 486) (2808 -2576 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296472" + "plane" "(2416 -2576 486) (2416 -2560 486) (2416 -2560 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296473" + "plane" "(2808 -2560 486) (2808 -2576 486) (2808 -2576 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296474" + "plane" "(2416 -2560 486) (2808 -2560 486) (2808 -2560 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296475" + "plane" "(2808 -2576 486) (2416 -2576 486) (2416 -2576 552)" + "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 206 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2044172" + side + { + "id" "296482" + "plane" "(2416 -2720 486) (2416 -2672 486) (2808 -2672 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296483" + "plane" "(2416 -2672 368) (2416 -2720 368) (2808 -2720 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" "296484" + "plane" "(2416 -2720 368) (2416 -2672 368) (2416 -2672 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296485" + "plane" "(2808 -2672 368) (2808 -2720 368) (2808 -2720 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296486" + "plane" "(2416 -2672 368) (2808 -2672 368) (2808 -2672 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296487" + "plane" "(2808 -2720 368) (2416 -2720 368) (2416 -2720 486)" + "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 126 167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2044173" + side + { + "id" "296488" + "plane" "(2416 -2720 552) (2416 -2576 552) (2808 -2576 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296489" + "plane" "(2416 -2576 486) (2416 -2720 486) (2808 -2720 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296490" + "plane" "(2416 -2720 486) (2416 -2576 486) (2416 -2576 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296491" + "plane" "(2808 -2576 486) (2808 -2720 486) (2808 -2720 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296492" + "plane" "(2416 -2576 486) (2808 -2576 486) (2808 -2576 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296493" + "plane" "(2808 -2720 486) (2416 -2720 486) (2416 -2720 552)" + "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 132 165" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2026201" + side + { + "id" "296362" + "plane" "(1536 -2064 -40) (1536 -2040 -40) (1640 -2040 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296363" + "plane" "(1536 -2040 -56) (1536 -2064 -56) (1640 -2064 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296364" + "plane" "(1536 -2064 -56) (1536 -2040 -56) (1536 -2040 -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" "296365" + "plane" "(1640 -2040 -56) (1640 -2064 -56) (1640 -2064 -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" "296366" + "plane" "(1536 -2040 -56) (1640 -2040 -56) (1640 -2040 -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" "296367" + "plane" "(1640 -2064 -56) (1536 -2064 -56) (1536 -2064 -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 193 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2026217" + side + { + "id" "296379" + "plane" "(1792 -1628 -40) (1792 -1424 -40) (3568 -1424 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296378" + "plane" "(1792 -1424 -56) (1792 -1628 -56) (3568 -1628 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296377" + "plane" "(1792 -1628 -56) (1792 -1424 -56) (1792 -1424 -40)" + "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" "296376" + "plane" "(3568 -1424 -56) (3568 -1628 -56) (3568 -1628 -40)" + "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" "296375" + "plane" "(3568 -1628 -56) (1792 -1628 -56) (1792 -1628 -40)" + "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" "296374" + "plane" "(1792 -1424 -56) (3568 -1424 -56) (3568 -1424 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2026218" + side + { + "id" "296385" + "plane" "(1536 -1424 -16) (1536 -1280 -16) (3568 -1280 -16)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296384" + "plane" "(1536 -1280 -40) (1536 -1424 -40) (3568 -1424 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296383" + "plane" "(1536 -1424 -40) (1536 -1280 -40) (1536 -1280 -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" "296382" + "plane" "(3568 -1280 -40) (3568 -1424 -40) (3568 -1424 -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" "296381" + "plane" "(1536 -1280 -40) (3568 -1280 -40) (3568 -1280 -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" "296380" + "plane" "(3568 -1424 -40) (1536 -1424 -40) (1536 -1424 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 142 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2026230" + side + { + "id" "296392" + "plane" "(1520 -1408 -32) (1536 -1408 -32) (1536 -2040 -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" "296393" + "plane" "(1520 -2040 -56) (1536 -2040 -56) (1536 -1408 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296394" + "plane" "(1520 -1408 -32) (1520 -2040 -32) (1520 -2040 -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" "296395" + "plane" "(1536 -1408 -56) (1536 -2040 -56) (1536 -2040 -32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296396" + "plane" "(1536 -1408 -32) (1520 -1408 -32) (1520 -1408 -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" "296397" + "plane" "(1536 -2040 -56) (1520 -2040 -56) (1520 -2040 -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 191 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2026776" + side + { + "id" "296404" + "plane" "(1824 -1628 486) (1856 -1628 486) (1856 -1644 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296405" + "plane" "(1824 -1644 -200) (1856 -1644 -200) (1856 -1628 -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" "296406" + "plane" "(1824 -1628 486) (1824 -1644 486) (1824 -1644 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296407" + "plane" "(1856 -1628 -200) (1856 -1644 -200) (1856 -1644 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296408" + "plane" "(1856 -1628 486) (1824 -1628 486) (1824 -1628 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296409" + "plane" "(1856 -1644 -200) (1824 -1644 -200) (1824 -1644 486)" + "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 189 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2026779" + side + { + "id" "296410" + "plane" "(1840 -2560 552) (1840 -1628 552) (1856 -1628 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296411" + "plane" "(1840 -1628 486) (1840 -2560 486) (1856 -2560 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296412" + "plane" "(1840 -2560 486) (1840 -1628 486) (1840 -1628 552)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 267] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296413" + "plane" "(1856 -1628 486) (1856 -2560 486) (1856 -2560 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296414" + "plane" "(1840 -1628 486) (1856 -1628 486) (1856 -1628 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296415" + "plane" "(1856 -2560 486) (1840 -2560 486) (1840 -2560 552)" + "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 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016151" + side + { + "id" "295203" + "plane" "(-376 -2912 128) (-376 -3184 128) (-352 -3184 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" "295202" + "plane" "(-376 -3184 144) (-376 -3184 128) (-376 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295201" + "plane" "(-352 -2912 144) (-352 -2912 128) (-352 -3184 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295200" + "plane" "(-376 -2912 144) (-376 -2912 128) (-352 -2912 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" "295199" + "plane" "(-352 -3184 144) (-352 -3184 128) (-376 -3184 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295198" + "plane" "(-376 -3184 144) (-376 -2912 144) (-352 -2912 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" + } + editor + { + "color" "0 247 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016161" + side + { + "id" "295215" + "plane" "(-1008 -3168 128) (-1008 -3184 128) (-376 -3184 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 -704] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295214" + "plane" "(-1008 -3184 144) (-1008 -3184 128) (-1008 -3168 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" "295213" + "plane" "(-376 -3168 144) (-376 -3168 128) (-376 -3184 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" "295212" + "plane" "(-1008 -3168 144) (-1008 -3168 128) (-376 -3168 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295211" + "plane" "(-376 -3184 144) (-376 -3184 128) (-1008 -3184 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295210" + "plane" "(-1008 -3184 144) (-1008 -3168 144) (-376 -3168 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" + } + editor + { + "color" "0 169 102" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016166" + side + { + "id" "295227" + "plane" "(-1024 -3184 144) (-1024 -3184 128) (-1024 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295226" + "plane" "(-1008 -2912 144) (-1008 -2912 128) (-1008 -3184 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295225" + "plane" "(-1024 -2912 144) (-1024 -2912 128) (-1008 -2912 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" "295224" + "plane" "(-1008 -3184 144) (-1008 -3184 128) (-1024 -3184 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295223" + "plane" "(-1024 -2912 128) (-1024 -3184 128) (-1008 -3184 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" "295222" + "plane" "(-1024 -3184 144) (-1024 -2912 144) (-1008 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016184" + side + { + "id" "295233" + "plane" "(-1024 -2896 192) (-1024 -2896 144) (-1024 -2912 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295232" + "plane" "(-1747 -2896 192) (-1747 -2896 144) (-1024 -2896 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295231" + "plane" "(-1024 -2912 192) (-1024 -2912 144) (-1747 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295230" + "plane" "(-1747 -2912 192) (-1747 -2912 144) (-1747 -2896 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295229" + "plane" "(-1747 -2896 192) (-1024 -2896 192) (-1024 -2912 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" "295228" + "plane" "(-1747 -2912 144) (-1024 -2912 144) (-1024 -2896 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" + } + editor + { + "color" "0 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016185" + side + { + "id" "295239" + "plane" "(-1747 -2912 128) (-1024 -2912 128) (-1024 -2896 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" "295238" + "plane" "(-1024 -2896 144) (-1024 -2896 128) (-1024 -2912 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" "295237" + "plane" "(-1747 -2896 144) (-1747 -2896 128) (-1024 -2896 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295236" + "plane" "(-1024 -2912 144) (-1024 -2912 128) (-1747 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295235" + "plane" "(-1747 -2912 144) (-1747 -2912 128) (-1747 -2896 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" "295234" + "plane" "(-1747 -2896 144) (-1024 -2896 144) (-1024 -2912 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" + } + editor + { + "color" "0 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016208" + side + { + "id" "295251" + "plane" "(-1968 -2912 128) (-1968 -3584 128) (-1952 -3584 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 255.996] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295250" + "plane" "(-1968 -3584 128) (-1968 -2912 128) (-1968 -2912 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295249" + "plane" "(-1952 -2912 128) (-1952 -3584 128) (-1952 -3584 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295248" + "plane" "(-1968 -2912 128) (-1952 -2912 128) (-1952 -2912 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" "295247" + "plane" "(-1952 -3584 128) (-1968 -3584 128) (-1968 -3584 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295246" + "plane" "(-1968 -3584 144) (-1968 -2912 144) (-1952 -2912 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" + } + editor + { + "color" "0 153 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016210" + side + { + "id" "295263" + "plane" "(-2512 -3560 128) (-2512 -3560 144) (-2512 -3584 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295262" + "plane" "(-1968 -3584 128) (-1968 -3584 144) (-1968 -3560 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295261" + "plane" "(-1968 -3560 128) (-1968 -3560 144) (-2512 -3560 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" "295260" + "plane" "(-2512 -3584 128) (-2512 -3584 144) (-1968 -3584 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295259" + "plane" "(-2512 -3560 128) (-2512 -3584 128) (-1968 -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" "295258" + "plane" "(-2512 -3584 144) (-2512 -3560 144) (-1968 -3560 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" + } + editor + { + "color" "0 255 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016220" + side + { + "id" "295269" + "plane" "(-1851 -2896 144) (-1851 -2896 192) (-2080 -2896 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295268" + "plane" "(-1851 -2912 192) (-1851 -2912 144) (-2080 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295267" + "plane" "(-1851 -2896 192) (-1851 -2896 144) (-1851 -2912 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295266" + "plane" "(-1851 -2912 192) (-2080 -2912 192) (-2080 -2896 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" "295265" + "plane" "(-2080 -2912 192) (-2080 -2912 144) (-2080 -2896 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295264" + "plane" "(-1851 -2896 144) (-2080 -2896 144) (-2080 -2912 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" + } + editor + { + "color" "0 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016221" + side + { + "id" "295275" + "plane" "(-1851 -2896 128) (-2080 -2896 128) (-2080 -2912 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" "295274" + "plane" "(-2080 -2896 128) (-1851 -2896 128) (-1851 -2896 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295273" + "plane" "(-1851 -2912 144) (-1851 -2912 128) (-2080 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295272" + "plane" "(-1851 -2896 144) (-1851 -2896 128) (-1851 -2912 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" "295271" + "plane" "(-2080 -2912 144) (-2080 -2912 128) (-2080 -2896 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" "295270" + "plane" "(-1851 -2912 144) (-2080 -2912 144) (-2080 -2896 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" + } + editor + { + "color" "0 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016294" + side + { + "id" "295281" + "plane" "(-1968 -3584 192) (-1968 -2912 192) (-1952 -2912 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" "295280" + "plane" "(-1968 -2912 176) (-1968 -2912 192) (-1968 -3584 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" "295279" + "plane" "(-1952 -3584 176) (-1952 -3584 192) (-1952 -2912 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295278" + "plane" "(-1952 -2912 176) (-1952 -2912 192) (-1968 -2912 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" "295277" + "plane" "(-1968 -3584 176) (-1968 -3584 192) (-1952 -3584 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295276" + "plane" "(-1968 -2912 176) (-1968 -3584 176) (-1952 -3584 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" "0 153 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016295" + side + { + "id" "295287" + "plane" "(-1968 -2912 144) (-1968 -2912 176) (-1968 -3584 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" "295286" + "plane" "(-1952 -3584 144) (-1952 -3584 176) (-1952 -2912 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 -313] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295285" + "plane" "(-1952 -2912 144) (-1952 -2912 176) (-1968 -2912 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" "295284" + "plane" "(-1968 -3584 144) (-1968 -3584 176) (-1952 -3584 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 -313] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295283" + "plane" "(-1968 -2912 144) (-1968 -3584 144) (-1952 -3584 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" "295282" + "plane" "(-1968 -3584 176) (-1968 -2912 176) (-1952 -2912 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" "0 153 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016296" + side + { + "id" "295293" + "plane" "(-2512 -3584 192) (-2512 -3560 192) (-1968 -3560 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" "295292" + "plane" "(-2512 -3560 176) (-2512 -3560 192) (-2512 -3584 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" "295291" + "plane" "(-1968 -3584 176) (-1968 -3584 192) (-1968 -3560 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" "295290" + "plane" "(-1968 -3560 176) (-1968 -3560 192) (-2512 -3560 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" "295289" + "plane" "(-2512 -3584 176) (-2512 -3584 192) (-1968 -3584 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295288" + "plane" "(-2512 -3560 176) (-2512 -3584 176) (-1968 -3584 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" "0 255 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016297" + side + { + "id" "295299" + "plane" "(-2512 -3560 144) (-2512 -3560 176) (-2512 -3584 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" "295298" + "plane" "(-1968 -3584 144) (-1968 -3584 176) (-1968 -3560 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" "295297" + "plane" "(-1968 -3560 144) (-1968 -3560 176) (-2512 -3560 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" "295296" + "plane" "(-2512 -3584 144) (-2512 -3584 176) (-1968 -3584 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 -313] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295295" + "plane" "(-2512 -3560 144) (-2512 -3584 144) (-1968 -3584 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" "295294" + "plane" "(-2512 -3584 176) (-2512 -3560 176) (-1968 -3560 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" "0 255 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016357" + side + { + "id" "295305" + "plane" "(-1024 -3184 192) (-1024 -3184 176) (-1024 -2912 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295304" + "plane" "(-1008 -2912 192) (-1008 -2912 176) (-1008 -3184 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295303" + "plane" "(-1024 -2912 192) (-1024 -2912 176) (-1008 -2912 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" "295302" + "plane" "(-1008 -3184 192) (-1008 -3184 176) (-1024 -3184 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295301" + "plane" "(-1024 -3184 192) (-1024 -2912 192) (-1008 -2912 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" "295300" + "plane" "(-1024 -2912 176) (-1024 -3184 176) (-1008 -3184 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016358" + side + { + "id" "295311" + "plane" "(-1024 -3184 176) (-1024 -3184 144) (-1024 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 -313] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295310" + "plane" "(-1008 -2912 176) (-1008 -2912 144) (-1008 -3184 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295309" + "plane" "(-1024 -2912 176) (-1024 -2912 144) (-1008 -2912 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" "295308" + "plane" "(-1008 -3184 176) (-1008 -3184 144) (-1024 -3184 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 -313] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295307" + "plane" "(-1024 -2912 144) (-1024 -3184 144) (-1008 -3184 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295306" + "plane" "(-1024 -3184 176) (-1024 -2912 176) (-1008 -2912 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016359" + side + { + "id" "295317" + "plane" "(-1008 -3184 192) (-1008 -3184 176) (-1008 -3168 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" "295316" + "plane" "(-376 -3168 192) (-376 -3168 176) (-376 -3184 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" "295315" + "plane" "(-1008 -3168 192) (-1008 -3168 176) (-376 -3168 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295314" + "plane" "(-376 -3184 192) (-376 -3184 176) (-1008 -3184 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295313" + "plane" "(-1008 -3184 192) (-1008 -3168 192) (-376 -3168 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" "295312" + "plane" "(-1008 -3168 176) (-1008 -3184 176) (-376 -3184 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" "0 169 102" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016360" + side + { + "id" "295323" + "plane" "(-1008 -3184 176) (-1008 -3184 144) (-1008 -3168 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295322" + "plane" "(-376 -3168 176) (-376 -3168 144) (-376 -3184 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295321" + "plane" "(-1008 -3168 176) (-1008 -3168 144) (-376 -3168 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295320" + "plane" "(-376 -3184 176) (-376 -3184 144) (-1008 -3184 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 -313] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295319" + "plane" "(-1008 -3168 144) (-1008 -3184 144) (-376 -3184 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" "295318" + "plane" "(-1008 -3184 176) (-1008 -3168 176) (-376 -3168 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" "0 169 102" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016385" + side + { + "id" "295329" + "plane" "(-376 -3184 192) (-376 -3184 176) (-376 -2912 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295328" + "plane" "(-352 -2912 192) (-352 -2912 176) (-352 -3184 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295327" + "plane" "(-376 -2912 192) (-376 -2912 176) (-352 -2912 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" "295326" + "plane" "(-352 -3184 192) (-352 -3184 176) (-376 -3184 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295325" + "plane" "(-376 -3184 192) (-376 -2912 192) (-352 -2912 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" "295324" + "plane" "(-376 -2912 176) (-376 -3184 176) (-352 -3184 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016386" + side + { + "id" "295335" + "plane" "(-376 -3184 176) (-376 -3184 144) (-376 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295334" + "plane" "(-352 -2912 176) (-352 -2912 144) (-352 -3184 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295333" + "plane" "(-376 -2912 176) (-376 -2912 144) (-352 -2912 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" "295332" + "plane" "(-352 -3184 176) (-352 -3184 144) (-376 -3184 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 -313] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295331" + "plane" "(-376 -2912 144) (-376 -3184 144) (-352 -3184 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" "295330" + "plane" "(-376 -3184 176) (-376 -2912 176) (-352 -2912 176)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016480" + side + { + "id" "295359" + "plane" "(1824 -2456 424) (1824 -2456 272) (1824 -1724 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" "295358" + "plane" "(1840 -1724 424) (1840 -1724 272) (1840 -2456 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" "295357" + "plane" "(1824 -1724 424) (1824 -1724 272) (1840 -1724 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" "295356" + "plane" "(1840 -2456 424) (1840 -2456 272) (1824 -2456 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" "295355" + "plane" "(1824 -1724 272) (1824 -2456 272) (1840 -2456 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" "295354" + "plane" "(1824 -2456 424) (1824 -1724 424) (1840 -1724 424)" + "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 194 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016487" + side + { + "id" "295371" + "plane" "(1792 -2560 358) (1792 -2560 240) (1792 -2406 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295370" + "plane" "(1808 -2406 358) (1808 -2406 240) (1808 -2560 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 -1 0 -126] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295369" + "plane" "(1808 -2560 358) (1808 -2560 240) (1792 -2560 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[1 0 0 -511.698] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295368" + "plane" "(1792 -2406 358) (1792 -2406 240) (1808 -2406 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" "295367" + "plane" "(1792 -2406 240) (1792 -2560 240) (1808 -2560 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" "295366" + "plane" "(1792 -2560 358) (1792 -2406 358) (1808 -2406 358)" + "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 194 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016491" + side + { + "id" "295377" + "plane" "(1808 -2672 486) (1808 -2672 368) (1808 -2560 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" "295376" + "plane" "(2808 -2560 486) (2808 -2560 368) (2808 -2672 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295375" + "plane" "(1808 -2560 486) (1808 -2560 368) (2808 -2560 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295374" + "plane" "(2808 -2672 486) (2808 -2672 368) (1808 -2672 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 44] 0.25" + "vaxis" "[-1 0 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295373" + "plane" "(1808 -2672 486) (1808 -2560 486) (2808 -2560 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295372" + "plane" "(1808 -2560 368) (1808 -2672 368) (2808 -2672 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 114 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016633" + side + { + "id" "295426" + "plane" "(1808 -1724 358) (1808 -1628 358) (1824 -1628 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295425" + "plane" "(1808 -1724 240) (1808 -1628 240) (1808 -1628 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295424" + "plane" "(1824 -1628 240) (1808 -1628 240) (1808 -1724 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" "295423" + "plane" "(1824 -1628 358) (1808 -1628 358) (1808 -1628 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" "295422" + "plane" "(1824 -1628 240) (1824 -1724 240) (1824 -1724 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295421" + "plane" "(1824 -1724 240) (1808 -1724 240) (1808 -1724 358)" + "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 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016653" + side + { + "id" "295438" + "plane" "(2384 -2560 486) (1808 -2560 486) (1808 -2456 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295437" + "plane" "(2384 -2560 240) (1808 -2560 240) (1808 -2560 486)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[1 0 0 -511.698] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295436" + "plane" "(2384 -2456 240) (1808 -2456 240) (1808 -2560 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" "295435" + "plane" "(1808 -2456 486) (1808 -2560 486) (1808 -2560 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" "295434" + "plane" "(1808 -2456 240) (2384 -2456 240) (2384 -2456 486)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295433" + "plane" "(2384 -2456 240) (2384 -2560 240) (2384 -2560 486)" + "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 136 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016654" + side + { + "id" "295444" + "plane" "(2478 -2560 536) (2384 -2560 536) (2384 -2144 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295443" + "plane" "(2478 -2560 240) (2384 -2560 240) (2384 -2560 536)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[1 0 0 -511.698] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295442" + "plane" "(2384 -2560 240) (2478 -2560 240) (2478 -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" "295441" + "plane" "(2478 -2144 240) (2478 -2560 240) (2478 -2560 536)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 184.301] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295440" + "plane" "(2384 -2144 240) (2478 -2144 240) (2478 -2144 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295439" + "plane" "(2384 -2144 536) (2384 -2560 536) (2384 -2560 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" + } + editor + { + "color" "0 136 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017409" + side + { + "id" "296200" + "plane" "(1824 -2456 272) (1824 -1644 272) (1848 -1644 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" "296201" + "plane" "(1824 -1644 -64) (1824 -2456 -64) (1848 -2456 -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" "296202" + "plane" "(1824 -2456 -64) (1824 -1644 -64) (1824 -1644 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" "296203" + "plane" "(1848 -1644 -64) (1848 -2456 -64) (1848 -2456 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" "296204" + "plane" "(1824 -1644 -64) (1848 -1644 -64) (1848 -1644 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" "296205" + "plane" "(1848 -2456 -64) (1824 -2456 -64) (1824 -2456 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" + } + editor + { + "color" "0 121 230" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017570" + side + { + "id" "296344" + "plane" "(1792 -2406 -40) (1792 -1628 -40) (1824 -1628 -40)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296345" + "plane" "(1792 -1628 -64) (1792 -2406 -64) (1824 -2406 -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" "296346" + "plane" "(1792 -2406 -64) (1792 -1628 -64) (1792 -1628 -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" "296347" + "plane" "(1824 -1628 -64) (1824 -2406 -64) (1824 -2406 -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" "296348" + "plane" "(1792 -1628 -64) (1824 -1628 -64) (1824 -1628 -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" "296349" + "plane" "(1824 -2406 -64) (1792 -2406 -64) (1792 -2406 -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 105 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2006408" + side + { + "id" "294664" + "plane" "(1528 -3837 48) (1440 -3837 48) (1440 -3629 48)" + "material" "TOOLS/TOOLSCLIP_DIRT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294665" + "plane" "(1528 -3629 0) (1440 -3629 0) (1440 -3837 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294666" + "plane" "(1440 -3629 0) (1528 -3629 0) (1528 -3629 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294667" + "plane" "(1528 -3837 0) (1440 -3837 0) (1440 -3837 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294668" + "plane" "(1528 -3629 0) (1528 -3837 0) (1528 -3837 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294669" + "plane" "(1440 -3837 0) (1440 -3629 0) (1440 -3629 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1976513" + side + { + "id" "292229" + "plane" "(2432 -3616 -16) (2624 -3616 -16) (2632 -3624 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292228" + "plane" "(2432 -3616 -48) (2432 -3624 -48) (2632 -3624 -48)" + "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" "292227" + "plane" "(2432 -3616 -48) (2432 -3616 -16) (2432 -3624 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -373] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292226" + "plane" "(2624 -3616 -48) (2624 -3616 -16) (2432 -3616 -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" "292225" + "plane" "(2632 -3624 -48) (2632 -3624 -16) (2624 -3616 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292224" + "plane" "(2432 -3624 -48) (2432 -3624 -16) (2632 -3624 -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 213 162" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1976514" + side + { + "id" "292235" + "plane" "(2792 -3768 -16) (2432 -3768 -16) (2432 -3624 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292234" + "plane" "(2432 -3624 -48) (2432 -3768 -48) (2792 -3768 -48)" + "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" "292233" + "plane" "(2432 -3768 -48) (2432 -3624 -48) (2432 -3624 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -373] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292232" + "plane" "(2792 -3768 -48) (2432 -3768 -48) (2432 -3768 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292231" + "plane" "(2792 -3624 -48) (2792 -3768 -48) (2792 -3768 -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" "292230" + "plane" "(2432 -3624 -48) (2792 -3624 -48) (2792 -3624 -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 213 162" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1977919" + side + { + "id" "293405" + "plane" "(2112 -3792 208) (2112 -3792 144) (2112 -3700 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293404" + "plane" "(2128 -3700 208) (2128 -3700 144) (2128 -3792 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.008] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293403" + "plane" "(2112 -3700 208) (2112 -3700 144) (2128 -3700 144)" + "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" "293402" + "plane" "(2128 -3792 208) (2128 -3792 144) (2112 -3792 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293401" + "plane" "(2112 -3700 144) (2112 -3792 144) (2128 -3792 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" "293400" + "plane" "(2112 -3792 208) (2112 -3700 208) (2128 -3700 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "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 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1977920" + side + { + "id" "293411" + "plane" "(2112 -3792 272) (2112 -3792 208) (2112 -3700 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293410" + "plane" "(2128 -3700 272) (2128 -3700 208) (2128 -3792 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293409" + "plane" "(2112 -3700 272) (2112 -3700 208) (2128 -3700 208)" + "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" "293408" + "plane" "(2128 -3792 272) (2128 -3792 208) (2112 -3792 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293407" + "plane" "(2112 -3792 272) (2112 -3700 272) (2128 -3700 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" "293406" + "plane" "(2112 -3700 208) (2112 -3792 208) (2128 -3792 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "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 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1977921" + side + { + "id" "293417" + "plane" "(2112 -3596 208) (2112 -3596 144) (2112 -3456 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293416" + "plane" "(2128 -3456 208) (2128 -3456 144) (2128 -3596 144)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.008] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293415" + "plane" "(2112 -3456 208) (2112 -3456 144) (2128 -3456 144)" + "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" "293414" + "plane" "(2128 -3596 208) (2128 -3596 144) (2112 -3596 144)" + "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" "293413" + "plane" "(2112 -3456 144) (2112 -3596 144) (2128 -3596 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" "293412" + "plane" "(2112 -3596 208) (2112 -3456 208) (2128 -3456 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "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 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1977922" + side + { + "id" "293423" + "plane" "(2112 -3596 272) (2112 -3596 208) (2112 -3456 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293422" + "plane" "(2128 -3456 272) (2128 -3456 208) (2128 -3596 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293421" + "plane" "(2112 -3456 272) (2112 -3456 208) (2128 -3456 208)" + "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" "293420" + "plane" "(2128 -3596 272) (2128 -3596 208) (2112 -3596 208)" + "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" "293419" + "plane" "(2112 -3596 272) (2112 -3456 272) (2128 -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" "293418" + "plane" "(2112 -3456 208) (2112 -3596 208) (2128 -3596 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "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 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978128" + side + { + "id" "293651" + "plane" "(2152 -3768 0) (2152 -3560 0) (2240 -3560 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293650" + "plane" "(2152 -3560 -16) (2152 -3768 -16) (2240 -3768 0)" + "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" "293649" + "plane" "(2152 -3768 -16) (2152 -3768 0) (2240 -3768 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" "293648" + "plane" "(2152 -3560 -16) (2152 -3560 0) (2152 -3768 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" "293647" + "plane" "(2240 -3560 0) (2240 -3560 16) (2152 -3560 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" "293646" + "plane" "(2240 -3768 0) (2240 -3768 16) (2240 -3560 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" "0 227 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978154" + side + { + "id" "293657" + "plane" "(2152 -3560 0) (2136 -3560 0) (2128 -3552 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293656" + "plane" "(2152 -3552 -16) (2128 -3552 -16) (2136 -3560 -16)" + "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" "293655" + "plane" "(2128 -3552 -16) (2152 -3552 -16) (2152 -3552 0)" + "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" "293654" + "plane" "(2136 -3560 -16) (2128 -3552 -16) (2128 -3552 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" "293653" + "plane" "(2152 -3560 -16) (2136 -3560 -16) (2136 -3560 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" "293652" + "plane" "(2152 -3552 -16) (2152 -3560 -16) (2152 -3560 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978155" + side + { + "id" "293663" + "plane" "(2152 -3560 0) (2152 -3552 0) (2240 -3552 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293662" + "plane" "(2152 -3552 -16) (2152 -3560 -16) (2240 -3560 0)" + "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" "293661" + "plane" "(2240 -3560 16) (2240 -3552 16) (2240 -3552 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" "293660" + "plane" "(2240 -3552 16) (2152 -3552 0) (2152 -3552 -16)" + "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" "293659" + "plane" "(2152 -3560 0) (2240 -3560 16) (2240 -3560 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" "293658" + "plane" "(2152 -3552 0) (2152 -3560 0) (2152 -3560 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978156" + side + { + "id" "293669" + "plane" "(2152 -3776 0) (2128 -3776 0) (2136 -3768 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293668" + "plane" "(2128 -3776 -16) (2152 -3776 -16) (2152 -3768 -16)" + "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" "293667" + "plane" "(2152 -3776 -16) (2128 -3776 -16) (2128 -3776 0)" + "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" "293666" + "plane" "(2128 -3776 -16) (2136 -3768 -16) (2136 -3768 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" "293665" + "plane" "(2136 -3768 -16) (2152 -3768 -16) (2152 -3768 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" "293664" + "plane" "(2152 -3768 -16) (2152 -3776 -16) (2152 -3776 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978157" + side + { + "id" "293675" + "plane" "(2152 -3776 0) (2152 -3768 0) (2240 -3768 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293674" + "plane" "(2240 -3768 0) (2152 -3768 -16) (2152 -3776 -16)" + "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" "293673" + "plane" "(2240 -3776 16) (2240 -3768 16) (2240 -3768 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" "293672" + "plane" "(2152 -3776 0) (2240 -3776 16) (2240 -3776 0)" + "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" "293671" + "plane" "(2240 -3768 16) (2152 -3768 0) (2152 -3768 -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" "293670" + "plane" "(2152 -3768 0) (2152 -3776 0) (2152 -3776 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978610" + side + { + "id" "294119" + "plane" "(1360 -2896 208) (1344 -2896 208) (1344 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -400] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294118" + "plane" "(1344 -2912 368) (1344 -2896 368) (1360 -2896 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" "294117" + "plane" "(1344 -2896 208) (1360 -2896 208) (1360 -2896 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" "294116" + "plane" "(1344 -2912 208) (1344 -2896 208) (1344 -2896 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -29] 0.125" + "vaxis" "[0 0 -1 -373] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294115" + "plane" "(1360 -2896 208) (1360 -2912 208) (1360 -2912 368)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 -400] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294114" + "plane" "(1360 -2912 208) (1344 -2912 208) (1344 -2912 368)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 48.002] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978613" + side + { + "id" "294125" + "plane" "(1344 -3128 208) (1344 -3136 208) (1360 -3136 208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -400] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294124" + "plane" "(1360 -3136 368) (1344 -3136 368) (1344 -3128 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" "294123" + "plane" "(1360 -3136 208) (1344 -3136 208) (1344 -3136 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" "294122" + "plane" "(1344 -3136 208) (1344 -3128 208) (1344 -3128 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 10] 0.125" + "vaxis" "[0 0 -1 -373] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294121" + "plane" "(1360 -3128 208) (1360 -3136 208) (1360 -3136 368)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 -400] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294120" + "plane" "(1344 -3128 208) (1360 -3128 208) (1360 -3128 368)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 240.004] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978623" + side + { + "id" "294137" + "plane" "(1344 -2912 208) (1344 -3128 208) (1360 -3128 208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -400] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294136" + "plane" "(1344 -3128 224) (1344 -3128 208) (1344 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -29] 0.125" + "vaxis" "[0 0 -1 -373] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294135" + "plane" "(1360 -2912 224) (1360 -2912 208) (1360 -3128 208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -400] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294134" + "plane" "(1344 -2912 224) (1344 -2912 208) (1360 -2912 208)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294133" + "plane" "(1360 -3128 224) (1360 -3128 208) (1344 -3128 208)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294132" + "plane" "(1344 -3128 224) (1344 -2912 224) (1360 -2912 224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978636" + side + { + "id" "294155" + "plane" "(1344 -3128 368) (1344 -2912 368) (1360 -2912 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" "294154" + "plane" "(1344 -2912 344) (1344 -2912 368) (1344 -3128 368)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -29] 0.125" + "vaxis" "[0 0 -1 -373] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294153" + "plane" "(1360 -3128 344) (1360 -3128 368) (1360 -2912 368)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -400] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294152" + "plane" "(1360 -2912 344) (1360 -2912 368) (1344 -2912 368)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294151" + "plane" "(1344 -3128 344) (1344 -3128 368) (1360 -3128 368)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294150" + "plane" "(1344 -2912 344) (1344 -3128 344) (1360 -3128 344)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 112] 0.125" + "vaxis" "[1 0 0 63.9843] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 241 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978738" + side + { + "id" "294264" + "plane" "(1360 -2896 368) (1472 -2896 368) (1472 -3152 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" "294265" + "plane" "(1360 -3152 352) (1472 -3152 352) (1472 -2896 352)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294266" + "plane" "(1360 -2896 368) (1360 -3152 368) (1360 -3152 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" "294267" + "plane" "(1472 -2896 352) (1472 -3152 352) (1472 -3152 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" "294268" + "plane" "(1472 -2896 368) (1360 -2896 368) (1360 -2896 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" "294269" + "plane" "(1472 -3152 352) (1360 -3152 352) (1360 -3152 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 130 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978762" + side + { + "id" "294275" + "plane" "(1520 -2844 368) (1540 -2844 368) (1536 -2880 368)" + "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" "294274" + "plane" "(1540 -2844 368) (1520 -2844 368) (1520 -2844 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.961524 -0.274721 0 -41.1135] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294273" + "plane" "(1520 -2844 240) (1520 -2844 368) (1520 -2880 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.0830443 0.996545 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294272" + "plane" "(1540 -2844 368) (1540 -2844 240) (1536 -2880 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0.110434 0.993883 0 -236.972] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294271" + "plane" "(1520 -2844 240) (1520 -2880 240) (1536 -2880 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" "294270" + "plane" "(1520 -2880 368) (1536 -2880 368) (1536 -2880 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" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978892" + side + { + "id" "294389" + "plane" "(1520 -2896 16) (1520 -2928 16) (1536 -2928 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.5" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294388" + "plane" "(1520 -2928 16) (1520 -2896 16) (1520 -2896 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "12" + "smoothing_groups" "0" + } + side + { + "id" "294387" + "plane" "(1536 -2896 16) (1536 -2928 16) (1536 -2928 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 143.992] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294386" + "plane" "(1520 -2896 16) (1536 -2896 16) (1536 -2896 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" "294385" + "plane" "(1536 -2928 16) (1520 -2928 16) (1520 -2928 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" "294384" + "plane" "(1520 -2928 208) (1520 -2896 208) (1536 -2896 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" + } + editor + { + "color" "0 178 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1978893" + side + { + "id" "294395" + "plane" "(1520 -2928 128) (1520 -3056 128) (1536 -3056 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" "294394" + "plane" "(1520 -3056 208) (1520 -3056 128) (1520 -2928 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "12" + "smoothing_groups" "0" + } + side + { + "id" "294393" + "plane" "(1536 -2928 208) (1536 -2928 128) (1536 -3056 128)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 143.992] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294392" + "plane" "(1520 -2928 208) (1520 -2928 128) (1536 -2928 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" "294391" + "plane" "(1536 -3056 208) (1536 -3056 128) (1520 -3056 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" "294390" + "plane" "(1520 -3056 208) (1520 -2928 208) (1536 -2928 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" + } + editor + { + "color" "0 144 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1937825" + side + { + "id" "289998" + "plane" "(896 -3176 -38.25) (896 -3121 -38.25) (1082 -3121 -38.25)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[896 -3176 -38.25]" + "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 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" + } + 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 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" + } + 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 125 0 0 0" + "row1" "0 0 0 0 50 255 0 0 0" + "row2" "0 0 0 0 250 255 0 0 0" + "row3" "0 0 0 0 225 255 0 0 0" + "row4" "0 0 0 0 225 255 0 0 0" + "row5" "0 50 0 75 75 255 0 0 0" + "row6" "75 125 0 0 150 125 125 0 0" + "row7" "0 150 25 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" "289999" + "plane" "(896 -3121 -39.25) (896 -3176 -39.25) (1082 -3176 -39.25)" + "material" "ADS/AD01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "290000" + "plane" "(896 -3176 -39.25) (896 -3121 -39.25) (896 -3121 -38.25)" + "material" "ADS/AD01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -13] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "290001" + "plane" "(1082 -3121 -39.25) (1082 -3176 -39.25) (1082 -3176 -38.25)" + "material" "ADS/AD01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -13] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "290002" + "plane" "(896 -3121 -39.25) (1082 -3121 -39.25) (1082 -3121 -38.25)" + "material" "ADS/AD01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -13] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "290003" + "plane" "(1082 -3176 -39.25) (896 -3176 -39.25) (896 -3176 -38.25)" + "material" "ADS/AD01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -13] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 206" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1927217" + side + { + "id" "289451" + "plane" "(3776 -2144 220) (3776 -2184 220) (3776 -2184 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" "289450" + "plane" "(3776 -2184 240) (3776 -2184 220) (2478 -2184 220)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001_TRIM" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 0 -1 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289449" + "plane" "(2478 -2144 220) (2478 -2184 220) (3776 -2184 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289448" + "plane" "(2478 -2184 240) (2478 -2184 220) (2478 -2144 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" + } + side + { + "id" "289447" + "plane" "(2478 -2144 220) (3776 -2144 220) (3776 -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" "289446" + "plane" "(3776 -2144 240) (3776 -2184 240) (2478 -2184 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" + } + editor + { + "color" "0 136 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1927227" + side + { + "id" "289463" + "plane" "(3776 -2176 220) (3776 -2176 240) (3776 -4128 240)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001_TRIM" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289462" + "plane" "(3808 -4128 220) (3808 -4128 240) (3808 -2176 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" "289461" + "plane" "(3808 -2176 220) (3808 -2176 240) (3776 -2176 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" "289460" + "plane" "(3776 -4128 220) (3776 -4128 240) (3808 -4128 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" "289459" + "plane" "(3776 -2176 220) (3776 -4128 220) (3808 -4128 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289458" + "plane" "(3776 -4128 240) (3776 -2176 240) (3808 -2176 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" + } + editor + { + "color" "0 104 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1927236" + side + { + "id" "289475" + "plane" "(2808 -4080 220) (2808 -4096 220) (3776 -4096 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289474" + "plane" "(2808 -4096 240) (2808 -4096 220) (2808 -4080 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" + } + side + { + "id" "289473" + "plane" "(3776 -4080 240) (3776 -4080 220) (3776 -4096 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" + } + side + { + "id" "289472" + "plane" "(2808 -4080 240) (2808 -4080 220) (3776 -4080 220)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001_TRIM" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289471" + "plane" "(3776 -4096 240) (3776 -4096 220) (2808 -4096 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289470" + "plane" "(2808 -4096 240) (2808 -4080 240) (3776 -4080 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" + } + editor + { + "color" "0 211 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1927252" + side + { + "id" "289499" + "plane" "(2808 -4128 536) (2808 -4080 536) (3776 -4080 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289498" + "plane" "(2808 -4080 504) (2808 -4080 536) (2808 -4128 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" + } + side + { + "id" "289497" + "plane" "(3776 -4128 504) (3776 -4128 536) (3776 -4080 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" + } + side + { + "id" "289496" + "plane" "(3776 -4080 504) (3776 -4080 536) (2808 -4080 536)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 0 -1 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289495" + "plane" "(2808 -4128 504) (2808 -4128 536) (3776 -4128 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289494" + "plane" "(2808 -4080 504) (2808 -4128 504) (3776 -4128 504)" + "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 211 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1927253" + side + { + "id" "289505" + "plane" "(2808 -4108 504) (2808 -4108 240) (2808 -4080 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" "289504" + "plane" "(3776 -4080 504) (3776 -4080 240) (3776 -4108 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" "289503" + "plane" "(2808 -4080 504) (2808 -4080 240) (3776 -4080 240)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 0 -1 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289502" + "plane" "(3776 -4108 504) (3776 -4108 240) (2808 -4108 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" "289501" + "plane" "(2808 -4080 240) (2808 -4108 240) (3776 -4108 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" "289500" + "plane" "(2808 -4108 504) (2808 -4080 504) (3776 -4080 504)" + "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 211 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1927262" + side + { + "id" "289511" + "plane" "(3776 -4128 536) (3776 -2176 536) (3808 -2176 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289510" + "plane" "(3776 -2176 504) (3776 -2176 536) (3776 -4128 536)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 431] 0.25" + "vaxis" "[0 0 -1 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289509" + "plane" "(3808 -4128 504) (3808 -4128 536) (3808 -2176 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" + } + side + { + "id" "289508" + "plane" "(3808 -2176 504) (3808 -2176 536) (3776 -2176 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289507" + "plane" "(3776 -4128 504) (3776 -4128 536) (3808 -4128 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289506" + "plane" "(3776 -2176 504) (3776 -4128 504) (3808 -4128 504)" + "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 104 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1927263" + side + { + "id" "289517" + "plane" "(3776 -2176 240) (3776 -2176 504) (3776 -4128 504)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[0 1 0 431] 0.25" + "vaxis" "[0 0 -1 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289516" + "plane" "(3808 -4128 240) (3808 -4128 504) (3808 -2176 504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289515" + "plane" "(3808 -2176 240) (3808 -2176 504) (3776 -2176 504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289514" + "plane" "(3776 -4128 240) (3776 -4128 504) (3808 -4128 504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289513" + "plane" "(3776 -2176 240) (3776 -4128 240) (3808 -4128 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" "289512" + "plane" "(3776 -4128 504) (3776 -2176 504) (3808 -2176 504)" + "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 104 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1927272" + side + { + "id" "289523" + "plane" "(3776 -2144 536) (3776 -2184 536) (2478 -2184 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289522" + "plane" "(3776 -2184 504) (3776 -2184 536) (3776 -2144 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" + } + side + { + "id" "289521" + "plane" "(2478 -2184 504) (2478 -2184 536) (3776 -2184 536)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 431] 0.25" + "vaxis" "[0 0 -1 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289520" + "plane" "(2478 -2144 504) (2478 -2144 536) (2478 -2184 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" + } + side + { + "id" "289519" + "plane" "(3776 -2144 504) (3776 -2144 536) (2478 -2144 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289518" + "plane" "(2478 -2144 504) (2478 -2184 504) (3776 -2184 504)" + "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 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1927273" + side + { + "id" "289529" + "plane" "(3776 -2184 240) (3776 -2184 504) (3776 -2144 504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289528" + "plane" "(2478 -2184 240) (2478 -2184 504) (3776 -2184 504)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.25" + "vaxis" "[0 0 -1 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289527" + "plane" "(2478 -2144 240) (2478 -2144 504) (2478 -2184 504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289526" + "plane" "(3776 -2144 240) (3776 -2144 504) (2478 -2144 504)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289525" + "plane" "(2478 -2144 240) (2478 -2184 240) (3776 -2184 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" "289524" + "plane" "(3776 -2144 504) (3776 -2184 504) (2478 -2184 504)" + "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 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1907968" + side + { + "id" "288599" + "plane" "(-464 -3328 0) (-464 -3168 0) (-416 -3168 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-464 -3328 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 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" + } + 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 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" + } + 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" "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" "288598" + "plane" "(-464 -3168 -16) (-464 -3328 -16) (-176 -3328 -16)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288597" + "plane" "(-464 -3328 -16) (-464 -3168 -16) (-464 -3168 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288596" + "plane" "(-464 -3168 -16) (-416 -3168 -16) (-416 -3168 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288595" + "plane" "(-176 -3328 -16) (-464 -3328 -16) (-464 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288594" + "plane" "(-416 -3168 -16) (-176 -3328 -16) (-176 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 108" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1908000" + side + { + "id" "288611" + "plane" "(-416 -3168 0) (-392 -3168 0) (-152 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0.559193 0.829038 0 0] 0.025" + "vaxis" "[0.829038 -0.559193 0 0] 0.025" + "rotation" "56" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-416 -3168 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 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" + } + 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 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" + } + 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" "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" "288610" + "plane" "(-176 -3328 -16) (-152 -3328 -16) (-392 -3168 -16)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288609" + "plane" "(-416 -3168 -16) (-392 -3168 -16) (-392 -3168 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288608" + "plane" "(-152 -3328 -16) (-176 -3328 -16) (-176 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288607" + "plane" "(-176 -3328 -16) (-416 -3168 -16) (-416 -3168 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288606" + "plane" "(-392 -3168 -16) (-152 -3328 -16) (-152 -3328 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 147 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1908726" + side + { + "id" "288636" + "plane" "(-598 -4728 560) (-598 -4056 560) (352 -4056 560)" + "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" "288637" + "plane" "(-598 -4056 448) (-598 -4728 448) (352 -4728 448)" + "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" "288638" + "plane" "(-598 -4728 448) (-598 -4056 448) (-598 -4056 560)" + "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" "288639" + "plane" "(352 -4056 448) (352 -4728 448) (352 -4728 560)" + "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" "288640" + "plane" "(-598 -4056 448) (352 -4056 448) (352 -4056 560)" + "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" "288641" + "plane" "(352 -4728 448) (-598 -4728 448) (-598 -4728 560)" + "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" "0 177 218" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1872778" + side + { + "id" "288367" + "plane" "(2384 -2560 240) (1936 -2560 240) (1936 -2552 240)" + "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" "288366" + "plane" "(2384 -2552 208) (1936 -2552 208) (1936 -2560 208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 -640] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288365" + "plane" "(2384 -2560 208) (1936 -2560 208) (1936 -2560 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -359.356] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288364" + "plane" "(1936 -2560 208) (1936 -2552 208) (1936 -2552 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288363" + "plane" "(1936 -2552 208) (2384 -2552 208) (2384 -2552 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" "288362" + "plane" "(2384 -2552 208) (2384 -2560 208) (2384 -2560 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" + } + editor + { + "color" "0 124 157" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1872785" + side + { + "id" "288379" + "plane" "(2384 -2480 -32) (1824 -2480 -32) (1824 -2496 -32)" + "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" "288378" + "plane" "(2384 -2496 -32) (1824 -2496 -32) (1824 -2496 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -340.871] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "288377" + "plane" "(1824 -2480 -32) (2384 -2480 -32) (2384 -2480 208)" + "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" "288376" + "plane" "(2384 -2496 208) (1824 -2496 208) (1824 -2480 208)" + "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" "288375" + "plane" "(1824 -2496 208) (1824 -2496 -32) (1824 -2480 -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" "288374" + "plane" "(2384 -2480 208) (2384 -2480 -32) (2384 -2496 -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" + } + editor + { + "color" "0 219 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1851308" + side + { + "id" "286310" + "plane" "(1728 -1280 1312) (3552 -1280 1312) (3552 -2672 1312)" + "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" "286311" + "plane" "(1728 -2672 552) (3552 -2672 552) (3552 -1280 552)" + "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" "286312" + "plane" "(1728 -1280 1312) (1728 -2672 1312) (1728 -2672 552)" + "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" "286313" + "plane" "(3552 -1280 552) (3552 -2672 552) (3552 -2672 1312)" + "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" "286314" + "plane" "(3552 -1280 1312) (1728 -1280 1312) (1728 -1280 552)" + "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" "286315" + "plane" "(3552 -2672 552) (1728 -2672 552) (1728 -2672 1312)" + "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" "0 244 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1852034" + side + { + "id" "286316" + "plane" "(2408 -576 -32) (2424 -576 -32) (2424 -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" + } + side + { + "id" "286317" + "plane" "(2408 -960 -144) (2424 -960 -144) (2424 -576 -144)" + "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" "286318" + "plane" "(2408 -576 -32) (2408 -960 -32) (2408 -960 -144)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "286319" + "plane" "(2424 -576 -144) (2424 -960 -144) (2424 -960 -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" "286320" + "plane" "(2424 -576 -32) (2408 -576 -32) (2408 -576 -144)" + "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" "286321" + "plane" "(2424 -960 -144) (2408 -960 -144) (2408 -960 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 164 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1852084" + side + { + "id" "286322" + "plane" "(640 -944 -16) (2408 -944 -16) (2408 -1280 -16)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "286323" + "plane" "(640 -1280 -32) (2408 -1280 -32) (2408 -944 -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" "286324" + "plane" "(640 -944 -16) (640 -1280 -16) (640 -1280 -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" "286325" + "plane" "(2408 -944 -32) (2408 -1280 -32) (2408 -1280 -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" "286326" + "plane" "(2408 -944 -16) (640 -944 -16) (640 -944 -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" "286327" + "plane" "(2408 -1280 -32) (640 -1280 -32) (640 -1280 -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 196 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1852096" + side + { + "id" "286328" + "plane" "(2408 -560 -32) (2912 -560 -32) (2912 -576 -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" "286329" + "plane" "(2408 -576 -144) (2912 -576 -144) (2912 -560 -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" "286330" + "plane" "(2408 -560 -32) (2408 -576 -32) (2408 -576 -144)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "286331" + "plane" "(2912 -560 -144) (2912 -576 -144) (2912 -576 -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" "286332" + "plane" "(2912 -560 -32) (2408 -560 -32) (2408 -560 -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" "286333" + "plane" "(2912 -576 -144) (2408 -576 -144) (2408 -576 -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 116 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1819609" + side + { + "id" "286298" + "plane" "(2792 -4248 560) (2792 -3728 560) (2808 -3728 560)" + "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" "286299" + "plane" "(2792 -3728 536) (2792 -4248 536) (2808 -4248 536)" + "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" "286300" + "plane" "(2792 -4248 536) (2792 -3728 536) (2792 -3728 560)" + "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" "286301" + "plane" "(2808 -3728 536) (2808 -4248 536) (2808 -4248 560)" + "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" "286302" + "plane" "(2792 -3728 536) (2808 -3728 536) (2808 -3728 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "286303" + "plane" "(2808 -4248 536) (2792 -4248 536) (2792 -4248 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 179 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1819611" + side + { + "id" "286304" + "plane" "(2808 -4128 560) (2808 -4104 560) (2960 -4104 560)" + "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" "286305" + "plane" "(2808 -4104 536) (2808 -4128 536) (2960 -4128 536)" + "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" "286306" + "plane" "(2808 -4128 536) (2808 -4104 536) (2808 -4104 560)" + "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" "286307" + "plane" "(2960 -4104 536) (2960 -4128 536) (2960 -4128 560)" + "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" "286308" + "plane" "(2808 -4104 536) (2960 -4104 536) (2960 -4104 560)" + "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" "286309" + "plane" "(2960 -4128 536) (2808 -4128 536) (2808 -4128 560)" + "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" "0 179 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1792735" + side + { + "id" "285704" + "plane" "(1792 -2568 240) (1792 -2550 240) (2470 -2550 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285705" + "plane" "(1792 -2550 -200) (1792 -2568 -200) (2470 -2568 -200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285706" + "plane" "(1792 -2568 -200) (1792 -2550 -200) (1792 -2550 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285707" + "plane" "(2470 -2550 -200) (2470 -2568 -200) (2470 -2568 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285708" + "plane" "(1792 -2550 -200) (2470 -2550 -200) (2470 -2550 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285709" + "plane" "(2470 -2568 -200) (1792 -2568 -200) (1792 -2568 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 212 237" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1763002" + side + { + "id" "284613" + "plane" "(1744 -2656 16) (1744 -2568 16) (1936 -2568 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284612" + "plane" "(1936 -2568 -40) (1744 -2568 -40) (1744 -2656 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284611" + "plane" "(1744 -2656 -40) (1744 -2568 -40) (1744 -2568 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" "284610" + "plane" "(1744 -2568 -40) (1936 -2568 -40) (1936 -2568 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284609" + "plane" "(1936 -2568 -40) (1936 -2656 -40) (1936 -2656 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" "284608" + "plane" "(1936 -2656 -40) (1744 -2656 -40) (1744 -2656 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "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 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1763057" + side + { + "id" "284620" + "plane" "(2470 -2736 -16) (2560 -2736 -16) (2560 -2944 -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" "284621" + "plane" "(2470 -2944 -48) (2560 -2944 -48) (2560 -2736 -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" "284622" + "plane" "(2470 -2736 -16) (2470 -2944 -16) (2470 -2944 -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" "284623" + "plane" "(2560 -2736 -48) (2560 -2944 -48) (2560 -2944 -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" "284624" + "plane" "(2560 -2736 -16) (2470 -2736 -16) (2470 -2736 -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" "284625" + "plane" "(2560 -2944 -48) (2470 -2944 -48) (2470 -2944 -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 195 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1763060" + side + { + "id" "284626" + "plane" "(2424 -3568 -16) (2560 -3568 -16) (2560 -3616 -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" "284627" + "plane" "(2424 -3616 -48) (2560 -3616 -48) (2560 -3568 -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" "284628" + "plane" "(2424 -3568 -16) (2424 -3616 -16) (2424 -3616 -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" "284629" + "plane" "(2560 -3568 -48) (2560 -3616 -48) (2560 -3616 -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" "284630" + "plane" "(2560 -3568 -16) (2424 -3568 -16) (2424 -3568 -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" "284631" + "plane" "(2560 -3616 -48) (2424 -3616 -48) (2424 -3616 -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 241 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1764064" + side + { + "id" "284690" + "plane" "(2800 -3792 552) (2800 -2672 552) (2808 -2672 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284691" + "plane" "(2800 -2672 368) (2800 -3792 368) (2808 -3792 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" "284692" + "plane" "(2800 -3792 368) (2800 -2672 368) (2800 -2672 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284693" + "plane" "(2808 -2672 368) (2808 -3792 368) (2808 -3792 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284694" + "plane" "(2800 -2672 368) (2808 -2672 368) (2808 -2672 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284695" + "plane" "(2808 -3792 368) (2800 -3792 368) (2800 -3792 552)" + "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 115 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1755923" + side + { + "id" "284505" + "plane" "(2478 -2184 -48) (3776 -2184 -48) (3776 -2144 -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" "284504" + "plane" "(3776 -2144 -48) (3776 -2184 -48) (3776 -2184 220)" + "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" "284503" + "plane" "(3776 -2184 220) (3776 -2184 -48) (2478 -2184 -48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -212.879] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284502" + "plane" "(2478 -2144 220) (3776 -2144 220) (3776 -2184 220)" + "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" "284501" + "plane" "(2478 -2144 -48) (3776 -2144 -48) (3776 -2144 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284500" + "plane" "(2478 -2184 220) (2478 -2184 -48) (2478 -2144 -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" + } + editor + { + "color" "0 136 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1755970" + side + { + "id" "284547" + "plane" "(1856 -2176 552) (1856 -1644 552) (3232 -1644 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284546" + "plane" "(1856 -1644 536) (1856 -2176 536) (3232 -2176 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.0405323 0.998401 -0.0394134 0] 0.25" + "vaxis" "[-0.998444 0.0393369 -0.0395442 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284545" + "plane" "(1856 -2176 536) (1856 -1644 536) (1856 -1644 552)" + "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" "284544" + "plane" "(3232 -1644 536) (3232 -2176 536) (3232 -2176 552)" + "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" "284543" + "plane" "(1856 -1644 536) (3232 -1644 536) (3232 -1644 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284542" + "plane" "(3232 -2176 536) (1856 -2176 536) (1856 -2176 552)" + "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 126 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1755975" + side + { + "id" "284553" + "plane" "(2478 -2560 552) (1856 -2560 552) (1856 -2176 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284552" + "plane" "(2478 -2176 536) (1856 -2176 536) (1856 -2560 536)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.040723 0.998438 -0.0382641 0] 0.25" + "vaxis" "[-0.998503 0.0391564 -0.0382135 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284551" + "plane" "(1856 -2560 536) (1856 -2176 536) (1856 -2176 552)" + "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" "284550" + "plane" "(2478 -2560 536) (1856 -2560 536) (1856 -2560 552)" + "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" "284549" + "plane" "(1856 -2176 536) (2478 -2176 536) (2478 -2176 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284548" + "plane" "(2478 -2176 536) (2478 -2560 536) (2478 -2560 552)" + "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 126 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1755976" + side + { + "id" "284559" + "plane" "(2478 -2176 552) (3792 -2176 552) (3792 -2560 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284558" + "plane" "(2478 -2560 536) (3792 -2560 536) (3792 -2176 536)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284557" + "plane" "(3792 -2176 536) (3792 -2560 536) (3792 -2560 552)" + "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" "284556" + "plane" "(3792 -2560 536) (2478 -2560 536) (2478 -2560 552)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[-1 0 0 47] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284555" + "plane" "(2478 -2176 536) (3792 -2176 536) (3792 -2176 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284554" + "plane" "(2478 -2560 536) (2478 -2176 536) (2478 -2176 552)" + "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 126 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1755996" + side + { + "id" "284583" + "plane" "(2800 -2348 -200) (3428 -2348 -200) (3428 -2720 -200)" + "material" "CONCRETE/HR_C/HR_CONC_PILLAR_A_CLEAN" + "uaxis" "[1 0 0 392] 0.125" + "vaxis" "[0 -1 0 -904] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284582" + "plane" "(2800 -2720 -216) (3428 -2720 -216) (3428 -2348 -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" "284581" + "plane" "(3428 -2348 -216) (3428 -2720 -216) (3428 -2720 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284580" + "plane" "(3428 -2720 -216) (2800 -2720 -216) (2800 -2720 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284579" + "plane" "(2800 -2348 -216) (3428 -2348 -216) (3428 -2348 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284578" + "plane" "(2800 -2720 -216) (2800 -2348 -216) (2800 -2348 -200)" + "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 222 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1755999" + side + { + "id" "284584" + "plane" "(2736 -3796 -48) (2736 -2560 -48) (2808 -2560 -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" "284585" + "plane" "(2736 -2560 -200) (2736 -3796 -200) (2808 -3796 -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" "284586" + "plane" "(2736 -3796 -200) (2736 -2560 -200) (2736 -2560 -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" "284587" + "plane" "(2808 -2560 -200) (2808 -3796 -200) (2808 -3796 -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" "284588" + "plane" "(2736 -2560 -200) (2808 -2560 -200) (2808 -2560 -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" "284589" + "plane" "(2808 -3796 -200) (2736 -3796 -200) (2736 -3796 -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 241 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1756000" + side + { + "id" "284590" + "plane" "(2800 -3796 -200) (2800 -2720 -200) (3428 -2720 -200)" + "material" "CONCRETE/HR_C/HR_CONC_PILLAR_A_CLEAN" + "uaxis" "[1 0 0 392] 0.125" + "vaxis" "[0 -1 0 -904] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284591" + "plane" "(2800 -2720 -216) (2800 -3796 -216) (3428 -3796 -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" "284592" + "plane" "(2800 -3796 -216) (2800 -2720 -216) (2800 -2720 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284593" + "plane" "(3428 -2720 -216) (3428 -3796 -216) (3428 -3796 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284594" + "plane" "(2800 -2720 -216) (3428 -2720 -216) (3428 -2720 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284595" + "plane" "(3428 -3796 -216) (2800 -3796 -216) (2800 -3796 -200)" + "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 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1756006" + side + { + "id" "284596" + "plane" "(3776 -4080 220) (3792 -4096 220) (2808 -4096 220)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284597" + "plane" "(2808 -4080 -48) (2808 -4096 -48) (3791.98 -4096 -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" "284598" + "plane" "(2808 -4080 220) (2808 -4096 220) (2808 -4096 -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" "284599" + "plane" "(3792 -4096 220) (3776 -4080 220) (3775.98 -4080 -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" "284600" + "plane" "(3776 -4080 220) (2808 -4080 220) (2808 -4080 -48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 107.109] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284601" + "plane" "(2808 -4096 220) (3792 -4096 220) (3791.98 -4096 -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 123 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1741784" + side + { + "id" "284181" + "plane" "(1824 -1628 -200) (1808 -1628 -200) (1808 -1724 -200)" + "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" "284180" + "plane" "(1808 -1628 -200) (1824 -1628 -200) (1824 -1628 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" "284179" + "plane" "(1824 -1724 -200) (1808 -1724 -200) (1808 -1724 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" "284178" + "plane" "(1824 -1724 240) (1808 -1724 240) (1808 -1628 240)" + "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" "284177" + "plane" "(1824 -1628 240) (1824 -1628 -200) (1824 -1724 -200)" + "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" "284176" + "plane" "(1808 -1724 240) (1808 -1724 -200) (1808 -1628 -200)" + "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" "0 136 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1742033" + side + { + "id" "284211" + "plane" "(3552 -1644 -200) (3552 -1628 -200) (1856 -1628 -200)" + "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" "284210" + "plane" "(3552 -1628 552) (3552 -1628 -200) (3552 -1644 -200)" + "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" "284209" + "plane" "(1856 -1628 -200) (3552 -1628 -200) (3552 -1628 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284208" + "plane" "(1856 -1644 552) (1856 -1628 552) (3552 -1628 552)" + "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" "284207" + "plane" "(1856 -1644 -200) (1856 -1628 -200) (1856 -1628 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284206" + "plane" "(3552 -1644 552) (3552 -1644 -200) (1856 -1644 -200)" + "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 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1715903" + side + { + "id" "282107" + "plane" "(2478 -2568 -16) (2478 -2560 -16) (2800 -2560 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -1681] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282108" + "plane" "(2478 -2560 -48) (2478 -2568 -48) (2800 -2568 -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" "282109" + "plane" "(2478 -2568 -48) (2478 -2560 -48) (2478 -2560 -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" "282110" + "plane" "(2800 -2560 -48) (2800 -2568 -48) (2800 -2568 -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" "282111" + "plane" "(2478 -2560 -48) (2800 -2560 -48) (2800 -2560 -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" "282112" + "plane" "(2800 -2568 -48) (2478 -2568 -48) (2478 -2568 -16)" + "material" "DEV/REFLECTIVITY_10" + "uaxis" "[-1 0 0 50] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 232 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1706832" + side + { + "id" "282013" + "plane" "(2462 -2656 16) (2462 -2879 16) (1744 -2879 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282012" + "plane" "(1744 -2656 -40) (1744 -2879 -40) (2462 -2879 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282011" + "plane" "(2462 -2656 -40) (2462 -2879 -40) (2462 -2879 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 51.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282010" + "plane" "(2462 -2879 -40) (1744 -2879 -40) (1744 -2879 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" "282009" + "plane" "(1744 -2879 -40) (1744 -2656 -40) (1744 -2656 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" "282008" + "plane" "(1744 -2656 -40) (2462 -2656 -40) (2462 -2656 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 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1706833" + side + { + "id" "282019" + "plane" "(2344 -2568 16) (2462 -2568 16) (2462 -2656 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282018" + "plane" "(2462 -2656 -40) (2462 -2568 -40) (2344 -2568 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282017" + "plane" "(2462 -2568 -40) (2462 -2656 -40) (2462 -2656 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" "282016" + "plane" "(2344 -2568 -40) (2462 -2568 -40) (2462 -2568 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282015" + "plane" "(2344 -2656 -40) (2344 -2568 -40) (2344 -2568 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" "282014" + "plane" "(2462 -2656 -40) (2344 -2656 -40) (2344 -2656 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 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1684361" + side + { + "id" "280910" + "plane" "(2808 -4104 552) (2808 -2560 552) (3808 -2560 552)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280911" + "plane" "(2808 -2560 536) (2808 -4104 536) (3808 -4104 536)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280912" + "plane" "(2808 -4104 536) (2808 -2560 536) (2808 -2560 552)" + "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" "280913" + "plane" "(3808 -2560 536) (3808 -4104 536) (3808 -4104 552)" + "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" "280914" + "plane" "(2808 -2560 536) (3808 -2560 536) (3808 -2560 552)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 -506.176] 0.125" + "vaxis" "[0 0 -1 448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280915" + "plane" "(3808 -4104 536) (2808 -4104 536) (2808 -4104 552)" + "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 142 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1675234" + side + { + "id" "279479" + "plane" "(2240 -3504 16) (2232 -3504 16) (2232 -3168 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279478" + "plane" "(2240 -3168 0) (2232 -3168 0) (2232 -3504 0)" + "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" "279477" + "plane" "(2232 -3168 0) (2240 -3168 0) (2240 -3168 16)" + "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" "279476" + "plane" "(2240 -3504 0) (2232 -3504 0) (2232 -3504 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279475" + "plane" "(2232 -3504 0) (2232 -3168 0) (2232 -3168 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" "279474" + "plane" "(2240 -3168 0) (2240 -3504 0) (2240 -3504 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" "0 229 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1675306" + side + { + "id" "279486" + "plane" "(2144 -3504 16) (2144 -3168 16) (2232 -3168 16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279487" + "plane" "(2144 -3168 0) (2144 -3504 0) (2232 -3504 0)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279488" + "plane" "(2144 -3504 0) (2144 -3168 0) (2144 -3168 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279489" + "plane" "(2232 -3168 0) (2232 -3504 0) (2232 -3504 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" "279490" + "plane" "(2144 -3168 0) (2232 -3168 0) (2232 -3168 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" "279491" + "plane" "(2232 -3504 0) (2144 -3504 0) (2144 -3504 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 124 113" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1675429" + side + { + "id" "279518" + "plane" "(2232 -3168 240) (2240 -3168 240) (2240 -3504 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279519" + "plane" "(2232 -3504 0) (2240 -3504 0) (2240 -3168 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279520" + "plane" "(2232 -3168 240) (2232 -3504 240) (2232 -3504 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279521" + "plane" "(2240 -3168 0) (2240 -3504 0) (2240 -3504 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279522" + "plane" "(2240 -3168 240) (2232 -3168 240) (2232 -3168 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279523" + "plane" "(2240 -3504 0) (2232 -3504 0) (2232 -3504 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 162 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1675438" + side + { + "id" "339097" + "plane" "(2184 -3504 320) (2128 -3504 320) (2128 -3168 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" "339096" + "plane" "(2184 -3168 184) (2128 -3168 184) (2128 -3504 184)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 -175] 0.125" + "vaxis" "[0 -1 0 -435] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339095" + "plane" "(2128 -3504 184) (2128 -3168 184) (2128 -3168 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" "339094" + "plane" "(2128 -3168 184) (2184 -3168 184) (2184 -3168 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" "339093" + "plane" "(2184 -3504 184) (2128 -3504 184) (2128 -3504 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" "339092" + "plane" "(2184 -3168 184) (2184 -3504 184) (2184 -3504 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 160 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1675439" + side + { + "id" "279535" + "plane" "(2224 -3168 312) (2240 -3168 312) (2240 -3504 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279534" + "plane" "(2184 -3504 184) (2200 -3504 184) (2200 -3168 184)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 -175] 0.125" + "vaxis" "[0 -1 0 -435] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279533" + "plane" "(2200 -3168 184) (2200 -3504 184) (2240 -3504 312)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279532" + "plane" "(2184 -3168 184) (2200 -3168 184) (2240 -3168 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279531" + "plane" "(2200 -3504 184) (2184 -3504 184) (2224 -3504 312)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279530" + "plane" "(2184 -3504 184) (2184 -3168 184) (2224 -3168 312)" + "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 160 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1675865" + side + { + "id" "279607" + "plane" "(2424 -3568 16) (2416 -3560 16) (2552 -3560 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 -94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279606" + "plane" "(2416 -3560 -16) (2424 -3568 -16) (2560 -3568 -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" "279605" + "plane" "(2424 -3568 -16) (2416 -3560 -16) (2416 -3560 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" "279604" + "plane" "(2552 -3560 -16) (2560 -3568 -16) (2560 -3568 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279603" + "plane" "(2560 -3568 -16) (2424 -3568 -16) (2424 -3568 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" "279602" + "plane" "(2416 -3560 -16) (2552 -3560 -16) (2552 -3560 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 230 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1675871" + side + { + "id" "279619" + "plane" "(2552 -2936 16) (2560 -2928 16) (2560 -3568 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 -31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279618" + "plane" "(2552 -2936 -16) (2552 -3560 -16) (2560 -3568 -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" "279617" + "plane" "(2560 -2928 -16) (2560 -2928 16) (2552 -2936 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" "279616" + "plane" "(2560 -3568 -16) (2560 -3568 16) (2560 -2928 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" "279615" + "plane" "(2552 -2936 -16) (2552 -2936 16) (2552 -3560 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" "279614" + "plane" "(2552 -3560 -16) (2552 -3560 16) (2560 -3568 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1675924" + side + { + "id" "279637" + "plane" "(2416 -3560 16) (2424 -3568 16) (2424 -3776 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 -97] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279636" + "plane" "(2416 -3768 -32) (2424 -3776 -32) (2424 -3568 -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" + } + side + { + "id" "279635" + "plane" "(2416 -3560 -32) (2424 -3568 -32) (2424 -3568 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" "279634" + "plane" "(2424 -3568 -32) (2424 -3776 -32) (2424 -3776 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 336] 0.125" + "vaxis" "[0 1 0 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279633" + "plane" "(2424 -3776 -32) (2416 -3768 -32) (2416 -3768 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279632" + "plane" "(2416 -3768 -32) (2416 -3560 -32) (2416 -3560 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" "0 229 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1675993" + side + { + "id" "279649" + "plane" "(2464 -3504 16) (2328 -3504 16) (2328 -3168 16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279648" + "plane" "(2464 -3168 0) (2328 -3168 0) (2328 -3504 0)" + "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" "279647" + "plane" "(2328 -3168 0) (2464 -3168 0) (2464 -3168 16)" + "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" "279646" + "plane" "(2464 -3504 0) (2328 -3504 0) (2328 -3504 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279645" + "plane" "(2464 -3168 0) (2464 -3504 0) (2464 -3504 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279644" + "plane" "(2328 -3504 0) (2328 -3168 0) (2328 -3168 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" "0 229 150" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676004" + side + { + "id" "279655" + "plane" "(2472 -3160 16) (2472 -3512 16) (2464 -3504 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279654" + "plane" "(2464 -3504 0) (2472 -3512 0) (2472 -3160 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" "279653" + "plane" "(2464 -3168 16) (2464 -3504 16) (2464 -3504 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" "279652" + "plane" "(2472 -3160 16) (2464 -3168 16) (2464 -3168 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" "279651" + "plane" "(2464 -3504 16) (2472 -3512 16) (2472 -3512 0)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279650" + "plane" "(2472 -3512 16) (2472 -3160 16) (2472 -3160 0)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 155" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676005" + side + { + "id" "279661" + "plane" "(2472 -3160 16) (2552 -3160 16) (2552 -3512 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279660" + "plane" "(2552 -3160 0) (2472 -3160 0) (2472 -3512 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" "279659" + "plane" "(2472 -3160 0) (2552 -3160 0) (2552 -3160 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" "279658" + "plane" "(2552 -3160 0) (2552 -3512 0) (2552 -3512 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279657" + "plane" "(2552 -3512 0) (2472 -3512 0) (2472 -3512 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" "279656" + "plane" "(2472 -3512 0) (2472 -3160 0) (2472 -3160 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" "0 230 155" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676085" + side + { + "id" "279667" + "plane" "(2320 -3504 16) (2240 -3504 16) (2240 -3168 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279666" + "plane" "(2320 -3168 0) (2240 -3168 0) (2240 -3504 0)" + "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" "279665" + "plane" "(2240 -3168 0) (2320 -3168 0) (2320 -3168 16)" + "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" "279664" + "plane" "(2320 -3504 0) (2240 -3504 0) (2240 -3504 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279663" + "plane" "(2240 -3504 0) (2240 -3168 0) (2240 -3168 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" "279662" + "plane" "(2320 -3168 0) (2320 -3504 0) (2320 -3504 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" "0 229 150" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676086" + side + { + "id" "279673" + "plane" "(2320 -3160 16) (2328 -3168 16) (2328 -3504 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279672" + "plane" "(2320 -3512 0) (2328 -3504 0) (2328 -3168 0)" + "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" "279671" + "plane" "(2328 -3168 16) (2320 -3160 16) (2320 -3160 0)" + "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" "279670" + "plane" "(2320 -3512 16) (2328 -3504 16) (2328 -3504 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279669" + "plane" "(2328 -3504 16) (2328 -3168 16) (2328 -3168 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" "279668" + "plane" "(2320 -3160 16) (2320 -3512 16) (2320 -3512 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" + } + editor + { + "color" "0 229 150" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676096" + side + { + "id" "279679" + "plane" "(2248 -3560 16) (2248 -3512 16) (2552 -3512 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279678" + "plane" "(2248 -3512 0) (2248 -3560 0) (2552 -3560 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" "279677" + "plane" "(2248 -3560 0) (2248 -3512 0) (2248 -3512 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" "279676" + "plane" "(2552 -3512 0) (2552 -3560 0) (2552 -3560 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" "279675" + "plane" "(2552 -3560 0) (2248 -3560 0) (2248 -3560 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" "279674" + "plane" "(2248 -3512 0) (2552 -3512 0) (2552 -3512 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 248 153" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676114" + side + { + "id" "279691" + "plane" "(2248 -3512 16) (2248 -3504 16) (2320 -3504 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279690" + "plane" "(2248 -3504 0) (2248 -3512 0) (2320 -3512 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" "279689" + "plane" "(2248 -3512 0) (2248 -3504 0) (2248 -3504 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" "279688" + "plane" "(2248 -3504 0) (2320 -3504 0) (2320 -3504 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" "279687" + "plane" "(2320 -3512 0) (2248 -3512 0) (2248 -3512 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" "279686" + "plane" "(2320 -3504 0) (2320 -3512 0) (2320 -3512 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" "0 248 153" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676115" + side + { + "id" "279697" + "plane" "(2464 -3504 16) (2472 -3512 16) (2320 -3512 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279696" + "plane" "(2472 -3512 0) (2464 -3504 0) (2328 -3504 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" "279695" + "plane" "(2472 -3512 0) (2472 -3512 16) (2464 -3504 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" "279694" + "plane" "(2464 -3504 0) (2464 -3504 16) (2328 -3504 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" "279693" + "plane" "(2320 -3512 0) (2320 -3512 16) (2472 -3512 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" "279692" + "plane" "(2328 -3504 0) (2328 -3504 16) (2320 -3512 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" "0 248 153" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676153" + side + { + "id" "279727" + "plane" "(2320 -3160 16) (2472 -3160 16) (2464 -3168 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279726" + "plane" "(2328 -3168 0) (2464 -3168 0) (2472 -3160 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" "279725" + "plane" "(2328 -3168 16) (2464 -3168 16) (2464 -3168 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" "279724" + "plane" "(2472 -3160 16) (2320 -3160 16) (2320 -3160 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" "279723" + "plane" "(2464 -3168 16) (2472 -3160 16) (2472 -3160 0)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279722" + "plane" "(2320 -3160 16) (2328 -3168 16) (2328 -3168 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" + } + editor + { + "color" "0 110 211" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676278" + side + { + "id" "279826" + "plane" "(2462 -2784 16) (2462 -2568 16) (2470 -2560 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -640] 0.125" + "vaxis" "[1 0 0 -81] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279825" + "plane" "(2462 -2568 -16) (2462 -2784 -16) (2470 -2784 -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" "279824" + "plane" "(2470 -2560 -16) (2470 -2560 16) (2462 -2568 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" "279823" + "plane" "(2462 -2784 -16) (2462 -2784 16) (2470 -2784 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" "279822" + "plane" "(2470 -2784 -16) (2470 -2784 16) (2470 -2560 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 1 0 336] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279821" + "plane" "(2462 -2568 -16) (2462 -2568 16) (2462 -2784 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" "0 143 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676342" + side + { + "id" "279845" + "plane" "(2462 -2936 16) (2470 -2928 16) (2560 -2928 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 -35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279844" + "plane" "(2560 -2928 -16) (2470 -2928 -16) (2462 -2936 -16)" + "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" "279843" + "plane" "(2462 -2936 -16) (2470 -2928 -16) (2470 -2928 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.856903] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279842" + "plane" "(2470 -2928 -16) (2560 -2928 -16) (2560 -2928 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[-1 0 0 336] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279841" + "plane" "(2560 -2928 -16) (2552 -2936 -16) (2552 -2936 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 -80] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279840" + "plane" "(2552 -2936 -16) (2462 -2936 -16) (2462 -2936 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 143 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676502" + side + { + "id" "279875" + "plane" "(2462 -2936 16) (2462 -2784 16) (2470 -2784 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 45] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279874" + "plane" "(2470 -2928 -16) (2470 -2784 -16) (2462 -2784 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279873" + "plane" "(2462 -2936 -16) (2462 -2936 16) (2470 -2928 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279872" + "plane" "(2470 -2784 -16) (2470 -2784 16) (2462 -2784 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279871" + "plane" "(2462 -2784 -16) (2462 -2784 16) (2462 -2936 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" "279870" + "plane" "(2470 -2928 -16) (2470 -2928 16) (2470 -2784 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 23.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 143 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676731" + side + { + "id" "279997" + "plane" "(1944 -2648 16) (2336 -2648 16) (2344 -2656 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -640] 0.125" + "vaxis" "[0 1 0 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279996" + "plane" "(2336 -2648 -40) (1944 -2648 -40) (1936 -2656 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279995" + "plane" "(2344 -2656 -40) (2344 -2656 16) (2336 -2648 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279994" + "plane" "(1944 -2648 -40) (1944 -2648 16) (1936 -2656 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279993" + "plane" "(1936 -2656 -40) (1936 -2656 16) (2344 -2656 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" "279992" + "plane" "(2336 -2648 -40) (2336 -2648 16) (1944 -2648 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 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676738" + side + { + "id" "280015" + "plane" "(1936 -2656 16) (1936 -2568 16) (1944 -2568 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -640] 0.125" + "vaxis" "[1 0 0 33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280014" + "plane" "(1944 -2568 -40) (1936 -2568 -40) (1936 -2656 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280013" + "plane" "(1936 -2568 -40) (1944 -2568 -40) (1944 -2568 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280012" + "plane" "(1936 -2656 -40) (1936 -2568 -40) (1936 -2568 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" "280011" + "plane" "(1944 -2648 -40) (1936 -2656 -40) (1936 -2656 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" "280010" + "plane" "(1944 -2568 -40) (1944 -2648 -40) (1944 -2648 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" "0 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676753" + side + { + "id" "280021" + "plane" "(2336 -2568 16) (2344 -2568 16) (2344 -2656 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -640] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280020" + "plane" "(2344 -2568 -40) (2336 -2568 -40) (2336 -2648 -40)" + "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" "280019" + "plane" "(2336 -2568 -40) (2344 -2568 -40) (2344 -2568 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280018" + "plane" "(2344 -2568 -40) (2344 -2656 -40) (2344 -2656 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" "280017" + "plane" "(2344 -2656 -40) (2336 -2648 -40) (2336 -2648 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280016" + "plane" "(2336 -2648 -40) (2336 -2568 -40) (2336 -2568 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" "0 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676754" + side + { + "id" "280027" + "plane" "(2336 -2648 16) (1944 -2648 16) (1944 -2568 16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280026" + "plane" "(2336 -2568 -40) (1944 -2568 -40) (1944 -2648 -40)" + "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" "280025" + "plane" "(1944 -2568 -40) (2336 -2568 -40) (2336 -2568 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280024" + "plane" "(2336 -2648 -40) (1944 -2648 -40) (1944 -2648 16)" + "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" "280023" + "plane" "(1944 -2648 -40) (1944 -2568 -40) (1944 -2568 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" "280022" + "plane" "(2336 -2568 -40) (2336 -2648 -40) (2336 -2648 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "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 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676913" + side + { + "id" "280033" + "plane" "(2248 -3168 16) (2176 -3168 16) (2176 -3160 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280032" + "plane" "(2248 -3160 0) (2176 -3160 0) (2176 -3168 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" "280031" + "plane" "(2176 -3168 0) (2176 -3160 0) (2176 -3160 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" "280030" + "plane" "(2248 -3168 0) (2176 -3168 0) (2176 -3168 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280029" + "plane" "(2176 -3160 0) (2248 -3160 0) (2248 -3160 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280028" + "plane" "(2248 -3160 0) (2248 -3168 0) (2248 -3168 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 110 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676914" + side + { + "id" "280039" + "plane" "(2320 -3168 16) (2256 -3168 16) (2256 -3160 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280038" + "plane" "(2320 -3160 0) (2256 -3160 0) (2256 -3168 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" "280037" + "plane" "(2320 -3168 0) (2256 -3168 0) (2256 -3168 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" "280036" + "plane" "(2256 -3160 0) (2320 -3160 0) (2320 -3160 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" "280035" + "plane" "(2320 -3160 0) (2320 -3168 0) (2320 -3168 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" "280034" + "plane" "(2256 -3168 0) (2256 -3160 0) (2256 -3160 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 110 211" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676918" + side + { + "id" "280051" + "plane" "(2176 -3160 16) (2176 -3128 16) (2248 -3128 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280050" + "plane" "(2176 -3128 0) (2176 -3160 0) (2248 -3160 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" "280049" + "plane" "(2176 -3160 0) (2176 -3128 0) (2176 -3128 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" "280048" + "plane" "(2176 -3128 0) (2248 -3128 0) (2248 -3128 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" "280047" + "plane" "(2248 -3160 0) (2176 -3160 0) (2176 -3160 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280046" + "plane" "(2248 -3128 0) (2248 -3160 0) (2248 -3160 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 110 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1676922" + side + { + "id" "280063" + "plane" "(2256 -3048 16) (2256 -3168 16) (2248 -3168 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -28] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280062" + "plane" "(2256 -3168 0) (2256 -3048 0) (2248 -3056 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" "280061" + "plane" "(2256 -3048 0) (2256 -3048 16) (2248 -3056 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" "280060" + "plane" "(2248 -3168 0) (2248 -3168 16) (2256 -3168 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" "280059" + "plane" "(2248 -3056 0) (2248 -3056 16) (2248 -3168 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280058" + "plane" "(2256 -3168 0) (2256 -3168 16) (2256 -3048 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" "0 110 211" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677001" + side + { + "id" "280081" + "plane" "(2552 -3160 16) (2256 -3160 16) (2256 -3056 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280080" + "plane" "(2256 -3160 -40) (2552 -3160 -40) (2552 -3056 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280079" + "plane" "(2552 -3160 -40) (2256 -3160 -40) (2256 -3160 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" "280078" + "plane" "(2552 -3056 -40) (2552 -3160 -40) (2552 -3160 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" "280077" + "plane" "(2256 -3056 -40) (2552 -3056 -40) (2552 -3056 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" "280076" + "plane" "(2256 -3160 -40) (2256 -3056 -40) (2256 -3056 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" "0 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677011" + side + { + "id" "280088" + "plane" "(2462 -3056 16) (2462 -2936 16) (2552 -2936 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280089" + "plane" "(2462 -2936 -40) (2462 -3056 -40) (2552 -3056 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280090" + "plane" "(2462 -3056 -40) (2462 -2936 -40) (2462 -2936 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" "280091" + "plane" "(2552 -2936 -40) (2552 -3056 -40) (2552 -3056 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" "280092" + "plane" "(2462 -2936 -40) (2552 -2936 -40) (2552 -2936 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" "280093" + "plane" "(2552 -3056 -40) (2462 -3056 -40) (2462 -3056 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 112 229" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677054" + side + { + "id" "280105" + "plane" "(1520 -3056 16) (1520 -2879 16) (1536 -2879 16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280104" + "plane" "(1520 -2879 -40) (1520 -3056 -40) (1536 -3056 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280103" + "plane" "(1520 -3056 -40) (1520 -2879 -40) (1520 -2879 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" "280102" + "plane" "(1520 -2879 -40) (1536 -2879 -40) (1536 -2879 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" "280101" + "plane" "(1536 -3056 -40) (1520 -3056 -40) (1520 -3056 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" "280100" + "plane" "(1536 -2879 -40) (1536 -3056 -40) (1536 -3056 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" "0 143 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677058" + side + { + "id" "280117" + "plane" "(1544 -2879 16) (1544 -3128 16) (1536 -3136 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280116" + "plane" "(1544 -3128 -40) (1544 -2879 -40) (1536 -2879 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280115" + "plane" "(1544 -2879 -40) (1544 -2879 16) (1536 -2879 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" "280114" + "plane" "(1536 -3136 -40) (1536 -3136 16) (1544 -3128 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280113" + "plane" "(1536 -2879 -40) (1536 -2879 16) (1536 -3136 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" "280112" + "plane" "(1544 -3128 -40) (1544 -3128 16) (1544 -2879 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" "0 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677107" + side + { + "id" "280123" + "plane" "(2080 -3128 16) (2088 -3136 16) (1536 -3136 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280122" + "plane" "(2080 -3128 -40) (1544 -3128 -40) (1536 -3136 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280121" + "plane" "(2088 -3136 16) (2088 -3136 -40) (1536 -3136 -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" "280120" + "plane" "(1536 -3136 16) (1536 -3136 -40) (1544 -3128 -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" "280119" + "plane" "(2080 -3128 16) (2080 -3128 -40) (2088 -3136 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 20.1895] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280118" + "plane" "(1544 -3128 16) (1544 -3128 -40) (2080 -3128 -40)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "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 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677125" + side + { + "id" "280147" + "plane" "(1544 -3048 16) (1544 -2879 16) (2256 -2879 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280146" + "plane" "(2256 -2879 -40) (1544 -2879 -40) (1544 -3048 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280145" + "plane" "(1544 -2879 -40) (2256 -2879 -40) (2256 -2879 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" "280144" + "plane" "(1544 -3048 -40) (1544 -2879 -40) (1544 -2879 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" "280143" + "plane" "(2256 -2879 -40) (2256 -3048 -40) (2256 -3048 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" "280142" + "plane" "(2256 -3048 -40) (1544 -3048 -40) (1544 -3048 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 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677183" + side + { + "id" "280165" + "plane" "(2248 -3056 16) (2088 -3056 16) (2080 -3048 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280164" + "plane" "(2248 -3056 -40) (2256 -3048 -40) (2080 -3048 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280163" + "plane" "(2088 -3056 -40) (2088 -3056 16) (2248 -3056 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" "280162" + "plane" "(2248 -3056 -40) (2248 -3056 16) (2256 -3048 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" "280161" + "plane" "(2256 -3048 -40) (2256 -3048 16) (2080 -3048 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" "280160" + "plane" "(2080 -3048 -40) (2080 -3048 16) (2088 -3056 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "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 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677186" + side + { + "id" "280171" + "plane" "(1544 -3128 16) (1544 -3048 16) (2080 -3048 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280170" + "plane" "(2080 -3048 -40) (1544 -3048 -40) (1544 -3128 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280169" + "plane" "(1544 -3128 -40) (1544 -3048 -40) (1544 -3048 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" "280168" + "plane" "(1544 -3048 -40) (2080 -3048 -40) (2080 -3048 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" "280167" + "plane" "(2080 -3128 -40) (1544 -3128 -40) (1544 -3128 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280166" + "plane" "(2080 -3048 -40) (2080 -3128 -40) (2080 -3128 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677190" + side + { + "id" "280183" + "plane" "(2088 -3136 16) (2080 -3128 16) (2080 -3048 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280182" + "plane" "(2080 -3128 -40) (2088 -3136 -40) (2088 -3056 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280181" + "plane" "(2088 -3056 16) (2080 -3048 16) (2080 -3048 -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" "280180" + "plane" "(2080 -3128 16) (2088 -3136 16) (2088 -3136 -40)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280179" + "plane" "(2080 -3048 16) (2080 -3128 16) (2080 -3128 -40)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280178" + "plane" "(2088 -3136 16) (2088 -3056 16) (2088 -3056 -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" + } + editor + { + "color" "0 143 136" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1677191" + side + { + "id" "280189" + "plane" "(2088 -3056 16) (2248 -3056 16) (2248 -3128 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280188" + "plane" "(2248 -3056 -40) (2088 -3056 -40) (2088 -3128 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "280187" + "plane" "(2088 -3056 -40) (2248 -3056 -40) (2248 -3056 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" "280186" + "plane" "(2248 -3056 -40) (2248 -3128 -40) (2248 -3128 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" "280185" + "plane" "(2248 -3128 -40) (2088 -3128 -40) (2088 -3128 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" "280184" + "plane" "(2088 -3128 -40) (2088 -3056 -40) (2088 -3056 16)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "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 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1668663" + side + { + "id" "279419" + "plane" "(1384 -2400 -40) (872 -2400 -40) (872 -2064 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279418" + "plane" "(1384 -2064 -56) (872 -2064 -56) (872 -2400 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279417" + "plane" "(872 -2064 -56) (1384 -2064 -56) (1384 -2064 -40)" + "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" "279416" + "plane" "(872 -2400 -56) (872 -2064 -56) (872 -2064 -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" "279415" + "plane" "(1384 -2400 -56) (872 -2400 -56) (872 -2400 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279414" + "plane" "(1384 -2064 -56) (1384 -2400 -56) (1384 -2400 -40)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1668664" + side + { + "id" "279425" + "plane" "(1384 -2064 -40) (1640 -2064 -40) (1640 -2400 -40)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279424" + "plane" "(1384 -2400 -56) (1640 -2400 -56) (1640 -2064 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279423" + "plane" "(1640 -2064 -56) (1640 -2400 -56) (1640 -2400 -40)" + "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" "279422" + "plane" "(1384 -2064 -56) (1640 -2064 -56) (1640 -2064 -40)" + "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" "279421" + "plane" "(1640 -2400 -56) (1384 -2400 -56) (1384 -2400 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279420" + "plane" "(1384 -2400 -56) (1384 -2064 -56) (1384 -2064 -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" + } + editor + { + "color" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1660963" + side + { + "id" "279203" + "plane" "(2112 -3712 0) (2112 -3584 0) (2128 -3584 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" "279202" + "plane" "(2112 -3584 -16) (2112 -3712 -16) (2128 -3712 -16)" + "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" "279201" + "plane" "(2112 -3712 -16) (2112 -3584 -16) (2112 -3584 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" "279200" + "plane" "(2112 -3584 -16) (2128 -3584 -16) (2128 -3584 0)" + "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" "279199" + "plane" "(2128 -3712 -16) (2112 -3712 -16) (2112 -3712 0)" + "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" "279198" + "plane" "(2128 -3584 -16) (2128 -3712 -16) (2128 -3712 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" + } + editor + { + "color" "0 227 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1660981" + side + { + "id" "279233" + "plane" "(2136 -3560 0) (2136 -3768 0) (2128 -3776 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 35] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279232" + "plane" "(2128 -3776 -16) (2136 -3768 -16) (2136 -3560 -16)" + "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" "279231" + "plane" "(2136 -3560 0) (2128 -3552 0) (2128 -3552 -16)" + "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" "279230" + "plane" "(2128 -3552 0) (2128 -3776 0) (2128 -3776 -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" "279229" + "plane" "(2128 -3776 0) (2136 -3768 0) (2136 -3768 -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" "279228" + "plane" "(2136 -3768 0) (2136 -3560 0) (2136 -3560 -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" "0 227 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1661098" + side + { + "id" "279269" + "plane" "(2216 -3552 0) (2240 -3552 0) (2240 -3776 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" "279268" + "plane" "(2216 -3776 -16) (2240 -3776 -16) (2240 -3552 -16)" + "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" "279267" + "plane" "(2240 -3552 -16) (2240 -3776 -16) (2240 -3776 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" "279266" + "plane" "(2240 -3776 -16) (2216 -3776 -16) (2216 -3776 0)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279265" + "plane" "(2216 -3552 -16) (2240 -3552 -16) (2240 -3552 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" "279264" + "plane" "(2216 -3776 -16) (2216 -3552 -16) (2216 -3552 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 31.998] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1661099" + side + { + "id" "279275" + "plane" "(2152 -3768 0) (2136 -3768 0) (2136 -3560 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279274" + "plane" "(2152 -3560 -16) (2136 -3560 -16) (2136 -3768 -16)" + "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" "279273" + "plane" "(2152 -3768 -16) (2136 -3768 -16) (2136 -3768 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" "279272" + "plane" "(2136 -3768 -16) (2136 -3560 -16) (2136 -3560 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" "279271" + "plane" "(2136 -3560 -16) (2152 -3560 -16) (2152 -3560 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" "279270" + "plane" "(2152 -3560 -16) (2152 -3768 -16) (2152 -3768 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" + } + editor + { + "color" "0 227 124" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1661175" + side + { + "id" "279281" + "plane" "(2240 -3776 16) (2247.67 -3768 16) (2416 -3768 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279280" + "plane" "(2240 -3776 0) (2424 -3776 0) (2416 -3768 0)" + "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" "279279" + "plane" "(2247.67 -3768 0) (2247.67 -3768 16) (2240 -3776 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" "279278" + "plane" "(2240 -3776 0) (2240 -3776 16) (2424 -3776 16)" + "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" "279277" + "plane" "(2424 -3776 0) (2424 -3776 16) (2416 -3768 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" "279276" + "plane" "(2416 -3768 0) (2416 -3768 16) (2247.67 -3768 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 229 150" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1661182" + side + { + "id" "279299" + "plane" "(2248 -3504 16) (2248 -3768 16) (2240 -3776 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 35] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279298" + "plane" "(2240 -3776 0) (2248 -3768 0) (2248 -3504 0)" + "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" "279297" + "plane" "(2240 -3504 16) (2240 -3776 16) (2240 -3776 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" "279296" + "plane" "(2248 -3504 16) (2240 -3504 16) (2240 -3504 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" "279295" + "plane" "(2240 -3776 16) (2248 -3768 16) (2248 -3768 0)" + "material" "CS_APOLLO/CARPETS/CARPET_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279294" + "plane" "(2248 -3768 16) (2248 -3504 16) (2248 -3504 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" + } + editor + { + "color" "0 229 150" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1646207" + side + { + "id" "278726" + "plane" "(1104 -3424 0) (1168 -3424 0) (1168 -3192 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278725" + "plane" "(1168 -3192 16) (1168 -3192 0) (1168 -3424 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278724" + "plane" "(1104 -3192 0) (1168 -3192 0) (1168 -3192 16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278723" + "plane" "(1168 -3424 16) (1168 -3424 0) (1104 -3424 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278722" + "plane" "(1104 -3424 0) (1104 -3192 0) (1168 -3192 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1104 -3424 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 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" + } + 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 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" + } + 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.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142" + "row1" "-0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142" + "row2" "-0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142" + "row3" "-0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142" + "row4" "-0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142" + "row5" "-0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142" + "row6" "-0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142" + "row7" "-0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142" + "row8" "-0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142 -0.242536 0 0.970142" + } + 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" + } + } + } + editor + { + "color" "0 137 254" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1633362" + side + { + "id" "278596" + "plane" "(-76 -6368 0) (-64 -6368 0) (-64 -6624 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 220] 0.125" + "vaxis" "[1 0 0 -321] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278597" + "plane" "(-76 -6624 -48) (-64 -6624 -48) (-64 -6368 -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" "278598" + "plane" "(-76 -6368 0) (-76 -6624 0) (-76 -6624 -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" "278599" + "plane" "(-64 -6368 -48) (-64 -6624 -48) (-64 -6624 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" "278600" + "plane" "(-64 -6368 0) (-76 -6368 0) (-76 -6368 -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" "278601" + "plane" "(-64 -6624 -48) (-76 -6624 -48) (-76 -6624 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 125 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1633402" + side + { + "id" "278686" + "plane" "(-464 -6624 -48) (-464 -6312 -48) (-64 -6312 -48)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278687" + "plane" "(-464 -6312 -64) (-464 -6624 -64) (-64 -6624 -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" "278688" + "plane" "(-464 -6624 -64) (-464 -6312 -64) (-464 -6312 -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" "278689" + "plane" "(-64 -6312 -64) (-64 -6624 -64) (-64 -6624 -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" "278690" + "plane" "(-464 -6312 -64) (-64 -6312 -64) (-64 -6312 -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" "278691" + "plane" "(-64 -6624 -64) (-464 -6624 -64) (-464 -6624 -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 109 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1592385" + side + { + "id" "276973" + "plane" "(-224 -5680 288) (-224 -5568 288) (80 -5568 288)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "276972" + "plane" "(-224 -5568 192) (-224 -5680 192) (80 -5680 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "276971" + "plane" "(-224 -5680 192) (-224 -5568 192) (-224 -5568 288)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "276970" + "plane" "(80 -5568 192) (80 -5680 192) (80 -5680 288)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "276969" + "plane" "(-224 -5568 192) (80 -5568 192) (80 -5568 288)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "276968" + "plane" "(80 -5680 192) (-224 -5680 192) (-224 -5680 288)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1566847" + side + { + "id" "271905" + "plane" "(-224 -5680 192) (-224 -5568 192) (152 -5568 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "271906" + "plane" "(-224 -5568 176) (-224 -5680 176) (152 -5680 176)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "271907" + "plane" "(-224 -5680 176) (-224 -5568 176) (-224 -5568 192)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0 1 0 -71] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "271908" + "plane" "(152 -5568 176) (152 -5680 176) (152 -5680 192)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0 1 0 -71] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "271909" + "plane" "(-224 -5568 176) (152 -5568 176) (152 -5568 192)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[1 0 0 -71] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "271910" + "plane" "(152 -5680 176) (-224 -5680 176) (-224 -5680 192)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[1 0 0 -358.994] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1555774" + side + { + "id" "266001" + "plane" "(1082 -3176 -38.625) (1082 -2721 -38.625) (1152 -2721 -38.625)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[-1 0 0 320] 0.125" + "vaxis" "[0 1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1152 -2721 -38.625]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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 200" + "row2" "0 0 180 255 50" + "row3" "0 0 50 230 0" + "row4" "255 50 25 150 50" + } + 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" "266000" + "plane" "(1082 -2721 -43) (1082 -3176 -43) (1152 -3176 -43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -1.52979] 0.25" + "vaxis" "[0 1 0 56.3887] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265999" + "plane" "(1152 -2721 -43) (1152 -3176 -43) (1152 -3176 -38.6232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 56.3887] 0.25" + "vaxis" "[0 0 -1 -42.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265998" + "plane" "(1082 -3176 -43) (1082 -2721 -43) (1082 -2721 -38.623)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -56.3887] 0.25" + "vaxis" "[0 0 -1 -42.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265997" + "plane" "(1082 -2721 -43) (1152 -2721 -43) (1152 -2721 -38.6231)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 1.52979] 0.25" + "vaxis" "[0 0 -1 -42.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265996" + "plane" "(1152 -3176 -43) (1082 -3176 -43) (1082 -3176 -38.623)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -1.52979] 0.25" + "vaxis" "[0 0 -1 -42.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "151 232 0" + "groupid" "1555765" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548360" + side + { + "id" "265543" + "plane" "(480 -2434 -16) (496 -2434 -16) (496 -2682 -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" "265544" + "plane" "(480 -2682 -40) (496 -2682 -40) (496 -2434 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265545" + "plane" "(480 -2434 -16) (480 -2682 -16) (480 -2682 -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" "265546" + "plane" "(496 -2434 -40) (496 -2682 -40) (496 -2682 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265547" + "plane" "(496 -2434 -16) (480 -2434 -16) (480 -2434 -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" "265548" + "plane" "(496 -2682 -40) (480 -2682 -40) (480 -2682 -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 162 115" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548378" + side + { + "id" "265561" + "plane" "(640 -2064 -32) (640 -2040 -32) (1536 -2040 -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" "265562" + "plane" "(640 -2040 -48) (640 -2064 -48) (1536 -2064 -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" "265563" + "plane" "(640 -2064 -48) (640 -2040 -48) (640 -2040 -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" "265564" + "plane" "(1536 -2040 -48) (1536 -2064 -48) (1536 -2064 -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" "265565" + "plane" "(640 -2040 -48) (1536 -2040 -48) (1536 -2040 -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" "265566" + "plane" "(1536 -2064 -48) (640 -2064 -48) (640 -2064 -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 194 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548399" + side + { + "id" "265584" + "plane" "(1328 -2880 -40) (1312 -2880 -40) (1312 -2896 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265583" + "plane" "(1312 -2896 -40) (1312 -2880 -40) (1312 -2880 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265582" + "plane" "(1312 -2880 -40) (1328 -2880 -40) (1328 -2880 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -2027] 0.15" + "vaxis" "[1 0 0 20] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265581" + "plane" "(1328 -2896 -40) (1312 -2896 -40) (1312 -2896 16)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265580" + "plane" "(1328 -2880 -40) (1328 -2896 -40) (1328 -2896 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" "265579" + "plane" "(1328 -2896 16) (1312 -2896 16) (1312 -2880 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" + } + editor + { + "color" "0 211 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548410" + side + { + "id" "265596" + "plane" "(536 -3440 0) (536 -3424 0) (824 -3424 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 832] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265595" + "plane" "(536 -3424 -40) (536 -3440 -40) (824 -3440 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265594" + "plane" "(536 -3440 -40) (536 -3424 -40) (536 -3424 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265593" + "plane" "(824 -3424 -40) (824 -3440 -40) (824 -3440 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" "265592" + "plane" "(536 -3424 -40) (824 -3424 -40) (824 -3424 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" "265591" + "plane" "(824 -3440 -40) (536 -3440 -40) (536 -3440 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 212 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1549248" + side + { + "id" "265658" + "plane" "(1144 -2064 -40) (1144 -2120 -40) (1384 -2120 -40)" + "material" "BRICK/HR_BRICK/VENICE/BRICK_GROUND_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265657" + "plane" "(1144 -2120 -40) (1144 -2064 -40) (1144 -2064 -16)" + "material" "BRICK/HR_BRICK/VENICE/BRICK_GROUND_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265656" + "plane" "(1384 -2064 -16) (1384 -2064 -40) (1384 -2120 -40)" + "material" "BRICK/HR_BRICK/VENICE/BRICK_GROUND_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265655" + "plane" "(1144 -2064 -16) (1144 -2064 -40) (1384 -2064 -40)" + "material" "BRICK/HR_BRICK/VENICE/BRICK_GROUND_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265654" + "plane" "(1384 -2120 -40) (1144 -2120 -40) (1144 -2064 -16)" + "material" "DE_YARD/GROUND/ASPH6_YARD" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -0.919145 -0.393919 260.656] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[1144 -2120 -40]" + "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 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" + } + 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 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" + } + 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.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145" + "row1" "0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145" + "row2" "0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145" + "row3" "0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145" + "row4" "0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145" + "row5" "0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145" + "row6" "0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145" + "row7" "0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145" + "row8" "0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145 0 -0.393919 0.919145" + } + 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" + } + } + } + editor + { + "color" "0 118 111" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1549258" + side + { + "id" "265676" + "plane" "(1312 -2896 16) (1328 -2896 16) (1328 -3144 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265677" + "plane" "(1312 -3144 -40) (1328 -3144 -40) (1328 -2896 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265678" + "plane" "(1312 -2896 16) (1312 -3144 16) (1312 -3144 -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" "265679" + "plane" "(1328 -2896 -40) (1328 -3144 -40) (1328 -3144 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" "265680" + "plane" "(1328 -2896 16) (1312 -2896 16) (1312 -2896 -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" "265681" + "plane" "(1328 -3144 -40) (1312 -3144 -40) (1312 -3144 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 174 235" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1535851" + side + { + "id" "265203" + "plane" "(-136 -3322 272) (-152 -3322 272) (-353 -3197 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265204" + "plane" "(-352 -3169 -16) (-353 -3197 -16) (-152 -3322 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265205" + "plane" "(-152 -3322 272) (-152 -3322 -16) (-353 -3197 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265206" + "plane" "(-352 -3169 272) (-352 -3169 -16) (-136 -3322 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265207" + "plane" "(-353 -3197 272) (-353 -3197 -16) (-352 -3169 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265208" + "plane" "(-136 -3322 272) (-136 -3322 -16) (-152 -3322 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 226" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1529350" + side + { + "id" "265016" + "plane" "(-784 -3808 -224) (-784 -3744 -224) (-584 -3744 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "265015" + "plane" "(-584 -3744 -240) (-784 -3744 -240) (-784 -3808 -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" "265014" + "plane" "(-784 -3744 -240) (-584 -3744 -240) (-584 -3744 -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" "265013" + "plane" "(-584 -3744 -240) (-584 -3808 -240) (-584 -3808 -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" "265012" + "plane" "(-784 -3808 -240) (-784 -3744 -240) (-784 -3744 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265011" + "plane" "(-584 -3808 -240) (-784 -3808 -240) (-784 -3808 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1529351" + side + { + "id" "265022" + "plane" "(-584 -3808 -224) (-584 -3816 -224) (-776 -3816 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265021" + "plane" "(-584 -3816 -240) (-584 -3808 -240) (-784 -3808 -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" "265020" + "plane" "(-584 -3816 -224) (-584 -3808 -224) (-584 -3808 -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" "265019" + "plane" "(-784 -3808 -224) (-776 -3816 -224) (-776 -3816 -240)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265018" + "plane" "(-776 -3816 -224) (-584 -3816 -224) (-584 -3816 -240)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265017" + "plane" "(-584 -3808 -224) (-784 -3808 -224) (-784 -3808 -240)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1523015" + side + { + "id" "264987" + "plane" "(-792 -3434 -224) (-792 -3216 -224) (-776 -3216 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "264988" + "plane" "(-792 -3216 -240) (-792 -3434 -240) (-776 -3434 -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" "264989" + "plane" "(-792 -3434 -240) (-792 -3216 -240) (-792 -3216 -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" "264990" + "plane" "(-776 -3216 -240) (-776 -3434 -240) (-776 -3434 -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" "264991" + "plane" "(-792 -3216 -240) (-776 -3216 -240) (-776 -3216 -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" "264992" + "plane" "(-776 -3434 -240) (-792 -3434 -240) (-792 -3434 -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 139 244" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1517032" + side + { + "id" "264968" + "plane" "(-600 -3816 -224) (-600 -4344 -224) (-776 -4344 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264967" + "plane" "(-776 -3816 -240) (-776 -4344 -240) (-600 -4344 -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" "264966" + "plane" "(-600 -3816 -240) (-600 -4344 -240) (-600 -4344 -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" "264965" + "plane" "(-600 -4344 -240) (-776 -4344 -240) (-776 -4344 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264964" + "plane" "(-776 -4344 -240) (-776 -3816 -240) (-776 -3816 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264963" + "plane" "(-776 -3816 -240) (-600 -3816 -240) (-600 -3816 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1506451" + side + { + "id" "264741" + "plane" "(1024 -4960 -16) (1024 -4768 -16) (1184 -4768 -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" "264742" + "plane" "(1024 -4768 -32) (1024 -4960 -32) (1184 -4960 -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" "264743" + "plane" "(1024 -4960 -32) (1024 -4768 -32) (1024 -4768 -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" "264744" + "plane" "(1184 -4768 -32) (1184 -4960 -32) (1184 -4960 -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" "264745" + "plane" "(1024 -4768 -32) (1184 -4768 -32) (1184 -4768 -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" "264746" + "plane" "(1184 -4960 -32) (1024 -4960 -32) (1024 -4960 -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 152 189" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1493981" + side + { + "id" "264517" + "plane" "(168 -5872 160) (168 -5856 160) (384 -5856 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264518" + "plane" "(168 -5856 8) (168 -5872 8) (384 -5872 8)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264519" + "plane" "(168 -5872 8) (168 -5856 8) (168 -5856 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264520" + "plane" "(384 -5856 8) (384 -5872 8) (384 -5872 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264521" + "plane" "(168 -5856 8) (384 -5856 8) (384 -5856 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264522" + "plane" "(384 -5872 8) (168 -5872 8) (168 -5872 160)" + "material" "TOOLS/TOOLSCLIP" + "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 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1493985" + side + { + "id" "264540" + "plane" "(224 -2700 224) (224 -2392 224) (264 -2392 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264539" + "plane" "(224 -2392 144) (224 -2700 144) (264 -2700 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264538" + "plane" "(224 -2700 144) (224 -2392 144) (224 -2392 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264537" + "plane" "(264 -2392 144) (264 -2700 144) (264 -2700 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264536" + "plane" "(224 -2392 144) (264 -2392 144) (264 -2392 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264535" + "plane" "(264 -2700 144) (224 -2700 144) (224 -2700 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 185 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1493986" + side + { + "id" "264546" + "plane" "(224 -2896 224) (224 -2700 224) (480 -2700 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264545" + "plane" "(224 -2700 144) (224 -2896 144) (480 -2896 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264544" + "plane" "(224 -2896 144) (224 -2700 144) (224 -2700 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264543" + "plane" "(480 -2700 144) (480 -2896 144) (480 -2896 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264542" + "plane" "(224 -2700 144) (480 -2700 144) (480 -2700 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264541" + "plane" "(480 -2896 144) (224 -2896 144) (224 -2896 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1494002" + side + { + "id" "264547" + "plane" "(160 -2912 416) (160 -2896 416) (264 -2896 416)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264548" + "plane" "(160 -2896 208) (160 -2912 208) (264 -2912 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264549" + "plane" "(160 -2912 208) (160 -2896 208) (160 -2896 416)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264550" + "plane" "(264 -2896 208) (264 -2912 208) (264 -2912 416)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264551" + "plane" "(160 -2896 208) (264 -2896 208) (264 -2896 416)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264552" + "plane" "(264 -2912 208) (160 -2912 208) (160 -2912 416)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1494043" + side + { + "id" "264570" + "plane" "(2248 -3080 216) (2254 -3088 216) (2254 -3128 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264569" + "plane" "(2248 -3136 -4) (2254 -3128 -4) (2254 -3088 -4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264568" + "plane" "(2248 -3080 -4) (2248 -3080 216) (2248 -3136 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264567" + "plane" "(2254 -3128 -4) (2254 -3128 216) (2254 -3088 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264566" + "plane" "(2254 -3088 -4) (2254 -3088 216) (2248 -3080 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264565" + "plane" "(2248 -3136 -4) (2248 -3136 216) (2254 -3128 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1494136" + side + { + "id" "264582" + "plane" "(2112 -3704 236.249) (2112 -3768 236.249) (2097 -3768 236.249)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264581" + "plane" "(2112 -3768 -57) (2112 -3704 -57) (2110 -3704 -57)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264580" + "plane" "(2112 -3768 -57) (2112 -3768 236.249) (2112 -3704 236.249)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264579" + "plane" "(2112 -3704 -57) (2112 -3704 236.249) (2110 -3704 236.249)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264578" + "plane" "(2097 -3768 -57) (2097 -3768 236.249) (2112 -3768 236.249)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264577" + "plane" "(2110 -3704 -57) (2110 -3704 236.249) (2097 -3768 236.249)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 222" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1494189" + side + { + "id" "264606" + "plane" "(2074 -3540 236.248) (2074 -3538 236.248) (2112 -3538 236.248)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264605" + "plane" "(2074 -3538 -56) (2074 -3540 -56) (2112 -3588 -56)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264604" + "plane" "(2074 -3540 -55.9989) (2074 -3538 -55.9989) (2074 -3538 236.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264603" + "plane" "(2112 -3538 -55.9987) (2112 -3588 -55.9987) (2112 -3588 236.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264602" + "plane" "(2074 -3538 -55.9988) (2112 -3538 -55.9988) (2112 -3538 236.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264601" + "plane" "(2112 -3588 -55.9989) (2074 -3540 -55.9989) (2074 -3540 236.25)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 234" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1494468" + side + { + "id" "264674" + "plane" "(-256 -5600 0) (-256 -4768 0) (16 -4768 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[16 -4768 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.00976486 -0.912209 0 0.00781131 -0.912142 0 -0.039028 -0.911474 0 0 0 0 0 0 0" + "row1" "-0.00553366 -0.912248 0 4.61141e-05 -0.00787014 -0.999969 -1.27157e-05 -0.000325521 -1 0 0 -1 0 0 0" + "row2" "-0.00867999 -0.912221 0 3.07435e-05 -0.00393516 -0.999992 -1.27157e-05 -0.000325521 -1 0 0 -1 0 0 0" + "row3" "-0.00553366 -0.912248 0 0.00585892 -0.912209 0 -0.039028 -0.911474 0 0 0 0 0 0 0" + "row4" "-0.0102531 -0.912205 0 0.00781131 -0.912142 0 -0.039028 -0.911474 0 0 0 0 0 0 0" + } + distances + { + "row0" "0.00390644 0.000976592 0.000977307 0 0" + "row1" "0.00585946 0.248169 3 0.248168 0" + "row2" "0.0043947 0.248163 3 0.248168 0" + "row3" "0.00585946 0.00195316 0.000977307 0 0" + "row4" "0.00390646 0.000976592 0.000977307 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" "17 11.5 6 3 0" + "row3" "0 0 6.73182e-07 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" "264673" + "plane" "(-256 -4768 -16) (-256 -5600 -16) (16 -5600 -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" "264672" + "plane" "(-256 -4768 -16) (-256 -4768 0) (-256 -5600 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" "264671" + "plane" "(16 -4768 -16) (16 -4768 0) (-256 -4768 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" "264670" + "plane" "(-256 -5600 -16) (-256 -5600 0) (16 -5600 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264669" + "plane" "(16 -5600 -16) (16 -5600 0) (16 -4768 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 220" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1494469" + side + { + "id" "264680" + "plane" "(288 -5600 0) (16 -5600 0) (16 -4688 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[16 -4688 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "-0.00976486 -0.999922 0 -0.00553366 -0.999964 0 -0.00867999 -0.999935 0 -0.00553366 -0.999964 0 -0.0102531 -0.999917 0" + "row1" "0.0856115 -0.996207 0 0.000338167 -0.00787007 -0.999969 0.000338175 -0.00393513 -0.999992 0.0429265 -0.999017 0 0.0856115 -0.996207 0" + "row2" "0.0437061 -0.998996 0 3.56038e-05 -0.000976562 -1 3.56038e-05 -0.000976562 -1 0.0364326 -0.999295 0 0.0312337 -0.999477 0" + "row3" "0.0520107 -0.998606 0 0.000491859 -0.0118046 -0.99993 0.000614831 -0.0118048 -0.99993 0.0499352 -0.998704 0 0.0499352 -0.998704 0" + "row4" "0.0156228 -0.999858 0 0.0138872 -0.999876 0 0.0156228 -0.999858 0 0.0138872 -0.999876 0 0.0138872 -0.999876 0" + } + distances + { + "row0" "0.00390644 0.00585946 0.0043947 0.00585946 0.00390646" + "row1" "0.000980162 0.248171 0.248165 0.00195493 0.000980162" + "row2" "0.00244374 3 3 0.00293163 0.00341964" + "row3" "0.00293366 0.248181 0.248179 0.00244446 0.00244446" + "row4" "0.00586009 0.00439496 0.00586009 0.00439496 0.00439496" + } + 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 17 0 0" + "row1" "9.25001 8.50001 8.49999 0 0" + "row2" "18.5 17 3.8147e-06 0 0" + "row3" "9.24999 8.49999 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" "264679" + "plane" "(288 -4688 -16) (16 -4688 -16) (16 -5600 -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" "264678" + "plane" "(16 -4688 -16) (288 -4688 -16) (288 -4688 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" "264677" + "plane" "(288 -5600 -16) (16 -5600 -16) (16 -5600 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264676" + "plane" "(288 -4688 -16) (288 -5600 -16) (288 -5600 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264675" + "plane" "(16 -5600 -16) (16 -4688 -16) (16 -4688 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 220" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487789" + side + { + "id" "264276" + "plane" "(888 -5600 0) (864 -5600 0) (864 -5616 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" "264275" + "plane" "(864 -5616 48) (864 -5616 0) (864 -5600 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" "264274" + "plane" "(864 -5600 48) (864 -5600 0) (888 -5600 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264273" + "plane" "(888 -5616 0) (864 -5616 0) (864 -5616 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" "264272" + "plane" "(888 -5616 48) (864 -5616 48) (864 -5600 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" "264271" + "plane" "(888 -5600 48) (888 -5600 0) (888 -5616 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" + } + editor + { + "color" "0 165 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487814" + side + { + "id" "264306" + "plane" "(952 -5616 0) (1040 -5616 0) (1040 -5600 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" "264305" + "plane" "(1040 -5600 48) (1040 -5600 0) (1040 -5616 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264304" + "plane" "(952 -5600 0) (1040 -5600 0) (1040 -5600 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264303" + "plane" "(1040 -5616 48) (1040 -5616 0) (952 -5616 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" "264302" + "plane" "(952 -5600 48) (1040 -5600 48) (1040 -5616 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" "264301" + "plane" "(952 -5616 48) (952 -5616 0) (952 -5600 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" + } + editor + { + "color" "0 165 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487853" + side + { + "id" "264318" + "plane" "(848 -5872 48) (848 -5840 48) (848 -5840 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 0.00390625] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264317" + "plane" "(864 -5840 48) (864 -5872 48) (864 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264316" + "plane" "(848 -5840 48) (848 -5872 48) (864 -5872 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" "264315" + "plane" "(864 -5840 48) (864 -5840 156) (848 -5840 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 0 -1 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264314" + "plane" "(848 -5872 48) (848 -5872 156) (864 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264313" + "plane" "(848 -5872 156) (848 -5840 156) (864 -5840 156)" + "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 125 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487854" + side + { + "id" "264324" + "plane" "(864 -5600 160) (1040 -5600 160) (1040 -5616 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" "264323" + "plane" "(1040 -5616 156) (1040 -5616 160) (1040 -5600 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -383] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264322" + "plane" "(1040 -5600 156) (1040 -5600 160) (864 -5600 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 384.996] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264321" + "plane" "(864 -5616 156) (864 -5616 160) (1040 -5616 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" "264320" + "plane" "(864 -5600 156) (864 -5600 160) (864 -5616 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" "264319" + "plane" "(864 -5616 156) (1040 -5616 156) (1040 -5600 156)" + "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 165 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487855" + side + { + "id" "264330" + "plane" "(1040 -5600 156) (1040 -5600 48) (1040 -5616 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264329" + "plane" "(952 -5600 156) (952 -5600 48) (1040 -5600 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264328" + "plane" "(1040 -5616 156) (1040 -5616 48) (952 -5616 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" "264327" + "plane" "(952 -5616 48) (1040 -5616 48) (1040 -5600 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" "264326" + "plane" "(952 -5616 156) (952 -5616 48) (952 -5600 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" "264325" + "plane" "(952 -5600 156) (1040 -5600 156) (1040 -5616 156)" + "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 165 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487857" + side + { + "id" "264342" + "plane" "(864 -5840 128) (864 -5840 156) (864 -5776 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264341" + "plane" "(848 -5776 128) (848 -5776 156) (848 -5840 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 0.00390625] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264340" + "plane" "(864 -5776 128) (864 -5776 156) (848 -5776 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264339" + "plane" "(848 -5840 128) (848 -5840 156) (864 -5840 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264338" + "plane" "(848 -5776 128) (848 -5840 128) (864 -5840 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 98] 0.063" + "vaxis" "[0 1 0 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264337" + "plane" "(848 -5840 156) (848 -5776 156) (864 -5776 156)" + "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 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487858" + side + { + "id" "264348" + "plane" "(848 -5872 160) (848 -5600 160) (864 -5600 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" "264347" + "plane" "(848 -5600 156) (848 -5600 160) (848 -5872 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264346" + "plane" "(864 -5872 160) (864 -5600 160) (864 -5600 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264345" + "plane" "(864 -5600 156) (864 -5600 160) (848 -5600 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 384.996] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264344" + "plane" "(848 -5872 156) (848 -5872 160) (864 -5872 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 98] 0.063" + "vaxis" "[0 0 -1 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264343" + "plane" "(848 -5600 156) (848 -5872 156) (864 -5872 156)" + "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 125 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487859" + side + { + "id" "264354" + "plane" "(848 -5776 48) (848 -5600 48) (848 -5600 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 0.00390625] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264353" + "plane" "(864 -5600 156) (864 -5600 48) (864 -5776 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" "264352" + "plane" "(864 -5600 48) (864 -5600 156) (848 -5600 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264351" + "plane" "(848 -5600 48) (848 -5776 48) (864 -5776 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" "264350" + "plane" "(848 -5776 48) (848 -5776 156) (864 -5776 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 98] 0.063" + "vaxis" "[0 0 -1 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264349" + "plane" "(848 -5776 156) (848 -5600 156) (864 -5600 156)" + "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 125 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487861" + side + { + "id" "264366" + "plane" "(864 -5616 156) (864 -5616 48) (864 -5600 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" "264365" + "plane" "(864 -5600 156) (864 -5600 48) (888 -5600 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264364" + "plane" "(888 -5616 156) (888 -5616 48) (864 -5616 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" "264363" + "plane" "(888 -5600 48) (864 -5600 48) (864 -5616 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" "264362" + "plane" "(888 -5600 156) (888 -5600 48) (888 -5616 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" "264361" + "plane" "(888 -5616 156) (864 -5616 156) (864 -5600 156)" + "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 165 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487863" + side + { + "id" "264378" + "plane" "(888 -5600 156) (888 -5600 112) (952 -5600 112)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264377" + "plane" "(952 -5616 156) (952 -5616 112) (888 -5616 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" "264376" + "plane" "(952 -5600 112) (888 -5600 112) (888 -5616 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" "264375" + "plane" "(888 -5616 156) (888 -5616 112) (888 -5600 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" "264374" + "plane" "(952 -5600 156) (952 -5600 112) (952 -5616 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" "264373" + "plane" "(952 -5616 156) (888 -5616 156) (888 -5600 156)" + "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 165 214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487892" + side + { + "id" "264384" + "plane" "(850 -5888 160) (850 -5872 160) (864 -5872 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" "264383" + "plane" "(850 -5872 156) (850 -5872 160) (850 -5888 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" "264382" + "plane" "(864 -5888 156) (864 -5888 160) (864 -5872 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" "264381" + "plane" "(864 -5872 156) (864 -5872 160) (850 -5872 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" "264380" + "plane" "(850 -5888 156) (850 -5888 160) (864 -5888 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -382.996] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264379" + "plane" "(850 -5872 156) (850 -5888 156) (864 -5888 156)" + "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 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487893" + side + { + "id" "264390" + "plane" "(850 -5872 48) (850 -5888 48) (864 -5888 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" "264389" + "plane" "(850 -5888 48) (850 -5872 48) (850 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264388" + "plane" "(864 -5872 48) (864 -5888 48) (864 -5888 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264387" + "plane" "(850 -5872 48) (864 -5872 48) (864 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264386" + "plane" "(864 -5888 48) (850 -5888 48) (850 -5888 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264385" + "plane" "(850 -5888 156) (850 -5872 156) (864 -5872 156)" + "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 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487895" + side + { + "id" "264402" + "plane" "(864 -5888 48) (1040 -5888 48) (1040 -5872 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" "264401" + "plane" "(1040 -5872 156) (1040 -5872 48) (1040 -5888 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264400" + "plane" "(864 -5872 156) (864 -5872 48) (1040 -5872 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" "264399" + "plane" "(1040 -5888 156) (1040 -5888 48) (864 -5888 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264398" + "plane" "(864 -5888 156) (864 -5888 48) (864 -5872 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" "264397" + "plane" "(864 -5872 156) (1040 -5872 156) (1040 -5888 156)" + "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 103 216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1487897" + side + { + "id" "264414" + "plane" "(1184 -5888 160) (1184 -5888 48) (1200 -5872 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" "264413" + "plane" "(1200 -5872 160) (1200 -5872 48) (1472 -5872 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264412" + "plane" "(1472 -5888 160) (1472 -5888 48) (1184 -5888 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -383.988] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264411" + "plane" "(1472 -5872 160) (1472 -5872 48) (1472 -5888 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" "264410" + "plane" "(1472 -5872 48) (1200 -5872 48) (1184 -5888 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" "264409" + "plane" "(1472 -5888 160) (1184 -5888 160) (1200 -5872 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" + } + editor + { + "color" "0 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480884" + side + { + "id" "263311" + "plane" "(560 -5616 160) (388 -5616 160) (388 -5600 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" "263310" + "plane" "(560 -5600 156) (560 -5600 160) (388 -5600 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -255.004] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263309" + "plane" "(388 -5616 160) (560 -5616 160) (560 -5616 156)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263308" + "plane" "(560 -5616 156) (560 -5616 160) (560 -5600 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" "263307" + "plane" "(560 -5600 156) (388 -5600 156) (388 -5616 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263306" + "plane" "(388 -5600 156) (388 -5600 160) (388 -5616 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 + { + "color" "0 195 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480894" + side + { + "id" "263335" + "plane" "(388 -5872 32) (572 -5872 32) (572 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263334" + "plane" "(572 -5888 156) (572 -5888 32) (388 -5888 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -95.9883] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263333" + "plane" "(572 -5872 32) (388 -5872 32) (388 -5888 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" "263332" + "plane" "(572 -5872 156) (572 -5872 32) (572 -5888 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" "263331" + "plane" "(572 -5888 156) (388 -5888 156) (388 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263330" + "plane" "(388 -5888 156) (388 -5888 32) (388 -5872 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480896" + side + { + "id" "263347" + "plane" "(572 -5888 160) (388 -5888 160) (388 -5872 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" "263346" + "plane" "(572 -5872 156) (572 -5872 160) (388 -5872 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" "263345" + "plane" "(388 -5888 160) (572 -5888 160) (572 -5888 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 0.996094] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263344" + "plane" "(572 -5888 156) (572 -5888 160) (572 -5872 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" "263343" + "plane" "(572 -5872 156) (388 -5872 156) (388 -5888 156)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 1 0 31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263342" + "plane" "(388 -5872 156) (388 -5872 160) (388 -5888 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 + { + "color" "0 195 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480903" + side + { + "id" "263359" + "plane" "(384 -5872 160) (388 -5872 160) (388 -5888 160)" + "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" "263358" + "plane" "(388 -5888 1.90735e-06) (388 -5888 160) (388 -5872 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 15.9961] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263357" + "plane" "(384 -5872 1.90735e-06) (388 -5872 1.90735e-06) (388 -5872 160)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 304] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263356" + "plane" "(384 -5888 160) (388 -5888 160) (388 -5888 1.90735e-06)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263355" + "plane" "(384 -5888 1.90735e-06) (388 -5888 1.90735e-06) (388 -5872 1.90735e-06)" + "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" "263354" + "plane" "(384 -5872 1.90735e-06) (384 -5872 160) (384 -5888 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -31.998] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480909" + side + { + "id" "263371" + "plane" "(384 -5600 160) (388 -5600 160) (388 -5616 160)" + "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" "263370" + "plane" "(388 -5616 1.90735e-06) (388 -5616 160) (388 -5600 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16.0039] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263369" + "plane" "(384 -5600 1.90735e-06) (388 -5600 1.90735e-06) (388 -5600 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -255.004] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263368" + "plane" "(384 -5616 160) (388 -5616 160) (388 -5616 1.90735e-06)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263367" + "plane" "(384 -5616 1.90735e-06) (388 -5616 1.90735e-06) (388 -5600 1.90735e-06)" + "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" "263366" + "plane" "(384 -5600 1.90735e-06) (384 -5600 160) (384 -5616 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 0.988281] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481079" + side + { + "id" "263582" + "plane" "(388 -5872 32) (576 -5872 32) (576 -5888 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" "263583" + "plane" "(388 -5888 0) (576 -5888 0) (576 -5872 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" "263584" + "plane" "(388 -5872 32) (388 -5888 32) (388 -5888 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" "263585" + "plane" "(576 -5872 0) (576 -5888 0) (576 -5888 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263586" + "plane" "(576 -5872 32) (388 -5872 32) (388 -5872 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" "263587" + "plane" "(576 -5888 0) (388 -5888 0) (388 -5888 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 0.996094] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 134 111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481082" + side + { + "id" "263599" + "plane" "(384 -5872 160) (388 -5872 160) (388 -5888 160)" + "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" "263598" + "plane" "(388 -5888 1.90735e-06) (388 -5888 160) (388 -5872 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 15.9961] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263597" + "plane" "(384 -5872 1.90735e-06) (388 -5872 1.90735e-06) (388 -5872 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263596" + "plane" "(384 -5888 160) (388 -5888 160) (388 -5888 1.90735e-06)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 0.996094] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263595" + "plane" "(384 -5888 1.90735e-06) (388 -5888 1.90735e-06) (388 -5872 1.90735e-06)" + "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" "263594" + "plane" "(384 -5872 1.90735e-06) (384 -5872 160) (384 -5888 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 0.988281] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481093" + side + { + "id" "263606" + "plane" "(384 -5616 32) (400 -5616 32) (400 -5872 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" "263607" + "plane" "(384 -5872 0) (400 -5872 0) (400 -5616 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" "263608" + "plane" "(384 -5616 32) (384 -5872 32) (384 -5872 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 0.988281] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263609" + "plane" "(400 -5616 0) (400 -5872 0) (400 -5872 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" "263610" + "plane" "(400 -5616 32) (384 -5616 32) (384 -5616 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" "263611" + "plane" "(400 -5872 0) (384 -5872 0) (384 -5872 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 162 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481098" + side + { + "id" "263612" + "plane" "(384 -5616 160) (400 -5616 160) (400 -5872 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" "263613" + "plane" "(384 -5872 156) (400 -5872 156) (400 -5616 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263614" + "plane" "(384 -5616 160) (384 -5872 160) (384 -5872 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 0.988281] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263615" + "plane" "(400 -5616 156) (400 -5872 156) (400 -5872 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" "263616" + "plane" "(400 -5616 160) (384 -5616 160) (384 -5616 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263617" + "plane" "(400 -5872 156) (384 -5872 156) (384 -5872 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" + } + editor + { + "color" "0 252 213" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481101" + side + { + "id" "263635" + "plane" "(400 -5840 48) (400 -5776 48) (384 -5776 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0.0020752] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263634" + "plane" "(400 -5776 128) (400 -5776 48) (400 -5840 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263633" + "plane" "(384 -5840 128) (384 -5840 48) (384 -5776 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263632" + "plane" "(384 -5776 128) (384 -5776 48) (400 -5776 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -0.0020752] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263631" + "plane" "(400 -5840 128) (400 -5840 48) (384 -5840 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0.0020752] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263630" + "plane" "(400 -5776 128) (400 -5840 128) (384 -5840 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -0.0020752] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481102" + side + { + "id" "263641" + "plane" "(400 -5776 128) (400 -5840 128) (392 -5840 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.0020752] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263640" + "plane" "(400 -5840 48) (400 -5776 48) (392 -5776 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.0020752] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263639" + "plane" "(400 -5776 48) (400 -5840 48) (400 -5840 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" "263638" + "plane" "(392 -5840 48) (392 -5776 48) (392 -5776 128)" + "material" "METAL/HR_METAL/HR_METAL_SHUTTERS_02" + "uaxis" "[0 -1 0 -256] 0.0625" + "vaxis" "[0 0 -1 614.4] 0.078125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263637" + "plane" "(400 -5840 48) (392 -5840 48) (392 -5840 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.0020752] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263636" + "plane" "(392 -5776 48) (400 -5776 48) (400 -5776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.0020752] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 121 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481115" + side + { + "id" "263647" + "plane" "(384 -5872 156) (384 -5840 156) (400 -5840 156)" + "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" "263646" + "plane" "(384 -5840 32) (384 -5872 32) (400 -5872 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" + } + side + { + "id" "263645" + "plane" "(384 -5872 32) (384 -5840 32) (384 -5840 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -95.9844] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263644" + "plane" "(400 -5840 32) (400 -5872 32) (400 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263643" + "plane" "(400 -5872 32) (384 -5872 32) (384 -5872 156)" + "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" "263642" + "plane" "(384 -5840 32) (400 -5840 32) (400 -5840 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 0 1 677.281] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 154 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481120" + side + { + "id" "263665" + "plane" "(384 -5776 156) (384 -5616 156) (400 -5616 156)" + "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" "263664" + "plane" "(384 -5616 32) (384 -5776 32) (400 -5776 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" + } + side + { + "id" "263663" + "plane" "(384 -5776 32) (384 -5616 32) (384 -5616 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -95.9844] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263662" + "plane" "(400 -5616 32) (400 -5776 32) (400 -5776 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263661" + "plane" "(384 -5616 32) (400 -5616 32) (400 -5616 156)" + "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" "263660" + "plane" "(400 -5776 32) (384 -5776 32) (384 -5776 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 0 -1 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 154 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481125" + side + { + "id" "263671" + "plane" "(384 -5776 32) (384 -5840 32) (400 -5840 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" + } + side + { + "id" "263670" + "plane" "(384 -5840 32) (384 -5776 32) (384 -5776 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -95.9844] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263669" + "plane" "(400 -5776 32) (400 -5840 32) (400 -5840 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" "263668" + "plane" "(400 -5840 32) (384 -5840 32) (384 -5840 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" "263667" + "plane" "(384 -5776 32) (400 -5776 32) (400 -5776 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" "263666" + "plane" "(384 -5840 48) (384 -5776 48) (400 -5776 48)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 -1 0 -811.031] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 154 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481132" + side + { + "id" "263683" + "plane" "(384 -5840 156) (384 -5776 156) (400 -5776 156)" + "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" "263682" + "plane" "(384 -5776 128) (384 -5776 156) (384 -5840 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -95.9844] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263681" + "plane" "(400 -5840 128) (400 -5840 156) (400 -5776 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263680" + "plane" "(384 -5840 128) (384 -5840 156) (400 -5840 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263679" + "plane" "(400 -5776 128) (400 -5776 156) (384 -5776 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263678" + "plane" "(384 -5776 128) (384 -5840 128) (400 -5840 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 1 0 43.543] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 154 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1449646" + side + { + "id" "263046" + "plane" "(-816 -4232 -48) (-816 -3784 -48) (-808 -3784 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263047" + "plane" "(-816 -3784 -224) (-816 -4232 -224) (-808 -4232 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263048" + "plane" "(-816 -4232 -224) (-816 -3784 -224) (-816 -3784 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263049" + "plane" "(-808 -3784 -224) (-808 -4232 -224) (-808 -4232 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263050" + "plane" "(-816 -3784 -224) (-808 -3784 -224) (-808 -3784 -48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263051" + "plane" "(-808 -4232 -224) (-816 -4232 -224) (-816 -4232 -48)" + "material" "TOOLS/TOOLSCLIP" + "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 251" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1418658" + side + { + "id" "260959" + "plane" "(-1086 -3936 240) (-1061 -3936 240) (-983 -4718 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260958" + "plane" "(-1004 -4718 0) (-983 -4718 0) (-1061 -3936 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260957" + "plane" "(-1086 -3936 0) (-1086 -3936 240) (-1004 -4718 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260956" + "plane" "(-983 -4718 0) (-983 -4718 240) (-1061 -3936 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260955" + "plane" "(-1061 -3936 0) (-1061 -3936 240) (-1086 -3936 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260954" + "plane" "(-1004 -4718 0) (-1004 -4718 240) (-983 -4718 240)" + "material" "TOOLS/TOOLSCLIP" + "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 184" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1418659" + side + { + "id" "260965" + "plane" "(-1004 -4718 240) (-983 -4718 240) (-854 -4935 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260964" + "plane" "(-854 -4944 0) (-854 -4935 0) (-983.003 -4718 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260963" + "plane" "(-1004 -4718 0) (-1004 -4718 240) (-854 -4944 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260962" + "plane" "(-854 -4944 0) (-854 -4944 240) (-854 -4935 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260961" + "plane" "(-854 -4935 0) (-854 -4935 240) (-983 -4718 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260960" + "plane" "(-983.003 -4718 0) (-983 -4718 240) (-1004 -4718 240)" + "material" "TOOLS/TOOLSCLIP" + "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 184" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1407002" + side + { + "id" "260930" + "plane" "(264 -2868 16) (354 -2868 16) (354 -2896 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" "260931" + "plane" "(264 -2896 -32) (354 -2896 -32) (354 -2868 -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" "260932" + "plane" "(264 -2868 16) (264 -2896 16) (264 -2896 -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" "260933" + "plane" "(354 -2868 -32) (354 -2896 -32) (354 -2896 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" "260934" + "plane" "(354 -2868 16) (264 -2868 16) (264 -2868 -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" "260935" + "plane" "(354 -2896 -32) (264 -2896 -32) (264 -2896 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 182 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1394943" + side + { + "id" "260397" + "plane" "(-144 -3328 256) (-64 -3328 256) (-64 -3528 256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260396" + "plane" "(-144 -3485 -16) (-112 -3510 -16) (-64 -3528 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260395" + "plane" "(-144 -3328 -16) (-144 -3328 256) (-144 -3485 256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260394" + "plane" "(-64 -3528 -16) (-64 -3528 256) (-64 -3328 256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260393" + "plane" "(-64 -3328 -16) (-64 -3328 256) (-144 -3328 256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260392" + "plane" "(-112 -3510 -16) (-112 -3510 256) (-64 -3528 256)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260391" + "plane" "(-144 -3485 -16) (-144 -3485 256) (-112 -3510 256)" + "material" "TOOLS/TOOLSCLIP" + "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 224" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1395121" + side + { + "id" "260781" + "plane" "(-384 -4768 128) (-384 -4752 128) (-136 -4752 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 31.9982] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260780" + "plane" "(-384 -4752 0) (-384 -4768 0) (-136 -4768 0)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 -31.9982] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260779" + "plane" "(-136 -4752 0) (-136 -4768 0) (-136 -4768 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260778" + "plane" "(-384 -4768 0) (-384 -4752 0) (-384 -4752 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260777" + "plane" "(-136 -4768 0) (-384 -4768 0) (-384 -4768 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[1 0 0 -31.9982] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260776" + "plane" "(-384 -4752 0) (-136 -4752 0) (-136 -4752 128)" + "material" "TOOLS/TOOLSCLIP_TILE" + "uaxis" "[-1 0 0 31.9982] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 185 130" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1395333" + side + { + "id" "260817" + "plane" "(-136 -4768 160) (-384 -4768 160) (-384 -4752 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260816" + "plane" "(-136 -4752 128) (-384 -4752 128) (-384 -4768 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260815" + "plane" "(-136 -4768 128) (-384 -4768 128) (-384 -4768 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -253] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260814" + "plane" "(-384 -4752 128) (-136 -4752 128) (-136 -4752 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[1 0 0 80] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260813" + "plane" "(-136 -4752 128) (-136 -4768 128) (-136 -4768 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" "260812" + "plane" "(-384 -4768 128) (-384 -4752 128) (-384 -4752 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 + { + "color" "0 180 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1395476" + side + { + "id" "260888" + "plane" "(-384 -4768 0) (-384 -4752 0) (-128 -4752 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 896] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260889" + "plane" "(-384 -4752 -16) (-384 -4768 -16) (-128 -4768 -16)" + "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" "260890" + "plane" "(-384 -4768 -16) (-384 -4752 -16) (-384 -4752 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" "260891" + "plane" "(-128 -4752 -16) (-128 -4768 -16) (-128 -4768 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" "260892" + "plane" "(-384 -4752 -16) (-128 -4752 -16) (-128 -4752 0)" + "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" "260893" + "plane" "(-128 -4768 -16) (-384 -4768 -16) (-384 -4768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 146 159" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1395478" + side + { + "id" "260894" + "plane" "(-16 -4688 0) (176 -4688 0) (176 -4768 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-16 -4768 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 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" + } + 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 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" + } + 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" "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" "260895" + "plane" "(-16 -4768 -16) (176 -4768 -16) (176 -4688 -16)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260896" + "plane" "(-16 -4688 0) (-16 -4768 0) (-16 -4768 -16)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260897" + "plane" "(176 -4688 -16) (176 -4768 -16) (176 -4768 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260898" + "plane" "(176 -4688 0) (-16 -4688 0) (-16 -4688 -16)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260899" + "plane" "(176 -4768 -16) (-16 -4768 -16) (-16 -4768 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "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 163" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1395480" + side + { + "id" "260900" + "plane" "(-128 -4688 0) (-16 -4688 0) (-16 -4768 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260901" + "plane" "(-128 -4768 -16) (-16 -4768 -16) (-16 -4688 -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" "260902" + "plane" "(-128 -4688 0) (-128 -4768 0) (-128 -4768 -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" "260903" + "plane" "(-16 -4688 -16) (-16 -4768 -16) (-16 -4768 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" "260904" + "plane" "(-16 -4688 0) (-128 -4688 0) (-128 -4688 -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" "260905" + "plane" "(-16 -4768 -16) (-128 -4768 -16) (-128 -4768 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 142 179" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1395489" + side + { + "id" "260912" + "plane" "(-448 -4768 0) (-448 -4752 0) (-416 -4752 0)" + "material" "CS_APOLLO/OUTSIDE/LARGE_OUTSIDE_TILES" + "uaxis" "[1 0 0 -30] 0.025" + "vaxis" "[0 -1 0 3] 0.025" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-448 -4768 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 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" + } + 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 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" + } + 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" "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" "260913" + "plane" "(-448 -4752 -16) (-448 -4768 -16) (-416 -4768 -16)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260914" + "plane" "(-448 -4768 -16) (-448 -4752 -16) (-448 -4752 0)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260915" + "plane" "(-416 -4752 -16) (-416 -4768 -16) (-416 -4768 0)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260916" + "plane" "(-448 -4752 -16) (-416 -4752 -16) (-416 -4752 0)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260917" + "plane" "(-416 -4768 -16) (-448 -4768 -16) (-448 -4768 0)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 248 213" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1395515" + side + { + "id" "260929" + "plane" "(-528 -4690 0) (-528 -4688 0) (-448 -4688 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260928" + "plane" "(-528 -4688 -16) (-528 -4690 -16) (-448 -4736 -16)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260927" + "plane" "(-528 -4690 -16) (-528 -4688 -16) (-528 -4688 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260926" + "plane" "(-448 -4688 -16) (-448 -4736 -16) (-448 -4736 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260925" + "plane" "(-528 -4688 -16) (-448 -4688 -16) (-448 -4688 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260924" + "plane" "(-448 -4736 -16) (-528 -4690 -16) (-528 -4690 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 116 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386786" + side + { + "id" "259071" + "plane" "(1312 -3392 16) (1312 -3424 16) (1344 -3424 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 62.5121] 0.255952" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259070" + "plane" "(1312 -3424 147) (1312 -3424 16) (1312 -3392 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 -1 0 -906.996] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259069" + "plane" "(1344 -3392 16) (1344 -3424 16) (1344 -3424 147)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-0.898877 0.438202 0 -6.53467] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259068" + "plane" "(1344 -3424 147) (1344 -3424 16) (1312 -3424 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" "259067" + "plane" "(1312 -3424 147) (1312 -3392 147) (1344 -3392 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259066" + "plane" "(1312 -3392 147) (1312 -3392 16) (1344 -3392 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -42.66] 0.15" + "vaxis" "[1 0 0 20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386801" + side + { + "id" "259101" + "plane" "(1312 -3144 -40) (1312 -3424 -40) (1344 -3424 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 62.5121] 0.255952" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259100" + "plane" "(1312 -3424 16) (1312 -3424 -40) (1312 -3144 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259099" + "plane" "(1344 -3144 16) (1344 -3144 -40) (1344 -3424 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -400] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259098" + "plane" "(1344 -3424 16) (1344 -3424 -40) (1312 -3424 -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" "259097" + "plane" "(1312 -3144 16) (1312 -3144 -40) (1344 -3144 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259096" + "plane" "(1312 -3424 16) (1312 -3144 16) (1344 -3144 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.15" + "vaxis" "[1 0 0 20] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1387321" + side + { + "id" "259237" + "plane" "(1312 -2880 17) (1320 -2880 17) (1330 -2816 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0.00195313] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259236" + "plane" "(1320 -2880 174) (1312 -2880 174) (1322 -2814 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.149805 0.988713 0 -43] 0.15" + "vaxis" "[-0.988714 0.149805 0 20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259235" + "plane" "(1320 -2880 17) (1312 -2880 17) (1312 -2880 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259234" + "plane" "(1322 -2814 17) (1330 -2816 17) (1330 -2816 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259233" + "plane" "(1312 -2880 17) (1322 -2814 17) (1322 -2814 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.149806 0.988715 0 25.1565] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259232" + "plane" "(1330 -2816 17) (1320 -2880 17) (1320 -2880 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.145211 0.989401 0 36.5505] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 112 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1387324" + side + { + "id" "259238" + "plane" "(1330 -2816 174) (1322 -2814 174) (1348 -2752 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259239" + "plane" "(1356 -2754 17) (1348 -2752 17) (1322 -2814 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259240" + "plane" "(1322 -2814 17) (1348 -2752 17) (1348 -2752 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259241" + "plane" "(1330 -2816 174) (1356 -2754 174) (1356 -2754 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259242" + "plane" "(1348 -2752 17) (1356 -2754 17) (1356 -2754 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259243" + "plane" "(1322 -2814 174) (1330 -2816 174) (1330 -2816 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 193 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1387329" + side + { + "id" "259244" + "plane" "(1400 -2698 174) (1356 -2754 174) (1348 -2752 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259245" + "plane" "(1356 -2754 17) (1400 -2698 17) (1392 -2694 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259246" + "plane" "(1348 -2752 174) (1348 -2752 17) (1392 -2694 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259247" + "plane" "(1356 -2754 17) (1356 -2754 174) (1400 -2698 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259248" + "plane" "(1392 -2694 174) (1392 -2694 17) (1400 -2698 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259249" + "plane" "(1348 -2752 17) (1348 -2752 174) (1356 -2754 174)" + "material" "TOOLS/TOOLSCLIP" + "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 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1387336" + side + { + "id" "259256" + "plane" "(1312 -3392 144) (1312 -3164 144) (1344 -3164 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259257" + "plane" "(1312 -3164 -16) (1312 -3392 -16) (1344 -3392 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259258" + "plane" "(1312 -3392 -16) (1312 -3164 -16) (1312 -3164 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259259" + "plane" "(1344 -3164 -16) (1344 -3392 -16) (1344 -3392 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259260" + "plane" "(1312 -3164 -16) (1344 -3164 -16) (1344 -3164 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259261" + "plane" "(1344 -3392 -16) (1312 -3392 -16) (1312 -3392 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 157 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1387338" + side + { + "id" "259262" + "plane" "(1776 -3424 147) (1776 -3456 147) (1548 -3456 147)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259263" + "plane" "(1776 -3456 16) (1776 -3424 16) (1548 -3424 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259264" + "plane" "(1548 -3424 147) (1548 -3456 147) (1548 -3456 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259265" + "plane" "(1776 -3456 147) (1776 -3424 147) (1776 -3424 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259266" + "plane" "(1776 -3424 147) (1548 -3424 147) (1548 -3424 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259267" + "plane" "(1548 -3456 147) (1776 -3456 147) (1776 -3456 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 233 130" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1387665" + side + { + "id" "259303" + "plane" "(1520 -3216 16) (2096 -3216 16) (2096 -3424 16)" + "material" "CS_APOLLO/FLOOR/TILES_001" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259302" + "plane" "(1344 -3424 0) (2096 -3424 0) (2096 -3216 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" "259301" + "plane" "(1520 -3216 0) (1520 -3216 16) (1344 -3424 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" "259300" + "plane" "(2096 -3424 0) (2096 -3424 16) (2096 -3216 16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259299" + "plane" "(2096 -3216 0) (2096 -3216 16) (1520 -3216 16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259298" + "plane" "(1344 -3424 0) (1344 -3424 16) (2096 -3424 16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "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 236" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1387761" + side + { + "id" "259339" + "plane" "(1344 -3424 16) (1344 -2896 16) (1520 -2896 16)" + "material" "CS_APOLLO/FLOOR/TILES_001" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259338" + "plane" "(1344 -2896 -16) (1344 -3424 -16) (1520 -3216 -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" "259337" + "plane" "(1344 -2896 -16) (1344 -2896 16) (1344 -3424 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" "259336" + "plane" "(1344 -3424 -16) (1344 -3424 16) (1520 -3216 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" "259335" + "plane" "(1520 -2896 -16) (1520 -2896 16) (1344 -2896 16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259334" + "plane" "(1520 -3216 -16) (1520 -3216 16) (1520 -2896 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" "0 204 169" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388463" + side + { + "id" "259491" + "plane" "(1458 -2648 174) (1400 -2698 174) (1392 -2694 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259492" + "plane" "(1400 -2698 17) (1458 -2648 17) (1452 -2642 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259493" + "plane" "(1392 -2694 174) (1392 -2694 17) (1452 -2642 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259494" + "plane" "(1400 -2698 17) (1400 -2698 174) (1458 -2648 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259495" + "plane" "(1452 -2642 174) (1452 -2642 17) (1458 -2648 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259496" + "plane" "(1392 -2694 17) (1392 -2694 174) (1400 -2698 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 227" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388465" + side + { + "id" "259497" + "plane" "(1530 -2608 174) (1458 -2648 174) (1452 -2642 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259498" + "plane" "(1458 -2648 17) (1530 -2608 17) (1526 -2600 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259499" + "plane" "(1452 -2642 174) (1452 -2642 17) (1526 -2600 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259500" + "plane" "(1458 -2648 17) (1458 -2648 174) (1530 -2608 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259501" + "plane" "(1526 -2600 174) (1526 -2600 17) (1530 -2608 17)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259502" + "plane" "(1452 -2642 17) (1452 -2642 174) (1458 -2648 174)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 227" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388652" + side + { + "id" "259520" + "plane" "(560 -5840 32) (560 -5840 156) (560 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259519" + "plane" "(576 -5872 32) (576 -5872 156) (576 -5840 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259518" + "plane" "(560 -5872 32) (560 -5872 156) (576 -5872 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259517" + "plane" "(576 -5840 32) (576 -5840 156) (560 -5840 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 0 -1 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259516" + "plane" "(560 -5840 32) (560 -5872 32) (576 -5872 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" "259515" + "plane" "(560 -5872 156) (560 -5840 156) (576 -5840 156)" + "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 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388654" + side + { + "id" "259532" + "plane" "(560 -5776 128) (560 -5776 156) (560 -5840 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259531" + "plane" "(576 -5840 128) (576 -5840 156) (576 -5776 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259530" + "plane" "(560 -5840 128) (560 -5840 156) (576 -5840 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259529" + "plane" "(576 -5776 128) (576 -5776 156) (560 -5776 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259528" + "plane" "(560 -5776 128) (560 -5840 128) (576 -5840 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 -1 0 -174.797] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259527" + "plane" "(560 -5840 156) (560 -5776 156) (576 -5776 156)" + "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 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388656" + side + { + "id" "259544" + "plane" "(560 -5616 32) (560 -5616 156) (560 -5776 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259543" + "plane" "(576 -5776 32) (576 -5776 156) (576 -5616 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259542" + "plane" "(576 -5616 32) (576 -5616 156) (560 -5616 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259541" + "plane" "(560 -5776 32) (560 -5776 156) (576 -5776 156)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 0 -1 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259540" + "plane" "(560 -5616 32) (560 -5776 32) (576 -5776 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" "259539" + "plane" "(560 -5776 156) (560 -5616 156) (576 -5616 156)" + "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 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388657" + side + { + "id" "259550" + "plane" "(560 -5872 160) (560 -5600 160) (576 -5600 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" "259549" + "plane" "(560 -5600 156) (560 -5600 160) (560 -5872 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" "259548" + "plane" "(576 -5872 156) (576 -5872 160) (576 -5600 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259547" + "plane" "(576 -5600 156) (576 -5600 160) (560 -5600 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 257.004] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259546" + "plane" "(560 -5872 156) (560 -5872 160) (576 -5872 160)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 1 31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259545" + "plane" "(560 -5600 156) (560 -5872 156) (576 -5872 156)" + "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 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388691" + side + { + "id" "259598" + "plane" "(576 -5600 156) (576 -5600 32) (576 -5616 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259597" + "plane" "(572 -5600 32) (576 -5600 32) (576 -5600 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 257.004] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259596" + "plane" "(576 -5616 156) (576 -5616 32) (572 -5616 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259595" + "plane" "(572 -5616 32) (576 -5616 32) (576 -5600 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" "259594" + "plane" "(572 -5600 156) (576 -5600 156) (576 -5616 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "259593" + "plane" "(572 -5616 156) (572 -5616 32) (572 -5600 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" + } + editor + { + "color" "0 195 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1379842" + side + { + "id" "257481" + "plane" "(2056 -3424 240) (2112 -3424 240) (2112 -3456 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" "257480" + "plane" "(2056 -3456 208) (2112 -3456 208) (2112 -3424 208)" + "material" "DEV/REFLECTIVITY_40B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257479" + "plane" "(2112 -3424 208) (2112 -3456 208) (2112 -3456 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" "257478" + "plane" "(2056 -3424 208) (2112 -3424 208) (2112 -3424 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" "257477" + "plane" "(2112 -3456 208) (2056 -3456 208) (2056 -3456 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257476" + "plane" "(2056 -3456 208) (2056 -3424 208) (2056 -3424 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" + } + editor + { + "color" "0 245 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1379845" + side + { + "id" "257499" + "plane" "(2056 -3424 368) (1808 -3424 368) (1808 -3200 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" "257498" + "plane" "(2056 -3200 224) (1808 -3200 224) (1808 -3424 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" "257497" + "plane" "(1808 -3200 224) (2056 -3200 224) (2056 -3200 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" "257496" + "plane" "(2056 -3424 224) (1808 -3424 224) (1808 -3424 368)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257495" + "plane" "(1808 -3424 224) (1808 -3200 224) (1808 -3200 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" "257494" + "plane" "(2056 -3200 224) (2056 -3424 224) (2056 -3424 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 253 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1380074" + side + { + "id" "257571" + "plane" "(1648 -3424 147) (1648 -3424 224) (1312 -3424 224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -170.488] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257570" + "plane" "(1648 -3424 224) (1648 -3424 147) (1648 -3440 147)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0.428319 -0.903627 0 1] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257569" + "plane" "(1312 -3440 224) (1312 -3424 224) (1648 -3424 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" "257568" + "plane" "(1312 -3440 147) (1312 -3424 147) (1312 -3424 224)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257567" + "plane" "(1648 -3424 147) (1312 -3424 147) (1312 -3440 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -11.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257566" + "plane" "(1648 -3440 224) (1648 -3440 147) (1312 -3440 147)" + "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 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1380351" + side + { + "id" "258004" + "plane" "(1776 -3456 208) (1776 -3424 208) (2056 -3424 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" "258005" + "plane" "(1776 -3424 144) (1776 -3456 144) (2056 -3456 144)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258006" + "plane" "(1776 -3456 144) (1776 -3424 144) (1776 -3424 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" "258007" + "plane" "(2056 -3424 144) (2056 -3456 144) (2056 -3456 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" "258008" + "plane" "(1776 -3424 144) (2056 -3424 144) (2056 -3424 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -170.488] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258009" + "plane" "(2056 -3456 144) (1776 -3456 144) (1776 -3456 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1380640" + side + { + "id" "258403" + "plane" "(1312 -3144 208) (1312 -2896 208) (1344 -2896 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" "258404" + "plane" "(1312 -2896 144) (1312 -3144 144) (1344 -3144 144)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258405" + "plane" "(1312 -3144 144) (1312 -2896 144) (1312 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258406" + "plane" "(1344 -2896 144) (1344 -3144 144) (1344 -3144 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-0.898877 0.438202 0 -6.53467] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258407" + "plane" "(1312 -2896 144) (1344 -2896 144) (1344 -2896 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" "258408" + "plane" "(1344 -3144 144) (1312 -3144 144) (1312 -3144 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" + } + editor + { + "color" "0 109 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1355504" + side + { + "id" "256073" + "plane" "(-16 -4384 -88) (-16 -4384 -224) (-16 -4400 -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" "256072" + "plane" "(-248 -4384 -224) (-16 -4384 -224) (-16 -4384 -88)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0.706223 0 0.707988 16] 0.125" + "vaxis" "[0.706223 0 -0.707988 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256071" + "plane" "(-16 -4400 -88) (-16 -4400 -224) (-248 -4400 -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" "256070" + "plane" "(-248 -4400 -224) (-16 -4400 -224) (-16 -4384 -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" "256069" + "plane" "(-248 -4384 -88) (-16 -4384 -88) (-16 -4400 -88)" + "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" "256068" + "plane" "(-248 -4400 -88) (-248 -4400 -224) (-248 -4384 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 -397.301] 0.063" + "vaxis" "[0 1 0 868.132] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 227 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1355510" + side + { + "id" "256085" + "plane" "(-832 -4400 -16) (-832 -4384 -16) (-424 -4384 -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" "256084" + "plane" "(-832 -4384 -48) (-832 -4384 -16) (-832 -4400 -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" "256083" + "plane" "(-424 -4400 -48) (-424 -4400 -16) (-424 -4384 -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" "256082" + "plane" "(-424 -4384 -48) (-424 -4384 -16) (-832 -4384 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0.706223 0 0.707988 16] 0.125" + "vaxis" "[0.706223 0 -0.707988 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256081" + "plane" "(-832 -4400 -48) (-832 -4400 -16) (-424 -4400 -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" "256080" + "plane" "(-832 -4384 -48) (-832 -4400 -48) (-424 -4400 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 159 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1355582" + side + { + "id" "256175" + "plane" "(-1560 -4584 -80) (-1560 -4584 -196) (-1560 -4352 -196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256174" + "plane" "(-1558 -4352 -80) (-1558 -4352 -196) (-1558 -4584 -196)" + "material" "CS_APOLLO/DECALS/INSPIRATION_QUOTE1" + "uaxis" "[0 1 0 737.833] 0.227" + "vaxis" "[0 0 -1 -351.93] 0.227" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256173" + "plane" "(-1560 -4352 -196) (-1560 -4584 -196) (-1558 -4584 -196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256172" + "plane" "(-1558 -4584 -80) (-1558 -4584 -196) (-1560 -4584 -196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256171" + "plane" "(-1560 -4352 -80) (-1560 -4352 -196) (-1558 -4352 -196)" + "material" "CS_APOLLO/DECALS/INSPIRATION_QUOTE1" + "uaxis" "[-1 0 0 -721.404] 0.227" + "vaxis" "[0 0 -1 -351.93] 0.227" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256170" + "plane" "(-1560 -4584 -80) (-1560 -4352 -80) (-1558 -4352 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 110 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1308663" + side + { + "id" "254743" + "plane" "(-288 -4016 -224) (-352 -4016 -224) (-352 -3816 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254742" + "plane" "(-352 -3816 -256) (-352 -4016 -256) (-288 -4016 -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" "254741" + "plane" "(-288 -4016 -256) (-352 -4016 -256) (-352 -4016 -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" "254740" + "plane" "(-288 -3816 -256) (-288 -4016 -256) (-288 -4016 -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" "254739" + "plane" "(-352 -4016 -256) (-352 -3816 -256) (-352 -3816 -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" "254738" + "plane" "(-352 -3816 -256) (-288 -3816 -256) (-288 -3816 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "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 133" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1302042" + side + { + "id" "254195" + "plane" "(-228 -2359 163) (-228 -2327 163) (-20 -2327 163)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254196" + "plane" "(-228 -2327 -24) (-228 -2359 -24) (-20 -2359 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254197" + "plane" "(-228 -2359 -24) (-228 -2327 -24) (-228 -2327 163)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254198" + "plane" "(-20 -2327 -24) (-20 -2359 -24) (-20 -2359 163)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254199" + "plane" "(-228 -2327 -24) (-20 -2327 -24) (-20 -2327 163)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254200" + "plane" "(-20 -2359 -24) (-228 -2359 -24) (-228 -2359 163)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1289377" + side + { + "id" "253798" + "plane" "(-512 -4688 0) (-528 -4688 0) (-592 -4664 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253797" + "plane" "(-512 -4400 -16) (-640 -4400 -16) (-640 -4600 -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" "253796" + "plane" "(-640 -4400 -16) (-512 -4400 -16) (-512 -4400 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" "253795" + "plane" "(-512 -4688 -16) (-528 -4688 -16) (-528 -4688 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" "253794" + "plane" "(-640 -4600 -16) (-640 -4400 -16) (-640 -4400 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" "253793" + "plane" "(-528 -4688 -16) (-592 -4664 -16) (-592 -4664 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.963032 -0.269387 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253792" + "plane" "(-592 -4664 -16) (-640 -4600 -16) (-640 -4600 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.804441 -0.594032 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253791" + "plane" "(-512 -4400 -16) (-512 -4688 -16) (-512 -4688 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "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 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1289380" + side + { + "id" "253804" + "plane" "(-16 -4688 0) (-248 -4688 0) (-248 -4400 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253803" + "plane" "(-16 -4400 -16) (-248 -4400 -16) (-248 -4688 -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" "253802" + "plane" "(-248 -4400 -16) (-16 -4400 -16) (-16 -4400 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" "253801" + "plane" "(-16 -4688 -16) (-248 -4688 -16) (-248 -4688 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" "253800" + "plane" "(-16 -4400 -16) (-16 -4688 -16) (-16 -4688 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" "253799" + "plane" "(-248 -4688 -16) (-248 -4400 -16) (-248 -4400 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "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 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1289385" + side + { + "id" "253822" + "plane" "(-512 -4688 0) (-512 -4400 0) (-248 -4400 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253821" + "plane" "(-248 -4400 -16) (-512 -4400 -16) (-512 -4688 -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" "253820" + "plane" "(-512 -4400 -16) (-248 -4400 -16) (-248 -4400 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" "253819" + "plane" "(-512 -4688 -16) (-512 -4400 -16) (-512 -4400 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253818" + "plane" "(-248 -4400 -16) (-248 -4688 -16) (-248 -4688 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253817" + "plane" "(-248 -4688 -16) (-512 -4688 -16) (-512 -4688 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 246 147" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283602" + side + { + "id" "253682" + "plane" "(-2328 -2896 -32) (-3384 -2896 -32) (-3384 -2912 -32)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253681" + "plane" "(-3384 -2912 -16) (-3384 -2912 -32) (-3384 -2896 -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" "253680" + "plane" "(-3384 -2896 -16) (-3384 -2896 -32) (-2328 -2896 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253679" + "plane" "(-2328 -2912 -32) (-3384 -2912 -32) (-3384 -2912 -16)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[1 0 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253678" + "plane" "(-2328 -2912 -16) (-3384 -2912 -16) (-3384 -2896 -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" "253677" + "plane" "(-2328 -2896 -16) (-2328 -2896 -32) (-2328 -2912 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -575.996] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 253 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283603" + side + { + "id" "253688" + "plane" "(-2080 -2912 -32) (-1024 -2912 -32) (-1024 -2896 -32)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253687" + "plane" "(-1024 -2896 -16) (-1024 -2896 -32) (-1024 -2912 -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" "253686" + "plane" "(-2080 -2896 -32) (-1024 -2896 -32) (-1024 -2896 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253685" + "plane" "(-1024 -2912 -16) (-1024 -2912 -32) (-2080 -2912 -32)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[1 0 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253684" + "plane" "(-2080 -2896 -16) (-1024 -2896 -16) (-1024 -2912 -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" "253683" + "plane" "(-2080 -2912 -16) (-2080 -2912 -32) (-2080 -2896 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -255.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 253 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283604" + side + { + "id" "253694" + "plane" "(-2328 -2912 48) (-3384 -2912 48) (-3384 -2896 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" "253693" + "plane" "(-3384 -2896 -16) (-3384 -2896 48) (-3384 -2912 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" "253692" + "plane" "(-2328 -2896 48) (-3384 -2896 48) (-3384 -2896 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253691" + "plane" "(-2328 -2912 -16) (-3384 -2912 -16) (-3384 -2912 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" "253690" + "plane" "(-2328 -2896 -16) (-3384 -2896 -16) (-3384 -2912 -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" "253689" + "plane" "(-2328 -2912 -16) (-2328 -2912 48) (-2328 -2896 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -575.996] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 253 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283605" + side + { + "id" "253700" + "plane" "(-2080 -2896 48) (-1024 -2896 48) (-1024 -2912 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" "253699" + "plane" "(-1024 -2912 -16) (-1024 -2912 48) (-1024 -2896 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" "253698" + "plane" "(-2080 -2896 -16) (-1024 -2896 -16) (-1024 -2896 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253697" + "plane" "(-2080 -2912 48) (-1024 -2912 48) (-1024 -2912 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253696" + "plane" "(-2080 -2912 -16) (-1024 -2912 -16) (-1024 -2896 -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" "253695" + "plane" "(-2080 -2896 -16) (-2080 -2896 48) (-2080 -2912 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -255.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 253 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283612" + side + { + "id" "253706" + "plane" "(-2328 -2912 128) (-3384 -2912 128) (-3384 -2896 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" "253705" + "plane" "(-2328 -2896 48) (-3384 -2896 48) (-3384 -2912 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" "253704" + "plane" "(-3384 -2912 48) (-3384 -2896 48) (-3384 -2896 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" "253703" + "plane" "(-3384 -2896 48) (-2328 -2896 48) (-2328 -2896 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253702" + "plane" "(-2328 -2912 48) (-3384 -2912 48) (-3384 -2912 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" "253701" + "plane" "(-2328 -2896 48) (-2328 -2912 48) (-2328 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -575.996] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 109 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283613" + side + { + "id" "253712" + "plane" "(-2080 -2896 128) (-1024 -2896 128) (-1024 -2912 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" "253711" + "plane" "(-2080 -2912 48) (-1024 -2912 48) (-1024 -2896 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" "253710" + "plane" "(-1024 -2896 48) (-1024 -2912 48) (-1024 -2912 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" "253709" + "plane" "(-2080 -2896 48) (-1024 -2896 48) (-1024 -2896 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253708" + "plane" "(-1024 -2912 48) (-2080 -2912 48) (-2080 -2912 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -59.9985] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253707" + "plane" "(-2080 -2912 48) (-2080 -2896 48) (-2080 -2896 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -255.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 109 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283622" + side + { + "id" "253730" + "plane" "(-2080 -2896 104) (-2328 -2896 104) (-2328 -2912 104)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 -960] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253729" + "plane" "(-2328 -2896 104) (-2080 -2896 104) (-2080 -2896 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253728" + "plane" "(-2080 -2912 104) (-2328 -2912 104) (-2328 -2912 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253727" + "plane" "(-2080 -2912 192) (-2328 -2912 192) (-2328 -2896 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" "253726" + "plane" "(-2328 -2912 192) (-2328 -2912 104) (-2328 -2896 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253725" + "plane" "(-2080 -2896 192) (-2080 -2896 104) (-2080 -2912 104)" + "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 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283625" + side + { + "id" "253737" + "plane" "(-2337 -2912 128) (-2072 -2912 128) (-2072 -2920 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" "253738" + "plane" "(-2337 -2920 -32) (-2072 -2920 -32) (-2072 -2912 -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" "253739" + "plane" "(-2337 -2912 128) (-2337 -2920 128) (-2337 -2920 -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" "253740" + "plane" "(-2072 -2912 -32) (-2072 -2920 -32) (-2072 -2920 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" "253741" + "plane" "(-2072 -2912 128) (-2337 -2912 128) (-2337 -2912 -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" "253742" + "plane" "(-2072 -2920 -32) (-2337 -2920 -32) (-2337 -2920 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 106 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283626" + side + { + "id" "253743" + "plane" "(-2328 -2896 -24) (-2080 -2896 -24) (-2080 -2912 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 832] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253744" + "plane" "(-2328 -2912 -32) (-2080 -2912 -32) (-2080 -2896 -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" "253745" + "plane" "(-2328 -2896 -24) (-2328 -2912 -24) (-2328 -2912 -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" "253746" + "plane" "(-2080 -2896 -32) (-2080 -2912 -32) (-2080 -2912 -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" "253747" + "plane" "(-2080 -2896 -24) (-2328 -2896 -24) (-2328 -2896 -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" "253748" + "plane" "(-2080 -2912 -32) (-2328 -2912 -32) (-2328 -2912 -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 200 245" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283642" + side + { + "id" "253766" + "plane" "(-2496 -2112 -24) (-2496 -2000 -24) (-537 -2000 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253765" + "plane" "(-2496 -2000 -32) (-2496 -2112 -32) (-537 -2112 -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" "253764" + "plane" "(-2496 -2112 -32) (-2496 -2000 -32) (-2496 -2000 -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" "253763" + "plane" "(-537 -2000 -32) (-537 -2112 -32) (-537 -2112 -24)" + "material" "CONCRETE/HR_C/HR_CONC_F" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253762" + "plane" "(-537 -2112 -32) (-2496 -2112 -32) (-2496 -2112 -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" "253761" + "plane" "(-2496 -2000 -32) (-537 -2000 -32) (-537 -2000 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283643" + side + { + "id" "253772" + "plane" "(-2496 -2000 -24) (-2496 -1984 -24) (-832 -1984 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 832] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253771" + "plane" "(-832 -1984 -32) (-2496 -1984 -32) (-2496 -2000 -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" "253770" + "plane" "(-2496 -2000 -32) (-2496 -1984 -32) (-2496 -1984 -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" "253769" + "plane" "(-2496 -1984 -32) (-832 -1984 -32) (-832 -1984 -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" "253768" + "plane" "(-832 -1984 -32) (-832 -2000 -32) (-832 -2000 -24)" + "material" "CONCRETE/HR_C/HR_CONC_F" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253767" + "plane" "(-832 -2000 -32) (-2496 -2000 -32) (-2496 -2000 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283647" + side + { + "id" "253778" + "plane" "(-3368 -2896 -24) (-3384 -2896 -24) (-3384 -2000 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253777" + "plane" "(-3368 -2000 -32) (-3384 -2000 -32) (-3384 -2896 -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" "253776" + "plane" "(-3384 -2896 -32) (-3384 -2000 -32) (-3384 -2000 -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" "253775" + "plane" "(-3368 -2896 -32) (-3384 -2896 -32) (-3384 -2896 -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" "253774" + "plane" "(-3384 -2000 -32) (-3368 -2000 -32) (-3368 -2000 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253773" + "plane" "(-3368 -2000 -32) (-3368 -2896 -32) (-3368 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1283648" + side + { + "id" "253784" + "plane" "(-2240 -2736 -24) (-2496 -2736 -24) (-2496 -2112 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253783" + "plane" "(-2240 -2112 -32) (-2496 -2112 -32) (-2496 -2736 -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" "253782" + "plane" "(-2240 -2736 -32) (-2496 -2736 -32) (-2496 -2736 -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" "253781" + "plane" "(-2496 -2112 -32) (-2240 -2112 -32) (-2240 -2112 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253780" + "plane" "(-2240 -2112 -32) (-2240 -2736 -32) (-2240 -2736 -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" "253779" + "plane" "(-2496 -2736 -32) (-2496 -2112 -32) (-2496 -2112 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1252199" + side + { + "id" "251700" + "plane" "(-1358 -2000 192) (-1358 -1992 192) (-833 -1992 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251701" + "plane" "(-1358 -1992 -24) (-1358 -2000 -24) (-833 -2000 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251702" + "plane" "(-1358 -2000 -24) (-1358 -1992 -24) (-1358 -1992 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251703" + "plane" "(-833 -1992 -24) (-833 -2000 -24) (-833 -2000 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251704" + "plane" "(-1358 -1992 -24) (-833 -1992 -24) (-833 -1992 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251705" + "plane" "(-833 -2000 -24) (-1358 -2000 -24) (-1358 -2000 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1252267" + side + { + "id" "251734" + "plane" "(-149 -2544 -24) (-224 -2544 -24) (-224 -2469 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251733" + "plane" "(-224 -2469 -32) (-224 -2544 -32) (-149 -2544 -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" "251732" + "plane" "(-224 -2544 -32) (-224 -2469 -32) (-224 -2469 -24)" + "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" "251731" + "plane" "(-149 -2544 -32) (-224 -2544 -32) (-224 -2544 -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" "251730" + "plane" "(-224 -2469 -32) (-149 -2544 -32) (-149 -2544 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1252852" + side + { + "id" "252467" + "plane" "(-3384 -2896 192) (-3400 -2896 192) (-3400 -2000 192)" + "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" "252466" + "plane" "(-3400 -2000 -32) (-3400 -2000 192) (-3400 -2896 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" "252465" + "plane" "(-3384 -2000 192) (-3400 -2000 192) (-3400 -2000 -32)" + "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" "252464" + "plane" "(-3384 -2896 -32) (-3400 -2896 -32) (-3400 -2896 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" "252463" + "plane" "(-3384 -2000 -32) (-3400 -2000 -32) (-3400 -2896 -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" "252462" + "plane" "(-3384 -2896 -32) (-3384 -2896 192) (-3384 -2000 192)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253672" + side + { + "id" "252947" + "plane" "(-3384 -3824 576) (-3384 -2912 576) (-3352 -2912 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252946" + "plane" "(-3384 -2912 -16) (-3384 -3824 -16) (-3352 -3824 -16)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252945" + "plane" "(-3384 -3824 -16) (-3384 -2912 -16) (-3384 -2912 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252944" + "plane" "(-3352 -2912 -16) (-3352 -3824 -16) (-3352 -3824 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252943" + "plane" "(-3384 -2912 -16) (-3352 -2912 -16) (-3352 -2912 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252942" + "plane" "(-3352 -3824 -16) (-3384 -3824 -16) (-3384 -3824 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 204" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253679" + side + { + "id" "252948" + "plane" "(-3384 -3872 576) (-3384 -3824 576) (-2600 -3824 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252949" + "plane" "(-3384 -3824 -16) (-3384 -3872 -16) (-2600 -3872 -16)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252950" + "plane" "(-3384 -3872 -16) (-3384 -3824 -16) (-3384 -3824 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252951" + "plane" "(-2600 -3824 -16) (-2600 -3872 -16) (-2600 -3872 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252952" + "plane" "(-3384 -3824 -16) (-2600 -3824 -16) (-2600 -3824 576)" + "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" "252953" + "plane" "(-2600 -3872 -16) (-3384 -3872 -16) (-3384 -3872 576)" + "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" "0 255 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253684" + side + { + "id" "252960" + "plane" "(-3352 -3824 896) (-3352 -2912 896) (-2208 -2912 896)" + "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" "252961" + "plane" "(-3352 -2912 576) (-3352 -3824 576) (-2208 -3824 576)" + "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" "252962" + "plane" "(-3352 -3824 576) (-3352 -2912 576) (-3352 -2912 896)" + "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" "252963" + "plane" "(-2208 -2912 576) (-2208 -3824 576) (-2208 -3824 896)" + "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" "252964" + "plane" "(-3352 -2912 576) (-2208 -2912 576) (-2208 -2912 896)" + "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" "252965" + "plane" "(-2208 -3824 576) (-3352 -3824 576) (-3352 -3824 896)" + "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" "0 125 226" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253686" + side + { + "id" "252966" + "plane" "(-1968 -2912 128) (-1952 -2912 128) (-1952 -3096 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" "252967" + "plane" "(-1968 -3096 -24) (-1952 -3096 -24) (-1952 -2912 -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" + } + side + { + "id" "252968" + "plane" "(-1968 -2912 128) (-1968 -3096 128) (-1968 -3096 -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" "252969" + "plane" "(-1952 -2912 -24) (-1952 -3096 -24) (-1952 -3096 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252970" + "plane" "(-1952 -2912 128) (-1968 -2912 128) (-1968 -2912 -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" "252971" + "plane" "(-1952 -3096 -24) (-1968 -3096 -24) (-1968 -3096 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -896] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 133 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253690" + side + { + "id" "252978" + "plane" "(-1968 -3344 128) (-1952 -3344 128) (-1952 -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" "252979" + "plane" "(-1968 -3584 -24) (-1952 -3584 -24) (-1952 -3344 -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" + } + side + { + "id" "252980" + "plane" "(-1968 -3344 128) (-1968 -3584 128) (-1968 -3584 -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" "252981" + "plane" "(-1952 -3344 -24) (-1952 -3584 -24) (-1952 -3584 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252982" + "plane" "(-1952 -3344 128) (-1968 -3344 128) (-1968 -3344 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -896] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252983" + "plane" "(-1952 -3584 -24) (-1968 -3584 -24) (-1968 -3584 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -315.996] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 221 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253692" + side + { + "id" "252984" + "plane" "(-1968 -3585 0) (-1968 -2912 0) (-1456 -2912 0)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252985" + "plane" "(-1968 -2912 -16) (-1968 -3585 -16) (-1456 -3585 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252986" + "plane" "(-1968 -3585 -16) (-1968 -2912 -16) (-1968 -2912 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252987" + "plane" "(-1456 -2912 -16) (-1456 -3585 -16) (-1456 -3585 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252988" + "plane" "(-1968 -2912 -16) (-1456 -2912 -16) (-1456 -2912 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" "252989" + "plane" "(-1456 -3585 -16) (-1968 -3585 -16) (-1968 -3585 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 153 130" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253697" + side + { + "id" "252990" + "plane" "(-1976 -3088 128) (-1968 -3088 128) (-1968 -3352 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" "252991" + "plane" "(-1976 -3352 -24) (-1968 -3352 -24) (-1968 -3088 -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" + } + side + { + "id" "252992" + "plane" "(-1976 -3088 128) (-1976 -3352 128) (-1976 -3352 -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" "252993" + "plane" "(-1968 -3088 -24) (-1968 -3352 -24) (-1968 -3352 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" "252994" + "plane" "(-1968 -3088 128) (-1976 -3088 128) (-1976 -3088 -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" "252995" + "plane" "(-1968 -3352 -24) (-1976 -3352 -24) (-1976 -3352 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 171 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253712" + side + { + "id" "253007" + "plane" "(-2512 -3560 -24) (-2512 -3584 -24) (-1968 -3584 -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" + } + side + { + "id" "253006" + "plane" "(-2512 -3584 -24) (-2512 -3560 -24) (-2512 -3560 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" "253005" + "plane" "(-1968 -3560 -24) (-1968 -3584 -24) (-1968 -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" "253004" + "plane" "(-2512 -3560 -24) (-1968 -3560 -24) (-1968 -3560 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" "253003" + "plane" "(-1968 -3584 -24) (-2512 -3584 -24) (-2512 -3584 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -315.996] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253002" + "plane" "(-2512 -3584 128) (-2512 -3560 128) (-1968 -3560 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 255 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253717" + side + { + "id" "253014" + "plane" "(-2512 -3824 32) (-2512 -3584 32) (-2176 -3584 32)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253015" + "plane" "(-2512 -3584 -16) (-2512 -3824 -16) (-2176 -3824 -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" "253016" + "plane" "(-2512 -3824 -16) (-2512 -3584 -16) (-2512 -3584 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" "253017" + "plane" "(-2176 -3584 -16) (-2176 -3824 -16) (-2176 -3824 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" "253018" + "plane" "(-2512 -3584 -16) (-2176 -3584 -16) (-2176 -3584 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" "253019" + "plane" "(-2176 -3824 -16) (-2512 -3824 -16) (-2512 -3824 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 223 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253719" + side + { + "id" "253020" + "plane" "(-2512 -2912 208) (-1952 -2912 208) (-1952 -3584 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" "253021" + "plane" "(-2512 -3584 192) (-1952 -3584 192) (-1952 -2912 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" "253022" + "plane" "(-2512 -2912 208) (-2512 -3584 208) (-2512 -3584 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" "253023" + "plane" "(-1952 -2912 192) (-1952 -3584 192) (-1952 -3584 208)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 145] 0.125" + "vaxis" "[0 1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253024" + "plane" "(-1952 -2912 208) (-2512 -2912 208) (-2512 -2912 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" "253025" + "plane" "(-1952 -3584 192) (-2512 -3584 192) (-2512 -3584 208)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 145] 0.125" + "vaxis" "[1 0 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 179 172" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253813" + side + { + "id" "253041" + "plane" "(-1829 -3352 -16) (-1829 -3584 -16) (-1456 -3584 -16)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253040" + "plane" "(-1829 -3584 32) (-1829 -3584 -16) (-1829 -3352 -16)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253039" + "plane" "(-1456 -3352 -16) (-1456 -3584 -16) (-1456 -3584 32)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253038" + "plane" "(-1456 -3584 32) (-1456 -3584 -16) (-1829 -3584 -16)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253037" + "plane" "(-1829 -3584 32) (-1829 -3352 -16) (-1456 -3352 -16)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -0.97926 0.202606 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[-1829 -3584 32]" + "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 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" + } + 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 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" + } + 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.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926" + "row1" "0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926" + "row2" "0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926" + "row3" "0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926" + "row4" "0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926" + "row5" "0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926" + "row6" "0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926" + "row7" "0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926" + "row8" "0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926 0 0.202606 0.97926" + } + 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" + } + } + } + editor + { + "color" "0 213 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1253847" + side + { + "id" "253054" + "plane" "(8160 7433 5152) (8160 8207 5152) (9737 8207 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 -452] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[8160 7433 5152]" + "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 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" + } + 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 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" + } + 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" "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" "253055" + "plane" "(8160 8207 5151) (8160 7433 5151) (9737 7433 5151)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -160] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253056" + "plane" "(8160 7433 5151) (8160 8207 5151) (8160 8207 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 160] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253057" + "plane" "(9737 8207 5151) (9737 7433 5151) (9737 7433 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 160] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253058" + "plane" "(8160 8207 5151) (9737 8207 5151) (9737 8207 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "253059" + "plane" "(9737 7433 5151) (8160 7433 5151) (8160 7433 5152)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242247" + side + { + "id" "250975" + "plane" "(-1280 -2872 -200) (-1280 -2908 -200) (-1056 -2908 -200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250974" + "plane" "(-1280 -2908 -200) (-1280 -2872 -200) (-1280 -2872 -176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250973" + "plane" "(-1056 -2872 -176) (-1056 -2872 -200) (-1056 -2908 -200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250972" + "plane" "(-1280 -2872 -176) (-1280 -2872 -200) (-1056 -2872 -200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250971" + "plane" "(-1056 -2908 -200) (-1280 -2908 -200) (-1280 -2872 -176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242274" + side + { + "id" "250986" + "plane" "(-1280 -2604 -176) (-1280 -2832 -176) (-1056 -2832 -176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250985" + "plane" "(-1280 -2832 -176) (-1280 -2604 -176) (-1280 -2604 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250984" + "plane" "(-1056 -2604 -24) (-1056 -2604 -176) (-1056 -2832 -176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250983" + "plane" "(-1280 -2604 -24) (-1280 -2604 -176) (-1056 -2604 -176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250982" + "plane" "(-1056 -2832 -176) (-1280 -2832 -176) (-1280 -2604 -24)" + "material" "TOOLS/TOOLSCLIP" + "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 201" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242292" + side + { + "id" "250998" + "plane" "(-776 -3228 -200) (-776 -3215 -200) (-616 -3215 -200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250997" + "plane" "(-776 -3215 -224) (-776 -3264 -224) (-616 -3264 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250996" + "plane" "(-776 -3264 -224) (-776 -3215 -224) (-776 -3215 -200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250995" + "plane" "(-616 -3215 -224) (-616 -3264 -224) (-616 -3228 -200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250994" + "plane" "(-776 -3215 -224) (-616 -3215 -224) (-616 -3215 -200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250993" + "plane" "(-616 -3264 -224) (-776 -3264 -224) (-776 -3228 -200)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242421" + side + { + "id" "251061" + "plane" "(-1280 -2896 -200) (-1280 -2860 -200) (-1056 -2860 -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" "251062" + "plane" "(-1280 -2860 -224) (-1280 -2896 -224) (-1056 -2896 -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" "251063" + "plane" "(-1280 -2896 -224) (-1280 -2860 -224) (-1280 -2860 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251064" + "plane" "(-1056 -2860 -224) (-1056 -2896 -224) (-1056 -2896 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251065" + "plane" "(-1280 -2860 -224) (-1056 -2860 -224) (-1056 -2860 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251066" + "plane" "(-1056 -2896 -224) (-1280 -2896 -224) (-1280 -2896 -200)" + "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 129" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242559" + side + { + "id" "251102" + "plane" "(-432 -3872 -224) (-428 -3876 -224) (-428 -3980 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -409.603] 0.078125" + "vaxis" "[0 1 0 585.141] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "251101" + "plane" "(-432 -3984 -240) (-428 -3980 -240) (-428 -3876 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251100" + "plane" "(-432 -3872 -240) (-432 -3872 -224) (-432 -3984 -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" "251099" + "plane" "(-428 -3980 -240) (-428 -3980 -224) (-428 -3876 -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" "251098" + "plane" "(-428 -3876 -240) (-428 -3876 -224) (-432 -3872 -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" "251097" + "plane" "(-432 -3984 -240) (-432 -3984 -224) (-428 -3980 -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" "157 186 0" + "groupid" "1242558" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242560" + side + { + "id" "251108" + "plane" "(-356 -3980 -224) (-428 -3980 -224) (-428 -3876 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -409.603] 0.078125" + "vaxis" "[0 1 0 585.141] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "251107" + "plane" "(-428 -3980 -240) (-356 -3980 -240) (-356 -3876 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251106" + "plane" "(-356 -3980 -240) (-428 -3980 -240) (-428 -3980 -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" "251105" + "plane" "(-428 -3876 -240) (-356 -3876 -240) (-356 -3876 -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" "251104" + "plane" "(-428 -3980 -240) (-428 -3876 -240) (-428 -3876 -224)" + "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" "251103" + "plane" "(-356 -3876 -240) (-356 -3980 -240) (-356 -3980 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "1242558" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242561" + side + { + "id" "251114" + "plane" "(-356 -3876 -224) (-428 -3876 -224) (-432 -3872 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 477.893] 0.078" + "vaxis" "[1 0 0 -237.996] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "251113" + "plane" "(-428 -3876 -240) (-356 -3876 -240) (-352 -3872 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251112" + "plane" "(-432 -3872 -240) (-352 -3872 -240) (-352 -3872 -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" "251111" + "plane" "(-356 -3876 -240) (-428 -3876 -240) (-428 -3876 -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" "251110" + "plane" "(-428 -3876 -240) (-432 -3872 -240) (-432 -3872 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251109" + "plane" "(-352 -3872 -240) (-356 -3876 -240) (-356 -3876 -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" "157 186 0" + "groupid" "1242558" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242562" + side + { + "id" "251120" + "plane" "(-352 -3984 -224) (-432 -3984 -224) (-428 -3980 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 -1 0 -897.893] 0.078" + "vaxis" "[-1 0 0 -494.004] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "251119" + "plane" "(-432 -3984 -240) (-352 -3984 -240) (-356 -3980 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251118" + "plane" "(-352 -3984 -240) (-432 -3984 -240) (-432 -3984 -224)" + "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" "251117" + "plane" "(-428 -3980 -240) (-356 -3980 -240) (-356 -3980 -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" "251116" + "plane" "(-432 -3984 -240) (-428 -3980 -240) (-428 -3980 -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" "251115" + "plane" "(-356 -3980 -240) (-352 -3984 -240) (-352 -3984 -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" "157 186 0" + "groupid" "1242558" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242563" + side + { + "id" "251126" + "plane" "(-352 -3872 -224) (-352 -3984 -224) (-356 -3980 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -409.603] 0.078125" + "vaxis" "[0 1 0 585.141] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "251125" + "plane" "(-356 -3876 -240) (-356 -3980 -240) (-352 -3984 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251124" + "plane" "(-352 -3872 -240) (-352 -3984 -240) (-352 -3984 -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" "251123" + "plane" "(-356 -3980 -240) (-356 -3876 -240) (-356 -3876 -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" "251122" + "plane" "(-356 -3876 -240) (-352 -3872 -240) (-352 -3872 -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" "251121" + "plane" "(-352 -3984 -240) (-356 -3980 -240) (-356 -3980 -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" "157 186 0" + "groupid" "1242558" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242628" + side + { + "id" "251132" + "plane" "(-464 -3872 -224) (-464 -3816 -224) (-352 -3816 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251131" + "plane" "(-464 -3816 -256) (-464 -3872 -256) (-352 -3872 -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" "251130" + "plane" "(-464 -3872 -256) (-464 -3816 -256) (-464 -3816 -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" "251129" + "plane" "(-352 -3816 -256) (-352 -3872 -256) (-352 -3872 -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" "251128" + "plane" "(-464 -3816 -256) (-352 -3816 -256) (-352 -3816 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251127" + "plane" "(-352 -3872 -256) (-464 -3872 -256) (-464 -3872 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 164 133" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242640" + side + { + "id" "251144" + "plane" "(-464 -3984 -224) (-464 -3872 -224) (-432 -3872 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251143" + "plane" "(-464 -3872 -256) (-464 -3984 -256) (-432 -3984 -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" "251142" + "plane" "(-464 -3984 -256) (-464 -3872 -256) (-464 -3872 -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" "251141" + "plane" "(-432 -3872 -256) (-432 -3984 -256) (-432 -3984 -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" "251140" + "plane" "(-464 -3872 -256) (-432 -3872 -256) (-432 -3872 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251139" + "plane" "(-432 -3984 -256) (-464 -3984 -256) (-464 -3984 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "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 133" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1242641" + side + { + "id" "251150" + "plane" "(-352 -4048 -224) (-368 -4048 -224) (-368 -3984 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251149" + "plane" "(-368 -3984 -256) (-368 -4048 -256) (-352 -4048 -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" "251148" + "plane" "(-368 -4048 -256) (-368 -3984 -256) (-368 -3984 -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" "251147" + "plane" "(-352 -4048 -256) (-368 -4048 -256) (-368 -4048 -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" "251146" + "plane" "(-352 -3984 -256) (-352 -4048 -256) (-352 -4048 -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" "251145" + "plane" "(-368 -3984 -256) (-352 -3984 -256) (-352 -3984 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 164 133" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1244421" + side + { + "id" "251336" + "plane" "(-1056 -2469 -24) (-1056 -2544 -24) (-1131 -2544 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251335" + "plane" "(-1131 -2544 -32) (-1056 -2544 -32) (-1056 -2469 -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" "251334" + "plane" "(-1056 -2469 -32) (-1056 -2544 -32) (-1056 -2544 -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" "251333" + "plane" "(-1056 -2544 -32) (-1131 -2544 -32) (-1131 -2544 -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" "251332" + "plane" "(-1131 -2544 -32) (-1056 -2469 -32) (-1056 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1244471" + side + { + "id" "251342" + "plane" "(-1056 -2896 -24) (-1280 -2896 -24) (-1280 -2860 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251341" + "plane" "(-1056 -2860 -32) (-1280 -2860 -32) (-1280 -2896 -32)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251340" + "plane" "(-1056 -2896 -32) (-1280 -2896 -32) (-1280 -2896 -24)" + "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" "251339" + "plane" "(-1280 -2860 -32) (-1056 -2860 -32) (-1056 -2860 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251338" + "plane" "(-1280 -2896 -32) (-1280 -2860 -32) (-1280 -2860 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251337" + "plane" "(-1056 -2860 -32) (-1056 -2896 -32) (-1056 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1244472" + side + { + "id" "251348" + "plane" "(-744 -2896 -24) (-1056 -2896 -24) (-1056 -2860 -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" + } + side + { + "id" "251347" + "plane" "(-744 -2860 -32) (-1056 -2860 -32) (-1056 -2896 -32)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251346" + "plane" "(-744 -2896 -32) (-1056 -2896 -32) (-1056 -2896 -24)" + "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" "251345" + "plane" "(-1056 -2860 -32) (-744 -2860 -32) (-744 -2860 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251344" + "plane" "(-744 -2860 -32) (-744 -2896 -32) (-744 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONC_F" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251343" + "plane" "(-1056 -2896 -32) (-1056 -2860 -32) (-1056 -2860 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1245153" + side + { + "id" "251567" + "plane" "(-1904 -2736 -24) (-2246.74 -2736 -24) (-2246.74 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251566" + "plane" "(-1904 -2576 -32) (-2246.74 -2576 -32) (-2246.74 -2736 -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" "251565" + "plane" "(-1904 -2736 -32) (-2246.74 -2736 -32) (-2246.74 -2736 -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" "251564" + "plane" "(-2246.74 -2736 -32) (-2246.74 -2576 -32) (-2246.74 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251563" + "plane" "(-2246.74 -2576 -32) (-1904 -2576 -32) (-1904 -2576 -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" "251562" + "plane" "(-1904 -2576 -32) (-1904 -2736 -32) (-1904 -2736 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1245155" + side + { + "id" "251579" + "plane" "(-1904 -2896 -24) (-2496 -2896 -24) (-2496 -2736 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251578" + "plane" "(-1904 -2736 -32) (-2496 -2736 -32) (-2496 -2896 -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" "251577" + "plane" "(-2496 -2896 -32) (-2496 -2736 -32) (-2496 -2736 -24)" + "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" "251576" + "plane" "(-1904 -2896 -32) (-2496 -2896 -32) (-2496 -2896 -24)" + "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" "251575" + "plane" "(-2496 -2736 -32) (-1904 -2736 -32) (-1904 -2736 -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" "251574" + "plane" "(-1904 -2736 -32) (-1904 -2896 -32) (-1904 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1245165" + side + { + "id" "251591" + "plane" "(-1312 -2643 -24) (-1904 -2643 -24) (-1904 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251590" + "plane" "(-1312 -2576 -32) (-1904 -2576 -32) (-1904 -2643 -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" "251589" + "plane" "(-1312 -2643 -32) (-1904 -2643 -32) (-1904 -2643 -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" "251588" + "plane" "(-1904 -2576 -32) (-1312 -2576 -32) (-1312 -2576 -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" "251587" + "plane" "(-1904 -2643 -32) (-1904 -2576 -32) (-1904 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251586" + "plane" "(-1312 -2576 -32) (-1312 -2643 -32) (-1312 -2643 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1245166" + side + { + "id" "251597" + "plane" "(-1280 -2736 -24) (-1312 -2736 -24) (-1312 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251596" + "plane" "(-1280 -2576 -32) (-1312 -2576 -32) (-1312 -2736 -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" "251595" + "plane" "(-1280 -2736 -32) (-1312 -2736 -32) (-1312 -2736 -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" "251594" + "plane" "(-1312 -2576 -32) (-1280 -2576 -32) (-1280 -2576 -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" "251593" + "plane" "(-1280 -2576 -32) (-1280 -2736 -32) (-1280 -2736 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251592" + "plane" "(-1312 -2736 -32) (-1312 -2576 -32) (-1312 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1245167" + side + { + "id" "251603" + "plane" "(-1312 -2896 -24) (-1904 -2896 -24) (-1904 -2643 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_DARK" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 -88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251602" + "plane" "(-1312 -2643 -32) (-1904 -2643 -32) (-1904 -2896 -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" "251601" + "plane" "(-1312 -2896 -32) (-1904 -2896 -32) (-1904 -2896 -24)" + "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" "251600" + "plane" "(-1904 -2643 -32) (-1312 -2643 -32) (-1312 -2643 -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" "251599" + "plane" "(-1904 -2896 -32) (-1904 -2643 -32) (-1904 -2643 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251598" + "plane" "(-1312 -2643 -32) (-1312 -2896 -32) (-1312 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1245168" + side + { + "id" "251609" + "plane" "(-1280 -2896 -24) (-1312 -2896 -24) (-1312 -2736 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251608" + "plane" "(-1280 -2736 -32) (-1312 -2736 -32) (-1312 -2896 -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" "251607" + "plane" "(-1280 -2896 -32) (-1312 -2896 -32) (-1312 -2896 -24)" + "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" "251606" + "plane" "(-1312 -2736 -32) (-1280 -2736 -32) (-1280 -2736 -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" "251605" + "plane" "(-1280 -2736 -32) (-1280 -2896 -32) (-1280 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251604" + "plane" "(-1312 -2896 -32) (-1312 -2736 -32) (-1312 -2736 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1246187" + side + { + "id" "251610" + "plane" "(-1280 -2860 335.975) (-1056 -2860 335.975) (-1056 -2896 335.975)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251611" + "plane" "(-1280 -2896 -24.0246) (-1056 -2896 -24.0246) (-1056 -2860 -24.0246)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251612" + "plane" "(-1280 -2860 -24.0246) (-1280 -2860 335.975) (-1280 -2896 335.975)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251613" + "plane" "(-1056 -2896 -24.0246) (-1056 -2896 335.975) (-1056 -2860 335.975)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251614" + "plane" "(-1056 -2860 -24.0246) (-1056 -2860 335.975) (-1280 -2860 335.975)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251615" + "plane" "(-1280 -2896 -24.0246) (-1280 -2896 335.975) (-1056 -2896 335.975)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 197 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1246188" + side + { + "id" "251616" + "plane" "(-1393 -2896 335.95) (-1393 -2604 335.95) (-1280 -2604 335.95)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251617" + "plane" "(-1393 -2604 -64.0495) (-1393 -2896 -64.0495) (-1280 -2896 -64.0495)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251618" + "plane" "(-1393 -2896 -64.0501) (-1393 -2604 -64.0501) (-1393 -2604 335.949)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251619" + "plane" "(-1280 -2604 -64.0502) (-1280 -2896 -64.0502) (-1280 -2896 335.949)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251620" + "plane" "(-1393 -2604 -64.0501) (-1280 -2604 -64.0501) (-1280 -2604 335.949)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251621" + "plane" "(-1280 -2896 -64.0502) (-1393 -2896 -64.0502) (-1393 -2896 335.949)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 124" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236046" + side + { + "id" "250390" + "plane" "(-1272 -2852 -176) (-1064 -2852 -176) (-1056 -2860 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250389" + "plane" "(-1280 -2860 -200) (-1056 -2860 -200) (-1064 -2852 -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" "250388" + "plane" "(-1272 -2852 -200) (-1272 -2852 -176) (-1280 -2860 -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" "250387" + "plane" "(-1056 -2860 -200) (-1056 -2860 -176) (-1064 -2852 -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" "250386" + "plane" "(-1280 -2860 -200) (-1280 -2860 -176) (-1056 -2860 -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" "250385" + "plane" "(-1064 -2852 -200) (-1064 -2852 -176) (-1272 -2852 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 234 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236093" + side + { + "id" "250402" + "plane" "(-1064 -2600 -176) (-1056 -2592 -176) (-1056 -2860 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -30] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250401" + "plane" "(-1056 -2860 -200) (-1056 -2592 -200) (-1064 -2600 -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" "250400" + "plane" "(-1056 -2592 -200) (-1056 -2860 -200) (-1056 -2860 -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" "250399" + "plane" "(-1064 -2600 -200) (-1056 -2592 -200) (-1056 -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" + } + side + { + "id" "250398" + "plane" "(-1056 -2860 -200) (-1064 -2852 -200) (-1064 -2852 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250397" + "plane" "(-1064 -2852 -200) (-1064 -2600 -200) (-1064 -2600 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "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 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236235" + side + { + "id" "250450" + "plane" "(-1064 -2852 -176) (-1272 -2852 -176) (-1272 -2600 -176)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250449" + "plane" "(-1272 -2852 -200) (-1064 -2852 -200) (-1064 -2600 -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" "250448" + "plane" "(-1064 -2852 -200) (-1272 -2852 -200) (-1272 -2852 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250447" + "plane" "(-1064 -2600 -200) (-1064 -2852 -200) (-1064 -2852 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250446" + "plane" "(-1272 -2600 -200) (-1064 -2600 -200) (-1064 -2600 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250445" + "plane" "(-1272 -2852 -200) (-1272 -2600 -200) (-1272 -2600 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "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 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236243" + side + { + "id" "250462" + "plane" "(-1280 -2600 -176) (-1280 -2592 -176) (-1056 -2592 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250461" + "plane" "(-1280 -2592 -200) (-1280 -2600 -200) (-1064 -2600 -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" "250460" + "plane" "(-1280 -2592 -200) (-1280 -2592 -176) (-1280 -2600 -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" "250459" + "plane" "(-1056 -2592 -200) (-1056 -2592 -176) (-1280 -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" + } + side + { + "id" "250458" + "plane" "(-1280 -2600 -200) (-1280 -2600 -176) (-1064 -2600 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250457" + "plane" "(-1064 -2600 -200) (-1064 -2600 -176) (-1056 -2592 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "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 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236312" + side + { + "id" "250528" + "plane" "(-1280 -2600 -176) (-1272 -2600 -176) (-1272 -2852 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -94] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250527" + "plane" "(-1280 -2600 -200) (-1280 -2860 -200) (-1272 -2852 -200)" + "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" "250526" + "plane" "(-1280 -2600 -200) (-1280 -2600 -176) (-1280 -2860 -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" "250525" + "plane" "(-1272 -2600 -200) (-1272 -2600 -176) (-1280 -2600 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250524" + "plane" "(-1272 -2852 -200) (-1272 -2852 -176) (-1272 -2600 -176)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250523" + "plane" "(-1280 -2860 -200) (-1280 -2860 -176) (-1272 -2852 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 234 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236378" + side + { + "id" "250564" + "plane" "(-768 -3736 -224) (-776 -3736 -224) (-776 -3252 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250563" + "plane" "(-776 -3252 -240) (-776 -3736 -240) (-768 -3736 -240)" + "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" "250562" + "plane" "(-776 -3736 -240) (-776 -3252 -240) (-776 -3252 -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" "250561" + "plane" "(-768 -3736 -240) (-776 -3736 -240) (-776 -3736 -224)" + "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" "250560" + "plane" "(-776 -3252 -240) (-768 -3260 -240) (-768 -3260 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -160] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250559" + "plane" "(-768 -3260 -240) (-768 -3736 -240) (-768 -3736 -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" + } + editor + { + "color" "0 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236385" + side + { + "id" "250570" + "plane" "(-616 -3736 -224) (-768 -3736 -224) (-768 -3552 -224)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250569" + "plane" "(-616 -3552 -240) (-768 -3552 -240) (-768 -3736 -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" "250568" + "plane" "(-616 -3736 -240) (-768 -3736 -240) (-768 -3736 -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" "250567" + "plane" "(-768 -3552 -240) (-616 -3552 -240) (-616 -3552 -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" "250566" + "plane" "(-768 -3736 -240) (-768 -3552 -240) (-768 -3552 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250565" + "plane" "(-616 -3552 -240) (-616 -3736 -240) (-616 -3736 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236407" + side + { + "id" "250582" + "plane" "(-768 -3552 -224) (-768 -3544 -224) (-616 -3544 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250581" + "plane" "(-768 -3544 -240) (-768 -3552 -240) (-616 -3552 -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" "250580" + "plane" "(-768 -3552 -240) (-768 -3544 -240) (-768 -3544 -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" "250579" + "plane" "(-616 -3544 -240) (-616 -3552 -240) (-616 -3552 -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" "250578" + "plane" "(-616 -3552 -240) (-768 -3552 -240) (-768 -3552 -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" "250577" + "plane" "(-768 -3544 -240) (-616 -3544 -240) (-616 -3544 -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 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236482" + side + { + "id" "250624" + "plane" "(-776 -3252 -224) (-776 -3208 -224) (-608 -3208 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250623" + "plane" "(-608 -3208 -240) (-776 -3208 -240) (-776 -3252 -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" "250622" + "plane" "(-776 -3208 -240) (-608 -3208 -240) (-608 -3208 -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" "250621" + "plane" "(-608 -3208 -240) (-608 -3252 -240) (-608 -3252 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250620" + "plane" "(-776 -3252 -240) (-776 -3208 -240) (-776 -3208 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250619" + "plane" "(-608 -3252 -240) (-776 -3252 -240) (-776 -3252 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236492" + side + { + "id" "250636" + "plane" "(-616 -3260 -224) (-768.027 -3260 -224) (-776.027 -3252 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -126] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250635" + "plane" "(-768 -3260 -240) (-616 -3260 -240) (-608 -3252 -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" "250634" + "plane" "(-616 -3260 -240) (-616 -3260 -224) (-608 -3252 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250633" + "plane" "(-776 -3252 -240) (-776.027 -3252 -224) (-768.027 -3260 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250632" + "plane" "(-608 -3252 -240) (-608 -3252 -224) (-776.027 -3252 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250631" + "plane" "(-768 -3260 -240) (-768.027 -3260 -224) (-616 -3260 -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 196 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236542" + side + { + "id" "250642" + "plane" "(-608 -3252 -224) (-608 -3736 -224) (-616 -3736 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250641" + "plane" "(-616 -3260 -240) (-616 -3736 -240) (-608 -3736 -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" "250640" + "plane" "(-608 -3252 -240) (-608 -3736 -240) (-608 -3736 -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" "250639" + "plane" "(-608 -3736 -240) (-616 -3736 -240) (-616 -3736 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250638" + "plane" "(-616 -3736 -240) (-616 -3260 -240) (-616 -3260 -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" "250637" + "plane" "(-616 -3260 -240) (-608 -3252 -240) (-608 -3252 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236572" + side + { + "id" "250696" + "plane" "(-748 -3332 -224) (-752 -3328 -224) (-640 -3328 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 614.396] 0.078125" + "vaxis" "[1 0 0 -292.571] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "250695" + "plane" "(-752 -3328 -240) (-748 -3332 -240) (-644 -3332 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250694" + "plane" "(-640 -3328 -240) (-640 -3328 -224) (-752 -3328 -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" "250693" + "plane" "(-748 -3332 -240) (-748 -3332 -224) (-644 -3332 -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" "250692" + "plane" "(-644 -3332 -240) (-644 -3332 -224) (-640 -3328 -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" "250691" + "plane" "(-752 -3328 -240) (-752 -3328 -224) (-748 -3332 -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" + } + editor + { + "color" "157 186 0" + "groupid" "1236571" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236573" + side + { + "id" "250702" + "plane" "(-748 -3404 -224) (-748 -3332 -224) (-644 -3332 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 614.396] 0.078125" + "vaxis" "[1 0 0 -292.571] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "250701" + "plane" "(-748 -3332 -240) (-748 -3404 -240) (-644 -3404 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250700" + "plane" "(-748 -3404 -240) (-748 -3332 -240) (-748 -3332 -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" "250699" + "plane" "(-644 -3332 -240) (-644 -3404 -240) (-644 -3404 -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" "250698" + "plane" "(-748 -3332 -240) (-644 -3332 -240) (-644 -3332 -224)" + "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" "250697" + "plane" "(-644 -3404 -240) (-748 -3404 -240) (-748 -3404 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "1236571" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236574" + side + { + "id" "250708" + "plane" "(-644 -3404 -224) (-644 -3332 -224) (-640 -3328 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[1 0 0 2] 0.078" + "vaxis" "[0 -1 0 -941.409] 0.109" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "250707" + "plane" "(-644 -3332 -240) (-644 -3404 -240) (-640 -3408 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250706" + "plane" "(-640 -3328 -240) (-640 -3408 -240) (-640 -3408 -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" "250705" + "plane" "(-644 -3404 -240) (-644 -3332 -240) (-644 -3332 -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" "250704" + "plane" "(-644 -3332 -240) (-640 -3328 -240) (-640 -3328 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 736] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250703" + "plane" "(-640 -3408 -240) (-644 -3404 -240) (-644 -3404 -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" + } + editor + { + "color" "157 186 0" + "groupid" "1236571" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236575" + side + { + "id" "250714" + "plane" "(-752 -3408 -224) (-752 -3328 -224) (-748 -3332 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[-1 0 0 -422] 0.078" + "vaxis" "[0 1 0 209.41] 0.109" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "250713" + "plane" "(-752 -3328 -240) (-752 -3408 -240) (-748 -3404 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250712" + "plane" "(-752 -3408 -240) (-752 -3328 -240) (-752 -3328 -224)" + "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" "250711" + "plane" "(-748 -3332 -240) (-748 -3404 -240) (-748 -3404 -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" "250710" + "plane" "(-752 -3328 -240) (-748 -3332 -240) (-748 -3332 -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" "250709" + "plane" "(-748 -3404 -240) (-752 -3408 -240) (-752 -3408 -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" + } + editor + { + "color" "157 186 0" + "groupid" "1236571" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236576" + side + { + "id" "250720" + "plane" "(-640 -3408 -224) (-752 -3408 -224) (-748 -3404 -224)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 614.396] 0.078125" + "vaxis" "[1 0 0 -292.571] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "250719" + "plane" "(-644 -3404 -240) (-748 -3404 -240) (-752 -3408 -240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250718" + "plane" "(-640 -3408 -240) (-752 -3408 -240) (-752 -3408 -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" "250717" + "plane" "(-748 -3404 -240) (-644 -3404 -240) (-644 -3404 -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" "250716" + "plane" "(-644 -3404 -240) (-640 -3408 -240) (-640 -3408 -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" "250715" + "plane" "(-752 -3408 -240) (-748 -3404 -240) (-748 -3404 -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" + } + editor + { + "color" "157 186 0" + "groupid" "1236571" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236592" + side + { + "id" "250732" + "plane" "(-768 -3328 -224) (-768 -3260 -224) (-616 -3260 -224)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250731" + "plane" "(-768 -3260 -240) (-768 -3328 -240) (-616 -3328 -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" "250730" + "plane" "(-616 -3260 -240) (-616 -3328 -240) (-616 -3328 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250729" + "plane" "(-768 -3328 -240) (-768 -3260 -240) (-768 -3260 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250728" + "plane" "(-768 -3260 -240) (-616 -3260 -240) (-616 -3260 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250727" + "plane" "(-616 -3328 -240) (-768 -3328 -240) (-768 -3328 -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 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236605" + side + { + "id" "250738" + "plane" "(-616 -3544 -224) (-768 -3544 -224) (-768 -3408 -224)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250737" + "plane" "(-768 -3408 -240) (-768 -3544 -240) (-616 -3544 -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" "250736" + "plane" "(-616 -3544 -240) (-768 -3544 -240) (-768 -3544 -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" "250735" + "plane" "(-616 -3408 -240) (-616 -3544 -240) (-616 -3544 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250734" + "plane" "(-768 -3544 -240) (-768 -3408 -240) (-768 -3408 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250733" + "plane" "(-768 -3408 -240) (-616 -3408 -240) (-616 -3408 -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 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236611" + side + { + "id" "250750" + "plane" "(-752 -3408 -224) (-768 -3408 -224) (-768 -3328 -224)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 -320] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250749" + "plane" "(-752 -3328 -240) (-768 -3328 -240) (-768 -3408 -240)" + "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" "250748" + "plane" "(-768 -3408 -240) (-768 -3328 -240) (-768 -3328 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250747" + "plane" "(-768 -3328 -240) (-752 -3328 -240) (-752 -3328 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 -160] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250746" + "plane" "(-752 -3408 -240) (-768 -3408 -240) (-768 -3408 -224)" + "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" "250745" + "plane" "(-752 -3328 -240) (-752 -3408 -240) (-752 -3408 -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" + } + editor + { + "color" "0 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236612" + side + { + "id" "250756" + "plane" "(-640 -3328 -224) (-616 -3328 -224) (-616 -3408 -224)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250755" + "plane" "(-640 -3408 -240) (-616 -3408 -240) (-616 -3328 -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" "250754" + "plane" "(-616 -3328 -240) (-616 -3408 -240) (-616 -3408 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250753" + "plane" "(-640 -3328 -240) (-616 -3328 -240) (-616 -3328 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250752" + "plane" "(-616 -3408 -240) (-640 -3408 -240) (-640 -3408 -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" "250751" + "plane" "(-640 -3408 -240) (-640 -3328 -240) (-640 -3328 -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" + } + editor + { + "color" "0 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236697" + side + { + "id" "250792" + "plane" "(-1280 -3058 -32) (-1296 -3058 -32) (-1296 -2576 -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" + } + side + { + "id" "250791" + "plane" "(-1296 -2576 -200) (-1296 -2576 -32) (-1296 -3058 -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" "250790" + "plane" "(-1280 -2576 -200) (-1280 -2576 -32) (-1296 -2576 -32)" + "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" "250789" + "plane" "(-1296 -3058 -200) (-1296 -3058 -32) (-1280 -3058 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250788" + "plane" "(-1280 -3058 -200) (-1280 -3058 -32) (-1280 -2576 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250787" + "plane" "(-1280 -2576 -200) (-1296 -2576 -200) (-1296 -3058 -200)" + "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 202 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236703" + side + { + "id" "250804" + "plane" "(-1352 -2592 -32) (-1352 -2488 -32) (-1056 -2488 -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" "250803" + "plane" "(-1352 -2488 -144) (-1352 -2488 -32) (-1352 -2592 -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" "250802" + "plane" "(-1056 -2592 -144) (-1056 -2592 -32) (-1056 -2488 -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" "250801" + "plane" "(-1056 -2488 -144) (-1056 -2488 -32) (-1352 -2488 -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" "250800" + "plane" "(-1352 -2592 -144) (-1352 -2592 -32) (-1056 -2592 -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" "250799" + "plane" "(-1352 -2488 -144) (-1352 -2592 -144) (-1056 -2592 -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" + } + editor + { + "color" "0 210 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236704" + side + { + "id" "250810" + "plane" "(-1352 -2488 -240) (-1352 -2592 -240) (-1056 -2592 -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" "250809" + "plane" "(-1352 -2592 -144) (-1352 -2592 -240) (-1352 -2488 -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" "250808" + "plane" "(-1056 -2488 -144) (-1056 -2488 -240) (-1056 -2592 -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" "250807" + "plane" "(-1352 -2488 -144) (-1352 -2488 -240) (-1056 -2488 -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" "250806" + "plane" "(-1056 -2592 -144) (-1056 -2592 -240) (-1352 -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" + } + side + { + "id" "250805" + "plane" "(-1352 -2592 -144) (-1352 -2488 -144) (-1056 -2488 -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" + } + editor + { + "color" "0 210 103" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236747" + side + { + "id" "250839" + "plane" "(-608 -3208 -200) (-616 -3200 -200) (-616 -2944 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250838" + "plane" "(-616 -2944 -224) (-616 -3200 -224) (-608 -3208 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250837" + "plane" "(-608 -3208 -200) (-608 -2936 -200) (-608 -2936 -224)" + "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" "250836" + "plane" "(-608 -2936 -200) (-616 -2944 -200) (-616 -2944 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250835" + "plane" "(-616 -3200 -200) (-608 -3208 -200) (-608 -3208 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250834" + "plane" "(-616 -2944 -200) (-616 -3200 -200) (-616 -3200 -224)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236773" + side + { + "id" "250857" + "plane" "(-1280 -2896 -200) (-1056 -2896 -200) (-1064 -2904 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250856" + "plane" "(-1280 -2896 -224) (-1272 -2904 -224) (-1064 -2904 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250855" + "plane" "(-1280 -2896 -224) (-1280 -2896 -200) (-1272 -2904 -200)" + "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" "250854" + "plane" "(-1056 -2896 -224) (-1056 -2896 -200) (-1280 -2896 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250853" + "plane" "(-1064 -2904 -224) (-1064 -2904 -200) (-1056 -2896 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250852" + "plane" "(-1272 -2904 -224) (-1272 -2904 -200) (-1064 -2904 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236978" + side + { + "id" "250893" + "plane" "(-1272 -3208 -200) (-1280 -3216 -200) (-1280 -2896 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250892" + "plane" "(-1280 -2896 -224) (-1280 -3216 -224) (-1272 -3208 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250891" + "plane" "(-1280 -3216 -224) (-1280 -2896 -224) (-1280 -2896 -200)" + "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" "250890" + "plane" "(-1272 -3208 -224) (-1280 -3216 -224) (-1280 -3216 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250889" + "plane" "(-1280 -2896 -224) (-1272 -2904 -224) (-1272 -2904 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -224] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250888" + "plane" "(-1272 -2904 -224) (-1272 -3208 -224) (-1272 -3208 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1237081" + side + { + "id" "250911" + "plane" "(-1064 -2920 -200) (-1272 -2920 -200) (-1272 -2904 -200)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250910" + "plane" "(-1064 -2904 -224) (-1272 -2904 -224) (-1272 -2920 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250909" + "plane" "(-1272 -2904 -224) (-1064 -2904 -224) (-1064 -2904 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250908" + "plane" "(-1272 -2920 -224) (-1272 -2904 -224) (-1272 -2904 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250907" + "plane" "(-1064 -2920 -224) (-1272 -2920 -224) (-1272 -2920 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250906" + "plane" "(-1064 -2904 -224) (-1064 -2920 -224) (-1064 -2920 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1237082" + side + { + "id" "250917" + "plane" "(-1064 -2904 -200) (-1056 -2896 -200) (-1056 -2912 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250916" + "plane" "(-1056 -2896 -224) (-1064 -2904 -224) (-1064 -2920 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250915" + "plane" "(-1064 -2904 -224) (-1056 -2896 -224) (-1056 -2896 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250914" + "plane" "(-1056 -2896 -224) (-1056 -2912 -224) (-1056 -2912 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250913" + "plane" "(-1056 -2912 -224) (-1064 -2920 -224) (-1064 -2920 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250912" + "plane" "(-1064 -2920 -224) (-1064 -2904 -224) (-1064 -2904 -200)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 113 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1225294" + side + { + "id" "250257" + "plane" "(-1280 -2592 -24) (-1280 -2576 -24) (-1056 -2576 -24)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250258" + "plane" "(-1280 -2576 -32) (-1280 -2592 -32) (-1056 -2592 -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" "250259" + "plane" "(-1280 -2592 -32) (-1280 -2576 -32) (-1280 -2576 -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" "250260" + "plane" "(-1056 -2576 -32) (-1056 -2592 -32) (-1056 -2592 -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" "250261" + "plane" "(-1280 -2576 -32) (-1056 -2576 -32) (-1056 -2576 -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" "250262" + "plane" "(-1056 -2592 -32) (-1280 -2592 -32) (-1280 -2592 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "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" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1225360" + side + { + "id" "250299" + "plane" "(-1352 -2912 -16) (-1088 -2912 -16) (-1088 -3233 -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" "250300" + "plane" "(-1352 -3233 -32) (-1088 -3233 -32) (-1088 -2912 -32)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250301" + "plane" "(-1352 -2912 -16) (-1352 -3233 -16) (-1352 -3233 -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" "250302" + "plane" "(-1088 -2912 -32) (-1088 -3233 -32) (-1088 -3233 -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" "250303" + "plane" "(-1088 -2912 -16) (-1352 -2912 -16) (-1352 -2912 -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" "250304" + "plane" "(-1088 -3233 -32) (-1352 -3233 -32) (-1352 -3233 -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 122 111" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219295" + side + { + "id" "249892" + "plane" "(-521 -2000 560) (-521 -1872 560) (384 -1872 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249893" + "plane" "(-521 -1872 504) (-521 -2000 504) (384 -2000 504)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249894" + "plane" "(-521 -2000 504) (-521 -1872 504) (-521 -1872 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249895" + "plane" "(384 -1872 504) (384 -2000 504) (384 -2000 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249896" + "plane" "(-521 -1872 504) (384 -1872 504) (384 -1872 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" "249897" + "plane" "(384 -2000 504) (-521 -2000 504) (-521 -2000 560)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219297" + side + { + "id" "249898" + "plane" "(384 -2112 560) (384 -1872 560) (624 -1872 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249899" + "plane" "(384 -1872 504) (384 -2112 504) (624 -2112 504)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249900" + "plane" "(384 -2112 504) (384 -1872 504) (384 -1872 560)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249901" + "plane" "(624 -1872 504) (624 -2112 504) (624 -2112 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249902" + "plane" "(384 -1872 504) (624 -1872 504) (624 -1872 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" "249903" + "plane" "(624 -2112 504) (384 -2112 504) (384 -2112 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" "0 127 140" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219636" + side + { + "id" "250106" + "plane" "(272 -2409 -1.52588e-05) (272 -2397 -1.52588e-05) (480 -2244 -1.52588e-05)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250105" + "plane" "(480 -2256 -24) (480 -2210 -24) (272 -2364 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250104" + "plane" "(272 -2409 -24) (272 -2409 -1.52588e-05) (480 -2256 -1.52588e-05)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250103" + "plane" "(480 -2210 -24) (480 -2210 -22.6667) (272 -2364 -22.6667)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250102" + "plane" "(272 -2364 -24) (272 -2364 -22.6667) (272 -2397 -1.52588e-05)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250101" + "plane" "(480 -2256 -24) (480 -2256 -1.52588e-05) (480 -2244 -1.52588e-05)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250100" + "plane" "(272 -2397 -1.52588e-05) (272 -2364 -22.6667) (480 -2210 -22.6667)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 159 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219774" + side + { + "id" "250118" + "plane" "(480 -2256 0) (480 -2434 0) (272 -2434 0)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250117" + "plane" "(272 -2434 -32) (480 -2434 -32) (480 -2256 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250116" + "plane" "(480 -2256 -32) (480 -2434 -32) (480 -2434 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" "250115" + "plane" "(480 -2434 -32) (272 -2434 -32) (272 -2434 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" "250114" + "plane" "(272 -2434 -32) (272 -2409 -32) (272 -2409 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250113" + "plane" "(272 -2409 -32) (480 -2256 -32) (480 -2256 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 14] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1202828" + side + { + "id" "249601" + "plane" "(-32 -2624 -24) (-32 -2576 -24) (248 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249600" + "plane" "(-32 -2576 -32) (-32 -2624 -32) (248 -2624 -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" "249599" + "plane" "(-32 -2624 -32) (-32 -2576 -32) (-32 -2576 -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" "249598" + "plane" "(248 -2576 -32) (248 -2624 -32) (248 -2624 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249597" + "plane" "(248 -2624 -32) (-32 -2624 -32) (-32 -2624 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249596" + "plane" "(-32 -2576 -32) (248 -2576 -32) (248 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1202842" + side + { + "id" "249613" + "plane" "(-32 -2576 -24) (-32 -2112 -24) (0 -2112 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249612" + "plane" "(0 -2112 -32) (-32 -2112 -32) (-32 -2576 -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" "249611" + "plane" "(-32 -2576 -32) (-32 -2112 -32) (-32 -2112 -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" "249610" + "plane" "(-32 -2112 -32) (0 -2112 -32) (0 -2112 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -10.654] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249609" + "plane" "(0 -2576 -32) (-32 -2576 -32) (-32 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249608" + "plane" "(0 -2112 -32) (0 -2576 -32) (0 -2576 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1202849" + side + { + "id" "249625" + "plane" "(-2240 -2144 -24) (-2240 -2112 -24) (-32 -2112 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249624" + "plane" "(-2240 -2112 -32) (-2240 -2144 -32) (-32 -2144 -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" "249623" + "plane" "(-2240 -2144 -32) (-2240 -2112 -32) (-2240 -2112 -24)" + "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" "249622" + "plane" "(-32 -2112 -32) (-32 -2144 -32) (-32 -2144 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249621" + "plane" "(-2240 -2112 -32) (-32 -2112 -32) (-32 -2112 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249620" + "plane" "(-32 -2144 -32) (-2240 -2144 -32) (-2240 -2144 -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 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1202916" + side + { + "id" "249685" + "plane" "(-208 -2576 -24) (-208 -2544 -24) (-32 -2544 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249684" + "plane" "(-208 -2544 -32) (-208 -2576 -32) (-32 -2576 -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" "249683" + "plane" "(-208 -2576 -32) (-208 -2544 -32) (-208 -2544 -24)" + "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" "249682" + "plane" "(-32 -2544 -32) (-32 -2576 -32) (-32 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249681" + "plane" "(-32 -2576 -32) (-208 -2576 -32) (-208 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249680" + "plane" "(-208 -2544 -32) (-32 -2544 -32) (-32 -2544 -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 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1202948" + side + { + "id" "249741" + "plane" "(-537 -2112 -24) (-537 -1936 -24) (-336 -1936 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249740" + "plane" "(-537 -1936 -48) (-537 -2112 -48) (-336 -2112 -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" "249739" + "plane" "(-537 -2112 -48) (-537 -1936 -48) (-537 -1936 -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" "249738" + "plane" "(-336 -1936 -48) (-336 -2112 -48) (-336 -2112 -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" "249737" + "plane" "(-537 -1936 -48) (-336 -1936 -48) (-336 -1936 -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" "249736" + "plane" "(-336 -2112 -48) (-537 -2112 -48) (-537 -2112 -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 252 141" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1203049" + side + { + "id" "249837" + "plane" "(-2240 -2576 -24) (-2240 -2144 -24) (-2208 -2144 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249836" + "plane" "(-2208 -2144 -32) (-2240 -2144 -32) (-2240 -2576 -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" "249835" + "plane" "(-2240 -2144 -32) (-2208 -2144 -32) (-2208 -2144 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249834" + "plane" "(-2240 -2576 -32) (-2240 -2144 -32) (-2240 -2144 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249833" + "plane" "(-2208 -2576 -32) (-2240 -2576 -32) (-2240 -2576 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249832" + "plane" "(-2208 -2144 -32) (-2208 -2576 -32) (-2208 -2576 -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" + } + editor + { + "color" "0 200 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1203056" + side + { + "id" "249849" + "plane" "(-1056 -2544 -24) (-1056 -2576 -24) (-2208 -2576 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249848" + "plane" "(-2208 -2544 -32) (-2208 -2576 -32) (-1056 -2576 -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" "249847" + "plane" "(-1056 -2544 -32) (-1056 -2576 -32) (-1056 -2576 -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" "249846" + "plane" "(-1056 -2576 -32) (-2208 -2576 -32) (-2208 -2576 -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" "249845" + "plane" "(-2208 -2576 -32) (-2208 -2544 -32) (-2208 -2544 -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" "249844" + "plane" "(-2208 -2544 -32) (-1056 -2544 -32) (-1056 -2544 -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 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1203069" + side + { + "id" "249861" + "plane" "(-705 -2501 -24) (-705 -2469 -24) (-408 -2469 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249860" + "plane" "(-705 -2469 -64) (-705 -2501 -64) (-408 -2501 -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" "249859" + "plane" "(-705 -2501 -64) (-705 -2469 -64) (-705 -2469 -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" "249858" + "plane" "(-408 -2469 -64) (-408 -2501 -64) (-408 -2501 -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" "249857" + "plane" "(-408 -2501 -64) (-705 -2501 -64) (-705 -2501 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249856" + "plane" "(-705 -2469 -64) (-408 -2469 -64) (-408 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 229" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1203086" + side + { + "id" "249879" + "plane" "(-856 -2501 -24) (-1056 -2501 -24) (-1056 -2469 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249878" + "plane" "(-1056 -2469 -32) (-1056 -2501 -32) (-856 -2501 -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" "249877" + "plane" "(-856 -2501 -32) (-1056 -2501 -32) (-1056 -2501 -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" "249876" + "plane" "(-856 -2469 -32) (-856 -2501 -32) (-856 -2501 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249875" + "plane" "(-1056 -2501 -32) (-1056 -2469 -32) (-1056 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249874" + "plane" "(-1056 -2469 -32) (-856 -2469 -32) (-856 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1203088" + side + { + "id" "249891" + "plane" "(-705 -2469 -24) (-705 -2501 -24) (-856 -2501 -24)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249890" + "plane" "(-856 -2469 -32) (-856 -2501 -32) (-705 -2501 -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" "249889" + "plane" "(-705 -2469 -32) (-705 -2501 -32) (-705 -2501 -24)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249888" + "plane" "(-705 -2501 -32) (-856 -2501 -32) (-856 -2501 -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" "249887" + "plane" "(-856 -2501 -32) (-856 -2469 -32) (-856 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249886" + "plane" "(-856 -2469 -32) (-705 -2469 -32) (-705 -2469 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 200 233" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1192380" + side + { + "id" "249463" + "plane" "(-521 -1936 192) (-521 -1936 -16) (-521 -1920 -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" "249462" + "plane" "(-521 -1920 192) (-521 -1920 -16) (-304 -1920 -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" "249461" + "plane" "(-304 -1936 -16) (-521 -1936 -16) (-521 -1936 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249460" + "plane" "(-304 -1920 -16) (-521 -1920 -16) (-521 -1936 -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" "249459" + "plane" "(-304 -1936 192) (-521 -1936 192) (-521 -1920 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" "249458" + "plane" "(-304 -1920 192) (-304 -1920 -16) (-304 -1936 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1192706" + side + { + "id" "249517" + "plane" "(136 -1920 -16) (160 -1920 -16) (160 -1920 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" "249516" + "plane" "(160 -1936 -16) (136 -1936 -16) (136 -1936 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249515" + "plane" "(160 -1920 -16) (136 -1920 -16) (136 -1936 -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" "249514" + "plane" "(160 -1936 192) (136 -1936 192) (136 -1920 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" "249513" + "plane" "(136 -1936 192) (136 -1936 -16) (136 -1920 -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" "249512" + "plane" "(160 -1920 192) (160 -1920 -16) (160 -1936 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1192711" + side + { + "id" "249523" + "plane" "(624 -1920 192) (624 -1920 -16) (624 -1936 -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" "249522" + "plane" "(352 -1920 -16) (624 -1920 -16) (624 -1920 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" "249521" + "plane" "(624 -1936 192) (624 -1936 -16) (352 -1936 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249520" + "plane" "(352 -1936 -16) (624 -1936 -16) (624 -1920 -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" "249519" + "plane" "(352 -1920 192) (624 -1920 192) (624 -1936 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" "249518" + "plane" "(352 -1936 192) (352 -1936 -16) (352 -1920 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1183969" + side + { + "id" "247052" + "plane" "(-537 -2000 -16) (-537 -2000 -24) (-537 -1920 -24)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 198.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247051" + "plane" "(-521 -1920 -16) (-521 -1920 -24) (-521 -2000 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247050" + "plane" "(-521 -2000 -16) (-521 -2000 -24) (-537 -2000 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247049" + "plane" "(-537 -1920 -16) (-537 -1920 -24) (-521 -1920 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247048" + "plane" "(-537 -1920 -24) (-537 -2000 -24) (-521 -2000 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247047" + "plane" "(-537 -2000 -16) (-537 -1920 -16) (-521 -1920 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1183984" + side + { + "id" "247070" + "plane" "(384 -2128 160) (384 -2128 144) (384 -2112 144)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247069" + "plane" "(624 -2112 160) (624 -2112 144) (640 -2128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247068" + "plane" "(384 -2112 160) (384 -2112 144) (624 -2112 144)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247067" + "plane" "(640 -2128 160) (640 -2128 144) (384 -2128 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 582.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247066" + "plane" "(384 -2112 144) (384 -2128 144) (640 -2128 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 -795] 0.125" + "vaxis" "[0 -1 0 278] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247065" + "plane" "(384 -2128 160) (384 -2112 160) (624 -2112 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" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1183990" + side + { + "id" "247082" + "plane" "(384 -2128 192) (384 -2128 160) (384 -2112 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247081" + "plane" "(624 -2112 192) (624 -2112 160) (640 -2128 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" "247080" + "plane" "(384 -2112 192) (384 -2112 160) (624 -2112 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247079" + "plane" "(640 -2128 192) (640 -2128 160) (384 -2128 160)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 582.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247078" + "plane" "(384 -2112 160) (384 -2128 160) (640 -2128 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" "247077" + "plane" "(384 -2128 192) (384 -2112 192) (624 -2112 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 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1183995" + side + { + "id" "247088" + "plane" "(480 -2112 144) (480 -1936 144) (624 -1936 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" "247087" + "plane" "(480 -1936 -16) (480 -1936 144) (480 -2112 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247086" + "plane" "(624 -2112 -16) (624 -2112 144) (624 -1936 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247085" + "plane" "(624 -1936 -16) (624 -1936 144) (480 -1936 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" "247084" + "plane" "(480 -2112 -16) (480 -2112 144) (624 -2112 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" "247083" + "plane" "(480 -1936 -16) (480 -2112 -16) (624 -2112 -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" + } + editor + { + "color" "0 114 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1183996" + side + { + "id" "247094" + "plane" "(480 -1936 -24) (480 -2112 -24) (624 -2112 -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" + } + side + { + "id" "247093" + "plane" "(480 -2112 -16) (480 -2112 -24) (480 -1936 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247092" + "plane" "(624 -1936 -16) (624 -1936 -24) (624 -2112 -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" "247091" + "plane" "(480 -1936 -16) (480 -1936 -24) (624 -1936 -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" "247090" + "plane" "(624 -2112 -16) (624 -2112 -24) (480 -2112 -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" "247089" + "plane" "(480 -2112 -16) (480 -1936 -16) (624 -1936 -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" + } + editor + { + "color" "0 114 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1184026" + side + { + "id" "247118" + "plane" "(-537 -2000 192) (-537 -2000 -16) (-537 -1920 -16)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 198.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247117" + "plane" "(-521 -1920 192) (-521 -1920 -16) (-521 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247116" + "plane" "(-521 -2000 192) (-521 -2000 -16) (-537 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247115" + "plane" "(-537 -1920 192) (-537 -1920 -16) (-521 -1920 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247114" + "plane" "(-537 -1920 -16) (-537 -2000 -16) (-521 -2000 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247113" + "plane" "(-537 -2000 192) (-537 -1920 192) (-521 -1920 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1184031" + side + { + "id" "247124" + "plane" "(-537 -2000 400) (-537 -1856 400) (-521 -1856 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247123" + "plane" "(-537 -1856 208) (-537 -1856 400) (-537 -2000 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 198.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247122" + "plane" "(-521 -2000 208) (-521 -2000 400) (-521 -1856 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247121" + "plane" "(-537 -2000 208) (-537 -2000 400) (-521 -2000 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247120" + "plane" "(-521 -1856 208) (-521 -1856 400) (-537 -1856 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247119" + "plane" "(-537 -1856 208) (-537 -2000 208) (-521 -2000 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1184032" + side + { + "id" "247130" + "plane" "(-537 -2000 208) (-537 -2000 192) (-537 -1920 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 198.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247129" + "plane" "(-521 -1920 208) (-521 -1920 192) (-521 -2000 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247128" + "plane" "(-521 -2000 208) (-521 -2000 192) (-537 -2000 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247127" + "plane" "(-537 -1920 208) (-537 -1920 192) (-521 -1920 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247126" + "plane" "(-537 -1920 192) (-537 -2000 192) (-521 -2000 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247125" + "plane" "(-537 -2000 208) (-537 -1920 208) (-521 -1920 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1184045" + side + { + "id" "247154" + "plane" "(-521 -1936 208) (-521 -1936 192) (-521 -1752 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" "247153" + "plane" "(624 -1752 208) (624 -1752 192) (624 -1936 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" "247152" + "plane" "(-521 -1752 208) (-521 -1752 192) (624 -1752 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" "247151" + "plane" "(624 -1936 208) (624 -1936 192) (-521 -1936 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247150" + "plane" "(-521 -1752 192) (-521 -1936 192) (624 -1936 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247149" + "plane" "(-521 -1936 208) (-521 -1752 208) (624 -1752 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" + } + editor + { + "color" "0 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1184057" + side + { + "id" "247166" + "plane" "(384 -2128 208) (384 -2128 192) (384 -2112 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247165" + "plane" "(624 -2112 208) (624 -2112 192) (640 -2128 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" "247164" + "plane" "(384 -2112 208) (384 -2112 192) (624 -2112 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247163" + "plane" "(640 -2128 208) (640 -2128 192) (384 -2128 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 582.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247162" + "plane" "(384 -2112 192) (384 -2128 192) (640 -2128 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" "247161" + "plane" "(384 -2128 208) (384 -2112 208) (624 -2112 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" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1184118" + side + { + "id" "247172" + "plane" "(-537 -2000 576) (-3384 -2000 576) (-3384 -1984 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247171" + "plane" "(-537 -1984 416) (-3384 -1984 416) (-3384 -2000 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" "247170" + "plane" "(-3384 -2000 416) (-3384 -1984 416) (-3384 -1984 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" "247169" + "plane" "(-3384 -1984 416) (-537 -1984 416) (-537 -1984 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" "247168" + "plane" "(-537 -2000 416) (-3384 -2000 416) (-3384 -2000 576)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247167" + "plane" "(-537 -1984 416) (-537 -2000 416) (-537 -2000 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" + } + editor + { + "color" "0 243 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1184119" + side + { + "id" "247178" + "plane" "(-537 -1856 576) (-521 -1856 576) (-521 -2000 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247177" + "plane" "(-537 -2000 416) (-521 -2000 416) (-521 -1856 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 8] 0.125" + "vaxis" "[0 1 0 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247176" + "plane" "(-521 -1856 416) (-521 -2000 416) (-521 -2000 576)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247175" + "plane" "(-537 -1856 416) (-521 -1856 416) (-521 -1856 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" "247174" + "plane" "(-521 -2000 416) (-537 -2000 416) (-537 -2000 576)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -248] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247173" + "plane" "(-537 -2000 416) (-537 -1856 416) (-537 -1856 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" + } + editor + { + "color" "0 243 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1184670" + side + { + "id" "247179" + "plane" "(384 -2000 576) (623 -2000 576) (623 -2112 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247180" + "plane" "(384 -2112 560) (623 -2112 560) (623 -2000 560)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247181" + "plane" "(384 -2000 576) (384 -2112 576) (384 -2112 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247182" + "plane" "(623 -2000 560) (623 -2112 560) (623 -2112 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" "247183" + "plane" "(623 -2000 576) (384 -2000 576) (384 -2000 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" "247184" + "plane" "(623 -2112 560) (384 -2112 560) (384 -2112 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" + } + editor + { + "color" "0 134 203" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1184944" + side + { + "id" "247196" + "plane" "(-1088 -3184 -24) (-1088 -2912 -24) (-560 -2912 -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" + } + side + { + "id" "247197" + "plane" "(-1088 -2912 -32) (-1088 -3184 -32) (-560 -3184 -32)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247198" + "plane" "(-1088 -3184 -32) (-1088 -2912 -32) (-1088 -2912 -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" "247199" + "plane" "(-560 -2912 -32) (-560 -3184 -32) (-560 -3184 -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" "247200" + "plane" "(-1088 -2912 -32) (-560 -2912 -32) (-560 -2912 -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" "247201" + "plane" "(-560 -3184 -32) (-1088 -3184 -32) (-1088 -3184 -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 114 247" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185923" + side + { + "id" "247387" + "plane" "(-2136 -2000 400) (-3384 -2000 400) (-3384 -1984 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" "247386" + "plane" "(-3384 -1984 208) (-3384 -1984 400) (-3384 -2000 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247385" + "plane" "(-2136 -1984 400) (-3384 -1984 400) (-3384 -1984 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" "247384" + "plane" "(-2136 -2000 208) (-3384 -2000 208) (-3384 -2000 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247383" + "plane" "(-2136 -1984 208) (-3384 -1984 208) (-3384 -2000 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" "247382" + "plane" "(-2136 -2000 208) (-2136 -2000 400) (-2136 -1984 400)" + "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 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185931" + side + { + "id" "247399" + "plane" "(-2136 -2000 416) (-3384 -2000 416) (-3384 -1984 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" "247398" + "plane" "(-2136 -1984 400) (-3384 -1984 400) (-3384 -2000 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247397" + "plane" "(-3384 -2000 400) (-3384 -1984 400) (-3384 -1984 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" "247396" + "plane" "(-3384 -1984 400) (-2136 -1984 400) (-2136 -1984 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" "247395" + "plane" "(-2136 -2000 400) (-3384 -2000 400) (-3384 -2000 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247394" + "plane" "(-2136 -1984 400) (-2136 -2000 400) (-2136 -2000 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" + } + editor + { + "color" "0 142 215" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186063" + side + { + "id" "247615" + "plane" "(-952 -1984 400) (-537 -1984 400) (-537 -2000 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" "247614" + "plane" "(-537 -2000 208) (-537 -2000 400) (-537 -1984 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247613" + "plane" "(-952 -1984 208) (-537 -1984 208) (-537 -1984 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247612" + "plane" "(-952 -2000 400) (-537 -2000 400) (-537 -2000 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247611" + "plane" "(-952 -2000 208) (-537 -2000 208) (-537 -1984 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" "247610" + "plane" "(-952 -1984 208) (-952 -1984 400) (-952 -2000 400)" + "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 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186072" + side + { + "id" "247627" + "plane" "(-952 -1984 416) (-537 -1984 416) (-537 -2000 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" "247626" + "plane" "(-952 -2000 400) (-537 -2000 400) (-537 -1984 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247625" + "plane" "(-537 -1984 400) (-537 -2000 400) (-537 -2000 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" "247624" + "plane" "(-952 -1984 400) (-537 -1984 400) (-537 -1984 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" "247623" + "plane" "(-537 -2000 400) (-952 -2000 400) (-952 -2000 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247622" + "plane" "(-952 -2000 400) (-952 -1984 400) (-952 -1984 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" + } + editor + { + "color" "0 142 215" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186357" + side + { + "id" "247993" + "plane" "(-304 -1920 -48) (-521 -1920 -48) (-521 -1936 -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" "247992" + "plane" "(-521 -1936 -16) (-521 -1936 -48) (-521 -1920 -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" "247991" + "plane" "(-521 -1920 -16) (-521 -1920 -48) (-304 -1920 -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" "247990" + "plane" "(-304 -1936 -48) (-521 -1936 -48) (-521 -1936 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247989" + "plane" "(-304 -1936 -16) (-521 -1936 -16) (-521 -1920 -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" "247988" + "plane" "(-304 -1920 -16) (-304 -1920 -48) (-304 -1936 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186372" + side + { + "id" "248023" + "plane" "(-112 -1920 -16) (136 -1920 -16) (136 -1920 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" "248022" + "plane" "(136 -1936 -16) (-112 -1936 -16) (-112 -1936 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248021" + "plane" "(136 -1920 -16) (-112 -1920 -16) (-112 -1936 -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" "248020" + "plane" "(136 -1936 192) (-112 -1936 192) (-112 -1920 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" "248019" + "plane" "(136 -1920 192) (136 -1920 -16) (136 -1936 -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" "248018" + "plane" "(-112 -1936 192) (-112 -1936 -16) (-112 -1920 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186774" + side + { + "id" "248761" + "plane" "(-537 -1984 192) (-537 -1984 -16) (-537 -2000 -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" "248760" + "plane" "(-832 -1984 -16) (-537 -1984 -16) (-537 -1984 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" "248759" + "plane" "(-537 -2000 192) (-537 -2000 -16) (-832 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248758" + "plane" "(-832 -1984 192) (-537 -1984 192) (-537 -2000 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" "248757" + "plane" "(-832 -2000 -16) (-537 -2000 -16) (-537 -1984 -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" "248756" + "plane" "(-832 -2000 192) (-832 -2000 -16) (-832 -1984 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -447.999] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186776" + side + { + "id" "248773" + "plane" "(-832 -2000 -24) (-537 -2000 -24) (-537 -1984 -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" + } + side + { + "id" "248772" + "plane" "(-537 -1984 -16) (-537 -1984 -24) (-537 -2000 -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" "248771" + "plane" "(-832 -1984 -24) (-537 -1984 -24) (-537 -1984 -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" "248770" + "plane" "(-537 -2000 -16) (-537 -2000 -24) (-832 -2000 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248769" + "plane" "(-832 -1984 -16) (-537 -1984 -16) (-537 -2000 -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" "248768" + "plane" "(-832 -2000 -16) (-832 -2000 -24) (-832 -1984 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -447.999] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186970" + side + { + "id" "248989" + "plane" "(-1200 -2000 400) (-2032 -2000 400) (-2032 -1984 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" "248988" + "plane" "(-2032 -1984 208) (-1200 -1984 208) (-1200 -1984 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248987" + "plane" "(-1200 -2000 208) (-2032 -2000 208) (-2032 -2000 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248986" + "plane" "(-1200 -1984 208) (-2032 -1984 208) (-2032 -2000 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" "248985" + "plane" "(-2032 -1984 208) (-2032 -1984 400) (-2032 -2000 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248984" + "plane" "(-1200 -2000 208) (-1200 -2000 400) (-1200 -1984 400)" + "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 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186977" + side + { + "id" "249001" + "plane" "(-1200 -2000 416) (-2032 -2000 416) (-2032 -1984 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" "249000" + "plane" "(-1200 -1984 400) (-2032 -1984 400) (-2032 -2000 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248999" + "plane" "(-2032 -1984 400) (-1200 -1984 400) (-1200 -1984 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" "248998" + "plane" "(-1200 -2000 400) (-2032 -2000 400) (-2032 -2000 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248997" + "plane" "(-2032 -2000 400) (-2032 -1984 400) (-2032 -1984 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" "248996" + "plane" "(-1200 -1984 400) (-1200 -2000 400) (-1200 -2000 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" + } + editor + { + "color" "0 142 215" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1187303" + side + { + "id" "249427" + "plane" "(624 -1824 400) (624 -1824 208) (624 -1872 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" "249426" + "plane" "(-521 -1824 208) (624 -1824 208) (624 -1824 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249425" + "plane" "(624 -1872 400) (624 -1872 208) (-521 -1872 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249424" + "plane" "(-521 -1824 400) (624 -1824 400) (624 -1872 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" "249423" + "plane" "(-521 -1872 208) (624 -1872 208) (624 -1824 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" "249422" + "plane" "(-521 -1872 400) (-521 -1872 208) (-521 -1824 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 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1187311" + side + { + "id" "249439" + "plane" "(-521 -1856 416) (624 -1856 416) (624 -1872 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" "249438" + "plane" "(624 -1872 400) (624 -1872 416) (624 -1856 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" "249437" + "plane" "(-521 -1856 400) (624 -1856 400) (624 -1856 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" "249436" + "plane" "(-521 -1872 416) (624 -1872 416) (624 -1872 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "249435" + "plane" "(-521 -1872 400) (624 -1872 400) (624 -1856 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" "249434" + "plane" "(-521 -1856 400) (-521 -1856 416) (-521 -1872 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" + } + editor + { + "color" "0 135 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1178917" + side + { + "id" "247004" + "plane" "(640 -1920 144) (640 -2128 144) (640 -2128 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247003" + "plane" "(640 -2128 192) (640 -2128 144) (624 -2112 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" "247002" + "plane" "(624 -2112 192) (624 -2112 144) (624 -1920 144)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247001" + "plane" "(640 -1920 192) (640 -2128 192) (624 -2112 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" "247000" + "plane" "(640 -2128 144) (640 -1920 144) (624 -1920 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246999" + "plane" "(624 -1920 192) (624 -1920 144) (640 -1920 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1178919" + side + { + "id" "247016" + "plane" "(640 -1920 192) (640 -2128 192) (640 -2128 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -57.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247015" + "plane" "(640 -2128 208) (640 -2128 192) (624 -2112 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" "247014" + "plane" "(624 -2112 208) (624 -2112 192) (624 -1920 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247013" + "plane" "(640 -1920 208) (640 -2128 208) (624 -2112 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" "247012" + "plane" "(640 -2128 192) (640 -1920 192) (624 -1920 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" "247011" + "plane" "(624 -1920 208) (624 -1920 192) (640 -1920 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1165855" + side + { + "id" "246246" + "plane" "(224 -2896 144) (224 -2392 144) (264 -2392 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246247" + "plane" "(224 -2392 0) (224 -2896 0) (264 -2896 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246248" + "plane" "(224 -2896 0) (224 -2392 0) (224 -2392 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246249" + "plane" "(264 -2392 0) (264 -2896 0) (264 -2896 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246250" + "plane" "(224 -2392 0) (264 -2392 0) (264 -2392 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246251" + "plane" "(264 -2896 0) (224 -2896 0) (224 -2896 144)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 239 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1165881" + side + { + "id" "246257" + "plane" "(432 -2640 0) (288 -2640 0) (288 -2434 0)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246256" + "plane" "(288 -2434 -32) (288 -2640 -32) (432 -2640 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246255" + "plane" "(288 -2640 -32) (288 -2434 -32) (288 -2434 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 5.99805] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246254" + "plane" "(432 -2640 -32) (288 -2640 -32) (288 -2640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246253" + "plane" "(432 -2434 -32) (432 -2640 -32) (432 -2640 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" "246252" + "plane" "(288 -2434 -32) (432 -2434 -32) (432 -2434 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 14] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1165964" + side + { + "id" "246968" + "plane" "(352 -2112 -24) (352 -1920 -24) (624 -1920 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246967" + "plane" "(624 -1920 -32) (352 -1920 -32) (352 -2112 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246966" + "plane" "(352 -1920 -32) (624 -1920 -32) (624 -1920 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246965" + "plane" "(352 -2112 -32) (352 -1920 -32) (352 -1920 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 5.99805] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246964" + "plane" "(624 -1920 -32) (624 -2112 -32) (624 -2112 -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" "246963" + "plane" "(624 -2112 -32) (352 -2112 -32) (352 -2112 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1165973" + side + { + "id" "246311" + "plane" "(-128 -2624 -24) (224 -2624 -24) (224 -2628 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 -204.804] 0.078125" + "vaxis" "[1 0 0 292.572] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "246310" + "plane" "(-128 -2628 -56) (224 -2628 -56) (224 -2624 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246309" + "plane" "(224 -2624 -24) (-128 -2624 -24) (-128 -2624 -56)" + "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" "246308" + "plane" "(-128 -2628 -24) (224 -2628 -24) (224 -2628 -56)" + "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" "246307" + "plane" "(224 -2628 -24) (224 -2624 -24) (224 -2624 -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" + } + side + { + "id" "246306" + "plane" "(-128 -2624 -24) (-128 -2628 -24) (-128 -2628 -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" "157 186 0" + "groupid" "1165972" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1165974" + side + { + "id" "246317" + "plane" "(-128 -2667 -24) (-128 -2628 -24) (224 -2628 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_002" + "uaxis" "[0 1 0 -204.804] 0.078125" + "vaxis" "[1 0 0 292.572] 0.109375" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "246316" + "plane" "(-128 -2628 -56) (-128 -2667 -56) (224 -2667 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246315" + "plane" "(-128 -2667 -56) (-128 -2628 -56) (-128 -2628 -24)" + "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" "246314" + "plane" "(224 -2628 -56) (224 -2667 -56) (224 -2667 -24)" + "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" "246313" + "plane" "(-128 -2628 -56) (224 -2628 -56) (224 -2628 -24)" + "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" "246312" + "plane" "(224 -2667 -56) (-128 -2667 -56) (-128 -2667 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 186 0" + "groupid" "1165972" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166024" + side + { + "id" "246353" + "plane" "(248 -2896 -24) (-32 -2896 -24) (-32 -2667 -24)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_DARK" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 -88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246352" + "plane" "(-32 -2667 -40) (-32 -2896 -40) (248 -2896 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246351" + "plane" "(-32 -2896 -40) (-32 -2667 -40) (-32 -2667 -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" "246350" + "plane" "(248 -2896 -40) (-32 -2896 -40) (-32 -2896 -24)" + "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" "246349" + "plane" "(248 -2667 -40) (248 -2896 -40) (248 -2896 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246348" + "plane" "(-32 -2667 -40) (248 -2667 -40) (248 -2667 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166511" + side + { + "id" "246455" + "plane" "(432 -2692 0) (432 -2682 0) (480 -2682 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246454" + "plane" "(432 -2682 -32) (432 -2692 -32) (480 -2692 -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" "246453" + "plane" "(432 -2692 -32) (432 -2682 -32) (432 -2682 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" "246452" + "plane" "(480 -2682 -32) (480 -2692 -32) (480 -2692 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" "246451" + "plane" "(432 -2682 -32) (480 -2682 -32) (480 -2682 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" "246450" + "plane" "(480 -2692 -32) (432 -2692 -32) (432 -2692 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166535" + side + { + "id" "246467" + "plane" "(432 -2700 0) (432 -2692 0) (480 -2692 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246466" + "plane" "(432 -2692 -32) (432 -2700 -32) (480 -2700 -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" "246465" + "plane" "(432 -2700 -32) (432 -2692 -32) (432 -2692 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" "246464" + "plane" "(480 -2692 -32) (480 -2700 -32) (480 -2700 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" "246463" + "plane" "(432 -2692 -32) (480 -2692 -32) (480 -2692 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246462" + "plane" "(480 -2700 -32) (432 -2700 -32) (432 -2700 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 220 193" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166576" + side + { + "id" "246485" + "plane" "(288 -2692 0) (288 -2640 0) (432 -2640 0)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246484" + "plane" "(288 -2640 -32) (288 -2692 -32) (432 -2692 -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" "246483" + "plane" "(432 -2640 -32) (432 -2692 -32) (432 -2692 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" "246482" + "plane" "(288 -2692 -32) (288 -2640 -32) (288 -2640 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" "246481" + "plane" "(288 -2640 -32) (432 -2640 -32) (432 -2640 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" "246480" + "plane" "(432 -2692 -32) (288 -2692 -32) (288 -2692 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166577" + side + { + "id" "246491" + "plane" "(288 -2700 0) (288 -2692 0) (432 -2692 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246490" + "plane" "(288 -2692 -32) (288 -2700 -32) (432 -2700 -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" "246489" + "plane" "(432 -2692 -32) (432 -2700 -32) (432 -2700 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" "246488" + "plane" "(288 -2700 -32) (288 -2692 -32) (288 -2692 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" "246487" + "plane" "(432 -2700 -32) (288 -2700 -32) (288 -2700 0)" + "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" "246486" + "plane" "(288 -2692 -32) (432 -2692 -32) (432 -2692 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166626" + side + { + "id" "250145" + "plane" "(264 -2896 0) (224 -2896 0) (224 -2392 0)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250144" + "plane" "(264 -2392 -32) (224 -2392 -32) (224 -2896 -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" "250143" + "plane" "(264 -2896 -32) (224 -2896 -32) (224 -2896 0)" + "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" "250142" + "plane" "(224 -2896 -32) (224 -2392 -32) (224 -2392 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250141" + "plane" "(224 -2392 -32) (264 -2392 -32) (264 -2392 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250140" + "plane" "(264 -2392 -32) (264 -2896 -32) (264 -2896 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "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 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166637" + side + { + "id" "246515" + "plane" "(288 -2692 0) (288 -2700 0) (264 -2700 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246514" + "plane" "(264 -2692 -32) (264 -2700 -32) (288 -2700 -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" "246513" + "plane" "(288 -2692 -32) (288 -2700 -32) (288 -2700 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" "246512" + "plane" "(288 -2700 -32) (264 -2700 -32) (264 -2700 0)" + "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" "246511" + "plane" "(264 -2700 -32) (264 -2692 -32) (264 -2692 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246510" + "plane" "(264 -2692 -32) (288 -2692 -32) (288 -2692 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166640" + side + { + "id" "246521" + "plane" "(272 -2434 0) (288 -2434 0) (288 -2692 0)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246520" + "plane" "(288 -2692 -32) (288 -2434 -32) (272 -2434 -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" "246519" + "plane" "(288 -2434 -32) (288 -2692 -32) (288 -2692 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" "246518" + "plane" "(272 -2434 -32) (288 -2434 -32) (288 -2434 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246517" + "plane" "(288 -2692 -32) (272 -2692 -32) (272 -2692 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246516" + "plane" "(272 -2692 -32) (272 -2434 -32) (272 -2434 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 156" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166641" + side + { + "id" "250151" + "plane" "(272 -2692 0) (264 -2692 0) (264 -2392 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250150" + "plane" "(272 -2392 -32) (264 -2392 -32) (264 -2692 -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" "250149" + "plane" "(264 -2392 -32) (272 -2392 -32) (272 -2392 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250148" + "plane" "(264 -2692 -32) (264 -2392 -32) (264 -2392 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250147" + "plane" "(272 -2692 -32) (264 -2692 -32) (264 -2692 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250146" + "plane" "(272 -2392 -32) (272 -2692 -32) (272 -2692 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 107 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1159630" + side + { + "id" "245869" + "plane" "(-3384 -2896 208) (-3384 -2000 208) (-3368 -2000 208)" + "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" "245870" + "plane" "(-3384 -2000 192) (-3384 -2896 192) (-3368 -2896 192)" + "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" "245871" + "plane" "(-3384 -2896 192) (-3384 -2000 192) (-3384 -2000 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" "245872" + "plane" "(-3368 -2000 192) (-3368 -2896 192) (-3368 -2896 208)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245873" + "plane" "(-3384 -2000 192) (-3368 -2000 192) (-3368 -2000 208)" + "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" "245874" + "plane" "(-3368 -2896 192) (-3384 -2896 192) (-3384 -2896 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 251" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1159632" + side + { + "id" "245875" + "plane" "(-3384 -2896 400) (-3384 -2000 400) (-3368 -2000 400)" + "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" "245876" + "plane" "(-3384 -2000 208) (-3384 -2896 208) (-3368 -2896 208)" + "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" "245877" + "plane" "(-3384 -2896 208) (-3384 -2000 208) (-3384 -2000 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245878" + "plane" "(-3368 -2000 208) (-3368 -2896 208) (-3368 -2896 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245879" + "plane" "(-3384 -2000 208) (-3368 -2000 208) (-3368 -2000 400)" + "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" "245880" + "plane" "(-3368 -2896 208) (-3384 -2896 208) (-3384 -2896 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 222 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1159682" + side + { + "id" "245893" + "plane" "(-3384 -2896 576) (-3384 -2000 576) (-3368 -2000 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245894" + "plane" "(-3384 -2000 416) (-3384 -2896 416) (-3368 -2896 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" "245895" + "plane" "(-3384 -2896 416) (-3384 -2000 416) (-3384 -2000 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" "245896" + "plane" "(-3368 -2000 416) (-3368 -2896 416) (-3368 -2896 576)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245897" + "plane" "(-3384 -2000 416) (-3368 -2000 416) (-3368 -2000 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" "245898" + "plane" "(-3368 -2896 416) (-3384 -2896 416) (-3384 -2896 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" + } + editor + { + "color" "0 226 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1159684" + side + { + "id" "245899" + "plane" "(-3384 -2896 416) (-3384 -2000 416) (-3368 -2000 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" "245900" + "plane" "(-3384 -2000 400) (-3384 -2896 400) (-3368 -2896 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" "245901" + "plane" "(-3384 -2896 400) (-3384 -2000 400) (-3384 -2000 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" "245902" + "plane" "(-3368 -2000 400) (-3368 -2896 400) (-3368 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 1 0 -448] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245903" + "plane" "(-3384 -2000 400) (-3368 -2000 400) (-3368 -2000 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" "245904" + "plane" "(-3368 -2896 400) (-3384 -2896 400) (-3384 -2896 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 162 139" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1159748" + side + { + "id" "245940" + "plane" "(-3384 -2000 208) (-3384 -2000 192) (-3384 -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" "245939" + "plane" "(-537 -1984 208) (-537 -1984 192) (-537 -2000 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" "245938" + "plane" "(-3384 -1984 208) (-3384 -1984 192) (-537 -1984 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" "245937" + "plane" "(-537 -2000 208) (-537 -2000 192) (-3384 -2000 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245936" + "plane" "(-3384 -1984 192) (-3384 -2000 192) (-537 -2000 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" "245935" + "plane" "(-3384 -2000 208) (-3384 -1984 208) (-537 -1984 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" + } + editor + { + "color" "0 242 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1160163" + side + { + "id" "339938" + "plane" "(-1024 -2896 -32) (-1024 -2912 -32) (-648 -2912 -32)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339937" + "plane" "(-1024 -2912 -16) (-1024 -2912 -32) (-1024 -2896 -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" "339936" + "plane" "(-648 -2896 -16) (-648 -2896 -32) (-648 -2912 -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" "339935" + "plane" "(-1024 -2896 -16) (-1024 -2896 -32) (-648 -2896 -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" "339934" + "plane" "(-648 -2912 -16) (-648 -2912 -32) (-1024 -2912 -32)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[1 0 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339933" + "plane" "(-1024 -2912 -16) (-1024 -2896 -16) (-648 -2896 -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" + } + editor + { + "color" "0 250 123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150221" + side + { + "id" "243970" + "plane" "(-560 -3550 -16) (-560 -3296 -16) (-144 -3296 -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" "243971" + "plane" "(-560 -3296 -32) (-560 -3550 -32) (-144 -3550 -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" "243972" + "plane" "(-560 -3550 -32) (-560 -3296 -32) (-560 -3296 -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" "243973" + "plane" "(-144 -3296 -32) (-144 -3550 -32) (-144 -3550 -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" "243974" + "plane" "(-560 -3296 -32) (-144 -3296 -32) (-144 -3296 -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" "243975" + "plane" "(-144 -3550 -32) (-560 -3550 -32) (-560 -3550 -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 101" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150222" + side + { + "id" "243976" + "plane" "(-1088 -3328 -16) (-560 -3328 -16) (-560 -3550 -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" "243977" + "plane" "(-1088 -3550 -32) (-560 -3550 -32) (-560 -3328 -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" "243978" + "plane" "(-1088 -3328 -16) (-1088 -3550 -16) (-1088 -3550 -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" "243979" + "plane" "(-560 -3328 -32) (-560 -3550 -32) (-560 -3550 -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" "243980" + "plane" "(-560 -3328 -16) (-1088 -3328 -16) (-1088 -3328 -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" "243981" + "plane" "(-560 -3550 -32) (-1088 -3550 -32) (-1088 -3550 -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 122 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150223" + side + { + "id" "243982" + "plane" "(-1088 -3184 -16) (-560 -3184 -16) (-560 -3328 -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" "243983" + "plane" "(-1088 -3328 -32) (-560 -3328 -32) (-560 -3184 -32)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243984" + "plane" "(-1088 -3184 -16) (-1088 -3328 -16) (-1088 -3328 -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" "243985" + "plane" "(-560 -3184 -32) (-560 -3328 -32) (-560 -3328 -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" "243986" + "plane" "(-560 -3184 -16) (-1088 -3184 -16) (-1088 -3184 -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" "243987" + "plane" "(-560 -3328 -32) (-1088 -3328 -32) (-1088 -3328 -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 192 101" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150225" + side + { + "id" "243988" + "plane" "(-1088 -3184 -16) (-1088 -2912 -16) (-1024 -2912 -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" "243989" + "plane" "(-1088 -2912 -24) (-1088 -3184 -24) (-1024 -3184 -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" + } + side + { + "id" "243990" + "plane" "(-1088 -3184 -24) (-1088 -2912 -24) (-1088 -2912 -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" "243991" + "plane" "(-1024 -2912 -24) (-1024 -3184 -24) (-1024 -3184 -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" "243992" + "plane" "(-1088 -2912 -24) (-1024 -2912 -24) (-1024 -2912 -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" "243993" + "plane" "(-1024 -3184 -24) (-1088 -3184 -24) (-1088 -3184 -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 228 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150233" + side + { + "id" "244000" + "plane" "(-1104 -3168 240) (-1104 -2912 240) (-1024 -2912 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244001" + "plane" "(-1104 -2912 32) (-1104 -3168 32) (-1024 -3168 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244002" + "plane" "(-1104 -3168 32) (-1104 -2912 32) (-1104 -2912 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244003" + "plane" "(-1024 -2912 32) (-1024 -3168 32) (-1024 -3168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244004" + "plane" "(-1104 -2912 32) (-1024 -2912 32) (-1024 -2912 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244005" + "plane" "(-1024 -3168 32) (-1104 -3168 32) (-1104 -3168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 160 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150235" + side + { + "id" "244012" + "plane" "(-1088 -3168 0) (-1024 -3168 0) (-1024 -3184 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "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" "[-1088 -3184 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 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" + } + 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 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" + } + 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" "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" "244013" + "plane" "(-1088 -3184 -16) (-1024 -3184 -16) (-1024 -3168 -16)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244014" + "plane" "(-1088 -3168 0) (-1088 -3184 0) (-1088 -3184 -16)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244015" + "plane" "(-1024 -3168 -16) (-1024 -3184 -16) (-1024 -3184 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244016" + "plane" "(-1024 -3168 0) (-1088 -3168 0) (-1088 -3168 -16)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244017" + "plane" "(-1024 -3184 -16) (-1088 -3184 -16) (-1088 -3184 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "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 153" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150608" + side + { + "id" "244316" + "plane" "(-376 -2896 400) (24 -2896 400) (24 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[-1 0 0 -447.997] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244315" + "plane" "(24 -2912 400) (-376 -2912 400) (-376 -2912 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244314" + "plane" "(24 -2912 416) (-376 -2912 416) (-376 -2896 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" "244313" + "plane" "(24 -2896 400) (-376 -2896 400) (-376 -2912 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" "244312" + "plane" "(24 -2896 416) (24 -2896 400) (24 -2912 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244311" + "plane" "(-376 -2912 416) (-376 -2912 400) (-376 -2896 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "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 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150821" + side + { + "id" "244556" + "plane" "(-900 -3164 0) (-900 -3124 0) (-660 -3124 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 -926] 0.125" + "vaxis" "[0 -1 0 -130] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244555" + "plane" "(-900 -3124 -16) (-900 -3164 -16) (-660 -3164 -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" "244554" + "plane" "(-900 -3164 -16) (-900 -3124 -16) (-900 -3124 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244553" + "plane" "(-660 -3124 -16) (-660 -3164 -16) (-660 -3164 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244552" + "plane" "(-900 -3124 -16) (-660 -3124 -16) (-660 -3124 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244551" + "plane" "(-660 -3164 -16) (-900 -3164 -16) (-900 -3164 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150820" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150822" + side + { + "id" "244562" + "plane" "(-900 -3124 0) (-904 -3120 0) (-656 -3120 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 443] 0.125" + "vaxis" "[1 0 0 381] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244561" + "plane" "(-656 -3120 -16) (-904 -3120 -16) (-900 -3124 -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" "244560" + "plane" "(-904 -3120 -16) (-656 -3120 -16) (-656 -3120 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" "244559" + "plane" "(-900 -3124 -16) (-904 -3120 -16) (-904 -3120 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244558" + "plane" "(-656 -3120 -16) (-660 -3124 -16) (-660 -3124 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244557" + "plane" "(-660 -3124 -16) (-900 -3124 -16) (-900 -3124 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150820" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150823" + side + { + "id" "244568" + "plane" "(-660 -3164 0) (-660 -3124 0) (-656 -3120 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 -926] 0.125" + "vaxis" "[0 -1 0 -130] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244567" + "plane" "(-660 -3123.99 -16) (-660 -3164 -16) (-656 -3168 -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" "244566" + "plane" "(-660 -3164 -16) (-660 -3164 0) (-656 -3168 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" "244565" + "plane" "(-656 -3119.99 -16) (-656 -3120 0) (-660 -3124 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244564" + "plane" "(-656 -3168 -16) (-656 -3168 0) (-656 -3120 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244563" + "plane" "(-660 -3123.99 -16) (-660 -3124 0) (-660 -3164 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150820" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150824" + side + { + "id" "244574" + "plane" "(-904 -3168 0) (-900 -3164 0) (-660 -3164 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 792] 0.125" + "vaxis" "[1 0 0 366] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244573" + "plane" "(-900 -3164 -16) (-904 -3168 -16) (-656 -3168 -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" "244572" + "plane" "(-904 -3168 -16) (-900 -3164 -16) (-900 -3164 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244571" + "plane" "(-660 -3164 -16) (-656 -3168 -16) (-656 -3168 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244570" + "plane" "(-656 -3168 -16) (-904 -3168 -16) (-904 -3168 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244569" + "plane" "(-900 -3164 -16) (-660 -3164 -16) (-660 -3164 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150820" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150825" + side + { + "id" "244580" + "plane" "(-904 -3168 0) (-904 -3120 0) (-900 -3124 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244579" + "plane" "(-900 -3164 -16) (-900 -3124 -16) (-904 -3120 -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" "244578" + "plane" "(-904 -3120 -16) (-900 -3124 -16) (-900 -3124 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244577" + "plane" "(-904 -3168 -16) (-904 -3120 -16) (-904 -3120 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244576" + "plane" "(-900 -3124 -16) (-900 -3164 -16) (-900 -3164 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244575" + "plane" "(-900 -3164 -16) (-904 -3168 -16) (-904 -3168 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150820" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150894" + side + { + "id" "244605" + "plane" "(-984 -3184 0) (-984 -3168 0) (-656 -3168 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 832] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244606" + "plane" "(-984 -3168 -16) (-984 -3184 -16) (-656 -3184 -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" "244607" + "plane" "(-984 -3184 -16) (-984 -3168 -16) (-984 -3168 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" "244608" + "plane" "(-656 -3168 -16) (-656 -3184 -16) (-656 -3184 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" "244609" + "plane" "(-984 -3168 -16) (-656 -3168 -16) (-656 -3168 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" "244610" + "plane" "(-656 -3184 -16) (-984 -3184 -16) (-984 -3184 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 162 251" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150904" + side + { + "id" "244646" + "plane" "(-642 -2956 0) (-642 -2916 0) (-402 -2916 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 -13.4955] 0.117" + "vaxis" "[0 -1 0 743] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244645" + "plane" "(-642 -2916 -16) (-642 -2956 -16) (-402 -2956 -16)" + "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" "244644" + "plane" "(-642 -2956 -16) (-642 -2916 -16) (-642 -2916 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244643" + "plane" "(-402 -2916 -16) (-402 -2956 -16) (-402 -2956 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244642" + "plane" "(-642 -2916 -16) (-402 -2916 -16) (-402 -2916 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 -136] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244641" + "plane" "(-402 -2956 -16) (-642 -2956 -16) (-642 -2956 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 -136] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150903" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150905" + side + { + "id" "244652" + "plane" "(-642 -2916 0) (-646 -2912 0) (-398 -2912 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 -197] 0.125" + "vaxis" "[1 0 0 -275] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244651" + "plane" "(-398 -2912 -16) (-646 -2912 -16) (-642 -2916 -16)" + "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" "244650" + "plane" "(-646 -2912 -16) (-398 -2912 -16) (-398 -2912 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244649" + "plane" "(-642 -2916 -16) (-646 -2912 -16) (-646 -2912 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244648" + "plane" "(-398 -2912 -16) (-402 -2916 -16) (-402 -2916 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244647" + "plane" "(-402 -2916 -16) (-642 -2916 -16) (-642 -2916 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 -136] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150903" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150906" + side + { + "id" "244658" + "plane" "(-398 -2960 0) (-402 -2956 0) (-402 -2915 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 91] 0.125" + "vaxis" "[0 -1 0 510] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244657" + "plane" "(-398 -2912 -16) (-402 -2915 -16) (-402 -2956 -16)" + "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" "244656" + "plane" "(-398 -2960 -16) (-402 -2956 -16) (-402 -2956 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244655" + "plane" "(-402 -2915 -16) (-398 -2912 -16) (-398 -2912 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 -136] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244654" + "plane" "(-398 -2912 -16) (-398 -2960 -16) (-398 -2960 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244653" + "plane" "(-402 -2956 -16) (-402 -2915 -16) (-402 -2915 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150903" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150907" + side + { + "id" "244664" + "plane" "(-646 -2960 0) (-642 -2956 0) (-402 -2956 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 -872] 0.125" + "vaxis" "[1 0 0 -290] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244663" + "plane" "(-642 -2956 -16) (-646 -2960 -16) (-398 -2960 -16)" + "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" "244662" + "plane" "(-646 -2960 -16) (-642 -2956 -16) (-642 -2956 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244661" + "plane" "(-402 -2956 -16) (-398 -2960 -16) (-398 -2960 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244660" + "plane" "(-398 -2960 -16) (-646 -2960 -16) (-646 -2960 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244659" + "plane" "(-642 -2956 -16) (-402 -2956 -16) (-402 -2956 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 -136] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150903" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150908" + side + { + "id" "244670" + "plane" "(-646 -2960 0) (-646 -2912 0) (-642 -2916 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 70] 0.125" + "vaxis" "[0 -1 0 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244669" + "plane" "(-642 -2956 -16) (-642 -2916 -16) (-646 -2912 -16)" + "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" "244668" + "plane" "(-646 -2912 -16) (-642 -2916 -16) (-642 -2916 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[1 0 0 -136] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244667" + "plane" "(-646 -2960 -16) (-646 -2912 -16) (-646 -2912 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244666" + "plane" "(-642 -2916 -16) (-642 -2956 -16) (-642 -2956 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244665" + "plane" "(-642 -2956 -16) (-646 -2960 -16) (-646 -2960 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 -136] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1150903" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150947" + side + { + "id" "244688" + "plane" "(-646 -2960 0) (-398 -2960 0) (-398 -3120 0)" + "material" "FLOORS/HR_C/HR_FLOOR_TILE_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244687" + "plane" "(-646 -3120 -16) (-398 -3120 -16) (-398 -2960 -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" "244686" + "plane" "(-646 -2960 -16) (-398 -2960 -16) (-398 -2960 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" "244685" + "plane" "(-398 -3120 -16) (-646 -3120 -16) (-646 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244684" + "plane" "(-646 -3120 -16) (-646 -2960 -16) (-646 -2960 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244683" + "plane" "(-398 -2960 -16) (-398 -3120 -16) (-398 -3120 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 170" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151175" + side + { + "id" "244695" + "plane" "(-648 -2912 0) (-648 -2896 0) (-398 -2896 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 832] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244696" + "plane" "(-648 -2896 -16) (-648 -2912 -16) (-398 -2912 -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" "244697" + "plane" "(-648 -2912 -16) (-648 -2896 -16) (-648 -2896 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" "244698" + "plane" "(-398 -2896 -16) (-398 -2912 -16) (-398 -2912 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" "244699" + "plane" "(-648 -2896 -16) (-398 -2896 -16) (-398 -2896 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" "244700" + "plane" "(-398 -2912 -16) (-648 -2912 -16) (-648 -2912 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 230 187" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151647" + side + { + "id" "245337" + "plane" "(480 -2434 0) (496 -2434 0) (496 -2682 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245338" + "plane" "(480 -2682 -16) (496 -2682 -16) (496 -2434 -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" "245339" + "plane" "(480 -2434 0) (480 -2682 0) (480 -2682 -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" "245340" + "plane" "(496 -2434 -16) (496 -2682 -16) (496 -2682 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245341" + "plane" "(496 -2434 0) (480 -2434 0) (480 -2434 -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" "245342" + "plane" "(496 -2682 -16) (480 -2682 -16) (480 -2682 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 124 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151657" + side + { + "id" "245378" + "plane" "(476 -2678 0) (436 -2678 0) (436 -2438 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 -19.784] 0.117" + "vaxis" "[1 0 0 103.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245377" + "plane" "(436 -2678 -16) (476 -2678 -16) (476 -2438 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245376" + "plane" "(476 -2678 -16) (436 -2678 -16) (436 -2678 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245375" + "plane" "(436 -2438 -16) (476 -2438 -16) (476 -2438 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245374" + "plane" "(436 -2678 -16) (436 -2438 -16) (436 -2438 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 328] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245373" + "plane" "(476 -2438 -16) (476 -2678 -16) (476 -2678 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 840] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1151656" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151658" + side + { + "id" "245384" + "plane" "(436 -2678 0) (432 -2682 0) (432 -2434 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[-1 0 0 -581.002] 0.125" + "vaxis" "[0 1 0 653] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245383" + "plane" "(432 -2434 -16) (432 -2682 -16) (436 -2678 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245382" + "plane" "(432 -2682 -16) (432 -2434 -16) (432 -2434 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245381" + "plane" "(436 -2678 -16) (432 -2682 -16) (432 -2682 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245380" + "plane" "(432 -2434 -16) (436 -2438 -16) (436 -2438 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245379" + "plane" "(436 -2438 -16) (436 -2678 -16) (436 -2678 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" + } + editor + { + "color" "208 213 0" + "groupid" "1151656" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151659" + side + { + "id" "245390" + "plane" "(480 -2434 0) (476 -2438 0) (435 -2438 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 -5] 0.125" + "vaxis" "[1 0 0 -129.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245389" + "plane" "(432 -2434 -16) (435 -2438 -16) (476 -2438 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245388" + "plane" "(480 -2434 -16) (476 -2438 -16) (476 -2438 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245387" + "plane" "(435 -2438 -16) (432 -2434 -16) (432 -2434 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 328] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245386" + "plane" "(432 -2434 -16) (480 -2434 -16) (480 -2434 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245385" + "plane" "(476 -2438 -16) (435 -2438 -16) (435 -2438 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" "208 213 0" + "groupid" "1151656" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151660" + side + { + "id" "245396" + "plane" "(480 -2682 0) (476 -2678 0) (476 -2438 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[-1 0 0 -232.002] 0.125" + "vaxis" "[0 1 0 638] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245395" + "plane" "(476 -2678 -16) (480 -2682 -16) (480 -2434 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245394" + "plane" "(480 -2682 -16) (476 -2678 -16) (476 -2678 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245393" + "plane" "(476 -2438 -16) (480 -2434 -16) (480 -2434 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245392" + "plane" "(480 -2434 -16) (480 -2682 -16) (480 -2682 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -11.9453] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245391" + "plane" "(476 -2678 -16) (476 -2438 -16) (476 -2438 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 840] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1151656" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151661" + side + { + "id" "245402" + "plane" "(480 -2682 0) (432 -2682 0) (436 -2678 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 -26] 0.125" + "vaxis" "[1 0 0 -127.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245401" + "plane" "(476 -2678 -16) (436 -2678 -16) (432 -2682 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245400" + "plane" "(432 -2682 -16) (436 -2678 -16) (436 -2678 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[0 1 0 328] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245399" + "plane" "(480 -2682 -16) (432 -2682 -16) (432 -2682 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 55.6221] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245398" + "plane" "(436 -2678 -16) (476 -2678 -16) (476 -2678 0)" + "material" "CS_APOLLO/FLOOR/BLUE_TINT_CONC" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245397" + "plane" "(476 -2678 -16) (480 -2682 -16) (480 -2682 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[0 1 0 840] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "208 213 0" + "groupid" "1151656" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1152552" + side + { + "id" "245805" + "plane" "(-521 -1872 576) (-521 -1856 576) (624 -1856 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245806" + "plane" "(-521 -1856 416) (-521 -1872 416) (624 -1872 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" "245807" + "plane" "(-521 -1872 416) (-521 -1856 416) (-521 -1856 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" "245808" + "plane" "(624 -1856 416) (624 -1872 416) (624 -1872 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" "245809" + "plane" "(-521 -1856 416) (624 -1856 416) (624 -1856 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" "245810" + "plane" "(624 -1872 416) (-521 -1872 416) (-521 -1872 576)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 140 137" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1152576" + side + { + "id" "245822" + "plane" "(-1747 -2896 208) (-1024 -2896 208) (-1024 -2912 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" "245821" + "plane" "(-1024 -2912 192) (-1024 -2912 208) (-1024 -2896 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" "245820" + "plane" "(-1024 -2896 192) (-1024 -2896 208) (-1747 -2896 208)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245819" + "plane" "(-1747 -2912 192) (-1747 -2912 208) (-1024 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245818" + "plane" "(-1747 -2896 192) (-1747 -2896 208) (-1747 -2912 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" "245817" + "plane" "(-1747 -2912 192) (-1024 -2912 192) (-1024 -2896 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 245 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1143278" + side + { + "id" "242705" + "plane" "(-528 -5392 32) (-240 -5392 32) (-240 -5664 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "242706" + "plane" "(-528 -5664 0) (-240 -5664 0) (-240 -5392 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "242707" + "plane" "(-528 -5392 32) (-528 -5664 32) (-528 -5664 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "242708" + "plane" "(-240 -5392 0) (-240 -5664 0) (-240 -5664 32)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "242709" + "plane" "(-240 -5392 32) (-528 -5392 32) (-528 -5392 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" "242710" + "plane" "(-240 -5664 0) (-528 -5664 0) (-528 -5664 32)" + "material" "DEV/REFLECTIVITY_90B" + "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 164" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144182" + side + { + "id" "242896" + "plane" "(-376 -3184 128) (-376 -2912 128) (-352 -2912 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" "242897" + "plane" "(-376 -2912 0) (-376 -3184 0) (-352 -3184 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" "242898" + "plane" "(-376 -3184 0) (-376 -2912 0) (-376 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[0 1 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "242899" + "plane" "(-352 -2912 0) (-352 -3184 0) (-352 -3184 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "242900" + "plane" "(-376 -2912 0) (-352 -2912 0) (-352 -2912 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" "242901" + "plane" "(-352 -3184 0) (-376 -3184 0) (-376 -3184 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 221 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144209" + side + { + "id" "242920" + "plane" "(-1008 -2912 208) (-368 -2912 208) (-368 -3168 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" "242921" + "plane" "(-1008 -3168 192) (-368 -3168 192) (-368 -2912 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 126] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "242922" + "plane" "(-1008 -2912 208) (-1008 -3168 208) (-1008 -3168 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" "242923" + "plane" "(-368 -2912 192) (-368 -3168 192) (-368 -3168 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" "242924" + "plane" "(-368 -2912 208) (-1008 -2912 208) (-1008 -2912 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" "242925" + "plane" "(-368 -3168 192) (-1008 -3168 192) (-1008 -3168 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" + } + editor + { + "color" "0 163 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144433" + side + { + "id" "243291" + "plane" "(-368 -3184 208) (-368 -2912 208) (-352 -2912 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" "243290" + "plane" "(-368 -2912 192) (-368 -2912 208) (-368 -3184 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" "243289" + "plane" "(-352 -3184 192) (-352 -3184 208) (-352 -2912 208)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 145] 0.125" + "vaxis" "[0 -1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243288" + "plane" "(-352 -2912 192) (-352 -2912 208) (-368 -2912 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" "243287" + "plane" "(-368 -3184 192) (-368 -3184 208) (-352 -3184 208)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 145] 0.125" + "vaxis" "[1 0 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243286" + "plane" "(-368 -2912 192) (-368 -3184 192) (-352 -3184 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 247 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144442" + side + { + "id" "243309" + "plane" "(-1008 -3184 208) (-1008 -3168 208) (-368 -3168 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" "243308" + "plane" "(-1008 -3168 192) (-1008 -3168 208) (-1008 -3184 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" "243307" + "plane" "(-368 -3184 192) (-368 -3184 208) (-368 -3168 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" "243306" + "plane" "(-368 -3168 192) (-368 -3168 208) (-1008 -3168 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" "243305" + "plane" "(-1008 -3184 192) (-1008 -3184 208) (-368 -3184 208)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 145] 0.125" + "vaxis" "[1 0 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243304" + "plane" "(-1008 -3168 192) (-1008 -3184 192) (-368 -3184 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 169 102" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144514" + side + { + "id" "243315" + "plane" "(-904 -3184 128) (-1008 -3184 128) (-1008 -3168 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" "243314" + "plane" "(-904 -3168 0) (-1008 -3168 0) (-1008 -3184 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" "243313" + "plane" "(-1008 -3184 0) (-1008 -3168 0) (-1008 -3168 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" "243312" + "plane" "(-1008 -3168 0) (-904 -3168 0) (-904 -3168 128)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[1 0 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243311" + "plane" "(-904 -3184 0) (-1008 -3184 0) (-1008 -3184 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243310" + "plane" "(-904 -3168 0) (-904 -3184 0) (-904 -3184 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -255.999] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 103 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144515" + side + { + "id" "243321" + "plane" "(-656 -3168 128) (-376 -3168 128) (-376 -3184 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" "243320" + "plane" "(-656 -3184 0) (-376 -3184 0) (-376 -3168 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" "243319" + "plane" "(-376 -3168 0) (-376 -3184 0) (-376 -3184 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" "243318" + "plane" "(-656 -3168 0) (-376 -3168 0) (-376 -3168 128)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[1 0 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243317" + "plane" "(-376 -3184 0) (-656 -3184 0) (-656 -3184 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243316" + "plane" "(-656 -3184 0) (-656 -3168 0) (-656 -3168 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -320] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 103 224" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144529" + side + { + "id" "243333" + "plane" "(-1024 -3184 208) (-1024 -2912 208) (-1008 -2912 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" "243332" + "plane" "(-1024 -2912 192) (-1024 -2912 208) (-1024 -3184 208)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 145] 0.125" + "vaxis" "[0 1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243331" + "plane" "(-1008 -3184 192) (-1008 -3184 208) (-1008 -2912 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREEN" + "uaxis" "[0 1 0 256] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243330" + "plane" "(-1008 -2912 192) (-1008 -2912 208) (-1024 -2912 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" "243329" + "plane" "(-1024 -3184 192) (-1024 -3184 208) (-1008 -3184 208)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 145] 0.125" + "vaxis" "[1 0 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243328" + "plane" "(-1024 -2912 192) (-1024 -3184 192) (-1008 -3184 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 116 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144531" + side + { + "id" "243334" + "plane" "(-1104 -3328 240) (-1104 -3168 240) (-1086 -3168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243335" + "plane" "(-1104 -3168 -2) (-1104 -3328 -2) (-1086 -3328 -2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243336" + "plane" "(-1104 -3328 -2) (-1104 -3168 -2) (-1104 -3168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243337" + "plane" "(-1086 -3168 -2) (-1086 -3328 -2) (-1086 -3328 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243338" + "plane" "(-1104 -3168 -2) (-1086 -3168 -2) (-1086 -3168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243339" + "plane" "(-1086 -3328 -2) (-1104 -3328 -2) (-1104 -3328 240)" + "material" "TOOLS/TOOLSCLIP" + "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 132" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1130302" + side + { + "id" "241313" + "plane" "(1848 -2993 320) (1848 -2721 320) (1896 -2721 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "241314" + "plane" "(1848 -2721 208) (1848 -2993 208) (1896 -2993 208)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "241315" + "plane" "(1848 -2993 208) (1848 -2721 208) (1848 -2721 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "241316" + "plane" "(1896 -2721 208) (1896 -2993 208) (1896 -2993 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "241317" + "plane" "(1848 -2721 208) (1896 -2721 208) (1896 -2721 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "241318" + "plane" "(1896 -2993 208) (1848 -2993 208) (1848 -2993 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 198 175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1100065" + side + { + "id" "240478" + "plane" "(1168 -6624 0) (-64 -6624 0) (-64 -5888 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" "240477" + "plane" "(1200 -5888 -48) (-64 -5888 -48) (-64 -6624 -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" "240476" + "plane" "(-64 -5888 -48) (1200 -5888 -48) (1200 -5888 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" "240475" + "plane" "(1168 -6624 -48) (-64 -6624 -48) (-64 -6624 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240474" + "plane" "(1200 -5888 -48) (1200 -6584 -48) (1200 -6584 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 -1 0 -420.98] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240473" + "plane" "(1200 -6584 -48) (1168 -6624 -48) (1168 -6624 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[-0.624695 -0.780869 0 222.17] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240472" + "plane" "(-64 -6624 -48) (-64 -5888 -48) (-64 -5888 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" + } + editor + { + "color" "0 225 110" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1100086" + side + { + "id" "240485" + "plane" "(-976 -6640 -48) (-976 -5664 -48) (-464 -5664 -48)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240486" + "plane" "(-976 -5664 -80) (-976 -6640 -80) (-464 -6640 -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" "240487" + "plane" "(-976 -6640 -80) (-976 -5664 -80) (-976 -5664 -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" "240488" + "plane" "(-464 -5664 -80) (-464 -6640 -80) (-464 -6640 -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" "240489" + "plane" "(-976 -5664 -80) (-464 -5664 -80) (-464 -5664 -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" "240490" + "plane" "(-464 -6640 -80) (-976 -6640 -80) (-976 -6640 -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 171 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1100092" + side + { + "id" "240491" + "plane" "(-976 -6648 576) (-976 -5600 576) (-464 -5600 576)" + "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" "240492" + "plane" "(-976 -5600 560) (-976 -6648 560) (-464 -6648 560)" + "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" "240493" + "plane" "(-976 -6648 560) (-976 -5600 560) (-976 -5600 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240494" + "plane" "(-464 -5600 560) (-464 -6648 560) (-464 -6648 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240495" + "plane" "(-976 -5600 560) (-464 -5600 560) (-464 -5600 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240496" + "plane" "(-464 -6648 560) (-976 -6648 560) (-976 -6648 576)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 175 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1100098" + side + { + "id" "240497" + "plane" "(-976 -5696 848) (-976 -5600 848) (-464 -5600 848)" + "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" "240498" + "plane" "(-976 -5600 576) (-976 -5696 576) (-464 -5696 576)" + "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" "240499" + "plane" "(-976 -5696 576) (-976 -5600 576) (-976 -5600 848)" + "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" "240500" + "plane" "(-464 -5600 576) (-464 -5696 576) (-464 -5696 848)" + "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" "240501" + "plane" "(-976 -5600 576) (-464 -5600 576) (-464 -5600 848)" + "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" "240502" + "plane" "(-464 -5696 576) (-976 -5696 576) (-976 -5696 848)" + "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" "0 103 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1070730" + side + { + "id" "239879" + "plane" "(-1120 -3344 608) (-1120 -2896 608) (-464 -2896 608)" + "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" "239880" + "plane" "(-1120 -2896 576) (-1120 -3344 576) (-464 -3344 576)" + "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" "239881" + "plane" "(-1120 -3344 576) (-1120 -2896 576) (-1120 -2896 608)" + "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" "239882" + "plane" "(-464 -2896 576) (-464 -3344 576) (-464 -3344 608)" + "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" "239883" + "plane" "(-1120 -2896 576) (-464 -2896 576) (-464 -2896 608)" + "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" "239884" + "plane" "(-464 -3344 576) (-1120 -3344 576) (-1120 -3344 608)" + "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" "0 193 102" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1031927" + side + { + "id" "236410" + "plane" "(-776 -3816 -224) (-776 -4344 -224) (-784 -4352 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "236409" + "plane" "(-784 -4352 -240) (-776 -4344 -240) (-776 -3816 -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" "236408" + "plane" "(-784 -3808 -224) (-784 -4352 -224) (-784 -4352 -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" "236407" + "plane" "(-776 -3816 -224) (-784 -3808 -224) (-784 -3808 -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" "236406" + "plane" "(-776 -4344 -224) (-776 -3816 -224) (-776 -3816 -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" "236405" + "plane" "(-784 -4352 -224) (-776 -4344 -224) (-776 -4344 -240)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "997858" + side + { + "id" "231847" + "plane" "(1480 -5515 304) (1200 -5515 304) (1200 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231846" + "plane" "(1480 -5499 0) (1200 -5499 0) (1200 -5515 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231845" + "plane" "(1200 -5515 0) (1200 -5499 0) (1200 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231844" + "plane" "(1200 -5499 0) (1480 -5499 0) (1480 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -31.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231843" + "plane" "(1480 -5515 0) (1200 -5515 0) (1200 -5515 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231842" + "plane" "(1480 -5499 0) (1480 -5515 0) (1480 -5515 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "997860" + side + { + "id" "231859" + "plane" "(1904 -5515 304) (1480 -5515 304) (1480 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231858" + "plane" "(1904 -5499 0) (1480 -5499 0) (1480 -5515 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231857" + "plane" "(1480 -5499 0) (1904 -5499 0) (1904 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -31.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231856" + "plane" "(1904 -5515 0) (1480 -5515 0) (1480 -5515 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231855" + "plane" "(1480 -5515 0) (1480 -5499 0) (1480 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231854" + "plane" "(1904 -5499 0) (1904 -5515 0) (1904 -5515 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "997861" + side + { + "id" "231865" + "plane" "(2032 -5515 304) (1904 -5515 304) (1904 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231864" + "plane" "(2032 -5499 48) (1904 -5499 48) (1904 -5515 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231863" + "plane" "(1904 -5499 48) (2032 -5499 48) (2032 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -31.996] 0.125" + "vaxis" "[0 0 -1 -40] 0.222222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231862" + "plane" "(2032 -5515 48) (1904 -5515 48) (1904 -5515 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 -40] 0.222222" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231861" + "plane" "(1904 -5515 48) (1904 -5499 48) (1904 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -20] 0.444444" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231860" + "plane" "(2032 -5499 48) (2032 -5515 48) (2032 -5515 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -20] 0.444444" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "997862" + side + { + "id" "231871" + "plane" "(2032 -5499 304) (2192 -5499 304) (2192 -5515 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231870" + "plane" "(2032 -5515 0) (2192 -5515 0) (2192 -5499 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231869" + "plane" "(2192 -5499 0) (2192 -5515 0) (2192 -5515 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231868" + "plane" "(2032 -5499 0) (2192 -5499 0) (2192 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -31.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231867" + "plane" "(2192 -5515 0) (2032 -5515 0) (2032 -5515 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -31.9883] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231866" + "plane" "(2032 -5515 0) (2032 -5499 0) (2032 -5499 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "997875" + side + { + "id" "231883" + "plane" "(1591 -4216 272) (1591 -4216 128) (1591 -4200 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -7.11111] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231882" + "plane" "(1591 -4200 272) (1591 -4200 128) (2048 -4200 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -39.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231881" + "plane" "(2048 -4216 128) (1591 -4216 128) (1591 -4216 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -39.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231880" + "plane" "(2048 -4200 128) (1591 -4200 128) (1591 -4216 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231879" + "plane" "(2048 -4216 272) (1591 -4216 272) (1591 -4200 272)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231878" + "plane" "(2048 -4200 272) (2048 -4200 128) (2048 -4216 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -7.11111] 2.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 144 121" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "997889" + side + { + "id" "231925" + "plane" "(1430 -4480 304) (1424 -4480 304) (1424 -4272 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 7.10956] 0.28125" + "vaxis" "[-1 0 0 42.666] 0.046875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231924" + "plane" "(1430 -4272 0) (1424 -4272 0) (1424 -4480 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -7.10956] 0.28125" + "vaxis" "[-1 0 0 42.666] 0.046875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231923" + "plane" "(1424 -4272 0) (1430 -4272 0) (1430 -4272 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 42.666] 0.046875" + "vaxis" "[0 0 -1 0] 0.431818" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231922" + "plane" "(1430 -4480 0) (1424 -4480 0) (1424 -4480 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -42.666] 0.046875" + "vaxis" "[0 0 -1 0] 0.431818" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231921" + "plane" "(1430 -4272 0) (1430 -4480 0) (1430 -4480 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 46.2191] 0.140625" + "vaxis" "[0 0 -1 0] 0.215909" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231920" + "plane" "(1424 -4480 0) (1424 -4272 0) (1424 -4272 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 14.2191] 0.140625" + "vaxis" "[0 0 -1 0] 0.215909" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "997890" + side + { + "id" "231931" + "plane" "(1424 -4546 304) (1424 -4480 304) (1430 -4480 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -42.666] 0.046875" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231930" + "plane" "(1424 -4480 -16) (1424 -4546 -16) (1430 -4546 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -42.666] 0.046875" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231929" + "plane" "(1424 -4546 -16) (1424 -4480 -16) (1424 -4480 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231928" + "plane" "(1430 -4480 -16) (1430 -4546 -16) (1430 -4546 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231927" + "plane" "(1424 -4480 -16) (1430 -4480 -16) (1430 -4480 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -42.666] 0.046875" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231926" + "plane" "(1430 -4546 -16) (1424 -4546 -16) (1424 -4546 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -42.666] 0.046875" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "997892" + side + { + "id" "231943" + "plane" "(1424 -4704 304) (1424 -4546 304) (1430 -4546 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -42.666] 0.046875" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231942" + "plane" "(1430 -4704 -16) (1430 -4546 -16) (1424 -4546 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -42.666] 0.046875" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231941" + "plane" "(1430 -4546 -16) (1430 -4704 -16) (1430 -4704 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -48] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231940" + "plane" "(1424 -4546 -16) (1430 -4546 -16) (1430 -4546 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -10.666] 0.046875" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231939" + "plane" "(1424 -4704 -16) (1424 -4546 -16) (1424 -4546 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231938" + "plane" "(1430 -4704 -16) (1424 -4704 -16) (1424 -4704 304)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -42.666] 0.046875" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 202 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "988455" + side + { + "id" "230559" + "plane" "(2176 -5104 48) (2295.43 -4752 48) (2672 -4752 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" "230558" + "plane" "(2176 -5104 0) (2672 -5104 0) (2672 -4752 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" "230557" + "plane" "(2672 -4752 0) (2672 -5104 0) (2672 -5104 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" "230556" + "plane" "(2295.43 -4752 0) (2672 -4752 0) (2672 -4752 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" "230555" + "plane" "(2672 -5104 0) (2176 -5104 0) (2176 -5104 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" "230554" + "plane" "(2176 -5104 0) (2295.43 -4752 0) (2295.43 -4752 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.321301 -0.946977 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "988858" + side + { + "id" "230663" + "plane" "(-128 -2899 336) (-317 -2899 336) (-317 -2776 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230664" + "plane" "(-128 -2776 -64.0982) (-317 -2776 -64.0982) (-317 -2899 -64.0982)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[-1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230665" + "plane" "(-317 -2776 -64.0979) (-128 -2776 -64.0979) (-128 -2776 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 5.27201] 0.34255" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230666" + "plane" "(-128 -2899 -64.0979) (-317 -2899 -64.0979) (-317 -2899 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 5.27201] 0.34255" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230667" + "plane" "(-128 -2776 -64.0979) (-128 -2899 -64.0979) (-128 -2899 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 5.27201] 0.34255" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230668" + "plane" "(-317 -2899 -64.0979) (-317 -2776 -64.0979) (-317 -2776 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[0 0 -1 5.27201] 0.34255" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 170 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "988941" + side + { + "id" "230698" + "plane" "(-317 -2776 336) (-413 -2680 336) (-392 -2680 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230697" + "plane" "(-413 -2680 -64.0982) (-317 -2776 -64.0982) (-304 -2776 -64.0982)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[-1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230696" + "plane" "(-392 -2680 -64.0982) (-392 -2680 336) (-413 -2680 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 5.27201] 0.34255" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230695" + "plane" "(-317 -2776 -64.0982) (-317 -2776 336) (-304 -2776 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230694" + "plane" "(-304 -2776 -64.0982) (-304 -2776 336) (-392 -2680 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.573462 0.819232 0 -33.9161] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230693" + "plane" "(-413 -2680 -64.0982) (-413 -2680 336) (-317 -2776 336)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.624695 -0.780869 0 -13.7776] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 132 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "989628" + side + { + "id" "230907" + "plane" "(2144 -4704 48) (2132 -4704 48) (2132 -4496 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230906" + "plane" "(2072 -4496 0) (2060 -4496 0) (2060 -4704 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230905" + "plane" "(2060 -4496 0) (2072 -4496 0) (2144 -4496 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230904" + "plane" "(2072 -4704 0) (2060 -4704 0) (2132 -4704 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230903" + "plane" "(2072 -4496 0) (2072 -4704 0) (2144 -4704 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.83205 0 -0.5547 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230902" + "plane" "(2060 -4704 0) (2060 -4496 0) (2132 -4496 48)" + "material" "TOOLS/TOOLSCLIP_WOOD" + "uaxis" "[0.83205 0 0.5547 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 135 192" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991354" + side + { + "id" "231320" + "plane" "(-64 -6345 8) (85 -6345 8) (79 -6333 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -51.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231319" + "plane" "(-64 -6345 8) (-64 -6333 8) (-64 -6333 32)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -51.998] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231318" + "plane" "(79 -6333 8) (85 -6345 8) (85 -6345 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 1 0 51.998] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231317" + "plane" "(-64 -6333 8) (79 -6333 8) (79 -6333 32)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231316" + "plane" "(85 -6345 8) (-64 -6345 8) (-64 -6345 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 14.8086] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231315" + "plane" "(-64 -6333 32) (79 -6333 32) (85 -6345 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -32.5178] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991421" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991355" + side + { + "id" "231326" + "plane" "(-64 -6357 8) (90 -6357 8) (85 -6345 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -35.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231325" + "plane" "(-64 -6357 8) (-64 -6345 8) (-64 -6345 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -35.998] 0.25" + "vaxis" "[0 0 -1 48] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231324" + "plane" "(85 -6345 8) (90 -6357 8) (90 -6357 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 1 0 35.998] 0.25" + "vaxis" "[0 0 -1 48] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231323" + "plane" "(-64 -6345 8) (85 -6345 8) (85 -6345 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231322" + "plane" "(90 -6357 8) (-64 -6357 8) (-64 -6357 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 4.0547] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231321" + "plane" "(-64 -6345 24) (85 -6345 24) (90 -6357 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -32.5178] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991421" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991356" + side + { + "id" "231331" + "plane" "(-64 -6368 8) (96 -6368 8) (90 -6357 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -19.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231330" + "plane" "(-64 -6357 8) (-64 -6357 16) (-64 -6368 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -19.998] 0.25" + "vaxis" "[0 0 -1 32] 0.0833333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231329" + "plane" "(90 -6357 8) (96 -6368 8) (90 -6357 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 1 0 19.998] 0.25" + "vaxis" "[0 0 -1 32] 0.0833333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231328" + "plane" "(-64 -6357 8) (90 -6357 8) (90 -6357 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.0833333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231327" + "plane" "(-64 -6368 8) (-64 -6357 16) (90 -6357 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.808736 -0.588171 -32.5178] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991421" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991357" + side + { + "id" "231341" + "plane" "(-64 -6380 0) (102 -6380 0) (96 -6368 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231340" + "plane" "(-64 -6368 0) (-64 -6368 8) (-64 -6380 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.0833333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231339" + "plane" "(96 -6368 0) (102 -6380 0) (96 -6368 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.0833333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231338" + "plane" "(-64 -6368 0) (96 -6368 0) (96 -6368 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.0833333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231337" + "plane" "(-64 -6380 0) (-64 -6368 8) (96 -6368 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -22.8784] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991421" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991411" + side + { + "id" "231347" + "plane" "(124 -6293 8) (136 -6298 8) (136 -6000 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -24.125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231346" + "plane" "(124 -6293 8) (124 -6000 8) (124 -6000 32)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -24.125] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231345" + "plane" "(136 -6000 8) (136 -6298 8) (136 -6298 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 1 0 24.8066] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231344" + "plane" "(136 -6298 8) (124 -6293 8) (124 -6293 32.1016)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231343" + "plane" "(124 -6000 8) (136 -6000 8) (136 -6000 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-0.585788 -0.810464 0 -24.5591] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231342" + "plane" "(124 -6000 32) (136 -6000 24) (136 -6298 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0.83205 0 -0.5547 -2.564] 0.25" + "vaxis" "[0 -1 0 -24.127] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991426" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991412" + side + { + "id" "231353" + "plane" "(136 -6297.63 8) (148 -6302.63 8) (148 -6000 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -50.5234] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231352" + "plane" "(136 -6297.63 8) (136 -6000 8) (136 -6000 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -50.5234] 0.25" + "vaxis" "[0 0 -1 48] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231351" + "plane" "(148 -6000 8) (148 -6302.63 8) (148 -6302.63 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 1 0 32.2315] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231350" + "plane" "(148 -6302.63 8) (136 -6297.63 8) (136 -6297.63 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231349" + "plane" "(136 -6000 8) (148 -6000 8) (148 -6000 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-0.585845 -0.810423 0 -45.9448] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231348" + "plane" "(136 -6000 24) (148 -6000 16) (148 -6302.63 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0.83205 0 -0.5547 -2.564] 0.25" + "vaxis" "[0 -1 0 -50.5254] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991426" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991413" + side + { + "id" "231358" + "plane" "(148 -6000 8) (148 -6303 8) (160 -6307 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -0.976563] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231357" + "plane" "(148 -6303 8) (148 -6000 8) (148 -6000 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -0.976563] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231356" + "plane" "(148 -6303 8) (148 -6303 16) (160 -6307 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231355" + "plane" "(148 -6000 8) (160 -6000 8) (148 -6000 16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-0.585788 -0.810464 0 -57.6678] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231354" + "plane" "(148 -6000 16) (160 -6000 8) (160 -6307 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0.83205 0 -0.5547 -2.564] 0.25" + "vaxis" "[0 -1 0 -0.978516] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991426" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991414" + side + { + "id" "231368" + "plane" "(160.02 -5999.97 0) (160 -6307 0) (171 -6307 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -0.919922] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231367" + "plane" "(160 -6307 0) (160.02 -5999.97 0) (160.02 -5999.97 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -0.919922] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231366" + "plane" "(160 -6307 0) (160 -6307 7.41406) (171 -6307 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231365" + "plane" "(160.02 -5999.97 0) (171.98 -5984.03 0) (160.02 -5999.97 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-0.585788 -0.810464 0 -41.6344] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231364" + "plane" "(171 -6307 0) (160 -6307 7.41406) (160.02 -5999.97 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0.83205 0 -0.5547 3.74719] 0.25" + "vaxis" "[0 -1 0 -0.921875] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991426" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991427" + side + { + "id" "231403" + "plane" "(136 -6298 8) (124 -6293 8) (79 -6333 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 20] 0.25" + "vaxis" "[0 -1 0 -19.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231402" + "plane" "(85 -6345 24) (85 -6345 8) (79 -6333 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -19.998] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231401" + "plane" "(124 -6293 32) (124 -6293 8) (136 -6298 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 1 0 19.998] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231400" + "plane" "(79 -6333 32.7305) (79 -6333 8) (124 -6293 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 20] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231399" + "plane" "(136 -6298 24) (136 -6298 8) (85 -6345 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -25.1914] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231398" + "plane" "(85 -6345 24) (79 -6333 32.7331) (124 -6293 32)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -20] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -5.8922] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991473" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991460" + side + { + "id" "231415" + "plane" "(148 -6303 0) (136 -6298 0) (85 -6345 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -3.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231414" + "plane" "(90 -6357 16) (90 -6357 0) (85 -6345 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -3.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231413" + "plane" "(136 -6298 24) (136 -6298 0) (148 -6303 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 1 0 3.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231412" + "plane" "(85 -6345 24.2383) (85 -6345 0) (136 -6298 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231411" + "plane" "(148 -6303 16) (148 -6303 0) (90 -6357 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -9.19141] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231410" + "plane" "(90 -6357 16) (85 -6345 24.2399) (136 -6298 24)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -63.581] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991473" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991463" + side + { + "id" "231427" + "plane" "(160 -6307 -8) (148 -6303 -8) (90 -6357 -8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -23.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231426" + "plane" "(96 -6369 8) (96 -6369 -8) (90 -6357 -8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -23.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231425" + "plane" "(148 -6303 15.0156) (148 -6303 -8) (160 -6307 -8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 1 0 23.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231424" + "plane" "(90 -6357 16) (90 -6357 -8) (148 -6303 -8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231423" + "plane" "(160 -6307 8) (160 -6307 -8) (96 -6369 -8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -41.1914] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231422" + "plane" "(96 -6369 8) (90 -6357 16) (148 -6303 15.0195)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -33.9724] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991473" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "991466" + side + { + "id" "231439" + "plane" "(160 -6307 -16) (96 -6369 -16) (102 -6381 -16)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 12] 0.25" + "vaxis" "[0 -1 0 -39.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231438" + "plane" "(102 -6381 -16) (96 -6369 -16) (96 -6369 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[0 -1 0 -39.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231437" + "plane" "(160 -6307 -16) (171 -6307 -16) (171 -6307 1.41763)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 39.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231436" + "plane" "(96 -6369 -16) (160 -6307 -16) (160 -6307 8)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[-1 0 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231435" + "plane" "(171 -6307 -16) (102 -6381 -16) (102 -6381 0)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -9.19141] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "231434" + "plane" "(96 -6369 8) (160 -6307 8) (171 -6307 1.41763)" + "material" "TOOLS/TOOLSCLIP_CONCRETE" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -1.0356] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "221 106 0" + "groupid" "991473" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "982363" + side + { + "id" "230296" + "plane" "(1752 -2568 280) (1792 -2568 280) (1782 -2581 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230297" + "plane" "(1760 -2581 16) (1782 -2581 16) (1792 -2568 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230298" + "plane" "(1752 -2568 16) (1752 -2568 280) (1760 -2581 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230299" + "plane" "(1782 -2581 16) (1782 -2581 280) (1792 -2568 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230300" + "plane" "(1792 -2568 16) (1792 -2568 280) (1752 -2568 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230301" + "plane" "(1760 -2581 16) (1760 -2581 280) (1782 -2581 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "982380" + side + { + "id" "230373" + "plane" "(1944 -3115 280) (1964 -3115 280) (1976 -3135 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -38] 0.25" + "vaxis" "[0 -1 0 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230372" + "plane" "(1930 -3135 16) (1976 -3135 16) (1964 -3115 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 38] 0.25" + "vaxis" "[0 -1 0 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230371" + "plane" "(1944 -3115 16) (1944 -3115 280) (1930 -3135 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230370" + "plane" "(1976 -3135 16) (1976 -3135 280) (1964 -3115 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230369" + "plane" "(1964 -3115 16) (1964 -3115 280) (1944 -3115 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 38] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230368" + "plane" "(1930 -3135 16) (1930 -3135 280) (1976 -3135 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -38] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "982382" + side + { + "id" "230385" + "plane" "(1781 -3116 280) (1800 -3136 280) (1749 -3136 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 58] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230384" + "plane" "(1800 -3136 16) (1781 -3116 16) (1762 -3116 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -58] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230383" + "plane" "(1762 -3116 280) (1749 -3136 280) (1749 -3136 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230382" + "plane" "(1800 -3136 280) (1781 -3116 280) (1781 -3116 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230381" + "plane" "(1781 -3116 280) (1762 -3116 280) (1762 -3116 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -58] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230380" + "plane" "(1749 -3136 280) (1800 -3136 280) (1800 -3136 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 58] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "982387" + side + { + "id" "230409" + "plane" "(2424 -3756 280) (2424 -3776 280) (2383 -3776 280)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -18] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230408" + "plane" "(2424 -3776 16) (2424 -3756 16) (2398 -3756 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 18] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230407" + "plane" "(2398 -3756 280) (2383 -3776 280) (2383 -3776 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230406" + "plane" "(2424 -3776 280) (2424 -3756 280) (2424 -3756 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230405" + "plane" "(2424 -3756 280) (2398 -3756 280) (2398 -3756 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 18] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230404" + "plane" "(2383 -3776 280) (2424 -3776 280) (2424 -3776 16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -18] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 102 231" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "948514" + side + { + "id" "228769" + "plane" "(-48 -3760 40) (64 -3760 40) (64 -3792 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "228770" + "plane" "(-48 -3792 -16) (64 -3792 -16) (64 -3760 -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" "228771" + "plane" "(-48 -3760 40) (-48 -3792 40) (-48 -3792 -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" "228772" + "plane" "(64 -3760 -16) (64 -3792 -16) (64 -3792 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" "228773" + "plane" "(64 -3760 40) (-48 -3760 40) (-48 -3760 -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" "228774" + "plane" "(64 -3792 -16) (-48 -3792 -16) (-48 -3792 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 232 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "951429" + side + { + "id" "229085" + "plane" "(1200 -6560 239.999) (1216 -6560 239.999) (1216 -6603.43 239.999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229084" + "plane" "(1176.78 -6614.63 0.124542) (1216 -6603.43 0.124542) (1216 -6560 0.124542)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229083" + "plane" "(1216 -6560 0.12512) (1216 -6603.43 0.125121) (1216 -6603.43 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229082" + "plane" "(1200 -6560 0.125071) (1216 -6560 0.125071) (1216 -6560 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229081" + "plane" "(1216 -6603.43 0.125066) (1176.78 -6614.63 0.125067) (1176.78 -6614.63 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.961522 0.274728 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229080" + "plane" "(1176.78 -6614.63 0.125009) (1200 -6560 0.12501) (1200 -6560 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.496167 -0.868227 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 243 0" + "groupid" "980812" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "951431" + side + { + "id" "229097" + "plane" "(1216 -6603.43 239.999) (1216 -6632 239.999) (1166.85 -6632 239.999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229096" + "plane" "(1166.85 -6632 0.124542) (1216 -6632 0.124542) (1216 -6603.43 0.124542)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229095" + "plane" "(1216 -6603.43 0.125121) (1216 -6632 0.125121) (1216 -6632 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229094" + "plane" "(1216 -6632 0.125049) (1166.85 -6632 0.12505) (1166.85 -6632 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229093" + "plane" "(1176.78 -6614.63 0.125054) (1216 -6603.43 0.125055) (1216 -6603.43 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.961524 -0.274722 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229092" + "plane" "(1166.85 -6632 0.125013) (1176.78 -6614.63 0.125013) (1176.78 -6614.63 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.496136 -0.868245 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 243 0" + "groupid" "980812" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "951432" + side + { + "id" "229103" + "plane" "(1166.85 -6632 239.999) (1140 -6632 239.999) (1140 -6625.14 239.999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229102" + "plane" "(1176.78 -6614.63 0.124542) (1140 -6625.14 0.124542) (1140 -6632 0.124542)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229101" + "plane" "(1140 -6632 0.125) (1140 -6625.14 0.125) (1140 -6625.14 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229100" + "plane" "(1166.85 -6632 0.12505) (1140 -6632 0.12505) (1140 -6632 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229099" + "plane" "(1140 -6625.14 0.125054) (1176.78 -6614.63 0.125054) (1176.78 -6614.63 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-0.961524 -0.274722 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229098" + "plane" "(1176.78 -6614.63 0.125107) (1166.85 -6632 0.125108) (1166.85 -6632 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.496136 0.868245 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 243 0" + "groupid" "980812" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "943023" + side + { + "id" "228637" + "plane" "(400 -2128 608) (640 -2128 608) (640 -2672 608)" + "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" "228638" + "plane" "(400 -2672 576) (640 -2672 576) (640 -2128 576)" + "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" "228639" + "plane" "(400 -2128 608) (400 -2672 608) (400 -2672 576)" + "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" "228640" + "plane" "(640 -2128 576) (640 -2672 576) (640 -2672 608)" + "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" "228641" + "plane" "(640 -2128 608) (400 -2128 608) (400 -2128 576)" + "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" "228642" + "plane" "(640 -2672 576) (400 -2672 576) (400 -2672 608)" + "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" "0 191 184" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "928871" + side + { + "id" "227561" + "plane" "(640 -944 -96) (640 0 -96) (2912 0 -96)" + "material" "LIQUIDS/CANALSWATER" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227562" + "plane" "(640 0 -160) (640 -944 -160) (2912 -944 -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" "227563" + "plane" "(640 -944 -160) (640 0 -160) (640 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" "227564" + "plane" "(2912 0 -160) (2912 -944 -160) (2912 -944 -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" "227565" + "plane" "(640 0 -160) (2912 0 -160) (2912 0 -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" "227566" + "plane" "(2912 -944 -160) (640 -944 -160) (640 -944 -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 165 230" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "931564" + side + { + "id" "227781" + "plane" "(848 -5872 160) (850 -5872 160) (850 -5888 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" "227782" + "plane" "(848 -5888 48) (850 -5888 48) (850 -5872 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" "227783" + "plane" "(848 -5872 160) (848 -5888 160) (848 -5888 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227784" + "plane" "(850 -5872 48) (850 -5888 48) (850 -5888 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" "227785" + "plane" "(850 -5872 160) (848 -5872 160) (848 -5872 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" "227786" + "plane" "(850 -5888 48) (848 -5888 48) (848 -5888 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 153 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "871426" + side + { + "id" "224088" + "plane" "(0 -4120 -96) (0 -4112 -96) (208 -4112 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "224087" + "plane" "(0 -4112 -128) (0 -4120 -128) (208 -4120 -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" "224086" + "plane" "(0 -4120 -128) (0 -4112 -128) (0 -4112 -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" "224085" + "plane" "(208 -4112 -128) (208 -4120 -128) (208 -4120 -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" "224084" + "plane" "(0 -4112 -128) (208 -4112 -128) (208 -4112 -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" "224083" + "plane" "(208 -4120 -128) (0 -4120 -128) (0 -4120 -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 193 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "871437" + side + { + "id" "224100" + "plane" "(240 -4120 -96) (248 -4120 -96) (248 -4480 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -100] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "224099" + "plane" "(240 -4480 -128) (248 -4480 -128) (248 -4120 -128)" + "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" "224098" + "plane" "(248 -4120 -128) (248 -4480 -128) (248 -4480 -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" "224097" + "plane" "(248 -4480 -128) (240 -4480 -128) (240 -4480 -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" "224096" + "plane" "(240 -4120 -128) (248 -4120 -128) (248 -4120 -96)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 -160] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "224095" + "plane" "(240 -4480 -128) (240 -4120 -128) (240 -4120 -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" + } + editor + { + "color" "0 193 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "871951" + side + { + "id" "224149" + "plane" "(0 -4672 240) (0 -4544 240) (264 -4544 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" "224150" + "plane" "(0 -4544 176) (0 -4672 176) (264 -4672 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" "224151" + "plane" "(0 -4672 176) (0 -4544 176) (0 -4544 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" "224152" + "plane" "(264 -4544 176) (264 -4672 176) (264 -4672 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" "224153" + "plane" "(0 -4544 176) (264 -4544 176) (264 -4544 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" "224154" + "plane" "(264 -4672 176) (0 -4672 176) (0 -4672 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" "0 238 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "871952" + side + { + "id" "224155" + "plane" "(0 -4544 240) (0 -4064 240) (368 -4064 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" "224156" + "plane" "(0 -4064 192) (0 -4544 192) (368 -4544 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" "224157" + "plane" "(0 -4544 192) (0 -4064 192) (0 -4064 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" "224158" + "plane" "(368 -4064 192) (368 -4544 192) (368 -4544 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" "224159" + "plane" "(0 -4064 192) (368 -4064 192) (368 -4064 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" "224160" + "plane" "(368 -4544 192) (0 -4544 192) (0 -4544 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" "0 144 249" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "871953" + side + { + "id" "224161" + "plane" "(-408 -4384 240) (-408 -4064 240) (0 -4064 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" "224162" + "plane" "(-408 -4064 176) (-408 -4384 176) (0 -4384 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" "224163" + "plane" "(-408 -4384 176) (-408 -4064 176) (-408 -4064 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" "224164" + "plane" "(0 -4064 176) (0 -4384 176) (0 -4384 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" "224165" + "plane" "(-408 -4064 176) (0 -4064 176) (0 -4064 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" "224166" + "plane" "(0 -4384 176) (-408 -4384 176) (-408 -4384 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" "0 254 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851195" + side + { + "id" "222729" + "plane" "(-2208 -3344 1016) (-2208 -2896 1016) (-1120 -2896 1016)" + "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" "222730" + "plane" "(-2208 -2896 576) (-2208 -3344 576) (-1120 -3344 576)" + "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" "222731" + "plane" "(-2208 -3344 576) (-2208 -2896 576) (-2208 -2896 1016)" + "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" "222732" + "plane" "(-1120 -2896 576) (-1120 -3344 576) (-1120 -3344 1016)" + "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" "222733" + "plane" "(-2208 -2896 576) (-1120 -2896 576) (-1120 -2896 1016)" + "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" "222734" + "plane" "(-1120 -3344 576) (-2208 -3344 576) (-2208 -3344 1016)" + "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" "0 163 188" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851196" + side + { + "id" "222735" + "plane" "(-1136 -5600 1016) (-1136 -3344 1016) (-1120 -3344 1016)" + "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" "222736" + "plane" "(-1136 -3344 608) (-1136 -5600 608) (-1120 -5600 608)" + "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" "222737" + "plane" "(-1136 -5600 608) (-1136 -3344 608) (-1136 -3344 1016)" + "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" "222738" + "plane" "(-1120 -3344 608) (-1120 -5600 608) (-1120 -5600 1016)" + "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" "222739" + "plane" "(-1136 -3344 608) (-1120 -3344 608) (-1120 -3344 1016)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222740" + "plane" "(-1120 -5600 608) (-1136 -5600 608) (-1136 -5600 1016)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 169 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851544" + side + { + "id" "222801" + "plane" "(336 -4648 160) (336 -4632 160) (1024 -4632 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222802" + "plane" "(336 -4632 0) (336 -4648 0) (1024 -4648 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222803" + "plane" "(336 -4648 0) (336 -4632 0) (336 -4632 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222804" + "plane" "(1024 -4632 0) (1024 -4648 0) (1024 -4648 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222805" + "plane" "(336 -4632 0) (1024 -4632 0) (1024 -4632 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222806" + "plane" "(1024 -4648 0) (336 -4648 0) (336 -4648 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 240" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851565" + side + { + "id" "222807" + "plane" "(-576 -5014 240) (-576 -4992 240) (-469 -5000 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222808" + "plane" "(-576 -4992 0) (-576 -5014 0) (-469 -5014 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222809" + "plane" "(-576 -5014 0) (-576 -4992 0) (-576 -4992 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222810" + "plane" "(-469 -5000 0) (-469 -5014 0) (-469 -5014 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222811" + "plane" "(-576 -4992 0) (-469 -5000 0) (-469 -5000 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222812" + "plane" "(-469 -5014 0) (-576 -5014 0) (-576 -5014 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "141 254 0" + "groupid" "1064808" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851576" + side + { + "id" "222824" + "plane" "(-237 -5384 240) (-243 -5310 240) (-230 -5308 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222823" + "plane" "(-243 -5310 0) (-237 -5384 0) (-224 -5384 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222822" + "plane" "(-237 -5384 0) (-243 -5310 0) (-243 -5310 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222821" + "plane" "(-230 -5308 0) (-224 -5384 0) (-224 -5384 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222820" + "plane" "(-243 -5310 0) (-230 -5308 0) (-230 -5308 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222819" + "plane" "(-224 -5384 0) (-237 -5384 0) (-237 -5384 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "141 254 0" + "groupid" "1064808" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851578" + side + { + "id" "222825" + "plane" "(-243 -5310 240) (-258 -5240 240) (-247 -5234 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222826" + "plane" "(-258 -5240 0) (-243 -5310 0) (-230 -5308 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222827" + "plane" "(-243 -5310 0) (-258 -5240 0) (-258 -5240 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222828" + "plane" "(-247 -5234 0) (-230 -5308 0) (-230 -5308 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222829" + "plane" "(-258 -5240 0) (-247 -5234 0) (-247 -5234 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222830" + "plane" "(-230 -5308 0) (-243 -5310 0) (-243 -5310 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "141 254 0" + "groupid" "1064808" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851580" + side + { + "id" "222831" + "plane" "(-286 -5176 240) (-274 -5168 240) (-247 -5234 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222832" + "plane" "(-258 -5240 0) (-247 -5234 0) (-274 -5168 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222833" + "plane" "(-286 -5176 0) (-286 -5176 240) (-258 -5240 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222834" + "plane" "(-247 -5234 0) (-247 -5234 240) (-274 -5168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222835" + "plane" "(-274 -5168 0) (-274 -5168 240) (-286 -5176 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222836" + "plane" "(-258 -5240 0) (-258 -5240 240) (-247 -5234 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "141 254 0" + "groupid" "1064808" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851582" + side + { + "id" "222837" + "plane" "(-322 -5118 240) (-312 -5106 240) (-274 -5168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222838" + "plane" "(-286 -5176 0) (-274 -5168 0) (-312 -5106 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222839" + "plane" "(-322 -5118 0) (-322 -5118 240) (-286 -5176 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222840" + "plane" "(-274 -5168 0) (-274 -5168 240) (-312 -5106 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222841" + "plane" "(-312 -5106 0) (-312 -5106 240) (-322 -5118 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222842" + "plane" "(-286 -5176 0) (-286 -5176 240) (-274 -5168 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "141 254 0" + "groupid" "1064808" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851588" + side + { + "id" "222849" + "plane" "(-322 -5118 240) (-367 -5072 240) (-359 -5057 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222850" + "plane" "(-367 -5072 0) (-322 -5118 0) (-312 -5106 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222851" + "plane" "(-322 -5118 0) (-367 -5072 0) (-367 -5072 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222852" + "plane" "(-359 -5057 0) (-312 -5106 0) (-312 -5106 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222853" + "plane" "(-367 -5072 0) (-359 -5057 0) (-359 -5057 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222854" + "plane" "(-312 -5106 0) (-322 -5118 0) (-322 -5118 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "141 254 0" + "groupid" "1064808" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851593" + side + { + "id" "222855" + "plane" "(-470 -5016 240) (-469 -5000 240) (-411 -5022 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222856" + "plane" "(-469 -5000 0) (-470 -5016 0) (-416 -5037 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222857" + "plane" "(-470 -5016 0) (-469 -5000 0) (-469 -5000 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222858" + "plane" "(-411 -5022 0) (-416 -5037 0) (-416 -5037 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222859" + "plane" "(-469 -5000 0) (-411 -5022 0) (-411 -5022 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222860" + "plane" "(-416 -5037 0) (-470 -5016 0) (-470 -5016 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "141 254 0" + "groupid" "1064808" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "851595" + side + { + "id" "222861" + "plane" "(-367 -5072 240) (-416 -5037 240) (-411 -5022 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222862" + "plane" "(-359 -5057 0) (-411 -5022 0) (-416 -5037 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222863" + "plane" "(-367 -5072 0) (-416 -5037 0) (-416 -5037 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222864" + "plane" "(-411 -5022 0) (-359 -5057 0) (-359 -5057 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222865" + "plane" "(-416 -5037 0) (-411 -5022 0) (-411 -5022 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222866" + "plane" "(-359 -5057 0) (-367 -5072 0) (-367 -5072 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "141 254 0" + "groupid" "1064808" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "831328" + side + { + "id" "220461" + "plane" "(536 -6776 0) (536 -6624 0) (864 -6624 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220460" + "plane" "(864 -6624 -32) (536 -6624 -32) (536 -6776 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220459" + "plane" "(536 -6776 -32) (536 -6624 -32) (536 -6624 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 -37] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220458" + "plane" "(536 -6624 -32) (864 -6624 -32) (864 -6624 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 52.988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220457" + "plane" "(864 -6624 -32) (864 -6776 -32) (864 -6776 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 -1 0 -36.9766] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220456" + "plane" "(864 -6776 -32) (536 -6776 -32) (536 -6776 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 207 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "831329" + side + { + "id" "220466" + "plane" "(536 -6776 -32) (536 -7023.98 -32) (864 -7023.98 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220465" + "plane" "(536 -7024 -32) (536 -6776 -32) (536 -6776 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 1 0 -37] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220464" + "plane" "(864 -6776 0) (864 -6776 -32) (864 -7024 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0 -1 0 -36.9766] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "220463" + "plane" "(536 -6776 0) (536 -6776 -32) (864 -6776 -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" "220462" + "plane" "(864 -7023.98 -32) (536 -7023.98 -32) (536 -6776 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -0.991777 -0.127981 9.94501] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832514" + side + { + "id" "221768" + "plane" "(572 -5872 160) (576 -5872 160) (576 -5888 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" "221767" + "plane" "(576 -5888 32) (576 -5888 160) (576 -5872 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221766" + "plane" "(576 -5872 32) (576 -5872 160) (572 -5872 160)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221765" + "plane" "(572 -5888 160) (576 -5888 160) (576 -5888 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 0.996094] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221764" + "plane" "(572 -5888 32) (576 -5888 32) (576 -5872 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" "221763" + "plane" "(572 -5872 32) (572 -5872 160) (572 -5888 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -31.998] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 195 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832721" + side + { + "id" "222050" + "plane" "(1184 -5888 256) (1184 -5888 192) (1200 -5872 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" "222049" + "plane" "(1200 -5872 256) (1200 -5872 192) (1472 -5872 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222048" + "plane" "(1184 -5888 192) (1184 -5888 256) (1472 -5888 256)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222047" + "plane" "(1472 -5888 256) (1184 -5888 256) (1200 -5872 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" "222046" + "plane" "(1472 -5872 256) (1472 -5872 192) (1472 -5888 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" "222045" + "plane" "(1472 -5872 192) (1200 -5872 192) (1184 -5888 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 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832722" + side + { + "id" "222056" + "plane" "(2192 -5888 -48) (2192 -5872 -48) (1200 -5872 -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" "222055" + "plane" "(1200 -5872 -48) (1200 -5872 16) (1200 -5888 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222054" + "plane" "(2192 -5888 -48) (2192 -5888 16) (2192 -5872 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" "222053" + "plane" "(2192 -5872 -48) (2192 -5872 16) (1200 -5872 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0.00112555 0 53.8986] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222052" + "plane" "(1200 -5888 -48) (1200 -5888 16) (2192 -5888 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -127] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222051" + "plane" "(2192 -5872 16) (2192 -5888 16) (1200 -5888 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" + } + editor + { + "color" "0 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832723" + side + { + "id" "222062" + "plane" "(1472 -5872 16) (1472 -5888 16) (1936 -5888 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" "222061" + "plane" "(1472 -5888 16) (1472 -5872 16) (1472 -5872 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" "222060" + "plane" "(1936 -5872 16) (1936 -5888 16) (1936 -5888 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" "222059" + "plane" "(1472 -5872 16) (1936 -5872 16) (1936 -5872 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222058" + "plane" "(1936 -5888 16) (1472 -5888 16) (1472 -5888 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -127] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222057" + "plane" "(1472 -5888 48) (1472 -5872 48) (1936 -5872 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 149 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832724" + side + { + "id" "222068" + "plane" "(1472 -5888 80) (1472 -5872 80) (1936 -5872 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" "222067" + "plane" "(1472 -5872 48) (1472 -5872 80) (1472 -5888 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" "222066" + "plane" "(1936 -5888 48) (1936 -5888 80) (1936 -5872 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" "222065" + "plane" "(1936 -5872 48) (1936 -5872 80) (1472 -5872 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222064" + "plane" "(1472 -5888 48) (1472 -5888 80) (1936 -5888 80)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -384] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222063" + "plane" "(1472 -5872 48) (1472 -5888 48) (1936 -5888 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 149 190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832725" + side + { + "id" "222074" + "plane" "(2192 -5872 256) (2192 -5872 184) (2192 -5888 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" "222073" + "plane" "(2192 -5872 184) (2192 -5872 256) (1936 -5872 256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222072" + "plane" "(2192 -5888 256) (2192 -5888 184) (1936 -5888 184)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -447.99] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222071" + "plane" "(1936 -5872 256) (2192 -5872 256) (2192 -5888 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" "222070" + "plane" "(1936 -5888 256) (1936 -5888 184) (1936 -5872 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" "222069" + "plane" "(1936 -5888 184) (2192 -5888 184) (2192 -5872 184)" + "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 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832728" + side + { + "id" "222092" + "plane" "(1200 -5888 16) (1200 -5872 16) (1200 -5872 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" "222091" + "plane" "(1200 -5872 16) (1472 -5872 16) (1472 -5872 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222090" + "plane" "(1472 -5888 16) (1200 -5888 16) (1200 -5888 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -127] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222089" + "plane" "(1200 -5872 16) (1200 -5888 16) (1472 -5888 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" "222088" + "plane" "(1472 -5872 16) (1472 -5888 16) (1472 -5888 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" "222087" + "plane" "(1200 -5888 48) (1200 -5872 48) (1472 -5872 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 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832730" + side + { + "id" "222104" + "plane" "(2192 -5872 48) (2192 -5872 16) (2192 -5888 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" "222103" + "plane" "(1936 -5872 48) (1936 -5872 16) (2192 -5872 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222102" + "plane" "(2192 -5888 48) (2192 -5888 16) (1936 -5888 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -127] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222101" + "plane" "(1936 -5888 16) (2192 -5888 16) (2192 -5872 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" "222100" + "plane" "(1936 -5888 48) (1936 -5888 16) (1936 -5872 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" "222099" + "plane" "(1936 -5872 48) (2192 -5872 48) (2192 -5888 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 115 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832732" + side + { + "id" "222116" + "plane" "(2192 -5504 -48) (2192 -5888 -48) (2224 -5888 -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" "222115" + "plane" "(2192 -5888 48) (2192 -5888 -48) (2192 -5504 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222114" + "plane" "(2224 -5504 48) (2224 -5504 -48) (2224 -5888 -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" "222113" + "plane" "(2192 -5504 48) (2192 -5504 -48) (2224 -5504 -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" "222112" + "plane" "(2224 -5888 48) (2224 -5888 -48) (2192 -5888 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -127] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222111" + "plane" "(2192 -5888 48) (2192 -5504 48) (2224 -5504 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 191 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832855" + side + { + "id" "222321" + "plane" "(560 -5776 48) (576 -5776 48) (576 -5840 48)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 -1 0 -811.031] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222322" + "plane" "(560 -5840 32) (576 -5840 32) (576 -5776 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" "222323" + "plane" "(560 -5776 48) (560 -5840 48) (560 -5840 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" "222324" + "plane" "(576 -5776 32) (576 -5840 32) (576 -5840 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222325" + "plane" "(576 -5776 48) (560 -5776 48) (560 -5776 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" "222326" + "plane" "(576 -5840 32) (560 -5840 32) (560 -5840 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 169 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "824084" + side + { + "id" "219272" + "plane" "(377 -8064 -28) (377 -7520 -28) (537 -7520 -28)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 440] 0.125" + "vaxis" "[0 -1 0 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[377 -8064 -28]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 -1 0 0 1 0 0 1 0 0 1 0 0 -0.999999" + "row1" "0 0 1 0 0 1 0 0 -0.999998 0 0 1 0 0 -0.999999" + "row2" "0 0 -1 0 0 1 0 0 1 0 0 -1 0 0 0.999998" + "row3" "0 0 -1 0 0 -1 0 0 -0.999994 0 0 -1 0 0 1" + "row4" "0 0 0.999997 0 0 -1 0 0 1 0 0 1 0 0 1" + } + distances + { + "row0" "0.824466 2.28489 1.04686 2.17041 0.237591" + "row1" "4.1096 1.18254 0.061142 1.63056 0.182594" + "row2" "1.68712 0.26173 2.54456 0.418638 0.0691824" + "row3" "2.83209 0.943269 0.0190244 0.446892 1.757" + "row4" "0.0357218 1.35692 0.780863 1.73449 0.634983" + } + 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" "50 50 0 25 100" + "row1" "25 117 0 117 50" + "row2" "75 0 225 0 75" + "row3" "75 0 117 0 50" + "row4" "250 50 150 125 225" + } + 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" "219271" + "plane" "(377 -7520 -32) (377 -8064 -32) (537 -8064 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219270" + "plane" "(377 -8064 -32) (377 -7520 -32) (377 -7520 -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" "219269" + "plane" "(537 -7520 -32) (537 -8064 -32) (537 -8064 -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" "219268" + "plane" "(377 -7520 -32) (537 -7520 -32) (537 -7520 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219267" + "plane" "(537 -8064 -32) (377 -8064 -32) (377 -8064 -28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "817458" + side + { + "id" "218418" + "plane" "(-448 -9600 -32) (-448 -6624 -32) (80 -6624 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 256] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "24" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-448 -9600 -32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "218417" + "plane" "(-448 -6624 -80) (-448 -9600 -80) (80 -9600 -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" "218416" + "plane" "(-448 -9600 -80) (-448 -6624 -80) (-448 -6624 -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" "218415" + "plane" "(80 -6624 -80) (80 -9600 -80) (80 -9600 -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" "218414" + "plane" "(-448 -6624 -80) (80 -6624 -80) (80 -6624 -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" "218413" + "plane" "(80 -9600 -80) (-448 -9600 -80) (-448 -9600 -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 221 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "817760" + side + { + "id" "218425" + "plane" "(1200 -5872 400) (1200 -5504 400) (2192 -5504 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" "218426" + "plane" "(1200 -5504 304) (1200 -5872 304) (2192 -5872 304)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "218427" + "plane" "(1200 -5872 304) (1200 -5504 304) (1200 -5504 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "218428" + "plane" "(2192 -5504 304) (2192 -5872 304) (2192 -5872 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "218429" + "plane" "(1200 -5504 304) (2192 -5504 304) (2192 -5504 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "218430" + "plane" "(2192 -5872 304) (1200 -5872 304) (1200 -5872 400)" + "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 249 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "818218" + side + { + "id" "219083" + "plane" "(864 -6624 -32) (2816 -6624 -32) (2816 -9336 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 15.4632] 0.125" + "rotation" "0" + "lightmapscale" "25" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[864 -6624 -32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0" + "row2" "0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0 0.999024 0 0" + "row3" "0 0 0 0 -1.46085 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" + } + distances + { + "row0" "0 0 0 0 0" + "row1" "0.00012207 0.00012207 0.00012207 0.00012207 0.00012207" + "row2" "0.00012207 0.00012207 0.00012207 0.00012207 0.00012207" + "row3" "0 0.000488281 0 0 0" + "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" "219082" + "plane" "(864 -9336 -48) (2816 -9336 -48) (2816 -6624 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219081" + "plane" "(2816 -6624 -48) (2816 -9336 -48) (2816 -9336 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219080" + "plane" "(2816 -9336 -48) (864 -9336 -48) (864 -9336 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219079" + "plane" "(864 -6624 -48) (2816 -6624 -48) (2816 -6624 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -11.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219078" + "plane" "(864 -9336 -48) (864 -6624 -48) (864 -6624 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "818227" + side + { + "id" "219107" + "plane" "(864 -9616 -32) (544 -9616 -32) (544 -7552 -32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "17" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[544 -7552 -32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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 -2.22387 0 0 -2.22359 0 0 -2.22387 0 0 -2.22387 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" + } + distances + { + "row0" "0 0 0 0 0" + "row1" "0 0 0 0 0" + "row2" "0.000976563 0.000488281 0.000976563 0.000976563 0" + "row3" "0 0 0 0 0" + "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" "219106" + "plane" "(544 -7552 -48) (544 -9616 -48) (864 -9616 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219105" + "plane" "(544 -9616 -48) (544 -7552 -48) (544 -7552 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219104" + "plane" "(864 -9616 -48) (544 -9616 -48) (544 -9616 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219103" + "plane" "(864 -7552 -48) (864 -9616 -48) (864 -9616 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219102" + "plane" "(544 -7552 -48) (864 -7552 -48) (864 -7552 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "818228" + side + { + "id" "219113" + "plane" "(544 -7552 -32) (544 -7024 -32) (864 -7024 -32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[544 -7024 -32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + "row1" "0 -1.13765 0 0 -1.13779 0 0 -1.13765 0 0 0 0 0 0 0" + "row2" "0 -1.13765 0 0 -1.13779 0 0 -1.13779 0 0 -1.13765 0 0 -1.13779 0" + "row3" "0 -1.13765 0 0 -1.13779 0 0 -1.13765 0 0 0 0 0 0 0" + "row4" "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" + } + distances + { + "row0" "0 0 0 0 0" + "row1" "0.000488281 0.000976563 0.000488281 0 0" + "row2" "0.000488281 0.000976563 0.000976563 0.000488281 0.000976563" + "row3" "0.000488281 0.000976563 0.000488281 0 0" + "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" "219112" + "plane" "(544 -7024 -48) (544 -7552 -48) (864 -7552 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219111" + "plane" "(544 -7552 -48) (544 -7024 -48) (544 -7024 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219110" + "plane" "(864 -7024 -48) (864 -7552 -48) (864 -7552 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219109" + "plane" "(544 -7024 -48) (864 -7024 -48) (864 -7024 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219108" + "plane" "(864 -7552 -48) (544 -7552 -48) (544 -7552 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "818789" + side + { + "id" "219242" + "plane" "(536 -6776 -32) (536 -7023.98 -32) (864 -7023.98 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219241" + "plane" "(536 -7024 -32) (536 -6776 -32) (536 -6776 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 28.988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219240" + "plane" "(864 -6776 0) (864 -6776 -32) (864 -7024 -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" "219239" + "plane" "(536 -6776 0) (536 -6776 -32) (864 -6776 -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" "219238" + "plane" "(864 -7023.98 -32) (536 -7023.98 -32) (536 -6776 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -0.991777 -0.127981 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[536 -7023.98 -32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776" + "row1" "0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776" + "row2" "0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776" + "row3" "0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776" + "row4" "0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776 0 -0.127983 0.991776" + } + 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" + } + } + } + editor + { + "color" "0 207 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "811424" + side + { + "id" "218245" + "plane" "(-32 -3440 224) (-32 -3312 224) (336 -3312 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" "218246" + "plane" "(-32 -3312 208) (-32 -3440 208) (336 -3440 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" "218247" + "plane" "(-32 -3440 208) (-32 -3312 208) (-32 -3312 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" "218248" + "plane" "(336 -3312 208) (336 -3440 208) (336 -3440 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" "218249" + "plane" "(-32 -3312 208) (336 -3312 208) (336 -3312 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" "218250" + "plane" "(336 -3440 208) (-32 -3440 208) (-32 -3440 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 241 198" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "800415" + side + { + "id" "217789" + "plane" "(96 -5536 32) (-128 -5536 32) (-128 -5524 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217788" + "plane" "(-128 -5476 0) (-128 -5536 0) (96 -5536 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217787" + "plane" "(-128 -5536 0) (-128 -5476 0) (-128 -5524 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217786" + "plane" "(96 -5536 0) (-128 -5536 0) (-128 -5536 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217785" + "plane" "(156 -5476 0) (96 -5536 0) (96 -5536 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217784" + "plane" "(108 -5524 32) (-128 -5524 32) (-128 -5476 0)" + "material" "TOOLS/TOOLSCLIP" + "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 153" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "800454" + side + { + "id" "217806" + "plane" "(108 -5536 32) (96 -5536 32) (108 -5524 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217805" + "plane" "(96 -5536 0) (156 -5536 0) (156 -5476 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217804" + "plane" "(156 -5536 0) (96 -5536 0) (96 -5536 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217803" + "plane" "(96 -5536 0) (156 -5476 0) (108 -5524 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217802" + "plane" "(108 -5536 32) (108 -5524 32) (156 -5476 0)" + "material" "TOOLS/TOOLSCLIP" + "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 153" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "800482" + side + { + "id" "217818" + "plane" "(96 -5600 32) (96 -5536 32) (108 -5536 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217817" + "plane" "(96 -5536 0) (96 -5600 0) (156 -5600 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217816" + "plane" "(96 -5536 0) (96 -5536 32) (96 -5600 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217815" + "plane" "(156 -5536 0) (108 -5536 32) (96 -5536 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217814" + "plane" "(96 -5600 0) (96 -5600 32) (108 -5600 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217813" + "plane" "(108 -5536 32) (156 -5536 0) (156 -5600 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 179" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "795361" + side + { + "id" "217742" + "plane" "(2097 -3792 320) (2124 -3792 320) (2064 -3928 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217743" + "plane" "(2041 -3928 0.397552) (2064 -3928 0.397552) (2124 -3792 0.397552)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217744" + "plane" "(2097 -3792 0.397552) (2097 -3792 320) (2041 -3928 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217745" + "plane" "(2064 -3928 0.397552) (2064 -3928 320) (2124 -3792 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217746" + "plane" "(2124 -3792 0.397552) (2124 -3792 320) (2097 -3792 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217747" + "plane" "(2041 -3928 0.397552) (2041 -3928 320) (2064 -3928 320)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 196 177" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788765" + side + { + "id" "217509" + "plane" "(2792 -4352 560) (2792 -4248 560) (2808 -4248 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217510" + "plane" "(2792 -4248 -16) (2792 -4352 -16) (2808 -4352 -16)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[-1 0 0 -96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217511" + "plane" "(2792 -4352 -16) (2792 -4248 -16) (2792 -4248 560)" + "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" "217512" + "plane" "(2808 -4248 -16) (2808 -4352 -16) (2808 -4352 560)" + "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" "217513" + "plane" "(2792 -4248 -16) (2808 -4248 -16) (2808 -4248 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217514" + "plane" "(2808 -4352 -16) (2792 -4352 -16) (2792 -4352 560)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 117 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788785" + side + { + "id" "217539" + "plane" "(2408 -4208 560) (2464 -4208 560) (2464 -4224 560)" + "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" "217540" + "plane" "(2408 -4224 400) (2464 -4224 400) (2464 -4208 400)" + "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" "217541" + "plane" "(2408 -4208 560) (2408 -4224 560) (2408 -4224 400)" + "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" "217542" + "plane" "(2464 -4208 400) (2464 -4224 400) (2464 -4224 560)" + "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" "217543" + "plane" "(2464 -4208 560) (2408 -4208 560) (2408 -4208 400)" + "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" "217544" + "plane" "(2464 -4224 400) (2408 -4224 400) (2408 -4224 560)" + "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" "0 237 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788786" + side + { + "id" "217545" + "plane" "(2416 -4384 576) (2416 -3712 576) (2808 -3712 576)" + "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" "217546" + "plane" "(2416 -3712 560) (2416 -4384 560) (2808 -4384 560)" + "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" "217547" + "plane" "(2416 -4384 560) (2416 -3712 560) (2416 -3712 576)" + "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" "217548" + "plane" "(2808 -3712 560) (2808 -4384 560) (2808 -4384 576)" + "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" "217549" + "plane" "(2416 -3712 560) (2808 -3712 560) (2808 -3712 576)" + "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" "217550" + "plane" "(2808 -4384 560) (2416 -4384 560) (2416 -4384 576)" + "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" "0 199 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788914" + side + { + "id" "217562" + "plane" "(-2176 -5856 1030) (-2176 -3344 1030) (-1088 -3344 1030)" + "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" "217561" + "plane" "(-2176 -3344 1016) (-2176 -5856 1016) (-1088 -5856 1016)" + "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" "217560" + "plane" "(-2176 -5856 1016) (-2176 -3344 1016) (-2176 -3344 1030)" + "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" "217559" + "plane" "(-1088 -3344 1016) (-1088 -5856 1016) (-1088 -5856 1030)" + "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" "217558" + "plane" "(-1088 -5856 1016) (-2176 -5856 1016) (-2176 -5856 1030)" + "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" "217557" + "plane" "(-2176 -3344 1016) (-1088 -3344 1016) (-1088 -3344 1030)" + "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" "0 156 125" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788915" + side + { + "id" "217568" + "plane" "(-1136 -5600 608) (-1136 -3344 608) (-464 -3344 608)" + "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" "217567" + "plane" "(-1136 -3344 560) (-1136 -5600 560) (-464 -5600 560)" + "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" "217566" + "plane" "(-1136 -5600 560) (-1136 -3344 560) (-1136 -3344 608)" + "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" "217565" + "plane" "(-464 -3344 560) (-464 -5600 560) (-464 -5600 608)" + "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" "217564" + "plane" "(-1136 -3344 560) (-464 -3344 560) (-464 -3344 608)" + "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" "217563" + "plane" "(-464 -5600 560) (-1136 -5600 560) (-1136 -5600 608)" + "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" "0 249 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788916" + side + { + "id" "217574" + "plane" "(-1088 -5664 1016) (-1088 -5152 1016) (-464 -5152 1016)" + "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" "217573" + "plane" "(-1088 -5152 848) (-1088 -5664 848) (-464 -5664 848)" + "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" "217572" + "plane" "(-1088 -5664 848) (-1088 -5152 848) (-1088 -5152 1016)" + "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" "217571" + "plane" "(-464 -5152 848) (-464 -5664 848) (-464 -5664 1016)" + "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" "217570" + "plane" "(-464 -5664 848) (-1088 -5664 848) (-1088 -5664 1016)" + "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" "217569" + "plane" "(-1088 -5152 848) (-464 -5152 848) (-464 -5152 1016)" + "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" "0 249 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788921" + side + { + "id" "217575" + "plane" "(-1120 -5600 1016) (-1120 -5136 1016) (-464 -5136 1016)" + "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" "217576" + "plane" "(-1120 -5136 608) (-1120 -5600 608) (-464 -5600 608)" + "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" "217577" + "plane" "(-1120 -5600 608) (-1120 -5136 608) (-1120 -5136 1016)" + "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" "217578" + "plane" "(-464 -5136 608) (-464 -5600 608) (-464 -5600 1016)" + "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" "217579" + "plane" "(-1120 -5136 608) (-464 -5136 608) (-464 -5136 1016)" + "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" "217580" + "plane" "(-464 -5600 608) (-1120 -5600 608) (-1120 -5600 1016)" + "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" "0 182 175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788923" + side + { + "id" "217587" + "plane" "(-2208 -5856 1030) (-2208 -3344 1030) (-2176 -3344 1030)" + "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" "217588" + "plane" "(-2208 -3344 560) (-2208 -5856 560) (-2176 -5856 560)" + "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" "217589" + "plane" "(-2208 -5856 560) (-2208 -3344 560) (-2208 -3344 1030)" + "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" "217590" + "plane" "(-2176 -3344 560) (-2176 -5856 560) (-2176 -5856 1030)" + "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" "217591" + "plane" "(-2208 -3344 560) (-2176 -3344 560) (-2176 -3344 1030)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 -64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217592" + "plane" "(-2176 -5856 560) (-2208 -5856 560) (-2208 -5856 1030)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 126 183" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788926" + side + { + "id" "217593" + "plane" "(-1728 -5664 -16) (-1728 -5152 -16) (-256 -5152 -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" "217594" + "plane" "(-1728 -5152 -32) (-1728 -5664 -32) (-256 -5664 -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" "217595" + "plane" "(-1728 -5664 -32) (-1728 -5152 -32) (-1728 -5152 -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" "217596" + "plane" "(-256 -5152 -32) (-256 -5664 -32) (-256 -5664 -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" "217597" + "plane" "(-1728 -5152 -32) (-256 -5152 -32) (-256 -5152 -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" "217598" + "plane" "(-256 -5664 -32) (-1728 -5664 -32) (-1728 -5664 -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 231 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "788932" + side + { + "id" "217599" + "plane" "(-464 -5152 896) (-448 -5152 896) (-448 -5680 896)" + "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" "217600" + "plane" "(-464 -5680 608) (-448 -5680 608) (-448 -5152 608)" + "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" "217601" + "plane" "(-464 -5152 896) (-464 -5680 896) (-464 -5680 608)" + "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" "217602" + "plane" "(-448 -5152 608) (-448 -5680 608) (-448 -5680 896)" + "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" "217603" + "plane" "(-448 -5152 896) (-464 -5152 896) (-464 -5152 608)" + "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" "217604" + "plane" "(-448 -5680 608) (-464 -5680 608) (-464 -5680 896)" + "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" "0 236 197" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770706" + side + { + "id" "216985" + "plane" "(1520 -2778 368) (1520 -2716 368) (1580 -2716 368)" + "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" "216984" + "plane" "(1520 -2778 368) (1556 -2778 368) (1556 -2778 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.936329 0.351123 0 10.7496] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216983" + "plane" "(1580 -2716 368) (1520 -2716 368) (1520 -2716 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 -0.496139 0 -19.7195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216982" + "plane" "(1520 -2716 368) (1520 -2778 368) (1520 -2778 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.376377 0.926466 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216981" + "plane" "(1556 -2778 368) (1580 -2716 368) (1580 -2716 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0.360995 0.932568 0 -427.613] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216980" + "plane" "(1556 -2778 240) (1580 -2716 240) (1520 -2716 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770707" + side + { + "id" "216991" + "plane" "(1556 -2778 0) (1580 -2716 0) (1520 -2716 0)" + "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" "216990" + "plane" "(1556 -2778 0) (1520 -2778 0) (1520 -2778 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.936329 0.351123 0 10.7496] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216989" + "plane" "(1520 -2716 0) (1580 -2716 0) (1580 -2716 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 -0.496139 0 -19.7195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216988" + "plane" "(1520 -2778 0) (1520 -2716 0) (1520 -2716 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.376377 0.926466 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216987" + "plane" "(1580 -2716 0) (1556 -2778 0) (1556 -2778 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.360995 0.932568 0 -199.22] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216986" + "plane" "(1520 -2778 240) (1520 -2716 240) (1580 -2716 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770708" + side + { + "id" "216997" + "plane" "(1520 -2844 368) (1520 -2778 368) (1556 -2778 368)" + "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" "216996" + "plane" "(1520 -2844 368) (1540 -2844 368) (1540 -2844 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.961524 0.274721 0 41.1135] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216995" + "plane" "(1556 -2778 368) (1520 -2778 368) (1520 -2778 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 -0.351123 0 -10.7496] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216994" + "plane" "(1520 -2778 368) (1520 -2844 368) (1520 -2844 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.201652 0.979457 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216993" + "plane" "(1540 -2844 368) (1556 -2778 368) (1556 -2778 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0.235601 0.97185 0 -234.662] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216992" + "plane" "(1540 -2844 240) (1556 -2778 240) (1520 -2778 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770709" + side + { + "id" "217003" + "plane" "(1540 -2844 0) (1556 -2778 0) (1520 -2778 0)" + "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" "217002" + "plane" "(1540 -2844 0) (1520 -2844 0) (1520 -2844 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.961524 0.274721 0 41.1135] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217001" + "plane" "(1520 -2778 0) (1556 -2778 0) (1556 -2778 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 -0.351123 0 -10.7496] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217000" + "plane" "(1520 -2844 0) (1520 -2778 0) (1520 -2778 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.201652 0.979457 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216999" + "plane" "(1556 -2778 0) (1540 -2844 0) (1540 -2844 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.235601 0.97185 0 -325.319] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216998" + "plane" "(1520 -2844 240) (1520 -2778 240) (1556 -2778 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770714" + side + { + "id" "217033" + "plane" "(1536 -3168 352) (1536 -3136 352) (2088 -3136 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217032" + "plane" "(1536 -3136 208) (1536 -3136 352) (1536 -3168 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" "217031" + "plane" "(2088 -3168 208) (2088 -3168 352) (2088 -3136 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" "217030" + "plane" "(2088 -3136 208) (2088 -3136 352) (1536 -3136 352)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 336] 0.125" + "vaxis" "[-1 0 0 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217029" + "plane" "(1536 -3168 208) (1536 -3168 352) (2088 -3168 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" "217028" + "plane" "(1536 -3136 208) (1536 -3168 208) (2088 -3168 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" + } + editor + { + "color" "0 158 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770717" + side + { + "id" "217051" + "plane" "(2176 -3056 16) (2176 -3168 16) (2248 -3168 16)" + "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" "217050" + "plane" "(2176 -3168 208) (2176 -3168 16) (2176 -3056 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" "217049" + "plane" "(2248 -3056 208) (2248 -3056 16) (2248 -3168 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 335.997] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217048" + "plane" "(2176 -3056 208) (2176 -3056 16) (2248 -3056 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 15.9961] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217047" + "plane" "(2248 -3168 208) (2248 -3168 16) (2176 -3168 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -495.996] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217046" + "plane" "(2176 -3168 208) (2176 -3056 208) (2248 -3056 208)" + "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 253 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770720" + side + { + "id" "217069" + "plane" "(2128 -3552 352) (2128 -3504 352) (2240 -3504 352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217068" + "plane" "(2128 -3504 208) (2128 -3504 352) (2128 -3552 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" "217067" + "plane" "(2240 -3552 208) (2240 -3552 352) (2240 -3504 352)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 192.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217066" + "plane" "(2240 -3504 208) (2240 -3504 352) (2128 -3504 352)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[-1 0 0 -319.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217065" + "plane" "(2128 -3552 208) (2128 -3552 352) (2240 -3552 352)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[1 0 0 -63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217064" + "plane" "(2128 -3504 208) (2128 -3552 208) (2240 -3552 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" + } + editor + { + "color" "0 253 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770721" + side + { + "id" "217075" + "plane" "(2176 -3504 0) (2176 -3552 0) (2240 -3552 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" "217074" + "plane" "(2176 -3552 208) (2176 -3552 0) (2176 -3504 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" "217073" + "plane" "(2240 -3504 208) (2240 -3504 0) (2240 -3552 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 272.004] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217072" + "plane" "(2176 -3504 208) (2176 -3504 0) (2240 -3504 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 -111.997] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217071" + "plane" "(2240 -3552 208) (2240 -3552 0) (2176 -3552 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -495.988] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217070" + "plane" "(2176 -3552 208) (2176 -3504 208) (2240 -3504 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" + } + editor + { + "color" "0 253 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770741" + side + { + "id" "217195" + "plane" "(1520 -2620 368) (1688 -2572 368) (1694 -2586 368)" + "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" "217194" + "plane" "(1520 -2620 368) (1650 -2620 368) (1650 -2620 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.581238 0.813733 0 27.4231] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217193" + "plane" "(1694 -2586 368) (1688 -2572 368) (1688 -2572 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.393919 -0.919145 0 -24.2509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217192" + "plane" "(1688 -2572 368) (1520 -2620 368) (1520 -2620 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.816024 0.578017 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217191" + "plane" "(1650 -2620 368) (1694 -2586 368) (1694 -2586 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0.791285 0.611447 0 -470.066] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217190" + "plane" "(1650 -2620 240) (1694 -2586 240) (1688 -2572 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770742" + side + { + "id" "217201" + "plane" "(1650 -2620 0) (1694 -2586 0) (1688 -2572 0)" + "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" "217200" + "plane" "(1650 -2620 0) (1520 -2620 0) (1520 -2620 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.581238 0.813733 0 27.4231] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217199" + "plane" "(1688 -2572 0) (1694 -2586 0) (1694 -2586 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.393919 -0.919145 0 -24.2509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217198" + "plane" "(1520 -2620 0) (1688 -2572 0) (1688 -2572 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.816024 0.578017 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217197" + "plane" "(1694 -2586 0) (1650 -2620 0) (1650 -2620 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.791286 0.611447 0 -276.095] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217196" + "plane" "(1520 -2620 240) (1688 -2572 240) (1694 -2586 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770743" + side + { + "id" "217207" + "plane" "(1742 -2566 358) (1738 -2552 358) (1792 -2544 358)" + "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" "217206" + "plane" "(1738 -2552 240) (1738 -2552 358) (1742 -2566 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.274721 0.961524 0 14.1726] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217205" + "plane" "(1792 -2560 240) (1792 -2560 358) (1792 -2544 358)" + "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" "217204" + "plane" "(1792 -2544 240) (1792 -2544 358) (1738 -2552 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.989203 0.146548 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217203" + "plane" "(1742 -2566 240) (1742 -2566 358) (1792 -2560 358)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0.992877 0.119145 0 -264.583] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217202" + "plane" "(1738 -2552 240) (1742 -2566 240) (1792 -2560 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770744" + side + { + "id" "217213" + "plane" "(1738 -2552 0) (1742 -2566 0) (1792 -2560 0)" + "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" "217212" + "plane" "(1742 -2566 0) (1738 -2552 0) (1738 -2552 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.274721 0.961524 0 14.1726] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217211" + "plane" "(1792 -2544 0) (1792 -2560 0) (1792 -2560 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" "217210" + "plane" "(1738 -2552 0) (1792 -2544 0) (1792 -2544 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.989203 0.146548 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217209" + "plane" "(1792 -2560 0) (1742 -2566 0) (1742 -2566 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.992877 0.119145 0 -377.126] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217208" + "plane" "(1742 -2566 240) (1738 -2552 240) (1792 -2544 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770745" + side + { + "id" "217219" + "plane" "(1694 -2586 368) (1688 -2572 368) (1738 -2552 368)" + "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" "217218" + "plane" "(1688 -2572 240) (1688 -2572 368) (1694 -2586 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.393919 0.919145 0 24.2509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217217" + "plane" "(1742 -2566 240) (1742 -2566 368) (1738 -2552 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.274721 -0.961524 0 -14.1726] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217216" + "plane" "(1738 -2552 240) (1738 -2552 368) (1688 -2572 368)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.928476 0.37139 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217215" + "plane" "(1694 -2586 240) (1694 -2586 368) (1742 -2566 368)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0.923077 0.384615 0 -125.435] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217214" + "plane" "(1688 -2572 240) (1694 -2586 240) (1742 -2566 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770746" + side + { + "id" "217225" + "plane" "(1688 -2572 0) (1694 -2586 0) (1742 -2566 0)" + "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" "217224" + "plane" "(1694 -2586 0) (1688 -2572 0) (1688 -2572 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.393919 0.919145 0 24.2509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217223" + "plane" "(1738 -2552 0) (1742 -2566 0) (1742 -2566 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.274721 -0.961524 0 -14.1726] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217222" + "plane" "(1688 -2572 0) (1738 -2552 0) (1738 -2552 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.928476 0.37139 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217221" + "plane" "(1742 -2566 0) (1694 -2586 0) (1694 -2586 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.923077 0.384615 0 -98.8364] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217220" + "plane" "(1694 -2586 240) (1688 -2572 240) (1738 -2552 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770747" + side + { + "id" "217231" + "plane" "(1520 -2664 368) (1520 -2620 368) (1650 -2620 368)" + "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" "217230" + "plane" "(1520 -2664 368) (1610 -2664 368) (1610 -2664 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.640184 0.768221 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217229" + "plane" "(1650 -2620 368) (1520 -2620 368) (1520 -2620 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.581238 -0.813733 0 -27.4231] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217228" + "plane" "(1520 -2620 368) (1520 -2664 368) (1520 -2664 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.656179 0.754604 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217227" + "plane" "(1610 -2664 368) (1650 -2620 368) (1650 -2620 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0.672673 0.73994 0 -388.621] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217226" + "plane" "(1610 -2664 240) (1650 -2620 240) (1520 -2620 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770748" + side + { + "id" "217237" + "plane" "(1610 -2664 0) (1650 -2620 0) (1520 -2620 0)" + "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" "217236" + "plane" "(1610 -2664 0) (1520 -2664 0) (1520 -2664 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.640184 0.768221 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217235" + "plane" "(1520 -2620 0) (1650 -2620 0) (1650 -2620 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.581238 -0.813733 0 -27.4231] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217234" + "plane" "(1520 -2664 0) (1520 -2620 0) (1520 -2620 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.656179 0.754604 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217233" + "plane" "(1650 -2620 0) (1610 -2664 0) (1610 -2664 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.672673 0.73994 0 -113.186] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217232" + "plane" "(1520 -2664 240) (1520 -2620 240) (1650 -2620 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770749" + side + { + "id" "217243" + "plane" "(1520 -2716 368) (1520 -2664 368) (1610 -2664 368)" + "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" "217242" + "plane" "(1520 -2716 368) (1580 -2716 368) (1580 -2716 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 0.496139 0 19.7195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217241" + "plane" "(1610 -2664 368) (1520 -2664 368) (1520 -2664 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.640184 -0.768221 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217240" + "plane" "(1520 -2664 368) (1520 -2716 368) (1520 -2716 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.518979 0.854787 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217239" + "plane" "(1580 -2716 368) (1610 -2664 368) (1610 -2664 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0.499723 0.866185 0 -489.551] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217238" + "plane" "(1580 -2716 240) (1610 -2664 240) (1520 -2664 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770750" + side + { + "id" "217249" + "plane" "(1580 -2716 0) (1610 -2664 0) (1520 -2664 0)" + "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" "217248" + "plane" "(1580 -2716 0) (1520 -2716 0) (1520 -2716 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 0.496139 0 19.7195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217247" + "plane" "(1520 -2664 0) (1610 -2664 0) (1610 -2664 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.640184 -0.768221 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217246" + "plane" "(1520 -2716 0) (1520 -2664 0) (1520 -2664 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.518979 0.854787 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217245" + "plane" "(1610 -2664 0) (1580 -2716 0) (1580 -2716 240)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.499723 0.866185 0 -323.104] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217244" + "plane" "(1520 -2716 240) (1520 -2664 240) (1610 -2664 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" + } + editor + { + "color" "220 220 220" + "groupid" "745381" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770890" + side + { + "id" "217363" + "plane" "(2088 -3168 352) (2088 -3056 352) (2248 -3056 352)" + "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" "217362" + "plane" "(2088 -3056 208) (2088 -3056 352) (2088 -3168 352)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 336] 0.125" + "vaxis" "[0 -1 0 -63.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217361" + "plane" "(2248 -3168 208) (2248 -3168 352) (2248 -3056 352)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 336] 0.125" + "vaxis" "[0 1 0 448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217360" + "plane" "(2248 -3056 208) (2248 -3056 352) (2088 -3056 352)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 336] 0.125" + "vaxis" "[-1 0 0 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217359" + "plane" "(2088 -3168 208) (2088 -3168 352) (2248 -3168 352)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 336] 0.125" + "vaxis" "[1 0 0 -383.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217358" + "plane" "(2088 -3056 208) (2088 -3168 208) (2248 -3168 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" + } + editor + { + "color" "0 220 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "770891" + side + { + "id" "217369" + "plane" "(2088 -3056 16) (2088 -3168 16) (2176 -3168 16)" + "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" "217368" + "plane" "(2088 -3168 208) (2088 -3168 16) (2088 -3056 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 -1 0 336] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217367" + "plane" "(2176 -3056 208) (2176 -3056 16) (2176 -3168 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -207.989] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217366" + "plane" "(2088 -3056 208) (2088 -3056 16) (2176 -3056 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-1 0 0 15.9961] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217365" + "plane" "(2176 -3168 208) (2176 -3168 16) (2088 -3168 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -495.996] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "217364" + "plane" "(2088 -3168 208) (2088 -3056 208) (2176 -3056 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" + } + editor + { + "color" "0 220 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "719119" + side + { + "id" "202534" + "plane" "(-256 -5664 0) (-528 -5664 0) (-528 -5152 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 640] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-256 -5152 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.031453 -1.10245 0 0.0471274 -1.10123 0 -0.0782772 -1.09747 0 0 -1.10318 0 0 -1.10331 0" + "row1" "0.028312 -1.10262 0 0.0627403 -1.09955 0 -0.0671907 -1.09904 0 0 -1.10331 0 0 -1.10336 0" + "row2" "0.031453 -1.10245 0 0.0627403 -1.09955 0 -0.0671907 -1.09904 0 0 -1.10318 0 0 -1.10331 0" + "row3" "0.028312 -1.10262 0 0.093704 -1.09479 0 -0.0671907 -1.09904 0 0 -1.10331 0 0 -1.10336 0" + "row4" "0.028312 -1.10262 0 0.0627403 -1.09955 0 -0.0588467 -1.10006 0 0 -1.10318 0 0 -1.10331 0" + } + distances + { + "row0" "0.00293223 0.00195694 0.00294554 0.000488281 0.000976563" + "row1" "0.00244312 0.00146992 0.00343157 0.000976563 0.00146484" + "row2" "0.00293223 0.00146992 0.00343157 0.000488281 0.000976563" + "row3" "0.00244312 0.000984162 0.00343157 0.000976563 0.00146484" + "row4" "0.00244312 0.00146992 0.00391815 0.000488281 0.000976563" + } + 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" "24.9999 18.75 12.5 6.24999 -1.52588e-05" + "row1" "-7.62939e-05 -3.8147e-05 -1.0348e-11 -1.52588e-05 -3.05176e-05" + "row2" "-9.15527e-05 -4.57764e-05 -5.17401e-12 -7.62939e-06 -1.52588e-05" + "row3" "-7.62939e-05 -3.8147e-05 -1.0348e-11 -1.52588e-05 -3.05176e-05" + "row4" "-7.62939e-05 -3.8147e-05 -5.17401e-12 -7.62939e-06 -1.52588e-05" + } + 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" "202533" + "plane" "(-256 -5152 -16) (-528 -5152 -16) (-528 -5664 -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" "202532" + "plane" "(-528 -5152 -16) (-256 -5152 -16) (-256 -5152 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" "202531" + "plane" "(-256 -5664 -16) (-528 -5664 -16) (-528 -5664 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "202530" + "plane" "(-256 -5152 -16) (-256 -5664 -16) (-256 -5664 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "202529" + "plane" "(-528 -5664 -16) (-528 -5152 -16) (-528 -5152 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 -1 0 -832] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "719213" + side + { + "id" "202623" + "plane" "(-576 -4688 0) (-576 -5008 0) (-528 -5008 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" "202622" + "plane" "(-576 -5008 0) (-576 -4688 0) (-576 -4688 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" "202621" + "plane" "(-576 -4688 0) (-528 -4688 0) (-576 -4688 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" "202620" + "plane" "(-528 -5008 0) (-576 -5008 0) (-576 -5008 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" "202619" + "plane" "(-576 -5008 32) (-576 -4688 32) (-528 -4688 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 -0.5547 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 168 249" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "719214" + side + { + "id" "202635" + "plane" "(-976 -5008 16) (-976 -4688 16) (-576 -4688 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "202634" + "plane" "(-976 -4688 -16) (-976 -5008 -16) (-576 -5008 -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" "202633" + "plane" "(-976 -5008 -16) (-976 -4688 -16) (-976 -4688 16)" + "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" "202632" + "plane" "(-576 -4688 -16) (-576 -5008 -16) (-576 -5008 16)" + "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" "202631" + "plane" "(-976 -4688 -16) (-576 -4688 -16) (-576 -4688 16)" + "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" "202630" + "plane" "(-576 -5008 -16) (-976 -5008 -16) (-976 -5008 16)" + "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 114 227" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "619772" + side + { + "id" "153490" + "plane" "(-352 -4048 -224) (-352 -4016 -224) (-288 -4016 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153489" + "plane" "(-288 -4016 -272) (-352 -4016 -272) (-352 -4048 -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" "153488" + "plane" "(-352 -4016 -272) (-288 -4016 -272) (-288 -4016 -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" "153487" + "plane" "(-352 -4048 -272) (-352 -4016 -272) (-352 -4016 -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" "153486" + "plane" "(-288 -4016 -272) (-288 -4048 -272) (-288 -4048 -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" "153485" + "plane" "(-288 -4048 -272) (-352 -4048 -272) (-352 -4048 -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 164 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "619866" + side + { + "id" "153538" + "plane" "(-328 -4112 -224) (-360 -4112 -224) (-360 -4080 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 -192] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "153537" + "plane" "(-328 -4080 -240) (-360 -4080 -240) (-360 -4112 -240)" + "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" "153536" + "plane" "(-360 -4112 -240) (-360 -4080 -240) (-360 -4080 -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" "153535" + "plane" "(-360 -4080 -240) (-328 -4080 -240) (-328 -4080 -224)" + "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" "153534" + "plane" "(-328 -4112 -240) (-360 -4112 -240) (-360 -4112 -224)" + "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" "153533" + "plane" "(-328 -4080 -240) (-328 -4112 -240) (-328 -4112 -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" + } + editor + { + "color" "0 211 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "619870" + side + { + "id" "153550" + "plane" "(-368 -4048 -224) (-360 -4056 -224) (-360 -4144 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -97] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153549" + "plane" "(-368 -4152 -240) (-360 -4144 -240) (-360 -4056 -240)" + "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" "153548" + "plane" "(-368 -4048 -240) (-360 -4056 -240) (-360 -4056 -224)" + "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" "153547" + "plane" "(-360 -4144 -240) (-368 -4152 -240) (-368 -4152 -224)" + "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" "153546" + "plane" "(-368 -4152 -240) (-368 -4048 -240) (-368 -4048 -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" "153545" + "plane" "(-360 -4056 -240) (-360 -4144 -240) (-360 -4144 -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" + } + editor + { + "color" "0 211 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "619874" + side + { + "id" "153562" + "plane" "(-200 -4152 -224) (-368 -4152 -224) (-360 -4144 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -94] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153561" + "plane" "(-368 -4152 -240) (-200 -4152 -240) (-192 -4144 -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" "153560" + "plane" "(-200 -4152 -240) (-200 -4152 -224) (-192 -4144 -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" "153559" + "plane" "(-368 -4152 -240) (-368 -4152 -224) (-200 -4152 -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" "153558" + "plane" "(-360 -4144 -240) (-360 -4144 -224) (-368 -4152 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153557" + "plane" "(-192 -4144 -240) (-192 -4144 -224) (-360 -4144 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 211 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "619992" + side + { + "id" "153610" + "plane" "(-776 -4344 -224) (-200 -4344 -224) (-192 -4352 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -34] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153609" + "plane" "(-784 -4352 -240) (-192 -4352 -240) (-200 -4344 -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" "153608" + "plane" "(-776 -4344 -240) (-776 -4344 -224) (-784 -4352 -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" "153607" + "plane" "(-192 -4352 -240) (-192 -4352 -224) (-200 -4344 -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" "153606" + "plane" "(-784 -4352 -240) (-784 -4352 -224) (-192 -4352 -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" "153605" + "plane" "(-200 -4344 -240) (-200 -4344 -224) (-776 -4344 -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 211 172" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "620161" + side + { + "id" "153700" + "plane" "(-776 -3744 -224) (-776 -3736 -224) (-608 -3736 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0.09375] 0.125" + "vaxis" "[0 -1 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153699" + "plane" "(-776 -3736 -240) (-776 -3744 -240) (-608 -3744 -240)" + "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" "153698" + "plane" "(-776 -3744 -240) (-776 -3736 -240) (-776 -3736 -224)" + "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" "153697" + "plane" "(-608 -3736 -240) (-608 -3744 -240) (-608 -3744 -224)" + "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" "153696" + "plane" "(-776 -3736 -240) (-608 -3736 -240) (-608 -3736 -224)" + "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" "153695" + "plane" "(-608 -3744 -240) (-776 -3744 -240) (-776 -3744 -224)" + "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 207 104" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "620168" + side + { + "id" "153712" + "plane" "(-584 -3816 -224) (-584 -3744 -224) (-576 -3744 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -35] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153711" + "plane" "(-584 -3744 -240) (-584 -3816 -240) (-576 -3808 -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" "153710" + "plane" "(-576 -3744 -224) (-576 -3744 -240) (-576 -3808 -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" "153709" + "plane" "(-576 -3808 -224) (-576 -3808 -240) (-584 -3816 -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" "153708" + "plane" "(-584 -3744 -224) (-584 -3744 -240) (-576 -3744 -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" "153707" + "plane" "(-584 -3816 -224) (-584 -3816 -240) (-584 -3744 -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" + } + editor + { + "color" "0 207 104" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "620252" + side + { + "id" "153730" + "plane" "(-600 -4344 -224) (-600 -3816 -224) (-464 -3816 -224)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153729" + "plane" "(-600 -3816 -240) (-600 -4344 -240) (-464 -4344 -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" "153728" + "plane" "(-464 -3816 -240) (-464 -4344 -240) (-464 -4344 -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" "153727" + "plane" "(-600 -4344 -240) (-600 -3816 -240) (-600 -3816 -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" "153726" + "plane" "(-464 -4344 -240) (-600 -4344 -240) (-600 -4344 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153725" + "plane" "(-600 -3816 -240) (-464 -3816 -240) (-464 -3816 -224)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 102" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "620253" + side + { + "id" "153736" + "plane" "(-584 -3816 -224) (-576 -3808 -224) (-352 -3808 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153735" + "plane" "(-352 -3816 -256) (-352 -3808 -256) (-576 -3808 -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" "153734" + "plane" "(-352 -3808 -256) (-352 -3816 -256) (-352 -3816 -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" "153733" + "plane" "(-576 -3808 -256) (-352 -3808 -256) (-352 -3808 -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" "153732" + "plane" "(-584 -3816 -256) (-576 -3808 -256) (-576 -3808 -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" "153731" + "plane" "(-352 -3816 -256) (-584 -3816 -256) (-584 -3816 -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 196 125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "620342" + side + { + "id" "153742" + "plane" "(1424 -4992 0) (1200 -4992 0) (1200 -4216 0)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153741" + "plane" "(1424 -4216 -16) (1200 -4216 -16) (1200 -4992 -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" "153740" + "plane" "(1424 -4992 -16) (1200 -4992 -16) (1200 -4992 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" "153739" + "plane" "(1200 -4216 -16) (1424 -4216 -16) (1424 -4216 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" "153738" + "plane" "(1200 -4992 -16) (1200 -4216 -16) (1200 -4216 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" "153737" + "plane" "(1424 -4216 -16) (1424 -4992 -16) (1424 -4992 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" + } + editor + { + "color" "0 168 237" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "620469" + side + { + "id" "153826" + "plane" "(1504 -4216 0) (1504 -4200 0) (2102 -4200 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 832] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153825" + "plane" "(2102 -4200 -48) (1504 -4200 -48) (1504 -4216 -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" "153824" + "plane" "(1504 -4216 -48) (1504 -4200 -48) (1504 -4200 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" "153823" + "plane" "(1504 -4200 -48) (2102 -4200 -48) (2102 -4200 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153822" + "plane" "(2102 -4200 -48) (2102 -4216 -48) (2102 -4216 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" "153821" + "plane" "(2102 -4216 -48) (1504 -4216 -48) (1504 -4216 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 168 237" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "591488" + side + { + "id" "148720" + "plane" "(2168 -5496 48) (2024 -5496 48) (2024 -5104 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148719" + "plane" "(2024 -5496 0) (2168 -5496 0) (2168 -5104 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" "148718" + "plane" "(2168 -5496 0) (2024 -5496 0) (2024 -5496 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148717" + "plane" "(2168 -5104 0) (2168 -5496 0) (2168 -5496 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148716" + "plane" "(2024 -5104 0) (2168 -5104 0) (2168 -5104 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" "148715" + "plane" "(2024 -5496 0) (2024 -5104 0) (2024 -5104 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 210 199" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "591492" + side + { + "id" "148721" + "plane" "(1920 -5168 48) (1928 -5160 48) (1928 -5296 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 35] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148722" + "plane" "(1920 -5298 0) (1928 -5296 0) (1928 -5160 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" "148723" + "plane" "(1920 -5168 0) (1920 -5168 48) (1920 -5298 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148724" + "plane" "(1928 -5296 0) (1928 -5296 48) (1928 -5160 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" "148725" + "plane" "(1928 -5160 0) (1928 -5160 48) (1920 -5168 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" "148726" + "plane" "(1920 -5298 0) (1920 -5298 48) (1928 -5296 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 218 191" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "583626" + side + { + "id" "147805" + "plane" "(248 -4172.31 176) (192 -4112 176) (248 -4112 176)" + "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" "147804" + "plane" "(248 -4112 -96) (248 -4112 176) (192 -4112 176)" + "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" "147803" + "plane" "(192 -4112 -96) (192 -4112 176) (248 -4172.31 176)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147802" + "plane" "(248 -4172.3 -96) (248 -4172.3 176) (248 -4112 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" "147801" + "plane" "(248 -4112 -96) (192 -4112 -96) (248 -4172.31 -96)" + "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 224 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "583628" + side + { + "id" "147816" + "plane" "(248 -4384 176) (248 -4112 176) (264 -4112 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" "147815" + "plane" "(248 -4112 -32) (248 -4112 176) (248 -4384 176)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147814" + "plane" "(264 -4384 -32) (264 -4384 176) (264 -4112 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" "147813" + "plane" "(264 -4112 -32) (264 -4112 176) (248 -4112 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" "147812" + "plane" "(248 -4384 -32) (248 -4384 176) (264 -4384 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" "147811" + "plane" "(248 -4112 -32) (248 -4384 -32) (264 -4384 -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 211 236" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "583726" + side + { + "id" "147856" + "plane" "(248 -4112 -128) (248 -4672 -128) (264 -4672 -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" "147855" + "plane" "(248 -4672 -32) (248 -4672 -128) (248 -4112 -128)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147854" + "plane" "(264 -4112 -32) (264 -4112 -128) (264 -4672 -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" "147853" + "plane" "(248 -4112 -32) (248 -4112 -128) (264 -4112 -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" "147852" + "plane" "(264 -4672 -32) (264 -4672 -128) (248 -4672 -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" "147851" + "plane" "(248 -4672 -32) (248 -4112 -32) (264 -4112 -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 229 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "583733" + side + { + "id" "147862" + "plane" "(248 -4672 176) (248 -4384 176) (264 -4384 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" "147861" + "plane" "(248 -4384 -32) (248 -4384 176) (248 -4672 176)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147860" + "plane" "(264 -4672 -32) (264 -4672 176) (264 -4384 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" "147859" + "plane" "(264 -4384 -32) (264 -4384 176) (248 -4384 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" "147858" + "plane" "(248 -4672 -32) (248 -4672 176) (264 -4672 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" "147857" + "plane" "(248 -4384 -32) (248 -4672 -32) (264 -4672 -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 229 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "584623" + side + { + "id" "147992" + "plane" "(1936 -5504 48) (1904 -5504 48) (1904 -5496 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147991" + "plane" "(1904 -5496 0) (1904 -5504 0) (1936 -5504 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" "147990" + "plane" "(1904 -5504 0) (1904 -5496 0) (1904 -5496 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" "147989" + "plane" "(1936 -5504 0) (1904 -5504 0) (1904 -5504 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" "147988" + "plane" "(1936 -5496 0) (1936 -5504 0) (1936 -5504 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" "147987" + "plane" "(1904 -5496 0) (1936 -5496 0) (1936 -5496 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 210 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "584643" + side + { + "id" "148016" + "plane" "(2168 -5504 48) (1936 -5504 48) (1936 -5496 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148015" + "plane" "(1936 -5496 0) (1936 -5504 0) (2168 -5504 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" "148014" + "plane" "(2168 -5504 0) (1936 -5504 0) (1936 -5504 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" "148013" + "plane" "(1936 -5504 0) (1936 -5496 0) (1936 -5496 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" "148012" + "plane" "(1936 -5496 0) (2168 -5496 0) (2168 -5496 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" "148011" + "plane" "(2168 -5496 0) (2168 -5504 0) (2168 -5504 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "584674" + side + { + "id" "148027" + "plane" "(2168 -5496 48) (2176 -5504 48) (2168 -5504 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148026" + "plane" "(2168 -5504 0) (2176 -5504 0) (2168 -5496 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" "148025" + "plane" "(2176 -5504 0) (2168 -5504 0) (2168 -5504 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" "148024" + "plane" "(2168 -5504 0) (2168 -5496 0) (2168 -5496 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148023" + "plane" "(2168 -5496 0) (2176 -5504 0) (2176 -5504 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "584675" + side + { + "id" "148032" + "plane" "(2168 -5496 48) (2176 -5496 48) (2176 -5504 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148031" + "plane" "(2176 -5504 0) (2176 -5496 0) (2168 -5496 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" "148030" + "plane" "(2176 -5496 0) (2176 -5504 0) (2176 -5504 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" "148029" + "plane" "(2168 -5496 0) (2176 -5496 0) (2176 -5496 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148028" + "plane" "(2176 -5504 0) (2168 -5496 0) (2168 -5496 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 210 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "584679" + side + { + "id" "148038" + "plane" "(2168 -5104 48) (2176 -5104 48) (2176 -5496 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148037" + "plane" "(2176 -5496 0) (2176 -5104 0) (2168 -5104 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" "148036" + "plane" "(2176 -5104 0) (2176 -5496 0) (2176 -5496 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" "148035" + "plane" "(2168 -5104 0) (2176 -5104 0) (2176 -5104 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" "148034" + "plane" "(2176 -5496 0) (2168 -5496 0) (2168 -5496 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148033" + "plane" "(2168 -5496 0) (2168 -5104 0) (2168 -5104 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 210 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "585220" + side + { + "id" "148116" + "plane" "(2309.28 -4712 48) (2152 -4712 48) (2152 -4704 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148115" + "plane" "(2312 -4704 0) (2152 -4704 0) (2152 -4712 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" "148114" + "plane" "(2309.28 -4712 48) (2312 -4704 48) (2312 -4704 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" "148113" + "plane" "(2312 -4704 48) (2152 -4704 48) (2152 -4704 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" "148112" + "plane" "(2152 -4712 48) (2309.28 -4712 48) (2309.28 -4712 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" "148111" + "plane" "(2152 -4704 48) (2152 -4712 48) (2152 -4712 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "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 209" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "585430" + side + { + "id" "148122" + "plane" "(2212 -5104 48) (2168 -5104 48) (2297 -4712 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.304769 -0.896378 -0.321903 498] 0.125" + "vaxis" "[0.946773 -0.321903 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148121" + "plane" "(2212 -5104 0) (2335 -4704 0) (2297 -4712 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" "148120" + "plane" "(2212 -5104 0) (2212 -5104 48) (2335 -4704 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" "148119" + "plane" "(2168 -5104 0) (2168 -5104 48) (2212 -5104 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" "148118" + "plane" "(2335 -4704 0) (2335 -4704 48) (2297 -4712 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148117" + "plane" "(2297 -4712 0) (2297 -4712 48) (2168 -5104 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 180 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "585437" + side + { + "id" "148140" + "plane" "(2312 -4704 48) (2304 -4704 48) (2224 -4296 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.185449 0.964336 0.188847 498] 0.125" + "vaxis" "[0.982006 0.188847 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148139" + "plane" "(2224 -4296 0) (2304 -4704 0) (2312 -4704 0)" + "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" "148138" + "plane" "(2312 -4704 48) (2232 -4288 48) (2232 -4288 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" "148137" + "plane" "(2232 -4288 48) (2224 -4296 48) (2224 -4296 0)" + "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" "148136" + "plane" "(2304 -4704 48) (2312 -4704 48) (2312 -4704 0)" + "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" "148135" + "plane" "(2224 -4296 48) (2304 -4704 48) (2304 -4704 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" + } + editor + { + "color" "0 247 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "585500" + side + { + "id" "148158" + "plane" "(2232 -4288 48) (2224 -4296 48) (2056 -4296 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148157" + "plane" "(2048 -4288 0) (2056 -4296 0) (2224 -4296 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" "148156" + "plane" "(2232 -4288 0) (2232 -4288 48) (2048 -4288 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" "148155" + "plane" "(2224 -4296 0) (2224 -4296 48) (2232 -4288 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" "148154" + "plane" "(2048 -4288 0) (2048 -4288 48) (2056 -4296 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148153" + "plane" "(2056 -4296 0) (2056 -4296 48) (2224 -4296 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 247 252" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "585538" + side + { + "id" "148176" + "plane" "(2152 -4296 48) (2224 -4296 48) (2304 -4704 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148175" + "plane" "(2152 -4704 0) (2304 -4704 0) (2224 -4296 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" "148174" + "plane" "(2152 -4704 48) (2304 -4704 48) (2304 -4704 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" "148173" + "plane" "(2152 -4296 48) (2152 -4704 48) (2152 -4704 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" "148172" + "plane" "(2224 -4296 48) (2152 -4296 48) (2152 -4296 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" "148171" + "plane" "(2304 -4704 48) (2224 -4296 48) (2224 -4296 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" + } + editor + { + "color" "0 247 252" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "585948" + side + { + "id" "148215" + "plane" "(2080 -4496 0) (2072 -4496 0) (2072 -4704 0)" + "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" "148214" + "plane" "(2072 -4496 0) (2080 -4496 0) (2080 -4496 5.33333)" + "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" "148213" + "plane" "(2080 -4704 0) (2072 -4704 0) (2080 -4704 5.33333)" + "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" "148212" + "plane" "(2080 -4704 5.33312) (2072 -4704 0) (2072 -4496 0)" + "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" "148211" + "plane" "(2080 -4496 5.33594) (2080 -4496 0) (2080 -4704 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" + } + editor + { + "color" "0 107 204" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "585952" + side + { + "id" "148228" + "plane" "(2144 -4496 0) (2080 -4496 0) (2080 -4704 0)" + "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" "148227" + "plane" "(2080 -4496 0) (2144 -4496 0) (2144 -4496 48)" + "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" "148226" + "plane" "(2144 -4704 0) (2080 -4704 0) (2080 -4704 5.33076)" + "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" "148225" + "plane" "(2144 -4704 48) (2080 -4704 5.33377) (2080 -4496 5.33386)" + "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" "148224" + "plane" "(2080 -4704 5.33594) (2080 -4704 0) (2080 -4496 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" "148223" + "plane" "(2144 -4496 48) (2144 -4496 0) (2144 -4704 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" + } + editor + { + "color" "0 107 204" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "585953" + side + { + "id" "148234" + "plane" "(2144 -4496 0) (2144 -4704 0) (2152 -4712 0)" + "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" "148233" + "plane" "(2152 -4488 0) (2152 -4488 48) (2144 -4496 48)" + "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" "148232" + "plane" "(2144 -4704 0) (2144 -4704 48) (2152 -4712 48)" + "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" "148231" + "plane" "(2144 -4704 48) (2144 -4496 48) (2152 -4488 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "148230" + "plane" "(2152 -4488 0) (2152 -4712 0) (2152 -4712 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" "148229" + "plane" "(2144 -4704 0) (2144 -4496 0) (2144 -4496 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 107 204" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "577427" + side + { + "id" "147282" + "plane" "(2192 -5504 76) (2192 -5104 76) (2672 -5104 76)" + "material" "ASPHALT/HR_C/HR_ASPHALT_GRAVEL_BLEND_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2192 -5504 76]" + "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 -0.999999 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 0.9997 0 0 0.999998 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 -0.999999 0 0 1 0 0 1 0 0 1 0 0 1" + "row6" "0 0 -1 0 0 -0.999998 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" + } + distances + { + "row0" "0.868057 2.82709 0.665161 2.47667 4.19195 8.75165 14.8472 14.7539 18.4711" + "row1" "0.597855 2.13651 0.200676 3.62454 6.18884 10.7984 16.7492 18.3838 23.4762" + "row2" "3.67447 0.378845 0.000396729 0.0728226 5.38961 9.88982 13.599 17.6101 27.6525" + "row3" "1.38733 2.29044 0.871353 1.60042 3.12925 6.31487 13.3949 17.5922 26.981" + "row4" "0.840858 1.65976 1.26562 1.30031 0.570526 5.74065 10.7019 13.5631 15.6997" + "row5" "0.798302 2.13451 1.04792 1.25014 0.0993881 2.67861 7.47737 13.2616 14.3536" + "row6" "0.379272 0.048912 0.935692 0.277138 1.43098 3.66365 6.90714 7.37926 11.0857" + "row7" "1.93417 2.08099 0.772331 1.56467 0.411804 2.76627 3.64331 4.74968 4.49624" + "row8" "0.787361 0.907867 1.0318 1.04043 2.76134 0.642357 3.26748 2.77306 3.35809" + } + 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" "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" "147281" + "plane" "(2192 -5104 75) (2192 -5504 75) (2672 -5504 75)" + "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" "147280" + "plane" "(2192 -5504 75) (2192 -5104 75) (2192 -5104 76)" + "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" "147279" + "plane" "(2672 -5104 75) (2672 -5504 75) (2672 -5504 76)" + "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" "147278" + "plane" "(2672 -5504 75) (2192 -5504 75) (2192 -5504 76)" + "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" "147277" + "plane" "(2192 -5104 75) (2672 -5104 75) (2672 -5104 76)" + "material" "ASPHALT/HR_C/HR_ASPHALT_GRAVEL_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "577428" + side + { + "id" "147288" + "plane" "(2192 -5104 76) (2311.68 -4752 76) (2672 -4752 76)" + "material" "ASPHALT/HR_C/HR_ASPHALT_GRAVEL_BLEND_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[2192 -5104 76]" + "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 0.999997 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.999999 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 -0.999999 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 0.999999 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" + } + distances + { + "row0" "0.787361 0.907867 1.0318 1.04043 2.76134 0.642357 3.26748 2.77306 3.35809" + "row1" "0.0428391 0.644516 2.51215 2.07234 2.9884 0.163948 1.20085 1.67117 1.40501" + "row2" "0.818764 2.06045 1.92544 2.31448 2.24325 3.0019 0.643547 1.299 1.01701" + "row3" "0.348106 1.7168 0.421806 0.157127 1.78471 3.40183 1.23711 1.97254 1.22668" + "row4" "1.94749 1.3656 1.81505 1.11067 1.67436 0.562927 1.36095 0.848549 20.5027" + "row5" "0.429245 0.486893 2.9892 0.554581 3.16497 2.8112 1.68463 0.612785 25.0682" + "row6" "0.476852 0.319099 1.16209 1.36986 0.205238 2.41058 0.638542 1.69325 25.4909" + "row7" "2.48615 1.56818 0.844887 0.673843 1.77338 2.09399 2.80289 0.907188 14.854" + "row8" "0.695412 2.9835 13.5385 16.3573 16.1352 11.4192 6.40088 0.451218 1.05834" + } + 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" "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" "147287" + "plane" "(2192 -5104 75) (2672 -5104 75) (2672 -4752 75)" + "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" "147286" + "plane" "(2672 -4752 75) (2672 -5104 75) (2672 -5104 76)" + "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" "147285" + "plane" "(2311.68 -4752 75) (2672 -4752 75) (2672 -4752 76)" + "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" "147284" + "plane" "(2192 -5104 75) (2311.68 -4752 75) (2311.68 -4752 76)" + "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" "147283" + "plane" "(2672 -5104 75) (2192 -5104 75) (2192 -5104 76)" + "material" "ASPHALT/HR_C/HR_ASPHALT_GRAVEL_BLEND_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "578161" + side + { + "id" "147385" + "plane" "(-496 -4384 160) (-16 -4384 160) (-16 -4400 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147386" + "plane" "(-496 -4400 0) (-16 -4400 0) (-16 -4384 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147387" + "plane" "(-496 -4384 160) (-496 -4400 160) (-496 -4400 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147388" + "plane" "(-16 -4384 0) (-16 -4400 0) (-16 -4400 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147389" + "plane" "(-16 -4384 160) (-496 -4384 160) (-496 -4384 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147390" + "plane" "(-16 -4400 0) (-496 -4400 0) (-496 -4400 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 223 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "578162" + side + { + "id" "147391" + "plane" "(-496 -4064 160) (-480 -4064 160) (-480 -4384 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147392" + "plane" "(-496 -4384 0) (-480 -4384 0) (-480 -4064 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147393" + "plane" "(-496 -4064 160) (-496 -4384 160) (-496 -4384 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147394" + "plane" "(-480 -4064 0) (-480 -4384 0) (-480 -4384 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147395" + "plane" "(-480 -4064 160) (-496 -4064 160) (-496 -4064 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147396" + "plane" "(-480 -4384 0) (-496 -4384 0) (-496 -4384 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "570942" + side + { + "id" "147145" + "plane" "(2312 -4752 272) (2312 -4736 272) (2672 -4736 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" "147146" + "plane" "(2312 -4736 0) (2312 -4752 0) (2672 -4752 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" "147147" + "plane" "(2312 -4752 0) (2312 -4736 0) (2312 -4736 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" "147148" + "plane" "(2672 -4736 0) (2672 -4752 0) (2672 -4752 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" "147149" + "plane" "(2312 -4736 0) (2672 -4736 0) (2672 -4736 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" "147150" + "plane" "(2672 -4752 0) (2312 -4752 0) (2312 -4752 272)" + "material" "CS_APOLLO/EXHIBITS/SPACE" + "uaxis" "[1 0 0 20] 0.125" + "vaxis" "[0 0 -1 660] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 173 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "570943" + side + { + "id" "147151" + "plane" "(2672 -5504 272) (2672 -4736 272) (2688 -4736 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" "147152" + "plane" "(2672 -4736 0) (2672 -5504 0) (2688 -5504 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" "147153" + "plane" "(2672 -5504 0) (2672 -4736 0) (2672 -4736 272)" + "material" "CS_APOLLO/EXHIBITS/SPACE" + "uaxis" "[0 1 0 20] 0.125" + "vaxis" "[0 0 -1 660] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147154" + "plane" "(2688 -4736 0) (2688 -5504 0) (2688 -5504 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" "147155" + "plane" "(2672 -4736 0) (2688 -4736 0) (2688 -4736 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" "147156" + "plane" "(2688 -5504 0) (2672 -5504 0) (2672 -5504 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" + } + editor + { + "color" "0 139 120" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "572599" + side + { + "id" "147205" + "plane" "(2192 -5504 320) (2192 -5104 320) (2392 -5104 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" "147206" + "plane" "(2192 -5104 304) (2192 -5504 304) (2392 -5504 304)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147207" + "plane" "(2192 -5504 304) (2192 -5104 304) (2192 -5104 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" "147208" + "plane" "(2392 -5104 304) (2392 -5504 304) (2392 -5504 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" "147209" + "plane" "(2192 -5104 304) (2392 -5104 304) (2392 -5104 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" "147210" + "plane" "(2392 -5504 304) (2192 -5504 304) (2192 -5504 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 219 148" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "572603" + side + { + "id" "147217" + "plane" "(2176 -5104 48) (2672 -5104 48) (2672 -5504 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" "147218" + "plane" "(2176 -5504 0) (2672 -5504 0) (2672 -5104 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" "147219" + "plane" "(2176 -5104 0) (2176 -5104 48) (2176 -5504 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" "147220" + "plane" "(2672 -5504 0) (2672 -5504 48) (2672 -5104 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" "147221" + "plane" "(2672 -5104 0) (2672 -5104 48) (2176 -5104 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" "147222" + "plane" "(2176 -5504 0) (2176 -5504 48) (2672 -5504 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 147 188" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "572654" + side + { + "id" "147234" + "plane" "(2312 -4752 272) (2296 -4752 272) (2312 -4704 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" "147233" + "plane" "(2328 -4704 0) (2312 -4704 0) (2296 -4752 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" "147232" + "plane" "(2296 -4752 0) (2312 -4704 0) (2312 -4704 272)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147231" + "plane" "(2312 -4704 0) (2328 -4704 0) (2328 -4704 272)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147230" + "plane" "(2312 -4752 0) (2296 -4752 0) (2296 -4752 272)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -192] 0.125" + "vaxis" "[1 0 0 82] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147229" + "plane" "(2328 -4704 0) (2312 -4752 0) (2312 -4752 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" + } + editor + { + "color" "0 180 209" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "572787" + side + { + "id" "147246" + "plane" "(1920 -5104 320) (1920 -4736 320) (2317.12 -4736 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" "147245" + "plane" "(1920 -4736 304) (1920 -5104 304) (2192 -5104 304)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147244" + "plane" "(1920 -5104 304) (1920 -4736 304) (1920 -4736 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" "147243" + "plane" "(1920 -4736 304) (2317.12 -4736 304) (2317.12 -4736 320)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147242" + "plane" "(2192 -5104 304) (1920 -5104 304) (1920 -5104 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" "147241" + "plane" "(2317.12 -4736 304) (2192 -5104 304) (2192 -5104 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 198 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "572951" + side + { + "id" "147265" + "plane" "(2176 -5488 352) (2176 -5104 352) (2192 -5104 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147266" + "plane" "(2176 -5104 0) (2176 -5488 0) (2192 -5488 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147267" + "plane" "(2176 -5488 0) (2176 -5104 0) (2176 -5104 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147268" + "plane" "(2192 -5104 0) (2192 -5488 0) (2192 -5488 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147269" + "plane" "(2176 -5104 0) (2192 -5104 0) (2192 -5104 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147270" + "plane" "(2192 -5488 0) (2176 -5488 0) (2176 -5488 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "179 132 0" + "groupid" "988026" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "572952" + side + { + "id" "147271" + "plane" "(2176 -5104 352) (2312 -4704 352) (2328 -4704 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147272" + "plane" "(2312 -4704 0) (2176 -5104 0) (2192 -5104 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147273" + "plane" "(2176 -5104 0) (2312 -4704 0) (2312 -4704 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147274" + "plane" "(2328 -4704 0) (2192 -5104 0) (2192 -5104 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147275" + "plane" "(2312 -4704 0) (2328 -4704 0) (2328 -4704 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147276" + "plane" "(2192 -5104 0) (2176 -5104 0) (2176 -5104 352)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "179 132 0" + "groupid" "988026" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "563627" + side + { + "id" "146212" + "plane" "(624 -2112 128) (624 -2112 -16) (640 -2128 -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" "146211" + "plane" "(480 -2112 -16) (624 -2112 -16) (624 -2112 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 -956] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146210" + "plane" "(640 -2128 128) (640 -2128 -16) (480 -2128 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -59.9961] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146209" + "plane" "(480 -2128 -16) (640 -2128 -16) (624 -2112 -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" "146208" + "plane" "(480 -2112 128) (624 -2112 128) (640 -2128 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" "146207" + "plane" "(480 -2128 128) (480 -2128 -16) (480 -2112 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "563629" + side + { + "id" "146224" + "plane" "(480 -2128 -40) (640 -2128 -40) (624 -2112 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146223" + "plane" "(624 -2112 -16) (624 -2112 -40) (640 -2128 -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" "146222" + "plane" "(480 -2112 -40) (624 -2112 -40) (624 -2112 -16)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[1 0 0 -115] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146221" + "plane" "(640 -2128 -16) (640 -2128 -40) (480 -2128 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -59.9961] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146220" + "plane" "(480 -2112 -16) (624 -2112 -16) (640 -2128 -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" "146219" + "plane" "(480 -2128 -16) (480 -2128 -40) (480 -2112 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "564490" + side + { + "id" "146734" + "plane" "(3079 3593 7808) (3079 14309 7808) (15335 14309 7808)" + "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" "146733" + "plane" "(3079 14309 7800) (3079 14309 7808) (3079 3593 7808)" + "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" "146732" + "plane" "(15335 3593 7800) (15335 3593 7808) (15335 14309 7808)" + "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" "146731" + "plane" "(15335 14309 7800) (15335 14309 7808) (3079 14309 7808)" + "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" "146730" + "plane" "(3079 3593 7800) (3079 3593 7808) (15335 3593 7808)" + "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" "146729" + "plane" "(3079 14309 7800) (3079 3593 7800) (15335 3593 7800)" + "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" "210 139 0" + "groupid" "564502" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "564492" + side + { + "id" "146740" + "plane" "(3071 14317 5084) (3071 3585 5084) (15343 3585 5084)" + "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" "146739" + "plane" "(3071 3585 5139) (3071 3585 5084) (3071 14317 5084)" + "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" "146738" + "plane" "(15343 14317 5139) (15343 14317 5084) (15343 3585 5084)" + "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" "146737" + "plane" "(3071 14317 5139) (3071 14317 5084) (15343 14317 5084)" + "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" "146736" + "plane" "(15343 3585 5139) (15343 3585 5084) (3071 3585 5084)" + "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" "146735" + "plane" "(3071 3585 5139) (3071 14317 5139) (15343 14317 5139)" + "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" "210 139 0" + "groupid" "564502" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "564494" + side + { + "id" "146746" + "plane" "(3071 3593 7808) (3071 3593 5139) (3071 14317 5139)" + "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" "146745" + "plane" "(3071 14317 7808) (3071 14317 5139) (3079 14317 5139)" + "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" "146744" + "plane" "(3079 3593 5139) (3071 3593 5139) (3071 3593 7808)" + "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" "146743" + "plane" "(3079 3593 7808) (3071 3593 7808) (3071 14317 7808)" + "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" "146742" + "plane" "(3079 14317 5139) (3071 14317 5139) (3071 3593 5139)" + "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" "146741" + "plane" "(3079 14317 7808) (3079 14317 5139) (3079 3593 5139)" + "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" "210 139 0" + "groupid" "564502" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "564496" + side + { + "id" "146752" + "plane" "(15343 14317 7808) (15343 14317 5139) (15343 3593 5139)" + "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" "146751" + "plane" "(15335 14317 5139) (15343 14317 5139) (15343 14317 7808)" + "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" "146750" + "plane" "(15343 3593 7808) (15343 3593 5139) (15335 3593 5139)" + "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" "146749" + "plane" "(15335 14317 7808) (15343 14317 7808) (15343 3593 7808)" + "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" "146748" + "plane" "(15335 3593 5139) (15343 3593 5139) (15343 14317 5139)" + "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" "146747" + "plane" "(15335 3593 7808) (15335 3593 5139) (15335 14317 5139)" + "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" "210 139 0" + "groupid" "564502" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "564498" + side + { + "id" "146758" + "plane" "(3079 14317 5139) (15335 14317 5139) (15335 14317 7800)" + "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" "146757" + "plane" "(3079 14309 7800) (3079 14317 7800) (15335 14317 7800)" + "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" "146756" + "plane" "(15335 14317 5139) (3079 14317 5139) (3079 14309 5139)" + "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" "146755" + "plane" "(3079 14309 5139) (3079 14317 5139) (3079 14317 7800)" + "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" "146754" + "plane" "(15335 14317 7800) (15335 14317 5139) (15335 14309 5139)" + "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" "146753" + "plane" "(15335 14309 5139) (3079 14309 5139) (3079 14309 7800)" + "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" "210 139 0" + "groupid" "564502" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "564500" + side + { + "id" "146764" + "plane" "(15343 3585 5139) (3071 3585 5139) (3071 3585 7808)" + "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" "146763" + "plane" "(15343 3585 7808) (3071 3585 7808) (3071 3593 7808)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146762" + "plane" "(3071 3593 5139) (3071 3585 5139) (15343 3585 5139)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146761" + "plane" "(3071 3585 7808) (3071 3585 5139) (3071 3593 5139)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146760" + "plane" "(15343 3593 5139) (15343 3585 5139) (15343 3585 7808)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146759" + "plane" "(3071 3593 5139) (15343 3593 5139) (15343 3593 7808)" + "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" "210 139 0" + "groupid" "564502" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "564514" + side + { + "id" "146765" + "plane" "(8271 8901 5148) (8271 9583 5148) (9642.69 9583 5148)" + "material" "LIQUIDS/CEMENTPLANTWATER_CHEAP" + "uaxis" "[1 0 0 0] 0.016" + "vaxis" "[0 -1 0 0] 0.016" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146766" + "plane" "(8271 9583 5147) (8271 8901 5147) (9642.69 8901 5147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "146767" + "plane" "(8271 8901 5147) (8271 9583 5147) (8271 9583 5148)" + "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" "146768" + "plane" "(9642.69 9583 5147) (9642.69 8901 5147) (9642.69 8901 5148)" + "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" "146769" + "plane" "(8271 9583 5147) (9642.69 9583 5147) (9642.69 9583 5148)" + "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" "146770" + "plane" "(9642.69 8901 5147) (8271 8901 5147) (8271 8901 5148)" + "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" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "558164" + side + { + "id" "145688" + "plane" "(-248 -4400 240) (-16 -4400 240) (-16 -4688 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" "145687" + "plane" "(-248 -4688 224) (-16 -4688 224) (-16 -4400 224)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "145686" + "plane" "(-16 -4400 224) (-16 -4688 224) (-16 -4688 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" "145685" + "plane" "(-248 -4400 224) (-16 -4400 224) (-16 -4400 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" "145684" + "plane" "(-16 -4688 224) (-248 -4688 224) (-248 -4688 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" "145683" + "plane" "(-248 -4688 224) (-248 -4400 224) (-248 -4400 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" + } + editor + { + "color" "0 119 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "558165" + side + { + "id" "145694" + "plane" "(-640 -4672 240) (-640 -4400 240) (-248 -4400 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" "145693" + "plane" "(-640 -4400 224) (-640 -4672 224) (-248 -4672 224)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "145692" + "plane" "(-640 -4672 224) (-640 -4400 224) (-640 -4400 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" "145691" + "plane" "(-640 -4400 224) (-248 -4400 224) (-248 -4400 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" "145690" + "plane" "(-248 -4672 224) (-640 -4672 224) (-640 -4672 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" "145689" + "plane" "(-248 -4400 224) (-248 -4672 224) (-248 -4672 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" + } + editor + { + "color" "0 119 228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "550135" + side + { + "id" "144833" + "plane" "(-537 -2000 416) (-537 -1856 416) (-521 -1856 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "144832" + "plane" "(-537 -1856 400) (-537 -2000 400) (-521 -2000 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "144831" + "plane" "(-537 -2000 400) (-537 -1856 400) (-537 -1856 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 198.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "144830" + "plane" "(-521 -1856 400) (-521 -2000 400) (-521 -2000 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "144829" + "plane" "(-521 -2000 400) (-537 -2000 400) (-537 -2000 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -220] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "144828" + "plane" "(-537 -1856 400) (-521 -1856 400) (-521 -1856 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 206 155" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "551470" + side + { + "id" "145395" + "plane" "(-480 -4384 0) (-424 -4384 0) (-424 -4400 0)" + "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" "145396" + "plane" "(-480 -4400 -16) (-424 -4400 -16) (-424 -4384 -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" "145397" + "plane" "(-480 -4384 0) (-480 -4400 0) (-480 -4400 -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" "145398" + "plane" "(-424 -4384 -16) (-424 -4400 -16) (-424 -4400 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" "145399" + "plane" "(-424 -4384 0) (-480 -4384 0) (-480 -4384 -16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0.706223 0 0.707988 16] 0.125" + "vaxis" "[0.706223 0 -0.707988 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "145400" + "plane" "(-424 -4400 -16) (-480 -4400 -16) (-480 -4400 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 101 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "531442" + side + { + "id" "140947" + "plane" "(-537 -2000 576) (-537 -1920 576) (-336 -1920 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "140948" + "plane" "(-537 -1920 560) (-537 -2000 560) (-336 -2000 560)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "140949" + "plane" "(-537 -2000 560) (-537 -1920 560) (-537 -1920 576)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -319.998] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "140950" + "plane" "(-336 -1920 560) (-336 -2000 560) (-336 -2000 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" "140951" + "plane" "(-537 -1920 560) (-336 -1920 560) (-336 -1920 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" "140952" + "plane" "(-336 -2000 560) (-537 -2000 560) (-537 -2000 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" + } + editor + { + "color" "0 134 143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "534576" + side + { + "id" "141396" + "plane" "(384 -2896 192) (384 -2128 192) (480 -2128 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" "141395" + "plane" "(384 -2128 160) (384 -2128 192) (384 -2896 192)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "141394" + "plane" "(480 -2896 160) (480 -2896 192) (480 -2128 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" "141393" + "plane" "(480 -2128 160) (480 -2128 192) (384 -2128 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" "141392" + "plane" "(384 -2896 160) (384 -2896 192) (480 -2896 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" "141391" + "plane" "(384 -2128 160) (384 -2896 160) (480 -2896 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" + } + editor + { + "color" "0 237 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "534577" + side + { + "id" "141402" + "plane" "(384 -2128 144) (384 -2896 144) (480 -2896 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 -795] 0.125" + "vaxis" "[0 -1 0 278] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "141401" + "plane" "(384 -2896 160) (384 -2896 144) (384 -2128 144)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "141400" + "plane" "(480 -2128 160) (480 -2128 144) (480 -2896 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "141399" + "plane" "(384 -2128 160) (384 -2128 144) (480 -2128 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" "141398" + "plane" "(480 -2896 160) (480 -2896 144) (384 -2896 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "141397" + "plane" "(384 -2896 160) (384 -2128 160) (480 -2128 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" + } + editor + { + "color" "0 237 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "522369" + side + { + "id" "137674" + "plane" "(-400 -2784 -32) (-400 -2544 -32) (-128 -2544 -32)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_DARK" + "uaxis" "[1 0 0 -8] 0.125" + "vaxis" "[0 -1 0 -88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "137675" + "plane" "(-400 -2544 -64) (-400 -2784 -64) (-128 -2784 -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" "137676" + "plane" "(-400 -2784 -64) (-400 -2544 -64) (-400 -2544 -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" + } + side + { + "id" "137677" + "plane" "(-128 -2544 -64) (-128 -2784 -64) (-128 -2784 -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" + } + side + { + "id" "137678" + "plane" "(-400 -2544 -64) (-128 -2544 -64) (-128 -2544 -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" "137679" + "plane" "(-128 -2784 -64) (-400 -2784 -64) (-400 -2784 -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 166 239" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "506985" + side + { + "id" "135004" + "plane" "(-16 -4400 240) (0 -4400 240) (0 -4672 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" "135005" + "plane" "(-16 -4672 160) (0 -4672 160) (0 -4400 160)" + "material" "DEV/DEV_MEASUREGENERIC14" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 112] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "135006" + "plane" "(-16 -4400 240) (-16 -4672 240) (-16 -4672 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "135007" + "plane" "(0 -4400 160) (0 -4672 160) (0 -4672 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" "135008" + "plane" "(0 -4400 240) (-16 -4400 240) (-16 -4400 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" "135009" + "plane" "(0 -4672 160) (-16 -4672 160) (-16 -4672 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" "0 104 221" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "500794" + side + { + "id" "134609" + "plane" "(1920 -5504 320) (1920 -5104 320) (2192 -5104 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" "134608" + "plane" "(1920 -5104 304) (1920 -5504 304) (2192 -5504 304)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "134607" + "plane" "(1920 -5504 304) (1920 -5104 304) (1920 -5104 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" "134606" + "plane" "(2192 -5104 304) (2192 -5504 304) (2192 -5504 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" "134605" + "plane" "(2192 -5504 304) (1920 -5504 304) (1920 -5504 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" "134604" + "plane" "(1920 -5104 304) (2192 -5104 304) (2192 -5104 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 198 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "500799" + side + { + "id" "134616" + "plane" "(1920 -4704 320) (2048 -4704 320) (2048 -4736 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" "134617" + "plane" "(1920 -4736 304) (2048 -4736 304) (2048 -4704 304)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "134618" + "plane" "(1920 -4704 320) (1920 -4736 320) (1920 -4736 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" "134619" + "plane" "(2048 -4704 304) (2048 -4736 304) (2048 -4736 320)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "134620" + "plane" "(2048 -4704 320) (1920 -4704 320) (1920 -4704 304)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "134621" + "plane" "(2048 -4736 304) (1920 -4736 304) (1920 -4736 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 120 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "500803" + side + { + "id" "134622" + "plane" "(2032 -4736 384) (2352 -4736 384) (2352 -4752 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" "134623" + "plane" "(2032 -4752 320) (2352 -4752 320) (2352 -4736 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" "134624" + "plane" "(2032 -4736 384) (2032 -4752 384) (2032 -4752 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" "134625" + "plane" "(2352 -4736 320) (2352 -4752 320) (2352 -4752 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" "134626" + "plane" "(2352 -4736 384) (2032 -4736 384) (2032 -4736 320)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "134627" + "plane" "(2352 -4752 320) (2032 -4752 320) (2032 -4752 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" + } + editor + { + "color" "0 208 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "462112" + side + { + "id" "130438" + "plane" "(-408 -4016 240) (-64 -4016 240) (-64 -4064 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" "130439" + "plane" "(-408 -4064 176) (-64 -4064 176) (-64 -4016 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" "130440" + "plane" "(-408 -4016 240) (-408 -4064 240) (-408 -4064 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" "130441" + "plane" "(-64 -4016 176) (-64 -4064 176) (-64 -4064 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" "130442" + "plane" "(-64 -4016 240) (-408 -4016 240) (-408 -4016 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" "130443" + "plane" "(-64 -4064 176) (-408 -4064 176) (-408 -4064 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" "0 125 130" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "447151" + side + { + "id" "128055" + "plane" "(-144 -4000 -16) (-144 -3296 -16) (-64 -3296 -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" "128056" + "plane" "(-144 -3296 -32) (-144 -4000 -32) (-64 -4000 -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" "128057" + "plane" "(-144 -4000 -32) (-144 -3296 -32) (-144 -3296 -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" "128058" + "plane" "(-64 -3296 -32) (-64 -4000 -32) (-64 -4000 -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" "128059" + "plane" "(-144 -3296 -32) (-64 -3296 -32) (-64 -3296 -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" "128060" + "plane" "(-64 -4000 -32) (-144 -4000 -32) (-144 -4000 -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 101 202" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450305" + side + { + "id" "128299" + "plane" "(-896 -3724 0) (-896 -3772 0) (-800 -3772 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128298" + "plane" "(-896 -3772 0) (-896 -3724 0) (-896 -3724 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128297" + "plane" "(-800 -3724 0) (-800 -3772 0) (-800 -3724 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128296" + "plane" "(-896 -3724 0) (-800 -3724 0) (-800 -3724 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128295" + "plane" "(-800 -3772 0) (-896 -3772 0) (-896 -3724 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.83205 -0.5547 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 235 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450465" + side + { + "id" "128376" + "plane" "(-1024 -2912 208) (-1024 -2912 192) (-1024 -2896 192)" + "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" "128375" + "plane" "(-1024 -2896 208) (-1024 -2896 192) (160 -2896 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128374" + "plane" "(160 -2912 192) (-1024 -2912 192) (-1024 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128373" + "plane" "(160 -2912 208) (-1024 -2912 208) (-1024 -2896 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" "128372" + "plane" "(160 -2896 192) (-1024 -2896 192) (-1024 -2912 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" "128371" + "plane" "(160 -2896 208) (160 -2896 192) (160 -2912 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 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450468" + side + { + "id" "128394" + "plane" "(160 -2896 400) (160 -2896 416) (24 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[-1 0 0 -447.997] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128393" + "plane" "(24 -2912 400) (24 -2912 416) (160 -2912 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128392" + "plane" "(24 -2912 416) (24 -2896 416) (160 -2896 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" "128391" + "plane" "(24 -2896 400) (24 -2912 400) (160 -2912 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" "128390" + "plane" "(24 -2912 400) (24 -2896 400) (24 -2896 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" "128389" + "plane" "(160 -2896 400) (160 -2912 400) (160 -2912 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" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450541" + side + { + "id" "128430" + "plane" "(384 -2896 192) (400 -2912 192) (400 -2912 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 -184.655] 0.25" + "vaxis" "[0 0 -1 -0.00454762] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128429" + "plane" "(384 -2896 192) (384 -2896 208) (160 -2896 208)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[-1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128428" + "plane" "(400 -2912 192) (160 -2912 192) (160 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128427" + "plane" "(384 -2896 208) (400 -2912 208) (160 -2912 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" "128426" + "plane" "(400 -2912 192) (384 -2896 192) (160 -2896 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" "128425" + "plane" "(160 -2912 192) (160 -2896 192) (160 -2896 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 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450543" + side + { + "id" "128442" + "plane" "(384 -2896 400) (400 -2912 400) (400 -2912 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" "128441" + "plane" "(384 -2896 400) (384 -2896 416) (264 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[-1 0 0 -447.997] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128440" + "plane" "(400 -2912 400) (264 -2912 400) (264 -2912 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128439" + "plane" "(384 -2896 416) (400 -2912 416) (264 -2912 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" "128438" + "plane" "(400 -2912 400) (384 -2896 400) (264 -2896 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" "128437" + "plane" "(264 -2912 400) (264 -2896 400) (264 -2896 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" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450544" + side + { + "id" "128448" + "plane" "(264 -2896 319) (384 -2896 319) (384 -2896 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128447" + "plane" "(264 -2912 400) (400 -2912 400) (400 -2912 319)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128446" + "plane" "(400 -2912 400) (264 -2912 400) (264 -2896 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" "128445" + "plane" "(384 -2896 400) (384 -2896 319) (400 -2912 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128444" + "plane" "(384 -2896 319) (264 -2896 319) (264 -2912 319)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128443" + "plane" "(264 -2912 400) (264 -2912 319) (264 -2896 319)" + "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 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450562" + side + { + "id" "128454" + "plane" "(-1024 -2912 192) (-1024 -2912 144) (-1024 -2896 144)" + "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" "128453" + "plane" "(-1024 -2896 192) (-1024 -2896 144) (160 -2896 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128452" + "plane" "(-1024 -2912 144) (-1024 -2912 192) (160 -2912 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128451" + "plane" "(160 -2912 192) (-1024 -2912 192) (-1024 -2896 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" "128450" + "plane" "(160 -2896 192) (160 -2896 144) (160 -2912 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128449" + "plane" "(160 -2896 144) (-1024 -2896 144) (-1024 -2912 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" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450563" + side + { + "id" "128460" + "plane" "(160 -2896 128) (-1024 -2896 128) (-1024 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 -704] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128459" + "plane" "(-1024 -2912 144) (-1024 -2912 128) (-1024 -2896 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" "128458" + "plane" "(-1024 -2896 144) (-1024 -2896 128) (160 -2896 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128457" + "plane" "(160 -2912 144) (160 -2912 128) (-1024 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128456" + "plane" "(160 -2896 144) (160 -2896 128) (160 -2912 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" "128455" + "plane" "(160 -2912 144) (-1024 -2912 144) (-1024 -2896 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" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451732" + side + { + "id" "129036" + "plane" "(160 -2912 128) (480 -2912 128) (480 -2896 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" "129035" + "plane" "(480 -2896 144) (480 -2896 128) (480 -2912 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" "129034" + "plane" "(160 -2896 144) (160 -2896 128) (480 -2896 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129033" + "plane" "(480 -2912 144) (480 -2912 128) (160 -2912 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129032" + "plane" "(160 -2912 144) (160 -2912 128) (160 -2896 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" "129031" + "plane" "(160 -2896 144) (480 -2896 144) (480 -2912 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" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451733" + side + { + "id" "129042" + "plane" "(479.975 -2896 192) (480 -2896 144) (480 -2912 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129041" + "plane" "(480 -2896 144) (479.974 -2896 192) (160 -2896 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129040" + "plane" "(479.974 -2912 192) (480 -2912 144) (160 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129039" + "plane" "(160 -2896 192) (479.98 -2896 192) (479.98 -2912 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" "129038" + "plane" "(160 -2912 192) (160 -2912 144) (160 -2896 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129037" + "plane" "(160 -2912 144) (480 -2912 144) (480 -2896 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" + } + editor + { + "color" "0 229 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451734" + side + { + "id" "129048" + "plane" "(480 -2496 128) (480 -2128 128) (480 -2128 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129047" + "plane" "(496 -2128 128) (496 -2496 128) (496 -2496 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 -1 0 -953.004] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129046" + "plane" "(480 -2128 128) (496 -2128 128) (496 -2128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129045" + "plane" "(496 -2496 128) (480 -2496 128) (480 -2496 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129044" + "plane" "(480 -2496 128) (496 -2496 128) (496 -2128 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -223.994] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129043" + "plane" "(480 -2128 144) (496 -2128 144) (496 -2496 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451735" + side + { + "id" "129054" + "plane" "(480 -2112 144) (480 -2112 192) (480 -2496 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 -1 0 -956] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129053" + "plane" "(496 -2128 192) (496 -2128 144) (496 -2496 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -953.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129052" + "plane" "(480 -2112 192) (480 -2112 144) (496 -2128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129051" + "plane" "(480 -2496 192) (480 -2112 192) (496 -2128 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129050" + "plane" "(496 -2496 192) (496 -2496 144) (480 -2496 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129049" + "plane" "(480 -2112 144) (480 -2496 144) (496 -2496 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451736" + side + { + "id" "129060" + "plane" "(480 -2624 144) (480 -2624 128) (480 -2496 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129059" + "plane" "(496 -2496 144) (496 -2496 128) (496 -2624 128)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 -1 0 -953.004] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129058" + "plane" "(480 -2496 144) (480 -2496 128) (496 -2496 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129057" + "plane" "(496 -2624 144) (496 -2624 128) (480 -2624 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129056" + "plane" "(480 -2496 128) (480 -2624 128) (496 -2624 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -223.994] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129055" + "plane" "(480 -2624 144) (480 -2496 144) (496 -2496 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451737" + side + { + "id" "129066" + "plane" "(480 -2624 192) (480 -2624 144) (480 -2496 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 -1 0 -956] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129065" + "plane" "(496 -2496 192) (496 -2496 144) (496 -2624 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -953.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129064" + "plane" "(480 -2496 192) (480 -2496 144) (496 -2496 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129063" + "plane" "(496 -2624 192) (496 -2624 144) (480 -2624 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129062" + "plane" "(480 -2624 192) (480 -2496 192) (496 -2496 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129061" + "plane" "(480 -2496 144) (480 -2624 144) (496 -2624 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451738" + side + { + "id" "129072" + "plane" "(480 -2912 128) (480 -2624 128) (480 -2624 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129071" + "plane" "(496 -2624 128) (496 -2912 128) (496 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 -1 0 -953.004] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129070" + "plane" "(480 -2624 128) (496 -2624 128) (496 -2624 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" "129069" + "plane" "(496 -2912 128) (480 -2912 128) (480 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129068" + "plane" "(480 -2912 128) (496 -2912 128) (496 -2624 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -223.994] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129067" + "plane" "(480 -2624 144) (496 -2624 144) (496 -2912 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" + } + editor + { + "color" "0 227 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451739" + side + { + "id" "129078" + "plane" "(496 -2624 192) (496 -2912 192) (480 -2912 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" "129077" + "plane" "(480 -2912 192) (480 -2912 144) (480 -2624 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 1 0 -956] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129076" + "plane" "(496 -2624 192) (496 -2624 144) (496 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -953.002] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129075" + "plane" "(480 -2624 192) (480 -2624 144) (496 -2624 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" "129074" + "plane" "(496 -2912 192) (496 -2912 144) (480 -2912 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[-1 0 0 710.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129073" + "plane" "(496 -2912 144) (496 -2624 144) (480 -2624 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" + } + editor + { + "color" "0 227 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451740" + side + { + "id" "129084" + "plane" "(480 -2128 128) (480 -2112 128) (480 -2112 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129083" + "plane" "(624 -2112 128) (640 -2128 128) (640 -2128 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129082" + "plane" "(480 -2112 128) (624 -2112 128) (624 -2112 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[1 0 0 -956] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129081" + "plane" "(640 -2128 128) (480 -2128 128) (480 -2128 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 -953] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129080" + "plane" "(480 -2128 128) (640 -2128 128) (624 -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" "129079" + "plane" "(480 -2112 144) (624 -2112 144) (640 -2128 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" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451746" + side + { + "id" "129120" + "plane" "(480 -2682 7.99999) (480 -2912 7.99999) (496 -2912 7.99999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129119" + "plane" "(480 -2912 128) (480 -2912 7.99999) (480 -2682 7.99999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129118" + "plane" "(496 -2682 128) (496 -2682 7.99999) (496 -2912 7.99999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129117" + "plane" "(480 -2682 128) (480 -2682 7.99999) (496 -2682 7.99999)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -143.996] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129116" + "plane" "(496 -2912 128) (496 -2912 7.99999) (480 -2912 7.99999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129115" + "plane" "(480 -2912 128) (480 -2682 128) (496 -2682 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 227 168" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451748" + side + { + "id" "129132" + "plane" "(640 -640 16) (640 -2128 16) (640 -2128 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "129131" + "plane" "(624 -640 16) (640 -640 16) (640 -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" "129130" + "plane" "(640 -2128 16) (624 -2112 16) (624 -2112 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" "129129" + "plane" "(624 -2112 16) (624 -640 16) (624 -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" "129128" + "plane" "(640 -640 16) (624 -640 16) (624 -2112 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" "129127" + "plane" "(640 -640 128) (640 -2128 128) (624 -2112 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "434894" + side + { + "id" "123529" + "plane" "(560 -4509 216) (560 -4184 216) (848 -4184 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123530" + "plane" "(560 -4184 160) (560 -4509 160) (848 -4509 160)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123531" + "plane" "(560 -4509 160) (560 -4184 160) (560 -4184 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123532" + "plane" "(848 -4184 160) (848 -4509 160) (848 -4509 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123533" + "plane" "(560 -4184 160) (848 -4184 160) (848 -4184 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123534" + "plane" "(848 -4509 160) (560 -4509 160) (560 -4509 216)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 170" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "424244" + side + { + "id" "123021" + "plane" "(1184 -5232 0) (1184 -5088 0) (1200 -5088 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 832] 0.125" + "vaxis" "[1 0 0 -127.998] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123020" + "plane" "(1184 -5088 -16) (1184 -5232 -16) (1200 -5232 -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" "123019" + "plane" "(1184 -5232 -16) (1184 -5088 -16) (1184 -5088 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" "123018" + "plane" "(1184 -5088 -16) (1200 -5088 -16) (1200 -5088 0)" + "material" "WOOD/HR_W/HR_WOOD_PANELING_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123017" + "plane" "(1200 -5232 -16) (1184 -5232 -16) (1184 -5232 0)" + "material" "WOOD/HR_W/HR_WOOD_PANELING_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123016" + "plane" "(1200 -5088 -16) (1200 -5232 -16) (1200 -5232 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" + } + editor + { + "color" "0 210 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "424249" + side + { + "id" "123033" + "plane" "(1184 -5088 0) (1184 -4992 0) (1200 -4992 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123032" + "plane" "(1200 -4992 -16) (1184 -4992 -16) (1184 -5088 -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" "123031" + "plane" "(1184 -5088 -16) (1184 -4992 -16) (1184 -4992 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" "123030" + "plane" "(1184 -4992 -16) (1200 -4992 -16) (1200 -4992 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" "123029" + "plane" "(1200 -5088 -16) (1184 -5088 -16) (1184 -5088 0)" + "material" "WOOD/HR_W/HR_WOOD_PANELING_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123028" + "plane" "(1200 -4992 -16) (1200 -5088 -16) (1200 -5088 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" + } + editor + { + "color" "0 210 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "424253" + side + { + "id" "123039" + "plane" "(1200 -5600 0) (1184 -5600 0) (1184 -5232 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123038" + "plane" "(1200 -5232 -16) (1184 -5232 -16) (1184 -5600 -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" "123037" + "plane" "(1184 -5600 -16) (1184 -5232 -16) (1184 -5232 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" "123036" + "plane" "(1200 -5600 -16) (1184 -5600 -16) (1184 -5600 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" "123035" + "plane" "(1184 -5232 -16) (1200 -5232 -16) (1200 -5232 0)" + "material" "WOOD/HR_W/HR_WOOD_PANELING_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123034" + "plane" "(1200 -5232 -16) (1200 -5600 -16) (1200 -5600 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" + } + editor + { + "color" "0 210 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "424416" + side + { + "id" "123106" + "plane" "(384 -3724 208) (384 -3440 208) (400 -3440 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" "123107" + "plane" "(384 -3440 192) (384 -3724 192) (400 -3724 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" "123108" + "plane" "(384 -3724 192) (384 -3440 192) (384 -3440 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" "123109" + "plane" "(400 -3440 192) (400 -3724 192) (400 -3724 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" "123110" + "plane" "(384 -3440 192) (400 -3440 192) (400 -3440 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" "123111" + "plane" "(400 -3724 192) (384 -3724 192) (384 -3724 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" + } + editor + { + "color" "0 152 149" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "424617" + side + { + "id" "123166" + "plane" "(400 -2912 208) (400 -2128 208) (496 -2128 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" "123167" + "plane" "(400 -2128 192) (400 -2912 192) (496 -2912 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" "123168" + "plane" "(400 -2912 192) (400 -2128 192) (400 -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" "123169" + "plane" "(496 -2128 192) (496 -2912 192) (496 -2912 208)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 145] 0.125" + "vaxis" "[0 1 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123170" + "plane" "(400 -2128 192) (496 -2128 192) (496 -2128 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" "123171" + "plane" "(496 -2912 192) (400 -2912 192) (400 -2912 208)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 145] 0.125" + "vaxis" "[1 0 0 -7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 208 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "416954" + side + { + "id" "121177" + "plane" "(80 -5536 264) (160 -5536 264) (160 -5664 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121178" + "plane" "(80 -5664 176) (160 -5664 176) (160 -5536 176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121179" + "plane" "(80 -5536 264) (80 -5664 264) (80 -5664 176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121180" + "plane" "(160 -5536 176) (160 -5664 176) (160 -5664 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121181" + "plane" "(160 -5536 264) (80 -5536 264) (80 -5536 176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121182" + "plane" "(160 -5664 176) (80 -5664 176) (80 -5664 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 150 135" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "418848" + side + { + "id" "121961" + "plane" "(480 -2912 8) (480 -2682 8) (496 -2682 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" "121962" + "plane" "(480 -2682 -40) (480 -2912 -40) (496 -2912 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121963" + "plane" "(480 -2912 -40) (480 -2682 -40) (480 -2682 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121964" + "plane" "(496 -2682 -40) (496 -2912 -40) (496 -2912 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121965" + "plane" "(480 -2682 -40) (496 -2682 -40) (496 -2682 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -143.996] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121966" + "plane" "(496 -2912 -40) (480 -2912 -40) (480 -2912 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 155 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "408393" + side + { + "id" "120409" + "plane" "(-288 -6640 240) (-288 -6624 240) (176 -6624 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0.00976563] 0.25" + "vaxis" "[1 0 0 -11.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120408" + "plane" "(-288 -6624 4) (-288 -6640 4) (176 -6640 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120407" + "plane" "(-288 -6624 4) (-288 -6624 240) (-288 -6640 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120406" + "plane" "(176 -6624 4) (176 -6624 240) (-288 -6624 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 53] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120405" + "plane" "(-288 -6640 4) (-288 -6640 240) (176 -6640 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0.0039978] 0.25" + "vaxis" "[0 0 -1 52.988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120404" + "plane" "(176 -6640 4) (176 -6640 240) (176 -6624 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "108 221 0" + "groupid" "980819" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "408399" + side + { + "id" "120433" + "plane" "(152 -5904 264) (152 -5536 264) (1216 -5536 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120432" + "plane" "(152 -5536 176) (152 -5904 176) (1216 -5904 176)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120431" + "plane" "(152 -5904 176) (152 -5536 176) (152 -5536 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 31.998] 0.25" + "vaxis" "[0 0 -1 -0.00389862] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120430" + "plane" "(1216 -5536 176) (1216 -5904 176) (1216 -5904 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120429" + "plane" "(152 -5536 176) (1216 -5536 176) (1216 -5536 264)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 -0.00389862] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120428" + "plane" "(1216 -5904 176) (152 -5904 176) (152 -5904 264)" + "material" "TOOLS/TOOLSCLIP" + "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 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "408503" + side + { + "id" "120825" + "plane" "(1040 -5600 192) (1040 -5392 192) (1056 -5392 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120824" + "plane" "(1040 -5392 96) (1040 -5600 96) (1056 -5600 96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120823" + "plane" "(1040 -5600 96) (1040 -5392 96) (1040 -5392 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120822" + "plane" "(1056 -5392 96) (1056 -5600 96) (1056 -5600 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120821" + "plane" "(1040 -5392 96) (1056 -5392 96) (1056 -5392 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120820" + "plane" "(1056 -5600 96) (1040 -5600 96) (1040 -5600 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 156 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "408504" + side + { + "id" "120831" + "plane" "(1040 -5392 192) (1040 -5376 192) (1182 -5376 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120830" + "plane" "(1040 -5376 0) (1040 -5392 0) (1182 -5392 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120829" + "plane" "(1040 -5392 0) (1040 -5376 0) (1040 -5376 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120828" + "plane" "(1182 -5376 0) (1182 -5392 0) (1182 -5392 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120827" + "plane" "(1040 -5376 0) (1182 -5376 0) (1182 -5376 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 -16] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120826" + "plane" "(1182 -5392 0) (1040 -5392 0) (1040 -5392 192)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 16] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 100 193" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "408508" + side + { + "id" "120855" + "plane" "(1408 -4704 248) (1544 -4736 248) (1600 -4968 248)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120854" + "plane" "(1576 -4976 -16) (1600 -4968 -16) (1544 -4736 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120853" + "plane" "(1408 -4704 -16) (1408 -4704 248) (1576 -4976 248)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120852" + "plane" "(1600 -4968 -16) (1600 -4968 248) (1544 -4736 248)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120851" + "plane" "(1544 -4736 -16) (1544 -4736 248) (1408 -4704 248)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120850" + "plane" "(1576 -4976 -16) (1576 -4976 248) (1600 -4968 248)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 219" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "404422" + side + { + "id" "120344" + "plane" "(1248 -6176 608) (1248 -5456 608) (2224 -5456 608)" + "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" "120345" + "plane" "(1248 -5456 560) (1248 -6176 560) (2224 -6176 560)" + "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" "120346" + "plane" "(1248 -6176 560) (1248 -5456 560) (1248 -5456 608)" + "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" "120347" + "plane" "(2224 -5456 560) (2224 -6176 560) (2224 -6176 608)" + "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" "120348" + "plane" "(1248 -5456 560) (2224 -5456 560) (2224 -5456 608)" + "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" "120349" + "plane" "(2224 -6176 560) (1248 -6176 560) (1248 -6176 608)" + "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" "0 178 151" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "404429" + side + { + "id" "120361" + "plane" "(1200 -6176 -32) (1200 -5888 -32) (2224 -5888 -32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1200 -6176 -32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625" + "row1" "0 0 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625" + "row2" "0 0 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625" + "row3" "0 0 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625" + "row4" "0 0 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625 0 0 0.0625" + } + 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" "120360" + "plane" "(1200 -5888 -33) (1200 -6176 -33) (2224 -6176 -33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120359" + "plane" "(1200 -6176 -33) (1200 -5888 -33) (1200 -5888 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120358" + "plane" "(2224 -5888 -33) (2224 -6176 -33) (2224 -6176 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120357" + "plane" "(1200 -5888 -33) (2224 -5888 -33) (2224 -5888 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120356" + "plane" "(2224 -6176 -33) (1200 -6176 -33) (1200 -6176 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 172 109" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "404531" + side + { + "id" "120379" + "plane" "(848 -5776 48) (848 -5840 48) (864 -5840 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -63.998] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120378" + "plane" "(864 -5776 128) (864 -5776 48) (864 -5840 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120377" + "plane" "(848 -5840 128) (848 -5840 48) (848 -5776 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 -0.0039978] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120376" + "plane" "(848 -5776 128) (848 -5776 48) (864 -5776 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120375" + "plane" "(864 -5840 128) (864 -5840 48) (848 -5840 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120374" + "plane" "(848 -5840 128) (848 -5776 128) (864 -5776 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 31.998] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "404532" + side + { + "id" "120385" + "plane" "(560 -5776 48) (560 -5840 48) (576 -5840 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120384" + "plane" "(560 -5840 128) (560 -5840 48) (560 -5776 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120383" + "plane" "(576 -5776 128) (576 -5776 48) (576 -5840 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 63.996] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120382" + "plane" "(576 -5840 128) (576 -5840 48) (560 -5840 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120381" + "plane" "(560 -5776 128) (560 -5776 48) (576 -5776 48)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120380" + "plane" "(560 -5840 128) (560 -5776 128) (576 -5776 128)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "388666" + side + { + "id" "120104" + "plane" "(-352 -2978 0) (-352 -2904 0) (-46 -2904 0)" + "material" "GROUND/HR_G/HR_GRAVEL_GRASS_001_BLEND" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 412] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-46 -2904 0]" + "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" "1.32743 1.7336 1.95414 1.86961 1.96727" + "row1" "0.899304 1.37505 2.00079 1.12223 1.6021" + "row2" "1.39881 1.36093 0.997427 2.47492 1.46265" + "row3" "0.771734 0.938893 1.10928 0.656988 0.515436" + "row4" "1.41231 1.56354 0.842065 1.76087 2.06335" + } + 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" "255 50 25 150 50" + "row1" "175 225 175 255 75" + "row2" "255 150 0 255 50" + "row3" "0 0 0 0 200" + "row4" "255 225 200 255 200" + } + 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" "120103" + "plane" "(-352 -2904 -4.37707) (-352 -2978 -4.37707) (-46 -2978 -4.37707)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120102" + "plane" "(-46 -2904 -4.37804) (-46 -2978 -4.37804) (-46 -2978 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 -10.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120101" + "plane" "(-352 -2978 -4.37794) (-352 -2904 -4.37794) (-352 -2904 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 -10.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120100" + "plane" "(-46 -2978 -4.37799) (-352 -2978 -4.37799) (-352 -2978 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -10.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "120099" + "plane" "(-352 -2904 -4.37798) (-46 -2904 -4.37799) (-46 -2904 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -10.5] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 217 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "378899" + side + { + "id" "119601" + "plane" "(0 -4400 -96) (0 -4592 -96) (248 -4592 -96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119600" + "plane" "(0 -4592 -96) (0 -4400 -96) (0 -4592 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119599" + "plane" "(248 -4400 -96) (248 -4592 -96) (248 -4592 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119598" + "plane" "(0 -4592 0) (0 -4400 -96) (248 -4400 -96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.894427 0.447214 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119597" + "plane" "(248 -4592 0) (248 -4592 -96) (0 -4592 -96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 187 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "378905" + side + { + "id" "119606" + "plane" "(-204 -4384 -224) (-12 -4384 -224) (-12 -4112 -224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119605" + "plane" "(-204 -4112 -224) (-12 -4112 -224) (-12 -4112 -96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119604" + "plane" "(-12 -4384 -224) (-204 -4384 -224) (-12 -4384 -96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119603" + "plane" "(-204 -4384 -224) (-204 -4112 -224) (-12 -4112 -96)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0.83205 0 0.5547 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "119602" + "plane" "(-12 -4112 -224) (-12 -4384 -224) (-12 -4384 -96)" + "material" "TOOLS/TOOLSCLIP" + "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 110" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "367530" + side + { + "id" "118596" + "plane" "(811 -2173 -36) (492 -2173 -36) (492 -2120 -36)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[811 -2173 -36]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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 200" + "row2" "0 0 180 255 50" + "row3" "0 0 50 230 0" + "row4" "255 50 25 150 50" + } + 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" "118595" + "plane" "(811 -2120 -40.377) (492 -2120 -40.377) (492 -2173 -40.377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 42.4697] 0.25" + "vaxis" "[1 0 0 48.3887] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118594" + "plane" "(811 -2173 -40.3779) (492 -2173 -40.3779) (492 -2173 -36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48.3887] 0.25" + "vaxis" "[0 0 -1 -32.0081] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118593" + "plane" "(492 -2120 -40.378) (811 -2120 -40.378) (811 -2120 -36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48.3887] 0.25" + "vaxis" "[0 0 -1 -32.0081] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118592" + "plane" "(811 -2120 -40.378) (811 -2173 -40.378) (811 -2173 -36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -42.4697] 0.25" + "vaxis" "[0 0 -1 -32.0081] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118591" + "plane" "(492 -2173 -40.3779) (492 -2120 -40.3779) (492 -2120 -36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 42.4697] 0.25" + "vaxis" "[0 0 -1 -32.0081] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 217 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345316" + side + { + "id" "117528" + "plane" "(-640 -4688 0) (-640 -4608 0) (-632 -4608 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 640] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-640 -4688 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "117527" + "plane" "(-640 -4608 -16) (-640 -4688 -16) (-578.667 -4688 -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" "117526" + "plane" "(-640 -4688 -16) (-640 -4608 -16) (-640 -4608 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" "117525" + "plane" "(-640 -4608 -16) (-632 -4608 -16) (-632 -4608 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" "117524" + "plane" "(-578.667 -4688 -16) (-640 -4688 -16) (-640 -4688 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" "117523" + "plane" "(-632 -4608 -16) (-578.667 -4688 -16) (-578.669 -4688 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.5547 0.83205 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 125 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345358" + side + { + "id" "117540" + "plane" "(-528 -4680 0) (-528 -4688 0) (-578.669 -4688 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[-578.67 -4688 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "117539" + "plane" "(-578.672 -4688 -16) (-528 -4688 -16) (-528 -4680 -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" "117538" + "plane" "(-528 -4680 -16) (-528 -4688 -16) (-528 -4688 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" "117537" + "plane" "(-528 -4688 -16) (-578.669 -4688 -16) (-578.672 -4688 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" "117536" + "plane" "(-578.667 -4688 -16) (-600 -4656 -16) (-600 -4656 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.554681 -0.832063 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "117535" + "plane" "(-600 -4656 -16) (-528 -4680 -16) (-528 -4680 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.948683 0.316228 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 125 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345531" + side + { + "id" "117595" + "plane" "(688 -4848 0) (288 -4848 0) (288 -4688 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[288 -4688 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.0406336 -0.322131 0 0.04873 -0.321933 0 0.0379314 -0.322191 0 0.04873 -0.321933 0 0.0417914 -0.322107 0" + "row1" "0.0648739 -0.321441 0 0.0968907 -0.320051 0 0.0648739 -0.321441 0 0.0968907 -0.320051 0 0.0968907 -0.320051 0" + "row2" "0.143941 0.316979 0 0.106416 -0.319558 0 0.143941 0.316979 0 0.106416 -0.319558 0 0.780236 0 0" + "row3" "0.115885 -0.318997 0 0.115885 -0.318997 0 0.0968986 -0.320077 0 0.0968986 -0.320077 0 0.0968986 -0.320077 0" + "row4" "0.106418 -0.319566 0 0.106418 -0.319566 0 0.0969 -0.320083 0 0.0969 -0.320083 0 0.0969 -0.320083 0" + } + distances + { + "row0" "0.00293366 0.00195694 0.00439972 0.00195694 0.00342287" + "row1" "0.00146992 0.000984162 0.00146992 0.000984162 0.000984162" + "row2" "0.00049679 0.00246438 0.00049679 0.00246438 9.15527e-05" + "row3" "0.00246872 0.00246872 0.00295249 0.00295249 0.00295249" + "row4" "0.00492875 0.00492875 0.00541289 0.00541289 0.00541289" + } + 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.25 9 0 0 0" + "row1" "1.75 0 0 0 0" + "row2" "0 0 0 0 0" + "row3" "0 0 0 0 0" + "row4" "4 22.75 59 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" "117594" + "plane" "(688 -4688 -16) (288 -4688 -16) (288 -4848 -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" "117593" + "plane" "(288 -4688 -16) (688 -4688 -16) (688 -4688 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" "117592" + "plane" "(688 -4848 -16) (288 -4848 -16) (288 -4848 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "117591" + "plane" "(288 -4848 -16) (288 -4688 -16) (288 -4688 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "117590" + "plane" "(688 -4688 -16) (688 -4848 -16) (688 -4848 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 220" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345539" + side + { + "id" "117607" + "plane" "(512 -5600 0) (392 -5600 0) (392 -5392 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[392 -5392 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "row0" "0.00731972 -0.499695 0 0 0 0 0.00731972 -0.499695 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.0175281 -0.498575 0 0 0 0 0.0175281 -0.498575 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" + } + distances + { + "row0" "0.000977039 0 0.000977039 0 0" + "row1" "0 0 0 0 0" + "row2" "0 0.00244826 0 0.00244826 0" + "row3" "0 0 0 0 0" + "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 5.5 0" + "row1" "0 0 52.5 13.75 0" + "row2" "0 0 0 19.5 0" + "row3" "0 0 23 1.75 0" + "row4" "0 0 1.75 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" "117606" + "plane" "(512 -5392 -16) (392 -5392 -16) (392 -5600 -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" "117605" + "plane" "(512 -5600 -16) (392 -5600 -16) (392 -5600 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" "117604" + "plane" "(392 -5392 -16) (512 -5392 -16) (512 -5392 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" "117603" + "plane" "(392 -5600 -16) (392 -5392 -16) (392 -5392 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" "117602" + "plane" "(512 -5392 -16) (512 -5600 -16) (512 -5600 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 247 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345634" + side + { + "id" "117646" + "plane" "(-448 -9696 -48) (-448 -6624 -48) (624 -6624 -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" "117647" + "plane" "(-448 -6624 -64) (-448 -9696 -64) (624 -9696 -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" "117648" + "plane" "(-448 -9696 -64) (-448 -6624 -64) (-448 -6624 -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" "117649" + "plane" "(624 -6624 -64) (624 -9696 -64) (624 -9696 -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" "117650" + "plane" "(-448 -6624 -64) (624 -6624 -64) (624 -6624 -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" "117651" + "plane" "(624 -9696 -64) (-448 -9696 -64) (-448 -9696 -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 255 104" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345678" + side + { + "id" "117736" + "plane" "(576 -5600 -16) (848 -5600 -16) (848 -5888 -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" "117737" + "plane" "(576 -5888 -32) (848 -5888 -32) (848 -5600 -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" "117738" + "plane" "(576 -5600 -16) (576 -5888 -16) (576 -5888 -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" "117739" + "plane" "(848 -5600 -32) (848 -5888 -32) (848 -5888 -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" "117740" + "plane" "(848 -5600 -16) (576 -5600 -16) (576 -5600 -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" "117741" + "plane" "(848 -5888 -32) (576 -5888 -32) (576 -5888 -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 225 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345777" + side + { + "id" "117814" + "plane" "(-512 -4688 -16) (-256 -4688 -16) (-256 -5152 -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" "117815" + "plane" "(-512 -5152 -32) (-256 -5152 -32) (-256 -4688 -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" "117816" + "plane" "(-512 -4688 -16) (-512 -5152 -16) (-512 -5152 -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" "117817" + "plane" "(-256 -4688 -32) (-256 -5152 -32) (-256 -5152 -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" "117818" + "plane" "(-256 -4688 -16) (-512 -4688 -16) (-512 -4688 -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" "117819" + "plane" "(-256 -5152 -32) (-512 -5152 -32) (-512 -5152 -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 239 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345779" + side + { + "id" "117820" + "plane" "(-1088 -4560 -16) (-512 -4560 -16) (-512 -5152 -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" "117821" + "plane" "(-1088 -5152 -32) (-512 -5152 -32) (-512 -4560 -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" "117822" + "plane" "(-1088 -4560 -16) (-1088 -5152 -16) (-1088 -5152 -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" "117823" + "plane" "(-512 -4560 -32) (-512 -5152 -32) (-512 -5152 -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" "117824" + "plane" "(-512 -4560 -16) (-1088 -4560 -16) (-1088 -4560 -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" "117825" + "plane" "(-512 -5152 -32) (-1088 -5152 -32) (-1088 -5152 -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 155 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345783" + side + { + "id" "117826" + "plane" "(-1088 -4048 -16) (-640 -4048 -16) (-640 -4560 -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" "117827" + "plane" "(-1088 -4560 -32) (-640 -4560 -32) (-640 -4048 -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" "117828" + "plane" "(-1088 -4048 -16) (-1088 -4560 -16) (-1088 -4560 -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" "117829" + "plane" "(-640 -4048 -32) (-640 -4560 -32) (-640 -4560 -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" "117830" + "plane" "(-640 -4048 -16) (-1088 -4048 -16) (-1088 -4048 -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" "117831" + "plane" "(-640 -4560 -32) (-1088 -4560 -32) (-1088 -4560 -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 215 176" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345785" + side + { + "id" "322215" + "plane" "(264 -4672 240) (264 -4560 240) (280 -4560 240)" + "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" "322214" + "plane" "(264 -4560 -16) (264 -4672 -16) (280 -4672 -16)" + "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" "322213" + "plane" "(264 -4672 -16) (264 -4560 -16) (264 -4560 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" "322212" + "plane" "(280 -4560 -16) (280 -4672 -16) (280 -4672 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" "322211" + "plane" "(264 -4560 -16) (280 -4560 -16) (280 -4560 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" "322210" + "plane" "(280 -4672 -16) (264 -4672 -16) (264 -4672 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" + } + editor + { + "color" "0 119 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345786" + side + { + "id" "117838" + "plane" "(264 -4560 240) (264 -4544 240) (368 -4544 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" "117839" + "plane" "(264 -4544 -16) (264 -4560 -16) (368 -4560 -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" "117840" + "plane" "(264 -4560 -16) (264 -4544 -16) (264 -4544 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" "117841" + "plane" "(368 -4544 -16) (368 -4560 -16) (368 -4560 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" "117842" + "plane" "(264 -4544 -16) (368 -4544 -16) (368 -4544 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" "117843" + "plane" "(368 -4560 -16) (264 -4560 -16) (264 -4560 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" "0 109 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345845" + side + { + "id" "117964" + "plane" "(256 -4560 -16) (384 -4560 -16) (384 -4672 -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" "117965" + "plane" "(256 -4672 -32) (384 -4672 -32) (384 -4560 -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" "117966" + "plane" "(256 -4560 -16) (256 -4672 -16) (256 -4672 -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" "117967" + "plane" "(384 -4560 -32) (384 -4672 -32) (384 -4672 -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" "117968" + "plane" "(384 -4560 -16) (256 -4560 -16) (256 -4560 -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" "117969" + "plane" "(384 -4672 -32) (256 -4672 -32) (256 -4672 -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 121 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345847" + side + { + "id" "117970" + "plane" "(384 -3776 -16) (1024 -3776 -16) (1024 -4672 -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" "117971" + "plane" "(384 -4672 -32) (1024 -4672 -32) (1024 -3776 -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" "117972" + "plane" "(384 -3776 -32) (384 -3776 -16) (384 -4672 -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" "117973" + "plane" "(1024 -4672 -32) (1024 -4672 -16) (1024 -3776 -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" "117974" + "plane" "(1024 -3776 -32) (1024 -3776 -16) (384 -3776 -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" "117975" + "plane" "(384 -4672 -32) (384 -4672 -16) (1024 -4672 -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 221 150" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345889" + side + { + "id" "118004" + "plane" "(-1088 -4048 -16) (-1088 -3550 -16) (-816 -3550 -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" "118005" + "plane" "(-1088 -3550 -32) (-1088 -4048 -32) (-816 -4048 -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" "118006" + "plane" "(-1088 -4048 -32) (-1088 -3550 -32) (-1088 -3550 -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" "118007" + "plane" "(-816 -3550 -32) (-816 -4048 -32) (-816 -4048 -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" "118008" + "plane" "(-1088 -3550 -32) (-816 -3550 -32) (-816 -3550 -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" "118009" + "plane" "(-816 -4048 -32) (-1088 -4048 -32) (-1088 -4048 -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 121 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345910" + side + { + "id" "118028" + "plane" "(-816 -4048 -16) (-816 -3550 -16) (-144 -3550 -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" "118029" + "plane" "(-816 -3550 -32) (-816 -4048 -32) (-144 -4048 -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" "118030" + "plane" "(-816 -4048 -32) (-816 -3550 -32) (-816 -3550 -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" "118031" + "plane" "(-144 -3550 -32) (-144 -4048 -32) (-144 -4048 -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" "118032" + "plane" "(-816 -3550 -32) (-144 -3550 -32) (-144 -3550 -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" "118033" + "plane" "(-144 -4048 -32) (-816 -4048 -32) (-816 -4048 -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 111 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345935" + side + { + "id" "118040" + "plane" "(-256 -5600 -16) (160 -5600 -16) (160 -5680 -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" "118041" + "plane" "(-256 -5680 -32) (160 -5680 -32) (160 -5600 -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" "118042" + "plane" "(-256 -5600 -16) (-256 -5680 -16) (-256 -5680 -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" "118043" + "plane" "(160 -5600 -32) (160 -5680 -32) (160 -5680 -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" "118044" + "plane" "(160 -5600 -16) (-256 -5600 -16) (-256 -5600 -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" "118045" + "plane" "(160 -5680 -32) (-256 -5680 -32) (-256 -5680 -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 237 138" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "345994" + side + { + "id" "118124" + "plane" "(-592 -3312 -16) (-592 -2912 -16) (384 -2912 -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" "118125" + "plane" "(-592 -2912 -48) (-592 -3312 -48) (384 -3312 -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" "118126" + "plane" "(-592 -3312 -48) (-592 -2912 -48) (-592 -2912 -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" "118127" + "plane" "(384 -2912 -48) (384 -3312 -48) (384 -3312 -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" "118128" + "plane" "(-592 -2912 -48) (384 -2912 -48) (384 -2912 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118129" + "plane" "(384 -3312 -48) (-592 -3312 -48) (-592 -3312 -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 213 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "346052" + side + { + "id" "322209" + "plane" "(264 -4544 176) (264 -4064 176) (368 -4064 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" "322208" + "plane" "(264 -4064 -32) (264 -4544 -32) (368 -4544 -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" "322207" + "plane" "(264 -4544 -32) (264 -4064 -32) (264 -4064 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" "322206" + "plane" "(368 -4064 -32) (368 -4544 -32) (368 -4544 176)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 -1824] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322205" + "plane" "(264 -4064 -32) (368 -4064 -32) (368 -4064 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" "322204" + "plane" "(368 -4544 -32) (264 -4544 -32) (264 -4544 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" "0 155 212" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "331824" + side + { + "id" "114185" + "plane" "(-640 -4400 240) (-640 -4016 240) (-424 -4016 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" "114186" + "plane" "(-640 -4016 224) (-640 -4400 224) (-424 -4400 224)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "114187" + "plane" "(-640 -4400 224) (-640 -4016 224) (-640 -4016 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" "114188" + "plane" "(-424 -4016 224) (-424 -4400 224) (-424 -4400 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" "114189" + "plane" "(-640 -4016 224) (-424 -4016 224) (-424 -4016 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" "114190" + "plane" "(-424 -4400 224) (-640 -4400 224) (-640 -4400 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" "0 161 238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "331898" + side + { + "id" "114214" + "plane" "(240 -4016 176) (240 -4112 176) (-424 -4112 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" "114213" + "plane" "(240 -4112 176) (240 -4016 176) (240 -4016 -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" "114212" + "plane" "(240 -4016 -32) (240 -4016 176) (-424 -4016 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" "114211" + "plane" "(240 -4112 176) (240 -4112 -32) (-424 -4112 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "114210" + "plane" "(240 -4112 -32) (240 -4016 -32) (-424 -4016 -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" "114209" + "plane" "(-424 -4016 176) (-424 -4112 176) (-424 -4112 -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" + } + editor + { + "color" "0 183 232" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "331949" + side + { + "id" "114227" + "plane" "(-424 -4384 240) (-424 -4016 240) (-408 -4016 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" "114228" + "plane" "(-424 -4016 176) (-424 -4384 176) (-408 -4384 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" "114229" + "plane" "(-424 -4384 176) (-424 -4016 176) (-424 -4016 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" "114230" + "plane" "(-408 -4016 176) (-408 -4384 176) (-408 -4384 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" "114231" + "plane" "(-424 -4016 176) (-408 -4016 176) (-408 -4016 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" "114232" + "plane" "(-408 -4384 176) (-424 -4384 176) (-424 -4384 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" "0 131 136" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "331950" + side + { + "id" "114233" + "plane" "(-424 -4400 240) (-424 -4384 240) (6.12953e-05 -4384 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" "114234" + "plane" "(-424 -4384 160) (-424 -4400 160) (6.12953e-05 -4400 160)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "114235" + "plane" "(-424 -4400 160) (-424 -4384 160) (-424 -4384 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" "114236" + "plane" "(6.12953e-05 -4384 160) (6.12953e-05 -4400 160) (6.12953e-05 -4400 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" "114237" + "plane" "(-424 -4384 160) (6.12953e-05 -4384 160) (6.12953e-05 -4384 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" "114238" + "plane" "(6.12953e-05 -4400 160) (-424 -4400 160) (-424 -4400 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" "0 213 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "335374" + side + { + "id" "115983" + "plane" "(476 -2908 -36) (476 -2696 -36) (571.617 -2696 -36)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[571.617 -2696 -36]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "255 250 0 0 200" + "row2" "255 100 180 255 50" + "row3" "0 0 50 230 0" + "row4" "255 50 25 150 50" + } + 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" "115982" + "plane" "(476 -2696 -40.375) (476 -2908 -40.375) (571.617 -2908 -40.375)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 1 0 -3.6113] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115981" + "plane" "(571.617 -2696 -40.375) (571.617 -2908 -40.375) (571.617 -2908 -36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -3.6113] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115980" + "plane" "(476 -2908 -40.375) (476 -2696 -40.375) (476 -2696 -36)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 3.6113] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "115979" + "plane" "(476 -2696 -40.375) (571.617 -2696 -40.375) (571.617 -2696 -36)" + "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" "115978" + "plane" "(571.617 -2908 -40.375) (476 -2908 -40.375) (476 -2908 -36)" + "material" "TOOLS/TOOLSNODRAW" + "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 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "306417" + side + { + "id" "108419" + "plane" "(560 -4688 0) (256 -4688 0) (256 -4112 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[256 -4688 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "108418" + "plane" "(560 -4112 -16) (256 -4112 -16) (256 -4688 -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" "108417" + "plane" "(256 -4688 -16) (256 -4112 -16) (256 -4112 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" "108416" + "plane" "(560 -4688 -16) (256 -4688 -16) (256 -4688 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" "108415" + "plane" "(256 -4112 -16) (560 -4112 -16) (560 -4112 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" "108414" + "plane" "(560 -4112 -16) (560 -4688 -16) (560 -4688 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" + } + editor + { + "color" "0 229 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "306422" + side + { + "id" "108437" + "plane" "(256 -4112 0) (256 -3776 0) (1024 -3776 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[256 -4112 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "108436" + "plane" "(1024 -4112 -16) (1024 -3776 -16) (256 -3776 -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" "108435" + "plane" "(1024 -3776 -16) (1024 -4112 -16) (1024 -4112 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" "108434" + "plane" "(256 -3776 -16) (1024 -3776 -16) (1024 -3776 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" "108433" + "plane" "(256 -4112 -16) (256 -3776 -16) (256 -3776 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" "108432" + "plane" "(1024 -4112 -16) (256 -4112 -16) (256 -4112 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 229 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "306426" + side + { + "id" "108449" + "plane" "(848 -4112 0) (1024 -4112 0) (1024 -4688 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[848 -4688 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "108448" + "plane" "(848 -4688 -16) (1024 -4688 -16) (1024 -4112 -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" "108447" + "plane" "(1024 -4112 -16) (1024 -4688 -16) (1024 -4688 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" "108446" + "plane" "(1024 -4688 -16) (848 -4688 -16) (848 -4688 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" "108445" + "plane" "(848 -4112 -16) (1024 -4112 -16) (1024 -4112 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" "108444" + "plane" "(848 -4688 -16) (848 -4112 -16) (848 -4112 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" + } + editor + { + "color" "0 229 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "306429" + side + { + "id" "108455" + "plane" "(848 -4688 0) (560 -4688 0) (560 -4512 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[560 -4688 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "108454" + "plane" "(560 -4512 -16) (560 -4688 -16) (848 -4688 -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" "108453" + "plane" "(848 -4688 -16) (560 -4688 -16) (560 -4688 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" "108452" + "plane" "(560 -4688 -16) (560 -4512 -16) (560 -4512 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" "108451" + "plane" "(848 -4512 -16) (848 -4688 -16) (848 -4688 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" "108450" + "plane" "(560 -4512 -16) (848 -4512 -16) (848 -4512 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 229 174" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "273496" + side + { + "id" "92711" + "plane" "(-816 -3808 -32) (-816 -3648 -32) (-576 -3648 -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" "92710" + "plane" "(-816 -3648 -48) (-816 -3808 -48) (-576 -3808 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92709" + "plane" "(-816 -3808 -48) (-816 -3648 -48) (-816 -3648 -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" "92708" + "plane" "(-576 -3648 -48) (-576 -3808 -48) (-576 -3808 -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" "92707" + "plane" "(-576 -3808 -48) (-816 -3808 -48) (-816 -3808 -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" "92706" + "plane" "(-816 -3648 -48) (-576 -3648 -48) (-576 -3648 -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 160 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "273497" + side + { + "id" "92717" + "plane" "(-792 -3648 -32) (-792 -3216 -32) (-608 -3216 -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" "92716" + "plane" "(-792 -3216 -48) (-792 -3648 -48) (-608 -3648 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[-1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92715" + "plane" "(-792 -3648 -48) (-792 -3216 -48) (-792 -3216 -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" "92714" + "plane" "(-608 -3216 -48) (-608 -3648 -48) (-608 -3648 -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" "92713" + "plane" "(-792 -3216 -48) (-608 -3216 -48) (-608 -3216 -32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 335] 0.125" + "vaxis" "[0 0 -1 -344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92712" + "plane" "(-608 -3648 -48) (-792 -3648 -48) (-792 -3648 -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 160 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285338" + side + { + "id" "103105" + "plane" "(640 -960 -144) (640 0 -144) (2912 0 -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" "103106" + "plane" "(640 0 -160) (640 -960 -160) (2912 -960 -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" "103107" + "plane" "(640 -960 -160) (640 0 -160) (640 0 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103108" + "plane" "(2912 0 -160) (2912 -960 -160) (2912 -960 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103109" + "plane" "(640 0 -160) (2912 0 -160) (2912 0 -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" "103110" + "plane" "(2912 -960 -160) (640 -960 -160) (640 -960 -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" + } + editor + { + "color" "0 161 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285341" + side + { + "id" "103111" + "plane" "(2912 -1280 -16) (2912 -1.7643e-05 -16) (2928 -1.7643e-05 -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" "103112" + "plane" "(2912 -1.7643e-05 -160) (2912 -1280 -160) (2928 -1280 -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" "103113" + "plane" "(2912 -1280 -160) (2912 -1.7643e-05 -160) (2912 -1.7643e-05 -16)" + "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" "103114" + "plane" "(2928 -1.7643e-05 -160) (2928 -1280 -160) (2928 -1280 -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" "103115" + "plane" "(2912 -1.7643e-05 -160) (2928 -1.7643e-05 -160) (2928 -1.7643e-05 -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" "103116" + "plane" "(2928 -1280 -160) (2912 -1280 -160) (2912 -1280 -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 179 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285342" + side + { + "id" "103128" + "plane" "(624 -1280 -40) (624 -640 -40) (640 -640 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103127" + "plane" "(624 -640 -160) (624 -1280 -160) (640 -1280 -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" "103126" + "plane" "(624 -1280 -160) (624 -640 -160) (624 -640 -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" "103125" + "plane" "(640 -640 -160) (640 -1280 -160) (640 -1280 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103124" + "plane" "(624 -640 -160) (640 -640 -160) (640 -640 -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" "103123" + "plane" "(640 -1280 -160) (624 -1280 -160) (624 -1280 -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 179 200" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285345" + side + { + "id" "103129" + "plane" "(624 -960 -32) (624 -944 -32) (2408 -944 -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" "103130" + "plane" "(624 -944 -144) (624 -960 -144) (2408 -960 -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" "103131" + "plane" "(624 -960 -144) (624 -944 -144) (624 -944 -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" "103132" + "plane" "(2408 -944 -144) (2408 -960 -144) (2408 -960 -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" "103133" + "plane" "(624 -944 -144) (2408 -944 -144) (2408 -944 -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" "103134" + "plane" "(2408 -960 -144) (624 -960 -144) (624 -960 -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 155 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285358" + side + { + "id" "103135" + "plane" "(2912 -1264 560) (2912 7.24792e-05 560) (2928 7.24792e-05 560)" + "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" "103136" + "plane" "(2912 7.24792e-05 -16) (2912 -1264 -16) (2928 -1264 -16)" + "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" "103137" + "plane" "(2912 -1264 -16) (2912 7.24792e-05 -16) (2912 7.24792e-05 560)" + "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" "103138" + "plane" "(2928 7.24792e-05 -16) (2928 -1264 -16) (2928 -1264 560)" + "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" "103139" + "plane" "(2912 7.24792e-05 -16) (2928 7.24792e-05 -16) (2928 7.24792e-05 560)" + "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" "103140" + "plane" "(2928 -1264 -16) (2912 -1264 -16) (2912 -1264 560)" + "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" "0 113 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285361" + side + { + "id" "103141" + "plane" "(-112 0 576) (-112 16 576) (2928 16 576)" + "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" "103142" + "plane" "(-112 16 -160) (-112 0 -160) (2928 0 -160)" + "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" "103143" + "plane" "(-112 0 -160) (-112 16 -160) (-112 16 576)" + "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" "103144" + "plane" "(2928 16 -160) (2928 0 -160) (2928 0 576)" + "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" "103145" + "plane" "(-112 16 -160) (2928 16 -160) (2928 16 576)" + "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" "103146" + "plane" "(2928 0 -160) (-112 0 -160) (-112 0 576)" + "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" "0 103 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285397" + side + { + "id" "103176" + "plane" "(1728 -1184 624) (640 -1184 624) (640 16 624)" + "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" "103175" + "plane" "(1728 16 576) (640 16 576) (640 -1184 576)" + "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" "103174" + "plane" "(640 -1184 576) (640 16 576) (640 16 624)" + "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" "103173" + "plane" "(640 16 576) (1728 16 576) (1728 16 624)" + "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" "103172" + "plane" "(1728 -1184 576) (640 -1184 576) (640 -1184 624)" + "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" "103171" + "plane" "(1728 16 576) (1728 -1184 576) (1728 -1184 624)" + "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" "0 101 106" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285398" + side + { + "id" "103182" + "plane" "(1728 0 608) (2912 0 608) (2912 -1280 608)" + "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" "103181" + "plane" "(1728 -1280 552) (2912 -1280 552) (2912 0 552)" + "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" "103180" + "plane" "(2912 0 552) (2912 -1280 552) (2912 -1280 608)" + "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" "103179" + "plane" "(1728 0 552) (2912 0 552) (2912 0 608)" + "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" "103178" + "plane" "(2912 -1280 552) (1728 -1280 552) (1728 -1280 608)" + "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" "103177" + "plane" "(1728 -1280 552) (1728 0 552) (1728 0 608)" + "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" "0 101 106" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285400" + side + { + "id" "103183" + "plane" "(1728 -1280 1312) (1728 -1248 1312) (3552 -1248 1312)" + "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" "103184" + "plane" "(1728 -1248 608) (1728 -1280 608) (3552 -1280 608)" + "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" "103185" + "plane" "(1728 -1280 608) (1728 -1248 608) (1728 -1248 1312)" + "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" "103186" + "plane" "(3552 -1248 608) (3552 -1280 608) (3552 -1280 1312)" + "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" "103187" + "plane" "(1728 -1248 608) (3552 -1248 608) (3552 -1248 1312)" + "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" "103188" + "plane" "(3552 -1280 608) (1728 -1280 608) (1728 -1280 1312)" + "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" "0 169 162" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285414" + side + { + "id" "103189" + "plane" "(1728 -2672 1312) (2400 -2672 1312) (2400 -2704 1312)" + "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" "103190" + "plane" "(1728 -2704 608) (2400 -2704 608) (2400 -2672 608)" + "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" "103191" + "plane" "(1728 -2672 1312) (1728 -2704 1312) (1728 -2704 608)" + "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" "103192" + "plane" "(2400 -2672 608) (2400 -2704 608) (2400 -2704 1312)" + "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" "103193" + "plane" "(2400 -2672 1312) (1728 -2672 1312) (1728 -2672 608)" + "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" "103194" + "plane" "(2400 -2704 608) (1728 -2704 608) (1728 -2704 1312)" + "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" "0 209 182" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285415" + side + { + "id" "103195" + "plane" "(1696 -1280 1312) (1728 -1280 1312) (1728 -2672 1312)" + "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" "103196" + "plane" "(1696 -2672 608) (1728 -2672 608) (1728 -1280 608)" + "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" "103197" + "plane" "(1696 -1280 1312) (1696 -2672 1312) (1696 -2672 608)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103198" + "plane" "(1728 -1280 608) (1728 -2672 608) (1728 -2672 1312)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103199" + "plane" "(1728 -1280 1312) (1696 -1280 1312) (1696 -1280 608)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103200" + "plane" "(1728 -2672 608) (1696 -2672 608) (1696 -2672 1312)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 219 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "285419" + side + { + "id" "103201" + "plane" "(1696 -2688 1344) (1696 -1248 1344) (3552 -1248 1344)" + "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" "103202" + "plane" "(1696 -1248 1312) (1696 -2688 1312) (3552 -2688 1312)" + "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" "103203" + "plane" "(1696 -2688 1312) (1696 -1248 1312) (1696 -1248 1344)" + "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" "103204" + "plane" "(3552 -1248 1312) (3552 -2688 1312) (3552 -2688 1344)" + "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" "103205" + "plane" "(1696 -1248 1312) (3552 -1248 1312) (3552 -1248 1344)" + "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" "103206" + "plane" "(3552 -2688 1312) (1696 -2688 1312) (1696 -2688 1344)" + "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" "0 215 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "268756" + side + { + "id" "92382" + "plane" "(2128 -3192 368) (2808 -3192 368) (2808 -3776 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" "92381" + "plane" "(2128 -3776 352) (2808 -3776 352) (2808 -3192 352)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 127] 0.125" + "vaxis" "[0 -1 0 -486] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92380" + "plane" "(2808 -3192 352) (2808 -3776 352) (2808 -3776 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" "92379" + "plane" "(2808 -3776 352) (2128 -3776 352) (2128 -3776 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" "92378" + "plane" "(2128 -3192 352) (2808 -3192 352) (2808 -3192 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" "92377" + "plane" "(2128 -3776 352) (2128 -3192 352) (2128 -3192 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 248 133" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262744" + side + { + "id" "92024" + "plane" "(176 -6632 240) (176 -6624 240) (1144 -6624 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92025" + "plane" "(176 -6624 0.123499) (176 -6632 0.123499) (1144 -6632 0.123499)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92026" + "plane" "(176 -6632 0.124165) (176 -6624 0.124165) (176 -6624 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92027" + "plane" "(1144 -6624 0.12434) (1144 -6632 0.12434) (1144 -6632 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92028" + "plane" "(176 -6624 0.124259) (1144 -6624 0.124267) (1144 -6624 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92029" + "plane" "(1144 -6632 0.124237) (176 -6632 0.124246) (176 -6632 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 243 0" + "groupid" "980812" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262745" + side + { + "id" "92030" + "plane" "(1200 -6560 239.999) (1200 -5888 239.999) (1216 -5888 239.999)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92031" + "plane" "(1200 -5888 0.123506) (1200 -6560 0.123506) (1216 -6560 0.123506)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92032" + "plane" "(1200 -6560 0.124422) (1200 -5888 0.124434) (1200 -5888 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92033" + "plane" "(1216 -5888 0.12465) (1216 -6560 0.124662) (1216 -6560 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92034" + "plane" "(1200 -5888 0.124564) (1216 -5888 0.124564) (1216 -5888 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92035" + "plane" "(1216 -6560 0.12452) (1200 -6560 0.12452) (1200 -6560 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "246 243 0" + "groupid" "980812" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262758" + side + { + "id" "92054" + "plane" "(2032 -4736 560) (2032 -4720 560) (2408 -4720 560)" + "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" "92055" + "plane" "(2032 -4720 400) (2032 -4736 400) (2408 -4736 400)" + "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" "92056" + "plane" "(2032 -4736 400) (2032 -4720 400) (2032 -4720 560)" + "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" "92057" + "plane" "(2408 -4720 400) (2408 -4736 400) (2408 -4736 560)" + "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" "92058" + "plane" "(2032 -4720 400) (2408 -4720 400) (2408 -4720 560)" + "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" "92059" + "plane" "(2408 -4736 400) (2032 -4736 400) (2032 -4736 560)" + "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" "0 107 204" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262763" + side + { + "id" "92065" + "plane" "(2176 -4736 608) (2176 -4160 608) (2416 -4160 608)" + "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" "92064" + "plane" "(2176 -4160 560) (2176 -4736 560) (2416 -4736 560)" + "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" "92063" + "plane" "(2176 -4736 560) (2176 -4160 560) (2176 -4160 608)" + "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" "92062" + "plane" "(2416 -4160 560) (2416 -4736 560) (2416 -4736 608)" + "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" "92061" + "plane" "(2416 -4736 560) (2176 -4736 560) (2176 -4736 608)" + "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" "92060" + "plane" "(2176 -4160 560) (2416 -4160 560) (2416 -4160 608)" + "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" "0 147 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262764" + side + { + "id" "92071" + "plane" "(2176 -4160 608) (2176 -3200 608) (2416 -3200 608)" + "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" "92070" + "plane" "(2176 -3200 560) (2176 -4160 560) (2416 -4160 560)" + "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" "92069" + "plane" "(2176 -4160 560) (2176 -3200 560) (2176 -3200 608)" + "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" "92068" + "plane" "(2416 -3200 560) (2416 -4160 560) (2416 -4160 608)" + "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" "92067" + "plane" "(2176 -3200 560) (2416 -3200 560) (2416 -3200 608)" + "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" "92066" + "plane" "(2416 -4160 560) (2176 -4160 560) (2176 -4160 608)" + "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" "0 147 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262772" + side + { + "id" "92084" + "plane" "(1920 -4720 560) (1920 -4200 560) (2464 -4200 560)" + "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" "92085" + "plane" "(1920 -4200 400) (1920 -4720 400) (2464 -4720 400)" + "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" "92086" + "plane" "(1920 -4720 400) (1920 -4200 400) (1920 -4200 560)" + "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" "92087" + "plane" "(2464 -4200 400) (2464 -4720 400) (2464 -4720 560)" + "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" "92088" + "plane" "(1920 -4200 400) (2464 -4200 400) (2464 -4200 560)" + "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" "92089" + "plane" "(2464 -4720 400) (1920 -4720 400) (1920 -4720 560)" + "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" "0 135 112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262777" + side + { + "id" "92096" + "plane" "(1728 -3200 608) (1728 -2672 608) (2400 -2672 608)" + "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" "92097" + "plane" "(1728 -2672 560) (1728 -3200 560) (2400 -3200 560)" + "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" "92098" + "plane" "(1728 -3200 560) (1728 -2672 560) (1728 -2672 608)" + "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" "92099" + "plane" "(2400 -2672 560) (2400 -3200 560) (2400 -3200 608)" + "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" "92100" + "plane" "(1728 -2672 560) (2400 -2672 560) (2400 -2672 608)" + "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" "92101" + "plane" "(2400 -3200 560) (1728 -3200 560) (1728 -3200 608)" + "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" "0 225 154" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262832" + side + { + "id" "92198" + "plane" "(2400 -2688 1312) (2400 -2672 1312) (2928 -2672 1312)" + "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" "92199" + "plane" "(2400 -2672 552) (2400 -2688 552) (2928 -2688 552)" + "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" "92200" + "plane" "(2400 -2688 552) (2400 -2672 552) (2400 -2672 1312)" + "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" "92201" + "plane" "(2928 -2672 552) (2928 -2688 552) (2928 -2688 1312)" + "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" "92202" + "plane" "(2400 -2672 552) (2928 -2672 552) (2928 -2672 1312)" + "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" "92203" + "plane" "(2928 -2688 552) (2400 -2688 552) (2400 -2688 1312)" + "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" "0 167 152" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262834" + side + { + "id" "92210" + "plane" "(3552 -1644 1312) (3552 -1280 1312) (3568 -1280 1312)" + "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" "92211" + "plane" "(3552 -1280 -39.9999) (3552 -1644 -39.9999) (3568 -1644 -39.9999)" + "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" "92212" + "plane" "(3552 -1644 -39.9999) (3552 -1280 -39.9999) (3552 -1280 1312)" + "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" "92213" + "plane" "(3568 -1280 -39.9999) (3568 -1644 -39.9999) (3568 -1644 1312)" + "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" "92214" + "plane" "(3552 -1280 -39.9999) (3568 -1280 -39.9999) (3568 -1280 1312)" + "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" "92215" + "plane" "(3568 -1644 -39.9999) (3552 -1644 -39.9999) (3552 -1644 1312)" + "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" "0 179 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262845" + side + { + "id" "92228" + "plane" "(2912 -1280 608) (2912 -1264 608) (3552 -1264 608)" + "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" "92229" + "plane" "(2912 -1264 -16) (2912 -1280 -16) (3552 -1280 -16)" + "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" "92230" + "plane" "(2912 -1280 -16) (2912 -1264 -16) (2912 -1264 608)" + "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" "92231" + "plane" "(3552 -1264 -16) (3552 -1280 -16) (3552 -1280 608)" + "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" "92232" + "plane" "(2912 -1264 -16) (3552 -1264 -16) (3552 -1264 608)" + "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" "92233" + "plane" "(3552 -1280 -16) (2912 -1280 -16) (2912 -1280 608)" + "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" "0 145 202" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262866" + side + { + "id" "92240" + "plane" "(1024 -4784 560) (1024 -4200 560) (1920 -4200 560)" + "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" "92241" + "plane" "(1024 -4200 400) (1024 -4784 400) (1920 -4784 400)" + "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" "92242" + "plane" "(1024 -4784 400) (1024 -4200 400) (1024 -4200 560)" + "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" "92243" + "plane" "(1920 -4200 400) (1920 -4784 400) (1920 -4784 560)" + "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" "92244" + "plane" "(1024 -4200 400) (1920 -4200 400) (1920 -4200 560)" + "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" "92245" + "plane" "(1920 -4784 400) (1024 -4784 400) (1024 -4784 560)" + "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" "0 147 160" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262870" + side + { + "id" "92246" + "plane" "(1229 -5712 560) (1229 -4784 560) (2224 -4784 560)" + "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" "92247" + "plane" "(1229 -4784 400) (1229 -5712 400) (2224 -5712 400)" + "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" "92248" + "plane" "(1229 -5712 400) (1229 -4784 400) (1229 -4784 560)" + "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" "92249" + "plane" "(2224 -4784 400) (2224 -5712 400) (2224 -5712 560)" + "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" "92250" + "plane" "(1229 -4784 400) (2224 -4784 400) (2224 -4784 560)" + "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" "92251" + "plane" "(2224 -5712 400) (1229 -5712 400) (1229 -5712 560)" + "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" "0 235 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262920" + side + { + "id" "92258" + "plane" "(-854 -4944 240) (-854 -4935 240) (-576 -4992 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92259" + "plane" "(-854 -4935 0) (-854 -4944 0) (-576 -5008 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92260" + "plane" "(-854 -4944 0) (-854 -4935 0) (-854 -4935 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92261" + "plane" "(-576 -4992 0) (-576 -5008 0) (-576 -5008 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92262" + "plane" "(-854 -4935 0) (-576 -4992 0) (-576 -4992 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92263" + "plane" "(-576 -5008 0) (-854 -4944 0) (-854 -4944 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 181 254" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "262985" + side + { + "id" "92281" + "plane" "(-1104 -3328 240) (-1086 -3328 240) (-1072 -3936 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92280" + "plane" "(-1093 -3936 -2) (-1072 -3936 -2) (-1086 -3328 -2)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92279" + "plane" "(-1104 -3328 -2) (-1104 -3328 240) (-1093 -3936 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92278" + "plane" "(-1072 -3936 -2) (-1072 -3936 240) (-1086 -3328 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92277" + "plane" "(-1086 -3328 -2) (-1086 -3328 240) (-1104 -3328 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92276" + "plane" "(-1093 -3936 -2) (-1093 -3936 240) (-1072 -3936 240)" + "material" "TOOLS/TOOLSCLIP" + "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 184" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "263184" + side + { + "id" "92311" + "plane" "(640 -1744 400) (640 -1720 400) (1536 -1720 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92312" + "plane" "(640 -1720 -16) (640 -1744 -16) (1536 -1744 -16)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92313" + "plane" "(640 -1744 -16) (640 -1720 -16) (640 -1720 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92314" + "plane" "(1536 -1720 -16) (1536 -1744 -16) (1536 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92315" + "plane" "(640 -1720 -16) (1536 -1720 -16) (1536 -1720 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92316" + "plane" "(1536 -1744 -16) (640 -1744 -16) (640 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 202" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "263185" + side + { + "id" "92317" + "plane" "(1520 -2606 400) (1520 -1744 400) (1536 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92318" + "plane" "(1520 -1744 -40) (1520 -2606 -40) (1536 -2606 -40)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92319" + "plane" "(1520 -2606 -40) (1520 -1744 -40) (1520 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92320" + "plane" "(1536 -1744 -40) (1536 -2606 -40) (1536 -2606 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92321" + "plane" "(1520 -1744 -40) (1536 -1744 -40) (1536 -1744 400)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "92322" + "plane" "(1536 -2606 -40) (1520 -2606 -40) (1520 -2606 400)" + "material" "TOOLS/TOOLSCLIP" + "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 172" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "258256" + side + { + "id" "90307" + "plane" "(384 -2896 400) (384 -2682 400) (384 -2682 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 -1 0 -255.995] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "90306" + "plane" "(400 -2912 400) (400 -2912 416) (400 -2682 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 -1 0 -185] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "90305" + "plane" "(400 -2912 400) (384 -2896 400) (384 -2896 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" "90304" + "plane" "(384 -2682 416) (400 -2682 416) (400 -2912 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" "90303" + "plane" "(384 -2896 400) (400 -2912 400) (400 -2682 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" "90302" + "plane" "(384 -2682 400) (400 -2682 400) (400 -2682 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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "258472" + side + { + "id" "90451" + "plane" "(384 -2112 416) (384 -2434 416) (384 -2434 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 -1 0 -255.995] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "90450" + "plane" "(400 -2434 400) (400 -2434 416) (400 -2128 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 -1 0 -185] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "90449" + "plane" "(400 -2128 400) (400 -2128 416) (384 -2112 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" "90448" + "plane" "(400 -2128 416) (400 -2434 416) (384 -2434 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" "90447" + "plane" "(400 -2434 400) (400 -2128 400) (384 -2112 400)" + "material" "DEV/REFLECTIVITY_30" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "90446" + "plane" "(384 -2434 400) (384 -2434 416) (400 -2434 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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "258811" + side + { + "id" "90664" + "plane" "(-192 -4384 -224) (0 -4384 -224) (0 -4112 -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" "90663" + "plane" "(0 -4112 -96) (0 -4112 -224) (0 -4384 -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" "90662" + "plane" "(-192 -4112 -224) (0 -4112 -224) (0 -4112 -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" "90661" + "plane" "(0 -4384 -96) (0 -4384 -224) (-192 -4384 -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" "90660" + "plane" "(-192 -4384 -224) (-192 -4112 -224) (0 -4112 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 103 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "252926" + side + { + "id" "87574" + "plane" "(-640 -4400 0) (-640 -4016 0) (-480 -4016 0)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87575" + "plane" "(-640 -4016 -32) (-640 -4400 -32) (-480 -4400 -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" "87576" + "plane" "(-640 -4400 -32) (-640 -4016 -32) (-640 -4016 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" "87577" + "plane" "(-480 -4016 -32) (-480 -4400 -32) (-480 -4400 0)" + "material" "CS_APOLLO/EXHIBITS/CLIPPING" + "uaxis" "[0 1 0 1524] 0.125" + "vaxis" "[0 0 -1 180] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87578" + "plane" "(-640 -4016 -32) (-480 -4016 -32) (-480 -4016 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" "87579" + "plane" "(-480 -4400 -32) (-640 -4400 -32) (-640 -4400 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 216 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "245708" + side + { + "id" "85629" + "plane" "(-960 -9696 608) (-960 -6640 608) (2816 -6640 608)" + "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" "85630" + "plane" "(-960 -6640 560) (-960 -9696 560) (2816 -9696 560)" + "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" "85631" + "plane" "(-960 -9696 560) (-960 -6640 560) (-960 -6640 608)" + "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" "85632" + "plane" "(2816 -6640 560) (2816 -9696 560) (2816 -9696 608)" + "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" "85633" + "plane" "(-960 -6640 560) (2816 -6640 560) (2816 -6640 608)" + "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" "85634" + "plane" "(2816 -9696 560) (-960 -9696 560) (-960 -9696 608)" + "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" "0 220 169" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "245709" + side + { + "id" "85635" + "plane" "(1248 -6176 608) (2816 -6176 608) (2816 -6640 608)" + "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" "85636" + "plane" "(1248 -6640 560) (2816 -6640 560) (2816 -6176 560)" + "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" "85637" + "plane" "(1248 -6176 608) (1248 -6640 608) (1248 -6640 560)" + "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" "85638" + "plane" "(2816 -6176 560) (2816 -6640 560) (2816 -6640 608)" + "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" "85639" + "plane" "(2816 -6176 608) (1248 -6176 608) (1248 -6176 560)" + "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" "85640" + "plane" "(2816 -6640 560) (1248 -6640 560) (1248 -6640 608)" + "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" "0 118 223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "245736" + side + { + "id" "85665" + "plane" "(1920 -4736 560) (1920 -4720 560) (2032 -4720 560)" + "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" "85666" + "plane" "(1920 -4720 320) (1920 -4736 320) (2032 -4736 320)" + "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" "85667" + "plane" "(1920 -4736 320) (1920 -4720 320) (1920 -4720 560)" + "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" "85668" + "plane" "(2032 -4720 320) (2032 -4736 320) (2032 -4736 560)" + "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" "85669" + "plane" "(1920 -4720 320) (2032 -4720 320) (2032 -4720 560)" + "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" "85670" + "plane" "(2032 -4736 320) (1920 -4736 320) (1920 -4736 560)" + "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" "0 236 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "237151" + side + { + "id" "83320" + "plane" "(69 -5696 192) (69 -5680 192) (144 -5680 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.110403 -0.988451 -0.110658 0] 0.25" + "vaxis" "[-0.953641 0.136539 -0.268191 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83321" + "plane" "(69 -5680 32) (69 -5696 32) (144 -5696 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" "83322" + "plane" "(69 -5696 32) (69 -5680 32) (69 -5680 192)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83323" + "plane" "(144 -5680 32) (144 -5696 32) (144 -5696 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -25.8867] 0.125" + "vaxis" "[0 0 -1 117.162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83324" + "plane" "(69 -5680 32) (144 -5680 32) (144 -5680 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.921281 0.388895 0 -212.191] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "83325" + "plane" "(144 -5696 32) (69 -5696 32) (69 -5696 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 469.852] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 251 108" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "240835" + side + { + "id" "84605" + "plane" "(-179 -5696 192) (-179 -5680 192) (69 -5680 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.110403 -0.988451 -0.110658 0] 0.25" + "vaxis" "[-0.953641 0.136539 -0.268191 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "84606" + "plane" "(-179 -5680 160) (-179 -5696 160) (69 -5696 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 536] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "84607" + "plane" "(-179 -5696 160) (-179 -5680 160) (-179 -5680 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" "84608" + "plane" "(69 -5680 160) (69 -5696 160) (69 -5696 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" "84609" + "plane" "(-179 -5680 160) (69 -5680 160) (69 -5680 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.921281 0.388895 0 -212.191] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "84610" + "plane" "(69 -5696 160) (-179 -5696 160) (-179 -5696 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 469.855] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 137 142" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "241132" + side + { + "id" "84857" + "plane" "(144 -5888 0) (144 -5600 0) (576 -5600 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" "84858" + "plane" "(144 -5600 -16) (144 -5888 -16) (576 -5888 -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" "84859" + "plane" "(144 -5888 -16) (144 -5600 -16) (144 -5600 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" "84860" + "plane" "(576 -5600 -16) (576 -5888 -16) (576 -5888 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" "84861" + "plane" "(144 -5600 -16) (576 -5600 -16) (576 -5600 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" "84862" + "plane" "(576 -5888 -16) (144 -5888 -16) (144 -5888 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 115 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "241365" + side + { + "id" "84946" + "plane" "(560 -5600 0) (560 -5872 0) (576 -5872 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" "84945" + "plane" "(560 -5872 32) (560 -5872 0) (560 -5600 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" "84944" + "plane" "(576 -5600 32) (576 -5600 0) (576 -5872 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -510.992] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "84943" + "plane" "(576 -5872 32) (576 -5872 0) (560 -5872 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" "84942" + "plane" "(560 -5600 32) (560 -5600 0) (576 -5600 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -255.004] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "84941" + "plane" "(560 -5872 32) (560 -5600 32) (576 -5600 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 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "241431" + side + { + "id" "85108" + "plane" "(864 -5840 0) (864 -5776 0) (848 -5776 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.998] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85107" + "plane" "(864 -5776 48) (864 -5776 0) (864 -5840 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" "85106" + "plane" "(848 -5840 48) (848 -5840 0) (848 -5776 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85105" + "plane" "(848 -5776 48) (848 -5776 0) (864 -5776 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85104" + "plane" "(864 -5840 48) (864 -5840 0) (848 -5840 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85103" + "plane" "(864 -5776 48) (864 -5840 48) (848 -5840 48)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 98] 0.063" + "vaxis" "[0 1 0 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 105 158" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "241456" + side + { + "id" "85138" + "plane" "(848 -5600 0) (848 -5776 0) (864 -5776 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" "85137" + "plane" "(848 -5776 0) (848 -5600 0) (848 -5600 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85136" + "plane" "(864 -5600 48) (864 -5600 0) (864 -5776 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" "85135" + "plane" "(848 -5600 48) (848 -5600 0) (864 -5600 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85134" + "plane" "(848 -5776 48) (848 -5600 48) (864 -5600 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" "85133" + "plane" "(864 -5776 48) (864 -5776 0) (848 -5776 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 125 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "241461" + side + { + "id" "85144" + "plane" "(848 -5888 0) (864 -5872 0) (864 -5840 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" "85143" + "plane" "(848 -5888 0) (848 -5840 0) (848 -5840 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85142" + "plane" "(864 -5872 0) (864 -5872 48) (864 -5840 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" "85141" + "plane" "(864 -5872 0) (848 -5888 0) (848 -5888 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 19.7104] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85140" + "plane" "(848 -5840 48) (864 -5840 48) (864 -5872 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" "85139" + "plane" "(848 -5840 0) (864 -5840 0) (864 -5840 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 125 186" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "241537" + side + { + "id" "85294" + "plane" "(848 -5888 0) (848 -5600 0) (1200 -5600 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" "85293" + "plane" "(848 -5600 -48) (848 -5888 -48) (1200 -5888 -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" "85292" + "plane" "(848 -5888 -48) (848 -5600 -48) (848 -5600 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" "85291" + "plane" "(1200 -5600 -48) (1200 -5888 -48) (1200 -5888 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" "85290" + "plane" "(848 -5600 -48) (1200 -5600 -48) (1200 -5600 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" "85289" + "plane" "(1200 -5888 -48) (848 -5888 -48) (848 -5888 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 115 240" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "233692" + side + { + "id" "82839" + "plane" "(1152 -6624 -48) (1152 -6176 -48) (2816 -6176 -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" "82838" + "plane" "(1152 -6176 -64) (1152 -6624 -64) (2816 -6624 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82837" + "plane" "(1152 -6624 -64) (1152 -6176 -64) (1152 -6176 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82836" + "plane" "(2816 -6176 -64) (2816 -6624 -64) (2816 -6624 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82835" + "plane" "(2816 -6624 -64) (1152 -6624 -64) (1152 -6624 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82834" + "plane" "(1152 -6176 -64) (2816 -6176 -64) (2816 -6176 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -11.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 165 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "233693" + side + { + "id" "82845" + "plane" "(624 -9696 -48) (624 -6624 -48) (2816 -6624 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "18" + "smoothing_groups" "0" + } + side + { + "id" "82844" + "plane" "(624 -6624 -64) (624 -9696 -64) (2816 -9696 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82843" + "plane" "(624 -9696 -64) (624 -6624 -64) (624 -6624 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82842" + "plane" "(2816 -6624 -64) (2816 -9696 -64) (2816 -9696 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82841" + "plane" "(2816 -9696 -64) (624 -9696 -64) (624 -9696 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "82840" + "plane" "(624 -6624 -64) (2816 -6624 -64) (2816 -6624 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -11.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 207 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "233700" + side + { + "id" "82846" + "plane" "(-928 -9728 560) (-928 -9696 560) (4344 -9696 560)" + "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" "82847" + "plane" "(-928 -9696 -48) (-928 -9728 -48) (4344 -9728 -48)" + "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" "82848" + "plane" "(-928 -9728 -48) (-928 -9696 -48) (-928 -9696 560)" + "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" "82849" + "plane" "(4344 -9696 -48) (4344 -9728 -48) (4344 -9728 560)" + "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" "82850" + "plane" "(-928 -9696 -48) (4344 -9696 -48) (4344 -9696 560)" + "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" "82851" + "plane" "(4344 -9728 -48) (-928 -9728 -48) (-928 -9728 560)" + "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" "0 104 141" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "229122" + side + { + "id" "79549" + "plane" "(-1024 -3184 -9.53674e-07) (-1024 -2912 -9.53674e-07) (-1024 -2912 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79548" + "plane" "(-1008 -2912 -9.53674e-07) (-1008 -3184 -9.53674e-07) (-1008 -3184 128)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[0 1 0 709] 0.125" + "vaxis" "[0 0 -1 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79547" + "plane" "(-1024 -2912 -9.53674e-07) (-1008 -2912 -9.53674e-07) (-1008 -2912 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" "79546" + "plane" "(-1008 -3184 -9.53674e-07) (-1024 -3184 -9.53674e-07) (-1024 -3184 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "79545" + "plane" "(-1024 -2912 128) (-1008 -2912 128) (-1008 -3184 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" "79544" + "plane" "(-1024 -3184 -9.53674e-07) (-1008 -3184 -9.53674e-07) (-1008 -2912 -9.53674e-07)" + "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 116 241" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "229893" + side + { + "id" "80618" + "plane" "(-816 -3808 -32) (-480 -3808 -32) (-480 -4384 -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" "80619" + "plane" "(-816 -4384 -48) (-480 -4384 -48) (-480 -3808 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "80620" + "plane" "(-816 -3808 -48) (-816 -3808 -32) (-816 -4384 -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" "80621" + "plane" "(-480 -4384 -48) (-480 -4384 -32) (-480 -3808 -32)" + "material" "CS_APOLLO/EXHIBITS/CLIPPING" + "uaxis" "[0 1 0 1524] 0.125" + "vaxis" "[0 0 -1 180] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "80622" + "plane" "(-480 -3808 -48) (-480 -3808 -32) (-816 -3808 -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" "80623" + "plane" "(-816 -4384 -48) (-816 -4384 -32) (-480 -4384 -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 114 131" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "192247" + side + { + "id" "66576" + "plane" "(-480 -3807 -32) (-368 -3807 -32) (-368 -4112 -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" "66575" + "plane" "(-480 -4112 -48) (-368 -4112 -48) (-368 -3807 -48)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "66574" + "plane" "(-368 -3807 -48) (-368 -4112 -48) (-368 -4112 -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" "66573" + "plane" "(-480 -3807 -48) (-368 -3807 -48) (-368 -3807 -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" "66572" + "plane" "(-368 -4112 -48) (-480 -4112 -48) (-480 -4112 -32)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "66571" + "plane" "(-480 -4112 -48) (-480 -3807 -48) (-480 -3807 -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" + } + editor + { + "color" "0 214 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "164498" + side + { + "id" "51015" + "plane" "(400 -2128 416) (384 -2112 416) (624 -2112 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" "51014" + "plane" "(384 -2112 400) (384 -2112 416) (400 -2128 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" "51013" + "plane" "(640 -2128 400) (640 -2128 416) (624 -2112 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" "51012" + "plane" "(624 -2112 400) (624 -2112 416) (384 -2112 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "51011" + "plane" "(400 -2128 400) (400 -2128 416) (640 -2128 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[-1 0 0 582.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "51010" + "plane" "(384 -2112 400) (400 -2128 400) (640 -2128 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" + } + editor + { + "color" "0 240 181" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "164551" + side + { + "id" "51057" + "plane" "(-80 -2896 128) (480 -2896 128) (480 -2912 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" "51056" + "plane" "(480 -2912 -16) (480 -2912 128) (480 -2896 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" "51055" + "plane" "(480 -2896 -16) (480 -2896 128) (-80 -2896 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -444] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "51054" + "plane" "(-80 -2912 -16) (-80 -2912 128) (480 -2912 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "51053" + "plane" "(-80 -2896 -16) (-80 -2896 128) (-80 -2912 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" "51052" + "plane" "(-80 -2912 -16) (480 -2912 -16) (480 -2896 -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" + } + editor + { + "color" "0 110 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "164558" + side + { + "id" "51099" + "plane" "(640 -640 -40) (624 -640 -40) (624 -2112 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "51098" + "plane" "(640 -640 -40) (640 -2128 -40) (640 -2128 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008B" + "uaxis" "[0 1 0 452] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "51097" + "plane" "(624 -640 -40) (640 -640 -40) (640 -640 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" "51096" + "plane" "(640 -2128 -40) (624 -2112 -40) (624 -2112 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" "51095" + "plane" "(624 -2112 -40) (624 -640 -40) (624 -640 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" "51094" + "plane" "(640 -640 16) (640 -2128 16) (624 -2112 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" + } + editor + { + "color" "0 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "159145" + side + { + "id" "48718" + "plane" "(384 -2896 192) (384 -2592 192) (384 -2592 208)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48717" + "plane" "(400 -2592 192) (400 -2912 192) (400 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -185] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48716" + "plane" "(400 -2912 192) (384 -2896 192) (384 -2896 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" "48715" + "plane" "(384 -2592 192) (400 -2592 192) (400 -2592 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" "48714" + "plane" "(384 -2592 208) (400 -2592 208) (400 -2912 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" "48713" + "plane" "(384 -2896 192) (400 -2912 192) (400 -2592 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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "159147" + side + { + "id" "48730" + "plane" "(384 -2528 208) (384 -2528 192) (384 -2128 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48729" + "plane" "(400 -2128 208) (400 -2128 192) (400 -2528 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -185] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48728" + "plane" "(384 -2128 208) (384 -2128 192) (400 -2128 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" "48727" + "plane" "(400 -2528 208) (400 -2528 192) (384 -2528 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" "48726" + "plane" "(384 -2528 208) (384 -2128 208) (400 -2128 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" "48725" + "plane" "(384 -2128 192) (384 -2528 192) (400 -2528 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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "159149" + side + { + "id" "48742" + "plane" "(384 -2592 208) (384 -2592 192) (384 -2528 192)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 -1 0 -256] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48741" + "plane" "(400 -2528 208) (400 -2528 192) (400 -2592 192)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 -1 0 -185] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "48740" + "plane" "(384 -2528 208) (384 -2528 192) (400 -2528 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" "48739" + "plane" "(400 -2592 208) (400 -2592 192) (384 -2592 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" "48738" + "plane" "(384 -2592 208) (384 -2528 208) (400 -2528 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" "48737" + "plane" "(384 -2528 192) (384 -2592 192) (400 -2592 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 199 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "148728" + side + { + "id" "44699" + "plane" "(-336 -2000 576) (-336 -1920 576) (624 -1920 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "44700" + "plane" "(-336 -1920 560) (-336 -2000 560) (624 -2000 560)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "44701" + "plane" "(-336 -2000 560) (-336 -1920 560) (-336 -1920 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" "44702" + "plane" "(624 -1920 560) (624 -2000 560) (624 -2000 576)" + "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" "44703" + "plane" "(-336 -1920 560) (624 -1920 560) (624 -1920 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" "44704" + "plane" "(624 -2000 560) (-336 -2000 560) (-336 -2000 576)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 193 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "143178" + side + { + "id" "43240" + "plane" "(0 -4416 -128) (0 -4608 -128) (248 -4608 -128)" + "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" "43239" + "plane" "(0 -4608 0) (0 -4608 -128) (0 -4416 -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" "43238" + "plane" "(248 -4416 -128) (248 -4608 -128) (248 -4608 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" "43237" + "plane" "(248 -4608 0) (248 -4608 -128) (0 -4608 -128)" + "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" "43236" + "plane" "(0 -4608 0) (0 -4416 -96) (248 -4416 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -0.894427 0.447214 20.9733] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "43235" + "plane" "(0 -4416 -96) (0 -4416 -128) (248 -4416 -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 132 205" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "80284" + side + { + "id" "25298" + "plane" "(0 -4672 128) (0 -4688 128) (248 -4688 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25297" + "plane" "(0 -4688 240) (0 -4688 128) (0 -4672 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" "25296" + "plane" "(248 -4672 240) (248 -4672 128) (248 -4688 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" "25295" + "plane" "(0 -4672 240) (0 -4672 128) (248 -4672 128)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[-1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25294" + "plane" "(248 -4688 240) (248 -4688 128) (0 -4688 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25293" + "plane" "(0 -4688 240) (0 -4672 240) (248 -4672 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" + } + editor + { + "color" "0 245 218" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "87232" + side + { + "id" "29439" + "plane" "(-256 -5600 -16) (-256 -4960 -16) (1184 -4960 -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" "29438" + "plane" "(-256 -4960 -32) (-256 -5600 -32) (1184 -5600 -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" "29437" + "plane" "(-256 -5600 -32) (-256 -4960 -32) (-256 -4960 -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" "29436" + "plane" "(1184 -4960 -32) (1184 -5600 -32) (1184 -5600 -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" "29435" + "plane" "(1184 -5600 -32) (-256 -5600 -32) (-256 -5600 -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" "29434" + "plane" "(-256 -4960 -32) (1184 -4960 -32) (1184 -4960 -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 247 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "87233" + side + { + "id" "29445" + "plane" "(-256 -4992 -16) (-256 -4672 -16) (1024 -4672 -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" "29444" + "plane" "(-256 -4672 -32) (-256 -4992 -32) (1024 -4992 -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" "29443" + "plane" "(-256 -4992 -32) (-256 -4672 -32) (-256 -4672 -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" "29442" + "plane" "(1024 -4672 -32) (1024 -4992 -32) (1024 -4992 -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" "29441" + "plane" "(-256 -4672 -32) (1024 -4672 -32) (1024 -4672 -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" "29440" + "plane" "(1024 -4992 -32) (-256 -4992 -32) (-256 -4992 -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 247 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "88436" + side + { + "id" "31670" + "plane" "(2032 -4736 400) (2032 -4368 400) (2048 -4368 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" "31671" + "plane" "(2032 -4368 320) (2032 -4736 320) (2048 -4736 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" "31672" + "plane" "(2032 -4736 320) (2032 -4368 320) (2032 -4368 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "31673" + "plane" "(2048 -4368 320) (2048 -4736 320) (2048 -4736 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "31674" + "plane" "(2032 -4368 320) (2048 -4368 320) (2048 -4368 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "31675" + "plane" "(2048 -4736 320) (2032 -4736 320) (2032 -4736 400)" + "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 193 254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "64120" + side + { + "id" "20586" + "plane" "(-32 -3672 208) (-32 -3440 208) (384 -3440 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" "20587" + "plane" "(-32 -3440 192) (-32 -3672 192) (384 -3672 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" "20588" + "plane" "(-32 -3672 192) (-32 -3440 192) (-32 -3440 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" "20589" + "plane" "(384 -3440 192) (384 -3672 192) (384 -3672 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" "20590" + "plane" "(-32 -3440 192) (384 -3440 192) (384 -3440 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" "20591" + "plane" "(384 -3672 192) (-32 -3672 192) (-32 -3672 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" + } + editor + { + "color" "0 101 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "52666" + side + { + "id" "12268" + "plane" "(1392 -4704 320) (1920 -4704 320) (1920 -4992 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" "12267" + "plane" "(1392 -4992 304) (1920 -4992 304) (1920 -4704 304)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12266" + "plane" "(1920 -4704 304) (1920 -4992 304) (1920 -4992 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" "12265" + "plane" "(1392 -4704 304) (1920 -4704 304) (1920 -4704 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" "12264" + "plane" "(1920 -4992 304) (1392 -4992 304) (1392 -4992 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" "12263" + "plane" "(1392 -4992 304) (1392 -4704 304) (1392 -4704 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 185 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "53149" + side + { + "id" "13057" + "plane" "(2312 -4752 400) (2048 -4752 400) (2048 -4224 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" "13056" + "plane" "(2312 -4224 384) (2048 -4224 384) (2048 -4752 384)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "13055" + "plane" "(2048 -4224 384) (2312 -4224 384) (2312 -4224 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "13054" + "plane" "(2312 -4752 384) (2048 -4752 384) (2048 -4752 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "13053" + "plane" "(2048 -4752 384) (2048 -4224 384) (2048 -4224 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "13052" + "plane" "(2312 -4224 384) (2312 -4752 384) (2312 -4752 400)" + "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 185 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "53301" + side + { + "id" "13070" + "plane" "(1392 -4704 320) (1392 -4368 320) (2048 -4368 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" "13071" + "plane" "(1392 -4368 304) (1392 -4704 304) (2048 -4704 304)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 431] 0.25" + "vaxis" "[0 -1 0 -57] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "13072" + "plane" "(1392 -4704 304) (1392 -4368 304) (1392 -4368 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" "13073" + "plane" "(2048 -4368 304) (2048 -4704 304) (2048 -4704 320)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "13074" + "plane" "(1392 -4368 304) (2048 -4368 304) (2048 -4368 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" "13075" + "plane" "(2048 -4704 304) (1392 -4704 304) (1392 -4704 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 220 177" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "26635" + side + { + "id" "5732" + "plane" "(1152 -6624 -32) (1152 -6176 -32) (2816 -6176 -32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[1152 -6624 -32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968" + "row1" "0 0 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968" + "row2" "0 0 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968" + "row3" "0 0 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968" + "row4" "0 0 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968 0 0 0.999968" + } + 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" "5731" + "plane" "(1152 -6176 -48) (1152 -6624 -48) (2816 -6624 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 36.9043] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5730" + "plane" "(1152 -6624 -48) (1152 -6176 -48) (1152 -6176 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5729" + "plane" "(2816 -6176 -48) (2816 -6624 -48) (2816 -6624 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.9043] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5728" + "plane" "(2816 -6624 -48) (1152 -6624 -48) (1152 -6624 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -35.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "5727" + "plane" "(1152 -6176 -48) (2816 -6176 -48) (2816 -6176 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -11.012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 165 222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4613" + side + { + "id" "2186" + "plane" "(-16 -4672 160) (-16 -4384 160) (0 -4384 160)" + "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" "2185" + "plane" "(-16 -4384 -160) (-16 -4672 -160) (0 -4672 -160)" + "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" "2184" + "plane" "(-16 -4672 -160) (-16 -4384 -160) (-16 -4384 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2183" + "plane" "(0 -4384 -160) (0 -4672 -160) (0 -4672 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 -0.706223 0.707988 16] 0.125" + "vaxis" "[0 -0.706223 -0.707988 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2182" + "plane" "(-16 -4384 -160) (0 -4384 -160) (0 -4384 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0.706223 0 0.707988 16] 0.125" + "vaxis" "[0.706223 0 -0.707988 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2181" + "plane" "(0 -4672 -160) (-16 -4672 -160) (-16 -4672 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 229 122" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1321" + side + { + "id" "1247" + "plane" "(-464 -6640 608) (-464 -5424 608) (1248 -5424 608)" + "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" "1248" + "plane" "(-464 -5424 560) (-464 -6640 560) (1248 -6640 560)" + "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" "1249" + "plane" "(-464 -6640 560) (-464 -5424 560) (-464 -5424 608)" + "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" "1250" + "plane" "(1248 -5424 560) (1248 -6640 560) (1248 -6640 608)" + "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" "1251" + "plane" "(-464 -5424 560) (1248 -5424 560) (1248 -5424 608)" + "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" "1252" + "plane" "(1248 -6640 560) (-464 -6640 560) (-464 -6640 608)" + "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" "0 149 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1324" + side + { + "id" "1253" + "plane" "(640 -2672 608) (640 -1184 608) (1728 -1184 608)" + "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" "1254" + "plane" "(640 -1184 576) (640 -2672 576) (1728 -2672 576)" + "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" "1255" + "plane" "(640 -2672 576) (640 -1184 576) (640 -1184 608)" + "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" "1256" + "plane" "(1728 -1184 576) (1728 -2672 576) (1728 -2672 608)" + "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" "1257" + "plane" "(640 -1184 576) (1728 -1184 576) (1728 -1184 608)" + "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" "1258" + "plane" "(1728 -2672 576) (640 -2672 576) (640 -2672 608)" + "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" "0 223 196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1699" + side + { + "id" "1337" + "plane" "(-464 -3168 608) (-464 -2640 608) (1728 -2640 608)" + "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" "1338" + "plane" "(-464 -2640 576) (-464 -3168 576) (1728 -3168 576)" + "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" "1339" + "plane" "(-464 -3168 576) (-464 -2640 576) (-464 -2640 608)" + "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" "1340" + "plane" "(1728 -2640 576) (1728 -3168 576) (1728 -3168 608)" + "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" "1341" + "plane" "(-464 -2640 576) (1728 -2640 576) (1728 -2640 608)" + "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" "1342" + "plane" "(1728 -3168 576) (-464 -3168 576) (-464 -3168 608)" + "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" "0 191 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1700" + side + { + "id" "1343" + "plane" "(-464 -5424 608) (-464 -3168 608) (2176 -3168 608)" + "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" "1344" + "plane" "(-464 -3168 560) (-464 -5424 560) (2176 -5424 560)" + "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" "1345" + "plane" "(-464 -5424 560) (-464 -3168 560) (-464 -3168 608)" + "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" "1346" + "plane" "(2176 -3168 560) (2176 -5424 560) (2176 -5424 608)" + "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" "1347" + "plane" "(-464 -3168 560) (2176 -3168 560) (2176 -3168 608)" + "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" "1348" + "plane" "(2176 -5424 560) (-464 -5424 560) (-464 -5424 608)" + "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" "0 217 106" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1831" + side + { + "id" "1414" + "plane" "(384 -2896 576) (-3368 -2896 576) (-3368 -2000 576)" + "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" "1413" + "plane" "(384 -2000 560) (-3368 -2000 560) (-3368 -2896 560)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[0 1 0 36] 0.125" + "vaxis" "[1 0 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "1412" + "plane" "(384 -2896 560) (-3368 -2896 560) (-3368 -2896 576)" + "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" "1411" + "plane" "(-3368 -2000 560) (384 -2000 560) (384 -2000 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" "1410" + "plane" "(384 -2000 560) (384 -2896 560) (384 -2896 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" "1409" + "plane" "(-3368 -2896 560) (-3368 -2000 560) (-3368 -2000 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" + } + editor + { + "color" "0 237 242" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "687" + side + { + "id" "721" + "plane" "(80 -9600 -32) (80 -6624 -32) (544 -6624 -32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "25" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[80 -9600 -32]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "722" + "plane" "(80 -6624 -80) (80 -9600 -80) (544 -9600 -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" "723" + "plane" "(80 -9600 -80) (80 -6624 -80) (80 -6624 -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" "724" + "plane" "(544 -6624 -80) (544 -9600 -80) (544 -9600 -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" "725" + "plane" "(80 -6624 -80) (544 -6624 -80) (544 -6624 -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" "726" + "plane" "(544 -9600 -80) (80 -9600 -80) (80 -9600 -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 221 146" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "23" + side + { + "id" "90681" + "plane" "(576 -5888 0) (576 -5600 0) (848 -5600 0)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[576 -5888 0]" + "flags" "0" + "elevation" "0" + "subdiv" "0" + normals + { + "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" + } + distances + { + "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" + } + 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" "90680" + "plane" "(576 -5600 -16) (576 -5888 -16) (848 -5888 -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" "90679" + "plane" "(576 -5888 -16) (576 -5600 -16) (576 -5600 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" "90678" + "plane" "(848 -5600 -16) (848 -5888 -16) (848 -5888 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" "90677" + "plane" "(576 -5600 -16) (848 -5600 -16) (848 -5600 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" "90676" + "plane" "(848 -5888 -16) (576 -5888 -16) (576 -5888 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 188 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "266" + side + { + "id" "199" + "plane" "(2128 -3200 224) (2128 -3424 224) (2096 -3424 224)" + "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" "200" + "plane" "(2128 -3424 0) (2128 -3200 0) (2096 -3216 0)" + "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" "201" + "plane" "(2096 -3216 224) (2096 -3424 224) (2096 -3424 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -400] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "202" + "plane" "(2128 -3424 224) (2128 -3200 224) (2128 -3200 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" "203" + "plane" "(2128 -3200 224) (2096 -3216 224) (2096 -3216 0)" + "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" "204" + "plane" "(2096 -3424 224) (2128 -3424 224) (2128 -3424 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 218 171" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "487" + side + { + "id" "475" + "plane" "(384 -3760 224) (384 -3440 224) (808 -3440 224)" + "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" "476" + "plane" "(384 -3440 208) (384 -3760 208) (808 -3760 208)" + "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" "477" + "plane" "(384 -3760 208) (384 -3440 208) (384 -3440 224)" + "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" "478" + "plane" "(808 -3440 208) (808 -3760 208) (808 -3760 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" "479" + "plane" "(384 -3440 208) (808 -3440 208) (808 -3440 224)" + "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" "480" + "plane" "(808 -3760 208) (384 -3760 208) (384 -3760 224)" + "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 148 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "180415" + side + { + "id" "73960" + "plane" "(616 -4456 16) (616 -4168 16) (792 -4168 16)" + "material" "GROUND/HR_G/HR_GRAVEL_DIRT_001_BLEND" + "uaxis" "[1 0 0 32] 0.125" + "vaxis" "[0 -1 0 -54] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + dispinfo + { + "power" "2" + "startposition" "[616 -4456 16]" + "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" "2.64036 1.7878 1.61591 3.80104 2.33873" + "row1" "1.90899 1.12544 1.81996 2.29846 2.14982" + "row2" "1.27501 0.409454 2.67144 1.41626 2.22901" + "row3" "2.40887 1.72695 2.77123 1.91584 1.8871" + "row4" "1.91948 2.37457 1.44896 1.25371 1.78544" + } + 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" "255 255 0 230 255" + "row1" "105 180 80 255 255" + "row2" "130 255 0 255 155" + "row3" "105 155 5 105 255" + "row4" "230 255 130 255 255" + } + 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" "73959" + "plane" "(616 -4168 0) (616 -4456 0) (792 -4456 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -30.4004] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "73958" + "plane" "(616 -4456 0) (616 -4168 0) (616 -4168 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 27.2] 0.25" + "vaxis" "[0 -1 0 -54.3984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "73957" + "plane" "(792 -4168 0) (792 -4456 0) (792 -4456 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -3.2] 0.25" + "vaxis" "[0 -1 0 -54.3984] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "73956" + "plane" "(616 -4168 0) (792 -4168 0) (792 -4168 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -3.2] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "73955" + "plane" "(792 -4456 0) (616 -4456 0) (616 -4456 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 -3.2] 0.25" + "vaxis" "[-1 0 0 -48.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 249 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957282" + side + { + "id" "229457" + "plane" "(846 -6151 0) (857.167 -6197 0) (864.833 -6197 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 31.125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229456" + "plane" "(857.167 -6197 224) (846 -6151 224) (853.001 -6151 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -0.875] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229455" + "plane" "(857.167 -6197 0) (857.167 -6197 224) (864.833 -6197 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229454" + "plane" "(853 -6151 0) (853.001 -6151 224) (846 -6151 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229453" + "plane" "(864.833 -6197 0) (864.833 -6197 224) (853.001 -6151 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0.875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229452" + "plane" "(846 -6151 0) (846 -6151 224) (857.167 -6197 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0.875] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957283" + side + { + "id" "229463" + "plane" "(824 -6118 0) (846 -6151 0) (853 -6151 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 53.8438] 0.25" + "vaxis" "[0 -1 0 5.56445] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229462" + "plane" "(845.999 -6151 224) (824 -6118 224) (832.001 -6118 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 53.8438] 0.25" + "vaxis" "[0 -1 0 -26.4355] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229461" + "plane" "(846 -6151 0) (845.999 -6151 224) (852.999 -6151 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 53.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229460" + "plane" "(832 -6118 0) (832.001 -6118 224) (824 -6118 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 53.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229459" + "plane" "(853 -6151 0) (852.999 -6151 224) (832.001 -6118 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 26.4355] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229458" + "plane" "(824 -6118 0) (824 -6118 224) (845.999 -6151 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 26.4355] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957284" + side + { + "id" "229469" + "plane" "(802 -6104 0) (824 -6118 0) (832 -6118 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 19.0156] 0.25" + "vaxis" "[0 -1 0 -17.6328] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229468" + "plane" "(824 -6118 224) (802.002 -6104 224) (802 -6096 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 19.0156] 0.25" + "vaxis" "[0 -1 0 -49.6328] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229467" + "plane" "(824 -6118 0) (824 -6118 224) (831.997 -6118 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 19.0156] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229466" + "plane" "(801.997 -6096 0) (802 -6096 224) (802.002 -6104 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 17.6328] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229465" + "plane" "(832 -6118 0) (831.997 -6118 224) (802 -6096 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 19.0156] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229464" + "plane" "(802 -6104 0) (802.002 -6104 224) (824 -6118 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 19.0156] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957285" + side + { + "id" "229475" + "plane" "(757 -6094 0) (802 -6104 0) (802 -6096 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -21.1563] 0.25" + "vaxis" "[0 -1 0 -27.5977] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229474" + "plane" "(801.999 -6104 224) (757 -6094 224) (757 -6086 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -21.1563] 0.25" + "vaxis" "[0 -1 0 -59.5977] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229473" + "plane" "(802 -6104 0) (801.999 -6104 224) (801.999 -6096 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 27.5977] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229472" + "plane" "(757 -6086 0) (757 -6086 224) (757 -6094 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 27.5977] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229471" + "plane" "(802 -6096 0) (801.999 -6096 224) (757 -6086 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -21.1563] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229470" + "plane" "(757 -6094 0) (757 -6094 224) (801.999 -6104 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -21.1563] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957286" + side + { + "id" "229481" + "plane" "(757 -6094 0) (757 -6086 0) (713 -6094 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229480" + "plane" "(713 -6102 224) (712.999 -6094 224) (757 -6086 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229479" + "plane" "(757 -6094 224) (757 -6086 224) (757 -6086 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229478" + "plane" "(712.999 -6094 224) (713 -6102 224) (712.999 -6102 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229477" + "plane" "(757 -6086 224) (712.999 -6094 224) (713 -6094 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229476" + "plane" "(713 -6102 224) (757 -6094 224) (757 -6094 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957287" + side + { + "id" "229487" + "plane" "(713 -6102 0) (713 -6094 0) (668 -6129 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -51.3281] 0.25" + "vaxis" "[0 -1 0 -18.2012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229486" + "plane" "(676 -6129 224) (668.001 -6129 224) (713.001 -6094 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -51.3281] 0.25" + "vaxis" "[0 -1 0 -50.2012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229485" + "plane" "(713 -6102 224) (713.001 -6094 224) (713 -6094 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 18.2012] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229484" + "plane" "(668.001 -6129 224) (676 -6129 224) (676 -6129 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -51.3281] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229483" + "plane" "(713.001 -6094 224) (668.001 -6129 224) (668 -6129 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -51.3281] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229482" + "plane" "(676 -6129 224) (713 -6102 224) (713 -6102 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -51.3281] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957288" + side + { + "id" "229493" + "plane" "(656 -6157 0) (676 -6129 0) (668.002 -6129.01 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 15.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229492" + "plane" "(676 -6129 224) (656.004 -6156.99 224) (648 -6157 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 -16.4531] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229491" + "plane" "(676 -6129 0) (676 -6129 224) (668 -6129 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229490" + "plane" "(647.999 -6157.01 0) (648 -6157 224) (656.004 -6156.99 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229489" + "plane" "(668.002 -6129.01 0) (668 -6129 224) (648 -6157 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 16.4531] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229488" + "plane" "(656 -6157 0) (656.004 -6156.99 224) (676 -6129 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 16.4531] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957289" + side + { + "id" "229499" + "plane" "(646 -6195 0) (656 -6157 0) (648 -6157 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -15] 0.25" + "vaxis" "[0 -1 0 30.1563] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229498" + "plane" "(638 -6195 224) (648.001 -6157 224) (656 -6157 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -15] 0.25" + "vaxis" "[0 -1 0 -1.84375] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229497" + "plane" "(648.001 -6157 224) (648 -6157 0) (656 -6157 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -15] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229496" + "plane" "(646 -6195 224) (646 -6195 0) (638 -6195 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -15] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229495" + "plane" "(638 -6195 224) (638 -6195 0) (648 -6157 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 1.84375] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229494" + "plane" "(656 -6157 224) (656 -6157 0) (646 -6195 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 1.84375] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957290" + side + { + "id" "229505" + "plane" "(650 -6236 0) (657 -6236 0) (646 -6195 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 35.1094] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229504" + "plane" "(657 -6236 224) (649.999 -6236 224) (638 -6195 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 3.10938] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229503" + "plane" "(646 -6195 224) (638 -6195 224) (638 -6195 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229502" + "plane" "(649.999 -6236 224) (657 -6236 224) (657 -6236 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229501" + "plane" "(638 -6195 224) (649.999 -6236 224) (650 -6236 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -3.10938] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229500" + "plane" "(657 -6236 224) (646 -6195 224) (646 -6195 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -3.10938] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957291" + side + { + "id" "229511" + "plane" "(678 -6273 0) (678 -6265 0) (657 -6236 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 58.6563] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229510" + "plane" "(678 -6265 224) (678 -6273 224) (649.997 -6236 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 26.6563] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229509" + "plane" "(656.999 -6236 224) (649.997 -6236 224) (650 -6236 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229508" + "plane" "(678 -6273 224) (678 -6265 224) (678 -6265 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229507" + "plane" "(649.997 -6236 224) (678 -6273 224) (678 -6273 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -26.6563] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229506" + "plane" "(678 -6265 224) (656.999 -6236 224) (657 -6236 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -26.6563] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957292" + side + { + "id" "229517" + "plane" "(715 -6299 0) (718 -6293 0) (678 -6265 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -15.3281] 0.25" + "vaxis" "[0 -1 0 60.4551] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229516" + "plane" "(718.001 -6293 224) (715.001 -6299 224) (677.997 -6273 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -15.3281] 0.25" + "vaxis" "[0 -1 0 28.4551] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229515" + "plane" "(678 -6265 224) (677.997 -6273 224) (678 -6273 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -15.3281] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229514" + "plane" "(715.001 -6299 224) (718.001 -6293 224) (718 -6293 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -60.4551] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229513" + "plane" "(677.997 -6273 224) (715.001 -6299 224) (715 -6299 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -15.3281] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229512" + "plane" "(718.001 -6293 224) (678 -6265 224) (678 -6265 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -15.3281] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957293" + side + { + "id" "229523" + "plane" "(759 -6308 0) (759 -6300 0) (718 -6293 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -14.8389] 0.25" + "vaxis" "[0 -1 0 57.8379] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229522" + "plane" "(759 -6300 224) (759 -6308 224) (715.001 -6299 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -14.8389] 0.25" + "vaxis" "[0 -1 0 25.8379] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229521" + "plane" "(718.001 -6293 224) (715.001 -6299 224) (715 -6299 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -57.8379] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229520" + "plane" "(759 -6308 224) (759 -6300 224) (759 -6300 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -57.8379] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229519" + "plane" "(715.001 -6299 224) (759 -6308 224) (759 -6308 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -14.8389] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229518" + "plane" "(759 -6300 224) (718.001 -6293 224) (718 -6293 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -14.8389] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957294" + side + { + "id" "229529" + "plane" "(797 -6301 0) (797 -6293 0) (759 -6300 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 62.209] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229528" + "plane" "(797.001 -6293 224) (797.001 -6301 224) (759 -6308 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 30.209] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229527" + "plane" "(759 -6300 224) (759 -6308 224) (759 -6308 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -62.209] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229526" + "plane" "(797.001 -6301 224) (797.001 -6293 224) (797 -6293 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -62.209] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229525" + "plane" "(759 -6308 224) (797.001 -6301 224) (797 -6301 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229524" + "plane" "(797.001 -6293 224) (759 -6300 224) (759 -6300 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957295" + side + { + "id" "229535" + "plane" "(837 -6268 0) (837 -6260 0) (797 -6293 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16.6682] 0.25" + "vaxis" "[0 -1 0 52.4395] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229534" + "plane" "(837 -6260 224) (837.002 -6268 224) (797.001 -6301 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16.6682] 0.25" + "vaxis" "[0 -1 0 20.4395] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229533" + "plane" "(797.002 -6293 224) (797.001 -6301 224) (797 -6301 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -52.4395] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229532" + "plane" "(837.002 -6268 224) (837 -6260 224) (837 -6260 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16.6682] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229531" + "plane" "(797.001 -6301 224) (837.002 -6268 224) (837 -6268 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16.6682] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229530" + "plane" "(837 -6260 224) (797.002 -6293 224) (797 -6293 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 -16.6682] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957296" + side + { + "id" "229541" + "plane" "(836.999 -6268 0) (853 -6240 0) (845 -6240 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 58.6563] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229540" + "plane" "(853.002 -6240 224) (837 -6268 224) (837 -6260 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 26.6563] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229539" + "plane" "(837 -6268 224) (836.999 -6268 0) (837 -6260 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229538" + "plane" "(845 -6240 224) (845 -6240 0) (853 -6240 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229537" + "plane" "(853.002 -6240 224) (853 -6240 0) (836.999 -6268 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -26.6563] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229536" + "plane" "(837 -6260 224) (837 -6260 0) (845 -6240 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -26.6563] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "957297" + side + { + "id" "229547" + "plane" "(857.166 -6197 0) (845 -6240 0) (853 -6240 0)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 2.99658] 0.25" + "vaxis" "[0 -1 0 32.0938] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229546" + "plane" "(845 -6240 224) (857.167 -6197 224) (864.834 -6197 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 2.99658] 0.25" + "vaxis" "[0 -1 0 0.09375] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229545" + "plane" "(845 -6240 0) (845 -6240 224) (853 -6240 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 2.99658] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229544" + "plane" "(864.834 -6197 0) (864.834 -6197 224) (857.167 -6197 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 2.99658] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229543" + "plane" "(853 -6240 0) (853 -6240 224) (864.834 -6197 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -0.09375] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "229542" + "plane" "(857.166 -6197 0) (857.167 -6197 224) (845 -6240 224)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 -0.09375] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "groupid" "968368" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1380026" + side + { + "id" "257547" + "plane" "(1328 -3144 16) (1328 -2896 16) (1344 -2896 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257546" + "plane" "(1328 -2896 -40) (1328 -3144 -40) (1344 -3144 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257545" + "plane" "(1328 -3144 -40) (1328 -2896 -40) (1328 -2896 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" "257544" + "plane" "(1344 -2896 -40) (1344 -3144 -40) (1344 -3144 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" "257543" + "plane" "(1328 -2896 -40) (1344 -2896 -40) (1344 -2896 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" "257542" + "plane" "(1344 -3144 -40) (1328 -3144 -40) (1328 -3144 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 198 235" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1535906" + side + { + "id" "265227" + "plane" "(2632 -2936 -16) (2800 -2936 -16) (2800 -2944 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 687] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265226" + "plane" "(2632 -2944 -48) (2800 -2944 -48) (2800 -2936 -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" "265225" + "plane" "(2800 -2936 -48) (2800 -2944 -48) (2800 -2944 -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" "265224" + "plane" "(2800 -2944 -48) (2632 -2944 -48) (2632 -2944 -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" "265223" + "plane" "(2632 -2936 -48) (2800 -2936 -48) (2800 -2936 -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" "265222" + "plane" "(2632 -2944 -48) (2632 -2936 -48) (2632 -2936 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 109 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "864317" + side + { + "id" "223740" + "plane" "(2470 -2736 -16) (2470 -2560 -16) (2478 -2560 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -1681] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223739" + "plane" "(2470 -2560 -48) (2470 -2736 -48) (2478 -2728 -48)" + "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" "223738" + "plane" "(2470 -2736 -48) (2470 -2560 -48) (2470 -2560 -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" "223737" + "plane" "(2478 -2560 -48) (2478 -2728 -48) (2478 -2728 -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" "223736" + "plane" "(2478 -2728 -48) (2470 -2736 -48) (2470 -2736 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 112] 0.125" + "vaxis" "[0 0 -1 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223735" + "plane" "(2470 -2560 -48) (2478 -2560 -48) (2478 -2560 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 257.721] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 129 246" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "864318" + side + { + "id" "223746" + "plane" "(2470 -2736 -16) (2478 -2728 -16) (2560 -2728 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223745" + "plane" "(2478 -2728 -48) (2470 -2736 -48) (2560 -2736 -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" "223744" + "plane" "(2470 -2736 -48) (2478 -2728 -48) (2478 -2728 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.8569] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223743" + "plane" "(2560 -2728 -48) (2560 -2736 -48) (2560 -2736 -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" "223742" + "plane" "(2560 -2736 -48) (2470 -2736 -48) (2470 -2736 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 112] 0.125" + "vaxis" "[0 0 -1 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223741" + "plane" "(2478 -2728 -48) (2560 -2728 -48) (2560 -2728 -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 111 128" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1749058" + side + { + "id" "284475" + "plane" "(2560 -2944 -16) (2624 -2944 -16) (2624 -3616 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284474" + "plane" "(2624 -2944 -48) (2560 -2944 -48) (2560 -3616 -48)" + "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" "284473" + "plane" "(2560 -2944 -48) (2624 -2944 -48) (2624 -2944 -16)" + "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" "284472" + "plane" "(2624 -2944 -48) (2624 -3616 -48) (2624 -3616 -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" "284471" + "plane" "(2624 -3616 -48) (2560 -3616 -48) (2560 -3616 -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" "284470" + "plane" "(2560 -3616 -48) (2560 -2944 -48) (2560 -2944 -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" "0 227 252" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "864324" + side + { + "id" "223782" + "plane" "(2624 -3384 -16) (2624 -2944 -16) (2632 -2944 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 687] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223781" + "plane" "(2632 -2944 -48) (2624 -2944 -48) (2624 -3384 -48)" + "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" "223780" + "plane" "(2624 -2944 -48) (2632 -2944 -48) (2632 -2944 -16)" + "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" "223779" + "plane" "(2624 -3384 -48) (2624 -2944 -48) (2624 -2944 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223778" + "plane" "(2632 -2944 -48) (2632 -3384 -48) (2632 -3384 -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" "223777" + "plane" "(2632 -3384 -48) (2624 -3384 -48) (2624 -3384 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 201 194" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1535907" + side + { + "id" "265233" + "plane" "(2560 -2944 -16) (2568 -2936 -16) (2632 -2936 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001_TRIM" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265232" + "plane" "(2568 -2936 -48) (2560 -2944 -48) (2632 -2944 -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" "265231" + "plane" "(2560 -2944 -48) (2560 -2944 -16) (2632 -2944 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[-1 0 0 -96.8564] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265230" + "plane" "(2568 -2936 -48) (2568 -2936 -16) (2560 -2944 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 112] 0.125" + "vaxis" "[0 0 -1 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265229" + "plane" "(2632 -2936 -48) (2632 -2936 -16) (2568 -2936 -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" "265228" + "plane" "(2632 -2944 -48) (2632 -2944 -16) (2632 -2936 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 191 180" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "864323" + side + { + "id" "223776" + "plane" "(2632 -3624 -16) (2624 -3616 -16) (2624 -3384 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 687] 0.125" + "vaxis" "[0 -1 0 -57] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223775" + "plane" "(2624 -3384 -48) (2624 -3616 -48) (2632 -3624 -48)" + "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" "223774" + "plane" "(2632 -3624 -48) (2624 -3616 -48) (2624 -3616 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223773" + "plane" "(2624 -3616 -48) (2624 -3384 -48) (2624 -3384 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "223772" + "plane" "(2632 -3384 -48) (2632 -3624 -48) (2632 -3624 -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" "223771" + "plane" "(2624 -3384 -48) (2632 -3384 -48) (2632 -3384 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 141 234" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "760448" + side + { + "id" "216420" + "plane" "(2424 -3776 -16) (2424 -3616 -16) (2432 -3616 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[1 0 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216419" + "plane" "(2424 -3616 -48) (2424 -3776 -48) (2432 -3768 -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" "216418" + "plane" "(2424 -3776 -48) (2424 -3616 -48) (2424 -3616 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 399.988] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "216417" + "plane" "(2432 -3616 -48) (2432 -3768 -48) (2432 -3768 -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" "216416" + "plane" "(2424 -3616 -48) (2432 -3616 -48) (2432 -3616 -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" "216415" + "plane" "(2432 -3768 -48) (2424 -3776 -48) (2424 -3776 -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 181 250" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "636261" + side + { + "id" "265560" + "plane" "(2408 -1280 -16) (2408 -560 -16) (2912 -560 -16)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265559" + "plane" "(2408 -560 -32) (2408 -1280 -32) (2912 -1280 -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" "265558" + "plane" "(2408 -1280 -32) (2408 -560 -32) (2408 -560 -16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265557" + "plane" "(2912 -560 -32) (2912 -1280 -32) (2912 -1280 -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" "265556" + "plane" "(2408 -560 -32) (2912 -560 -32) (2912 -560 -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" "265555" + "plane" "(2912 -1280 -32) (2408 -1280 -32) (2408 -1280 -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 202 251" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1549262" + side + { + "id" "265799" + "plane" "(1168 -3424 16) (1168 -2880 16) (1312 -2880 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265798" + "plane" "(1168 -2880 -40) (1168 -3424 -40) (1312 -3424 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265797" + "plane" "(1168 -3424 -40) (1168 -2880 -40) (1168 -2880 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" "265796" + "plane" "(1312 -2880 -40) (1312 -3424 -40) (1312 -3424 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" "265795" + "plane" "(1168 -2880 -40) (1312 -2880 -40) (1312 -2880 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" "265794" + "plane" "(1312 -3424 -40) (1168 -3424 -40) (1168 -3424 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 172 173" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "762077" + side + { + "id" "256632" + "plane" "(1776 -3456 208) (1648 -3456 208) (1648 -3424 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" "256631" + "plane" "(1776 -3424 147) (1776 -3424 208) (1648 -3424 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -170.488] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256630" + "plane" "(1648 -3456 147) (1648 -3456 208) (1776 -3456 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256629" + "plane" "(1648 -3424 147) (1648 -3424 208) (1648 -3456 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" "256628" + "plane" "(1776 -3456 147) (1776 -3456 208) (1776 -3424 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" "256627" + "plane" "(1776 -3424 147) (1648 -3424 147) (1648 -3456 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -11.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 110 143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "762053" + side + { + "id" "256626" + "plane" "(1776 -3456 16) (1808 -3456 16) (1808 -3424 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" "256625" + "plane" "(1808 -3424 144) (1808 -3424 16) (1808 -3456 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 -1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256624" + "plane" "(1776 -3424 16) (1808 -3424 16) (1808 -3424 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -170.488] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256623" + "plane" "(1808 -3456 144) (1808 -3456 16) (1776 -3456 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256622" + "plane" "(1776 -3424 144) (1808 -3424 144) (1808 -3456 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" "256621" + "plane" "(1776 -3456 144) (1776 -3456 16) (1776 -3424 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 240 253" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1380048" + side + { + "id" "257607" + "plane" "(1808 -3424 0) (1312 -3424 0) (1312 -3456 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" "257606" + "plane" "(1312 -3424 16) (1312 -3424 0) (1808 -3424 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.994368 0.10598 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257605" + "plane" "(1808 -3456 16) (1808 -3456 0) (1312 -3456 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257604" + "plane" "(1808 -3424 16) (1808 -3424 0) (1808 -3456 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707342 -0.706871 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "257603" + "plane" "(1312 -3456 16) (1312 -3456 0) (1312 -3424 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" "257602" + "plane" "(1808 -3456 16) (1312 -3456 16) (1312 -3424 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" + } + editor + { + "color" "0 106 231" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1380169" + side + { + "id" "318500" + "plane" "(1312 -3456 147) (1312 -3424 147) (1548 -3424 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318499" + "plane" "(1312 -3424 16) (1312 -3456 16) (1548 -3456 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" "318498" + "plane" "(1312 -3456 16) (1312 -3424 16) (1312 -3424 147)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 -907] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318497" + "plane" "(1548 -3424 16) (1548 -3456 16) (1548 -3456 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318496" + "plane" "(1312 -3424 16) (1548 -3424 16) (1548 -3424 147)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-1 0 0 -170.488] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318495" + "plane" "(1548 -3456 16) (1312 -3456 16) (1312 -3456 147)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 234 187" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190485" + side + { + "id" "299951" + "plane" "(-144 -5568 32) (-144 -5536 32) (96 -5536 32)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[0 1 0 514] 0.125" + "vaxis" "[1 0 0 5] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299950" + "plane" "(96 -5536 0) (-144 -5536 0) (-144 -5568 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" "299949" + "plane" "(-144 -5536 0) (96 -5536 0) (96 -5536 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" "299948" + "plane" "(-144 -5568 0) (-144 -5536 0) (-144 -5536 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299947" + "plane" "(96 -5536 0) (96 -5568 0) (96 -5568 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" "299946" + "plane" "(96 -5568 0) (-144 -5568 0) (-144 -5568 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" "223 152 0" + "groupid" "8436125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190487" + side + { + "id" "299963" + "plane" "(96 -5568 32) (96 -5664 32) (64 -5632 32)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[-1 0 0 764] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299962" + "plane" "(96 -5664 0) (96 -5568 0) (64 -5568 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" "299961" + "plane" "(96 -5664 0) (96 -5664 32) (96 -5568 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" "299960" + "plane" "(96 -5568 0) (96 -5568 32) (64 -5568 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" "299959" + "plane" "(64 -5632 0) (64 -5632 32) (96 -5664 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" "299958" + "plane" "(64 -5568 0) (64 -5568 32) (64 -5632 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "223 152 0" + "groupid" "8436125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190489" + side + { + "id" "299975" + "plane" "(-224 -5664 32) (-224 -5632 32) (64 -5632 32)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[0 1 0 514] 0.125" + "vaxis" "[1 0 0 5] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299974" + "plane" "(-224 -5664 0) (96 -5664 0) (64 -5632 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" "299973" + "plane" "(-224 -5632 0) (-224 -5632 32) (-224 -5664 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" "299972" + "plane" "(-224 -5664 0) (-224 -5664 32) (96 -5664 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" "299971" + "plane" "(96 -5664 0) (96 -5664 32) (64 -5632 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" "299970" + "plane" "(64 -5632 0) (64 -5632 32) (-224 -5632 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "223 152 0" + "groupid" "8436125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190490" + side + { + "id" "299981" + "plane" "(-224 -5632 32) (-224 -5568 32) (-192 -5568 32)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[1 0 0 764] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299980" + "plane" "(-192 -5568 0) (-224 -5568 0) (-224 -5632 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" "299979" + "plane" "(-224 -5568 0) (-192 -5568 0) (-192 -5568 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" "299978" + "plane" "(-224 -5632 0) (-224 -5568 0) (-224 -5568 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" "299977" + "plane" "(-192 -5632 0) (-224 -5632 0) (-224 -5632 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299976" + "plane" "(-192 -5568 0) (-192 -5632 0) (-192 -5632 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "223 152 0" + "groupid" "8436125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190491" + side + { + "id" "299987" + "plane" "(-192 -5568 32) (64 -5568 32) (64 -5632 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299986" + "plane" "(64 -5568 0) (-192 -5568 0) (-192 -5632 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" "299985" + "plane" "(-192 -5568 0) (64 -5568 0) (64 -5568 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" "299984" + "plane" "(64 -5568 0) (64 -5632 0) (64 -5632 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299983" + "plane" "(64 -5632 0) (-192 -5632 0) (-192 -5632 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299982" + "plane" "(-192 -5632 0) (-192 -5568 0) (-192 -5568 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "223 152 0" + "groupid" "8436125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "584534" + side + { + "id" "147956" + "plane" "(1800 -5504 48) (1528 -5504 48) (1528 -5496 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147955" + "plane" "(1528 -5496 0) (1528 -5504 0) (1800 -5504 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" "147954" + "plane" "(1800 -5504 0) (1528 -5504 0) (1528 -5504 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" "147953" + "plane" "(1800 -5496 0) (1800 -5504 0) (1800 -5504 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" "147952" + "plane" "(1528 -5504 0) (1528 -5496 0) (1528 -5496 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 576] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147951" + "plane" "(1528 -5496 0) (1800 -5496 0) (1800 -5496 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 128 249" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "584538" + side + { + "id" "147980" + "plane" "(1920 -5504 48) (1800 -5504 48) (1800 -5496 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147979" + "plane" "(1800 -5504 0) (1920 -5504 0) (1920 -5496 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" "147978" + "plane" "(1920 -5504 0) (1920 -5504 48) (1920 -5496 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" "147977" + "plane" "(1800 -5504 0) (1800 -5504 48) (1920 -5504 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" "147976" + "plane" "(1800 -5496 0) (1800 -5496 48) (1800 -5504 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" "147975" + "plane" "(1920 -5496 0) (1920 -5496 48) (1800 -5496 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 106 163" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "557406" + side + { + "id" "264163" + "plane" "(864 -5840 128) (856 -5840 128) (856 -5776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264162" + "plane" "(864 -5776 48) (856 -5776 48) (856 -5840 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264161" + "plane" "(864 -5840 128) (864 -5776 128) (864 -5776 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" "264160" + "plane" "(856 -5840 48) (856 -5776 48) (856 -5776 128)" + "material" "METAL/HR_METAL/HR_METAL_SHUTTERS_01" + "uaxis" "[0 -1 0 -256] 0.0625" + "vaxis" "[0 0 -1 614.4] 0.078125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264159" + "plane" "(856 -5840 128) (864 -5840 128) (864 -5840 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264158" + "plane" "(856 -5776 48) (864 -5776 48) (864 -5776 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 230 119" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480825" + side + { + "id" "263229" + "plane" "(376 -5864 8) (176 -5864 8) (176 -5624 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[1 0 0 -78] 0.125" + "vaxis" "[0 -1 0 -61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263228" + "plane" "(376 -5624 0) (176 -5624 0) (176 -5864 0)" + "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" "263227" + "plane" "(176 -5624 0) (376 -5624 0) (376 -5624 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" "263226" + "plane" "(176 -5864 0) (176 -5624 0) (176 -5624 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263225" + "plane" "(376 -5864 0) (176 -5864 0) (176 -5864 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" "263224" + "plane" "(376 -5624 0) (376 -5864 0) (376 -5864 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 130 199" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480826" + side + { + "id" "263235" + "plane" "(176 -5864 8) (168 -5872 8) (168 -5616 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -1] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263234" + "plane" "(168 -5616 0) (168 -5872 0) (176 -5864 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" "263233" + "plane" "(168 -5872 0) (168 -5616 0) (168 -5616 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -1] 0.125" + "vaxis" "[0 0 1 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263232" + "plane" "(176 -5864 0) (168 -5872 0) (168 -5872 8)" + "material" "WOOD/HR_W/HR_WOOD_FLOORS_A" + "uaxis" "[1 0 0 640] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263231" + "plane" "(168 -5616 0) (176 -5624 0) (176 -5624 8)" + "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" "263230" + "plane" "(176 -5624 0) (176 -5864 0) (176 -5864 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" + } + editor + { + "color" "0 164 121" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480827" + side + { + "id" "263241" + "plane" "(384 -5872 8) (168 -5872 8) (176 -5864 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263240" + "plane" "(384 -5872 0) (376 -5864 0) (176 -5864 0)" + "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" "263239" + "plane" "(384 -5872 0) (384 -5872 8) (376 -5864 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" "263238" + "plane" "(168 -5872 0) (168 -5872 8) (384 -5872 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" "263237" + "plane" "(176 -5864 0) (176 -5864 8) (168 -5872 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263236" + "plane" "(376 -5864 0) (376 -5864 8) (176 -5864 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 230 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480828" + side + { + "id" "263246" + "plane" "(168 -5872 0) (168 -5888 0) (384 -5888 0)" + "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" "263245" + "plane" "(168 -5888 0) (168 -5872 0) (168 -5872 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -1] 0.125" + "vaxis" "[0 0 1 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263244" + "plane" "(384 -5872 0) (384 -5888 0) (384 -5872 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" "263243" + "plane" "(384 -5888 0) (168 -5888 0) (168 -5872 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[1 0 0 -78] 0.125" + "vaxis" "[0 -0.894427 -0.447214 -61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263242" + "plane" "(168 -5872 8) (168 -5872 0) (384 -5872 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 144 229" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480829" + side + { + "id" "263252" + "plane" "(376 -5624 8) (384 -5616 8) (384 -5872 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263251" + "plane" "(384 -5872 0) (384 -5616 0) (376 -5624 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" "263250" + "plane" "(384 -5616 0) (384 -5872 0) (384 -5872 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" "263249" + "plane" "(376 -5624 0) (384 -5616 0) (384 -5616 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" "263248" + "plane" "(384 -5872 0) (376 -5864 0) (376 -5864 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" "263247" + "plane" "(376 -5864 0) (376 -5624 0) (376 -5624 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" + } + editor + { + "color" "0 198 191" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480830" + side + { + "id" "263258" + "plane" "(376 -5624 8) (176 -5624 8) (168 -5616 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 320] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263257" + "plane" "(176 -5624 0) (376 -5624 0) (384 -5616 0)" + "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" "263256" + "plane" "(168 -5616 0) (168 -5616 8) (176 -5624 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" "263255" + "plane" "(376 -5624 0) (376 -5624 8) (384 -5616 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" "263254" + "plane" "(384 -5616 0) (384 -5616 8) (168 -5616 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" "263253" + "plane" "(176 -5624 0) (176 -5624 8) (376 -5624 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 120 161" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1480831" + side + { + "id" "263263" + "plane" "(168 -5600 0) (168 -5616 0) (424 -5616 0)" + "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" "263262" + "plane" "(168 -5616 0) (168 -5600 0) (168 -5616 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -1] 0.125" + "vaxis" "[0 0 1 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263261" + "plane" "(424 -5600 0) (424 -5616 0) (424 -5616 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" "263260" + "plane" "(168 -5616 8) (168 -5600 0) (424 -5600 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[1 0 0 -78] 0.125" + "vaxis" "[0 -0.894427 0.447214 -61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263259" + "plane" "(424 -5616 8) (424 -5616 0) (168 -5616 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 214 235" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388175" + side + { + "id" "262687" + "plane" "(584 -5864 8) (584 -5624 8) (840 -5624 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[1 0 0 -14] 0.125" + "vaxis" "[0 -1 0 -61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262686" + "plane" "(840 -5624 0) (584 -5624 0) (584 -5864 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" "262685" + "plane" "(584 -5624 0) (840 -5624 0) (840 -5624 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" "262684" + "plane" "(584 -5864 0) (584 -5624 0) (584 -5624 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262683" + "plane" "(840 -5864 0) (584 -5864 0) (584 -5864 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" "262682" + "plane" "(840 -5624 0) (840 -5864 0) (840 -5864 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 254 183" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388119" + side + { + "id" "262693" + "plane" "(584 -5624 8) (584 -5864 8) (576 -5872 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262692" + "plane" "(584 -5864 0) (584 -5624 0) (576 -5616 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" "262691" + "plane" "(576 -5616 8) (576 -5872 8) (576 -5872 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" "262690" + "plane" "(576 -5872 8) (584 -5864 8) (584 -5864 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" "262689" + "plane" "(584 -5624 8) (576 -5616 8) (576 -5616 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" "262688" + "plane" "(584 -5864 8) (584 -5624 8) (584 -5624 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" + } + editor + { + "color" "0 216 197" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388137" + side + { + "id" "262699" + "plane" "(576 -5872 8) (584 -5864 8) (840 -5864 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262698" + "plane" "(840 -5864 0) (584 -5864 0) (576 -5872 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" "262697" + "plane" "(848 -5872 8) (840 -5864 8) (840 -5864 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" "262696" + "plane" "(576 -5872 8) (848 -5872 8) (848 -5872 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" "262695" + "plane" "(584 -5864 8) (576 -5872 8) (576 -5872 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262694" + "plane" "(840 -5864 8) (584 -5864 8) (584 -5864 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 178 191" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1367671" + side + { + "id" "262704" + "plane" "(848 -5888 0) (848 -5872 0) (576 -5872 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" "262703" + "plane" "(576 -5872 8) (576 -5888 0) (576 -5872 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" "262702" + "plane" "(848 -5872 8) (848 -5872 0) (848 -5888 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" "262701" + "plane" "(576 -5872 8) (848 -5872 8) (848 -5888 0)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[1 0 0 -14] 0.125" + "vaxis" "[0 -0.894427 -0.447214 -61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262700" + "plane" "(848 -5872 8) (576 -5872 8) (576 -5872 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 172 129" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388176" + side + { + "id" "262710" + "plane" "(848 -5872 8) (840 -5864 8) (840 -5624 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262709" + "plane" "(840 -5624 0) (840 -5864 0) (848 -5872 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" "262708" + "plane" "(848 -5872 8) (848 -5616 8) (848 -5616 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" "262707" + "plane" "(848 -5616 8) (840 -5624 8) (840 -5624 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" "262706" + "plane" "(840 -5864 8) (848 -5872 8) (848 -5872 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" "262705" + "plane" "(840 -5624 8) (840 -5864 8) (840 -5864 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" + } + editor + { + "color" "0 114 155" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388114" + side + { + "id" "262716" + "plane" "(848 -5616 8) (840 -5624 8) (584 -5624 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262715" + "plane" "(840 -5624 0) (848 -5616 0) (576 -5616 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" "262714" + "plane" "(576 -5616 8) (584 -5624 8) (584 -5624 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" "262713" + "plane" "(840 -5624 8) (848 -5616 8) (848 -5616 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" "262712" + "plane" "(848 -5616 8) (576 -5616 8) (576 -5616 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" "262711" + "plane" "(584 -5624 8) (840 -5624 8) (840 -5624 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 228 141" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1367666" + side + { + "id" "262721" + "plane" "(576 -5616 0) (848 -5616 0) (848 -5600 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" "262720" + "plane" "(576 -5600 0) (576 -5616 8) (576 -5616 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" "262719" + "plane" "(848 -5616 0) (848 -5616 8) (848 -5600 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" "262718" + "plane" "(848 -5600 0) (848 -5616 8) (576 -5616 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001" + "uaxis" "[1 0 0 -14] 0.125" + "vaxis" "[0 -0.894427 0.447214 -61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "262717" + "plane" "(576 -5616 0) (576 -5616 8) (848 -5616 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 182 119" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1302041" + side + { + "id" "256542" + "plane" "(-1024 -2276 161) (-1024 -2262 161) (-801 -2262 161)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256541" + "plane" "(-1024 -2262 -24) (-1024 -2276 -24) (-801 -2276 -24)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256540" + "plane" "(-1024 -2276 -24) (-1024 -2262 -24) (-1024 -2262 161)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256539" + "plane" "(-801 -2262 -24) (-801 -2276 -24) (-801 -2276 161)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256538" + "plane" "(-1024 -2262 -24) (-801 -2262 -24) (-801 -2262 161)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256537" + "plane" "(-801 -2276 -24) (-1024 -2276 -24) (-1024 -2276 161)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "217 214 0" + "groupid" "3468640" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2409440" + side + { + "id" "305726" + "plane" "(-904 -3184 128) (-904 -3168 128) (-656 -3168 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" "305725" + "plane" "(-904 -3168 0) (-904 -3184 0) (-656 -3184 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" "305724" + "plane" "(-904 -3184 0) (-904 -3168 0) (-904 -3168 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" "305723" + "plane" "(-656 -3168 0) (-656 -3184 0) (-656 -3184 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" "305722" + "plane" "(-904 -3168 0) (-656 -3168 0) (-656 -3168 128)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305721" + "plane" "(-656 -3184 0) (-904 -3184 0) (-904 -3184 128)" + "material" "TOOLS/TOOLSHINT" + "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 173" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2409447" + side + { + "id" "305738" + "plane" "(-648 -2896 128) (-400 -2896 128) (-400 -2912 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" "305737" + "plane" "(-648 -2912 -32) (-400 -2912 -32) (-400 -2896 -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" "305736" + "plane" "(-648 -2896 128) (-648 -2912 128) (-648 -2912 -32)" + "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" "305735" + "plane" "(-400 -2896 -32) (-400 -2912 -32) (-400 -2912 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" "305734" + "plane" "(-400 -2896 128) (-648 -2896 128) (-648 -2896 -32)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305733" + "plane" "(-400 -2912 -32) (-648 -2912 -32) (-648 -2912 128)" + "material" "TOOLS/TOOLSHINT" + "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 121" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4045" + side + { + "id" "305336" + "plane" "(1856 -2985 208) (1856 -2729 208) (1888 -2729 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 29.8904] 0.257547" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305335" + "plane" "(1856 -2729 16) (1856 -2985 16) (1888 -2985 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 29.8904] 0.257547" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305334" + "plane" "(1856 -2985 16) (1856 -2729 16) (1856 -2729 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 15.9961] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305333" + "plane" "(1888 -2729 16) (1888 -2985 16) (1888 -2985 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 -1 0 -384] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305332" + "plane" "(1856 -2729 16) (1888 -2729 16) (1888 -2729 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 384.002] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305331" + "plane" "(1888 -2985 16) (1856 -2985 16) (1856 -2985 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[-1 0 0 199.996] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 139 132" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "557398" + side + { + "id" "145538" + "plane" "(560 -5776 128) (568 -5776 128) (568 -5840 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" "145537" + "plane" "(560 -5840 48) (568 -5840 48) (568 -5776 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" "145536" + "plane" "(560 -5776 128) (560 -5840 128) (560 -5840 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" "145535" + "plane" "(568 -5776 48) (568 -5840 48) (568 -5840 128)" + "material" "METAL/HR_METAL/HR_METAL_SHUTTERS_01" + "uaxis" "[0 1 0 256] 0.0625" + "vaxis" "[0 0 -1 614.4] 0.078125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "145534" + "plane" "(568 -5776 128) (560 -5776 128) (560 -5776 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" "145533" + "plane" "(568 -5840 48) (560 -5840 48) (560 -5840 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 213 102" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2387737" + side + { + "id" "326653" + "plane" "(-377 -6311 321) (-377 -5680 321) (-359 -5680 321)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326652" + "plane" "(-377 -5680 32) (-377 -6311 32) (-359 -6311 32)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326651" + "plane" "(-377 -6311 32) (-377 -5680 32) (-377 -5680 321)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326650" + "plane" "(-359 -5680 32) (-359 -6311 32) (-359 -6311 321)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326649" + "plane" "(-377 -5680 32) (-359 -5680 32) (-359 -5680 321)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326648" + "plane" "(-359 -6311 32) (-377 -6311 32) (-377 -6311 321)" + "material" "TOOLS/TOOLSCLIP" + "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 105" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2144293" + side + { + "id" "298913" + "plane" "(-376 -6304 168) (-376 -5688 168) (-360 -5688 168)" + "material" "CEILING/HR_C/HR_CEILING_TILE_002B_COLOR" + "uaxis" "[0 1 0 -888] 0.125" + "vaxis" "[1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298912" + "plane" "(-376 -5688 144) (-376 -5688 168) (-376 -6304 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" "298911" + "plane" "(-360 -6304 144) (-360 -6304 168) (-360 -5688 168)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 21.8477] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298910" + "plane" "(-360 -5688 144) (-360 -5688 168) (-376 -5688 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" "298909" + "plane" "(-376 -6304 144) (-376 -6304 168) (-360 -6304 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" "298908" + "plane" "(-376 -5688 144) (-376 -6304 144) (-360 -6304 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" + } + editor + { + "color" "0 155 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2144297" + side + { + "id" "298919" + "plane" "(-376 -6216 32) (-376 -6304 32) (-360 -6304 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" "298918" + "plane" "(-376 -6304 144) (-376 -6304 32) (-376 -6216 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" "298917" + "plane" "(-360 -6216 32) (-360 -6304 32) (-360 -6304 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 21.8477] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298916" + "plane" "(-360 -6304 144) (-360 -6304 32) (-376 -6304 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" "298915" + "plane" "(-376 -6304 144) (-376 -6216 144) (-360 -6216 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" "298914" + "plane" "(-376 -6216 144) (-376 -6216 32) (-360 -6216 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 205 154" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2144313" + side + { + "id" "298925" + "plane" "(-376 -5872 32) (-376 -6088 32) (-360 -6088 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" "298924" + "plane" "(-376 -6088 32) (-376 -5872 32) (-376 -5872 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298923" + "plane" "(-360 -5872 32) (-360 -6088 32) (-360 -6088 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 21.8477] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298922" + "plane" "(-376 -6088 144) (-376 -5872 144) (-360 -5872 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" "298921" + "plane" "(-360 -6088 144) (-360 -6088 32) (-376 -6088 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" "298920" + "plane" "(-376 -5872 144) (-376 -5872 32) (-360 -5872 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 151 248" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2144322" + side + { + "id" "298931" + "plane" "(-376 -5696 32) (-376 -5744 32) (-360 -5744 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" "298930" + "plane" "(-376 -5744 32) (-376 -5696 32) (-376 -5696 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298929" + "plane" "(-360 -5696 144) (-360 -5696 32) (-360 -5744 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 21.8477] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298928" + "plane" "(-376 -5696 144) (-376 -5696 32) (-360 -5696 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" "298927" + "plane" "(-376 -5744 144) (-376 -5696 144) (-360 -5696 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" "298926" + "plane" "(-360 -5744 144) (-360 -5744 32) (-376 -5744 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 133 138" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "53937" + side + { + "id" "328979" + "plane" "(1987 -4202 128) (2048 -4202 128) (2048 -4214 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328978" + "plane" "(1987 -4214 0) (2048 -4214 0) (2048 -4202 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328977" + "plane" "(2048 -4202 0) (2048 -4214 0) (2048 -4214 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328976" + "plane" "(1987 -4202 0) (2048 -4202 0) (2048 -4202 128)" + "material" "APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -76] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328975" + "plane" "(2048 -4214 0) (1987 -4214 0) (1987 -4214 128)" + "material" "APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -76] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "328974" + "plane" "(1987 -4214 0) (1987 -4202 0) (1987 -4202 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 144 113" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431503" + side + { + "id" "364268" + "plane" "(1591 -4200 128) (1591 -4216 128) (2048 -4216 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 170.664] 0.15" + "vaxis" "[0 -1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364267" + "plane" "(1591 -4216 128) (1591 -4200 128) (1591 -4200 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" "364266" + "plane" "(2048 -4200 128) (2048 -4216 128) (2048 -4216 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" "364265" + "plane" "(1591 -4200 128) (2048 -4200 128) (2048 -4200 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364264" + "plane" "(2048 -4216 128) (1591 -4216 128) (1591 -4216 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364263" + "plane" "(1591 -4216 160) (1591 -4200 160) (2048 -4200 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" + } + editor + { + "color" "0 216 217" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431516" + side + { + "id" "364344" + "plane" "(1591 -4200 160) (1591 -4200 192) (1591 -4216 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" "364343" + "plane" "(2048 -4216 160) (2048 -4216 192) (2048 -4200 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" "364342" + "plane" "(2048 -4200 160) (2048 -4200 192) (1591 -4200 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364341" + "plane" "(1591 -4216 160) (1591 -4216 192) (2048 -4216 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -381.537] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364340" + "plane" "(1591 -4200 160) (1591 -4216 160) (2048 -4216 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" "364339" + "plane" "(1591 -4216 192) (1591 -4200 192) (2048 -4200 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 134 183" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5431515" + side + { + "id" "364338" + "plane" "(1591 -4216 208) (1591 -4200 208) (2048 -4200 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" "364337" + "plane" "(1591 -4200 192) (1591 -4200 208) (1591 -4216 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" "364336" + "plane" "(2048 -4216 192) (2048 -4216 208) (2048 -4200 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" "364335" + "plane" "(2048 -4200 192) (2048 -4200 208) (1591 -4200 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364334" + "plane" "(1591 -4216 192) (1591 -4216 208) (2048 -4216 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364333" + "plane" "(1591 -4200 192) (1591 -4216 192) (2048 -4216 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 144 105" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "68013" + side + { + "id" "20901" + "plane" "(2048 -4214 272) (1591 -4214 272) (1591 -4202 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" "20900" + "plane" "(2048 -4202 208) (1591 -4202 208) (1591 -4214 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" "20899" + "plane" "(1591 -4214 208) (1591 -4202 208) (1591 -4202 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20898" + "plane" "(1591 -4202 208) (2048 -4202 208) (2048 -4202 272)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20897" + "plane" "(2048 -4214 208) (1591 -4214 208) (1591 -4214 272)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "20896" + "plane" "(2048 -4202 208) (2048 -4214 208) (2048 -4214 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 214 115" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7439053" + side + { + "id" "383237" + "plane" "(1720 -4216 0) (1731 -4216 0) (1731 -4200 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383236" + "plane" "(1731 -4200 48) (1731 -4200 0) (1731 -4216 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 447.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383235" + "plane" "(1720 -4200 0) (1731 -4200 0) (1731 -4200 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -135] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383234" + "plane" "(1731 -4216 48) (1731 -4216 0) (1720 -4216 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 -136] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383233" + "plane" "(1720 -4200 48) (1731 -4200 48) (1731 -4216 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383232" + "plane" "(1720 -4216 48) (1720 -4216 0) (1720 -4200 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 447.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 133 114" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7439055" + side + { + "id" "383243" + "plane" "(1720 -4200 128) (1731 -4200 128) (1731 -4216 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383242" + "plane" "(1731 -4216 48) (1731 -4216 128) (1731 -4200 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 447.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383241" + "plane" "(1731 -4200 48) (1731 -4200 128) (1720 -4200 128)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -264] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383240" + "plane" "(1720 -4216 128) (1731 -4216 128) (1731 -4216 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 -136] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383239" + "plane" "(1720 -4216 48) (1731 -4216 48) (1731 -4200 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383238" + "plane" "(1720 -4200 48) (1720 -4200 128) (1720 -4216 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 447.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 203 100" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8133734" + side + { + "id" "389290" + "plane" "(2240 -3776 296) (2497 -3776 296) (2497 -3792 296)" + "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" "389289" + "plane" "(2240 -3792 208) (2497 -3792 208) (2497 -3776 208)" + "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" "389288" + "plane" "(2240 -3776 296) (2240 -3792 296) (2240 -3792 208)" + "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" "389287" + "plane" "(2497 -3776 208) (2497 -3792 208) (2497 -3792 296)" + "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" "389286" + "plane" "(2497 -3776 296) (2240 -3776 296) (2240 -3776 208)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389285" + "plane" "(2497 -3792 208) (2240 -3792 208) (2240 -3792 296)" + "material" "TOOLS/TOOLSHINT" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 190 179" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8436125" + editor + { + "color" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8395046" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8395107" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8395125" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8395143" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8395233" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8395251" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353313" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353349" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353385" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353514" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353550" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353625" + editor + { + "color" "155 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353664" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353760" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353814" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8353850" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8253774" + editor + { + "color" "155 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8253813" + editor + { + "color" "155 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8192959" + editor + { + "color" "100 125 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8193097" + editor + { + "color" "100 125 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8193158" + editor + { + "color" "163 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "8193236" + editor + { + "color" "194 179 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7877786" + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7700522" + editor + { + "color" "163 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7700558" + editor + { + "color" "163 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7700631" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7700635" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680643" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680660" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680664" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680676" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680680" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680700" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680712" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680728" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680736" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680764" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680776" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680800" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680812" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680828" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680840" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680852" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680860" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680872" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680884" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680892" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680908" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680924" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680940" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680952" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680968" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7680988" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681004" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681016" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681024" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681032" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681044" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681056" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681072" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681084" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681096" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7681108" + editor + { + "color" "252 149 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7602584" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7582116" + editor + { + "color" "249 150 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7540738" + editor + { + "color" "157 186 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7540825" + editor + { + "color" "157 186 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498584" + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498589" + editor + { + "color" "253 126 0" + "groupid" "7498584" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498590" + editor + { + "color" "253 126 0" + "groupid" "7498589" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498591" + editor + { + "color" "253 126 0" + "groupid" "7498590" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498593" + editor + { + "color" "253 126 0" + "groupid" "7498591" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498594" + editor + { + "color" "253 126 0" + "groupid" "7498593" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498595" + editor + { + "color" "253 126 0" + "groupid" "7498594" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498597" + editor + { + "color" "253 126 0" + "groupid" "7498595" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498598" + editor + { + "color" "253 126 0" + "groupid" "7498597" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498605" + editor + { + "color" "253 126 0" + "groupid" "7498598" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498647" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498688" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498725" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498738" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7498747" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7359143" + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7163556" + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7163557" + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "7025120" + editor + { + "color" "163 224 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6984661" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6984697" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6984751" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6904530" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6904560" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6904612" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6831143" + editor + { + "color" "178 203 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6831144" + editor + { + "color" "178 203 0" + "groupid" "6831143" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6831175" + editor + { + "color" "252 101 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6831176" + editor + { + "color" "252 101 0" + "groupid" "6831175" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6831222" + editor + { + "color" "101 150 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6775149" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6775185" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6775239" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6775275" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6756234" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6756288" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6756342" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6756432" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6737218" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6737272" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6737344" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6737380" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6719024" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6719025" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6719079" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6719115" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6719169" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6719223" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6719295" + editor + { + "color" "206 135 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6701014" + editor + { + "color" "197 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6664408" + editor + { + "color" "102 103 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6664639" + editor + { + "color" "102 103 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6665213" + editor + { + "color" "102 103 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6644445" + editor + { + "color" "105 150 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6556920" + editor + { + "color" "102 103 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6539346" + editor + { + "color" "204 113 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6539407" + editor + { + "color" "118 159 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6539830" + editor + { + "color" "103 116 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6539869" + editor + { + "color" "103 116 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6539895" + editor + { + "color" "103 116 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6141125" + editor + { + "color" "249 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6141198" + editor + { + "color" "183 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6141250" + editor + { + "color" "183 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6141276" + editor + { + "color" "183 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6122412" + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6101977" + editor + { + "color" "217 230 0" + "groupid" "6102301" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102157" + editor + { + "color" "217 230 0" + "groupid" "6102301" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102301" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102302" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102303" + editor + { + "color" "217 230 0" + "groupid" "6102302" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102321" + editor + { + "color" "217 230 0" + "groupid" "6102302" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102672" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102673" + editor + { + "color" "217 230 0" + "groupid" "6102672" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102691" + editor + { + "color" "217 230 0" + "groupid" "6102672" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102968" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102969" + editor + { + "color" "217 230 0" + "groupid" "6102968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6102987" + editor + { + "color" "217 230 0" + "groupid" "6102968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103116" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103117" + editor + { + "color" "217 230 0" + "groupid" "6103116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103135" + editor + { + "color" "217 230 0" + "groupid" "6103116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103264" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103265" + editor + { + "color" "217 230 0" + "groupid" "6103264" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103283" + editor + { + "color" "217 230 0" + "groupid" "6103264" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103517" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103572" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103716" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103782" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6103836" + editor + { + "color" "217 230 0" + "groupid" "6104292" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6104292" + editor + { + "color" "217 230 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6104537" + editor + { + "color" "155 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6104551" + editor + { + "color" "155 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6017212" + editor + { + "color" "240 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "6017945" + editor + { + "color" "249 130 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5833123" + editor + { + "color" "103 116 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5783118" + editor + { + "color" "146 115 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5783119" + editor + { + "color" "146 115 0" + "groupid" "5783118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5783166" + editor + { + "color" "146 115 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5783167" + editor + { + "color" "146 115 0" + "groupid" "5783166" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5766505" + editor + { + "color" "255 108 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5766515" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5766516" + editor + { + "color" "255 108 0" + "groupid" "5766515" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5766517" + editor + { + "color" "255 108 0" + "groupid" "5766516" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5766530" + editor + { + "color" "255 108 0" + "groupid" "5766516" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5766531" + editor + { + "color" "255 108 0" + "groupid" "5766530" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5766532" + editor + { + "color" "255 108 0" + "groupid" "5766531" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5749968" + editor + { + "color" "255 108 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5749969" + editor + { + "color" "255 108 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5750222" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5750223" + editor + { + "color" "255 108 0" + "groupid" "5750222" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5750224" + editor + { + "color" "255 108 0" + "groupid" "5750223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5750237" + editor + { + "color" "255 108 0" + "groupid" "5750223" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5750238" + editor + { + "color" "255 108 0" + "groupid" "5750237" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5750239" + editor + { + "color" "255 108 0" + "groupid" "5750238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5682228" + editor + { + "color" "102 119 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5600058" + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517520" + editor + { + "color" "222 171 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517555" + editor + { + "color" "222 171 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517556" + editor + { + "color" "222 171 0" + "groupid" "5517555" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517557" + editor + { + "color" "222 171 0" + "groupid" "5517556" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517571" + editor + { + "color" "222 171 0" + "groupid" "5517556" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517793" + editor + { + "color" "222 171 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517794" + editor + { + "color" "222 171 0" + "groupid" "5517793" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517795" + editor + { + "color" "222 171 0" + "groupid" "5517794" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517809" + editor + { + "color" "222 171 0" + "groupid" "5517794" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517963" + editor + { + "color" "222 171 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517964" + editor + { + "color" "222 171 0" + "groupid" "5517963" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517965" + editor + { + "color" "222 171 0" + "groupid" "5517964" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5517979" + editor + { + "color" "222 171 0" + "groupid" "5517964" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5518133" + editor + { + "color" "222 171 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5518134" + editor + { + "color" "222 171 0" + "groupid" "5518133" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5518135" + editor + { + "color" "222 171 0" + "groupid" "5518134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5518149" + editor + { + "color" "222 171 0" + "groupid" "5518134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5518329" + editor + { + "color" "222 171 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5518330" + editor + { + "color" "222 171 0" + "groupid" "5518329" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5518331" + editor + { + "color" "222 171 0" + "groupid" "5518330" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5518345" + editor + { + "color" "222 171 0" + "groupid" "5518330" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5518431" + editor + { + "color" "234 211 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5484468" + editor + { + "color" "112 157 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5467876" + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5428817" + editor + { + "color" "101 202 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5431283" + editor + { + "color" "246 107 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5375135" + editor + { + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5357810" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5323601" + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5323612" + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5324173" + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5324185" + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5305104" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5305313" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5305537" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5305666" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5305855" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5305963" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5306073" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5306262" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5306343" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5307093" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5307120" + editor + { + "color" "251 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5096097" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5080233" + editor + { + "color" "153 226 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "5080288" + editor + { + "color" "153 226 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4939646" + editor + { + "color" "252 237 0" + "groupid" "4939663" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4939663" + editor + { + "color" "252 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4939719" + editor + { + "color" "176 249 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4924162" + editor + { + "color" "235 204 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4924263" + editor + { + "color" "235 204 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4813627" + editor + { + "color" "123 164 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4813628" + editor + { + "color" "123 164 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4695314" + editor + { + "color" "230 187 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4695718" + editor + { + "color" "234 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4631706" + editor + { + "color" "166 191 0" + "groupid" "4631713" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4631713" + editor + { + "color" "166 191 0" + "groupid" "4631725" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4631725" + editor + { + "color" "166 191 0" + "groupid" "4631742" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4631742" + editor + { + "color" "166 191 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4631760" + editor + { + "color" "166 191 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4631761" + editor + { + "color" "166 191 0" + "groupid" "4631760" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4631762" + editor + { + "color" "166 191 0" + "groupid" "4631761" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4631763" + editor + { + "color" "166 191 0" + "groupid" "4631762" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4615191" + editor + { + "color" "109 186 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4615201" + editor + { + "color" "109 186 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4522384" + editor + { + "color" "224 169 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4522385" + editor + { + "color" "224 169 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4479300" + editor + { + "color" "108 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4337345" + editor + { + "color" "108 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4337646" + editor + { + "color" "135 180 0" + "groupid" "4337691" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4337691" + editor + { + "color" "135 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4323510" + editor + { + "color" "136 109 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4253974" + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4223887" + editor + { + "color" "202 111 0" + "groupid" "4224123" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4224123" + editor + { + "color" "202 111 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4209835" + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4209859" + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4130210" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4130529" + editor + { + "color" "210 139 0" + "groupid" "4130857" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4130857" + editor + { + "color" "210 139 0" + "groupid" "4131214" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4131214" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4131636" + editor + { + "color" "210 139 0" + "groupid" "4137619" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "4137619" + editor + { + "color" "210 139 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3977066" + editor + { + "color" "102 103 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3977195" + editor + { + "color" "102 103 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3977360" + editor + { + "color" "102 103 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3962579" + editor + { + "color" "157 254 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3853365" + editor + { + "color" "252 237 0" + "groupid" "3853443" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3853443" + editor + { + "color" "252 237 0" + "groupid" "4939663" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3853900" + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3825795" + editor + { + "color" "157 186 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3759914" + editor + { + "color" "234 111 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3745805" + editor + { + "color" "184 177 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3718514" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3718519" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3718884" + editor + { + "color" "183 216 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3718910" + editor + { + "color" "183 216 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3719025" + editor + { + "color" "183 216 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3719332" + editor + { + "color" "132 165 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3719333" + editor + { + "color" "132 165 0" + "groupid" "3719332" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3719364" + editor + { + "color" "132 165 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3719365" + editor + { + "color" "132 165 0" + "groupid" "3719364" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3704689" + editor + { + "color" "216 113 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3675452" + editor + { + "color" "100 125 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3675573" + editor + { + "color" "112 157 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3580049" + editor + { + "color" "105 138 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3580677" + editor + { + "color" "123 108 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3536106" + editor + { + "color" "121 254 0" + "groupid" "3536257" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3536257" + editor + { + "color" "121 254 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3468640" + editor + { + "color" "217 214 0" + "groupid" "3468695" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3468695" + editor + { + "color" "217 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3400656" + editor + { + "color" "250 147 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3247736" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3247762" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3247788" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3247825" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3247847" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3247868" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3247889" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3190617" + editor + { + "color" "135 180 0" + "groupid" "4337646" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3057043" + editor + { + "color" "245 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "3057044" + editor + { + "color" "245 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2962966" + editor + { + "color" "188 209 0" + "groupid" "4253974" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2963064" + editor + { + "color" "188 209 0" + "groupid" "2963216" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2963216" + editor + { + "color" "188 209 0" + "groupid" "4253974" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2856289" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2856353" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2856431" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2856444" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2856839" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2856852" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857043" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857056" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857069" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857094" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857447" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857460" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857473" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857486" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857617" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857630" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857736" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2857892" + editor + { + "color" "130 139 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2858019" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2858040" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2858053" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2858074" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2843311" + editor + { + "color" "150 143 0" + "groupid" "2843408" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2843408" + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2778641" + editor + { + "color" "150 143 0" + "groupid" "2843311" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2753282" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2753740" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2740950" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2711588" + editor + { + "color" "212 189 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2674404" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2674450" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2674522" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2674576" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2674612" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2674666" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2674786" + editor + { + "color" "233 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2590463" + editor + { + "color" "141 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2590562" + editor + { + "color" "141 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2590673" + editor + { + "color" "249 150 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2590682" + editor + { + "color" "163 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2591278" + editor + { + "color" "127 156 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2591291" + editor + { + "color" "243 132 0" + "groupid" "2591309" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2591309" + editor + { + "color" "243 132 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2549272" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2549357" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2549408" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2549425" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2549510" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2549527" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2549578" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2549595" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2549646" + editor + { + "color" "200 253 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2486628" + editor + { + "color" "175 136 0" + "groupid" "2486972" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2486972" + editor + { + "color" "175 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2471295" + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2471777" + editor + { + "color" "100 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2471793" + editor + { + "color" "100 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2471853" + editor + { + "color" "100 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2471928" + editor + { + "color" "100 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2446298" + editor + { + "color" "102 159 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2446320" + editor + { + "color" "102 159 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2435162" + editor + { + "color" "148 133 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2422109" + editor + { + "color" "255 108 0" + "groupid" "2422335" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2422335" + editor + { + "color" "255 108 0" + "groupid" "2422562" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2422562" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2424528" + editor + { + "color" "125 238 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2424529" + editor + { + "color" "125 238 0" + "groupid" "2424528" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2424530" + editor + { + "color" "125 238 0" + "groupid" "2424529" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2424707" + editor + { + "color" "125 238 0" + "groupid" "2424529" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2424708" + editor + { + "color" "125 238 0" + "groupid" "2424707" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2424709" + editor + { + "color" "125 238 0" + "groupid" "2424708" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2387017" + editor + { + "color" "101 202 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2387035" + editor + { + "color" "101 202 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2190326" + editor + { + "color" "232 121 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2190555" + editor + { + "color" "116 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2148307" + editor + { + "color" "202 151 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2148316" + editor + { + "color" "240 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124271" + editor + { + "color" "240 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124771" + editor + { + "color" "134 147 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124788" + editor + { + "color" "178 103 0" + "groupid" "2124810" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124810" + editor + { + "color" "178 103 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124831" + editor + { + "color" "212 233 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124852" + editor + { + "color" "158 111 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124873" + editor + { + "color" "104 157 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124894" + editor + { + "color" "130 187 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124916" + editor + { + "color" "134 147 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2124937" + editor + { + "color" "134 147 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2113272" + editor + { + "color" "147 132 0" + "groupid" "2113826" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2113273" + editor + { + "color" "147 132 0" + "groupid" "2113272" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2113826" + editor + { + "color" "147 132 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2093917" + editor + { + "color" "100 177 0" + "groupid" "2093979" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2093979" + editor + { + "color" "100 177 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2094042" + editor + { + "color" "100 177 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2094043" + editor + { + "color" "100 177 0" + "groupid" "2094042" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2035511" + editor + { + "color" "128 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2026273" + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2017056" + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "2017094" + editor + { + "color" "161 170 0" + "groupid" "2026273" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1987826" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1987956" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1988034" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1988177" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1988255" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1988688" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1975911" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1975951" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1975977" + editor + { + "color" "148 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1979135" + editor + { + "color" "128 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1979136" + editor + { + "color" "128 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1979331" + editor + { + "color" "216 113 0" + "groupid" "3704689" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1906419" + editor + { + "color" "179 132 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1906420" + editor + { + "color" "179 132 0" + "groupid" "1906419" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1906787" + editor + { + "color" "179 132 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1906788" + editor + { + "color" "179 132 0" + "groupid" "1906787" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1908210" + editor + { + "color" "179 132 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1908211" + editor + { + "color" "179 132 0" + "groupid" "1908210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1908254" + editor + { + "color" "179 132 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1908255" + editor + { + "color" "179 132 0" + "groupid" "1908254" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1908298" + editor + { + "color" "179 132 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1908299" + editor + { + "color" "179 132 0" + "groupid" "1908298" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1867325" + editor + { + "color" "162 139 0" + "groupid" "1869899" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1867398" + editor + { + "color" "160 225 0" + "groupid" "1867959" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1867959" + editor + { + "color" "160 225 0" + "groupid" "1868615" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1868615" + editor + { + "color" "160 225 0" + "groupid" "1870511" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1869899" + editor + { + "color" "162 139 0" + "groupid" "1870615" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1870511" + editor + { + "color" "160 225 0" + "groupid" "1870841" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1870615" + editor + { + "color" "162 139 0" + "groupid" "1870728" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1870728" + editor + { + "color" "162 139 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1870841" + editor + { + "color" "160 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1873560" + editor + { + "color" "159 224 0" + "groupid" "1896271" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1873688" + editor + { + "color" "212 213 0" + "groupid" "1875421" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1874112" + editor + { + "color" "187 164 0" + "groupid" "1896095" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1875207" + editor + { + "color" "188 105 0" + "groupid" "1875282" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1875282" + editor + { + "color" "188 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1875421" + editor + { + "color" "212 213 0" + "groupid" "1875899" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1875899" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1876966" + editor + { + "color" "212 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1877959" + editor + { + "color" "186 115 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1879425" + editor + { + "color" "240 197 0" + "groupid" "1880860" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1880860" + editor + { + "color" "240 197 0" + "groupid" "2124271" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1880866" + editor + { + "color" "251 216 0" + "groupid" "1883277" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1880867" + editor + { + "color" "251 216 0" + "groupid" "1880866" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1880992" + editor + { + "color" "127 156 0" + "groupid" "1885603" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881005" + editor + { + "color" "127 156 0" + "groupid" "1885603" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881018" + editor + { + "color" "127 156 0" + "groupid" "1885603" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881031" + editor + { + "color" "127 156 0" + "groupid" "1885603" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881044" + editor + { + "color" "127 156 0" + "groupid" "1885603" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881057" + editor + { + "color" "127 156 0" + "groupid" "1885603" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881395" + editor + { + "color" "239 220 0" + "groupid" "1882265" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881396" + editor + { + "color" "239 220 0" + "groupid" "1881395" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881534" + editor + { + "color" "111 248 0" + "groupid" "1885656" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881547" + editor + { + "color" "111 248 0" + "groupid" "1885656" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1881560" + editor + { + "color" "111 248 0" + "groupid" "1885656" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1882265" + editor + { + "color" "239 220 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1882266" + editor + { + "color" "233 230 0" + "groupid" "1882981" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1882267" + editor + { + "color" "233 230 0" + "groupid" "1882266" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1882268" + editor + { + "color" "233 230 0" + "groupid" "1882267" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1882981" + editor + { + "color" "233 230 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1883277" + editor + { + "color" "251 216 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1885603" + editor + { + "color" "127 156 0" + "groupid" "1892196" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1885656" + editor + { + "color" "111 248 0" + "groupid" "1891602" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1885789" + editor + { + "color" "149 206 0" + "groupid" "1885998" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1885790" + editor + { + "color" "149 206 0" + "groupid" "1885789" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1885803" + editor + { + "color" "149 206 0" + "groupid" "1885789" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1885816" + editor + { + "color" "149 206 0" + "groupid" "1885789" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1885931" + editor + { + "color" "149 206 0" + "groupid" "1885998" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1885998" + editor + { + "color" "149 206 0" + "groupid" "1891372" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1891372" + editor + { + "color" "149 206 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1891602" + editor + { + "color" "111 248 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1892196" + editor + { + "color" "127 156 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1894834" + editor + { + "color" "251 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1894835" + editor + { + "color" "251 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1894862" + editor + { + "color" "251 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1896036" + editor + { + "color" "181 154 0" + "groupid" "1896167" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1896095" + editor + { + "color" "187 164 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1896167" + editor + { + "color" "181 154 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1896271" + editor + { + "color" "159 224 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1859581" + editor + { + "color" "179 132 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1859582" + editor + { + "color" "179 132 0" + "groupid" "1859581" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1843659" + editor + { + "color" "159 224 0" + "groupid" "1843733" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1843733" + editor + { + "color" "159 224 0" + "groupid" "1873560" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1843914" + editor + { + "color" "141 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1835377" + editor + { + "color" "146 143 0" + "groupid" "1835409" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1835409" + editor + { + "color" "146 143 0" + "groupid" "1835474" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1835474" + editor + { + "color" "146 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1836080" + editor + { + "color" "192 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1793616" + editor + { + "color" "174 243 0" + "groupid" "1794891" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1793929" + editor + { + "color" "174 243 0" + "groupid" "1794891" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1794428" + editor + { + "color" "174 243 0" + "groupid" "1794891" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1794891" + editor + { + "color" "174 243 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1785193" + editor + { + "color" "130 139 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1762777" + editor + { + "color" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1740840" + editor + { + "color" "130 139 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1713943" + editor + { + "color" "152 225 0" + "groupid" "1714288" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1714288" + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1714632" + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1567017" + editor + { + "color" "159 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1567018" + editor + { + "color" "159 172 0" + "groupid" "1567017" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1567020" + editor + { + "color" "159 172 0" + "groupid" "1567018" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1567102" + editor + { + "color" "159 172 0" + "groupid" "1567020" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1567103" + editor + { + "color" "159 172 0" + "groupid" "1567102" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1555765" + editor + { + "color" "151 232 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1510005" + editor + { + "color" "250 199 0" + "groupid" "1510371" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1510371" + editor + { + "color" "250 199 0" + "groupid" "1510441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1510441" + editor + { + "color" "250 199 0" + "groupid" "1510896" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1510896" + editor + { + "color" "250 199 0" + "groupid" "1511053" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1511053" + editor + { + "color" "250 199 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1494073" + editor + { + "color" "251 140 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1487275" + editor + { + "color" "210 175 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1487276" + editor + { + "color" "210 175 0" + "groupid" "1487275" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1487295" + editor + { + "color" "210 175 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1487296" + editor + { + "color" "210 175 0" + "groupid" "1487295" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1425646" + editor + { + "color" "115 240 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1349616" + editor + { + "color" "139 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1349617" + editor + { + "color" "139 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1349618" + editor + { + "color" "139 192 0" + "groupid" "1349617" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1349854" + editor + { + "color" "139 192 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1349855" + editor + { + "color" "139 192 0" + "groupid" "1349854" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1302081" + editor + { + "color" "217 214 0" + "groupid" "3468640" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1302123" + editor + { + "color" "194 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1296168" + editor + { + "color" "108 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1242558" + editor + { + "color" "157 186 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1243052" + editor + { + "color" "163 224 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1245282" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1245333" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1245367" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1245524" + editor + { + "color" "222 171 0" + "groupid" "1245580" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1245580" + editor + { + "color" "222 171 0" + "groupid" "5517520" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1246281" + editor + { + "color" "234 211 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1246337" + editor + { + "color" "234 211 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1236571" + editor + { + "color" "157 186 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1230754" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1219388" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1213938" + editor + { + "color" "106 119 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1208445" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1208572" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1184516" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1184579" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1184613" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185014" + editor + { + "color" "100 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185061" + editor + { + "color" "234 211 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185299" + editor + { + "color" "118 223 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185300" + editor + { + "color" "118 223 0" + "groupid" "1185299" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185313" + editor + { + "color" "118 223 0" + "groupid" "1185299" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185571" + editor + { + "color" "156 217 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185636" + editor + { + "color" "156 217 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185692" + editor + { + "color" "175 136 0" + "groupid" "2486972" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185693" + editor + { + "color" "175 136 0" + "groupid" "1185692" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185706" + editor + { + "color" "175 136 0" + "groupid" "1185692" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185796" + editor + { + "color" "252 169 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185965" + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1185996" + editor + { + "color" "200 209 0" + "groupid" "1187043" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1186902" + editor + { + "color" "200 209 0" + "groupid" "1187043" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1187043" + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1172425" + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1172547" + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1172640" + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1165972" + editor + { + "color" "157 186 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1150820" + editor + { + "color" "208 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1150903" + editor + { + "color" "208 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1151656" + editor + { + "color" "208 213 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1142769" + editor + { + "color" "150 143 0" + "groupid" "2778641" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1064808" + editor + { + "color" "141 254 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "1051539" + editor + { + "color" "175 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "988026" + editor + { + "color" "179 132 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "989339" + editor + { + "color" "211 104 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "991421" + editor + { + "color" "221 106 0" + "groupid" "991489" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "991426" + editor + { + "color" "221 106 0" + "groupid" "991489" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "991473" + editor + { + "color" "221 106 0" + "groupid" "991489" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "991489" + editor + { + "color" "221 106 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "980801" + editor + { + "color" "104 129 0" + "groupid" "981034" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "980812" + editor + { + "color" "246 243 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "980819" + editor + { + "color" "108 221 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "981034" + editor + { + "color" "104 129 0" + "groupid" "981096" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "981096" + editor + { + "color" "104 129 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "981153" + editor + { + "color" "152 205 0" + "groupid" "981238" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "981238" + editor + { + "color" "152 205 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "968368" + editor + { + "color" "157 254 0" + "groupid" "3962579" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "968442" + editor + { + "color" "146 183 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "948790" + editor + { + "color" "159 224 0" + "groupid" "949657" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "948856" + editor + { + "color" "181 154 0" + "groupid" "949914" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "949441" + editor + { + "color" "162 139 0" + "groupid" "949816" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "949657" + editor + { + "color" "159 224 0" + "groupid" "1843659" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "949728" + editor + { + "color" "160 225 0" + "groupid" "950010" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "949816" + editor + { + "color" "162 139 0" + "groupid" "950087" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "949914" + editor + { + "color" "181 154 0" + "groupid" "1896036" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "950010" + editor + { + "color" "160 225 0" + "groupid" "1867398" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "950087" + editor + { + "color" "162 139 0" + "groupid" "1867325" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "824085" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "824151" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "825606" + editor + { + "color" "255 184 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "805762" + editor + { + "color" "210 175 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "805763" + editor + { + "color" "210 175 0" + "groupid" "805762" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "805842" + editor + { + "color" "210 175 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "805843" + editor + { + "color" "210 175 0" + "groupid" "805842" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "805862" + editor + { + "color" "210 175 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "805863" + editor + { + "color" "210 175 0" + "groupid" "805862" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "805882" + editor + { + "color" "210 175 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "805883" + editor + { + "color" "210 175 0" + "groupid" "805882" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "776885" + editor + { + "color" "159 224 0" + "groupid" "948790" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "776886" + editor + { + "color" "160 225 0" + "groupid" "949728" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "776907" + editor + { + "color" "160 225 0" + "groupid" "776886" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "777134" + editor + { + "color" "162 139 0" + "groupid" "949441" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "777155" + editor + { + "color" "162 139 0" + "groupid" "777134" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "768722" + editor + { + "color" "187 164 0" + "groupid" "1874112" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "768723" + editor + { + "color" "188 105 0" + "groupid" "1875207" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "768870" + editor + { + "color" "159 224 0" + "groupid" "776885" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "769256" + editor + { + "color" "181 154 0" + "groupid" "948856" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "759563" + editor + { + "color" "200 137 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "760655" + editor + { + "color" "146 143 0" + "groupid" "760742" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "760742" + editor + { + "color" "146 143 0" + "groupid" "1835377" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "761506" + editor + { + "color" "172 197 0" + "groupid" "761836" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "761507" + editor + { + "color" "172 197 0" + "groupid" "761506" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "761836" + editor + { + "color" "172 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "745381" + editor + { + "color" "220 220 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "618190" + editor + { + "color" "236 153 0" + "groupid" "1714632" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "618191" + editor + { + "color" "236 153 0" + "groupid" "618190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "618257" + editor + { + "color" "236 153 0" + "groupid" "618190" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "619692" + editor + { + "color" "152 225 0" + "groupid" "1713943" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "619693" + editor + { + "color" "152 225 0" + "groupid" "619692" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "584197" + editor + { + "color" "108 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "570647" + editor + { + "color" "108 197 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "564502" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "531536" + editor + { + "color" "0 176 185" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "533538" + editor + { + "color" "252 169 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "533578" + editor + { + "color" "252 169 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "533591" + editor + { + "color" "252 169 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "366899" + editor + { + "color" "220 217 0" + "groupid" "367195" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "367195" + editor + { + "color" "220 217 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "367531" + editor + { + "color" "220 217 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "367532" + editor + { + "color" "220 217 0" + "groupid" "367531" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "367545" + editor + { + "color" "220 217 0" + "groupid" "367532" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "340531" + editor + { + "color" "190 139 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "340553" + editor + { + "color" "190 139 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "335317" + editor + { + "color" "220 217 0" + "groupid" "366899" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "305536" + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "305562" + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "305576" + editor + { + "color" "193 106 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "305586" + editor + { + "color" "247 236 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "309525" + editor + { + "color" "175 172 0" + "groupid" "1051539" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "258802" + editor + { + "color" "139 192 0" + "groupid" "1349616" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "177009" + editor + { + "color" "152 225 0" + "groupid" "177730" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "177401" + editor + { + "color" "152 225 0" + "groupid" "177730" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "177730" + editor + { + "color" "152 225 0" + "groupid" "1713943" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "168606" + editor + { + "color" "236 153 0" + "groupid" "168620" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "168620" + editor + { + "color" "236 153 0" + "groupid" "1714632" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "170410" + editor + { + "color" "181 118 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "153450" + editor + { + "color" "222 171 0" + "groupid" "1245580" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "138808" + editor + { + "color" "0 232 117" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "72738" + editor + { + "color" "211 104 0" + "groupid" "989339" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "72842" + editor + { + "color" "251 140 0" + "groupid" "1494073" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26534" + editor + { + "color" "255 108 0" + "groupid" "2422335" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26535" + editor + { + "color" "255 108 0" + "groupid" "26534" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26536" + editor + { + "color" "255 108 0" + "groupid" "26535" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26645" + editor + { + "color" "0 187 208" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26646" + editor + { + "color" "0 187 208" + "groupid" "26645" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26647" + editor + { + "color" "0 187 208" + "groupid" "26646" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26672" + editor + { + "color" "0 109 118" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26673" + editor + { + "color" "0 109 118" + "groupid" "26672" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26686" + editor + { + "color" "0 255 116" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26749" + editor + { + "color" "0 113 206" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26750" + editor + { + "color" "0 113 206" + "groupid" "26749" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26751" + editor + { + "color" "0 113 206" + "groupid" "26750" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26862" + editor + { + "color" "148 133 0" + "groupid" "2435162" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26863" + editor + { + "color" "148 133 0" + "groupid" "26862" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26960" + editor + { + "color" "148 133 0" + "groupid" "2435162" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "26961" + editor + { + "color" "148 133 0" + "groupid" "26960" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "27017" + editor + { + "color" "148 133 0" + "groupid" "2435162" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "24608" + editor + { + "color" "146 183 0" + "groupid" "968442" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + group + { + "id" "24609" + editor + { + "color" "146 183 0" + "groupid" "24608" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +entity +{ + "id" "8415228" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 0 0" + "BasisOrigin" "-12.0002 -2341 49" + "BasisU" "0 1 0" + "BasisV" "0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/display_stance_launch_vector" + "sides" "246398" + "StartU" "0" + "StartV" "1" + "uv0" "-74.1407 -68.4685 0" + "uv1" "-74.1407 68.4685 0" + "uv2" "74.1407 68.4685 0" + "uv3" "74.1407 -68.4685 0" + "origin" "-12.0002 -2341 49" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "8415276" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 0 0" + "BasisOrigin" "-800.91 -2338 57" + "BasisU" "0 1 0" + "BasisV" "0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/display_stance_deployment_vector" + "sides" "339905" + "StartU" "0" + "StartV" "1" + "uv0" "-93.5 -76.5 0" + "uv1" "-93.5 76.5 0" + "uv2" "93.5 76.5 0" + "uv3" "93.5 -76.5 0" + "origin" "-800.91 -2338 57" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "8415396" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "243 18 40" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "118 -2236 -50" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8415400" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "109 -2236 -50" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8415404" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "99 -2236 -50" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8415408" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "243 18 40" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "118 -2204 -50" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8415412" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "109 -2204 -50" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8415416" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "99 -2204 -50" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "8415602" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-761.761 -2405.82 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "8415607" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 1 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-791.761 -2405.82 -13.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "8415612" + "classname" "prop_static" + "angles" "0 1 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-802 -2406 -20" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "8415686" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "28.239 -2275 19.5579" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "8415691" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 1 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-1.76099 -2275 -14.4635" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "8415696" + "classname" "prop_static" + "angles" "0 1 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-12 -2275.18 -21.4444" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +hidden +{ + entity + { + "id" "8415700" + "classname" "prop_static" + "angles" "0 1 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-12 -2410 -21.4444" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "8415704" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 1 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-1.76099 -2409.82 -14.4635" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "8415709" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "28.239 -2409.82 19.5579" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "8394876" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "243 18 40" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-442 -2570 -41.4811" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8394880" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-442 -2561 -41.4811" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8394884" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-442 -2551 -41.4811" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8394888" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "243 18 40" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-410 -2570 -41.4811" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8394892" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-410 -2561 -41.4811" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8394896" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-410 -2551 -41.4811" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8395047" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "516 -2657 -39.75" + editor + { + "color" "206 135 0" + "groupid" "8395046" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8395051" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "516 -2657 -33.75" + editor + { + "color" "206 135 0" + "groupid" "8395046" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8395056" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "516 -2657 -26.75" + editor + { + "color" "206 135 0" + "groupid" "8395046" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8395061" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "516 -2657 -37.75" + editor + { + "color" "206 135 0" + "groupid" "8395046" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8395108" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "580 -2657 -39.75" + editor + { + "color" "206 135 0" + "groupid" "8395107" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8395112" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "580 -2657 -33.75" + editor + { + "color" "206 135 0" + "groupid" "8395107" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8395117" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "580 -2657 -26.75" + editor + { + "color" "206 135 0" + "groupid" "8395107" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8395122" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "580 -2657 -37.75" + editor + { + "color" "206 135 0" + "groupid" "8395107" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8395126" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "580 -2440 -39.75" + editor + { + "color" "206 135 0" + "groupid" "8395125" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8395130" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "580 -2440 -33.75" + editor + { + "color" "206 135 0" + "groupid" "8395125" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8395135" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "580 -2440 -26.75" + editor + { + "color" "206 135 0" + "groupid" "8395125" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8395140" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "580 -2440 -37.75" + editor + { + "color" "206 135 0" + "groupid" "8395125" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8395144" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "516 -2440 -39.75" + editor + { + "color" "206 135 0" + "groupid" "8395143" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8395148" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "516 -2440 -33.75" + editor + { + "color" "206 135 0" + "groupid" "8395143" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8395153" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "516 -2440 -26.75" + editor + { + "color" "206 135 0" + "groupid" "8395143" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8395158" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "516 -2440 -37.75" + editor + { + "color" "206 135 0" + "groupid" "8395143" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8395234" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "580 -2201 -39.75" + editor + { + "color" "206 135 0" + "groupid" "8395233" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8395238" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "580 -2201 -33.75" + editor + { + "color" "206 135 0" + "groupid" "8395233" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8395243" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "580 -2201 -26.75" + editor + { + "color" "206 135 0" + "groupid" "8395233" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8395248" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "580 -2201 -37.75" + editor + { + "color" "206 135 0" + "groupid" "8395233" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8395252" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "516 -2201 -39.75" + editor + { + "color" "206 135 0" + "groupid" "8395251" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8395256" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "516 -2201 -33.75" + editor + { + "color" "206 135 0" + "groupid" "8395251" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8395261" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "516 -2201 -26.75" + editor + { + "color" "206 135 0" + "groupid" "8395251" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8395266" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "516 -2201 -37.75" + editor + { + "color" "206 135 0" + "groupid" "8395251" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8353083" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1792 -2615 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "8353087" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1792 -2616 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "8353314" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "136 -2256 -79.75" + editor + { + "color" "206 135 0" + "groupid" "8353313" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8353318" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "136 -2256 -73.75" + editor + { + "color" "206 135 0" + "groupid" "8353313" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8353323" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "136 -2256 -66.75" + editor + { + "color" "206 135 0" + "groupid" "8353313" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8353328" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "136 -2256 -77.75" + editor + { + "color" "206 135 0" + "groupid" "8353313" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8353350" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "136 -2344 -79.75" + editor + { + "color" "206 135 0" + "groupid" "8353349" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8353354" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "136 -2344 -73.75" + editor + { + "color" "206 135 0" + "groupid" "8353349" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8353359" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "136 -2344 -66.75" + editor + { + "color" "206 135 0" + "groupid" "8353349" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8353364" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "136 -2344 -77.75" + editor + { + "color" "206 135 0" + "groupid" "8353349" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8353386" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "136 -2432 -79.75" + editor + { + "color" "206 135 0" + "groupid" "8353385" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8353390" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "136 -2432 -73.75" + editor + { + "color" "206 135 0" + "groupid" "8353385" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8353395" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "136 -2432 -66.75" + editor + { + "color" "206 135 0" + "groupid" "8353385" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8353400" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "136 -2432 -77.75" + editor + { + "color" "206 135 0" + "groupid" "8353385" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8353515" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-297 -2217 -65.5" + editor + { + "color" "206 135 0" + "groupid" "8353514" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8353519" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "-297 -2217 -59.5" + editor + { + "color" "206 135 0" + "groupid" "8353514" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8353524" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-297 -2217 -52.5" + editor + { + "color" "206 135 0" + "groupid" "8353514" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8353529" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "-297 -2217 -63.5" + editor + { + "color" "206 135 0" + "groupid" "8353514" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8353551" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -2217 -65.5" + editor + { + "color" "206 135 0" + "groupid" "8353550" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8353555" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "-112 -2217 -59.5" + editor + { + "color" "206 135 0" + "groupid" "8353550" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8353560" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-112 -2217 -52.5" + editor + { + "color" "206 135 0" + "groupid" "8353550" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8353565" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "-112 -2217 -63.5" + editor + { + "color" "206 135 0" + "groupid" "8353550" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "8353626" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "242 106 109 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-283.294 -2229 -47.7832" + editor + { + "color" "155 192 0" + "groupid" "8353625" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "8353631" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "-283 -2235.75 -47.7832" + editor + { + "color" "155 192 0" + "groupid" "8353625" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "8353634" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-283 -2240.75 -47.7832" + editor + { + "color" "155 192 0" + "groupid" "8353625" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "8353665" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-207 -2217 -65.5" + editor + { + "color" "206 135 0" + "groupid" "8353664" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8353669" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "-207 -2217 -59.5" + editor + { + "color" "206 135 0" + "groupid" "8353664" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8353674" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-207 -2217 -52.5" + editor + { + "color" "206 135 0" + "groupid" "8353664" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8353679" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "-207 -2217 -63.5" + editor + { + "color" "206 135 0" + "groupid" "8353664" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "8353730" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "-458 -2583 -48.4526" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "8353733" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-458 -2588 -48.4526" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "8353737" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-458.294 -2576.25 -48.4526" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "8353761" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-557 -2544 -63.75" + editor + { + "color" "206 135 0" + "groupid" "8353760" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8353765" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "-557 -2544 -57.75" + editor + { + "color" "206 135 0" + "groupid" "8353760" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8353770" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-557 -2544 -50.75" + editor + { + "color" "206 135 0" + "groupid" "8353760" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8353775" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "-557 -2544 -61.75" + editor + { + "color" "206 135 0" + "groupid" "8353760" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8353815" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-634 -2544 -63.75" + editor + { + "color" "206 135 0" + "groupid" "8353814" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8353819" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "-634 -2544 -57.75" + editor + { + "color" "206 135 0" + "groupid" "8353814" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8353824" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-634 -2544 -50.75" + editor + { + "color" "206 135 0" + "groupid" "8353814" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8353829" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "-634 -2544 -61.75" + editor + { + "color" "206 135 0" + "groupid" "8353814" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8353851" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-477 -2544 -63.75" + editor + { + "color" "206 135 0" + "groupid" "8353850" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "8353855" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "-477 -2544 -57.75" + editor + { + "color" "206 135 0" + "groupid" "8353850" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "8353860" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-477 -2544 -50.75" + editor + { + "color" "206 135 0" + "groupid" "8353850" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8353865" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "-477 -2544 -61.75" + editor + { + "color" "206 135 0" + "groupid" "8353850" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "8353942" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1797 -4199.8 400" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "8353946" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1662 -4199.8 400" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "8353950" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1534 -4200 400" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "8354014" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2014 -4200 400" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "8354018" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1879 -4200 400" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "8313135" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8744 8664 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313143" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8744 8616 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313147" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8744 8576 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313227" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8712 8568 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313231" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8712 8592 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313243" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8712 8616 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313268" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8712 8688 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313272" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8712 8664 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313276" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8712 8640 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313350" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/radio_tower/radio_tower_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9680 8511 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313389" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/survival_water_tower/survival_water_tower_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8552.25 8050.11 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313420" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9198 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313440" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9134 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313444" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9262 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313452" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9326 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313460" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9390 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313468" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9453 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313476" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9517 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313484" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9581 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313520" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9070 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313524" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9006 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313528" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8942 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313532" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8878 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313558" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8686 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313562" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8750 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313566" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8814 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313582" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8494 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313586" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8558 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313590" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8622 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313606" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8430 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8313614" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/hr_massive/bridge/bridge_road_1024_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8366 7924 5177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8293267" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_32x32.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2104 -4288 81" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 11500]" + } + } +} +hidden +{ + entity + { + "id" "8293303" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_32x32.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2184 -4288 81" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 11500]" + } + } +} +entity +{ + "id" "8293322" + "classname" "func_instance" + "angles" "-0 54.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "2176 -4336 289" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "8293346" + "classname" "func_instance" + "angles" "-0 59 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "2096 -4336 289" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "8253520" + "classname" "prop_static" + "angles" "0 270 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_32x32.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1856 -2936 63.5348" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 11500]" + } + } +} +hidden +{ + entity + { + "id" "8253524" + "classname" "prop_static" + "angles" "0 270 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_32x32.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1856 -2776 63.5348" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 11500]" + } + } +} +entity +{ + "id" "8253640" + "classname" "func_detail" + solid + { + "id" "8353255" + side + { + "id" "390178" + "plane" "(88 -2484.02 -24) (88 -2204 -24) (96 -2212 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 800.096] 0.125" + "vaxis" "[1 0 0 98] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390177" + "plane" "(96 -2476.02 -32) (96 -2212 -32) (88 -2204 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16.0469] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390176" + "plane" "(88 -2484.02 -32) (88 -2484.02 -24) (96 -2476.02 -24)" + "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" "390175" + "plane" "(88 -2204 -32) (88 -2204 -24) (88 -2484.02 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16.0469] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390174" + "plane" "(96 -2476.02 -32) (96 -2476.02 -24) (96 -2212 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -160.096] 0.125" + "vaxis" "[0 0 1 94.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390173" + "plane" "(96 -2212 -32) (96 -2212 -24) (88 -2204 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "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" "8253642" + side + { + "id" "389962" + "plane" "(88 -2204 -24) (168 -2204 -24) (160 -2212 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 -192] 0.125" + "vaxis" "[0 1 0 64.002] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389961" + "plane" "(96 -2212 -32) (160 -2212 -32) (168 -2204 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389960" + "plane" "(96 -2212 -24) (160 -2212 -24) (160 -2212 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 -896.002] 0.125" + "vaxis" "[0 0 1 94.9959] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389959" + "plane" "(168 -2204 -24) (88 -2204 -24) (88 -2204 -32)" + "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" "389958" + "plane" "(88 -2204 -24) (96 -2212 -24) (96 -2212 -32)" + "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" "389957" + "plane" "(160 -2212 -24) (168 -2204 -24) (168 -2204 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 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" "8253643" + side + { + "id" "389968" + "plane" "(168 -2484 -24) (160 -2476 -24) (160 -2212 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 800.002] 0.125" + "vaxis" "[1 0 0 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389967" + "plane" "(160 -2476 -32) (168 -2484 -32) (168 -2204 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389966" + "plane" "(168 -2484 -32) (160 -2476 -32) (160 -2476 -24)" + "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" "389965" + "plane" "(160 -2212 -32) (168 -2204 -32) (168 -2204 -24)" + "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" "389964" + "plane" "(160 -2476 -32) (160 -2212 -32) (160 -2212 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 800.002] 0.125" + "vaxis" "[0 0 1 94.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389963" + "plane" "(168 -2204 -32) (168 -2484 -32) (168 -2484 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 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" "8253644" + side + { + "id" "389974" + "plane" "(88 -2484 -24) (96 -2476 -24) (160 -2476 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 -192] 0.125" + "vaxis" "[0 1 0 65.002] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389973" + "plane" "(96 -2476 -32) (88 -2484 -32) (168 -2484 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389972" + "plane" "(88 -2484 -32) (88 -2484 -24) (168 -2484 -24)" + "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" "389971" + "plane" "(160 -2476 -32) (160 -2476 -24) (96 -2476 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 192] 0.125" + "vaxis" "[0 0 1 94.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389970" + "plane" "(96 -2476 -32) (96 -2476 -24) (88 -2484 -24)" + "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" "389969" + "plane" "(168 -2484 -32) (168 -2484 -24) (160 -2476 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 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" "8253645" + side + { + "id" "389980" + "plane" "(160 -2212 -30) (96 -2212 -30) (96 -2476 -30)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[0 1 0 64] 0.125" + "vaxis" "[1 0 0 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389979" + "plane" "(160 -2476 -24) (160 -2476 -30) (96 -2476 -30)" + "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" "389978" + "plane" "(96 -2212 -24) (96 -2212 -30) (160 -2212 -30)" + "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" "389977" + "plane" "(96 -2476 -24) (96 -2476 -30) (96 -2212 -30)" + "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" "389976" + "plane" "(160 -2212 -24) (160 -2212 -30) (160 -2476 -30)" + "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" "389975" + "plane" "(160 -2476 -24) (96 -2476 -24) (96 -2212 -24)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0 1 0 64] 0.125" + "vaxis" "[1 0 0 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "8253775" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "187 89 91 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "135.706 -2473 -58.0896" + editor + { + "color" "155 192 0" + "groupid" "8253774" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "8253780" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "136 -2479.75 -58.0896" + editor + { + "color" "155 192 0" + "groupid" "8253774" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "8253783" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "136 -2484.75 -58.0896" + editor + { + "color" "155 192 0" + "groupid" "8253774" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "8253814" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "187 89 91 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "155.706 -2473 -58.0896" + editor + { + "color" "155 192 0" + "groupid" "8253813" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "8253819" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "156 -2479.75 -58.0896" + editor + { + "color" "155 192 0" + "groupid" "8253813" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "8253822" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "156 -2484.75 -58.0896" + editor + { + "color" "155 192 0" + "groupid" "8253813" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "8253834" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "155 -2482 -77.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8253838" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "155 -2225 -77.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "8233608" + "classname" "func_detail" + solid + { + "id" "8233606" + side + { + "id" "389716" + "plane" "(496 -2679 -8) (504 -2679 -8) (504 -2687 -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" "389715" + "plane" "(496 -2687 -40) (504 -2687 -40) (504 -2679 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389714" + "plane" "(496 -2679 -8) (496 -2687 -8) (496 -2687 -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" "389713" + "plane" "(504 -2679 -40) (504 -2687 -40) (504 -2687 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389712" + "plane" "(504 -2679 -8) (496 -2679 -8) (496 -2679 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389711" + "plane" "(504 -2687 -40) (496 -2687 -40) (496 -2687 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "8233837" + "classname" "func_detail" + solid + { + "id" "8233621" + side + { + "id" "389854" + "plane" "(592 -2679 -8) (600 -2679 -8) (600 -2687 -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" "389853" + "plane" "(592 -2687 -40) (600 -2687 -40) (600 -2679 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389852" + "plane" "(592 -2679 -8) (592 -2687 -8) (592 -2687 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 -24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389851" + "plane" "(600 -2679 -40) (600 -2687 -40) (600 -2687 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389850" + "plane" "(600 -2679 -8) (592 -2679 -8) (592 -2679 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389849" + "plane" "(600 -2687 -40) (592 -2687 -40) (592 -2687 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233624" + side + { + "id" "389860" + "plane" "(592 -2590 -8) (600 -2590 -8) (600 -2598 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389859" + "plane" "(592 -2598 -40) (600 -2598 -40) (600 -2590 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389858" + "plane" "(592 -2590 -8) (592 -2598 -8) (592 -2598 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389857" + "plane" "(600 -2590 -40) (600 -2598 -40) (600 -2598 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389856" + "plane" "(600 -2590 -8) (592 -2590 -8) (592 -2590 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389855" + "plane" "(600 -2598 -40) (592 -2598 -40) (592 -2598 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233626" + side + { + "id" "389866" + "plane" "(592 -2504 -8) (600 -2504 -8) (600 -2512 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389865" + "plane" "(592 -2512 -40) (600 -2512 -40) (600 -2504 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389864" + "plane" "(592 -2504 -8) (592 -2512 -8) (592 -2512 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389863" + "plane" "(600 -2504 -40) (600 -2512 -40) (600 -2512 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389862" + "plane" "(600 -2504 -8) (592 -2504 -8) (592 -2504 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389861" + "plane" "(600 -2512 -40) (592 -2512 -40) (592 -2512 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233807" + side + { + "id" "389872" + "plane" "(592 -2416 -8) (600 -2416 -8) (600 -2424 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389871" + "plane" "(592 -2424 -40) (600 -2424 -40) (600 -2416 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389870" + "plane" "(592 -2416 -8) (592 -2424 -8) (592 -2424 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389869" + "plane" "(600 -2416 -40) (600 -2424 -40) (600 -2424 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389868" + "plane" "(600 -2416 -8) (592 -2416 -8) (592 -2416 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389867" + "plane" "(600 -2424 -40) (592 -2424 -40) (592 -2424 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233627" + side + { + "id" "389878" + "plane" "(496 -2504 -8) (504 -2504 -8) (504 -2512 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389877" + "plane" "(496 -2512 -40) (504 -2512 -40) (504 -2504 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389876" + "plane" "(496 -2504 -8) (496 -2512 -8) (496 -2512 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389875" + "plane" "(504 -2504 -40) (504 -2512 -40) (504 -2512 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389874" + "plane" "(504 -2504 -8) (496 -2504 -8) (496 -2504 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389873" + "plane" "(504 -2512 -40) (496 -2512 -40) (496 -2512 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233808" + side + { + "id" "389884" + "plane" "(496 -2416 -8) (504 -2416 -8) (504 -2424 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389883" + "plane" "(496 -2424 -40) (504 -2424 -40) (504 -2416 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389882" + "plane" "(496 -2416 -8) (496 -2424 -8) (496 -2424 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389881" + "plane" "(504 -2416 -40) (504 -2424 -40) (504 -2424 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389880" + "plane" "(504 -2416 -8) (496 -2416 -8) (496 -2416 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389879" + "plane" "(504 -2424 -40) (496 -2424 -40) (496 -2424 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233810" + side + { + "id" "389890" + "plane" "(592 -2278 -24) (600 -2278 -24) (600 -2286 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389889" + "plane" "(592 -2286 -40) (600 -2286 -40) (600 -2278 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389888" + "plane" "(592 -2278 -24) (592 -2286 -24) (592 -2286 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389887" + "plane" "(600 -2278 -40) (600 -2286 -40) (600 -2286 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389886" + "plane" "(600 -2278 -24) (592 -2278 -24) (592 -2278 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389885" + "plane" "(600 -2286 -40) (592 -2286 -40) (592 -2286 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233809" + side + { + "id" "389896" + "plane" "(496 -2278 -24) (504 -2278 -24) (504 -2286 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389895" + "plane" "(496 -2286 -40) (504 -2286 -40) (504 -2278 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389894" + "plane" "(496 -2278 -24) (496 -2286 -24) (496 -2286 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389893" + "plane" "(504 -2278 -40) (504 -2286 -40) (504 -2286 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389892" + "plane" "(504 -2278 -24) (496 -2278 -24) (496 -2278 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389891" + "plane" "(504 -2286 -40) (496 -2286 -40) (496 -2286 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233822" + side + { + "id" "389902" + "plane" "(496 -2182 -24) (504 -2182 -24) (504 -2190 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389901" + "plane" "(496 -2190 -40) (504 -2190 -40) (504 -2182 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389900" + "plane" "(496 -2182 -24) (496 -2190 -24) (496 -2190 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389899" + "plane" "(504 -2182 -40) (504 -2190 -40) (504 -2190 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389898" + "plane" "(504 -2182 -24) (496 -2182 -24) (496 -2182 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389897" + "plane" "(504 -2190 -40) (496 -2190 -40) (496 -2190 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233823" + side + { + "id" "389908" + "plane" "(592 -2182 -24) (600 -2182 -24) (600 -2190 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389907" + "plane" "(592 -2190 -40) (600 -2190 -40) (600 -2182 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389906" + "plane" "(592 -2182 -24) (592 -2190 -24) (592 -2190 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389905" + "plane" "(600 -2182 -40) (600 -2190 -40) (600 -2190 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389904" + "plane" "(600 -2182 -24) (592 -2182 -24) (592 -2182 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389903" + "plane" "(600 -2190 -40) (592 -2190 -40) (592 -2190 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233605" + side + { + "id" "389914" + "plane" "(600 -2190 -16) (600 -2182 -16) (776 -2182 -36.9999)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.992511 0 0.122157 555.686] 0.125" + "vaxis" "[0 1 0 -111] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389913" + "plane" "(776 -2182 -36.9999) (600 -2182 -16) (600 -2182 -24)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.992511 0 0.122155 -350.065] 0.125" + "vaxis" "[0.122155 0 0.992511 -5.31908] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389912" + "plane" "(600 -2190 -16) (776 -2190 -37) (776 -2190 -45)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.99295 -0.00370669 0.118476 821.164] 0.125" + "vaxis" "[0.118477 0 0.992957 -89.8172] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389911" + "plane" "(600 -2182 -16) (600 -2190 -16) (600 -2190 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389910" + "plane" "(776 -2190 -37) (776 -2182 -36.9999) (776 -2182 -45)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 -221.239] 0.125" + "vaxis" "[0 1 0 -111] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389909" + "plane" "(776 -2190 -45) (776 -2182 -45) (600 -2182 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "8233863" + "classname" "func_detail" + solid + { + "id" "8233625" + side + { + "id" "389920" + "plane" "(496 -2590 -8) (504 -2590 -8) (504 -2598 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389919" + "plane" "(496 -2598 -40) (504 -2598 -40) (504 -2590 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389918" + "plane" "(496 -2590 -8) (496 -2598 -8) (496 -2598 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 -1 0 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389917" + "plane" "(504 -2590 -40) (504 -2598 -40) (504 -2598 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[0 1 0 -48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389916" + "plane" "(504 -2590 -8) (496 -2590 -8) (496 -2590 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 704] 0.125" + "vaxis" "[-1 0 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389915" + "plane" "(504 -2598 -40) (496 -2598 -40) (496 -2598 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +entity +{ + "id" "8213205" + "classname" "func_detail" + solid + { + "id" "8213174" + side + { + "id" "389470" + "plane" "(504 -2679 0) (504 -2598 0) (592 -2598 0)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[1 0 0 -372.364] 0.171875" + "vaxis" "[0 1 0 37.9258] 0.158203" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389469" + "plane" "(592 -2598 -4) (592 -2679 -4) (592 -2679 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" "389468" + "plane" "(504 -2598 0) (504 -2679 0) (504 -2679 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389467" + "plane" "(504 -2679 -4) (504 -2679 0) (592 -2679 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" "389466" + "plane" "(504 -2598 -4) (504 -2679 -4) (592 -2679 -4)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[1 0 0 -372.364] 0.171875" + "vaxis" "[0 -1 0 -37.9258] 0.158203" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389465" + "plane" "(592 -2598 -4) (592 -2598 0) (504 -2598 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121958" + side + { + "id" "389476" + "plane" "(592 -2424 0) (600 -2416 0) (600 -2687 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 97] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389475" + "plane" "(600 -2416 -8) (592 -2424 -8) (592 -2679 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 97] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389474" + "plane" "(592 -2424 -8) (600 -2416 -8) (600 -2416 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -408] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389473" + "plane" "(600 -2416 -8) (600 -2687 -8) (600 -2687 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 695.996] 0.125" + "vaxis" "[0 0 -1 33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389472" + "plane" "(600 -2687 -8) (592 -2679 -8) (592 -2679 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -408] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389471" + "plane" "(592 -2679 -8) (592 -2424 -8) (592 -2424 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -375.998] 0.125" + "vaxis" "[0 0 -1 33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8213186" + side + { + "id" "389482" + "plane" "(504 -2598 0) (504 -2590 0) (592 -2590 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -236] 0.125" + "vaxis" "[0 1 0 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389481" + "plane" "(592 -2598 0) (592 -2590 0) (592 -2590 -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" "389480" + "plane" "(504 -2598 -8) (504 -2590 -8) (504 -2590 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" "389479" + "plane" "(592 -2598 -8) (592 -2590 -8) (504 -2590 -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" "389478" + "plane" "(504 -2598 -8) (504 -2598 0) (592 -2598 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -800] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389477" + "plane" "(592 -2590 -8) (592 -2590 0) (504 -2590 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -800] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121973" + side + { + "id" "389488" + "plane" "(504 -2679 0) (496 -2687 0) (496 -2416 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389487" + "plane" "(496 -2416 -8) (496 -2687 -8) (504 -2679 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389486" + "plane" "(496 -2687 -8) (496 -2416 -8) (496 -2416 0)" + "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" "389485" + "plane" "(504 -2679 -8) (496 -2687 -8) (496 -2687 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389484" + "plane" "(496 -2416 -8) (504 -2424 -8) (504 -2424 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389483" + "plane" "(504 -2424 -8) (504 -2679 -8) (504 -2679 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 951.996] 0.125" + "vaxis" "[0 0 -1 33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121987" + side + { + "id" "389494" + "plane" "(600 -2687 0) (496 -2687 0) (504 -2679 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -28] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389493" + "plane" "(496 -2687 -8) (600 -2687 -8) (592 -2679 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389492" + "plane" "(600 -2687 -8) (496 -2687 -8) (496 -2687 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389491" + "plane" "(592 -2679 -8) (600 -2687 -8) (600 -2687 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389490" + "plane" "(496 -2687 -8) (504 -2679 -8) (504 -2679 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389489" + "plane" "(504 -2679 -8) (592 -2679 -8) (592 -2679 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121965" + side + { + "id" "389500" + "plane" "(504 -2424 0) (496 -2416 0) (600 -2416 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 34] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389499" + "plane" "(600 -2416 -8) (496 -2416 -8) (504 -2424 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 34] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389498" + "plane" "(496 -2416 -8) (600 -2416 -8) (600 -2416 0)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 767] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389497" + "plane" "(504 -2424 -8) (496 -2416 -8) (496 -2416 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389496" + "plane" "(600 -2416 -8) (592 -2424 -8) (592 -2424 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -72] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389495" + "plane" "(592 -2424 -8) (504 -2424 -8) (504 -2424 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "8213274" + "classname" "func_detail" + solid + { + "id" "8213236" + side + { + "id" "389530" + "plane" "(504 -2590 0) (504 -2512 0) (592 -2512 0)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0 -1 0 -105.025] 0.152344" + "vaxis" "[-1 0 0 372.364] 0.171875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389529" + "plane" "(592 -2512 -4) (592 -2590 -4) (592 -2590 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" "389528" + "plane" "(504 -2590 -4) (504 -2512 -4) (504 -2512 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" "389527" + "plane" "(504 -2512 -4) (504 -2590 -4) (592 -2590 -4)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[1 0 0 -370.046] 0.172" + "vaxis" "[0 -1 0 -17.5684] 0.158" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389526" + "plane" "(504 -2590 -4) (504 -2590 0) (592 -2590 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" "389525" + "plane" "(592 -2512 -4) (592 -2512 0) (504 -2512 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8213249" + side + { + "id" "389536" + "plane" "(504 -2504 0) (504 -2424 0) (592 -2424 0)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0 -1 0 -153.6] 0.15625" + "vaxis" "[-1 0 0 372.364] 0.171875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389535" + "plane" "(592 -2504 0) (592 -2424 0) (592 -2424 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389534" + "plane" "(592 -2424 -4) (592 -2424 0) (504 -2424 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" "389533" + "plane" "(504 -2504 -4) (504 -2424 -4) (504 -2424 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" "389532" + "plane" "(592 -2504 -4) (592 -2424 -4) (504 -2424 -4)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[1 0 0 -370.046] 0.172" + "vaxis" "[0 -1 0 -490.936] 0.158" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389531" + "plane" "(504 -2504 -4) (504 -2504 0) (592 -2504 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8213248" + side + { + "id" "389542" + "plane" "(504 -2512 0) (504 -2504 0) (592 -2504 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -800] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389541" + "plane" "(592 -2512 0) (592 -2504 0) (592 -2504 -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" "389540" + "plane" "(504 -2512 -8) (504 -2504 -8) (504 -2504 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" "389539" + "plane" "(592 -2512 -8) (592 -2504 -8) (504 -2504 -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" "389538" + "plane" "(504 -2512 -8) (504 -2512 0) (592 -2512 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -800] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389537" + "plane" "(592 -2504 -8) (592 -2504 0) (504 -2504 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -800] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "8213403" + "classname" "func_detail" + solid + { + "id" "8213382" + side + { + "id" "389626" + "plane" "(600 -2278 -16) (600 -2190 -16) (648 -2190 -22.9999)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0.990436 0 -0.137973 -161.515] 0.0945948" + "vaxis" "[0 -1 0 -453.818] 0.171875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389625" + "plane" "(600 -2190 -16) (600 -2190 -18) (648 -2190 -24.6869)" + "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" "389624" + "plane" "(600 -2278 -18) (600 -2278 -16) (648 -2278 -23)" + "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" "389623" + "plane" "(600 -2190 -16) (600 -2278 -16) (600 -2278 -18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389622" + "plane" "(600 -2190 -18) (600 -2278 -18) (648 -2278 -24.6868)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[0 -1 0 -453.818] 0.171875" + "vaxis" "[-1 0 0 256] 0.09375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389621" + "plane" "(648 -2278 -23) (648 -2190 -22.9999) (648 -2190 -24.6869)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "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" "8213383" + side + { + "id" "389632" + "plane" "(648 -2190 -22.9999) (656 -2190 -23.5389) (656 -2278 -23.5391)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 976.002] 0.125" + "vaxis" "[0.990436 0 -0.137973 -7.50098] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389631" + "plane" "(648 -2190 -29) (656 -2190 -30.0001) (656 -2190 -23.5389)" + "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" "389630" + "plane" "(648 -2278 -23) (656 -2278 -23.5391) (656 -2278 -30)" + "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" "389629" + "plane" "(648 -2278 -28.9999) (656 -2278 -30) (656 -2190 -30.0001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -56] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389628" + "plane" "(656 -2190 -23.5389) (656 -2190 -30.0001) (656 -2278 -30)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389627" + "plane" "(648 -2278 -23) (648 -2278 -28.9999) (648 -2190 -29)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "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" "8213381" + side + { + "id" "389638" + "plane" "(704 -2278 -30) (656 -2278 -23.5385) (656 -2190 -23.5383)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0.990436 0 -0.137973 -246.855] 0.0945947" + "vaxis" "[0 -1 0 -453.818] 0.171875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389637" + "plane" "(704 -2190 -30) (656 -2190 -23.5387) (656 -2190 -25.8009)" + "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" "389636" + "plane" "(704 -2278 -32.4873) (656 -2278 -25.8009) (656 -2278 -23.5388)" + "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" "389635" + "plane" "(704 -2190 -32.4878) (656 -2190 -25.8013) (656 -2278 -25.801)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[0 -1 0 -453.818] 0.171875" + "vaxis" "[-1 0 0 341.333] 0.09375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389634" + "plane" "(704 -2278 -32.4883) (704 -2278 -30) (704 -2190 -30)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389633" + "plane" "(656 -2190 -25.7969) (656 -2190 -23.5391) (656 -2278 -23.5391)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "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" "8213316" + side + { + "id" "389644" + "plane" "(704 -2190 -30) (712 -2190 -31.6028) (712 -2278 -31.6027)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 976.002] 0.125" + "vaxis" "[0.990436 0 -0.137973 -76.0962] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389643" + "plane" "(712 -2190 -31.6028) (704 -2190 -30) (704 -2190 -38)" + "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" "389642" + "plane" "(704 -2278 -30) (712 -2278 -31.6027) (712 -2278 -37.9996)" + "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" "389641" + "plane" "(704 -2278 -37.9996) (712 -2278 -37.9996) (712 -2190 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -56] 0.25" + "vaxis" "[-1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389640" + "plane" "(704 -2278 -30) (704 -2278 -37.9996) (704 -2190 -38)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 976] 0.125" + "vaxis" "[0 0 -1 -80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389639" + "plane" "(712 -2190 -31.6028) (712 -2190 -38) (712 -2278 -37.9996)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 976] 0.125" + "vaxis" "[0 0 -1 -86.4109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8213351" + side + { + "id" "389650" + "plane" "(712 -2278 -31.6027) (712 -2190 -31.603) (773 -2190 -40)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0.990436 0 -0.137973 -502.114] 0.126207" + "vaxis" "[0 -1 0 -453.818] 0.171875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389649" + "plane" "(759 -2190 -40) (773 -2190 -40) (712 -2190 -31.603)" + "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" "389648" + "plane" "(712 -2278 -33.6028) (712 -2278 -31.6027) (773 -2278 -40)" + "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" "389647" + "plane" "(712 -2190 -33.6025) (712 -2278 -33.6028) (758.997 -2278 -40)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[0 -1 0 -453.818] 0.171875" + "vaxis" "[-1 0 0 76.2549] 0.0917969" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389646" + "plane" "(712 -2190 -31.603) (712 -2278 -31.6027) (712 -2278 -33.6028)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389645" + "plane" "(773 -2278 -40) (773 -2190 -40) (759 -2190 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233601" + side + { + "id" "389692" + "plane" "(600 -2286 -16) (600 -2278 -16) (776 -2278 -36.9999)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.992511 0 0.122157 555.686] 0.125" + "vaxis" "[0 1 0 17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389691" + "plane" "(776 -2278 -36.9999) (600 -2278 -16) (600 -2278 -24)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.992511 0 0.122155 -350.065] 0.125" + "vaxis" "[0.122155 0 0.992511 -5.31908] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389690" + "plane" "(600 -2286 -16) (776 -2286 -37) (776 -2286 -45)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.99295 -0.00370669 0.118476 818.317] 0.125" + "vaxis" "[0.118477 0 0.992957 -89.8172] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389689" + "plane" "(600 -2278 -16) (600 -2286 -16) (600 -2286 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389688" + "plane" "(776 -2286 -37) (776 -2278 -36.9999) (776 -2278 -45)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 -221.239] 0.125" + "vaxis" "[0 1 0 17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389687" + "plane" "(776 -2286 -45) (776 -2278 -45) (600 -2278 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 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" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12000]" + } +} +entity +{ + "id" "8213493" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "548 -2351 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke/asphalt_crack_03" + "sides" "372628 372796" + "StartU" "0" + "StartV" "1" + "uv0" "-106.5 -106.5 0" + "uv1" "-106.5 106.5 0" + "uv2" "106.5 106.5 0" + "uv3" "106.5 -106.5 0" + "origin" "548 -2351 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +hidden +{ + entity + { + "id" "8213520" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_32x32.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2895 63.5348" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 11500]" + } + } +} +hidden +{ + entity + { + "id" "8213552" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_32x32.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2944 63.5348" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 11500]" + } + } +} +hidden +{ + entity + { + "id" "8213651" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2556 -3571 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "8192747" + "classname" "func_detail" + solid + { + "id" "8192739" + side + { + "id" "389380" + "plane" "(1888 -2729 208) (1896 -2729 208) (1896 -2985 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" "389379" + "plane" "(1888 -2985 184) (1896 -2985 184) (1896 -2729 184)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -184] 0.125" + "vaxis" "[-1 0 0 383.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389378" + "plane" "(1888 -2729 208) (1888 -2985 208) (1888 -2985 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" "389377" + "plane" "(1896 -2729 184) (1896 -2985 184) (1896 -2985 208)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389376" + "plane" "(1896 -2729 208) (1888 -2729 208) (1888 -2729 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" "389375" + "plane" "(1896 -2985 184) (1888 -2985 184) (1888 -2985 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8192742" + side + { + "id" "389386" + "plane" "(1848 -2729 208) (1856 -2729 208) (1856 -2985 208)" + "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" "389385" + "plane" "(1848 -2985 184) (1856 -2985 184) (1856 -2729 184)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -184] 0.125" + "vaxis" "[-1 0 0 63.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389384" + "plane" "(1848 -2729 208) (1848 -2985 208) (1848 -2985 184)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389383" + "plane" "(1856 -2729 184) (1856 -2985 184) (1856 -2985 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" "389382" + "plane" "(1856 -2729 208) (1848 -2729 208) (1848 -2729 184)" + "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" "389381" + "plane" "(1856 -2985 184) (1848 -2985 184) (1848 -2985 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "8192768" + "classname" "func_detail" + solid + { + "id" "8192779" + side + { + "id" "389410" + "plane" "(1896 -2729 208) (1848 -2729 208) (1856 -2721 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" "389409" + "plane" "(1888 -2721 184) (1856 -2721 184) (1848 -2729 184)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -127.998] 0.125" + "vaxis" "[0 -1 0 -711.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389408" + "plane" "(1856 -2721 184) (1888 -2721 184) (1888 -2721 208)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389407" + "plane" "(1896 -2729 184) (1848 -2729 184) (1848 -2729 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" "389406" + "plane" "(1888 -2721 184) (1896 -2729 184) (1896 -2729 208)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-0.707107 0.707107 0 50.9526] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389405" + "plane" "(1848 -2729 184) (1856 -2721 184) (1856 -2721 208)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-0.707107 -0.707107 0 -413.172] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8192782" + side + { + "id" "389422" + "plane" "(1848 -2985 208) (1896 -2985 208) (1888 -2993 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 8.00195] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389421" + "plane" "(1856 -2993 184) (1888 -2993 184) (1896 -2985 184)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -383.996] 0.125" + "vaxis" "[0 1 0 968.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389420" + "plane" "(1888 -2993 184) (1856 -2993 184) (1856 -2993 208)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -383.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389419" + "plane" "(1848 -2985 184) (1896 -2985 184) (1896 -2985 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" "389418" + "plane" "(1856 -2993 184) (1848 -2985 184) (1848 -2985 208)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.707107 -0.707107 0 -203.57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389417" + "plane" "(1896 -2985 184) (1888 -2993 184) (1888 -2993 208)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.707107 0.707107 0 490.829] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "8192809" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "114 116 139" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1889 -2920 184" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8192878" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1895 -2820 166.619" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8192906" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1895 -2894 166.619" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8192960" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "220.82 -2960 72.019" + editor + { + "color" "100 125 0" + "groupid" "8192959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "8192964" + "classname" "prop_physics_multiplayer" + "angles" "0 270 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "261" + "origin" "220.41 -2963 72.019" + editor + { + "color" "100 125 0" + "groupid" "8192959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "8192968" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "79 80 96" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "240 -2961 150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8193098" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "126.82 -2960 72.019" + editor + { + "color" "100 125 0" + "groupid" "8193097" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "8193102" + "classname" "prop_physics_multiplayer" + "angles" "0 270 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "261" + "origin" "126.41 -2963 72.019" + editor + { + "color" "100 125 0" + "groupid" "8193097" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "8193106" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "79 80 96" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "146 -2961 150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8193159" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "24 -3390 60.3599" + editor + { + "color" "163 136 0" + "groupid" "8193158" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "8193163" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "28 -3390 36.3599" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "8193237" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "23.9998 -3344 58.4852" + editor + { + "color" "194 179 0" + "groupid" "8193236" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "8193241" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "23.9998 -3344 58.4852" + editor + { + "color" "194 179 0" + "groupid" "8193236" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "8193245" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "24.9998 -3344 95.3241" + editor + { + "color" "194 179 0" + "groupid" "8193236" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8193249" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "24.9998 -3344 127.324" + editor + { + "color" "194 179 0" + "groupid" "8193236" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "8193253" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "24.9998 -3344 159.324" + editor + { + "color" "194 179 0" + "groupid" "8193236" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "8193493" + "classname" "func_detail" + solid + { + "id" "2084453" + side + { + "id" "389434" + "plane" "(-88 -6624 240) (-88 -6312 240) (-49 -6312 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389433" + "plane" "(-88 -6312 4) (-88 -6624 4) (-49 -6624 4)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389432" + "plane" "(-88 -6624 4) (-88 -6312 4) (-88 -6312 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389431" + "plane" "(-49 -6312 4) (-49 -6624 4) (-49 -6624 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389430" + "plane" "(-88 -6312 4) (-49 -6312 4) (-49 -6312 240)" + "material" "TOOLS/TOOLSCLIP" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389429" + "plane" "(-49 -6624 4) (-88 -6624 4) (-88 -6624 240)" + "material" "TOOLS/TOOLSCLIP" + "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 + { + "color" "0 180 0" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +hidden +{ + entity + { + "id" "8172952" + "classname" "prop_static" + "angles" "-8.47278 287.709 60.1417" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2734 -2755 233" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "8172996" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2670.21 -2780.08 350.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "8173004" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2729 -2755 350.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "8173016" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2695 -2753 350.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "8173031" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "spaceman1" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "2670 -2779.23 351" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "8173065" + "classname" "keyframe_rope" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "MoveSpeed" "64" + "NextKey" "spaceman1" + "RopeMaterial" "cable/cable.vmt" + "Slack" "3" + "spawnflags" "0" + "Subdiv" "2" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "2671 -2775 262" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "8173097" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "spaceman2" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "2695 -2752 351" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "8173106" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "MoveSpeed" "64" + "NextKey" "spaceman2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "3" + "spawnflags" "0" + "Subdiv" "2" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "2695 -2751 262" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "8173118" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "spaceman3" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "2729 -2755 351" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "8173130" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "MoveSpeed" "64" + "NextKey" "spaceman3" + "RopeMaterial" "cable/cable.vmt" + "Slack" "3" + "spawnflags" "0" + "Subdiv" "2" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "2707 -2763 262" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "8133728" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8133726" + side + { + "id" "389278" + "plane" "(2608 -3888 96) (2624 -3888 96) (2624 -4016 96)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389277" + "plane" "(2608 -4016 -16) (2624 -4016 -16) (2624 -3888 -16)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389276" + "plane" "(2608 -3888 96) (2608 -4016 96) (2608 -4016 -16)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389275" + "plane" "(2624 -3888 -16) (2624 -4016 -16) (2624 -4016 96)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389274" + "plane" "(2624 -3888 96) (2608 -3888 96) (2608 -3888 -16)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389273" + "plane" "(2624 -4016 -16) (2608 -4016 -16) (2608 -4016 96)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "8133744" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "3552530" + side + { + "id" "389296" + "plane" "(2240 -3792 296) (2240 -3776 296) (2497 -3776 296)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389295" + "plane" "(2240 -3776 202) (2240 -3792 202) (2497 -3792 202)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389294" + "plane" "(2240 -3792 202) (2240 -3776 202) (2240 -3776 296)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389293" + "plane" "(2497 -3776 202) (2497 -3792 202) (2497 -3792 296)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389292" + "plane" "(2240 -3776 202) (2497 -3776 202) (2497 -3776 296)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389291" + "plane" "(2497 -3792 202) (2240 -3792 202) (2240 -3792 296)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "8133753" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8133751" + side + { + "id" "389308" + "plane" "(2112 -3584 128) (2128 -3584 128) (2128 -3712 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389307" + "plane" "(2112 -3712 0) (2128 -3712 0) (2128 -3584 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389306" + "plane" "(2112 -3584 128) (2112 -3712 128) (2112 -3712 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389305" + "plane" "(2128 -3584 0) (2128 -3712 0) (2128 -3712 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389304" + "plane" "(2128 -3584 128) (2112 -3584 128) (2112 -3584 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389303" + "plane" "(2128 -3712 0) (2112 -3712 0) (2112 -3712 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "8133760" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8133758" + side + { + "id" "389320" + "plane" "(2112 -3596 272) (2128 -3596 272) (2128 -3700 272)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389319" + "plane" "(2112 -3700 128) (2128 -3700 128) (2128 -3596 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389318" + "plane" "(2112 -3596 272) (2112 -3700 272) (2112 -3700 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389317" + "plane" "(2128 -3596 128) (2128 -3700 128) (2128 -3700 272)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389316" + "plane" "(2128 -3596 272) (2112 -3596 272) (2112 -3596 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389315" + "plane" "(2128 -3700 128) (2112 -3700 128) (2112 -3700 272)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "8133767" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8133765" + side + { + "id" "389332" + "plane" "(1520 -2928 128) (1536 -2928 128) (1536 -3056 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389331" + "plane" "(1520 -3056 16) (1536 -3056 16) (1536 -2928 16)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389330" + "plane" "(1520 -2928 128) (1520 -3056 128) (1520 -3056 16)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389329" + "plane" "(1536 -2928 16) (1536 -3056 16) (1536 -3056 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389328" + "plane" "(1536 -2928 128) (1520 -2928 128) (1520 -2928 16)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389327" + "plane" "(1536 -3056 16) (1520 -3056 16) (1520 -3056 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "8133775" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8133773" + side + { + "id" "389344" + "plane" "(1520 -2896 352) (1536 -2896 352) (1536 -3136 352)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389343" + "plane" "(1520 -3136 208) (1536 -3136 208) (1536 -2896 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389342" + "plane" "(1520 -2896 352) (1520 -3136 352) (1520 -3136 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389341" + "plane" "(1536 -2896 208) (1536 -3136 208) (1536 -3136 352)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389340" + "plane" "(1536 -2896 352) (1520 -2896 352) (1520 -2896 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389339" + "plane" "(1536 -3136 208) (1520 -3136 208) (1520 -3136 352)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "8114091" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8114089" + side + { + "id" "389212" + "plane" "(1184 -5124 128) (1200 -5124 128) (1200 -5372 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389211" + "plane" "(1184 -5372 0) (1200 -5372 0) (1200 -5124 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389210" + "plane" "(1184 -5124 128) (1184 -5372 128) (1184 -5372 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389209" + "plane" "(1200 -5124 0) (1200 -5372 0) (1200 -5372 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389208" + "plane" "(1200 -5124 128) (1184 -5124 128) (1184 -5124 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389207" + "plane" "(1200 -5372 0) (1184 -5372 0) (1184 -5372 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "8114098" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8114096" + side + { + "id" "389224" + "plane" "(1024 -4352 112) (1040 -4352 112) (1040 -4480 112)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389223" + "plane" "(1024 -4480 0) (1040 -4480 0) (1040 -4352 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389222" + "plane" "(1024 -4352 112) (1024 -4480 112) (1024 -4480 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389221" + "plane" "(1040 -4352 0) (1040 -4480 0) (1040 -4480 112)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389220" + "plane" "(1040 -4352 112) (1024 -4352 112) (1024 -4352 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389219" + "plane" "(1040 -4480 0) (1024 -4480 0) (1024 -4480 112)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "8114105" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8114103" + side + { + "id" "389236" + "plane" "(1731 -4202 128) (1987 -4202 128) (1987 -4214 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389235" + "plane" "(1731 -4214 0) (1987 -4214 0) (1987 -4202 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389234" + "plane" "(1731 -4202 128) (1731 -4214 128) (1731 -4214 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389233" + "plane" "(1987 -4202 0) (1987 -4214 0) (1987 -4214 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389232" + "plane" "(1987 -4202 128) (1731 -4202 128) (1731 -4202 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389231" + "plane" "(1987 -4214 0) (1731 -4214 0) (1731 -4214 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "8114111" + "classname" "func_detail" + solid + { + "id" "4663041" + side + { + "id" "389242" + "plane" "(1981 -4198 46) (1981 -4198 50) (1979 -4200 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 808.633] 0.125" + "vaxis" "[0 0 -1 480.572] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389241" + "plane" "(1987 -4200 44) (1987 -4200 52) (1985 -4198 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 809] 0.125" + "vaxis" "[0 0 -1 481] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389240" + "plane" "(1985 -4198 46) (1985 -4198 50) (1981 -4198 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389239" + "plane" "(1979 -4200 44) (1979 -4200 52) (1987 -4200 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389238" + "plane" "(1987 -4200 44) (1985 -4198 46) (1981 -4198 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -216] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -503.516] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389237" + "plane" "(1985 -4198 50) (1987 -4200 52) (1979 -4200 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -216] 0.125" + "vaxis" "[0 0.707107 -0.707107 480.572] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "8114117" + "classname" "func_detail" + solid + { + "id" "7439036" + side + { + "id" "389248" + "plane" "(1729 -4198 46) (1731 -4200 44) (1731 -4200 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 809] 0.125" + "vaxis" "[0 0 -1 481] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389247" + "plane" "(1729 -4198 46) (1729 -4198 50) (1722 -4198 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -136] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389246" + "plane" "(1731 -4200 44) (1720 -4200 44) (1720 -4200 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389245" + "plane" "(1731 -4200 44) (1729 -4198 46) (1722 -4198 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -136] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -503.516] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389244" + "plane" "(1729 -4198 50) (1731 -4200 52) (1720 -4200 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -136] 0.125" + "vaxis" "[0 0.707107 -0.707107 440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389243" + "plane" "(1720 -4200 44) (1722 -4198 46) (1722 -4198 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "8114123" + "classname" "func_detail" + solid + { + "id" "7439035" + side + { + "id" "389254" + "plane" "(1613 -4200 52) (1613 -4200 44) (1613 -4198 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 808.633] 0.125" + "vaxis" "[0 0 -1 480.572] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389253" + "plane" "(1613 -4198 50) (1613 -4198 46) (1673 -4198 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -568] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389252" + "plane" "(1675 -4200 44) (1613 -4200 44) (1613 -4200 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389251" + "plane" "(1613 -4198 46) (1613 -4200 44) (1675 -4200 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -568] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -503.516] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389250" + "plane" "(1613 -4200 52) (1613 -4198 50) (1673 -4198 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -432] 0.125" + "vaxis" "[0 0.707107 -0.707107 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389249" + "plane" "(1673 -4198 50) (1673 -4198 46) (1675 -4200 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "8114129" + "classname" "func_detail" + solid + { + "id" "6737438" + side + { + "id" "389260" + "plane" "(2224 -4288 112) (2232 -4288 112) (2320 -4704 112)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.182929 0.951234 0.248375 425.483] 0.125" + "vaxis" "[0.982006 0.188847 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389259" + "plane" "(2320 -4704 109) (2320 -4704 112) (2232 -4288 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" "389258" + "plane" "(2232 -4288 109) (2232 -4288 112) (2224 -4288 112)" + "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" "389257" + "plane" "(2312 -4704 109) (2312 -4704 112) (2320 -4704 112)" + "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" "389256" + "plane" "(2224 -4288 109) (2224 -4288 112) (2312 -4704 112)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.443351 0.896145 0.0190739 302.582] 0.125" + "vaxis" "[0.00845775 -0.0170959 1 51.8701] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389255" + "plane" "(2312 -4704 109) (2320 -4704 109) (2232 -4288 109)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-0.182929 0.951234 0.248375 425.483] 0.125" + "vaxis" "[0.982006 0.188847 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "8114141" + "classname" "func_detail" + solid + { + "id" "6737439" + side + { + "id" "389266" + "plane" "(2312 -4704 48) (2320 -4704 48) (2232 -4288 48)" + "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" "389265" + "plane" "(2232 -4288 48) (2320 -4704 48) (2320 -4704 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389264" + "plane" "(2224 -4288 48) (2232 -4288 48) (2232 -4288 109)" + "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" "389263" + "plane" "(2320 -4704 48) (2312 -4704 48) (2312 -4704 109)" + "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" "389262" + "plane" "(2312 -4704 48) (2224 -4288 48) (2224 -4288 109)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-0.309945 0.950755 0 -16.8389] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389261" + "plane" "(2224 -4288 109) (2232 -4288 109) (2320 -4704 109)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "8094335" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8094333" + side + { + "id" "389104" + "plane" "(-2952 -2908 416) (-2848 -2908 416) (-2848 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389103" + "plane" "(-2952 -2912 128) (-2848 -2912 128) (-2848 -2908 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389102" + "plane" "(-2952 -2908 416) (-2952 -2912 416) (-2952 -2912 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389101" + "plane" "(-2848 -2908 128) (-2848 -2912 128) (-2848 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389100" + "plane" "(-2848 -2908 416) (-2952 -2908 416) (-2952 -2908 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389099" + "plane" "(-2848 -2912 128) (-2952 -2912 128) (-2952 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "8094344" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8094342" + side + { + "id" "389116" + "plane" "(-1851 -2908 416) (-1747 -2908 416) (-1747 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389115" + "plane" "(-1851 -2912 128) (-1747 -2912 128) (-1747 -2908 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389114" + "plane" "(-1851 -2908 416) (-1851 -2912 416) (-1851 -2912 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389113" + "plane" "(-1747 -2908 128) (-1747 -2912 128) (-1747 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389112" + "plane" "(-1747 -2908 416) (-1851 -2908 416) (-1851 -2908 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389111" + "plane" "(-1747 -2912 128) (-1851 -2912 128) (-1851 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "8094353" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8094351" + side + { + "id" "389128" + "plane" "(-1256 -2908 416) (-1152 -2908 416) (-1152 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389127" + "plane" "(-1256 -2912 208) (-1152 -2912 208) (-1152 -2908 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389126" + "plane" "(-1256 -2908 416) (-1256 -2912 416) (-1256 -2912 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389125" + "plane" "(-1152 -2908 208) (-1152 -2912 208) (-1152 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389124" + "plane" "(-1152 -2908 416) (-1256 -2908 416) (-1256 -2908 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389123" + "plane" "(-1152 -2912 208) (-1256 -2912 208) (-1256 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "8094368" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8094366" + side + { + "id" "389140" + "plane" "(-768 -2908 416) (-376 -2908 416) (-376 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389139" + "plane" "(-768 -2912 208) (-376 -2912 208) (-376 -2908 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389138" + "plane" "(-768 -2908 416) (-768 -2912 416) (-768 -2912 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389137" + "plane" "(-376 -2908 208) (-376 -2912 208) (-376 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389136" + "plane" "(-376 -2908 416) (-768 -2908 416) (-768 -2908 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389135" + "plane" "(-376 -2912 208) (-768 -2912 208) (-768 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "8094387" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8094385" + side + { + "id" "389152" + "plane" "(160 -2908 416) (264 -2908 416) (264 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389151" + "plane" "(160 -2912 208) (264 -2912 208) (264 -2908 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389150" + "plane" "(160 -2908 416) (160 -2912 416) (160 -2912 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389149" + "plane" "(264 -2908 208) (264 -2912 208) (264 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389148" + "plane" "(264 -2908 416) (160 -2908 416) (160 -2908 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389147" + "plane" "(264 -2912 208) (160 -2912 208) (160 -2912 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "8094409" + "classname" "func_areaportalwindow" + "FadeDist" "3000" + "FadeStartDist" "1500" + "PortalVersion" "1" + "TranslucencyLimit" "0.2" + solid + { + "id" "8094407" + side + { + "id" "389164" + "plane" "(396 -2434 416) (400 -2434 416) (400 -2682 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389163" + "plane" "(396 -2682 208) (400 -2682 208) (400 -2434 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389162" + "plane" "(396 -2434 416) (396 -2682 416) (396 -2682 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389161" + "plane" "(400 -2434 208) (400 -2682 208) (400 -2682 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389160" + "plane" "(400 -2434 416) (396 -2434 416) (396 -2434 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389159" + "plane" "(400 -2682 208) (396 -2682 208) (396 -2682 416)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 128 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 128 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "8094422" + "classname" "func_areaportalwindow" + "FadeDist" "3000" + "FadeStartDist" "1500" + "PortalVersion" "1" + "TranslucencyLimit" "0.2" + solid + { + "id" "8094420" + side + { + "id" "389176" + "plane" "(636 -1955 400) (640 -1955 400) (640 -2059 400)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389175" + "plane" "(636 -2059 208) (640 -2059 208) (640 -1955 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389174" + "plane" "(636 -1955 400) (636 -2059 400) (636 -2059 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389173" + "plane" "(640 -1955 208) (640 -2059 208) (640 -2059 400)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389172" + "plane" "(640 -1955 400) (636 -1955 400) (636 -1955 208)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389171" + "plane" "(640 -2059 208) (636 -2059 208) (636 -2059 400)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 128 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 128 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "8094433" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8094431" + side + { + "id" "389188" + "plane" "(480 -2434 128) (496 -2434 128) (496 -2682 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389187" + "plane" "(480 -2682 0) (496 -2682 0) (496 -2434 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389186" + "plane" "(480 -2434 128) (480 -2682 128) (480 -2682 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389185" + "plane" "(496 -2434 0) (496 -2682 0) (496 -2682 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389184" + "plane" "(496 -2434 128) (480 -2434 128) (480 -2434 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389183" + "plane" "(496 -2682 0) (480 -2682 0) (480 -2682 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "8094440" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "8094438" + side + { + "id" "389200" + "plane" "(-904 -3168 128) (-656 -3168 128) (-656 -3184 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389199" + "plane" "(-904 -3184 0) (-656 -3184 0) (-656 -3168 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389198" + "plane" "(-904 -3168 128) (-904 -3184 128) (-904 -3184 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389197" + "plane" "(-656 -3168 0) (-656 -3184 0) (-656 -3184 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389196" + "plane" "(-656 -3168 128) (-904 -3168 128) (-904 -3168 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389195" + "plane" "(-656 -3184 0) (-904 -3184 0) (-904 -3184 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +hidden +{ + entity + { + "id" "8074689" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8778.09 8745 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8074693" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8779 8724.56 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "8074697" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8777.13 8711.71 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +entity +{ + "id" "8074715" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "796 -2888 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/dust_manhole_concrete_color" + "sides" "337100" + "StartU" "0" + "StartV" "1" + "uv0" "-46.1082 -34.156 0" + "uv1" "-46.1082 34.156 0" + "uv2" "46.1082 34.156 0" + "uv3" "46.1082 -34.156 0" + "origin" "796 -2888 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "8074745" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -0 1" + "BasisOrigin" "-901.5 -4246.5 32" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/dust_manhole_concrete_color" + "sides" "376401" + "StartU" "0" + "StartV" "1" + "uv0" "-19.5 -17.5001 0" + "uv1" "-19.5 17.5001 0" + "uv2" "19.5 17.5001 0" + "uv3" "19.5 -17.5001 0" + "origin" "-901.5 -4246.5 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "8055098" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8748 8826 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +entity +{ + "id" "8035491" + "classname" "func_detail" + solid + { + "id" "8035479" + side + { + "id" "389080" + "plane" "(-1200 -1984 -24) (-2194 -1984 -24) (-2194 -2000 -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" + } + side + { + "id" "389079" + "plane" "(-2194 -1984 -24) (-1200 -1984 -24) (-1200 -1984 -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" "389078" + "plane" "(-1200 -2000 -24) (-2194 -2000 -24) (-2194 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389077" + "plane" "(-1200 -2000 -16) (-2194 -2000 -16) (-2194 -1984 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -179] 0.125" + "vaxis" "[0 -1 0 -63.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389076" + "plane" "(-1200 -1984 -16) (-1200 -1984 -24) (-1200 -2000 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -179] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389075" + "plane" "(-2194 -2000 -16) (-2194 -2000 -24) (-2194 -1984 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "8015821" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-48 -2968 127.308" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "8015840" + "classname" "prop_static" + "angles" "0 258.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1519 -9438 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "8015844" + "classname" "prop_static" + "angles" "0 258.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2497 -9438 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "8015870" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-1205 -1461 -24" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "369654" + "StartU" "0" + "StartV" "1" + "uv0" "-32.0002 -32 0" + "uv1" "-32.0002 32 0" + "uv2" "32.0002 32 0" + "uv3" "32.0002 -32 0" + "origin" "-1205 -1461 -24" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "8015882" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1518 -9436 -32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "370481" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1518 -9436 -32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "8015894" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "2497 -9437 -32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "370481" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "2497 -9437 -32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "7995637" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "384 -3024 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995690" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "384 -3151 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995698" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "384 -3295 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995718" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "824 -3392 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995722" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "680 -3392 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995726" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "553 -3392 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995814" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-56 -3255 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995818" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-56 -3128 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995822" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-56 -2984 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995850" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-79 -3656 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995854" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-79 -3512 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7995858" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-79 -3783 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7995940" + "classname" "func_detail" + solid + { + "id" "7995941" + side + { + "id" "389032" + "plane" "(2362 -4699 216) (2472 -4699 216) (2472 -4704 216)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[-1 0 0 242.04] 0.214844" + "vaxis" "[0 1 0 367.684] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389031" + "plane" "(2472 -4699 106) (2362 -4699 106) (2362 -4704 106)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[-1 0 0 242.04] 0.214844" + "vaxis" "[0 -1 0 -367.684] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389030" + "plane" "(2472 -4704 106) (2362 -4704 106) (2362 -4704 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389029" + "plane" "(2362 -4699 106) (2472 -4699 106) (2472 -4699 216)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[-1 0 0 242.038] 0.214844" + "vaxis" "[0 0 -1 -18.6191] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389028" + "plane" "(2362 -4704 106) (2362 -4699 106) (2362 -4699 216)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[0 -1 0 -367.668] 0.214844" + "vaxis" "[0 0 -1 -18.6191] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389027" + "plane" "(2472 -4699 106) (2472 -4704 106) (2472 -4704 216)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[0 1 0 367.699] 0.214844" + "vaxis" "[0 0 -1 -18.6191] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +hidden +{ + entity + { + "id" "7995956" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2417 -4704 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7996039" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1681 -5504 168.385" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7996047" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1741 -5504 168.385" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7996052" + "classname" "func_detail" + solid + { + "id" "7858134" + side + { + "id" "389038" + "plane" "(1580 -5504 156.497) (1580 -5502 156.497) (1782 -5502 156.497)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON3" + "uaxis" "[-1 0 0 841.499] 0.197266" + "vaxis" "[0 1 0 483.55] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389037" + "plane" "(1782 -5504 48.4973) (1782 -5502 48.4973) (1580 -5502 48.4973)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON1" + "uaxis" "[-1 0 0 -643.284] 0.152344" + "vaxis" "[0 -1 0 -483.557] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389036" + "plane" "(1580 -5504 156.497) (1782 -5504 156.497) (1782 -5504 48.4973)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 13.9891] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389035" + "plane" "(1580 -5502 48.4973) (1782 -5502 48.4973) (1782 -5502 156.497)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON3" + "uaxis" "[-1 0 0 841.499] 0.197266" + "vaxis" "[0 0 -1 229.913] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389034" + "plane" "(1580 -5502 156.497) (1580 -5504 156.497) (1580 -5504 48.4973)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON1" + "uaxis" "[0 -1 0 -275.687] 0.152344" + "vaxis" "[0 0 -1 229.913] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389033" + "plane" "(1782 -5502 48.4973) (1782 -5504 48.4973) (1782 -5504 156.497)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON1" + "uaxis" "[0 1 0 275.695] 0.152344" + "vaxis" "[0 0 -1 229.913] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "7996057" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1619 -5504 168.385" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7996077" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1232 -4909 145.166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7996109" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1232 -4829 145.166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7996137" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1208 -4272 147.843" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7996141" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/wall_light.mdl" + "renderamt" "255" + "rendercolor" "0 0 0" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1288 -4272 147.843" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975509" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-317 -4078 -163" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975548" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-139 -3654 -167.512" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975552" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_128.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-23 -3652 -166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975605" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_64.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-151 -3652 -166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975609" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-200 -3654 -167.512" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975643" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_32.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-215 -3652 -166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975658" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-248 -3654 -167.512" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975662" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_8.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-247 -3652 -166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975685" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-257 -3654 -166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975689" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_128.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-257 -3784 -166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975767" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_8.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-257 -3792 -166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975790" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-258 -3768 -167.512" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7975869" + "classname" "prop_static" + "angles" "0 109 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-279 -3774 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 14500]" + } + } +} +hidden +{ + entity + { + "id" "7976133" + "classname" "prop_static" + "angles" "0 109 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1497.92 -4929.72 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 14500]" + } + } +} +hidden +{ + entity + { + "id" "7976137" + "classname" "prop_static" + "angles" "0 109 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1511.87 -3811.68 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 14500]" + } + } +} +hidden +{ + entity + { + "id" "7976141" + "classname" "prop_static" + "angles" "0 109 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-270.654 -4946.78 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 14500]" + } + } +} +hidden +{ + entity + { + "id" "7955918" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -3934 0.848446" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7955926" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2003 -3934 0.848446" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7955930" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1731 -3493 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/inferno_drain_decal" + "sides" "337010" + "StartU" "0" + "StartV" "1" + "uv0" "-11.1557 -12.9518 0" + "uv1" "-11.1557 12.9518 0" + "uv2" "11.1557 12.9518 0" + "uv3" "11.1557 -12.9518 0" + "origin" "1731 -3493 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7955960" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1699 -3493 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/inferno_drain_decal" + "sides" "337010" + "StartU" "0" + "StartV" "1" + "uv0" "-11.1557 -12.9518 0" + "uv1" "-11.1557 12.9518 0" + "uv2" "11.1557 12.9518 0" + "uv3" "11.1557 -12.9518 0" + "origin" "1699 -3493 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7955978" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "2003 -4166 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/inferno_drain_decal" + "sides" "339343" + "StartU" "0" + "StartV" "1" + "uv0" "-7.20062 -7.23242 0" + "uv1" "-7.20062 7.23242 0" + "uv2" "7.20062 7.23242 0" + "uv3" "7.20062 -7.23242 0" + "origin" "2003 -4166 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7955996" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1985 -4166 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/inferno_drain_decal" + "sides" "339343" + "StartU" "0" + "StartV" "1" + "uv0" "-7.20062 -7.23242 0" + "uv1" "-7.20062 7.23242 0" + "uv2" "7.20062 7.23242 0" + "uv3" "7.20062 -7.23242 0" + "origin" "1985 -4166 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7956002" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "893 -3211.03 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/inferno_drain_decal" + "sides" "278685" + "StartU" "0" + "StartV" "1" + "uv0" "-10.4288 -9.96569 0" + "uv1" "-10.4288 9.96569 0" + "uv2" "10.4288 9.96569 0" + "uv3" "10.4288 -9.96569 0" + "origin" "893 -3211.03 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "7956026" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "923 -3212 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/inferno_drain_decal" + "sides" "278685" + "StartU" "0" + "StartV" "1" + "uv0" "-10.4288 -9.96569 0" + "uv1" "-10.4288 9.96569 0" + "uv2" "10.4288 9.96569 0" + "uv3" "10.4288 -9.96569 0" + "origin" "923 -3212 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "7956032" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "379 -3408 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/inferno_drain_decal" + "sides" "381920 278679" + "StartU" "0" + "StartV" "1" + "uv0" "-6.98186 -7.20483 0" + "uv1" "-6.98186 7.20483 0" + "uv2" "6.98186 7.20483 0" + "uv3" "6.98186 -7.20483 0" + "origin" "379 -3408 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "7956062" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "379 -3389 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/inferno_drain_decal" + "sides" "381920 278679" + "StartU" "0" + "StartV" "1" + "uv0" "-6.98186 -7.20483 0" + "uv1" "-6.98186 7.20483 0" + "uv2" "6.98186 7.20483 0" + "uv3" "6.98186 -7.20483 0" + "origin" "379 -3389 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "7917050" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1857.35 -4876.83 247.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "7917058" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1840 -4877 247.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "7917078" + "classname" "prop_static" + "angles" "0 34 160" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lunar_orbiter.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-973.445 -4140.25 -74" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +hidden +{ + entity + { + "id" "7917082" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-981.445 -4137.25 -78.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "7917086" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-964.094 -4137.08 -78.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "7897377" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0.14267 0.98977" + "BasisOrigin" "-593 -3495 10.5195" + "BasisU" "1 0 0" + "BasisV" "0 0.98977 -0.14267" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/burn01a" + "sides" "388874" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-593 -3495 10.5195" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "7897389" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0.14267 0.98977" + "BasisOrigin" "-762 -3496 10.5195" + "BasisU" "1 0 0" + "BasisV" "0 0.98977 -0.14267" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/burn01a" + "sides" "388874" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-762 -3496 10.5195" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "7897587" + "classname" "info_overlay" + "BasisNormal" "0.242536 0 0.970142" + "BasisOrigin" "-529.689 -4865.86 20.4223" + "BasisU" "0.970142 0 -0.242536" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_9" + "sides" "388936 376556 376568" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -128 0" + "uv1" "-64 128 0" + "uv2" "64 128 0" + "uv3" "64 -128 0" + "origin" "-529.689 -4865.86 20.4223" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "7897611" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "-710.689 -4837.11 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain009a" + "sides" "376544 376533" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "-710.689 -4837.11 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +hidden +{ + entity + { + "id" "7897637" + "classname" "prop_static" + "angles" "0 3 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1657 -3459 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7897641" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/direction_sign.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1650 -3462 1.09844" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "7877788" + "classname" "func_detail" + solid + { + "id" "7877789" + side + { + "id" "388748" + "plane" "(910 -2646 -16) (902 -2646 -16) (902 -2438 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 430] 0.125" + "vaxis" "[1 0 0 305] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388747" + "plane" "(902 -2646 -23) (902 -2438 -23) (902 -2438 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 102] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388746" + "plane" "(902 -2438 -23) (902 -2646 -23) (910 -2646 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388745" + "plane" "(910 -2646 -23) (902 -2646 -23) (902 -2646 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388744" + "plane" "(910 -2438 -16) (902 -2438 -16) (902 -2438 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388743" + "plane" "(910 -2438 -23) (910 -2646 -23) (910 -2646 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 694] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7877790" + side + { + "id" "388754" + "plane" "(974 -2646 -16) (974 -2654 -16) (902 -2654 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 238] 0.125" + "vaxis" "[1 0 0 305] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388753" + "plane" "(974 -2646 -23) (974 -2654 -23) (974 -2654 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 238] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388752" + "plane" "(902 -2646 -16) (902 -2654 -16) (902 -2654 -23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 934] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388751" + "plane" "(902 -2654 -23) (902 -2654 -16) (974 -2654 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 -594] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388750" + "plane" "(902 -2646 -23) (902 -2654 -23) (974 -2654 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 56] 0.25" + "vaxis" "[1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388749" + "plane" "(974 -2646 -23) (974 -2646 -16) (902 -2646 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 -594] 0.125" + "vaxis" "[0 0 -1 480.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7877791" + side + { + "id" "388760" + "plane" "(974 -2438 -16) (974 -2646 -16) (966 -2646 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 430] 0.125" + "vaxis" "[1 0 0 305] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388759" + "plane" "(974 -2438 -23) (974 -2646 -23) (974 -2646 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 182] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388758" + "plane" "(966 -2646 -23) (974 -2646 -23) (974 -2438 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388757" + "plane" "(966 -2646 -16) (974 -2646 -16) (974 -2646 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388756" + "plane" "(966 -2438 -23) (974 -2438 -23) (974 -2438 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388755" + "plane" "(966 -2646 -23) (966 -2438 -23) (966 -2438 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 614] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7877792" + side + { + "id" "388766" + "plane" "(974 -2430 -16) (974 -2438 -16) (902 -2438 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 430] 0.125" + "vaxis" "[1 0 0 305] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388765" + "plane" "(974 -2438 -16) (974 -2430 -16) (974 -2430 -23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 182] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388764" + "plane" "(902 -2438 -23) (902 -2430 -23) (902 -2430 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 102] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388763" + "plane" "(974 -2430 -23) (974 -2430 -16) (902 -2430 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 -594] 0.125" + "vaxis" "[0 0 -1 425] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388762" + "plane" "(902 -2430 -23) (902 -2438 -23) (974 -2438 -23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388761" + "plane" "(902 -2438 -23) (902 -2438 -16) (974 -2438 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 -594] 0.125" + "vaxis" "[0 0 -1 -79.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7877793" + side + { + "id" "388772" + "plane" "(904 -2432 -40) (904 -2652 -40) (972 -2652 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388771" + "plane" "(972 -2432 -23) (972 -2432 -40) (972 -2652 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 223] 0.125" + "vaxis" "[0 0 -1 -312] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388770" + "plane" "(904 -2652 -23) (904 -2652 -40) (904 -2432 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 223] 0.125" + "vaxis" "[0 0 -1 -312] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388769" + "plane" "(972 -2652 -23) (972 -2652 -40) (904 -2652 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -801] 0.125" + "vaxis" "[0 0 -1 -312] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388768" + "plane" "(904 -2432 -23) (904 -2432 -40) (972 -2432 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -801] 0.125" + "vaxis" "[0 0 -1 -312] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388767" + "plane" "(972 -2432 -23) (972 -2652 -23) (904 -2652 -23)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 396] 0.25" + "vaxis" "[1 0 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 105 0" + "groupid" "7877786" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "7877794" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "973 -2546 -38.1516" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7877798" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "972 -2487 -38.1516" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7877802" + "classname" "prop_static" + "angles" "0 93 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "904 -2544 -38.1516" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7877806" + "classname" "prop_static" + "angles" "0 93 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "904 -2494 -38.1516" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7857488" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1312 -5248 7.62939e-06" + "BasisU" "1.31134e-07 -1 0" + "BasisV" "1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "388568" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1312 -5248 7.62939e-06" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "7858065" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1329 -5247.05 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/wallstain01a" + "sides" "388568" + "StartU" "0" + "StartV" "1" + "uv0" "-74.5 -74.9496 0" + "uv1" "-74.5 74.9496 0" + "uv2" "74.5 74.9496 0" + "uv3" "74.5 -74.9496 0" + "origin" "1329 -5247.05 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +entity +{ + "id" "7858103" + "classname" "func_detail" + solid + { + "id" "7858101" + side + { + "id" "388586" + "plane" "(1144 -4272 137) (1352 -4272 137) (1352 -4274 137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388585" + "plane" "(1144 -4274 29) (1352 -4274 29) (1352 -4272 29)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[1 0 0 -512] 0.203125" + "vaxis" "[0 1 0 293.924] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388584" + "plane" "(1144 -4272 137) (1144 -4274 137) (1144 -4274 29)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[0 -1 0 -561.229] 0.203125" + "vaxis" "[0 0 -1 137.481] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388583" + "plane" "(1352 -4272 29) (1352 -4274 29) (1352 -4274 137)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[0 1 0 561.229] 0.203125" + "vaxis" "[0 0 -1 137.481] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388582" + "plane" "(1352 -4272 137) (1144 -4272 137) (1144 -4272 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388581" + "plane" "(1352 -4274 29) (1144 -4274 29) (1144 -4274 137)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[1 0 0 -512] 0.203125" + "vaxis" "[0 0 -1 137.482] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7858126" + "classname" "func_detail" + solid + { + "id" "7858113" + side + { + "id" "388604" + "plane" "(1232 -4792 137) (1234 -4792 137) (1234 -4948 137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388603" + "plane" "(1232 -4948 29) (1234 -4948 29) (1234 -4792 29)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON1" + "uaxis" "[0 1 0 735.179] 0.152344" + "vaxis" "[-1 0 0 218.074] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388602" + "plane" "(1232 -4792 137) (1232 -4948 137) (1232 -4948 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388601" + "plane" "(1234 -4792 29) (1234 -4948 29) (1234 -4948 137)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON1" + "uaxis" "[0 1 0 735.18] 0.152344" + "vaxis" "[0 0 -1 137.482] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388600" + "plane" "(1234 -4792 137) (1232 -4792 137) (1232 -4792 29)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON1" + "uaxis" "[-1 0 0 -91.8926] 0.152344" + "vaxis" "[0 0 -1 137.481] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388599" + "plane" "(1234 -4948 29) (1232 -4948 29) (1232 -4948 137)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON1" + "uaxis" "[1 0 0 -932.098] 0.152344" + "vaxis" "[0 0 -1 137.481] 0.210938" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +hidden +{ + entity + { + "id" "7837812" + "classname" "prop_static" + "angles" "0 359.5 90.5" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/exhibits/moon3.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1510 -5246 228" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7837855" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_256.mdl" + "renderamt" "255" + "rendercolor" "187 187 187" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1510 -5375 227.721" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7818356" + "classname" "func_detail" + solid + { + "id" "7818346" + side + { + "id" "388460" + "plane" "(-568 -3808 -96) (-448 -3808 -96) (-448 -3809 -96)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[1 0 0 750.933] 0.117188" + "vaxis" "[0 -1 0 -426.664] 0.152344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388459" + "plane" "(-568 -3809 -174) (-448 -3809 -174) (-448 -3808 -174)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[1 0 0 750.933] 0.117188" + "vaxis" "[0 1 0 426.664] 0.152344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388458" + "plane" "(-568 -3808 -96) (-568 -3809 -96) (-568 -3809 -174)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[0 -1 0 -759.461] 0.117188" + "vaxis" "[0 0 -1 -118.154] 0.152344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388457" + "plane" "(-448 -3808 -174) (-448 -3809 -174) (-448 -3809 -96)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[0 1 0 759.463] 0.117188" + "vaxis" "[0 0 -1 -118.154] 0.152344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388456" + "plane" "(-448 -3808 -96) (-568 -3808 -96) (-568 -3808 -174)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388455" + "plane" "(-448 -3809 -174) (-568 -3809 -174) (-568 -3809 -96)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON2" + "uaxis" "[1 0 0 750.933] 0.117188" + "vaxis" "[0 0 -1 -118.154] 0.152344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "7818375" + "classname" "func_detail" + solid + { + "id" "7818361" + side + { + "id" "388472" + "plane" "(-776 -3288 -75) (-775 -3288 -75) (-775 -3506 -75)" + "material" "CS_APOLLO/DECALS/LIFTOFF" + "uaxis" "[0 1 0 84.5507] 0.212891" + "vaxis" "[1 0 0 125.276] 0.183594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388471" + "plane" "(-776 -3506 -169) (-775 -3506 -169) (-775 -3288 -169)" + "material" "CS_APOLLO/DECALS/LIFTOFF" + "uaxis" "[0 1 0 84.5507] 0.212891" + "vaxis" "[-1 0 0 -125.276] 0.183594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388470" + "plane" "(-776 -3288 -75) (-776 -3506 -75) (-776 -3506 -169)" + "material" "CS_APOLLO/DECALS/HISTORY_03" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388469" + "plane" "(-775 -3288 -169) (-775 -3506 -169) (-775 -3506 -75)" + "material" "CS_APOLLO/DECALS/LIFTOFF" + "uaxis" "[0 1 0 84.5508] 0.212891" + "vaxis" "[0 0 -1 -408.511] 0.183594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388468" + "plane" "(-775 -3288 -75) (-776 -3288 -75) (-776 -3288 -169)" + "material" "CS_APOLLO/DECALS/LIFTOFF" + "uaxis" "[-1 0 0 -568.365] 0.212891" + "vaxis" "[0 0 -1 -408.51] 0.183594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388467" + "plane" "(-775 -3506 -169) (-776 -3506 -169) (-776 -3506 -75)" + "material" "CS_APOLLO/DECALS/LIFTOFF" + "uaxis" "[1 0 0 -455.632] 0.212891" + "vaxis" "[0 0 -1 -408.51] 0.183594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "7798927" + "classname" "func_detail" + solid + { + "id" "7798806" + side + { + "id" "388397" + "plane" "(-920 -5112 -400) (-920 -5100 -400) (-816 -5100 -400)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388396" + "plane" "(-920 -5100 -408) (-920 -5100 -400) (-920 -5112 -400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388395" + "plane" "(-816 -5100 -408) (-816 -5112 -400) (-816 -5100 -400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388394" + "plane" "(-920 -5100 -408) (-816 -5100 -408) (-816 -5100 -400)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388393" + "plane" "(-816 -5100 -408) (-920 -5100 -408) (-920 -5112 -400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7798805" + side + { + "id" "388402" + "plane" "(-920 -5100 -408) (-920 -5088 -408) (-816 -5088 -408)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388401" + "plane" "(-920 -5088 -416) (-920 -5088 -408) (-920 -5100 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388400" + "plane" "(-816 -5088 -416) (-816 -5100 -408) (-816 -5088 -408)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388399" + "plane" "(-920 -5088 -416) (-816 -5088 -416) (-816 -5088 -408)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388398" + "plane" "(-816 -5088 -416) (-920 -5088 -416) (-920 -5100 -408)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7798804" + side + { + "id" "388407" + "plane" "(-920 -5088 -416) (-920 -5076 -416) (-816 -5076 -416)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388406" + "plane" "(-920 -5076 -424) (-920 -5076 -416) (-920 -5088 -416)" + "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" "388405" + "plane" "(-816 -5076 -424) (-816 -5088 -416) (-816 -5076 -416)" + "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" "388404" + "plane" "(-920 -5076 -424) (-816 -5076 -424) (-816 -5076 -416)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388403" + "plane" "(-816 -5076 -424) (-920 -5076 -424) (-920 -5088 -416)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7798803" + side + { + "id" "388412" + "plane" "(-920 -5076 -424) (-920 -5064 -424) (-816 -5064 -424)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388411" + "plane" "(-920 -5064 -432) (-920 -5064 -424) (-920 -5076 -424)" + "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" "388410" + "plane" "(-816 -5064 -432) (-816 -5076 -424) (-816 -5064 -424)" + "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" "388409" + "plane" "(-920 -5064 -432) (-816 -5064 -432) (-816 -5064 -424)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388408" + "plane" "(-816 -5064 -432) (-920 -5064 -432) (-920 -5076 -424)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7798802" + side + { + "id" "388417" + "plane" "(-920 -5064 -432) (-920 -5052 -432) (-816 -5052 -432)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388416" + "plane" "(-920 -5052 -440) (-920 -5052 -432) (-920 -5064 -432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388415" + "plane" "(-816 -5052 -440) (-816 -5064 -432) (-816 -5052 -432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388414" + "plane" "(-920 -5052 -440) (-816 -5052 -440) (-816 -5052 -432)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388413" + "plane" "(-816 -5052 -440) (-920 -5052 -440) (-920 -5064 -432)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7798801" + side + { + "id" "388422" + "plane" "(-920 -5052 -440) (-920 -5040 -440) (-816 -5040 -440)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388421" + "plane" "(-920 -5040 -448) (-920 -5040 -440) (-920 -5052 -440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388420" + "plane" "(-816 -5040 -448) (-816 -5052 -440) (-816 -5040 -440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388419" + "plane" "(-920 -5040 -448) (-816 -5040 -448) (-816 -5040 -440)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388418" + "plane" "(-816 -5040 -448) (-920 -5040 -448) (-920 -5052 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7798800" + side + { + "id" "388427" + "plane" "(-920 -5040 -448) (-920 -5028 -448) (-816 -5028 -448)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388426" + "plane" "(-920 -5028 -456) (-920 -5028 -448) (-920 -5040 -448)" + "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" "388425" + "plane" "(-816 -5028 -456) (-816 -5040 -448) (-816 -5028 -448)" + "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" "388424" + "plane" "(-920 -5028 -456) (-816 -5028 -456) (-816 -5028 -448)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388423" + "plane" "(-816 -5028 -456) (-920 -5028 -456) (-920 -5040 -448)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7798799" + side + { + "id" "388432" + "plane" "(-920 -5028 -456) (-920 -5016 -456) (-816 -5016 -456)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388431" + "plane" "(-920 -5016 -464) (-920 -5016 -456) (-920 -5028 -456)" + "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" "388430" + "plane" "(-816 -5016 -464) (-816 -5028 -456) (-816 -5016 -456)" + "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" "388429" + "plane" "(-920 -5016 -464) (-816 -5016 -464) (-816 -5016 -456)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388428" + "plane" "(-816 -5016 -464) (-920 -5016 -464) (-920 -5028 -456)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7798798" + side + { + "id" "388437" + "plane" "(-920 -5016 -464) (-920 -5004 -464) (-816 -5004 -464)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388436" + "plane" "(-920 -5004 -472) (-920 -5004 -464) (-920 -5016 -464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388435" + "plane" "(-816 -5004 -472) (-816 -5016 -464) (-816 -5004 -464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388434" + "plane" "(-920 -5004 -472) (-816 -5004 -472) (-816 -5004 -464)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388433" + "plane" "(-816 -5004 -472) (-920 -5004 -472) (-920 -5016 -464)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7798797" + side + { + "id" "388442" + "plane" "(-920 -5004 -472) (-920 -4992 -472) (-816 -4992 -472)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388441" + "plane" "(-920 -4992 -480) (-920 -4992 -472) (-920 -5004 -472)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388440" + "plane" "(-816 -4992 -480) (-816 -5004 -472) (-816 -4992 -472)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388439" + "plane" "(-920 -4992 -480) (-816 -4992 -480) (-816 -4992 -472)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388438" + "plane" "(-816 -4992 -480) (-920 -4992 -480) (-920 -5004 -472)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +hidden +{ + entity + { + "id" "7778612" + "classname" "prop_static" + "angles" "0 90 -4" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_128.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1500.68 -3061 -163.396" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7778620" + "classname" "prop_static" + "angles" "0 270 4" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1371 -3059 -154.328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7778624" + "classname" "prop_static" + "angles" "4 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1566.52 -3059 -168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7778655" + "classname" "prop_static" + "angles" "0 90 -4" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_64.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1564.53 -3061 -167.86" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7778822" + "classname" "prop_static" + "angles" "0 270 4.5" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1422 -3060 -158" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7778904" + "classname" "func_detail" + solid + { + "id" "7778896" + side + { + "id" "388147" + "plane" "(-860 -3232 -85) (-864 -3232 -85) (-864 -3219 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[-1 0 0 12.8003] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388146" + "plane" "(-860 -3219 -85) (-864 -3219 -85) (-864 -3219 -214)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -198.168] 0.125" + "vaxis" "[-1 0 0 82.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388145" + "plane" "(-864 -3232 -214) (-864 -3232 -85) (-860 -3232 -85)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40.8003] 0.25" + "vaxis" "[0 0 -1 -54.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388144" + "plane" "(-864 -3219 -214) (-864 -3219 -85) (-864 -3232 -85)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -198.168] 0.125" + "vaxis" "[0 -1 0 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388143" + "plane" "(-860 -3219 -214) (-864 -3219 -214) (-864 -3232 -214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 12.8003] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388142" + "plane" "(-860 -3232 -214) (-860 -3232 -85) (-860 -3219 -85)" + "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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "7778939" + "classname" "func_detail" + solid + { + "id" "7778915" + side + { + "id" "388189" + "plane" "(-1000 -3219 -84) (-1000 -3219 -86) (-860 -3219 -86)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 903.729] 0.125" + "vaxis" "[0 0 -1 162.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388188" + "plane" "(-860 -3232 -86) (-1000 -3232 -86) (-1000 -3232 -84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 -53.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388187" + "plane" "(-860 -3219 -86) (-1000 -3219 -86) (-1000 -3232 -86)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 903.73] 0.125" + "vaxis" "[0 -1 0 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388186" + "plane" "(-1000 -3232 -84) (-1000 -3232 -86) (-1000 -3219 -86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -53.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388185" + "plane" "(-860 -3219 -84) (-860 -3219 -86) (-860 -3232 -86)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388184" + "plane" "(-860 -3232 -84) (-1000 -3232 -84) (-1000 -3219 -84)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7778925" + side + { + "id" "388195" + "plane" "(-1000 -3219 -86) (-1000 -3219 -84) (-1633 -3219 -84)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 904] 0.125" + "vaxis" "[0 0 -1 163] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388194" + "plane" "(-1633 -3232 -86) (-1633 -3232 -84) (-1000 -3232 -84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 -53.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388193" + "plane" "(-1633 -3219 -86) (-1633 -3219 -84) (-1633 -3232 -84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -53.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388192" + "plane" "(-1000 -3232 -86) (-1000 -3232 -84) (-1000 -3219 -84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -53.8566] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388191" + "plane" "(-1000 -3219 -86) (-1633 -3219 -86) (-1633 -3232 -86)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 903.73] 0.125" + "vaxis" "[0 -1 0 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388190" + "plane" "(-1000 -3232 -84) (-1633 -3232 -84) (-1633 -3219 -84)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "7778947" + "classname" "func_detail" + solid + { + "id" "7501016" + side + { + "id" "388201" + "plane" "(-1520 -3224 -85.0005) (-1633 -3224 -85.0005) (-1633 -3223 -85.0005)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388200" + "plane" "(-1520 -3223 -212.999) (-1633 -3223 -212.999) (-1633 -3224 -212.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388199" + "plane" "(-1633 -3224 -213) (-1633 -3223 -213) (-1633 -3223 -85)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -302.16] 0.125" + "vaxis" "[0 -1 0 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388198" + "plane" "(-1633 -3223 -213) (-1520 -3223 -213) (-1520 -3223 -85.0001)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388197" + "plane" "(-1520 -3224 -213) (-1633 -3224 -213) (-1633 -3224 -85.0002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388196" + "plane" "(-1520 -3223 -213) (-1520 -3224 -213) (-1520 -3224 -85.0002)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -585.844] 0.125" + "vaxis" "[0 -1 0 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +hidden +{ + entity + { + "id" "7778974" + "classname" "prop_static" + "angles" "0 3 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-72 -4863 -3.8147e-06" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7778998" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-24 -4824 -3.8147e-06" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7779014" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-128 -4820 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7779034" + "classname" "prop_static" + "angles" "0 3 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "120 -5202 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7779038" + "classname" "prop_static" + "angles" "0 3 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "70 -5202 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7779058" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "577 -5487 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7779070" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "578 -5328 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7779082" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "577 -5394 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7779120" + "classname" "func_detail" + solid + { + "id" "7779135" + side + { + "id" "388237" + "plane" "(1232 -5008 -0.499787) (1232 -5112 -0.499787) (1248 -5093 -0.499787)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388236" + "plane" "(1232 -5112 -0.499884) (1232 -5008 -0.499884) (1232 -5008 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388235" + "plane" "(1248 -5027 -0.499903) (1248 -5093 -0.499903) (1248 -5093 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388234" + "plane" "(1232 -5008 -0.499902) (1248 -5027 -0.499902) (1248 -5027 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388233" + "plane" "(1248 -5093 -0.499899) (1232 -5112 -0.499899) (1232 -5112 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388232" + "plane" "(1232 -5112 160) (1232 -5008 160) (1248 -5027 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7779153" + side + { + "id" "388249" + "plane" "(1232 -5008 160) (1232 -5008 192) (1232 -5112 192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388248" + "plane" "(1248 -5093 160) (1248 -5093 192) (1248 -5027 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388247" + "plane" "(1248 -5027 160) (1248 -5027 192) (1232 -5008 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388246" + "plane" "(1232 -5112 160) (1232 -5112 192) (1248 -5093 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388245" + "plane" "(1232 -5008 160) (1232 -5112 160) (1248 -5093 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" "388244" + "plane" "(1232 -5112 192) (1232 -5008 192) (1248 -5027 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7779152" + side + { + "id" "388243" + "plane" "(1232 -5112 248) (1232 -5008 248) (1248 -5027 248)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388242" + "plane" "(1232 -5008 192) (1232 -5008 248) (1232 -5112 248)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388241" + "plane" "(1248 -5093 192) (1248 -5093 248) (1248 -5027 248)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[0 1 0 -14] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388240" + "plane" "(1248 -5027 192) (1248 -5027 248) (1232 -5008 248)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 -14] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388239" + "plane" "(1232 -5112 192) (1232 -5112 248) (1248 -5093 248)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 -14] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388238" + "plane" "(1232 -5008 192) (1232 -5112 192) (1248 -5093 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "7779168" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1248.5 -5060 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7779169" + side + { + "id" "388267" + "plane" "(1248 -5093 6) (1248 -5027 6) (1249 -5027 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -1] 0.125" + "vaxis" "[1 0 0 55] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388266" + "plane" "(1248 -5027 0) (1248 -5093 0) (1249 -5093 0)" + "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" "388265" + "plane" "(1248 -5093 0) (1248 -5027 0) (1248 -5027 6)" + "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" "388264" + "plane" "(1249 -5027 0) (1249 -5093 0) (1249 -5093 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -1] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388263" + "plane" "(1248 -5027 0) (1249 -5027 0) (1249 -5027 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388262" + "plane" "(1249 -5093 0) (1248 -5093 0) (1248 -5093 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "7779189" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1240.5 -5102.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7779183" + side + { + "id" "388279" + "plane" "(1249 -5093 6) (1233 -5112 6) (1232 -5112 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.644136 0.764911 0 -143.655] 0.125" + "vaxis" "[0.764911 -0.644136 0 -32.6602] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388278" + "plane" "(1233 -5112 0) (1249 -5093 0) (1248 -5093 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" "388277" + "plane" "(1232 -5112 6) (1232 -5112 0) (1248 -5093 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" "388276" + "plane" "(1233 -5112 0) (1233 -5112 6) (1249 -5093 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.644136 0.764911 0 -143.662] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388275" + "plane" "(1248 -5093 6) (1248 -5093 0) (1249 -5093 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" "388274" + "plane" "(1232 -5112 0) (1232 -5112 6) (1233 -5112 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "7779201" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1240.5 -5017.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7779196" + side + { + "id" "388291" + "plane" "(1233 -5008 6) (1249 -5027 6) (1248 -5027 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-0.644136 0.764911 0 -203.125] 0.125" + "vaxis" "[0.764911 0.644136 0 20.5703] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388290" + "plane" "(1249 -5027 0) (1233 -5008 0) (1232 -5008 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" "388289" + "plane" "(1248 -5027 6) (1248 -5027 0) (1232 -5008 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" "388288" + "plane" "(1249 -5027 0) (1249 -5027 6) (1233 -5008 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-0.644136 0.764911 0 -203.128] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388287" + "plane" "(1232 -5008 6) (1232 -5008 0) (1233 -5008 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" "388286" + "plane" "(1248 -5027 0) (1248 -5027 6) (1249 -5027 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10500]" + } +} +hidden +{ + entity + { + "id" "7779232" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_industrial_props/nuke_industrial_electrical_panel_002_small.mdl" + "renderamt" "255" + "rendercolor" "175 175 180" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1248 -5046 89.796" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "7779256" + "classname" "prop_static" + "angles" "0 302 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_industrial_props/nuke_industrial_electrical_panel_002_small.mdl" + "renderamt" "255" + "rendercolor" "175 175 180" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1511 -4242 84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "7779328" + "classname" "prop_static" + "angles" "0 308 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2314.41 -4040.98 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "7779332" + "classname" "prop_static" + "angles" "0 48.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2385 -6002 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "7779348" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_ac_unit/dust_ac_unit_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "368 -4693 406.352" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "7779368" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_ac_unit/dust_ac_unit_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "368 -4693 359" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "7759203" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-1146 -3114.48 -200" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "7759209" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-1576.69 -3139.28 -221.285" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "7759212" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "146 -3162.82 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "7759218" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-360 -3630.54 -224" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "7759224" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-344 -3968 -224" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "7739489" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_32x64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-364 -3712 -40.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +entity +{ + "id" "7739493" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 247 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 180 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "-364 -3712 -43.839" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7739498" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-364 -3712 -113.839" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7739503" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "4" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".5" + "spawnflags" "0" + "origin" "-364 -3712 -43.839" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7739743" + "classname" "func_detail" + solid + { + "id" "7739738" + side + { + "id" "388117" + "plane" "(-332 -3696 -32) (-256 -3696 -32) (-256 -3728 -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" "388116" + "plane" "(-332 -3728 -48) (-256 -3728 -48) (-256 -3696 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388115" + "plane" "(-256 -3696 -48) (-256 -3728 -48) (-256 -3728 -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" "388114" + "plane" "(-332 -3696 -48) (-256 -3696 -48) (-256 -3696 -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" "388113" + "plane" "(-256 -3728 -48) (-332 -3728 -48) (-332 -3728 -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" "388112" + "plane" "(-332 -3728 -48) (-332 -3696 -48) (-332 -3696 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7739737" + side + { + "id" "388123" + "plane" "(-488 -3728 -32) (-488 -3696 -32) (-396 -3696 -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" "388122" + "plane" "(-488 -3696 -48) (-488 -3728 -48) (-396 -3728 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388121" + "plane" "(-488 -3728 -48) (-488 -3696 -48) (-488 -3696 -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" "388120" + "plane" "(-488 -3696 -48) (-396 -3696 -48) (-396 -3696 -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" "388119" + "plane" "(-396 -3728 -48) (-488 -3728 -48) (-488 -3728 -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" "388118" + "plane" "(-396 -3696 -48) (-396 -3728 -48) (-396 -3728 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "7700482" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/rollup_door_001/rollup_door_001_frame_176x192x8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1556 -4002 -480.444" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "7700508" + "classname" "func_detail" + solid + { + "id" "7700486" + side + { + "id" "388010" + "plane" "(-1568 -4089 -290) (-1568 -4089 -483) (-1568 -3915 -483)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388009" + "plane" "(-1552 -3915 -290) (-1552 -3915 -483) (-1552 -4089 -483)" + "material" "METAL/HR_METAL/ROLLUP_DOOR_001" + "uaxis" "[0 1 0 -48.002] 0.125" + "vaxis" "[0 0 -1 168] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "388008" + "plane" "(-1568 -3915 -483) (-1568 -4089 -483) (-1552 -4089 -483)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388007" + "plane" "(-1552 -4089 -290) (-1552 -4089 -483) (-1568 -4089 -483)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388006" + "plane" "(-1568 -3915 -290) (-1568 -3915 -483) (-1552 -3915 -483)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "388005" + "plane" "(-1552 -3915 -290) (-1552 -4089 -290) (-1568 -4089 -290)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "7700523" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-440 -3448 -165" + editor + { + "color" "163 136 0" + "groupid" "7700522" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7700527" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-440 -3452 -189" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7700559" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1560 -4149 -413" + editor + { + "color" "163 136 0" + "groupid" "7700558" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7700563" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1556 -4149 -437" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "7700633" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-823.032 -3055 7.99999" + editor + { + "color" "252 149 0" + "groupid" "7700631" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7700637" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-920.032 -2173 -16" + editor + { + "color" "252 149 0" + "groupid" "7700635" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680630" + "classname" "info_deathmatch_spawn" + "angles" "0 90 0" + "enabled" "1" + "origin" "1493 -5456.03 8" + editor + { + "color" "252 149 0" + "groupid" "7680643" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680661" + "classname" "info_deathmatch_spawn" + "angles" "0 90 0" + "enabled" "1" + "origin" "1008 -6531.03 8.00001" + editor + { + "color" "252 149 0" + "groupid" "7680660" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680665" + "classname" "info_deathmatch_spawn" + "angles" "0 90 0" + "enabled" "1" + "origin" "95 -6525.03 7" + editor + { + "color" "252 149 0" + "groupid" "7680664" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680677" + "classname" "info_deathmatch_spawn" + "angles" "0 90 0" + "enabled" "1" + "origin" "-203 -6120.03 40" + editor + { + "color" "252 149 0" + "groupid" "7680676" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680681" + "classname" "info_deathmatch_spawn" + "angles" "0 90 0" + "enabled" "1" + "origin" "-406 -4266.03 -216" + editor + { + "color" "252 149 0" + "groupid" "7680680" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680701" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "176.032 -4315 -88" + editor + { + "color" "252 149 0" + "groupid" "7680700" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680713" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-376.032 -3573 -216" + editor + { + "color" "252 149 0" + "groupid" "7680712" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680729" + "classname" "info_deathmatch_spawn" + "angles" "0 90 0" + "enabled" "1" + "origin" "-683 -3696.03 -216" + editor + { + "color" "252 149 0" + "groupid" "7680728" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680737" + "classname" "info_deathmatch_spawn" + "angles" "0 90 0" + "enabled" "1" + "origin" "-1227 -3144.03 -192" + editor + { + "color" "252 149 0" + "groupid" "7680736" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680765" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "-703.968 -3059 -192" + editor + { + "color" "252 149 0" + "groupid" "7680764" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680777" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-1304.03 -2213 -16" + editor + { + "color" "252 149 0" + "groupid" "7680776" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680801" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "-752.032 -2356 -16" + editor + { + "color" "252 149 0" + "groupid" "7680800" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680813" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "-351.968 -2827 8.00001" + editor + { + "color" "252 149 0" + "groupid" "7680812" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680829" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "376.032 -2059 -16" + editor + { + "color" "252 149 0" + "groupid" "7680828" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680841" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "1248.03 -3331 24" + editor + { + "color" "252 149 0" + "groupid" "7680840" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680853" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "1032.03 -3035 -32" + editor + { + "color" "252 149 0" + "groupid" "7680852" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680861" + "classname" "info_deathmatch_spawn" + "angles" "0 270 0" + "enabled" "1" + "origin" "723 -2311.97 -32" + editor + { + "color" "252 149 0" + "groupid" "7680860" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680873" + "classname" "info_deathmatch_spawn" + "angles" "0 270 0" + "enabled" "1" + "origin" "1115 -1855.97 -8" + editor + { + "color" "252 149 0" + "groupid" "7680872" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680885" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "1456.03 -2267 -32" + editor + { + "color" "252 149 0" + "groupid" "7680884" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680893" + "classname" "info_deathmatch_spawn" + "angles" "0 270 0" + "enabled" "1" + "origin" "1435 -2927.97 24" + editor + { + "color" "252 149 0" + "groupid" "7680892" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680909" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "1407.97 -3316 24" + editor + { + "color" "252 149 0" + "groupid" "7680908" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680925" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "1983.97 -2869 24" + editor + { + "color" "252 149 0" + "groupid" "7680924" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680941" + "classname" "info_deathmatch_spawn" + "angles" "0 270 0" + "enabled" "1" + "origin" "2347 -2847.97 24" + editor + { + "color" "252 149 0" + "groupid" "7680940" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680953" + "classname" "info_deathmatch_spawn" + "angles" "0 270 0" + "enabled" "1" + "origin" "1611 -3527.97 8.00001" + editor + { + "color" "252 149 0" + "groupid" "7680952" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680969" + "classname" "info_deathmatch_spawn" + "angles" "0 90 0" + "enabled" "1" + "origin" "1581 -4104.03 8.00001" + editor + { + "color" "252 149 0" + "groupid" "7680968" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7680989" + "classname" "info_deathmatch_spawn" + "angles" "0 270 0" + "enabled" "1" + "origin" "2115 -4319.97 56" + editor + { + "color" "252 149 0" + "groupid" "7680988" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681005" + "classname" "info_deathmatch_spawn" + "angles" "0 270 0" + "enabled" "1" + "origin" "1795 -4623.97 8" + editor + { + "color" "252 149 0" + "groupid" "7681004" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681017" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "2120.03 -5387 56" + editor + { + "color" "252 149 0" + "groupid" "7681016" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681025" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "-71.9685 -3547 -216" + editor + { + "color" "252 149 0" + "groupid" "7681024" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681033" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "71.9683 -3141 8" + editor + { + "color" "252 149 0" + "groupid" "7681032" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681045" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "351.968 -2957 8.00001" + editor + { + "color" "252 149 0" + "groupid" "7681044" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681057" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "623.968 -2781 -32" + editor + { + "color" "252 149 0" + "groupid" "7681056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681073" + "classname" "info_deathmatch_spawn" + "angles" "0 0 0" + "enabled" "1" + "origin" "415.969 -3357 8.00002" + editor + { + "color" "252 149 0" + "groupid" "7681072" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681085" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "177.032 -2563 -16" + editor + { + "color" "252 149 0" + "groupid" "7681084" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681097" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "-127.968 -2147 -16" + editor + { + "color" "252 149 0" + "groupid" "7681096" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7681109" + "classname" "info_deathmatch_spawn" + "angles" "0 180 0" + "enabled" "1" + "origin" "1800.03 -2851 24" + editor + { + "color" "252 149 0" + "groupid" "7681108" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7641986" + "classname" "func_detail" + solid + { + "id" "7478289" + side + { + "id" "387493" + "plane" "(152 -3577 -96) (152 -3569 -96) (302 -3569 -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" "387492" + "plane" "(152 -3569 -216) (152 -3569 -96) (152 -3577 -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" "387491" + "plane" "(302 -3577 -216) (302 -3577 -96) (302 -3569 -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" "387490" + "plane" "(302 -3569 -216) (302 -3569 -96) (152 -3569 -96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387489" + "plane" "(152 -3577 -216) (152 -3577 -96) (302 -3577 -96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387488" + "plane" "(152 -3569 -216) (152 -3577 -216) (302 -3577 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7641974" + side + { + "id" "387500" + "plane" "(86.375 -3569 -96) (152 -3569 -96) (152 -3577 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387499" + "plane" "(152 -3577 -216) (152 -3577 -96) (152 -3569 -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" "387498" + "plane" "(152 -3569 -216) (152 -3569 -96) (86.375 -3569 -96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387497" + "plane" "(-19 -3577 -173.074) (86.375 -3577 -96) (152 -3577 -96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -40] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387496" + "plane" "(-19 -3569 -173.074) (86.375 -3569 -96) (86.375 -3577 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387495" + "plane" "(-19 -3577 -216) (152 -3577 -216) (152 -3569 -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" "387494" + "plane" "(-19 -3569 -216) (-19 -3569 -173.078) (-19 -3577 -173.074)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478290" + side + { + "id" "387506" + "plane" "(-19 -3569 -224) (-19 -3577 -224) (152 -3577 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387505" + "plane" "(-19 -3577 -216) (-19 -3577 -224) (-19 -3569 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 216] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387504" + "plane" "(152 -3569 -216) (152 -3569 -224) (152 -3577 -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" "387503" + "plane" "(-19 -3569 -216) (-19 -3569 -224) (152 -3569 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -31.9941] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387502" + "plane" "(152 -3577 -216) (152 -3577 -224) (-19 -3577 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.994] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387501" + "plane" "(-19 -3577 -216) (-19 -3569 -216) (152 -3569 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478288" + side + { + "id" "387512" + "plane" "(152 -3569 -256) (152 -3577 -256) (302 -3577 -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" "387511" + "plane" "(152 -3577 -256) (152 -3569 -256) (152 -3569 -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" "387510" + "plane" "(302 -3569 -256) (302 -3577 -256) (302 -3577 -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" "387509" + "plane" "(152 -3569 -256) (302 -3569 -256) (302 -3569 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387508" + "plane" "(302 -3577 -256) (152 -3577 -256) (152 -3577 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.994] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387507" + "plane" "(152 -3577 -216) (152 -3569 -216) (302 -3569 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +hidden +{ + entity + { + "id" "7621904" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-24 -3614 -94.809" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7621924" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-24 -3614 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7621932" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1621 -3059 -100.012" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7621952" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1621 -3059 -38" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7621996" + "classname" "prop_static" + "angles" "-2.99817 359.895 73.0027" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/jupiter_c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".4" + "origin" "-548 -3365 -174" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "7622080" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-550 -3483 -136" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "7622084" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-550 -3483 -104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "7622088" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-550 -3483 -74" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622116" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-547 -3369 -136" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "7622120" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-547 -3369 -104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "7622124" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-547 -3369 -74" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622128" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-550 -3573 -104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "7622132" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-550 -3573 -74" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622140" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-547 -3369 -168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "7622146" + "classname" "func_detail" + solid + { + "id" "7622144" + side + { + "id" "387366" + "plane" "(-608 -3305 -72) (-600 -3305 -72) (-600 -3692 -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" "387365" + "plane" "(-608 -3692 -80) (-600 -3692 -80) (-600 -3305 -80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 848] 0.125" + "vaxis" "[1 0 0 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387364" + "plane" "(-608 -3305 -72) (-608 -3692 -72) (-608 -3692 -80)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387363" + "plane" "(-600 -3305 -80) (-600 -3692 -80) (-600 -3692 -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" "387362" + "plane" "(-600 -3305 -72) (-608 -3305 -72) (-608 -3305 -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" "387361" + "plane" "(-600 -3692 -80) (-608 -3692 -80) (-608 -3692 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "7622154" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".5" + "origin" "-605 -3307 -80" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622210" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".5" + "origin" "-605 -3435 -80" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622218" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".5" + "origin" "-605 -3563 -80" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622276" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".5" + "origin" "-514 -3296.13 -72" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622284" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".5" + "origin" "-514 -3424 -72" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622292" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".5" + "origin" "-514 -3552 -72" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622300" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_64.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".5" + "origin" "-514 -3680 -72" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622342" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_512.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".5" + "origin" "-479 -2936 -57.2962" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7622499" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1277 -2945 -156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7602377" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1722.26 -4216.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7602378" + side + { + "id" "387198" + "plane" "(1720 -4217 6) (1720 -4216 6) (1731 -4216 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -184.286] 0.125" + "vaxis" "[0 -1 0 -8.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387197" + "plane" "(1720 -4216 0) (1720 -4217 0) (1731 -4217 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387196" + "plane" "(1720 -4217 0) (1720 -4216 0) (1720 -4216 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -192.285] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387195" + "plane" "(1731 -4216 0) (1731 -4217 0) (1731 -4217 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 223.711] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387194" + "plane" "(1720 -4216 0) (1731 -4216 0) (1731 -4216 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387193" + "plane" "(1731 -4217 0) (1720 -4217 0) (1720 -4217 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -184.286] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "7602393" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1980.64 -4216.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7602394" + side + { + "id" "387210" + "plane" "(1979 -4217 6) (1979 -4216 6) (1987 -4216 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -184.286] 0.125" + "vaxis" "[0 -1 0 -8.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387209" + "plane" "(1979 -4216 0) (1979 -4217 0) (1987 -4217 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387208" + "plane" "(1979 -4217 0) (1979 -4216 0) (1979 -4216 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -192.285] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387207" + "plane" "(1987 -4216 0) (1987 -4217 0) (1987 -4217 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 223.711] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387206" + "plane" "(1979 -4216 0) (1987 -4216 0) (1987 -4216 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387205" + "plane" "(1987 -4217 0) (1979 -4217 0) (1979 -4217 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -184.286] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "7602405" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "2041.64 -4216.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7602406" + side + { + "id" "387222" + "plane" "(2040 -4217 6) (2040 -4216 6) (2048 -4216 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -160.286] 0.125" + "vaxis" "[0 -1 0 -8.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387221" + "plane" "(2040 -4216 0) (2040 -4217 0) (2048 -4217 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387220" + "plane" "(2040 -4217 0) (2040 -4216 0) (2040 -4216 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -192.285] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387219" + "plane" "(2048 -4216 0) (2048 -4217 0) (2048 -4217 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 223.711] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387218" + "plane" "(2040 -4216 0) (2048 -4216 0) (2048 -4216 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387217" + "plane" "(2048 -4217 0) (2040 -4217 0) (2040 -4217 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -160.286] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "7602557" + "classname" "func_detail" + solid + { + "id" "7602543" + side + { + "id" "387288" + "plane" "(1421 -4512 40) (1421 -4512 160) (1421 -4648 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387287" + "plane" "(1421 -4648 160) (1421 -4512 160) (1422 -4512 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387286" + "plane" "(1422 -4648 40) (1421 -4648 40) (1421 -4648 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -34] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387285" + "plane" "(1421 -4512 160) (1421 -4512 40) (1422 -4512 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387284" + "plane" "(1421 -4512 40) (1421 -4648 40) (1422 -4648 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387283" + "plane" "(1422 -4648 40) (1422 -4648 160) (1422 -4512 160)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 4] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +hidden +{ + entity + { + "id" "7602585" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -4580 0.249999" + editor + { + "color" "206 135 0" + "groupid" "7602584" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "7602589" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1456 -4580 6.25" + editor + { + "color" "206 135 0" + "groupid" "7602584" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "7602594" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1456 -4580 13.25" + editor + { + "color" "206 135 0" + "groupid" "7602584" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "7602599" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1456 -4580 2.25" + editor + { + "color" "206 135 0" + "groupid" "7602584" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7602667" + "classname" "func_detail" + solid + { + "id" "7602645" + side + { + "id" "387336" + "plane" "(1400 -4512 50) (1420 -4512 50) (1420 -4648 50)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387335" + "plane" "(1400 -4648 49) (1420 -4648 49) (1420 -4512 49)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387334" + "plane" "(1400 -4512 50) (1400 -4648 50) (1400 -4648 49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387333" + "plane" "(1420 -4512 49) (1420 -4648 49) (1420 -4648 50)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -402] 0.125" + "vaxis" "[0 0 -1 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387332" + "plane" "(1420 -4512 50) (1400 -4512 50) (1400 -4512 49)" + "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" "387331" + "plane" "(1420 -4648 49) (1400 -4648 49) (1400 -4648 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7602646" + side + { + "id" "387342" + "plane" "(1400 -4512 76) (1420 -4512 76) (1420 -4648 76)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387341" + "plane" "(1400 -4648 75) (1420 -4648 75) (1420 -4512 75)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387340" + "plane" "(1400 -4512 76) (1400 -4648 76) (1400 -4648 75)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387339" + "plane" "(1420 -4512 75) (1420 -4648 75) (1420 -4648 76)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -402] 0.125" + "vaxis" "[0 0 -1 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387338" + "plane" "(1420 -4512 76) (1400 -4512 76) (1400 -4512 75)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387337" + "plane" "(1420 -4648 75) (1400 -4648 75) (1400 -4648 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7602647" + side + { + "id" "387348" + "plane" "(1400 -4512 95) (1420 -4512 95) (1420 -4648 95)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387347" + "plane" "(1400 -4648 94) (1420 -4648 94) (1420 -4512 94)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387346" + "plane" "(1400 -4512 95) (1400 -4648 95) (1400 -4648 94)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387345" + "plane" "(1420 -4512 94) (1420 -4648 94) (1420 -4648 95)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -402] 0.125" + "vaxis" "[0 0 -1 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387344" + "plane" "(1420 -4512 95) (1400 -4512 95) (1400 -4512 94)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387343" + "plane" "(1420 -4648 94) (1400 -4648 94) (1400 -4648 95)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "7581836" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-576 -3368 -222" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "7581839" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-576 -3368 -223" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "7581843" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 249 213 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 90 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "-576 -3367.51 -218" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "7581860" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-576 -3562 -222" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "7581863" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-576 -3562 -223" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "7581867" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 249 213 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 90 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "-576 -3561.51 -218" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "7581898" + "classname" "func_detail" + solid + { + "id" "7581899" + side + { + "id" "386774" + "plane" "(-1649 -3066 -32) (-1649 -3058 -32) (-1280 -3058 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386773" + "plane" "(-1649 -3058 -40) (-1649 -3062 -40) (-1280 -3062 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 324] 0.25" + "vaxis" "[0 -1 0 -584] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386772" + "plane" "(-1649 -3062 -40) (-1649 -3058 -40) (-1649 -3058 -32)" + "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" "386771" + "plane" "(-1280 -3058 -40) (-1280 -3062 -40) (-1280 -3066 -38)" + "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" "386770" + "plane" "(-1649 -3058 -40) (-1280 -3058 -40) (-1280 -3058 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386769" + "plane" "(-1649 -3066 -38) (-1649 -3066 -32) (-1280 -3066 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 324] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386768" + "plane" "(-1280 -3062 -40) (-1649 -3062 -40) (-1649 -3066 -38)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 372] 0.125" + "vaxis" "[0 -1 0 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "7581969" + "classname" "func_detail" + solid + { + "id" "7581963" + side + { + "id" "386831" + "plane" "(-1280 -2912 -32) (-1280 -2860 -32) (-1056 -2860 -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" "386830" + "plane" "(-1280 -2864 -40) (-1280 -2912 -40) (-1056 -2912 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386829" + "plane" "(-1280 -2912 -40) (-1280 -2864 -40) (-1280 -2860 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386828" + "plane" "(-1056 -2864 -40) (-1056 -2912 -40) (-1056 -2912 -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" "386827" + "plane" "(-1056 -2860 -38) (-1056 -2860 -32) (-1280 -2860 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386826" + "plane" "(-1280 -2860 -38) (-1280 -2864 -40) (-1056 -2864 -40)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1772] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386825" + "plane" "(-1056 -2912 -40) (-1280 -2912 -40) (-1280 -2912 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "7581984" + "classname" "func_detail" + solid + { + "id" "7581964" + side + { + "id" "386853" + "plane" "(-1272 -2920 -32) (-1272 -2912 -32) (-1056 -2912 -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" "386852" + "plane" "(-1272 -2912 -40) (-1272 -2916 -40) (-1056 -2916 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386851" + "plane" "(-1272 -2916 -40) (-1272 -2912 -40) (-1272 -2912 -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" "386850" + "plane" "(-1056 -2912 -40) (-1056 -2916 -40) (-1056 -2920 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386849" + "plane" "(-1272 -2920 -38) (-1272 -2920 -32) (-1056 -2920 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386848" + "plane" "(-1056 -2916 -40) (-1272 -2916 -40) (-1272 -2920 -38)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1772] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386847" + "plane" "(-1272 -2912 -40) (-1056 -2912 -40) (-1056 -2912 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "7581990" + "classname" "func_detail" + solid + { + "id" "7581981" + side + { + "id" "386861" + "plane" "(-1280 -3066 -32) (-1280 -3058 -32) (-1272 -3058 -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" "386860" + "plane" "(-1280 -3058 -40) (-1280 -3062 -40) (-1276 -3062 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 324] 0.25" + "vaxis" "[0 1 0 135.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386859" + "plane" "(-1280 -3062 -40) (-1280 -3058 -40) (-1280 -3058 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4.3672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386858" + "plane" "(-1272 -3066 -32) (-1272 -3058 -32) (-1272 -3058 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 332] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386857" + "plane" "(-1276 -3058 -40) (-1276 -3062 -40) (-1272 -3066 -38)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 372] 0.125" + "vaxis" "[0 -1 0 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386856" + "plane" "(-1280 -3066 -38) (-1280 -3066 -32) (-1272 -3066 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 324] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386855" + "plane" "(-1276 -3062 -40) (-1280 -3062 -40) (-1280 -3066 -38)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 372] 0.125" + "vaxis" "[0 -1 0 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386854" + "plane" "(-1280 -3058 -40) (-1276 -3058 -40) (-1272 -3058 -38)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "7581997" + "classname" "func_detail" + solid + { + "id" "7581982" + side + { + "id" "386868" + "plane" "(-1280 -3058 -32) (-1280 -2920 -32) (-1272 -2920 -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" "386867" + "plane" "(-1280 -2920 -40) (-1280 -3058 -40) (-1276 -3058 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 324] 0.25" + "vaxis" "[0 1 0 135.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386866" + "plane" "(-1280 -3058 -40) (-1280 -2920 -40) (-1280 -2920 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -4.3672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386865" + "plane" "(-1272 -3058 -32) (-1272 -2920 -32) (-1272 -2920 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 332] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386864" + "plane" "(-1280 -2920 -40) (-1276 -2920 -40) (-1272 -2920 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4.3672] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386863" + "plane" "(-1276 -2920 -40) (-1276 -3058 -40) (-1272 -3058 -38)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 372] 0.125" + "vaxis" "[0 -1 0 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386862" + "plane" "(-1276 -3058 -40) (-1280 -3058 -40) (-1280 -3058 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "7582067" + "classname" "func_detail" + solid + { + "id" "7582047" + side + { + "id" "386916" + "plane" "(-1272 -2920 -32) (-1280 -2920 -32) (-1280 -2912 -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" "386915" + "plane" "(-1280 -2912 -40) (-1280 -2920 -40) (-1276 -2920 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 332] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386914" + "plane" "(-1280 -2920 -40) (-1280 -2912 -40) (-1280 -2912 -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" "386913" + "plane" "(-1276 -2920 -40) (-1280 -2920 -40) (-1280 -2920 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 332] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386912" + "plane" "(-1280 -2912 -40) (-1276 -2916 -40) (-1272 -2920 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386911" + "plane" "(-1276 -2916 -40) (-1276 -2920 -40) (-1272 -2920 -38)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0.971491 0.0826019 0.222223 1431.03] 0.125" + "vaxis" "[0.128217 -0.971491 -0.199415 118.09] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7582061" + side + { + "id" "386922" + "plane" "(-1280 -2912 -32) (-1272 -2912 -32) (-1272 -2920 -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" "386921" + "plane" "(-1272 -2916 -40) (-1272 -2912 -40) (-1280 -2912 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 332] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386920" + "plane" "(-1272 -2912 -40) (-1272 -2916 -40) (-1272 -2920 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 332] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386919" + "plane" "(-1280 -2912 -40) (-1272 -2912 -40) (-1272 -2912 -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" "386918" + "plane" "(-1276 -2916 -40) (-1280 -2912 -40) (-1280 -2912 -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" "386917" + "plane" "(-1272 -2916 -40) (-1276 -2916 -40) (-1272 -2920 -38)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1772] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +hidden +{ + entity + { + "id" "7582117" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "287 -2960 98.9997" + editor + { + "color" "249 150 0" + "groupid" "7582116" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "7582121" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "287 -2965 98.9997" + editor + { + "color" "249 150 0" + "groupid" "7582116" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "7582124" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "287 -2986 98.9997" + editor + { + "color" "249 150 0" + "groupid" "7582116" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "7582297" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-23 -3614 -163" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7582301" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-23 -3614 -163" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7582305" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-23 -3602 -125" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7582357" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1621 -3058 -164.03" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7582361" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1621 -3058 -164.03" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7582365" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1606 -3058 -167" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7559986" + "classname" "prop_static" + "angles" "0 109 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "40 -2976 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 14500]" + } + } +} +hidden +{ + entity + { + "id" "7560006" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_low.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-783 -3557 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7560010" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-790 -3587 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7560090" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-771 -3533 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +entity +{ + "id" "7560233" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-780 -3629.5 -220" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7560229" + side + { + "id" "386043" + "plane" "(-784 -3629 -216) (-776 -3629 -216) (-776 -3630 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -211.996] 0.25" + "vaxis" "[0 1 0 55.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386042" + "plane" "(-784 -3630 -224) (-776 -3630 -224) (-776 -3629 -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" "386041" + "plane" "(-784 -3629 -216) (-784 -3630 -216) (-784 -3630 -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" "386040" + "plane" "(-776 -3629 -224) (-776 -3630 -224) (-776 -3630 -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" "386039" + "plane" "(-776 -3629 -216) (-784 -3629 -216) (-784 -3629 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -211.996] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386038" + "plane" "(-776 -3630 -224) (-784 -3630 -224) (-784 -3630 -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" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "7560246" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-780 -3544.5 -220" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7560242" + side + { + "id" "386055" + "plane" "(-784 -3544 -216) (-776 -3544 -216) (-776 -3545 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -72] 0.25" + "vaxis" "[0 -1 0 -31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386054" + "plane" "(-784 -3545 -224) (-776 -3545 -224) (-776 -3544 -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" "386053" + "plane" "(-784 -3544 -216) (-784 -3545 -216) (-784 -3545 -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" "386052" + "plane" "(-776 -3544 -224) (-776 -3545 -224) (-776 -3545 -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" "386051" + "plane" "(-776 -3544 -216) (-784 -3544 -216) (-784 -3544 -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" "386050" + "plane" "(-776 -3545 -224) (-784 -3545 -224) (-784 -3545 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -72] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +hidden +{ + entity + { + "id" "7560327" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-783 -3587 -148.07" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7561357" + "classname" "func_detail" + solid + { + "id" "7561345" + side + { + "id" "386285" + "plane" "(-608 -3176 -56) (-608 -2944 -56) (-600 -2944 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386284" + "plane" "(-608 -2944 -80) (-608 -2944 -56) (-608 -3176 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386283" + "plane" "(-600 -3176 -80) (-600 -3176 -56) (-600 -2944 -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" "386282" + "plane" "(-600 -2944 -80) (-600 -2944 -56) (-608 -2944 -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" "386281" + "plane" "(-608 -3176 -80) (-608 -3176 -56) (-600 -3176 -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" "386280" + "plane" "(-608 -2944 -80) (-608 -3176 -80) (-600 -3176 -80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 848] 0.125" + "vaxis" "[1 0 0 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561346" + side + { + "id" "386291" + "plane" "(-608 -2944 -208) (-608 -3176 -208) (-600 -3176 -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" "386290" + "plane" "(-608 -3176 -208) (-608 -2944 -208) (-608 -2944 -204)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386289" + "plane" "(-600 -2944 -208) (-600 -3176 -208) (-600 -3176 -204)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386288" + "plane" "(-608 -2944 -208) (-600 -2944 -208) (-600 -2944 -204)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386287" + "plane" "(-600 -3176 -208) (-608 -3176 -208) (-608 -3176 -204)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386286" + "plane" "(-608 -3176 -204) (-608 -2944 -204) (-600 -2944 -204)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 848] 0.125" + "vaxis" "[1 0 0 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6268]" + } +} +entity +{ + "id" "7561401" + "classname" "func_detail" + solid + { + "id" "7561411" + side + { + "id" "386351" + "plane" "(-536 -2944 -200) (-472 -2944 -200) (-472 -3176 -200)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 -384] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386350" + "plane" "(-536 -3176 -208) (-472 -3176 -208) (-472 -2944 -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" "386349" + "plane" "(-472 -2944 -208) (-472 -3176 -208) (-472 -3176 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386348" + "plane" "(-536 -2944 -208) (-472 -2944 -208) (-472 -2944 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386347" + "plane" "(-472 -3176 -208) (-536 -3176 -208) (-536 -3176 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386346" + "plane" "(-536 -3176 -208) (-536 -2944 -208) (-536 -2944 -200)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "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" "7561410" + side + { + "id" "386345" + "plane" "(-542 -3176 -200) (-542 -2944 -200) (-536 -2944 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 1 0 416] 0.125" + "vaxis" "[1 0 0 -104] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386344" + "plane" "(-552 -2944 -208) (-552 -3176 -208) (-536 -3176 -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" "386343" + "plane" "(-552 -3176 -208) (-552 -2944 -208) (-542 -2944 -200)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 1 0 -112] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386342" + "plane" "(-552 -2944 -208) (-536 -2944 -208) (-536 -2944 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386341" + "plane" "(-536 -3176 -208) (-552 -3176 -208) (-542 -3176 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386340" + "plane" "(-536 -2944 -208) (-536 -3176 -208) (-536 -3176 -200)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2268]" + } +} +entity +{ + "id" "7561652" + "classname" "func_detail" + solid + { + "id" "7561422" + side + { + "id" "386387" + "plane" "(-604 -3022 -80) (-604 -2944 -80) (-603 -2944 -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" "386386" + "plane" "(-604 -2944 -204) (-604 -3022 -204) (-603 -3022 -204)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386385" + "plane" "(-604 -3022 -204) (-604 -2944 -204) (-604 -2944 -80)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 -51] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386384" + "plane" "(-603 -2944 -204) (-603 -3022 -204) (-603 -3022 -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" "386383" + "plane" "(-604 -2944 -204) (-603 -2944 -204) (-603 -2944 -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" "386382" + "plane" "(-603 -3022 -204) (-604 -3022 -204) (-604 -3022 -80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -586] 0.125" + "vaxis" "[1 0 0 142] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561428" + side + { + "id" "386393" + "plane" "(-604 -3099 -80) (-604 -3022 -80) (-603 -3022 -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" "386392" + "plane" "(-604 -3022 -204) (-604 -3099 -204) (-603 -3099 -204)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386391" + "plane" "(-604 -3099 -204) (-604 -3022 -204) (-604 -3022 -80)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 -51] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386390" + "plane" "(-603 -3022 -204) (-603 -3099 -204) (-603 -3099 -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" "386389" + "plane" "(-604 -3022 -204) (-603 -3022 -204) (-603 -3022 -80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -586] 0.125" + "vaxis" "[1 0 0 107] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386388" + "plane" "(-603 -3099 -204) (-604 -3099 -204) (-604 -3099 -80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7561427" + side + { + "id" "386399" + "plane" "(-604 -3176 -80) (-604 -3099 -80) (-603 -3099 -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" "386398" + "plane" "(-604 -3099 -204) (-604 -3176 -204) (-603 -3176 -204)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386397" + "plane" "(-604 -3176 -204) (-604 -3099 -204) (-604 -3099 -80)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 -51] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386396" + "plane" "(-603 -3099 -204) (-603 -3176 -204) (-603 -3176 -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" "386395" + "plane" "(-603 -3176 -204) (-604 -3176 -204) (-604 -3176 -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" "386394" + "plane" "(-604 -3099 -204) (-603 -3099 -204) (-603 -3099 -80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 2000]" + } +} +entity +{ + "id" "7561678" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 249 213 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 90 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "-525 -2989 -194" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "7561683" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-525 -2989.49 -199" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "7561687" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-525 -2989.49 -198" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "7561702" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 249 213 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 90 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "-525 -3057 -194" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "7561707" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-525 -3057.49 -199" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "7561711" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-525 -3057.49 -198" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "7561714" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 249 213 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 90 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "-525 -3132 -194" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "7561719" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-525 -3132.49 -199" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "7561723" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-525 -3132.49 -198" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "7561754" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-560 -3102.88 -58" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7561758" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-560 -3102.88 -88" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "7561762" + "classname" "prop_static" + "angles" "0 276 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-560 -3102.88 -120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "7561766" + "classname" "prop_static" + "angles" "30 156 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/exhibits/sputnik.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-561.204 -3101 -136" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +entity +{ + "id" "7561935" + "classname" "func_detail" + solid + { + "id" "7561928" + side + { + "id" "386441" + "plane" "(-616 -3208 -48) (-608 -3208 -48) (-608 -3252 -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" "386440" + "plane" "(-616 -3252 -224) (-608 -3252 -224) (-608 -3208 -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" "386439" + "plane" "(-616 -3208 -48) (-616 -3252 -48) (-616 -3252 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_003" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386438" + "plane" "(-608 -3208 -224) (-608 -3252 -224) (-608 -3252 -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" "386437" + "plane" "(-608 -3208 -48) (-616 -3208 -48) (-616 -3208 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_003" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386436" + "plane" "(-608 -3252 -224) (-616 -3252 -224) (-616 -3252 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_003" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 5000]" + } +} +entity +{ + "id" "7562080" + "classname" "func_detail" + solid + { + "id" "7562067" + side + { + "id" "386519" + "plane" "(-616 -2912 -32) (-608 -2912 -32) (-608 -2936 -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" "386518" + "plane" "(-616 -2936 -224) (-608 -2936 -224) (-608 -2912 -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" "386517" + "plane" "(-616 -2912 -32) (-616 -2936 -32) (-616 -2936 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_003" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386516" + "plane" "(-608 -2912 -224) (-608 -2936 -224) (-608 -2936 -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" "386515" + "plane" "(-608 -2912 -32) (-616 -2912 -32) (-616 -2912 -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" "386514" + "plane" "(-608 -2936 -224) (-616 -2936 -224) (-616 -2936 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_003" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 11500]" + } +} +entity +{ + "id" "7562118" + "classname" "func_detail" + solid + { + "id" "7562114" + side + { + "id" "386561" + "plane" "(-616 -3208 -32) (-608 -3208 -32) (-608 -3216 -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" "386560" + "plane" "(-616 -3216 -48) (-608 -3216 -48) (-608 -3208 -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" "386559" + "plane" "(-616 -3208 -32) (-616 -3216 -32) (-616 -3216 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_003" + "uaxis" "[0 1 0 255.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386558" + "plane" "(-608 -3208 -48) (-608 -3216 -48) (-608 -3216 -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" "386557" + "plane" "(-608 -3208 -32) (-616 -3208 -32) (-616 -3208 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_003" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386556" + "plane" "(-608 -3216 -48) (-616 -3216 -48) (-616 -3216 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 15000]" + } +} +entity +{ + "id" "7562441" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-560.5 -3296.5 -220" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7562435" + side + { + "id" "386682" + "plane" "(-592 -3296 -216) (-512 -3296 -216) (-512 -3297 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -7.99707] 0.25" + "vaxis" "[0 -1 0 -63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386681" + "plane" "(-592 -3297 -224) (-512 -3297 -224) (-512 -3296 -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" "386680" + "plane" "(-592 -3296 -216) (-592 -3297 -216) (-592 -3297 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386679" + "plane" "(-512 -3296 -224) (-512 -3297 -224) (-512 -3297 -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" "386678" + "plane" "(-512 -3296 -216) (-592 -3296 -216) (-592 -3296 -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" "386677" + "plane" "(-512 -3297 -224) (-592 -3297 -224) (-592 -3297 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -7.99707] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -7268]" + } +} +entity +{ + "id" "7562459" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-512.5 -3500 -220" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7562454" + side + { + "id" "386706" + "plane" "(-513 -3297 -216) (-512 -3297 -216) (-512 -3703 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 128.002] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386705" + "plane" "(-513 -3703 -224) (-512 -3703 -224) (-512 -3297 -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" "386704" + "plane" "(-513 -3297 -216) (-513 -3703 -216) (-513 -3703 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 128.002] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386703" + "plane" "(-512 -3297 -224) (-512 -3703 -224) (-512 -3703 -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" "386702" + "plane" "(-512 -3297 -216) (-513 -3297 -216) (-513 -3297 -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" "386701" + "plane" "(-512 -3703 -224) (-513 -3703 -224) (-513 -3703 -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" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -5768]" + } +} +hidden +{ + entity + { + "id" "7562487" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-601 -3306 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7562491" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-600 -3307 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "7562495" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-621 -3427 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "7562513" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-601 -3562 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7562517" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-600 -3563 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "7562521" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-616 -3691 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "7562552" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-601 -3434 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7562556" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-600 -3435 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "7562560" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-616 -3563 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7562636" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-600.5 -3305.5 -220" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7562631" + side + { + "id" "386724" + "plane" "(-609 -3307 -216) (-609 -3306 -216) (-592 -3306 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -39.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386723" + "plane" "(-609 -3306 -224) (-609 -3307 -224) (-592 -3307 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386722" + "plane" "(-609 -3307 -224) (-609 -3306 -224) (-609 -3306 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386721" + "plane" "(-592 -3306 -224) (-592 -3307 -224) (-592 -3307 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386720" + "plane" "(-609 -3306 -224) (-592 -3306 -224) (-592 -3306 -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" "386719" + "plane" "(-592 -3307 -224) (-609 -3307 -224) (-609 -3307 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -4268]" + } +} +entity +{ + "id" "7562644" + "classname" "func_detail" + solid + { + "id" "7562626" + side + { + "id" "386730" + "plane" "(-608 -3306 -72) (-608 -3296 -72) (-592 -3296 -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" "386729" + "plane" "(-608 -3296 -224) (-608 -3306 -224) (-592 -3306 -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" "386728" + "plane" "(-608 -3306 -224) (-608 -3296 -224) (-608 -3296 -72)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386727" + "plane" "(-592 -3296 -224) (-592 -3306 -224) (-592 -3306 -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" "386726" + "plane" "(-608 -3296 -224) (-592 -3296 -224) (-592 -3296 -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" "386725" + "plane" "(-592 -3306 -224) (-608 -3306 -224) (-608 -3306 -72)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "7562654" + "classname" "func_detail" + solid + { + "id" "7562650" + side + { + "id" "386742" + "plane" "(-608 -3704 -72) (-608 -3691 -72) (-592 -3691 -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" "386741" + "plane" "(-608 -3691 -224) (-608 -3704 -224) (-592 -3704 -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" "386740" + "plane" "(-608 -3704 -224) (-608 -3691 -224) (-608 -3691 -72)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386739" + "plane" "(-592 -3691 -224) (-592 -3704 -224) (-592 -3704 -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" "386738" + "plane" "(-608 -3691 -224) (-592 -3691 -224) (-592 -3691 -72)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 575] 0.125" + "vaxis" "[0 0 -1 -79] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386737" + "plane" "(-592 -3704 -224) (-608 -3704 -224) (-608 -3704 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +entity +{ + "id" "7562667" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-600.5 -3691.5 -220" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7562662" + side + { + "id" "386754" + "plane" "(-609 -3691 -216) (-609 -3690 -216) (-592 -3690 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -39.997] 0.25" + "vaxis" "[0 1 0 43.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386753" + "plane" "(-609 -3690 -224) (-609 -3691 -224) (-592 -3691 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386752" + "plane" "(-609 -3691 -224) (-609 -3690 -224) (-609 -3690 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386751" + "plane" "(-592 -3690 -224) (-592 -3691 -224) (-592 -3691 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386750" + "plane" "(-609 -3690 -224) (-592 -3690 -224) (-592 -3690 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -39.9971] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386749" + "plane" "(-592 -3691 -224) (-609 -3691 -224) (-609 -3691 -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" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -1768]" + } +} +hidden +{ + entity + { + "id" "7520172" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1657 -3138 -234" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "7520389" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_industrial_props/nuke_industrial_silo_door_001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".8" + "origin" "-1650 -3136 -231" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7520473" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_64.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1344 -3061 -155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7520520" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".5" + "spawnflags" "1" + "origin" "-1644 -3138.09 -105" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +hidden +{ + entity + { + "id" "7520523" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1647 -3139.09 -103.717" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +entity +{ + "id" "7520527" + "classname" "light" + "_light" "125 255 125 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "-1635 -3138 -105" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +hidden +{ + entity + { + "id" "7520572" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1103 -3213 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520576" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-975 -3213 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520580" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-903 -3213 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520584" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1231 -3213 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520652" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1359 -3213 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520680" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1346 -3059 -155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7520703" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-1208 -3056 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7520712" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-1496 -3136 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "7520750" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-732 -2917 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520754" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-660 -2917 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520758" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-860 -2917 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520762" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-988 -2917 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +entity +{ + "id" "7520808" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 -1 -0" + "BasisOrigin" "-820 -2912 -103.35" + "BasisU" "1 0 0" + "BasisV" "0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "328060" + "StartU" "0" + "StartV" "1" + "uv0" "-48.9911 -43.5643 0" + "uv1" "-48.9911 43.5643 0" + "uv2" "48.9911 43.5643 0" + "uv3" "48.9911 -43.5643 0" + "origin" "-820 -2912 -103.35" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +hidden +{ + entity + { + "id" "7520851" + "classname" "prop_static" + "angles" "-6.5 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1463.54 -3213 -211.02" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520855" + "classname" "prop_static" + "angles" "6.5 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1392 -3213 -202.869" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7520859" + "classname" "prop_static" + "angles" "-6.5 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1590.71 -3213 -225.51" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "7521044" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_industrial_props/nuke_industrial_silo_door_001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".8" + "origin" "-1556 -4009 -225" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7521048" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1563 -4011 -228" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "7521068" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_industrial_props/nuke_industrial_silo_door_001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".8" + "origin" "-1556 -4698 -225" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7521072" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1563 -4700 -228" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +entity +{ + "id" "7498585" + "classname" "func_detail" + solid + { + "id" "7498586" + side + { + "id" "385148" + "plane" "(-1132 -3224 -85.0005) (-1266 -3224 -85.0005) (-1266 -3223 -85.0005)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385147" + "plane" "(-1132 -3223 -212.999) (-1266 -3223 -212.999) (-1266 -3224 -212.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385146" + "plane" "(-1266 -3224 -213) (-1266 -3223 -213) (-1266 -3223 -85)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -302.16] 0.125" + "vaxis" "[0 -1 0 187.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385145" + "plane" "(-1266 -3223 -213) (-1132 -3223 -213) (-1132 -3223 -85.0001)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385144" + "plane" "(-1132 -3224 -213) (-1266 -3224 -213) (-1266 -3224 -85.0002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385143" + "plane" "(-1132 -3223 -213) (-1132 -3224 -213) (-1132 -3224 -85.0002)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -585.844] 0.125" + "vaxis" "[0 -1 0 187.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498587" + side + { + "id" "385154" + "plane" "(-1266 -3224 -85.0005) (-1400 -3224 -85.0005) (-1400 -3223 -85.0005)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385153" + "plane" "(-1266 -3223 -212.999) (-1400 -3223 -212.999) (-1400 -3224 -212.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385152" + "plane" "(-1400 -3224 -213) (-1400 -3223 -213) (-1400 -3223 -85)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -302.16] 0.125" + "vaxis" "[0 -1 0 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385151" + "plane" "(-1400 -3223 -213) (-1266 -3223 -213) (-1266 -3223 -85.0001)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385150" + "plane" "(-1266 -3224 -213) (-1400 -3224 -213) (-1400 -3224 -85.0002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385149" + "plane" "(-1266 -3223 -213) (-1266 -3224 -213) (-1266 -3224 -85.0002)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -585.844] 0.125" + "vaxis" "[0 -1 0 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498588" + side + { + "id" "385160" + "plane" "(-1400 -3224 -85.0005) (-1520 -3224 -85.0005) (-1520 -3223 -85.0005)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385159" + "plane" "(-1400 -3223 -212.999) (-1520 -3223 -212.999) (-1520 -3224 -212.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385158" + "plane" "(-1520 -3224 -213) (-1520 -3223 -213) (-1520 -3223 -85)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -302.16] 0.125" + "vaxis" "[0 -1 0 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385157" + "plane" "(-1520 -3223 -213) (-1400 -3223 -213) (-1400 -3223 -85.0001)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385156" + "plane" "(-1400 -3224 -213) (-1520 -3224 -213) (-1520 -3224 -85.0002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385155" + "plane" "(-1400 -3223 -213) (-1400 -3224 -213) (-1400 -3224 -85.0002)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -585.844] 0.125" + "vaxis" "[0 -1 0 187] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "253 126 0" + "groupid" "7498584" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "7498609" + "classname" "func_detail" + solid + { + "id" "7498610" + side + { + "id" "385229" + "plane" "(-889 -3472 -244.999) (-889 -3456 -244.999) (-809 -3456 -244.999)" + "material" "METAL/METALSTAIR001A" + "uaxis" "[1 0 0 68] 0.25" + "vaxis" "[0 -1 0 1] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385228" + "plane" "(-889 -3456 -252.999) (-889 -3472 -252.999) (-809 -3472 -252.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385227" + "plane" "(-889 -3472 -253) (-889 -3456 -253) (-889 -3456 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385226" + "plane" "(-809 -3456 -253) (-809 -3472 -253) (-809 -3472 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385225" + "plane" "(-889 -3456 -253) (-809 -3456 -253) (-809 -3456 -245.003)" + "material" "METAL/METALSTAIR001A" + "uaxis" "[1 0 0 68] 0.25" + "vaxis" "[0 0 1 84.9932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385224" + "plane" "(-809 -3472 -253) (-889 -3472 -253) (-889 -3472 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498611" + side + { + "id" "385235" + "plane" "(-889 -3456 -252.999) (-889 -3440 -252.999) (-809 -3440 -252.999)" + "material" "METAL/METALSTAIR001A" + "uaxis" "[1 0 0 68] 0.25" + "vaxis" "[0 -1 0 -72] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385234" + "plane" "(-889 -3440 -260.999) (-889 -3456 -260.999) (-809 -3456 -260.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385233" + "plane" "(-889 -3456 -261) (-889 -3440 -261) (-889 -3440 -253.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -17.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385232" + "plane" "(-809 -3440 -261) (-809 -3456 -261) (-809 -3456 -253.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -17.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385231" + "plane" "(-889 -3440 -261) (-809 -3440 -261) (-809 -3440 -253.001)" + "material" "METAL/METALSTAIR001A" + "uaxis" "[1 0 0 59] 0.25" + "vaxis" "[0 0 1 113.993] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385230" + "plane" "(-809 -3456 -261) (-889 -3456 -261) (-889 -3456 -253.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -17.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -1768]" + } +} +entity +{ + "id" "7498612" + "classname" "func_detail" + solid + { + "id" "7498613" + side + { + "id" "385241" + "plane" "(-998 -3223 -85.0005) (-864 -3223 -85.0005) (-864 -3224 -85.0005)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385240" + "plane" "(-998 -3224 -212.999) (-864 -3224 -212.999) (-864 -3223 -212.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385239" + "plane" "(-864 -3223 -213) (-864 -3224 -213) (-864 -3224 -85.0002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385238" + "plane" "(-998 -3223 -213) (-864 -3223 -213) (-864 -3223 -85.0001)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385237" + "plane" "(-864 -3224 -213) (-998 -3224 -213) (-998 -3224 -85.0002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385236" + "plane" "(-998 -3224 -213) (-998 -3223 -213) (-998 -3223 -85)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 769.828] 0.125" + "vaxis" "[0 -1 0 187.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498614" + side + { + "id" "385247" + "plane" "(-998 -3224 -85.0005) (-1132 -3224 -85.0005) (-1132 -3223 -85.0005)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385246" + "plane" "(-998 -3223 -212.999) (-1132 -3223 -212.999) (-1132 -3224 -212.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385245" + "plane" "(-1132 -3224 -213) (-1132 -3223 -213) (-1132 -3223 -85)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -302.16] 0.125" + "vaxis" "[0 -1 0 187.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385244" + "plane" "(-1132 -3223 -213) (-998 -3223 -213) (-998 -3223 -85.0001)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385243" + "plane" "(-998 -3224 -213) (-1132 -3224 -213) (-1132 -3224 -85.0002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -60] 0.25" + "vaxis" "[0 0 -1 -50.9191] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385242" + "plane" "(-998 -3223 -213) (-998 -3224 -213) (-998 -3224 -85.0002)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -585.844] 0.125" + "vaxis" "[0 -1 0 187.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +entity +{ + "id" "7498616" + "classname" "func_detail" + solid + { + "id" "7498617" + side + { + "id" "385257" + "plane" "(-1401 -3400 -244.999) (-1369 -3400 -244.999) (-1369 -3464 -244.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 200.002] 0.125" + "vaxis" "[-1 0 0 -109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385256" + "plane" "(-1369 -3464 -260.999) (-1369 -3400 -260.999) (-1401 -3400 -260.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.4187] 0.237805" + "vaxis" "[-1 0 0 25.1885] 0.306818" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385255" + "plane" "(-1369 -3400 -261) (-1369 -3464 -261) (-1369 -3464 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385254" + "plane" "(-1401 -3400 -261) (-1369 -3400 -261) (-1369 -3400 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385253" + "plane" "(-1369 -3464 -261) (-1401 -3400 -261) (-1401 -3400 -245.003)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 283.734] 0.125" + "vaxis" "[0 0 -1 -427.208] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498618" + side + { + "id" "385263" + "plane" "(-1401 -3400 -244.999) (-1401 -3232 -244.999) (-1369 -3232 -244.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 200.002] 0.125" + "vaxis" "[-1 0 0 -109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385262" + "plane" "(-1369 -3232 -260.999) (-1401 -3232 -260.999) (-1401 -3400 -260.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.4187] 0.237805" + "vaxis" "[-1 0 0 25.1885] 0.306818" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385261" + "plane" "(-1401 -3400 -261) (-1401 -3232 -261) (-1401 -3232 -245.003)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 64] 0.125" + "vaxis" "[0 0 -1 -200.719] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385260" + "plane" "(-1401 -3232 -261) (-1369 -3232 -261) (-1369 -3232 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 10.0554] 0.237805" + "vaxis" "[0 0 -1 -42.7893] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385259" + "plane" "(-1369 -3232 -261) (-1369 -3400 -261) (-1369 -3400 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385258" + "plane" "(-1369 -3400 -261) (-1401 -3400 -261) (-1401 -3400 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498619" + side + { + "id" "385269" + "plane" "(-1145 -3464 -244.999) (-1369 -3464 -244.999) (-1369 -3232 -244.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 200.002] 0.125" + "vaxis" "[-1 0 0 -2.48745] 0.134259" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385268" + "plane" "(-1145 -3232 -260.999) (-1369 -3232 -260.999) (-1369 -3464 -260.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12.4187] 0.237805" + "vaxis" "[-1 0 0 -9.64664] 0.329545" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385267" + "plane" "(-1369 -3232 -261) (-1145 -3232 -261) (-1145 -3232 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 10.0554] 0.237805" + "vaxis" "[0 0 -1 -42.7893] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385266" + "plane" "(-1145 -3464 -261) (-1369 -3464 -261) (-1369 -3464 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 10.0554] 0.237805" + "vaxis" "[0 0 -1 -42.7893] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385265" + "plane" "(-1369 -3464 -261) (-1369 -3232 -261) (-1369 -3232 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 55.1994] 0.268519" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385264" + "plane" "(-1145 -3232 -261) (-1145 -3464 -261) (-1145 -3464 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 6.6486] 0.268519" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13000]" + } +} +hidden +{ + entity + { + "id" "7498620" + "classname" "prop_static" + "angles" "0 272 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_chair/nuke_office_chair.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1529.58 -3350.36 -261.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7498626" + "classname" "prop_static" + "angles" "0 56 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_chair/nuke_office_chair.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1330.71 -3276.57 -229.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7498648" + "classname" "prop_static" + "angles" "0 180 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_keyboard01.mdl" + "renderamt" "255" + "rendercolor" "128 128 128" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1201 -3432 -216.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "7498652" + "classname" "prop_static" + "angles" "0 90 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_control_room_flat_monitor.mdl" + "renderamt" "255" + "rendercolor" "124 124 124" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1261 -3460 -245.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498656" + "classname" "prop_static" + "angles" "0 90 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/control_room_displays/cotrol_room_desk_flat_displays.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1261 -3460 -245.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498660" + "classname" "prop_static" + "angles" "0 180 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_keyboard01.mdl" + "renderamt" "255" + "rendercolor" "128 128 128" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1321 -3432 -216.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "7498664" + "classname" "prop_static" + "angles" "0 180 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_keyboard01.mdl" + "renderamt" "255" + "rendercolor" "128 128 128" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1273 -3432 -216.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "7498668" + "classname" "prop_static" + "angles" "0 90 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_binder_holder.mdl" + "renderamt" "255" + "rendercolor" "164 68 70" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1261 -3460 -245.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498672" + "classname" "prop_static" + "angles" "0 90 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_control_room_desk_flat.mdl" + "renderamt" "255" + "rendercolor" "79 69 59" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1261 -3460 -245.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498676" + "classname" "prop_static" + "angles" "0 356.5 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_notepad.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1292 -3431 -216.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498680" + "classname" "prop_static" + "angles" "0 356.5 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_notebook.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1241 -3430 -216.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498684" + "classname" "prop_static" + "angles" "0 326.5 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_mug.mdl" + "renderamt" "255" + "rendercolor" "80 171 190" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1221 -3428 -216.014" + editor + { + "color" "253 126 0" + "groupid" "7498647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498689" + "classname" "prop_static" + "angles" "0 356.5 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_notebook.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1241 -3554 -232.014" + editor + { + "color" "253 126 0" + "groupid" "7498688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498693" + "classname" "prop_static" + "angles" "0 90 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_control_room_desk_flat.mdl" + "renderamt" "255" + "rendercolor" "79 69 59" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1263 -3583 -261.014" + editor + { + "color" "253 126 0" + "groupid" "7498688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498697" + "classname" "prop_static" + "angles" "0 356.5 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_notepad.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1292 -3555 -232.014" + editor + { + "color" "253 126 0" + "groupid" "7498688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498701" + "classname" "prop_static" + "angles" "0 180 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_keyboard01.mdl" + "renderamt" "255" + "rendercolor" "128 128 128" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1275 -3554 -232.014" + editor + { + "color" "253 126 0" + "groupid" "7498688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "7498705" + "classname" "prop_static" + "angles" "0 180 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_keyboard01.mdl" + "renderamt" "255" + "rendercolor" "128 128 128" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1323 -3554 -232.014" + editor + { + "color" "253 126 0" + "groupid" "7498688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "7498709" + "classname" "prop_static" + "angles" "0 90 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_control_room_flat_monitor.mdl" + "renderamt" "255" + "rendercolor" "124 124 124" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1261 -3584 -261.014" + editor + { + "color" "253 126 0" + "groupid" "7498688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498713" + "classname" "prop_static" + "angles" "0 180 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_keyboard01.mdl" + "renderamt" "255" + "rendercolor" "128 128 128" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1203 -3554 -232.014" + editor + { + "color" "253 126 0" + "groupid" "7498688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "7498717" + "classname" "prop_static" + "angles" "0 326.5 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_mug.mdl" + "renderamt" "255" + "rendercolor" "80 171 190" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1221 -3552 -232.014" + editor + { + "color" "253 126 0" + "groupid" "7498688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498721" + "classname" "prop_static" + "angles" "0 90 0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/control_room_displays/cotrol_room_desk_flat_displays.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1261 -3584 -261.014" + editor + { + "color" "253 126 0" + "groupid" "7498688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7498726" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_computer/nuke_supercomputer_01.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1616 -3387 -261.014" + editor + { + "color" "253 126 0" + "groupid" "7498725" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7498730" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_computer/nuke_supercomputer_02.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1616 -3315 -261.014" + editor + { + "color" "253 126 0" + "groupid" "7498725" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7498734" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_computer/nuke_supercomputer_02.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1616 -3267 -261.014" + editor + { + "color" "253 126 0" + "groupid" "7498725" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7498739" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-849 -3480 -245.264" + editor + { + "color" "253 126 0" + "groupid" "7498738" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7498743" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_low.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-879.25 -3472.52 -245.264" + editor + { + "color" "253 126 0" + "groupid" "7498738" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "7498748" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_depot/screens.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1273 -3645 -112" + editor + { + "color" "253 126 0" + "groupid" "7498747" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "7498757" + "classname" "func_detail" + solid + { + "id" "7498758" + side + { + "id" "385385" + "plane" "(-1369 -3360 -228.999) (-1369 -3232 -228.999) (-1145 -3232 -228.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 328] 0.125" + "vaxis" "[-1 0 0 -109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385384" + "plane" "(-1369 -3232 -244.999) (-1369 -3360 -244.999) (-1145 -3360 -244.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 33.3255] 0.170732" + "vaxis" "[-1 0 0 10.5103] 0.181818" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385383" + "plane" "(-1369 -3360 -245) (-1369 -3232 -245) (-1369 -3232 -229.001)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 319.998] 0.125" + "vaxis" "[0 0 -1 -200.719] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385382" + "plane" "(-1145 -3232 -245) (-1145 -3360 -245) (-1145 -3360 -229.001)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 319.998] 0.125" + "vaxis" "[0 0 -1 -200.719] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385381" + "plane" "(-1369 -3232 -245) (-1145 -3232 -245) (-1145 -3232 -229.001)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[-1 0 0 -136] 0.125" + "vaxis" "[0 0 -1 -200.719] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385380" + "plane" "(-1145 -3360 -245) (-1369 -3360 -245) (-1369 -3360 -229.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.305764] 0.170732" + "vaxis" "[0 0 -1 -10.7893] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498759" + side + { + "id" "385391" + "plane" "(-1385 -3360 -236.999) (-1385 -3232 -236.999) (-1369 -3232 -236.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 264.002] 0.125" + "vaxis" "[-1 0 0 -109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385390" + "plane" "(-1385 -3232 -244.999) (-1385 -3360 -244.999) (-1369 -3360 -244.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385389" + "plane" "(-1385 -3360 -245) (-1385 -3232 -245) (-1385 -3232 -237.001)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 192] 0.125" + "vaxis" "[0 0 -1 -200.719] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385388" + "plane" "(-1369 -3232 -245) (-1369 -3360 -245) (-1369 -3360 -237.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385387" + "plane" "(-1385 -3232 -245) (-1369 -3232 -245) (-1369 -3232 -237.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385386" + "plane" "(-1369 -3360 -245) (-1385 -3360 -245) (-1385 -3360 -237.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498760" + side + { + "id" "385397" + "plane" "(-1417 -3400 -252.999) (-1417 -3232 -252.999) (-1401 -3232 -252.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 136.002] 0.125" + "vaxis" "[-1 0 0 -109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385396" + "plane" "(-1417 -3232 -260.999) (-1417 -3400 -260.999) (-1401 -3400 -260.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -14.2626] 0.194444" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385395" + "plane" "(-1417 -3400 -261) (-1417 -3232 -261) (-1417 -3232 -253.001)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 -64] 0.125" + "vaxis" "[0 0 -1 -200.719] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385394" + "plane" "(-1401 -3232 -261) (-1401 -3400 -261) (-1401 -3400 -253.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 18.2429] 0.194444" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385393" + "plane" "(-1417 -3232 -261) (-1401 -3232 -261) (-1401 -3232 -253.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385392" + "plane" "(-1401 -3400 -261) (-1417 -3400 -261) (-1417 -3400 -253.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498761" + side + { + "id" "385403" + "plane" "(-1145 -3360 -236.999) (-1145 -3232 -236.999) (-1129 -3232 -236.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 392] 0.125" + "vaxis" "[-1 0 0 -109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385402" + "plane" "(-1145 -3232 -244.999) (-1145 -3360 -244.999) (-1129 -3360 -244.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 60] 0.25" + "vaxis" "[-1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385401" + "plane" "(-1145 -3360 -245) (-1145 -3232 -245) (-1145 -3232 -237.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385400" + "plane" "(-1129 -3232 -245) (-1129 -3360 -245) (-1129 -3360 -237.001)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 -64.002] 0.125" + "vaxis" "[0 0 -1 -200.719] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385399" + "plane" "(-1145 -3232 -245) (-1129 -3232 -245) (-1129 -3232 -237.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385398" + "plane" "(-1129 -3360 -245) (-1145 -3360 -245) (-1145 -3360 -237.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498762" + side + { + "id" "385409" + "plane" "(-1145 -3400 -244.999) (-1145 -3232 -244.999) (-1113 -3232 -244.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 184.002] 0.125" + "vaxis" "[-1 0 0 -109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385408" + "plane" "(-1113 -3400 -260.999) (-1113 -3232 -260.999) (-1145 -3232 -260.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 13.8543] 0.237805" + "vaxis" "[-1 0 0 25.1885] 0.306818" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385407" + "plane" "(-1113 -3232 -261) (-1113 -3400 -261) (-1113 -3400 -245.003)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 64] 0.125" + "vaxis" "[0 0 -1 -200.719] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385406" + "plane" "(-1145 -3232 -261) (-1113 -3232 -261) (-1113 -3232 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 11.4909] 0.237805" + "vaxis" "[0 0 -1 -42.7893] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385405" + "plane" "(-1145 -3400 -261) (-1145 -3232 -261) (-1145 -3232 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385404" + "plane" "(-1113 -3400 -261) (-1145 -3400 -261) (-1145 -3400 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498763" + side + { + "id" "385414" + "plane" "(-1145 -3464 -244.999) (-1145 -3400 -244.999) (-1113 -3400 -244.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 184.002] 0.125" + "vaxis" "[-1 0 0 -109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385413" + "plane" "(-1113 -3400 -260.999) (-1145 -3400 -260.999) (-1145 -3464 -260.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 13.8543] 0.237805" + "vaxis" "[-1 0 0 25.1885] 0.306818" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385412" + "plane" "(-1145 -3464 -261) (-1145 -3400 -261) (-1145 -3400 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385411" + "plane" "(-1145 -3400 -261) (-1113 -3400 -261) (-1113 -3400 -245.003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385410" + "plane" "(-1113 -3400 -261) (-1145 -3464 -261) (-1145 -3464 -245.003)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 -115.035] 0.125" + "vaxis" "[0 0 -1 -1.36364] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7498764" + side + { + "id" "385420" + "plane" "(-1113 -3400 -252.999) (-1113 -3232 -252.999) (-1097 -3232 -252.999)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 120.002] 0.125" + "vaxis" "[-1 0 0 -109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385419" + "plane" "(-1113 -3232 -260.999) (-1113 -3400 -260.999) (-1097 -3400 -260.999)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[-1 0 0 -14.2626] 0.194444" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385418" + "plane" "(-1097 -3232 -261) (-1097 -3400 -261) (-1097 -3400 -253.001)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001_DARK" + "uaxis" "[0 -1 0 -64] 0.125" + "vaxis" "[0 0 -1 -200.719] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385417" + "plane" "(-1113 -3400 -261) (-1113 -3232 -261) (-1113 -3232 -253.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 18.2429] 0.194444" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385416" + "plane" "(-1113 -3232 -261) (-1097 -3232 -261) (-1097 -3232 -253.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "385415" + "plane" "(-1097 -3400 -261) (-1113 -3400 -261) (-1113 -3400 -253.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -49.8597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "253 126 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +hidden +{ + entity + { + "id" "7498765" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1261 -3324 -229.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "7498769" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-1097 -3656 -77.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "7498772" + "classname" "prop_static" + "angles" "0 181 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_chair/nuke_office_chair.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1213 -3280 -229.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7498776" + "classname" "prop_static" + "angles" "0 21 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_chair/nuke_office_chair.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1069.28 -3445.06 -261.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7498780" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/air_vent_b/air_vent_b.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1425 -3344 -82.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "7498784" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/air_vent_b/air_vent_b.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1089 -3344 -82.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +entity +{ + "id" "7498788" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-1041 -3576 -77.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7498791" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-985 -3496 -77.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7498794" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-921 -3424 -77.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7498797" + "classname" "func_instance" + "angles" "-0 -180 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-1497 -3568 -77.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7498800" + "classname" "func_instance" + "angles" "-0 -180 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-1441 -3648 -77.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7498803" + "classname" "func_instance" + "angles" "-0 -180 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-1553 -3488 -77.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7498806" + "classname" "func_instance" + "angles" "-0 -180 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-1617 -3416 -77.264" + editor + { + "color" "253 126 0" + "groupid" "7498605" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "7498811" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_buttons.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1253 -3324 -229.264" + editor + { + "color" "253 126 0" + "groupid" "7498593" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7498815" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_monitor.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1293 -3336 -189.264" + editor + { + "color" "253 126 0" + "groupid" "7498590" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7498819" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_monitor.mdl" + "renderamt" "255" + "rendercolor" "87 141 181" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1273 -3336 -189.264" + editor + { + "color" "253 126 0" + "groupid" "7498590" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7501092" + "classname" "prop_static" + "angles" "0 189 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1290 -3136 -199.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +entity +{ + "id" "7477919" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 247 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 180 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "-140 -3584 -43.839" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "7477924" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_32x64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-140 -3584 -40.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +entity +{ + "id" "7477928" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-140 -3584 -113.839" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7477933" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "4" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".5" + "spawnflags" "0" + "origin" "-140 -3584 -43.839" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7478249" + "classname" "func_detail" + solid + { + "id" "7478063" + side + { + "id" "387542" + "plane" "(-172 -3600 -32) (-464 -3600 -32) (-464 -3568 -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" "387541" + "plane" "(-172 -3568 -48) (-464 -3568 -48) (-464 -3600 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387540" + "plane" "(-464 -3600 -48) (-464 -3568 -48) (-464 -3568 -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" "387539" + "plane" "(-172 -3600 -48) (-464 -3600 -48) (-464 -3600 -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" "387538" + "plane" "(-464 -3568 -48) (-172 -3568 -48) (-172 -3568 -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" "387537" + "plane" "(-172 -3568 -48) (-172 -3600 -48) (-172 -3600 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478173" + side + { + "id" "387554" + "plane" "(-332 -3536 -32) (-464 -3536 -32) (-464 -3504 -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" "387553" + "plane" "(-332 -3504 -48) (-464 -3504 -48) (-464 -3536 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387552" + "plane" "(-464 -3536 -48) (-464 -3504 -48) (-464 -3504 -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" "387551" + "plane" "(-464 -3504 -48) (-332 -3504 -48) (-332 -3504 -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" "387550" + "plane" "(-332 -3536 -48) (-464 -3536 -48) (-464 -3536 -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" "387549" + "plane" "(-332 -3504 -48) (-332 -3536 -48) (-332 -3536 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478125" + side + { + "id" "387548" + "plane" "(-464 -3568 -32) (-464 -3536 -32) (-48 -3536 -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" "387547" + "plane" "(-464 -3536 -48) (-464 -3568 -48) (-48 -3568 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387546" + "plane" "(-464 -3568 -48) (-464 -3536 -48) (-464 -3536 -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" "387545" + "plane" "(-48 -3536 -48) (-48 -3568 -48) (-48 -3568 -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" "387544" + "plane" "(-48 -3568 -48) (-464 -3568 -48) (-464 -3568 -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" "387543" + "plane" "(-464 -3536 -48) (-48 -3536 -48) (-48 -3536 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478064" + side + { + "id" "387536" + "plane" "(-108 -3568 -32) (-48 -3568 -32) (-48 -3600 -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" "387535" + "plane" "(-108 -3600 -48) (-48 -3600 -48) (-48 -3568 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387534" + "plane" "(-48 -3568 -48) (-48 -3600 -48) (-48 -3600 -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" "387533" + "plane" "(-48 -3600 -48) (-108 -3600 -48) (-108 -3600 -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" "387532" + "plane" "(-108 -3568 -48) (-48 -3568 -48) (-48 -3568 -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" "387531" + "plane" "(-108 -3600 -48) (-108 -3568 -48) (-108 -3568 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7478174" + side + { + "id" "387560" + "plane" "(-268 -3504 -32) (-48 -3504 -32) (-48 -3536 -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" "387559" + "plane" "(-268 -3536 -48) (-48 -3536 -48) (-48 -3504 -48)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "387558" + "plane" "(-48 -3504 -48) (-48 -3536 -48) (-48 -3536 -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" "387557" + "plane" "(-268 -3504 -48) (-48 -3504 -48) (-48 -3504 -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" "387556" + "plane" "(-48 -3536 -48) (-268 -3536 -48) (-268 -3536 -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" "387555" + "plane" "(-268 -3536 -48) (-268 -3504 -48) (-268 -3504 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "7478263" + "classname" "func_detail" + solid + { + "id" "7320382" + side + { + "id" "383400" + "plane" "(-48 -3448 -32) (-32 -3448 -32) (-32 -3577 -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" "383399" + "plane" "(-48 -3577 -48) (-40 -3577 -48) (-40 -3448 -48)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 384] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383398" + "plane" "(-32 -3577 -40) (-32 -3577 -32) (-32 -3448 -32)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 384] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383397" + "plane" "(-48 -3448 -48) (-40 -3448 -48) (-32 -3448 -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" "383396" + "plane" "(-40 -3577 -48) (-48 -3577 -48) (-48 -3577 -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" "383395" + "plane" "(-40 -3448 -48) (-40 -3577 -48) (-32 -3577 -40)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 384] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383394" + "plane" "(-48 -3577 -48) (-48 -3448 -48) (-48 -3448 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "7478427" + "classname" "func_detail" + solid + { + "id" "7478423" + side + { + "id" "383539" + "plane" "(-200 -3424 -208) (-200 -3429 -208) (-392 -3429 -208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 896] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383538" + "plane" "(-200 -3440 -216) (-200 -3424 -216) (-392 -3424 -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" "383537" + "plane" "(-392 -3429 -208) (-392 -3440 -216) (-392 -3424 -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" "383536" + "plane" "(-200 -3440 -216) (-200 -3429 -208) (-200 -3424 -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" "383535" + "plane" "(-392 -3424 -208) (-392 -3424 -216) (-200 -3424 -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" "383534" + "plane" "(-392 -3440 -216) (-392 -3429 -208) (-200 -3429 -208)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 -112] 0.125" + "vaxis" "[0 -0.808736 -0.588172 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "7478438" + "classname" "func_detail" + solid + { + "id" "7478435" + side + { + "id" "383551" + "plane" "(-392 -3440 -104) (-389 -3440 -104) (-389 -3448 -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" + } + side + { + "id" "383550" + "plane" "(-392 -3448 -216) (-389 -3448 -216) (-389 -3440 -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" "383549" + "plane" "(-392 -3440 -104) (-392 -3448 -104) (-392 -3448 -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" "383548" + "plane" "(-389 -3440 -216) (-389 -3448 -216) (-389 -3448 -104)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -24] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383547" + "plane" "(-389 -3440 -104) (-392 -3440 -104) (-392 -3440 -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" "383546" + "plane" "(-389 -3448 -216) (-392 -3448 -216) (-392 -3448 -104)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -24] 0.125" + "vaxis" "[-1 0 0 111.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +entity +{ + "id" "7478450" + "classname" "func_detail" + solid + { + "id" "7478451" + side + { + "id" "383563" + "plane" "(-203 -3440 -104) (-200 -3440 -104) (-200 -3448 -104)" + "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" "383562" + "plane" "(-203 -3448 -216) (-200 -3448 -216) (-200 -3440 -216)" + "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" "383561" + "plane" "(-203 -3440 -104) (-203 -3448 -104) (-203 -3448 -216)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 848] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383560" + "plane" "(-200 -3440 -216) (-200 -3448 -216) (-200 -3448 -104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.558594] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383559" + "plane" "(-200 -3440 -104) (-203 -3440 -104) (-203 -3440 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383558" + "plane" "(-200 -3448 -216) (-203 -3448 -216) (-203 -3448 -104)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -24] 0.125" + "vaxis" "[-1 0 0 95.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +entity +{ + "id" "7478461" + "classname" "func_detail" + solid + { + "id" "7478457" + side + { + "id" "383575" + "plane" "(-389 -3440 -104) (-203 -3440 -104) (-203 -3448 -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" + } + side + { + "id" "383574" + "plane" "(-389 -3448 -107) (-203 -3448 -107) (-203 -3440 -107)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 -440] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383573" + "plane" "(-389 -3440 -104) (-389 -3448 -104) (-389 -3448 -107)" + "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" "383572" + "plane" "(-203 -3440 -107) (-203 -3448 -107) (-203 -3448 -104)" + "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" "383571" + "plane" "(-203 -3440 -104) (-389 -3440 -104) (-389 -3440 -107)" + "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" "383570" + "plane" "(-203 -3448 -107) (-389 -3448 -107) (-389 -3448 -104)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 -440] 0.125" + "vaxis" "[0 0 1 111.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" + } +} +entity +{ + "id" "7478486" + "classname" "func_detail" + solid + { + "id" "7478484" + side + { + "id" "383593" + "plane" "(-389 -3443 -107) (-203 -3443 -107) (-203 -3445 -107)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383592" + "plane" "(-389 -3445 -216) (-203 -3445 -216) (-203 -3443 -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" "383591" + "plane" "(-389 -3443 -107) (-389 -3445 -107) (-389 -3445 -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" "383590" + "plane" "(-203 -3443 -216) (-203 -3445 -216) (-203 -3445 -107)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383589" + "plane" "(-203 -3443 -107) (-389 -3443 -107) (-389 -3443 -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" "383588" + "plane" "(-203 -3445 -216) (-389 -3445 -216) (-389 -3445 -107)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 23.3978] 0.726563" + "vaxis" "[0 0 -1 -150.588] 0.53125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +hidden +{ + entity + { + "id" "7478497" + "classname" "prop_static" + "angles" "0 33 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-360 -3391 -207.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7478509" + "classname" "prop_static" + "angles" "0 347.5 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-230 -3392 -207.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7478529" + "classname" "prop_static" + "angles" "0 358.5 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-288 -3394 -207.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "7478553" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-253 -3413.49 -207" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "7478557" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 249 213 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 90 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "-253 -3413 -202" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "7478562" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-253 -3413.49 -206" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "7478601" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-333 -3413.49 -207" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "7478605" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 249 213 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 90 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "-333 -3413 -202" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "7478610" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-333 -3413.49 -206" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "7458500" + "classname" "func_detail" + solid + { + "id" "4939711" + side + { + "id" "383285" + "plane" "(959.861 -4862.75 119.375) (958.861 -4862.75 119.375) (958.861 -4694.75 119.375)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383284" + "plane" "(959.861 -4694.75 29.375) (958.861 -4694.75 29.375) (958.861 -4862.75 29.375)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383283" + "plane" "(959.861 -4862.75 29.375) (958.861 -4862.75 29.375) (958.861 -4862.75 119.374)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.002] 0.25" + "vaxis" "[0 0 -1 -14.1899] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383282" + "plane" "(958.861 -4694.75 29.375) (959.861 -4694.75 29.375) (959.861 -4694.75 119.374)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.002] 0.25" + "vaxis" "[0 0 -1 -14.1899] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383281" + "plane" "(958.861 -4862.75 29.375) (958.861 -4694.75 29.375) (958.861 -4694.75 119.374)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 -14.1899] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383280" + "plane" "(959.861 -4694.75 29.375) (959.861 -4862.75 29.375) (959.861 -4862.75 119.374)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 -14.1899] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4939712" + side + { + "id" "383291" + "plane" "(955.838 -4772 66) (954.838 -4772 66) (954.838 -4764 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[-1 0 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383290" + "plane" "(955.838 -4764 58) (954.838 -4764 58) (954.838 -4772 58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[-1 0 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383289" + "plane" "(954.838 -4764 58) (955.838 -4764 58) (955.838 -4764 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383288" + "plane" "(955.838 -4772 58) (954.838 -4772 58) (954.838 -4772 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383287" + "plane" "(955.838 -4764 58) (955.838 -4772 58) (955.838 -4772 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383286" + "plane" "(954.838 -4772 58) (954.838 -4764 58) (954.838 -4764 66)" + "material" "CS_APOLLO/DECALS/YOU_ARE_HERE" + "uaxis" "[0 -1 0 -128] 0.03125" + "vaxis" "[0 0 -1 64] 0.03125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "7458889" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_32x64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-300 -3520 -40.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +entity +{ + "id" "7458893" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 247 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 180 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "-300 -3520 -43.839" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7458898" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "4" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".5" + "spawnflags" "0" + "origin" "-300 -3520 -43.839" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7458901" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-300 -3520 -113.839" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "7439068" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1677 -4181 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "7439095" + "classname" "prop_static" + "angles" "0 1.00001 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container_open.mdl" + "renderamt" "255" + "rendercolor" "58 84 46" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1617 -4161 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "7439126" + "classname" "prop_static" + "angles" "0 1.00001 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_trash_pile_03.mdl" + "renderamt" "255" + "rendercolor" "81 81 81" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1616 -4161 5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "7439177" + "classname" "prop_static" + "angles" "0 352.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container_open.mdl" + "renderamt" "255" + "rendercolor" "58 84 46" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1541 -4157 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "7439181" + "classname" "prop_static" + "angles" "0 352.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_trash_pile_03.mdl" + "renderamt" "255" + "rendercolor" "81 81 81" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1540.01 -4156.85 5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "7439422" + "classname" "prop_static" + "angles" "0 19.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1480 -4095 0.250019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +entity +{ + "id" "7418272" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 247 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 90 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "128 -3152 160.411" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "7418277" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_32x64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "128 -3152 164" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +entity +{ + "id" "7418281" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "4" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".5" + "spawnflags" "0" + "origin" "128 -3152 160.411" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7418284" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "128 -3152 90.411" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7418403" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "224 -3024 90.411" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7418442" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 247 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 90 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "96 -3344 160.411" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "7418447" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_32x64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "96 -3344 164" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +entity +{ + "id" "7418451" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "4" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".5" + "spawnflags" "0" + "origin" "96 -3344 160.411" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7418454" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "96 -3248 90.411" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7418493" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 247 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 90 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "256 -3344 160.411" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "7418498" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_32x64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "256 -3344 164" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +entity +{ + "id" "7418502" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "4" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".5" + "spawnflags" "0" + "origin" "256 -3344 160.411" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "7418505" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 247 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "256 -3248 90.411" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "7419095" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_ac_inset/nuke_ac_inset.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "96 -3264 156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +entity +{ + "id" "7419208" + "classname" "func_detail" + solid + { + "id" "7418770" + side + { + "id" "382889" + "plane" "(-32 -3376 156) (-32 -3448 156) (302 -3448 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382888" + "plane" "(-32 -3448 185) (-32 -3448 156) (-32 -3376 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382887" + "plane" "(302 -3376 156) (302 -3448 156) (302 -3448 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382886" + "plane" "(302 -3448 185) (302 -3448 156) (-32 -3448 156)" + "material" "CEILING/HR_C/HR_CEILING_001_COLOR" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382885" + "plane" "(-32 -3448 185) (-32 -3376 185) (302 -3376 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382884" + "plane" "(-32 -3376 185) (-32 -3376 156) (302 -3376 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7418909" + side + { + "id" "382895" + "plane" "(112 -3376 156) (240 -3376 156) (240 -3312 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382894" + "plane" "(112 -3312 185) (240 -3312 185) (240 -3376 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382893" + "plane" "(240 -3376 156) (112 -3376 156) (112 -3376 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382892" + "plane" "(112 -3312 156) (240 -3312 156) (240 -3312 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382891" + "plane" "(112 -3376 156) (112 -3312 156) (112 -3312 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382890" + "plane" "(240 -3312 156) (240 -3376 156) (240 -3376 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "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" "7419181" + side + { + "id" "382901" + "plane" "(-32 -3280 156) (-32 -3312 156) (302 -3312 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382900" + "plane" "(-32 -3312 156) (-32 -3280 156) (-32 -3280 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382899" + "plane" "(302 -3280 156) (302 -3312 156) (302 -3312 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382898" + "plane" "(-32 -3312 185) (-32 -3280 185) (302 -3280 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382897" + "plane" "(302 -3312 185) (302 -3312 156) (-32 -3312 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382896" + "plane" "(-32 -3280 185) (-32 -3280 156) (302 -3280 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7418858" + side + { + "id" "382907" + "plane" "(-32 -3312 156) (-32 -3376 156) (80 -3376 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382906" + "plane" "(-32 -3376 156) (-32 -3312 156) (-32 -3312 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382905" + "plane" "(-32 -3376 185) (-32 -3312 185) (80 -3312 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382904" + "plane" "(80 -3376 156) (-32 -3376 156) (-32 -3376 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382903" + "plane" "(-32 -3312 185) (-32 -3312 156) (80 -3312 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382902" + "plane" "(80 -3312 156) (80 -3376 156) (80 -3376 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "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" "7418910" + side + { + "id" "382913" + "plane" "(272 -3376 156) (302 -3376 156) (302 -3312 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382912" + "plane" "(302 -3312 156) (302 -3376 156) (302 -3376 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382911" + "plane" "(272 -3312 185) (302 -3312 185) (302 -3376 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382910" + "plane" "(302 -3376 185) (302 -3376 156) (272 -3376 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382909" + "plane" "(272 -3312 156) (302 -3312 156) (302 -3312 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382908" + "plane" "(272 -3376 156) (272 -3312 156) (272 -3312 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "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" "7419198" + side + { + "id" "382919" + "plane" "(112 -3280 156) (302 -3280 156) (302 -3248 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382918" + "plane" "(302 -3248 156) (302 -3280 156) (302 -3280 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382917" + "plane" "(112 -3248 185) (302 -3248 185) (302 -3280 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382916" + "plane" "(112 -3248 156) (302 -3248 156) (302 -3248 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382915" + "plane" "(302 -3280 185) (302 -3280 156) (112 -3280 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382914" + "plane" "(112 -3280 156) (112 -3248 156) (112 -3248 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "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" "7419197" + side + { + "id" "382925" + "plane" "(-32 -3248 156) (-32 -3280 156) (80 -3280 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382924" + "plane" "(-32 -3280 156) (-32 -3248 156) (-32 -3248 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382923" + "plane" "(-32 -3280 185) (-32 -3248 185) (80 -3248 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382922" + "plane" "(-32 -3248 185) (-32 -3248 156) (80 -3248 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382921" + "plane" "(80 -3280 156) (-32 -3280 156) (-32 -3280 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382920" + "plane" "(80 -3248 156) (80 -3280 156) (80 -3280 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "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" "7419112" + side + { + "id" "382931" + "plane" "(-32 -3184 156) (-32 -3248 156) (302 -3248 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382930" + "plane" "(-32 -3248 156) (-32 -3184 156) (-32 -3184 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382929" + "plane" "(302 -3184 156) (302 -3248 156) (302 -3248 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382928" + "plane" "(-32 -3248 185) (-32 -3184 185) (302 -3184 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382927" + "plane" "(-32 -3184 185) (-32 -3184 156) (302 -3184 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382926" + "plane" "(302 -3248 185) (302 -3248 156) (-32 -3248 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +hidden +{ + entity + { + "id" "7419227" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_ac_inset/nuke_ac_inset.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "224 -3136 156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +entity +{ + "id" "7419253" + "classname" "func_detail" + solid + { + "id" "7419239" + side + { + "id" "382961" + "plane" "(144 -3184 156) (302 -3184 156) (302 -3152 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382960" + "plane" "(302 -3152 156) (302 -3184 156) (302 -3184 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382959" + "plane" "(302 -3152 185) (302 -3184 185) (144 -3184 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382958" + "plane" "(302 -3184 185) (302 -3184 156) (144 -3184 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382957" + "plane" "(144 -3184 156) (144 -3152 156) (144 -3152 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382956" + "plane" "(144 -3152 156) (302 -3152 156) (302 -3152 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7419245" + side + { + "id" "382967" + "plane" "(208 -3120 156) (144 -3120 156) (144 -3152 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382966" + "plane" "(144 -3152 185) (144 -3120 185) (208 -3120 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382965" + "plane" "(144 -3120 156) (208 -3120 156) (208 -3120 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382964" + "plane" "(144 -3152 156) (144 -3120 156) (144 -3120 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382963" + "plane" "(208 -3152 156) (144 -3152 156) (144 -3152 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382962" + "plane" "(208 -3120 156) (208 -3152 156) (208 -3152 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "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" "7419065" + side + { + "id" "382973" + "plane" "(-32 -2912 156) (-32 -3120 156) (302 -3120 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382972" + "plane" "(-32 -3120 156) (-32 -2912 156) (-32 -2912 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382971" + "plane" "(302 -2912 185) (302 -2912 156) (302 -3120 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382970" + "plane" "(-32 -2912 185) (-32 -2912 156) (302 -2912 156)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[1 0 0 -474] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382969" + "plane" "(-32 -3120 185) (-32 -2912 185) (302 -2912 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382968" + "plane" "(302 -3120 185) (302 -3120 156) (-32 -3120 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7419246" + side + { + "id" "382979" + "plane" "(302 -3152 156) (302 -3120 156) (240 -3120 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382978" + "plane" "(302 -3120 156) (302 -3152 156) (302 -3152 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382977" + "plane" "(240 -3120 185) (302 -3120 185) (302 -3152 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382976" + "plane" "(240 -3120 156) (302 -3120 156) (302 -3120 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382975" + "plane" "(302 -3152 185) (302 -3152 156) (240 -3152 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382974" + "plane" "(240 -3152 156) (240 -3120 156) (240 -3120 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "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" "7419078" + side + { + "id" "382985" + "plane" "(-32 -3120 156) (-32 -3184 156) (112 -3184 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382984" + "plane" "(-32 -3184 156) (-32 -3120 156) (-32 -3120 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382983" + "plane" "(-32 -3184 185) (-32 -3120 185) (112 -3120 185)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382982" + "plane" "(-32 -3120 185) (-32 -3120 156) (112 -3120 156)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382981" + "plane" "(112 -3184 156) (-32 -3184 156) (-32 -3184 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382980" + "plane" "(112 -3120 156) (112 -3184 156) (112 -3184 185)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +entity +{ + "id" "7419278" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "7419276" + side + { + "id" "383033" + "plane" "(302 -3004 128) (318 -3004 128) (318 -3252 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383032" + "plane" "(302 -3252 0) (318 -3252 0) (318 -3004 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383031" + "plane" "(302 -3004 128) (302 -3252 128) (302 -3252 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383030" + "plane" "(318 -3004 0) (318 -3252 0) (318 -3252 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383029" + "plane" "(318 -3004 128) (302 -3004 128) (302 -3004 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383028" + "plane" "(318 -3252 0) (302 -3252 0) (302 -3252 128)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "7419287" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "7419285" + side + { + "id" "383045" + "plane" "(-443 -3792 -110) (-318 -3792 -110) (-318 -3808 -110)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383044" + "plane" "(-443 -3808 -224) (-318 -3808 -224) (-318 -3792 -224)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383043" + "plane" "(-443 -3792 -110) (-443 -3808 -110) (-443 -3808 -224)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383042" + "plane" "(-318 -3792 -224) (-318 -3808 -224) (-318 -3808 -110)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383041" + "plane" "(-318 -3792 -110) (-443 -3792 -110) (-443 -3792 -224)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383040" + "plane" "(-318 -3808 -224) (-443 -3808 -224) (-443 -3808 -110)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "7419294" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "7419292" + side + { + "id" "383057" + "plane" "(-1280 -2896 -32) (-1056 -2896 -32) (-1056 -2912 -32)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383056" + "plane" "(-1280 -2912 -200) (-1056 -2912 -200) (-1056 -2896 -200)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383055" + "plane" "(-1280 -2896 -32) (-1280 -2912 -32) (-1280 -2912 -200)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383054" + "plane" "(-1056 -2896 -200) (-1056 -2912 -200) (-1056 -2912 -32)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383053" + "plane" "(-1056 -2896 -32) (-1280 -2896 -32) (-1280 -2896 -200)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383052" + "plane" "(-1056 -2912 -200) (-1280 -2912 -200) (-1280 -2912 -32)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "7419301" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "7419299" + side + { + "id" "383069" + "plane" "(-808 -3744 -46) (-584 -3744 -46) (-584 -3760 -46)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383068" + "plane" "(-808 -3760 -224) (-584 -3760 -224) (-584 -3744 -224)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383067" + "plane" "(-808 -3744 -46) (-808 -3760 -46) (-808 -3760 -224)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383066" + "plane" "(-584 -3744 -224) (-584 -3760 -224) (-584 -3760 -46)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383065" + "plane" "(-584 -3744 -46) (-808 -3744 -46) (-808 -3744 -224)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383064" + "plane" "(-584 -3760 -224) (-808 -3760 -224) (-808 -3760 -46)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +hidden +{ + entity + { + "id" "7419322" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-800 -6808 -36.5445" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "7419326" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-707 -6972 -36.5445" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "7419351" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "7419349" + side + { + "id" "383093" + "plane" "(1904 -5504 160) (2032 -5504 160) (2032 -5520 160)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383092" + "plane" "(1904 -5520 48) (2032 -5520 48) (2032 -5504 48)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383091" + "plane" "(1904 -5504 160) (1904 -5520 160) (1904 -5520 48)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383090" + "plane" "(2032 -5504 48) (2032 -5520 48) (2032 -5520 160)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383089" + "plane" "(2032 -5504 160) (1904 -5504 160) (1904 -5504 48)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383088" + "plane" "(2032 -5520 48) (1904 -5520 48) (1904 -5520 160)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11768]" + } +} +entity +{ + "id" "7419358" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "7419356" + side + { + "id" "383105" + "plane" "(1304 -5504 112) (1432 -5504 112) (1432 -5520 112)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383104" + "plane" "(1304 -5520 0) (1432 -5520 0) (1432 -5504 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383103" + "plane" "(1304 -5504 112) (1304 -5520 112) (1304 -5520 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383102" + "plane" "(1432 -5504 0) (1432 -5520 0) (1432 -5520 112)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383101" + "plane" "(1432 -5504 112) (1304 -5504 112) (1304 -5504 0)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383100" + "plane" "(1432 -5520 0) (1304 -5520 0) (1304 -5520 112)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "7419365" + "classname" "func_areaportal" + "PortalVersion" "1" + "StartOpen" "1" + solid + { + "id" "7419363" + side + { + "id" "383117" + "plane" "(1472 -5872 256) (1936 -5872 256) (1936 -5888 256)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383116" + "plane" "(1472 -5888 80) (1936 -5888 80) (1936 -5872 80)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383115" + "plane" "(1472 -5872 256) (1472 -5888 256) (1472 -5888 80)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383114" + "plane" "(1936 -5872 80) (1936 -5888 80) (1936 -5888 256)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383113" + "plane" "(1936 -5872 256) (1472 -5872 256) (1472 -5872 80)" + "material" "TOOLS/TOOLSAREAPORTAL" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383112" + "plane" "(1936 -5888 80) (1472 -5888 80) (1472 -5888 256)" + "material" "TOOLS/TOOLSAREAPORTAL" + "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 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "7419391" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-3.5 -3448.5 153" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7419383" + side + { + "id" "383141" + "plane" "(-32 -3448 156) (25 -3448 156) (25 -3449 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383140" + "plane" "(-32 -3449 150) (25 -3449 150) (25 -3448 150)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 103.992] 0.125" + "vaxis" "[0 -1 0 -8.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383139" + "plane" "(-32 -3448 156) (-32 -3449 156) (-32 -3449 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383138" + "plane" "(25 -3448 150) (25 -3449 150) (25 -3449 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 215.998] 0.125" + "vaxis" "[0 0 1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383137" + "plane" "(25 -3448 156) (-32 -3448 156) (-32 -3448 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383136" + "plane" "(25 -3449 150) (-32 -3449 150) (-32 -3449 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 103.992] 0.125" + "vaxis" "[0 0 1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -7768]" + } +} +hidden +{ + entity + { + "id" "7419419" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001b_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".8" + "origin" "14 -3448 171.104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7419455" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001b_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".8" + "origin" "-31 -3558 171" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7419498" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001b_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".8" + "origin" "268 -3448 171.104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7419561" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001b_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".8" + "origin" "276 -3558 171" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7419605" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".8" + "origin" "64 -3498.41 171" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7419640" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001b_512_low.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".7" + "origin" "-44 -3521 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7419644" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_512_low.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" ".7" + "origin" "-44 -3537 177" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7419813" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_inner_cone" "1" + "_light" "232 224 198 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "67.131 -3517.14 106.965" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "7419818" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "69 -3516 108.675" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "7419821" + "classname" "prop_static" + "angles" "0 312.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "67.131 -3517.32 152.925" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "7419825" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "67.131 -3517.14 94" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +hidden +{ + entity + { + "id" "7419830" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "67.3795 -3517.48 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "7419855" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_inner_cone" "1" + "_light" "232 224 198 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "227.131 -3517.14 106.965" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "7419860" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "229 -3516 108.675" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "7419863" + "classname" "prop_static" + "angles" "0 312.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "227.131 -3517.32 152.925" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "7419867" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "227.131 -3517.14 94" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +hidden +{ + entity + { + "id" "7419872" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "227.38 -3517.48 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "7419889" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-31.5 -3513 153" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7419880" + side + { + "id" "383153" + "plane" "(-32 -3577 156) (-32 -3449 156) (-31 -3449 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383152" + "plane" "(-32 -3449 150) (-32 -3577 150) (-31 -3577 150)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -104.004] 0.125" + "vaxis" "[1 0 0 55] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383151" + "plane" "(-32 -3577 150) (-32 -3449 150) (-32 -3449 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383150" + "plane" "(-31 -3449 150) (-31 -3577 150) (-31 -3577 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -104.004] 0.125" + "vaxis" "[0 0 1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383149" + "plane" "(-32 -3449 150) (-31 -3449 150) (-31 -3449 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "383148" + "plane" "(-31 -3577 150) (-32 -3577 150) (-32 -3577 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6768]" + } +} +hidden +{ + entity + { + "id" "7419896" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_noose_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "67 -3517.48 185" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7419904" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_noose_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "227 -3517.48 185" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7397617" + "classname" "func_detail" + solid + { + "id" "7398724" + side + { + "id" "382692" + "plane" "(24 -3448 48) (24 -3440 48) (168 -3440 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -402] 0.125" + "vaxis" "[0 -1 0 -99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382691" + "plane" "(24 -3440 0) (24 -3448 0) (176 -3448 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" "382690" + "plane" "(24 -3448 0) (24 -3440 0) (24 -3440 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" "382689" + "plane" "(168 -3440 0) (176 -3448 0) (176 -3448 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" "382688" + "plane" "(176 -3448 0) (24 -3448 0) (24 -3448 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -472] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382687" + "plane" "(24 -3440 0) (168 -3440 0) (168 -3440 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -472] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7398685" + side + { + "id" "382680" + "plane" "(168 -3304 48) (176 -3304 48) (176 -3448 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -402] 0.125" + "vaxis" "[1 0 0 -37] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382679" + "plane" "(168 -3440 0) (176 -3448 0) (176 -3304 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" "382678" + "plane" "(176 -3304 0) (176 -3448 0) (176 -3448 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 359.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382677" + "plane" "(168 -3304 0) (176 -3304 0) (176 -3304 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -472] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382676" + "plane" "(176 -3448 0) (168 -3440 0) (168 -3440 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" "382675" + "plane" "(168 -3440 0) (168 -3304 0) (168 -3304 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -472] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "7397626" + "classname" "func_detail" + solid + { + "id" "7397624" + side + { + "id" "382395" + "plane" "(152 -3569 -48) (302 -3569 -48) (302 -3577 -48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -402] 0.125" + "vaxis" "[0 -1 0 28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382394" + "plane" "(152 -3577 -96) (302 -3577 -96) (302 -3569 -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" "382393" + "plane" "(152 -3569 -48) (152 -3577 -48) (152 -3577 -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" "382392" + "plane" "(302 -3569 -96) (302 -3577 -96) (302 -3577 -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" "382391" + "plane" "(302 -3569 -48) (152 -3569 -48) (152 -3569 -96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382390" + "plane" "(302 -3577 -96) (152 -3577 -96) (152 -3577 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "7397895" + "classname" "prop_static" + "angles" "0 142 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "300 -3576 105.888" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7397921" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "162.5 -2960.5 153" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7397915" + side + { + "id" "382443" + "plane" "(24 -2961 156) (24 -2960 156) (301 -2960 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382442" + "plane" "(24 -2960 150) (24 -2961 150) (301 -2961 150)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -232.008] 0.125" + "vaxis" "[0 -1 0 55.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382441" + "plane" "(24 -2961 150) (24 -2960 150) (24 -2960 156)" + "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" "382440" + "plane" "(301 -2960 150) (301 -2961 150) (301 -2961 156)" + "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" "382439" + "plane" "(24 -2960 150) (301 -2960 150) (301 -2960 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382438" + "plane" "(301 -2961 150) (24 -2961 150) (24 -2961 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -232.008] 0.125" + "vaxis" "[0 0 1 -49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +hidden +{ + entity + { + "id" "7397956" + "classname" "prop_static" + "angles" "0 109.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "95.942 -3073.88 155.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +hidden +{ + entity + { + "id" "7397960" + "classname" "prop_static" + "angles" "0 109.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "191.411 -3264.8 155.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +hidden +{ + entity + { + "id" "7397964" + "classname" "prop_static" + "angles" "0 109.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "256 -3040 155.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 6000]" + } + } +} +hidden +{ + entity + { + "id" "7398267" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "453 -2915 -40.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398272" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "429 -2915 -24.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398360" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "405 -2915 -9" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7398408" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "26 -3128 141.102" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +entity +{ + "id" "7398412" + "classname" "light" + "_light" "174 206 174 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "38 -3128.91 142" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "7398417" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".5" + "spawnflags" "1" + "origin" "29 -3129 142" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +hidden +{ + entity + { + "id" "7398468" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "300 -3128 141.102" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +entity +{ + "id" "7398472" + "classname" "light" + "_light" "174 206 174 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "288 -3127.09 142" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "7398477" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".5" + "spawnflags" "1" + "origin" "297 -3127 142" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +hidden +{ + entity + { + "id" "7398544" + "classname" "prop_static" + "angles" "0 54 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-31 -3578 106" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7398584" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "24.5 -3029 153" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7398580" + side + { + "id" "382614" + "plane" "(24 -3448 156) (24 -2961 156) (25 -2961 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382613" + "plane" "(24 -2961 150) (24 -3448 150) (25 -3448 150)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 215.998] 0.125" + "vaxis" "[1 0 0 55] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382612" + "plane" "(24 -3448 150) (24 -2961 150) (24 -2961 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -60] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382611" + "plane" "(25 -2961 150) (25 -3448 150) (25 -3448 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 215.998] 0.125" + "vaxis" "[0 0 1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382610" + "plane" "(24 -2961 150) (25 -2961 150) (25 -2961 156)" + "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" "382609" + "plane" "(25 -3448 150) (24 -3448 150) (24 -3448 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -88.0081] 0.125" + "vaxis" "[0 0 1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +hidden +{ + entity + { + "id" "7398598" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "160 -3056 156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7398617" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "113 -3576.5 153" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7398611" + side + { + "id" "382632" + "plane" "(-31 -3577 156) (-31 -3576 156) (302 -3576 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382631" + "plane" "(-31 -3576 150) (-31 -3577 150) (302 -3577 150)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 87.8911] 0.125" + "vaxis" "[0 1 0 -0.933594] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382630" + "plane" "(-31 -3577 150) (-31 -3576 150) (-31 -3576 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382629" + "plane" "(302 -3576 150) (302 -3577 150) (302 -3577 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382628" + "plane" "(-31 -3576 150) (302 -3576 150) (302 -3576 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 87.8911] 0.125" + "vaxis" "[0 0 1 -48.9289] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382627" + "plane" "(302 -3577 150) (-31 -3577 150) (-31 -3577 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +hidden +{ + entity + { + "id" "7398762" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "406 -3064 -9" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7398766" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "430 -3064 -24.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398770" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "454 -3064 -40.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398846" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "406 -3215 -9" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7398850" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "430 -3215 -24.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398854" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "454 -3215 -40.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398894" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "466 -3226 -40.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398898" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "466 -3250 -24.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398902" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "466 -3274 -9" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7398954" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "854 -3226 -40.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398958" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "854 -3250 -24.9718" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7398962" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "854 -3274 -9" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +entity +{ + "id" "7378640" + "classname" "func_detail" + solid + { + "id" "7223185" + side + { + "id" "382250" + "plane" "(184 -3561 -96) (184 -3456 -96) (294 -3456 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -832] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382249" + "plane" "(294 -3456 -112) (184 -3456 -112) (184 -3561 -112)" + "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" "382248" + "plane" "(184 -3456 -112) (294 -3456 -112) (294 -3456 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -416] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382247" + "plane" "(294 -3456 -112) (294 -3561 -112) (294 -3561 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382246" + "plane" "(184 -3561 -112) (184 -3456 -112) (184 -3456 -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" "382245" + "plane" "(294 -3561 -112) (184 -3561 -112) (184 -3561 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -416] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7223176" + side + { + "id" "382256" + "plane" "(176 -3569 -96) (176 -3448 -96) (184 -3456 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[1 0 0 35] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382255" + "plane" "(176 -3569 -112) (184 -3561 -112) (184 -3456 -112)" + "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" "382254" + "plane" "(176 -3448 -112) (176 -3448 -96) (176 -3569 -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" "382253" + "plane" "(176 -3569 -112) (176 -3569 -96) (184 -3561 -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" "382252" + "plane" "(184 -3456 -112) (184 -3456 -96) (176 -3448 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -576] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382251" + "plane" "(184 -3561 -112) (184 -3561 -96) (184 -3456 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7223184" + side + { + "id" "382262" + "plane" "(176 -3569 -96) (184 -3561 -96) (294 -3561 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -832] 0.125" + "vaxis" "[0 -1 0 -41] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382261" + "plane" "(302 -3569 -112) (294 -3561 -112) (184 -3561 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382260" + "plane" "(176 -3569 -112) (176 -3569 -96) (302 -3569 -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" "382259" + "plane" "(302 -3569 -112) (302 -3569 -96) (294 -3561 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382258" + "plane" "(184 -3561 -112) (184 -3561 -96) (176 -3569 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382257" + "plane" "(294 -3561 -112) (294 -3561 -96) (184 -3561 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -416] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7223165" + side + { + "id" "382268" + "plane" "(294 -3456 -96) (184 -3456 -96) (176 -3448 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -832] 0.125" + "vaxis" "[0 -1 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382267" + "plane" "(184 -3456 -112) (293.973 -3456 -112) (301.973 -3448 -112)" + "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" "382266" + "plane" "(176 -3448 -112) (176 -3448 -96) (184 -3456 -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" "382265" + "plane" "(293.973 -3456 -112) (294 -3456 -96) (302 -3448 -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" "382264" + "plane" "(301.973 -3448 -112) (302 -3448 -96) (176 -3448 -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" "382263" + "plane" "(184 -3456 -112) (184 -3456 -96) (294 -3456 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -416] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7223171" + side + { + "id" "382274" + "plane" "(302 -3569 -96) (294 -3561 -96) (294 -3456 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[1 0 0 -18] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382273" + "plane" "(302 -3569 -112) (302 -3448 -112) (294 -3456 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382272" + "plane" "(302 -3569 -112) (302 -3569 -96) (302 -3448 -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" "382271" + "plane" "(294 -3561 -112) (294 -3561 -96) (302 -3569 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382270" + "plane" "(302 -3448 -112) (302 -3448 -96) (294 -3456 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -632] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382269" + "plane" "(294 -3456 -112) (294 -3456 -96) (294 -3561 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "7378688" + "classname" "func_detail" + solid + { + "id" "7359488" + side + { + "id" "382287" + "plane" "(384 -3296 0) (384 -3216 0) (400 -3216 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382286" + "plane" "(384 -3216 -40) (384 -3296 -40) (464 -3296 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382285" + "plane" "(384 -3296 -40) (384 -3216 -40) (384 -3216 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" "382284" + "plane" "(464 -3280 -40) (464 -3296 -40) (464 -3296 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" "382283" + "plane" "(384 -3216 -40) (400 -3216 -40) (400 -3216 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" "382282" + "plane" "(464 -3296 -40) (384 -3296 -40) (384 -3296 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" "382281" + "plane" "(400 -3216 -40) (464 -3280 -40) (464 -3280 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.707107 -0.707107 0 -196.262] 0.125" + "vaxis" "[0 0 -1 279] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7359364" + side + { + "id" "382293" + "plane" "(464 -3264 -8) (464 -3280 -8) (400 -3216 -8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.707107 -0.707107 0 -38] 0.125" + "vaxis" "[0.707107 0.707107 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382292" + "plane" "(464 -3280 -40) (464 -3264 -40) (416 -3216 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382291" + "plane" "(400 -3216 -8) (400 -3216 -40) (416 -3216 -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" "382290" + "plane" "(464 -3280 -40) (464 -3280 -8) (464 -3264 -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" "382289" + "plane" "(416 -3216 -8) (416 -3216 -40) (464 -3264 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.707107 -0.707107 0 -105.754] 0.125" + "vaxis" "[0 0 -1 100] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382288" + "plane" "(400 -3216 -40) (400 -3216 -8) (464 -3280 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7359358" + side + { + "id" "382299" + "plane" "(432 -3216 -16) (464 -3248 -16) (464 -3264 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.707107 -0.707107 0 -90] 0.125" + "vaxis" "[0.707107 0.707107 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382298" + "plane" "(464 -3248 -40) (432 -3216 -40) (416 -3216 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382297" + "plane" "(464 -3264 -16) (464 -3264 -40) (416 -3216 -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" "382296" + "plane" "(464 -3248 -40) (464 -3248 -16) (432 -3216 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.707107 -0.707107 0 -15.2422] 0.125" + "vaxis" "[0 0 -1 134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382295" + "plane" "(416 -3216 -16) (416 -3216 -40) (432 -3216 -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" "382294" + "plane" "(464 -3264 -40) (464 -3264 -16) (464 -3248 -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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7359353" + side + { + "id" "382305" + "plane" "(448 -3216 -24) (464 -3232 -24) (464 -3248 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.707107 -0.707107 0 -90] 0.125" + "vaxis" "[0.707107 0.707107 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382304" + "plane" "(464 -3232 -40) (448 -3216 -40) (432 -3216 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382303" + "plane" "(464 -3248 -24) (464 -3248 -40) (432 -3216 -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" "382302" + "plane" "(464 -3232 -40) (464 -3232 -24) (448 -3216 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.707107 -0.707107 0 -436.73] 0.125" + "vaxis" "[0 0 -1 237] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382301" + "plane" "(432 -3216 -24) (432 -3216 -40) (448 -3216 -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" "382300" + "plane" "(464 -3248 -40) (464 -3248 -24) (464 -3232 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7359266" + side + { + "id" "382311" + "plane" "(432 -2912 -24) (448 -2912 -24) (448 -3216 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 -1 0 -26] 0.125" + "vaxis" "[-1 0 0 750] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382310" + "plane" "(448 -2912 -40) (432 -2912 -40) (432 -3216 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 63.9988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382309" + "plane" "(432 -2912 -40) (448 -2912 -40) (448 -2912 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382308" + "plane" "(448 -3216 -40) (432 -3216 -40) (432 -3216 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382307" + "plane" "(448 -2912 -40) (448 -3216 -40) (448 -3216 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 -1 0 -73] 0.125" + "vaxis" "[0 0 -1 237] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382306" + "plane" "(432 -3216 -40) (432 -2912 -40) (432 -2912 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 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" "7359267" + side + { + "id" "382317" + "plane" "(416 -2912 -16) (432 -2912 -16) (432 -3216 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 -1 0 41] 0.125" + "vaxis" "[-1 0 0 750] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382316" + "plane" "(432 -2912 -40) (416 -2912 -40) (416 -3216 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 63.9988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382315" + "plane" "(416 -2912 -40) (432 -2912 -40) (432 -2912 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382314" + "plane" "(432 -3216 -40) (416 -3216 -40) (416 -3216 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382313" + "plane" "(432 -2912 -40) (432 -3216 -40) (432 -3216 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 -1 0 -73] 0.125" + "vaxis" "[0 0 -1 134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382312" + "plane" "(416 -3216 -40) (416 -2912 -40) (416 -2912 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 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" "7359268" + side + { + "id" "382323" + "plane" "(400 -2912 -8) (416 -2912 -8) (416 -3216 -8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 -1 0 26] 0.125" + "vaxis" "[-1 0 0 750] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382322" + "plane" "(416 -2912 -40) (400 -2912 -40) (400 -3216 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 63.9988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382321" + "plane" "(400 -2912 -40) (416 -2912 -40) (416 -2912 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382320" + "plane" "(416 -3216 -40) (400 -3216 -40) (400 -3216 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382319" + "plane" "(416 -2912 -40) (416 -3216 -40) (416 -3216 -8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 -1 0 -73] 0.125" + "vaxis" "[0 0 -1 100] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382318" + "plane" "(400 -3216 -40) (400 -2912 -40) (400 -2912 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 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" "7359269" + side + { + "id" "382329" + "plane" "(384 -2912 0) (400 -2912 0) (400 -3216 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 -1 0 32] 0.125" + "vaxis" "[-1 0 0 750] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382328" + "plane" "(400 -2912 -40) (384 -2912 -40) (384 -3216 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 63.9988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382327" + "plane" "(384 -2912 -40) (400 -2912 -40) (400 -2912 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382326" + "plane" "(400 -3216 -40) (384 -3216 -40) (384 -3216 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382325" + "plane" "(400 -2912 -40) (400 -3216 -40) (400 -3216 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 -1 0 -73] 0.125" + "vaxis" "[0 0 -1 279] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382324" + "plane" "(384 -3216 -40) (384 -2912 -40) (384 -2912 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 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" "7359265" + side + { + "id" "382335" + "plane" "(464 -2912 -32) (464 -3232 -32) (448 -3216 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 -1 0 109] 0.125" + "vaxis" "[-1 0 0 750] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382334" + "plane" "(448 -2912 -40) (448 -3216 -40) (464 -3232 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[-1 0 0 63.9988] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382333" + "plane" "(464 -2912 -40) (464 -2912 -32) (448 -2912 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382332" + "plane" "(448 -3216 -40) (448 -3216 -32) (464 -3232 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382331" + "plane" "(464 -3232 -40) (464 -3232 -32) (464 -2912 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 -1 0 -73] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "382330" + "plane" "(448 -2912 -40) (448 -2912 -32) (448 -3216 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +hidden +{ + entity + { + "id" "7359348" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "637 -3450 222" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "7339447" + "classname" "func_detail" + solid + { + "id" "7339695" + side + { + "id" "381711" + "plane" "(-80 -3312 224) (-80 -3296 224) (-56 -3272 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" "381710" + "plane" "(-80 -3296 160) (-80 -3312 160) (-48 -3312 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381709" + "plane" "(-80 -3312 160) (-80 -3296 160) (-80 -3296 224)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 1 0 -766] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381708" + "plane" "(-56 -3272 160) (-48 -3272 160) (-48 -3272 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" "381707" + "plane" "(-48 -3312 160) (-80 -3312 160) (-80 -3312 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" "381706" + "plane" "(-80 -3296 160) (-56 -3272 160) (-56 -3272 224)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.707107 0.707107 0 -868.455] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381705" + "plane" "(-48 -3272 160) (-48 -3312 160) (-48 -3312 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "7339463" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "310 -3128 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7339467" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "310 -3128 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7339520" + "classname" "prop_static" + "angles" "0 270.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "635 -3409 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "7339528" + "classname" "prop_static" + "angles" "0 270.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "758 -3408 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "7339560" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "660 -3433 0.250004" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7339564" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "660 -3433 0.250004" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "7339595" + "classname" "env_soundscape" + "radius" "86" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "240 -3129 13" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -11768]" + } +} +entity +{ + "id" "7339617" + "classname" "env_soundscape" + "radius" "86" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "376 -3129 10" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +hidden +{ + entity + { + "id" "7339645" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-40 -3129 0.250019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7339649" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-40 -3129 0.250019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7339685" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "15 -3129 0.250019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7339689" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "15 -3129 0.250019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7339706" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-71 -2976 -4.00207" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +entity +{ + "id" "7300626" + "classname" "func_detail" + solid + { + "id" "7300644" + side + { + "id" "381463" + "plane" "(176 -3569 -96) (164 -3569 -96) (164 -3448 -96)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 320] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381462" + "plane" "(164 -3448 -104) (164 -3448 -96) (164 -3569 -96)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -640] 0.125" + "vaxis" "[0 1 0 63.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381461" + "plane" "(164 -3569 -104) (164 -3569 -96) (176 -3569 -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" "381460" + "plane" "(176 -3448 -96) (164 -3448 -96) (164 -3448 -104)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381459" + "plane" "(164 -3448 -104) (164 -3569 -104) (176 -3569 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 42.1112] 0.25" + "vaxis" "[0 1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300645" + side + { + "id" "381468" + "plane" "(164 -3569 -104) (152 -3569 -104) (152 -3448 -104)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 320] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381467" + "plane" "(152 -3448 -112) (152 -3448 -104) (152 -3569 -104)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381466" + "plane" "(152 -3569 -112) (152 -3569 -104) (164 -3569 -104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381465" + "plane" "(164 -3448 -104) (152 -3448 -104) (152 -3448 -112)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381464" + "plane" "(152 -3448 -112) (152 -3569 -112) (164 -3569 -104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 42.1112] 0.25" + "vaxis" "[0 1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300643" + side + { + "id" "381458" + "plane" "(152 -3569 -112) (140 -3569 -112) (140 -3448 -112)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 320] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381457" + "plane" "(140 -3448 -120) (140 -3448 -112) (140 -3569 -112)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381456" + "plane" "(140 -3569 -120) (140 -3569 -112) (152 -3569 -112)" + "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" "381455" + "plane" "(152 -3448 -112) (140 -3448 -112) (140 -3448 -120)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381454" + "plane" "(140 -3448 -120) (140 -3569 -120) (152 -3569 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 42.1112] 0.25" + "vaxis" "[0 1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300630" + side + { + "id" "381393" + "plane" "(-4 -3569 -216) (-16 -3569 -216) (-16 -3448 -216)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381392" + "plane" "(-16 -3448 -224) (-16 -3448 -216) (-16 -3569 -216)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -640] 0.125" + "vaxis" "[0 1 0 63.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381391" + "plane" "(-16 -3569 -224) (-16 -3569 -216) (-4 -3569 -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" "381390" + "plane" "(-4 -3448 -216) (-16 -3448 -216) (-16 -3448 -224)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381389" + "plane" "(-16 -3448 -224) (-16 -3569 -224) (-4 -3569 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[-0.83205 0 -0.5547 -44.9608] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300631" + side + { + "id" "381398" + "plane" "(8 -3569 -208) (-4 -3569 -208) (-4 -3448 -208)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381397" + "plane" "(-4 -3448 -216) (-4 -3448 -208) (-4 -3569 -208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381396" + "plane" "(-4 -3569 -216) (-4 -3569 -208) (8 -3569 -208)" + "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" "381395" + "plane" "(8 -3448 -208) (-4 -3448 -208) (-4 -3448 -216)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381394" + "plane" "(-4 -3448 -216) (-4 -3569 -216) (8 -3569 -208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[-0.83205 0 -0.5547 -44.9608] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300632" + side + { + "id" "381403" + "plane" "(20 -3569 -200) (8 -3569 -200) (8 -3448 -200)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381402" + "plane" "(8 -3448 -208) (8 -3448 -200) (8 -3569 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381401" + "plane" "(8 -3569 -208) (8 -3569 -200) (20 -3569 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381400" + "plane" "(20 -3448 -200) (8 -3448 -200) (8 -3448 -208)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381399" + "plane" "(8 -3448 -208) (8 -3569 -208) (20 -3569 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[-0.83205 0 -0.5547 -44.9608] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300633" + side + { + "id" "381408" + "plane" "(32 -3569 -192) (20 -3569 -192) (20 -3448 -192)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381407" + "plane" "(20 -3448 -200) (20 -3448 -192) (20 -3569 -192)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -94] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381406" + "plane" "(20 -3569 -200) (20 -3569 -192) (32 -3569 -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" "381405" + "plane" "(32 -3448 -192) (20 -3448 -192) (20 -3448 -200)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381404" + "plane" "(20 -3448 -200) (20 -3569 -200) (32 -3569 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[-0.83205 0 -0.5547 -44.9608] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300634" + side + { + "id" "381413" + "plane" "(44 -3569 -184) (32 -3569 -184) (32 -3448 -184)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381412" + "plane" "(32 -3448 -192) (32 -3448 -184) (32 -3569 -184)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381411" + "plane" "(32 -3569 -192) (32 -3569 -184) (44 -3569 -184)" + "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" "381410" + "plane" "(44 -3448 -184) (32 -3448 -184) (32 -3448 -192)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381409" + "plane" "(32 -3448 -192) (32 -3569 -192) (44 -3569 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[-0.83205 0 -0.5547 -44.9608] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300635" + side + { + "id" "381418" + "plane" "(56 -3569 -176) (44 -3569 -176) (44 -3448 -176)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381417" + "plane" "(44 -3448 -184) (44 -3448 -176) (44 -3569 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381416" + "plane" "(44 -3569 -184) (44 -3569 -176) (56 -3569 -176)" + "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" "381415" + "plane" "(56 -3448 -176) (44 -3448 -176) (44 -3448 -184)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381414" + "plane" "(44 -3448 -184) (44 -3569 -184) (56 -3569 -176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[-0.83205 0 -0.5547 -44.9608] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300636" + side + { + "id" "381423" + "plane" "(68 -3569 -168) (56 -3569 -168) (56 -3448 -168)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381422" + "plane" "(56 -3448 -176) (56 -3448 -168) (56 -3569 -168)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381421" + "plane" "(56 -3569 -176) (56 -3569 -168) (68 -3569 -168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381420" + "plane" "(68 -3448 -168) (56 -3448 -168) (56 -3448 -176)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381419" + "plane" "(56 -3448 -176) (56 -3569 -176) (68 -3569 -168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[-0.83205 0 -0.5547 -44.9608] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300637" + side + { + "id" "381428" + "plane" "(80 -3569 -160) (68 -3569 -160) (68 -3448 -160)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 320] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381427" + "plane" "(68 -3448 -168) (68 -3448 -160) (68 -3569 -160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -97] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381426" + "plane" "(68 -3569 -168) (68 -3569 -160) (80 -3569 -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" "381425" + "plane" "(80 -3448 -160) (68 -3448 -160) (68 -3448 -168)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381424" + "plane" "(68 -3448 -168) (68 -3569 -168) (80 -3569 -160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 42.1112] 0.25" + "vaxis" "[0 1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300638" + side + { + "id" "381433" + "plane" "(92 -3569 -152) (80 -3569 -152) (80 -3448 -152)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 320] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381432" + "plane" "(80 -3448 -160) (80 -3448 -152) (80 -3569 -152)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -34] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381431" + "plane" "(80 -3569 -160) (80 -3569 -152) (92 -3569 -152)" + "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" "381430" + "plane" "(92 -3448 -152) (80 -3448 -152) (80 -3448 -160)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381429" + "plane" "(80 -3448 -160) (80 -3569 -160) (92 -3569 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 42.1112] 0.25" + "vaxis" "[0 1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300639" + side + { + "id" "381438" + "plane" "(104 -3569 -144) (92 -3569 -144) (92 -3448 -144)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 320] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381437" + "plane" "(92 -3448 -152) (92 -3448 -144) (92 -3569 -144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381436" + "plane" "(92 -3569 -152) (92 -3569 -144) (104 -3569 -144)" + "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" "381435" + "plane" "(104 -3448 -144) (92 -3448 -144) (92 -3448 -152)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381434" + "plane" "(92 -3448 -152) (92 -3569 -152) (104 -3569 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 42.1112] 0.25" + "vaxis" "[0 1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300640" + side + { + "id" "381443" + "plane" "(116 -3569 -136) (104 -3569 -136) (104 -3448 -136)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 320] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381442" + "plane" "(104 -3448 -144) (104 -3448 -136) (104 -3569 -136)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381441" + "plane" "(104 -3569 -144) (104 -3569 -136) (116 -3569 -136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381440" + "plane" "(116 -3448 -136) (104 -3448 -136) (104 -3448 -144)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381439" + "plane" "(104 -3448 -144) (104 -3569 -144) (116 -3569 -136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 42.1112] 0.25" + "vaxis" "[0 1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300641" + side + { + "id" "381448" + "plane" "(128 -3569 -128) (116 -3569 -128) (116 -3448 -128)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 320] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381447" + "plane" "(116 -3448 -136) (116 -3448 -128) (116 -3569 -128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381446" + "plane" "(116 -3569 -136) (116 -3569 -128) (128 -3569 -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" "381445" + "plane" "(128 -3448 -128) (116 -3448 -128) (116 -3448 -136)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381444" + "plane" "(116 -3448 -136) (116 -3569 -136) (128 -3569 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 42.1112] 0.25" + "vaxis" "[0 1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300642" + side + { + "id" "381453" + "plane" "(140 -3569 -120) (128 -3569 -120) (128 -3448 -120)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 320] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381452" + "plane" "(128 -3448 -128) (128 -3448 -120) (128 -3569 -120)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381451" + "plane" "(128 -3569 -128) (128 -3569 -120) (140 -3569 -120)" + "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" "381450" + "plane" "(140 -3448 -120) (128 -3448 -120) (128 -3448 -128)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[1 0 0 -352] 0.125" + "vaxis" "[0 0 -1 -448] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381449" + "plane" "(128 -3448 -128) (128 -3569 -128) (140 -3569 -120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.83205 0 0.5547 42.1112] 0.25" + "vaxis" "[0 1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "187 128 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "187 128 0" + "groupid" "7359143" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +entity +{ + "id" "7300843" + "classname" "func_detail" + solid + { + "id" "7300858" + side + { + "id" "381623" + "plane" "(302 -3316 0) (176 -3316 0) (176 -3304 0)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 712] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381622" + "plane" "(176 -3316 -8) (176 -3316 0) (302 -3316 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 384] 0.125" + "vaxis" "[-1 0 0 111.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381621" + "plane" "(302 -3316 -8) (302 -3316 0) (302 -3304 0)" + "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" "381620" + "plane" "(176 -3304 0) (176 -3316 0) (176 -3316 -8)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381619" + "plane" "(302 -3304 0) (176 -3304 0) (176 -3316 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 -19.5119] 0.25" + "vaxis" "[-1 0 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300857" + side + { + "id" "381618" + "plane" "(302 -3328 -8) (176 -3328 -8) (176 -3316 -8)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 712] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381617" + "plane" "(176 -3328 -16) (176 -3328 -8) (302 -3328 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381616" + "plane" "(302 -3328 -16) (302 -3328 -8) (302 -3316 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381615" + "plane" "(176 -3316 -8) (176 -3328 -8) (176 -3328 -16)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381614" + "plane" "(302 -3316 -8) (176 -3316 -8) (176 -3328 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 -19.5119] 0.25" + "vaxis" "[-1 0 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300856" + side + { + "id" "381613" + "plane" "(302 -3340 -16) (176 -3340 -16) (176 -3328 -16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 712] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381612" + "plane" "(176 -3340 -24) (176 -3340 -16) (302 -3340 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -97] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381611" + "plane" "(302 -3340 -24) (302 -3340 -16) (302 -3328 -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" "381610" + "plane" "(176 -3328 -16) (176 -3340 -16) (176 -3340 -24)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381609" + "plane" "(302 -3328 -16) (176 -3328 -16) (176 -3340 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 -19.5119] 0.25" + "vaxis" "[-1 0 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300847" + side + { + "id" "381568" + "plane" "(302 -3448 -88) (176 -3448 -88) (176 -3436 -88)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[1 0 0 712] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381567" + "plane" "(176 -3448 -96) (176 -3448 -88) (302 -3448 -88)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 384] 0.125" + "vaxis" "[-1 0 0 111.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381566" + "plane" "(302 -3448 -96) (302 -3448 -88) (302 -3436 -88)" + "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" "381565" + "plane" "(176 -3436 -88) (176 -3448 -88) (176 -3448 -96)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381564" + "plane" "(302 -3436 -88) (176 -3436 -88) (176 -3448 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 20] 0.25" + "vaxis" "[0 -0.83205 -0.5547 16.6623] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300848" + side + { + "id" "381573" + "plane" "(302 -3436 -80) (176 -3436 -80) (176 -3424 -80)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[1 0 0 712] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381572" + "plane" "(176 -3436 -88) (176 -3436 -80) (302 -3436 -80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -97] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381571" + "plane" "(302 -3436 -88) (302 -3436 -80) (302 -3424 -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" "381570" + "plane" "(176 -3424 -80) (176 -3436 -80) (176 -3436 -88)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381569" + "plane" "(302 -3424 -80) (176 -3424 -80) (176 -3436 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 20] 0.25" + "vaxis" "[0 -0.83205 -0.5547 16.6623] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300849" + side + { + "id" "381578" + "plane" "(302 -3424 -72) (176 -3424 -72) (176 -3412 -72)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[1 0 0 712] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381577" + "plane" "(176 -3424 -80) (176 -3424 -72) (302 -3424 -72)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381576" + "plane" "(302 -3424 -80) (302 -3424 -72) (302 -3412 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381575" + "plane" "(176 -3412 -72) (176 -3424 -72) (176 -3424 -80)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381574" + "plane" "(302 -3412 -72) (176 -3412 -72) (176 -3424 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 20] 0.25" + "vaxis" "[0 -0.83205 -0.5547 16.6623] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300850" + side + { + "id" "381583" + "plane" "(302 -3412 -64) (176 -3412 -64) (176 -3400 -64)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[1 0 0 712] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381582" + "plane" "(176 -3412 -72) (176 -3412 -64) (302 -3412 -64)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -97] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381581" + "plane" "(302 -3412 -72) (302 -3412 -64) (302 -3400 -64)" + "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" "381580" + "plane" "(176 -3400 -64) (176 -3412 -64) (176 -3412 -72)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381579" + "plane" "(302 -3400 -64) (176 -3400 -64) (176 -3412 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 20] 0.25" + "vaxis" "[0 -0.83205 -0.5547 16.6623] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300851" + side + { + "id" "381588" + "plane" "(302 -3400 -56) (176 -3400 -56) (176 -3388 -56)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[1 0 0 712] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381587" + "plane" "(176 -3400 -64) (176 -3400 -56) (302 -3400 -56)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381586" + "plane" "(302 -3400 -64) (302 -3400 -56) (302 -3388 -56)" + "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" "381585" + "plane" "(176 -3388 -56) (176 -3400 -56) (176 -3400 -64)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381584" + "plane" "(302 -3388 -56) (176 -3388 -56) (176 -3400 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 20] 0.25" + "vaxis" "[0 -0.83205 -0.5547 16.6623] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300852" + side + { + "id" "381593" + "plane" "(302 -3388 -48) (176 -3388 -48) (176 -3376 -48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[1 0 0 712] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381592" + "plane" "(176 -3388 -56) (176 -3388 -48) (302 -3388 -48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381591" + "plane" "(302 -3388 -56) (302 -3388 -48) (302 -3376 -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" "381590" + "plane" "(176 -3376 -48) (176 -3388 -48) (176 -3388 -56)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381589" + "plane" "(302 -3376 -48) (176 -3376 -48) (176 -3388 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 20] 0.25" + "vaxis" "[0 -0.83205 -0.5547 16.6623] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300853" + side + { + "id" "381598" + "plane" "(302 -3376 -40) (176 -3376 -40) (176 -3364 -40)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[1 0 0 712] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381597" + "plane" "(176 -3376 -48) (176 -3376 -40) (302 -3376 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381596" + "plane" "(302 -3376 -48) (302 -3376 -40) (302 -3364 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381595" + "plane" "(176 -3364 -40) (176 -3376 -40) (176 -3376 -48)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381594" + "plane" "(302 -3364 -40) (176 -3364 -40) (176 -3376 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 20] 0.25" + "vaxis" "[0 -0.83205 -0.5547 16.6623] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300854" + side + { + "id" "381603" + "plane" "(302 -3364 -32) (176 -3364 -32) (176 -3352 -32)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 712] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381602" + "plane" "(176 -3364 -40) (176 -3364 -32) (302 -3364 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -97] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381601" + "plane" "(302 -3364 -40) (302 -3364 -32) (302 -3352 -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" + } + side + { + "id" "381600" + "plane" "(176 -3352 -32) (176 -3364 -32) (176 -3364 -40)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381599" + "plane" "(302 -3352 -32) (176 -3352 -32) (176 -3364 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 -19.5119] 0.25" + "vaxis" "[-1 0 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7300855" + side + { + "id" "381608" + "plane" "(302 -3352 -24) (176 -3352 -24) (176 -3340 -24)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 712] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381607" + "plane" "(176 -3352 -32) (176 -3352 -24) (302 -3352 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 272.002] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381606" + "plane" "(302 -3352 -32) (302 -3352 -24) (302 -3340 -24)" + "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" "381605" + "plane" "(176 -3340 -24) (176 -3352 -24) (176 -3352 -32)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -544] 0.125" + "vaxis" "[0 0 -1 576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "381604" + "plane" "(302 -3340 -24) (176 -3340 -24) (176 -3352 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 -19.5119] 0.25" + "vaxis" "[-1 0 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +hidden +{ + entity + { + "id" "7242548" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-380 -3800 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "7242960" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-270 -4078 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7222513" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_vending_machine/nuke_vending_machine.mdl" + "renderamt" "255" + "rendercolor" "144 144 144" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1757 -3406 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7222567" + "classname" "prop_dynamic" + "angles" "0 180 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "2399.5 -3323 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7222571" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2399.5 -3323 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7222605" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "2473 -3340 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "7222625" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1060 -2596 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7222694" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1276 -2596 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7222698" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_144.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1277 -2742 -120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7222702" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_72.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1277 -2814 -168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "7222706" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_cap.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1277 -2814 -136" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "7202938" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-697 -7401 -36.5445" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "7202942" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-751 -7180 -36.5445" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "7202946" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-753 -7688 -36.5445" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "7183092" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2661 -3057 33.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "6886530" + side + { + "id" "380417" + "plane" "(2688 -3083 39) (2688 -3030 39) (2689 -3030 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -104] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380416" + "plane" "(2688 -3030 28) (2688 -3083 28) (2689 -3083 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380415" + "plane" "(2688 -3083 28) (2688 -3030 28) (2688 -3030 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 -1 0 -28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380414" + "plane" "(2689 -3030 28) (2689 -3083 28) (2689 -3083 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380413" + "plane" "(2688 -3030 28) (2689 -3030 28) (2689 -3030 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380412" + "plane" "(2689 -3083 28) (2688 -3083 28) (2688 -3083 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886528" + side + { + "id" "380423" + "plane" "(2634 -3084 39) (2634 -3083 39) (2689 -3083 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380422" + "plane" "(2634 -3083 28) (2634 -3084 28) (2689 -3084 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380421" + "plane" "(2634 -3084 28) (2634 -3083 28) (2634 -3083 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380420" + "plane" "(2689 -3083 28) (2689 -3084 28) (2689 -3084 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380419" + "plane" "(2634 -3083 28) (2689 -3083 28) (2689 -3083 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380418" + "plane" "(2689 -3084 28) (2634 -3084 28) (2634 -3084 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886531" + side + { + "id" "380429" + "plane" "(2634 -3031 39) (2634 -3030 39) (2688 -3030 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -104] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380428" + "plane" "(2634 -3030 28) (2634 -3031 28) (2688 -3031 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380427" + "plane" "(2634 -3031 28) (2634 -3030 28) (2634 -3030 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380426" + "plane" "(2688 -3030 28) (2688 -3031 28) (2688 -3031 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380425" + "plane" "(2634 -3030 28) (2688 -3030 28) (2688 -3030 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380424" + "plane" "(2688 -3031 28) (2634 -3031 28) (2634 -3031 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886529" + side + { + "id" "380435" + "plane" "(2633 -3084 39) (2633 -3030 39) (2634 -3030 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -104] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380434" + "plane" "(2633 -3030 28) (2633 -3084 28) (2634 -3084 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380433" + "plane" "(2633 -3084 28) (2633 -3030 28) (2633 -3030 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380432" + "plane" "(2634 -3030 28) (2634 -3084 28) (2634 -3084 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -4.00195] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380431" + "plane" "(2633 -3030 28) (2634 -3030 28) (2634 -3030 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380430" + "plane" "(2634 -3084 28) (2633 -3084 28) (2633 -3084 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "7183110" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2976 -2214 33.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "6886058" + side + { + "id" "380441" + "plane" "(2948 -2241 39) (2948 -2187 39) (2949 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380440" + "plane" "(2948 -2187 28) (2948 -2241 28) (2949 -2241 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380439" + "plane" "(2948 -2241 28) (2948 -2187 28) (2948 -2187 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380438" + "plane" "(2949 -2187 28) (2949 -2241 28) (2949 -2241 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -48.002] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380437" + "plane" "(2948 -2187 28) (2949 -2187 28) (2949 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380436" + "plane" "(2949 -2241 28) (2948 -2241 28) (2948 -2241 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886059" + side + { + "id" "380447" + "plane" "(2949 -2241 39) (2949 -2240 39) (3004 -2240 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 76] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380446" + "plane" "(2949 -2240 28) (2949 -2241 28) (3004 -2241 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380445" + "plane" "(2949 -2241 28) (2949 -2240 28) (2949 -2240 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380444" + "plane" "(3004 -2240 28) (3004 -2241 28) (3004 -2241 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 -76] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380443" + "plane" "(2949 -2240 28) (3004 -2240 28) (3004 -2240 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380442" + "plane" "(3004 -2241 28) (2949 -2241 28) (2949 -2241 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886060" + side + { + "id" "380453" + "plane" "(3003 -2240 39) (3003 -2187 39) (3004 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380452" + "plane" "(3003 -2187 28) (3003 -2240 28) (3004 -2240 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380451" + "plane" "(3003 -2240 28) (3003 -2187 28) (3003 -2187 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380450" + "plane" "(3004 -2187 28) (3004 -2240 28) (3004 -2240 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380449" + "plane" "(3003 -2187 28) (3004 -2187 28) (3004 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380448" + "plane" "(3004 -2240 28) (3003 -2240 28) (3003 -2240 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886061" + side + { + "id" "380459" + "plane" "(2949 -2188 39) (2949 -2187 39) (3003 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380458" + "plane" "(2949 -2187 28) (2949 -2188 28) (3003 -2188 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380457" + "plane" "(2949 -2188 28) (2949 -2187 28) (2949 -2187 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380456" + "plane" "(3003 -2187 28) (3003 -2188 28) (3003 -2188 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380455" + "plane" "(2949 -2187 28) (3003 -2187 28) (3003 -2187 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380454" + "plane" "(3003 -2188 28) (2949 -2188 28) (2949 -2188 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "7183127" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "3498 -2214 33.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "6886074" + side + { + "id" "380465" + "plane" "(3470 -2241 39) (3470 -2187 39) (3471 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380464" + "plane" "(3470 -2187 28) (3470 -2241 28) (3471 -2241 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380463" + "plane" "(3470 -2241 28) (3470 -2187 28) (3470 -2187 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380462" + "plane" "(3471 -2187 28) (3471 -2241 28) (3471 -2241 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -48.002] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380461" + "plane" "(3470 -2187 28) (3471 -2187 28) (3471 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380460" + "plane" "(3471 -2241 28) (3470 -2241 28) (3470 -2241 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886077" + side + { + "id" "380471" + "plane" "(3471 -2188 39) (3471 -2187 39) (3525 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380470" + "plane" "(3471 -2187 28) (3471 -2188 28) (3525 -2188 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380469" + "plane" "(3471 -2188 28) (3471 -2187 28) (3471 -2187 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380468" + "plane" "(3525 -2187 28) (3525 -2188 28) (3525 -2188 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380467" + "plane" "(3471 -2187 28) (3525 -2187 28) (3525 -2187 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380466" + "plane" "(3525 -2188 28) (3471 -2188 28) (3471 -2188 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886076" + side + { + "id" "380477" + "plane" "(3525 -2240 39) (3525 -2187 39) (3526 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 68] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380476" + "plane" "(3525 -2187 28) (3525 -2240 28) (3526 -2240 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380475" + "plane" "(3525 -2240 28) (3525 -2187 28) (3525 -2187 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380474" + "plane" "(3526 -2187 28) (3526 -2240 28) (3526 -2240 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380473" + "plane" "(3525 -2187 28) (3526 -2187 28) (3526 -2187 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380472" + "plane" "(3526 -2240 28) (3525 -2240 28) (3525 -2240 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886075" + side + { + "id" "380483" + "plane" "(3471 -2241 39) (3471 -2240 39) (3526 -2240 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 76] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380482" + "plane" "(3471 -2240 28) (3471 -2241 28) (3526 -2241 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380481" + "plane" "(3471 -2241 28) (3471 -2240 28) (3471 -2240 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380480" + "plane" "(3526 -2240 28) (3526 -2241 28) (3526 -2241 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 -76] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380479" + "plane" "(3471 -2240 28) (3526 -2240 28) (3526 -2240 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380478" + "plane" "(3526 -2241 28) (3471 -2241 28) (3471 -2241 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "7183144" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2661 -3345 33.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "6886544" + side + { + "id" "380489" + "plane" "(2634 -3372 39) (2634 -3371 39) (2689 -3371 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 92] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380488" + "plane" "(2634 -3371 28) (2634 -3372 28) (2689 -3372 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380487" + "plane" "(2634 -3372 28) (2634 -3371 28) (2634 -3371 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380486" + "plane" "(2689 -3371 28) (2689 -3372 28) (2689 -3372 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380485" + "plane" "(2634 -3371 28) (2689 -3371 28) (2689 -3371 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380484" + "plane" "(2689 -3372 28) (2634 -3372 28) (2634 -3372 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886546" + side + { + "id" "380495" + "plane" "(2688 -3371 39) (2688 -3318 39) (2689 -3318 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 92] 0.25" + "vaxis" "[0 -1 0 -104] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380494" + "plane" "(2688 -3318 28) (2688 -3371 28) (2689 -3371 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380493" + "plane" "(2688 -3371 28) (2688 -3318 28) (2688 -3318 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 -1 0 -28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380492" + "plane" "(2689 -3318 28) (2689 -3371 28) (2689 -3371 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380491" + "plane" "(2688 -3318 28) (2689 -3318 28) (2689 -3318 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 92] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380490" + "plane" "(2689 -3371 28) (2688 -3371 28) (2688 -3371 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886547" + side + { + "id" "380501" + "plane" "(2634 -3319 39) (2634 -3318 39) (2688 -3318 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 92] 0.25" + "vaxis" "[0 -1 0 -104] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380500" + "plane" "(2634 -3318 28) (2634 -3319 28) (2688 -3319 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380499" + "plane" "(2634 -3319 28) (2634 -3318 28) (2634 -3318 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380498" + "plane" "(2688 -3318 28) (2688 -3319 28) (2688 -3319 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380497" + "plane" "(2634 -3318 28) (2688 -3318 28) (2688 -3318 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380496" + "plane" "(2688 -3319 28) (2634 -3319 28) (2634 -3319 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6886545" + side + { + "id" "380507" + "plane" "(2633 -3372 39) (2633 -3318 39) (2634 -3318 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 92] 0.25" + "vaxis" "[0 -1 0 -104] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380506" + "plane" "(2633 -3318 28) (2633 -3372 28) (2634 -3372 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380505" + "plane" "(2633 -3372 28) (2633 -3318 28) (2633 -3318 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380504" + "plane" "(2634 -3318 28) (2634 -3372 28) (2634 -3372 39)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 59.998] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380503" + "plane" "(2633 -3318 28) (2634 -3318 28) (2634 -3318 39)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 92] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380502" + "plane" "(2634 -3372 28) (2633 -3372 28) (2633 -3372 39)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "7163558" + "classname" "func_detail" + solid + { + "id" "7163559" + side + { + "id" "380273" + "plane" "(-1152 -2896 416) (-1152 -2896 210) (-1152 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380272" + "plane" "(-1154 -2896 210) (-1152 -2896 210) (-1152 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -16.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380271" + "plane" "(-1152 -2912 416) (-1152 -2912 210) (-1154 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 14.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380270" + "plane" "(-1154 -2896 416) (-1152 -2896 416) (-1152 -2912 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380269" + "plane" "(-1154 -2912 210) (-1152 -2912 210) (-1152 -2896 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380268" + "plane" "(-1154 -2912 416) (-1154 -2912 210) (-1154 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 62.9688] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163560" + side + { + "id" "380279" + "plane" "(-1154 -2912 416) (-1254 -2912 416) (-1254 -2896 416)" + "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" "380278" + "plane" "(-1154 -2896 414) (-1254 -2896 414) (-1254 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380277" + "plane" "(-1254 -2896 414) (-1154 -2896 414) (-1154 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380276" + "plane" "(-1154 -2912 414) (-1254 -2912 414) (-1254 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380275" + "plane" "(-1254 -2912 414) (-1254 -2896 414) (-1254 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380274" + "plane" "(-1154 -2896 414) (-1154 -2912 414) (-1154 -2912 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163561" + side + { + "id" "380285" + "plane" "(-1152 -2896 208) (-1256 -2896 208) (-1256 -2912 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380284" + "plane" "(-1256 -2896 208) (-1152 -2896 208) (-1152 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380283" + "plane" "(-1152 -2912 208) (-1256 -2912 208) (-1256 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380282" + "plane" "(-1152 -2912 210) (-1256 -2912 210) (-1256 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380281" + "plane" "(-1256 -2912 210) (-1256 -2912 208) (-1256 -2896 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380280" + "plane" "(-1152 -2896 210) (-1152 -2896 208) (-1152 -2912 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163562" + side + { + "id" "380291" + "plane" "(-1205 -2912 414) (-1205 -2912 353) (-1205 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380290" + "plane" "(-1203 -2896 414) (-1203 -2896 353) (-1203 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380289" + "plane" "(-1205 -2896 414) (-1205 -2896 353) (-1203 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380288" + "plane" "(-1203 -2912 414) (-1203 -2912 353) (-1205 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380287" + "plane" "(-1205 -2896 353) (-1205 -2912 353) (-1203 -2912 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380286" + "plane" "(-1205 -2912 414) (-1205 -2896 414) (-1203 -2896 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163563" + side + { + "id" "380297" + "plane" "(-1205 -2896 210) (-1205 -2912 210) (-1203 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380296" + "plane" "(-1205 -2912 278) (-1205 -2912 210) (-1205 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380295" + "plane" "(-1203 -2896 278) (-1203 -2896 210) (-1203 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380294" + "plane" "(-1205 -2896 278) (-1205 -2896 210) (-1203 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380293" + "plane" "(-1203 -2912 278) (-1203 -2912 210) (-1205 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380292" + "plane" "(-1205 -2912 278) (-1205 -2896 278) (-1203 -2896 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163564" + side + { + "id" "380303" + "plane" "(-1256 -2912 416) (-1256 -2912 210) (-1256 -2896 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380302" + "plane" "(-1256 -2896 416) (-1256 -2896 210) (-1254 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -47.9893] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380301" + "plane" "(-1254 -2912 210) (-1256 -2912 210) (-1256 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 47.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380300" + "plane" "(-1254 -2912 416) (-1256 -2912 416) (-1256 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380299" + "plane" "(-1254 -2896 210) (-1256 -2896 210) (-1256 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380298" + "plane" "(-1254 -2896 416) (-1254 -2896 210) (-1254 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163565" + side + { + "id" "380309" + "plane" "(-1154 -2912 353) (-1254 -2912 353) (-1254 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380308" + "plane" "(-1154 -2896 351) (-1254 -2896 351) (-1254 -2912 351)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 -1 0 0.970703] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380307" + "plane" "(-1254 -2896 351) (-1154 -2896 351) (-1154 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380306" + "plane" "(-1154 -2912 351) (-1254 -2912 351) (-1254 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 1 -54.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380305" + "plane" "(-1254 -2912 351) (-1254 -2896 351) (-1254 -2896 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380304" + "plane" "(-1154 -2896 351) (-1154 -2912 351) (-1154 -2912 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163566" + side + { + "id" "380315" + "plane" "(-1205 -2912 351) (-1205 -2912 280) (-1205 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380314" + "plane" "(-1203 -2896 351) (-1203 -2896 280) (-1203 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380313" + "plane" "(-1205 -2896 351) (-1205 -2896 280) (-1203 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380312" + "plane" "(-1203 -2912 351) (-1203 -2912 280) (-1205 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380311" + "plane" "(-1205 -2912 351) (-1205 -2896 351) (-1203 -2896 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380310" + "plane" "(-1205 -2896 280) (-1205 -2912 280) (-1203 -2912 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7163567" + side + { + "id" "380321" + "plane" "(-1154 -2912 280) (-1254 -2912 280) (-1254 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380320" + "plane" "(-1154 -2896 278) (-1254 -2896 278) (-1254 -2912 278)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380319" + "plane" "(-1254 -2896 278) (-1154 -2896 278) (-1154 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380318" + "plane" "(-1154 -2912 278) (-1254 -2912 278) (-1254 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380317" + "plane" "(-1254 -2912 278) (-1254 -2896 278) (-1254 -2896 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380316" + "plane" "(-1154 -2896 278) (-1154 -2912 278) (-1154 -2912 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163557" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "7163568" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1178.5 -2904 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "7163569" + side + { + "id" "380327" + "plane" "(-1203 -2905 351) (-1203 -2903 351) (-1154 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380326" + "plane" "(-1203 -2903 280) (-1203 -2905 280) (-1154 -2905 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380325" + "plane" "(-1203 -2905 280) (-1203 -2903 280) (-1203 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380324" + "plane" "(-1154 -2903 280) (-1154 -2905 280) (-1154 -2905 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380323" + "plane" "(-1203 -2903 280) (-1154 -2903 280) (-1154 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380322" + "plane" "(-1154 -2905 280) (-1203 -2905 280) (-1203 -2905 351)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 141.061] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163557" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "7163571" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1178.5 -2904 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "7163572" + side + { + "id" "380333" + "plane" "(-1203 -2905 278) (-1203 -2903 278) (-1154 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380332" + "plane" "(-1203 -2903 210) (-1203 -2905 210) (-1154 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380331" + "plane" "(-1203 -2905 210) (-1203 -2903 210) (-1203 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380330" + "plane" "(-1154 -2903 210) (-1154 -2905 210) (-1154 -2905 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380329" + "plane" "(-1203 -2903 210) (-1154 -2903 210) (-1154 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380328" + "plane" "(-1154 -2905 210) (-1203 -2905 210) (-1203 -2905 278)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 141.061] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163557" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "7163574" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1229.5 -2904 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "7163575" + side + { + "id" "380339" + "plane" "(-1254 -2905 278) (-1254 -2903 278) (-1205 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380338" + "plane" "(-1254 -2903 210) (-1254 -2905 210) (-1205 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380337" + "plane" "(-1254 -2905 210) (-1254 -2903 210) (-1254 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380336" + "plane" "(-1205 -2903 210) (-1205 -2905 210) (-1205 -2905 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380335" + "plane" "(-1254 -2903 210) (-1205 -2903 210) (-1205 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380334" + "plane" "(-1205 -2905 210) (-1254 -2905 210) (-1254 -2905 278)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 151.51] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163557" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "7163577" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1229.5 -2904 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "7163578" + side + { + "id" "380345" + "plane" "(-1254 -2905 351) (-1254 -2903 351) (-1205 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380344" + "plane" "(-1254 -2903 280) (-1254 -2905 280) (-1205 -2905 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380343" + "plane" "(-1254 -2905 280) (-1254 -2903 280) (-1254 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380342" + "plane" "(-1205 -2903 280) (-1205 -2905 280) (-1205 -2905 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380341" + "plane" "(-1254 -2903 280) (-1205 -2903 280) (-1205 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380340" + "plane" "(-1205 -2905 280) (-1254 -2905 280) (-1254 -2905 351)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 151.51] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163557" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "7163580" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1229.5 -2904 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "7163581" + side + { + "id" "380351" + "plane" "(-1254 -2905 414) (-1254 -2903 414) (-1205 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380350" + "plane" "(-1254 -2903 353) (-1254 -2905 353) (-1205 -2905 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380349" + "plane" "(-1254 -2905 353) (-1254 -2903 353) (-1254 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380348" + "plane" "(-1205 -2903 353) (-1205 -2905 353) (-1205 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380347" + "plane" "(-1254 -2903 353) (-1205 -2903 353) (-1205 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380346" + "plane" "(-1205 -2905 353) (-1254 -2905 353) (-1254 -2905 414)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 151.51] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163557" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "7163583" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1178.5 -2904 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "7163584" + side + { + "id" "380357" + "plane" "(-1203 -2905 414) (-1203 -2903 414) (-1154 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380356" + "plane" "(-1203 -2903 353) (-1203 -2905 353) (-1154 -2905 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380355" + "plane" "(-1203 -2905 353) (-1203 -2903 353) (-1203 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380354" + "plane" "(-1154 -2903 353) (-1154 -2905 353) (-1154 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380353" + "plane" "(-1203 -2903 353) (-1154 -2903 353) (-1154 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380352" + "plane" "(-1154 -2905 353) (-1203 -2905 353) (-1203 -2905 414)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 141.061] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163557" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +hidden +{ + entity + { + "id" "7144136" + "classname" "prop_static" + "angles" "0 56 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/treeline_skybox01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "7863 10292 5163.67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "7105125" + "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/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-706 -2774 49" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "7105157" + "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/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-706 -2646 49" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "7105177" + "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/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-310 -2811 47.7885" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "7105193" + "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/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-401 -2645 47.4516" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "7105225" + "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/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "0 -2667 23.5648" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "7105253" + "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/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "136 -2666 23.5648" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "7084626" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2890 -19" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7084671" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_floor_hatch/nuke_floor_hatch_64.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-784.358 -2596.81 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7084675" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_floor_hatch/nuke_floor_hatch_64.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-859 -2596 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7084734" + "classname" "func_detail" + solid + { + "id" "7084801" + side + { + "id" "379818" + "plane" "(-720 -2517 7) (-720 -2517 0) (-720 -2501 0)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379817" + "plane" "(-720 -2501 7) (-720 -2501 0) (-705 -2501 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[-1 0 0 -1416] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379816" + "plane" "(-705 -2517 7) (-705 -2517 0) (-720 -2517 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379815" + "plane" "(-705 -2501 7) (-705 -2501 0) (-705 -2517 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379814" + "plane" "(-705 -2501 0) (-720 -2501 0) (-720 -2517 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" "379813" + "plane" "(-705 -2517 7) (-720 -2517 7) (-720 -2501 7)" + "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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2487558" + side + { + "id" "379728" + "plane" "(-720 -2528 0) (-720 -2517 0) (-720 -2517 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379727" + "plane" "(-705 -2528 144) (-705 -2517 144) (-705 -2517 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379726" + "plane" "(-720 -2528 144) (-720 -2517 144) (-705 -2517 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" "379725" + "plane" "(-720 -2517 144) (-720 -2517 0) (-705 -2517 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" "379724" + "plane" "(-720 -2517 0) (-720 -2528 0) (-705 -2528 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" "379723" + "plane" "(-705 -2528 144) (-705 -2528 0) (-720 -2528 0)" + "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" + } + } + solid + { + "id" "7084720" + side + { + "id" "379734" + "plane" "(-720 -2517 144) (-720 -2517 136) (-720 -2501 136)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379733" + "plane" "(-720 -2501 144) (-720 -2501 136) (-705 -2501 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379732" + "plane" "(-720 -2517 136) (-720 -2517 144) (-705 -2517 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379731" + "plane" "(-705 -2517 144) (-720 -2517 144) (-720 -2501 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" "379730" + "plane" "(-705 -2501 144) (-705 -2501 136) (-705 -2517 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379729" + "plane" "(-705 -2501 136) (-720 -2501 136) (-720 -2517 136)" + "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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084696" + side + { + "id" "379740" + "plane" "(-720 -2528 136) (-720 -2528 144) (-720 -2616 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379739" + "plane" "(-705 -2616 136) (-705 -2616 144) (-705 -2528 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379738" + "plane" "(-720 -2616 144) (-720 -2528 144) (-705 -2528 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" "379737" + "plane" "(-720 -2528 144) (-720 -2528 136) (-705 -2528 136)" + "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" "379736" + "plane" "(-705 -2616 144) (-705 -2616 136) (-720 -2616 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379735" + "plane" "(-720 -2528 136) (-720 -2616 136) (-705 -2616 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084799" + side + { + "id" "379806" + "plane" "(-720 -2608 0) (-720 -2528 0) (-720 -2528 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379805" + "plane" "(-705 -2528 7) (-705 -2528 0) (-705 -2608 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379804" + "plane" "(-720 -2528 0) (-720 -2608 0) (-705 -2608 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" "379803" + "plane" "(-720 -2528 7) (-720 -2528 0) (-705 -2528 0)" + "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" "379802" + "plane" "(-705 -2608 7) (-705 -2608 0) (-720 -2608 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" "379801" + "plane" "(-720 -2608 7) (-720 -2528 7) (-705 -2528 7)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084764" + side + { + "id" "379764" + "plane" "(-720 -2616 136) (-720 -2616 0) (-720 -2608 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" "379763" + "plane" "(-705 -2608 0) (-705 -2616 0) (-705 -2616 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379762" + "plane" "(-720 -2608 0) (-720 -2616 0) (-705 -2616 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" "379761" + "plane" "(-705 -2616 136) (-705 -2616 0) (-720 -2616 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379760" + "plane" "(-720 -2616 136) (-720 -2608 136) (-705 -2608 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379759" + "plane" "(-720 -2608 136) (-720 -2608 0) (-705 -2608 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084798" + side + { + "id" "379800" + "plane" "(-720 -2528 7) (-720 -2528 136) (-720 -2608 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" "379799" + "plane" "(-705 -2528 136) (-705 -2528 7) (-705 -2608 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379798" + "plane" "(-720 -2528 136) (-720 -2528 7) (-705 -2528 7)" + "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" "379797" + "plane" "(-720 -2608 136) (-720 -2528 136) (-705 -2528 136)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379796" + "plane" "(-705 -2608 136) (-705 -2608 7) (-720 -2608 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379795" + "plane" "(-720 -2528 7) (-720 -2608 7) (-705 -2608 7)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084800" + side + { + "id" "379812" + "plane" "(-720 -2517 136) (-720 -2517 7) (-720 -2501 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379811" + "plane" "(-720 -2501 136) (-720 -2501 7) (-705 -2501 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379810" + "plane" "(-705 -2517 136) (-705 -2517 7) (-720 -2517 7)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379809" + "plane" "(-705 -2501 136) (-705 -2501 7) (-705 -2517 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379808" + "plane" "(-705 -2517 136) (-720 -2517 136) (-720 -2501 136)" + "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" "379807" + "plane" "(-705 -2501 7) (-720 -2501 7) (-720 -2517 7)" + "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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "7084776" + "classname" "func_detail" + solid + { + "id" "7084773" + side + { + "id" "379782" + "plane" "(-920 -2536 136) (-918 -2536 136) (-918 -2896 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" "379781" + "plane" "(-920 -2896 120) (-918 -2896 120) (-918 -2536 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379780" + "plane" "(-920 -2536 136) (-920 -2896 136) (-920 -2896 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" "379779" + "plane" "(-918 -2536 120) (-918 -2896 120) (-918 -2896 136)" + "material" "DE_NUKE/HR_NUKE/HR_HANGING_WIRES_001" + "uaxis" "[0 1 0 224] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379778" + "plane" "(-918 -2536 136) (-920 -2536 136) (-920 -2536 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" "379777" + "plane" "(-918 -2896 120) (-920 -2896 120) (-920 -2896 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "7084785" + "classname" "func_detail" + solid + { + "id" "7084783" + side + { + "id" "379794" + "plane" "(-918 -2536 136) (-720 -2536 136) (-720 -2538 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" "379793" + "plane" "(-918 -2538 120) (-720 -2538 120) (-720 -2536 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379792" + "plane" "(-918 -2536 136) (-918 -2538 136) (-918 -2538 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" "379791" + "plane" "(-720 -2536 120) (-720 -2538 120) (-720 -2538 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" "379790" + "plane" "(-720 -2536 136) (-918 -2536 136) (-918 -2536 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" "379789" + "plane" "(-720 -2538 120) (-918 -2538 120) (-918 -2538 136)" + "material" "DE_NUKE/HR_NUKE/HR_HANGING_WIRES_001" + "uaxis" "[1 0 0 -447.997] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10500]" + } +} +entity +{ + "id" "7084888" + "classname" "func_detail" + solid + { + "id" "8415923" + side + { + "id" "390748" + "plane" "(-128 -2624 -32) (-208 -2544 -32) (-240 -2544 -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" "390747" + "plane" "(-208 -2544 0) (-208 -2544 -32) (-128 -2624 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.707107 -0.707107 0 -476.387] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390746" + "plane" "(-240 -2544 0) (-240 -2544 -32) (-208 -2544 -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" "390745" + "plane" "(-144 -2640 0) (-144 -2640 -32) (-240 -2544 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.707107 0.707107 0 -118.309] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390744" + "plane" "(-128 -2624 0) (-128 -2624 -32) (-144 -2640 -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" "390743" + "plane" "(-144 -2640 0) (-240 -2544 0) (-208 -2544 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8415924" + side + { + "id" "390754" + "plane" "(-144 -2640 144) (-240 -2544 144) (-208 -2544 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" "390753" + "plane" "(-128 -2624 136) (-128 -2624 144) (-208 -2544 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0.707107 -0.707107 0 -489.694] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390752" + "plane" "(-208 -2544 136) (-208 -2544 144) (-240 -2544 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" "390751" + "plane" "(-240 -2544 136) (-240 -2544 144) (-144 -2640 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0.707107 -0.707107 0 -1268.69] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390750" + "plane" "(-144 -2640 136) (-144 -2640 144) (-128 -2624 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390749" + "plane" "(-128 -2624 136) (-208 -2544 136) (-240 -2544 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8416006" + side + { + "id" "390778" + "plane" "(-208 -2544 8) (-208 -2544 0) (-128 -2624 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0.707107 -0.707107 0 -1204.69] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390777" + "plane" "(-240 -2544 8) (-240 -2544 0) (-208 -2544 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" "390776" + "plane" "(-144 -2640 8) (-144 -2640 0) (-240 -2544 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0.707107 -0.707107 0 -1268.69] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390775" + "plane" "(-128 -2624 8) (-128 -2624 0) (-144 -2640 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" "390774" + "plane" "(-128 -2624 0) (-208 -2544 0) (-240 -2544 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" "390773" + "plane" "(-144 -2640 8) (-240 -2544 8) (-208 -2544 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8416005" + side + { + "id" "390772" + "plane" "(-208 -2544 136) (-208 -2544 8) (-128 -2624 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390771" + "plane" "(-240 -2544 136) (-240 -2544 8) (-208 -2544 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" "390770" + "plane" "(-144 -2640 136) (-144 -2640 8) (-240 -2544 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "390769" + "plane" "(-128 -2624 136) (-128 -2624 8) (-144 -2640 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" "390768" + "plane" "(-144 -2640 136) (-240 -2544 136) (-208 -2544 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" "390767" + "plane" "(-128 -2624 8) (-208 -2544 8) (-240 -2544 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "7084904" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-17.1769 296.196 -133.814" + "pitch" "-17.1769" + "spawnflags" "0" + "style" "0" + "origin" "-908 -2548.72 134.84" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "7084909" + "classname" "prop_static" + "angles" "40.0069 260.29 115.836" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-912.54 -2538 139.092" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "7085178" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-33 -2632 21" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "7085192" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "34 -2890 -36" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7085504" + "classname" "func_detail" + solid + { + "id" "7085505" + side + { + "id" "380063" + "plane" "(-416 -2509 -24) (-697 -2509 -24) (-705 -2501 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 768] 0.125" + "vaxis" "[0 -1 0 122] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380062" + "plane" "(-697 -2509 -32) (-416 -2509 -32) (-408 -2501 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380061" + "plane" "(-705 -2501 -32) (-705 -2501 -24) (-697 -2509 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380060" + "plane" "(-416 -2509 -32) (-416 -2509 -24) (-408 -2501 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380059" + "plane" "(-408 -2501 -32) (-408 -2501 -24) (-705 -2501 -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" "380058" + "plane" "(-697 -2509 -32) (-697 -2509 -24) (-416 -2509 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 1 94.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085506" + side + { + "id" "380069" + "plane" "(-416 -2509 -24) (-408 -2501 -24) (-408 -2588 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 424] 0.125" + "vaxis" "[1 0 0 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380068" + "plane" "(-416 -2580 -32) (-408 -2588 -32) (-408 -2501 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380067" + "plane" "(-416 -2509 -32) (-416 -2509 -24) (-416 -2580 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 743.998] 0.125" + "vaxis" "[0 0 1 94.9959] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380066" + "plane" "(-408 -2588 -32) (-408 -2588 -24) (-408 -2501 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380065" + "plane" "(-408 -2501 -32) (-408 -2501 -24) (-416 -2509 -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" "380064" + "plane" "(-416 -2580 -32) (-416 -2580 -24) (-408 -2588 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085507" + side + { + "id" "380075" + "plane" "(-705 -2588 -24) (-697 -2580 -24) (-416 -2580 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 768] 0.125" + "vaxis" "[0 -1 0 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380074" + "plane" "(-697 -2580 -32) (-705 -2588 -32) (-408 -2588 -32)" + "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" "380073" + "plane" "(-705 -2588 -32) (-697 -2580 -32) (-697 -2580 -24)" + "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" "380072" + "plane" "(-416 -2580 -32) (-408 -2588 -32) (-408 -2588 -24)" + "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" "380071" + "plane" "(-697 -2580 -32) (-416 -2580 -32) (-416 -2580 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 768] 0.125" + "vaxis" "[0 0 1 94.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380070" + "plane" "(-408 -2588 -32) (-705 -2588 -32) (-705 -2588 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7085508" + side + { + "id" "380081" + "plane" "(-705 -2501 -24) (-697 -2509 -24) (-697 -2580 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 424] 0.125" + "vaxis" "[1 0 0 41] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380080" + "plane" "(-705 -2588 -32) (-697 -2580 -32) (-697 -2509 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380079" + "plane" "(-705 -2501 -32) (-705 -2501 -24) (-705 -2588 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380078" + "plane" "(-697 -2580 -32) (-697 -2580 -24) (-697 -2509 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -424] 0.125" + "vaxis" "[0 0 1 94.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380077" + "plane" "(-697 -2509 -32) (-697 -2509 -24) (-705 -2501 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380076" + "plane" "(-705 -2588 -32) (-705 -2588 -24) (-697 -2580 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 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" "7085509" + side + { + "id" "380087" + "plane" "(-697 -2509 -30) (-697 -2580 -30) (-416 -2580 -30)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[0 1 0 132] 0.125" + "vaxis" "[1 0 0 100] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380086" + "plane" "(-697 -2580 -24) (-697 -2580 -30) (-697 -2509 -30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380085" + "plane" "(-416 -2509 -24) (-416 -2509 -30) (-416 -2580 -30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380084" + "plane" "(-697 -2509 -24) (-697 -2509 -30) (-416 -2509 -30)" + "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" "380083" + "plane" "(-416 -2580 -24) (-416 -2580 -30) (-697 -2580 -30)" + "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" "380082" + "plane" "(-697 -2580 -24) (-697 -2509 -24) (-416 -2509 -24)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[1 0 0 100] 0.125" + "vaxis" "[0 -1 0 -132] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +hidden +{ + entity + { + "id" "7085589" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-447 -2517 -61.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7085593" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-704 -2517 -61.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7085633" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-414 -2517 -61.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7085667" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "-441 -2583 -48.4526" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "7085670" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-441 -2588 -48.4526" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "7085674" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-441.294 -2576.25 -48.4526" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "7085695" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-408 -2516 -51.775" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7085703" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-664 -2516 -51.775" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7085729" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_16.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-696 -2516 -51.775" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7085744" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_16.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-696 -2528 -51.775" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7085748" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-664 -2528 -51.775" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7085752" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-408 -2528 -51.775" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "7064668" + "classname" "func_detail" + solid + { + "id" "7045403" + side + { + "id" "379442" + "plane" "(-548 -2612 -8) (-548 -2600 -8) (-408 -2600 -8)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379441" + "plane" "(-408 -2600 -16) (-408 -2600 -8) (-548 -2600 -8)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -64] 0.125" + "vaxis" "[1 0 0 0.00195313] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379440" + "plane" "(-548 -2600 -16) (-548 -2600 -8) (-548 -2612 -8)" + "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" "379439" + "plane" "(-408 -2612 -8) (-408 -2600 -8) (-408 -2600 -16)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379438" + "plane" "(-408 -2600 -16) (-548 -2600 -16) (-548 -2612 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -0.83205 0.5547 -17.2608] 0.25" + "vaxis" "[1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7045404" + side + { + "id" "379447" + "plane" "(-548 -2624 0) (-548 -2612 0) (-408 -2612 0)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379446" + "plane" "(-408 -2612 -8) (-408 -2612 0) (-548 -2612 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -64] 0.125" + "vaxis" "[1 0 0 0.00195313] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379445" + "plane" "(-548 -2612 -8) (-548 -2612 0) (-548 -2624 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" "379444" + "plane" "(-408 -2624 0) (-408 -2612 0) (-408 -2612 -8)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379443" + "plane" "(-408 -2612 -8) (-548 -2612 -8) (-548 -2624 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -0.83205 0.5547 -17.2608] 0.25" + "vaxis" "[1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7045405" + side + { + "id" "379452" + "plane" "(-548 -2600 -16) (-548 -2588 -16) (-408 -2588 -16)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379451" + "plane" "(-408 -2588 -24) (-408 -2588 -16) (-548 -2588 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -64] 0.125" + "vaxis" "[1 0 0 0.00195313] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379450" + "plane" "(-548 -2588 -24) (-548 -2588 -16) (-548 -2600 -16)" + "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" "379449" + "plane" "(-408 -2600 -16) (-408 -2588 -16) (-408 -2588 -24)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379448" + "plane" "(-408 -2588 -24) (-548 -2588 -24) (-548 -2600 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -0.83205 0.5547 -17.2608] 0.25" + "vaxis" "[1 0 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "7064705" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-701 -2582 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7064741" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-701 -2606 -7.75001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7064785" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-566 -2606 -7.75001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7064789" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-566 -2582 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7064913" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-546 -2606 -7.75001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7064917" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-546 -2582 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7064921" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-411 -2606 -7.75001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "7064925" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-411 -2582 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "7065025" + "classname" "func_detail" + solid + { + "id" "7065026" + side + { + "id" "379484" + "plane" "(-705 -2612 -8) (-705 -2600 -8) (-564 -2600 -8)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379483" + "plane" "(-564 -2600 -16) (-564 -2600 -8) (-705 -2600 -8)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -64] 0.125" + "vaxis" "[1 0 0 24.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379482" + "plane" "(-705 -2600 -16) (-705 -2600 -8) (-705 -2612 -8)" + "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" "379481" + "plane" "(-564 -2612 -8) (-564 -2600 -8) (-564 -2600 -16)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379480" + "plane" "(-564 -2600 -16) (-705 -2600 -16) (-705 -2612 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -0.83205 0.5547 -17.2608] 0.25" + "vaxis" "[1 0 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7065027" + side + { + "id" "379489" + "plane" "(-705 -2624 0) (-705 -2612 0) (-564 -2612 0)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379488" + "plane" "(-564 -2612 -8) (-564 -2612 0) (-705 -2612 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -64] 0.125" + "vaxis" "[1 0 0 24.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379487" + "plane" "(-705 -2612 -8) (-705 -2612 0) (-705 -2624 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" "379486" + "plane" "(-564 -2624 0) (-564 -2612 0) (-564 -2612 -8)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379485" + "plane" "(-564 -2612 -8) (-705 -2612 -8) (-705 -2624 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -0.83205 0.5547 -17.2608] 0.25" + "vaxis" "[1 0 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7065028" + side + { + "id" "379494" + "plane" "(-705 -2600 -16) (-705 -2588 -16) (-564 -2588 -16)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379493" + "plane" "(-564 -2588 -24) (-564 -2588 -16) (-705 -2588 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -64] 0.125" + "vaxis" "[1 0 0 24.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379492" + "plane" "(-705 -2588 -24) (-705 -2588 -16) (-705 -2600 -16)" + "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" "379491" + "plane" "(-564 -2600 -16) (-564 -2588 -16) (-564 -2588 -24)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379490" + "plane" "(-564 -2588 -24) (-705 -2588 -24) (-705 -2600 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -0.83205 0.5547 -17.2608] 0.25" + "vaxis" "[1 0 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "7065049" + "classname" "func_detail" + solid + { + "id" "7065077" + side + { + "id" "379518" + "plane" "(-564 -2578 -24) (-564 -2624 -24) (-548 -2624 -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" + } + side + { + "id" "379517" + "plane" "(-564 -2624 -24) (-564 -2578 -24) (-564 -2578 26)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379516" + "plane" "(-548 -2578 -24) (-548 -2624 -24) (-548 -2624 26)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379515" + "plane" "(-564 -2578 -24) (-548 -2578 -24) (-548 -2578 26)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379514" + "plane" "(-548 -2624 -24) (-564 -2624 -24) (-564 -2624 26)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379513" + "plane" "(-564 -2624 26) (-564 -2578 26) (-548 -2578 26)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7065076" + side + { + "id" "379512" + "plane" "(-564 -2624 34) (-564 -2578 34) (-548 -2578 34)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379511" + "plane" "(-564 -2578 26) (-564 -2578 34) (-564 -2624 34)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 -1 0 -1087.99] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379510" + "plane" "(-548 -2624 26) (-548 -2624 34) (-548 -2578 34)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379509" + "plane" "(-548 -2578 26) (-548 -2578 34) (-564 -2578 34)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[-1 0 0 688.003] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379508" + "plane" "(-564 -2624 26) (-564 -2624 34) (-548 -2624 34)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -159.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379507" + "plane" "(-564 -2578 26) (-564 -2624 26) (-548 -2624 26)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "7065096" + "classname" "func_detail" + solid + { + "id" "522216" + side + { + "id" "379524" + "plane" "(-240.397 -2582.8 -32) (-200.799 -2622.4 -32) (-181 -2603 -31.7949)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 1.31266] 0.25" + "vaxis" "[-0.707107 -0.707107 0 -17.2059] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379523" + "plane" "(-240.397 -2582.8 -32) (-221 -2563 -31.7949) (-221 -2563 114)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 -0.707107 0 -17.2059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379522" + "plane" "(-181 -2603 -31.7949) (-200.799 -2622.4 -32) (-200.799 -2622.4 72.2072)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.707107 0.707107 0 17.2059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379521" + "plane" "(-221 -2563 -31.7949) (-181 -2603 -31.7949) (-181 -2603 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 1.31266] 0.25" + "vaxis" "[0 0 -1 -31.1797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379520" + "plane" "(-200.799 -2622.4 -32) (-240.397 -2582.8 -32) (-240.397 -2582.8 72.2031)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -1.31266] 0.25" + "vaxis" "[0 0 -1 -31.1797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379519" + "plane" "(-200.799 -2622.4 72.2072) (-240.397 -2582.8 72.2031) (-221 -2563 114)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.707107 -0.707107 0 -21.3127] 0.25" + "vaxis" "[-0.606333 -0.606333 -0.51451 -8.72678] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "522212" + side + { + "id" "379530" + "plane" "(-240.397 -2582.8 -31.7949) (-268.681 -2611.08 -31.7949) (-229.083 -2650.68 -31.7949)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 1.31266] 0.25" + "vaxis" "[-0.707107 -0.707107 0 14.7941] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379529" + "plane" "(-268.681 -2611.08 32.1953) (-268.681 -2611.08 -31.793) (-240.397 -2582.8 -31.793)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 -0.707107 0 -17.2059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379528" + "plane" "(-200.799 -2622.4 72.2109) (-200.799 -2622.4 -31.793) (-229.083 -2650.68 -31.793)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.707107 0.707107 0 17.2059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379527" + "plane" "(-240.397 -2582.8 72.207) (-240.397 -2582.8 -31.793) (-200.799 -2622.4 -31.793)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 1.31266] 0.25" + "vaxis" "[0 0 -1 -31.1797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379526" + "plane" "(-229.083 -2650.68 32.2031) (-229.083 -2650.68 -31.793) (-268.681 -2611.08 -31.793)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -1.31266] 0.25" + "vaxis" "[0 0 -1 -31.1797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379525" + "plane" "(-200.799 -2622.4 72.207) (-229.083 -2650.68 32.2027) (-268.681 -2611.08 32.1978)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.707107 -0.707107 0 -21.3127] 0.25" + "vaxis" "[-0.606333 -0.606333 -0.51451 -8.72678] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "517757" + side + { + "id" "379536" + "plane" "(-268.681 -2611.08 -31.7949) (-291.309 -2633.71 -31.7949) (-251.711 -2673.31 -31.7949)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 1.31266] 0.25" + "vaxis" "[-0.707107 -0.707107 0 14.7941] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379535" + "plane" "(-291.309 -2633.71 10) (-291.309 -2633.71 -31.793) (-268.681 -2611.08 -31.793)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 -0.707107 0 -17.2059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379534" + "plane" "(-229.083 -2650.68 32.207) (-229.083 -2650.68 -31.793) (-251.711 -2673.31 -31.793)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.707107 0.707107 0 17.2059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379533" + "plane" "(-268.681 -2611.08 32.2031) (-268.681 -2611.08 -31.793) (-229.083 -2650.68 -31.793)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 1.31266] 0.25" + "vaxis" "[0 0 -1 -31.1797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379532" + "plane" "(-251.711 -2673.31 10) (-251.711 -2673.31 -31.793) (-291.309 -2633.71 -31.793)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.707107 -0.707107 0 -21.3127] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379531" + "plane" "(-291.309 -2633.71 10) (-268.681 -2611.08 32.2069) (-229.083 -2650.68 32.207)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.707107 -0.707107 0 -21.3127] 0.25" + "vaxis" "[-0.606333 -0.606333 -0.51451 -8.72678] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "522220" + side + { + "id" "379542" + "plane" "(-312.522 -2666.24 -32) (-323.836 -2677.55 -32) (-298.38 -2703.01 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -1.31266] 0.25" + "vaxis" "[0.707107 0.707107 0 9.20585] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379541" + "plane" "(-287.066 -2691.69 -10) (-287.066 -2691.69 -32) (-298.38 -2703.01 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 -0.707107 0 -7.20585] 0.25" + "vaxis" "[0 0 -1 -9.82814] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379540" + "plane" "(-323.836 -2677.55 -8) (-323.836 -2677.55 -32) (-312.522 -2666.24 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 -0.707107 0 8.79415] 0.25" + "vaxis" "[0 0 -1 -9.82814] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379539" + "plane" "(-298.38 -2703.01 -8) (-298.38 -2703.01 -32) (-323.836 -2677.55 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -1.31266] 0.25" + "vaxis" "[0 0 -1 -32.0078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379538" + "plane" "(-312.522 -2666.24 -10) (-312.522 -2666.24 -32) (-287.066 -2691.69 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 0.707107 0 19.3127] 0.25" + "vaxis" "[0 0 -1 -9.82814] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379537" + "plane" "(-323.836 -2677.55 -8) (-312.522 -2666.24 -10) (-287.066 -2691.69 -10)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 0.707107 0 19.3127] 0.25" + "vaxis" "[0.606333 0.606333 -0.51451 16.3254] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "522230" + side + { + "id" "379548" + "plane" "(-326.664 -2680.38 -32) (-329.492 -2683.21 -32) (-304.037 -2708.66 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -1.31266] 0.25" + "vaxis" "[0.707107 0.707107 0 -38.7942] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379547" + "plane" "(-301.208 -2705.84 -2) (-301.208 -2705.84 -32) (-304.037 -2708.66 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 -0.707107 0 -7.20585] 0.25" + "vaxis" "[0 0 -1 -9.82814] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379546" + "plane" "(-329.492 -2683.21 0) (-329.492 -2683.21 -32) (-326.664 -2680.38 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 -0.707107 0 8.79415] 0.25" + "vaxis" "[0 0 -1 -9.82814] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379545" + "plane" "(-304.037 -2708.66 0) (-304.037 -2708.66 -32) (-329.492 -2683.21 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 0.707107 0 19.3107] 0.25" + "vaxis" "[0 0 -1 -9.82814] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379544" + "plane" "(-326.664 -2680.38 -2) (-326.664 -2680.38 -32) (-301.208 -2705.84 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 1.31266] 0.25" + "vaxis" "[0 0 -1 -32.0078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379543" + "plane" "(-329.492 -2683.21 0) (-326.664 -2680.38 -2) (-301.208 -2705.84 -2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 0.707107 0 19.3127] 0.25" + "vaxis" "[0.606333 0.606333 -0.51451 16.3254] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "522228" + side + { + "id" "379554" + "plane" "(-323.836 -2677.55 -32) (-326.664 -2680.38 -32) (-301.208 -2705.84 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -1.31266] 0.25" + "vaxis" "[0.707107 0.707107 0 9.20585] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379553" + "plane" "(-298.38 -2703.01 -8) (-298.38 -2703.01 -32) (-301.208 -2705.84 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 -0.707107 0 -7.20585] 0.25" + "vaxis" "[0 0 -1 -9.82814] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379552" + "plane" "(-326.664 -2680.38 -2) (-326.664 -2680.38 -32) (-323.836 -2677.55 -32)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 -0.707107 0 8.79415] 0.25" + "vaxis" "[0 0 -1 -9.82814] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379551" + "plane" "(-301.208 -2705.84 -2) (-301.208 -2705.84 -32) (-326.664 -2680.38 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -1.31266] 0.25" + "vaxis" "[0 0 -1 -32.0078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379550" + "plane" "(-323.836 -2677.55 -8) (-323.836 -2677.55 -32) (-298.38 -2703.01 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 1.31266] 0.25" + "vaxis" "[0 0 -1 -32.0078] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379549" + "plane" "(-326.664 -2680.38 -2) (-323.836 -2677.55 -8) (-298.38 -2703.01 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.707107 0.707107 0 19.3127] 0.25" + "vaxis" "[0.606333 0.606333 -0.51451 16.3254] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "7065167" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-707 -2872 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7065171" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-706 -2872 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7065199" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-707 -2744 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7065203" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-706 -2744 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7065282" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_base.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-813 -2890 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7045158" + "classname" "prop_static" + "angles" "-90 41.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-297.843 -2821.32 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -15268]" + } + } +} +entity +{ + "id" "7045162" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 228 179 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "50.5 41.5 -180" + "pitch" "50.5" + "spawnflags" "0" + "style" "0" + "origin" "-293.409 -2817.4 -20.8776" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "7045167" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-294.473 -2818.34 -24.1453" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "7045351" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-747.818 -2486.82 -15.8363" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "7045354" + "classname" "prop_static" + "angles" "-90 45 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-751 -2490 -23.691" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -15268]" + } + } +} +entity +{ + "id" "7045358" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 228 179 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "50.5 45 -180" + "pitch" "50.5" + "spawnflags" "0" + "style" "0" + "origin" "-746.814 -2485.81 -12.5686" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "7045388" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-30 -2666 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7045392" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-30 -2667 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7025121" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_converter.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "34 -2889.99 316" + editor + { + "color" "163 224 0" + "groupid" "7025120" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7025125" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "34 -2884 348" + editor + { + "color" "163 224 0" + "groupid" "7025120" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7025129" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "34 -2883.75 476" + editor + { + "color" "163 224 0" + "groupid" "7025120" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7025133" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "34 -2890 60" + editor + { + "color" "163 224 0" + "groupid" "7025120" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7025137" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "34 -2890 -4" + editor + { + "color" "163 224 0" + "groupid" "7025120" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7025141" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_base.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "34 -2890 -28" + editor + { + "color" "163 224 0" + "groupid" "7025120" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7025617" + "classname" "prop_static" + "angles" "0 135 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-402 -2681.29 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7025621" + "classname" "prop_static" + "angles" "0 135 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-402.707 -2682 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7025625" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-311 -2774 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7025629" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-310 -2774 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7025754" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_floor_hatch/nuke_floor_hatch_64.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-202 -2749 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7025773" + "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/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-366 -2896 83.6612" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "7025777" + "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/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "216 33 65" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-366 -2892 56.5215" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "7025840" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "98 -2667 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7025844" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "98 -2666 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "7004013" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_128.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-208 -4114 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7004017" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-224 -4114 -163" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7004077" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-206 -4114 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7004133" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-338 -4114 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7004157" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_32.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-338 -4112 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7004225" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-338 -4078 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7004245" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_64.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-272 -4076 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7004293" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-236 -4112 -199" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7004778" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "88 -4080 -201" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7004802" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-32 -4080 -201" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005000" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-240.15 -4558.98 -203.729" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005012" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-240 -4667 -203.729" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005028" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-240 -4771 -203.729" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005040" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-240 -4891 -203.729" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005044" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-242 -4952 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005083" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-242 -4438 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005099" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-242 -4954 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005111" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-242 -4575 -165" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005154" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-242 -4763 -165" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005166" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-242 -4937 -165" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005353" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1556 -3834 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7005373" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1539 -3835 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7005400" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1539 -3795 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "7005470" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-645 -4980 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005509" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-775 -4982 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005533" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-627 -4982 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005561" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-629 -4980 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005599" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-751 -4982 -163" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005639" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_handle_x4.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1341 -4982 -163" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005643" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1235 -4980 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005647" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1365 -4982 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005651" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1219 -4980 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005655" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1217 -4982 -161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005681" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/control_room_displays/control_room_button_panel02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1092 -3784 -165" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "7005705" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/control_room_displays/control_room_button_panel02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1038 -3784 -165" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6984533" + "classname" "func_detail" + solid + { + "id" "6984553" + side + { + "id" "378734" + "plane" "(3672 -4080 -16) (3672 -4016 -16) (3484 -4048 -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" "378733" + "plane" "(3672 -4016 -16) (3672 -4080 -16) (3672 -4080 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" "378732" + "plane" "(3484 -4048 -16) (3672 -4016 -16) (3672 -4016 128)" + "material" "CS_APOLLO/OUTSIDE/HUBBLE2" + "uaxis" "[1 0 0 -545] 0.184" + "vaxis" "[0 0 -1 455] 0.281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378731" + "plane" "(3672 -4080 -16) (3484 -4080 -16) (3484 -4080 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" "378730" + "plane" "(3484 -4080 -16) (3484 -4048 -16) (3484 -4048 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" "378729" + "plane" "(3484 -4048 128) (3672 -4016 128) (3672 -4080 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6984563" + side + { + "id" "378746" + "plane" "(3484 -4016 -16) (3296 -4048 -16) (3296 -4080 -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" "378745" + "plane" "(3296 -4048 -16) (3484 -4016 -16) (3484 -4016 128)" + "material" "CS_APOLLO/OUTSIDE/HUBBLE2" + "uaxis" "[1 0 0 -544.682] 0.183594" + "vaxis" "[0 0 -1 455.111] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378744" + "plane" "(3484 -4080 -16) (3296 -4080 -16) (3296 -4080 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" "378743" + "plane" "(3296 -4080 -16) (3296 -4048 -16) (3296 -4048 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" "378742" + "plane" "(3484 -4016 -16) (3484 -4080 -16) (3484 -4080 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" "378741" + "plane" "(3484 -4080 128) (3296 -4080 128) (3296 -4048 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6984571" + side + { + "id" "378758" + "plane" "(3296 -4048 -16) (3108 -4016 -16) (3108 -4080 -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" "378757" + "plane" "(3108 -4016 -16) (3296 -4048 -16) (3296 -4048 128)" + "material" "CS_APOLLO/OUTSIDE/HUBBLE2" + "uaxis" "[1 0 0 -544.682] 0.183594" + "vaxis" "[0 0 -1 455.111] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378756" + "plane" "(3296 -4080 -16) (3108 -4080 -16) (3108 -4080 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" "378755" + "plane" "(3296 -4048 -16) (3296 -4080 -16) (3296 -4080 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" "378754" + "plane" "(3108 -4080 -16) (3108 -4016 -16) (3108 -4016 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 384] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378753" + "plane" "(3108 -4016 128) (3296 -4048 128) (3296 -4080 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6984579" + side + { + "id" "378770" + "plane" "(3108 -4048 -16) (2920 -4016 -16) (2920 -4080 -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" "378769" + "plane" "(2920 -4080 -16) (2920 -4016 -16) (2920 -4016 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 384] 0.125" + "vaxis" "[0 0 -1 960] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378768" + "plane" "(2920 -4016 -16) (3108 -4048 -16) (3108 -4048 128)" + "material" "CS_APOLLO/OUTSIDE/HUBBLE2" + "uaxis" "[1 0 0 -544.681] 0.183594" + "vaxis" "[0 0 -1 455.111] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378767" + "plane" "(3108 -4080 -16) (2920 -4080 -16) (2920 -4080 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" "378766" + "plane" "(3108 -4048 -16) (3108 -4080 -16) (3108 -4080 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" "378765" + "plane" "(2920 -4080 128) (2920 -4016 128) (3108 -4048 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6984552" + side + { + "id" "378728" + "plane" "(3484 -4048 136) (3672 -4016 136) (3672 -4080 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" "378727" + "plane" "(3672 -4080 128) (3672 -4080 136) (3672 -4016 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" "378726" + "plane" "(3672 -4016 128) (3672 -4016 136) (3484 -4048 136)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378725" + "plane" "(3484 -4080 128) (3484 -4080 136) (3672 -4080 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" "378724" + "plane" "(3484 -4048 128) (3484 -4048 136) (3484 -4080 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" "378723" + "plane" "(3672 -4080 128) (3672 -4016 128) (3484 -4048 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6984562" + side + { + "id" "378740" + "plane" "(3484 -4080 136) (3296 -4080 136) (3296 -4048 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" "378739" + "plane" "(3484 -4016 128) (3484 -4016 136) (3296 -4048 136)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378738" + "plane" "(3296 -4080 128) (3296 -4080 136) (3484 -4080 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" "378737" + "plane" "(3296 -4048 128) (3296 -4048 136) (3296 -4080 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" "378736" + "plane" "(3484 -4080 128) (3484 -4080 136) (3484 -4016 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" "378735" + "plane" "(3484 -4016 128) (3296 -4048 128) (3296 -4080 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6984570" + side + { + "id" "378752" + "plane" "(3108 -4016 136) (3296 -4048 136) (3296 -4080 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" "378751" + "plane" "(3296 -4048 128) (3296 -4048 136) (3108 -4016 136)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.985821 -0.1678 0 -974.978] 0.125" + "vaxis" "[0 0 -1 -28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378750" + "plane" "(3108 -4080 128) (3108 -4080 136) (3296 -4080 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" "378749" + "plane" "(3296 -4080 128) (3296 -4080 136) (3296 -4048 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" "378748" + "plane" "(3108 -4016 128) (3108 -4016 136) (3108 -4080 136)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378747" + "plane" "(3296 -4048 128) (3108 -4016 128) (3108 -4080 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6984578" + side + { + "id" "378764" + "plane" "(2920 -4080 136) (2920 -4016 136) (3108 -4048 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" "378763" + "plane" "(2920 -4016 128) (2920 -4016 136) (2920 -4080 136)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378762" + "plane" "(3108 -4048 128) (3108 -4048 136) (2920 -4016 136)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.985821 -0.1678 0 -1007.12] 0.125" + "vaxis" "[0 0 -1 -28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378761" + "plane" "(2920 -4080 128) (2920 -4080 136) (3108 -4080 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" "378760" + "plane" "(3108 -4080 128) (3108 -4080 136) (3108 -4048 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" "378759" + "plane" "(3108 -4048 128) (2920 -4016 128) (2920 -4080 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "6984662" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "3296 -4024 -15.75" + editor + { + "color" "206 135 0" + "groupid" "6984661" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6984666" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "3296 -4024 -9.75" + editor + { + "color" "206 135 0" + "groupid" "6984661" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6984671" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3296 -4024 -2.75" + editor + { + "color" "206 135 0" + "groupid" "6984661" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6984676" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "3296 -4024 -13.75" + editor + { + "color" "206 135 0" + "groupid" "6984661" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6984698" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "3519 -4024 -15.75" + editor + { + "color" "206 135 0" + "groupid" "6984697" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6984702" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "3519 -4024 -9.75" + editor + { + "color" "206 135 0" + "groupid" "6984697" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6984707" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3519 -4024 -2.75" + editor + { + "color" "206 135 0" + "groupid" "6984697" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6984712" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "3519 -4024 -13.75" + editor + { + "color" "206 135 0" + "groupid" "6984697" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6984752" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "3089 -4024 -15.75" + editor + { + "color" "206 135 0" + "groupid" "6984751" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6984756" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "3089 -4024 -9.75" + editor + { + "color" "206 135 0" + "groupid" "6984751" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6984761" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3089 -4024 -2.75" + editor + { + "color" "206 135 0" + "groupid" "6984751" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6984766" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "3089 -4024 -13.75" + editor + { + "color" "206 135 0" + "groupid" "6984751" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6984814" + "classname" "prop_static" + "angles" "-50.5 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3013 -4069 218.237" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -2768]" + } + } +} +entity +{ + "id" "6984818" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "3014 -4059 214.961" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +entity +{ + "id" "6984821" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "223 248 255 250" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-30 90 0" + "pitch" "-30" + "spawnflags" "0" + "style" "0" + "origin" "3014 -4058 210.961" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +hidden +{ + entity + { + "id" "6984850" + "classname" "prop_static" + "angles" "-50.5 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3201 -4069 218.237" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -2768]" + } + } +} +entity +{ + "id" "6984854" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "3202 -4059 214.961" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +entity +{ + "id" "6984857" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "223 248 255 250" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-30 90 0" + "pitch" "-30" + "spawnflags" "0" + "style" "0" + "origin" "3202 -4058 210.961" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +hidden +{ + entity + { + "id" "6984874" + "classname" "prop_static" + "angles" "-50.5 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3389 -4068 218.237" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -2768]" + } + } +} +entity +{ + "id" "6984878" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "3390 -4058 214.961" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +entity +{ + "id" "6984881" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "223 248 255 250" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-30 90 0" + "pitch" "-30" + "spawnflags" "0" + "style" "0" + "origin" "3390 -4057 210.961" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +hidden +{ + entity + { + "id" "6984898" + "classname" "prop_static" + "angles" "-50.5 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3577 -4068 218.237" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -2768]" + } + } +} +entity +{ + "id" "6984902" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "3578 -4058 214.961" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +entity +{ + "id" "6984905" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "223 248 255 250" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-30 90 0" + "pitch" "-30" + "spawnflags" "0" + "style" "0" + "origin" "3578 -4057 210.961" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +hidden +{ + entity + { + "id" "6962571" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3744.82 -2410.65 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962579" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -2410.74 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962618" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3516 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962622" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -2410 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962626" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962630" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3648 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962682" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3256 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962686" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962690" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3388 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962694" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -2410 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962702" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -2411 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962728" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -2410.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962732" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -2410.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962736" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3578.82 -2410 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962796" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2868 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962800" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2998 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962804" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3000 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962808" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3128 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962812" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -2410.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962816" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -2410.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962820" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3190.82 -2410 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962940" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025 -2410 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962944" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -2410.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962948" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -2410.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962952" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -2410 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962956" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962960" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2736 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962964" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2608 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6962984" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2780.18 -2410 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962988" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2780.18 -2409.74 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962992" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2780 -2409.65 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6962996" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2606 -2410 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963000" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2606 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963004" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2476 -2410 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963020" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2535 -2410.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963024" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2534.82 -2410 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963028" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2535 -2410.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963032" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2476 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963036" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2535 -2529.45 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963040" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2535 -2529.71 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963044" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2534.82 -2529.35 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963048" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2606 -2529.35 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963052" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2606 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963056" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2608 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963060" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2736 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963064" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2780.18 -2529.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963068" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2780.18 -2529.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963072" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2780 -2529 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963076" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2868 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963080" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963084" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -2529.35 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963088" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3000 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963092" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2998 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963096" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -2529.71 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963100" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -2529.45 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963104" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025 -2529.35 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963108" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3128 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963112" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -2529.71 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963116" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -2529.45 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963120" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3190.82 -2529.35 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963124" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3256 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963128" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -2529.35 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963132" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963136" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3388 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963140" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3516 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963144" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -2529.45 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963148" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -2529.71 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963152" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3648 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963156" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -2529.35 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963160" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -2529.35 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963164" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -2530.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963168" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -2530.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963172" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3744.82 -2530 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963176" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -2743.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963180" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3516 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963184" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -2743.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963188" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3388 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963192" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963196" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -2743 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963200" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3648 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963208" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3744.82 -2743.65 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963212" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -2744 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963216" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -2743.74 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963220" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963224" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -2743 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963228" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2868 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963232" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3000 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963236" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2998 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963240" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -2743.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963244" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025 -2743 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963248" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -2743.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963252" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3128 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963256" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -2743.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963260" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -2743.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963264" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3190.82 -2743 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963268" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3256 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963272" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -2743 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963276" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -2743 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963384" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3505.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963388" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3516 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963392" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3505.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963396" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3388 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963400" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963404" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3505 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963408" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3648 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963416" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3744.82 -3505.65 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963420" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3506 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963424" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3505.74 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963428" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963432" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3505 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963436" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2868 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963440" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3000 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963444" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2998 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963448" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3505.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963452" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025 -3505 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963456" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3505.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963460" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3128 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963464" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3505.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963468" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3505.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963472" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3190.82 -3505 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963476" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3256 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963480" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3505 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963484" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3505 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963488" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3116.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963492" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3516 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963496" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3116.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963500" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3388 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963504" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963508" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3116 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963512" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3648 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963520" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3744.82 -3116.65 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963524" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3117 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963528" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3116.74 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963532" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963536" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3116 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963540" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2868 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963544" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3000 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963548" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2998 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963552" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3116.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963556" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025 -3116 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963560" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3116.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963564" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3128 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963568" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3116.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963572" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3116.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963576" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3190.82 -3116 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963580" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3256 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963584" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3116 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963588" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3116 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963716" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3648 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963720" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3321 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963724" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3320.74 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963728" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3744.82 -3320.65 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963732" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963736" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3320 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963740" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3516 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963744" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3320.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963748" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3320.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963752" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3388 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963756" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963760" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3320 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963764" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3256 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963768" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3128 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963772" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3320.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963776" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3320.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963780" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3190.82 -3320 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963784" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3000 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963788" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3320.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963792" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3320.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963796" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025 -3320 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963800" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2998 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963804" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2868 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963812" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3320 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963816" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3320 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963924" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3648 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963928" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3695 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963932" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3694.74 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963936" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3744.82 -3694.65 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963940" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963944" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3694 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963948" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3516 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963952" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3694.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963956" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3694.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963960" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3388 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963964" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963968" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3694 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963972" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3256 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963976" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3128 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963980" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3694.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963984" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3694.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963988" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3190.82 -3694 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6963992" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3000 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6963996" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3694.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964000" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3694.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964004" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025 -3694 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964008" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2998 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964012" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2868 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964020" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3694 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964024" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3694 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964028" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3648 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964032" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3665.74 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964036" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3745 -3666 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964040" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964044" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3646 -3665 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964048" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3516 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964052" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3665.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964056" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3579 -3665.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964060" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3388 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964064" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964068" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3386 -3665 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964072" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3256 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964076" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3128 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964080" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3665.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964084" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -3665.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964088" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3190.82 -3665 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964092" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3000 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964096" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3665.35 520" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964100" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025.18 -3665.09 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964104" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3025 -3665 534.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6964108" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2998 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964112" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2868 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964116" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3665 519" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964120" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2866 -3665 522" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6964160" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2047 -4232 141" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964195" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_corner.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2047 -4232 141" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964223" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2047 -4196 145" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964310" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1041 -4538 130" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964334" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1040 -4521 61" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6964366" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1040 -4506 61" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6964390" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_16.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1041 -4538 146" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964425" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_corner.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1041 -4538 146" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964445" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_128.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1041 -4534 150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964498" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1041 -4406 150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964517" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1041 -4342 150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964576" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1234 -5504 55" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6964608" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1259 -5503 125" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964612" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_16.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1259 -5503 141" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964616" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_corner.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1259 -5503 141" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964660" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1201 -5503 145" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964703" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1255 -5503 145" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964755" + "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/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2171 -3776 58.3806" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "6964875" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2285 -3776 71.3983" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6964899" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2264 -3775 139" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964923" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2260 -3775 143" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964927" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_corner.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2264 -3775 139" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6964979" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel02_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2189 -3776 143.085" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6965007" + "classname" "prop_static" + "angles" "-0.999994 94 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3181 -4080.26 157.395" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6965011" + "classname" "prop_static" + "angles" "-0.999994 79.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3191 -4080 157.395" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6965031" + "classname" "prop_static" + "angles" "-0.999994 79.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3586 -4080 157" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6965035" + "classname" "prop_static" + "angles" "-0.999994 94 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3576 -4080.26 157" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6965075" + "classname" "prop_static" + "angles" "30 262.5 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/exhibits/sputnik.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" ".3" + "origin" "1485 -4973 58" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "6965123" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable16.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1485 -4973 40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "6965170" + "classname" "prop_static" + "angles" "24.4729 334.161 97.8424" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lunar_orbiter.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" ".3" + "origin" "1523 -4967 89.0479" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +hidden +{ + entity + { + "id" "6965218" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable64.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1527 -4969 94" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "6965268" + "classname" "prop_static" + "angles" "0 111 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1535 -4875 40.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "6943580" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-771 -3269 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6943813" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-280 -3824 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6943817" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-279 -3825 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6943821" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-295 -3825 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6943826" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-279 -3953 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6943830" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-295 -3953 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6943835" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-280 -3952 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6944041" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-192 -3736 -479.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6944045" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-192 -3736 -480" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6944049" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-35 -3735 -479.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6944053" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-35 -3735 -480" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6924430" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3433 -2301 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924434" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3539 -2313 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924438" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3497 -2301 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924442" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3465 -2313 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924446" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_curve_u.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3625 -2301 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6924450" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3650 -2301 487" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6924502" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3590 -2301 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924510" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3591 -3173 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924514" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3498 -3173 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924518" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_curve_u.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3626 -3173 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6924522" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3651 -3173 487" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6924526" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3466 -3185 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924530" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3540 -3185 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924534" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3434 -3173 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924566" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3495 -3161 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924586" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3499 -3725 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924590" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3435 -3725 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924594" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3496 -3713 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924598" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3467 -3737 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924602" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3541 -3737 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924606" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3592 -3725 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924610" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_curve_u.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3627 -3725 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6924614" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3652 -3725 487" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6924626" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3222 -3385 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924630" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3094 -3385 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924634" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3189 -3373 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924650" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3188 -3397 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924703" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2966 -3385 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924707" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3060 -3397 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924711" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3061 -3373 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924731" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2838 -3385 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924766" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3392 -3587 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924774" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3254 -3385 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924782" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3061 -3385 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924786" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2967 -4001 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924794" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2839 -4001 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924802" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3221 -2897 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924806" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3093 -2897 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924810" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3188 -2885 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924814" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3253 -2897 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924818" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3060 -2897 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924822" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2965 -2897 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924826" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3060 -2885 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924830" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2837 -2897 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924834" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3187 -2909 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924838" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3059 -2909 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924882" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3221 -2301 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924886" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3093 -2301 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924890" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3188 -2289 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924894" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3253 -2301 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924898" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3060 -2301 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924906" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3060 -2289 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924914" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3187 -2313 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924918" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3059 -2313 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6924962" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_256.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2561 -2301 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6925000" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2433 -2301 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6925008" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2805 -2301 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6925016" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2584 -2301 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6925020" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2987 -2343 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6925028" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3029 -2301 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6925055" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2817 -2301 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6925122" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2721 -2312 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6925126" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "2849 -2312 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6925138" + "classname" "prop_static" + "angles" "0 180 180" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_low.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3112 -2496 536" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6925190" + "classname" "prop_static" + "angles" "0 180 -180" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_low.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3112 -2635 536" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6925198" + "classname" "prop_static" + "angles" "0 180 180" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_low.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3112 -3299 536" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6925202" + "classname" "prop_static" + "angles" "0 180 180" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_low.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3112 -3149 536" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6925222" + "classname" "prop_static" + "angles" "0 180 -180" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_low.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3112 -3794 536" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6925226" + "classname" "prop_static" + "angles" "0 180 -180" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_low.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3112 -3644 536" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6904526" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -3440 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904531" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -3440 16.25" + editor + { + "color" "200 253 0" + "groupid" "6904530" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6904535" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2554 -3442 38.25" + editor + { + "color" "200 253 0" + "groupid" "6904530" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6904538" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2545 -3442 35.25" + editor + { + "color" "200 253 0" + "groupid" "6904530" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6904561" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -3312 16.25" + editor + { + "color" "200 253 0" + "groupid" "6904560" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6904565" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2554 -3314 38.25" + editor + { + "color" "200 253 0" + "groupid" "6904560" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6904568" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2545 -3314 35.25" + editor + { + "color" "200 253 0" + "groupid" "6904560" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6904613" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -3184 16.25" + editor + { + "color" "200 253 0" + "groupid" "6904612" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6904617" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2554 -3186 38.25" + editor + { + "color" "200 253 0" + "groupid" "6904612" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6904620" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2545 -3186 35.25" + editor + { + "color" "200 253 0" + "groupid" "6904612" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6904644" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -3312 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904660" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -3184 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904694" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -3056 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904698" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -3056 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904712" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -2928 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904716" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2558 -2928 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6904779" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2545 -3058 35.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6904815" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2466 -2648 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904819" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2466 -2648 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6904823" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2453 -2650 35.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6904854" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2466 -2520 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904858" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2466 -2520 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904895" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2421 -3562 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6904899" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2421 -3562 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6904903" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2408 -3564 35.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6904971" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2556 -3621 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6904975" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2556 -3597 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6905013" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2810 -3781 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6905017" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2810 -3781 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6905136" + "classname" "func_detail" + solid + { + "id" "6905134" + side + { + "id" "378470" + "plane" "(2808 -4064 512.526) (2930 -4064 512.526) (2930 -4080 512.526)" + "material" "ADS/AD01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378469" + "plane" "(2808 -4080 219.526) (2930 -4080 219.526) (2930 -4064 219.526)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 -936] 0.125" + "vaxis" "[0 -1 0 -252] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378468" + "plane" "(2808 -4064 512.526) (2808 -4080 512.526) (2808 -4080 219.526)" + "material" "ADS/AD01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378467" + "plane" "(2930 -4064 219.526) (2930 -4080 219.526) (2930 -4080 512.526)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378466" + "plane" "(2930 -4064 512.526) (2808 -4064 512.526) (2808 -4064 219.526)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378465" + "plane" "(2930 -4080 219.526) (2808 -4080 219.526) (2808 -4080 512.526)" + "material" "ADS/AD01" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "6905149" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2862 -4064 287.688" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6905165" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2862 -4064 453" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6905211" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_16.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2788 -2992 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905250" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2992 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905254" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2992 319" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905258" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2992 351" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905262" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2992 311" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905266" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2992 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905290" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_32.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2724 -2714 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905294" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_32.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2756 -2714 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905298" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2714 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905302" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2714 311" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905306" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2714 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905310" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2714 319" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905314" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -2714 351" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905318" + "classname" "prop_static" + "angles" "0 0 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_corner_large.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2810 -2714 314" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905322" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_16.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2788 -2714 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905326" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2812 -2714 320" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905378" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_32.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2756 -3264 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905382" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_32.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2724 -3264 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905386" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_16.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2788 -3264 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905390" + "classname" "prop_static" + "angles" "0 0 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_corner_large.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2810 -3264 314" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905394" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2812 -3264 320" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905398" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3264 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905402" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3264 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905406" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3264 311" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905410" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3264 319" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905414" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3264 351" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905458" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_32.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2724 -3626 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905462" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_32.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2756 -3626 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905466" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3626 311" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905470" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3626 319" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905474" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3626 351" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905478" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3626 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905482" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -3626 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "6905486" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_16.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2788 -3626 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905490" + "classname" "prop_static" + "angles" "0 0 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_corner_large.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2810 -3626 314" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905494" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2812 -3626 320" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "6905565" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3433 -4001 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6905569" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3497 -4001 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6905573" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3592 -3999 452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6905577" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3464 -3989 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6905705" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3223 -4001 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6905709" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3190 -3989 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6905713" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3095 -4001 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6905814" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_curve_u.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3625 -4001 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6905842" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3650 -4001 487" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6905885" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3393 -3959 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6905960" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3538 -3989 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6905969" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3393 -3959 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6905985" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3393 -3831 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906005" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3392 -3683 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906013" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3392 -3555 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906021" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3350 -3385 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6906049" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3392 -3343 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906061" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3435 -3725 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6906148" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3391 -3131 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906152" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3434 -3173 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6906156" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3391 -3003 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906160" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3391 -2343 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6906164" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3391 -2727 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906228" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3391 -2855 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906256" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3391 -2599 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906292" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3391 -2471 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "6906332" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3349 -2897 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6885921" + "classname" "hostage_entity" + "angles" "0 358.5 0" + "HostageSpawnExclusionGroup1" "0" + "HostageSpawnExclusionGroup10" "0" + "HostageSpawnExclusionGroup11" "0" + "HostageSpawnExclusionGroup12" "0" + "HostageSpawnExclusionGroup13" "0" + "HostageSpawnExclusionGroup14" "0" + "HostageSpawnExclusionGroup15" "0" + "HostageSpawnExclusionGroup16" "0" + "HostageSpawnExclusionGroup17" "0" + "HostageSpawnExclusionGroup18" "0" + "HostageSpawnExclusionGroup19" "0" + "HostageSpawnExclusionGroup2" "1" + "HostageSpawnExclusionGroup20" "0" + "HostageSpawnExclusionGroup21" "0" + "HostageSpawnExclusionGroup22" "0" + "HostageSpawnExclusionGroup23" "0" + "HostageSpawnExclusionGroup24" "0" + "HostageSpawnExclusionGroup25" "0" + "HostageSpawnExclusionGroup26" "0" + "HostageSpawnExclusionGroup27" "0" + "HostageSpawnExclusionGroup28" "0" + "HostageSpawnExclusionGroup29" "0" + "HostageSpawnExclusionGroup3" "0" + "HostageSpawnExclusionGroup30" "0" + "HostageSpawnExclusionGroup4" "0" + "HostageSpawnExclusionGroup5" "0" + "HostageSpawnExclusionGroup6" "0" + "HostageSpawnExclusionGroup7" "0" + "HostageSpawnExclusionGroup8" "0" + "HostageSpawnExclusionGroup9" "0" + "HostageSpawnRandomFactor" "1" + "HostageType" "0" + "origin" "1948 -2816 20" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "6885931" + "classname" "prop_static" + "angles" "0 0.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2467 -2856 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +entity +{ + "id" "6885965" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "2054 -2496 125" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/space_shuttle_flight_duration" + "sides" "288378" + "StartU" "0" + "StartV" "1" + "uv0" "-69.211 -63.32 0" + "uv1" "-69.211 63.32 0" + "uv2" "69.211 63.32 0" + "uv3" "69.211 -63.32 0" + "origin" "2054 -2496 125" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6885995" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "2261 -2496 119" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/space_shuttle_flight_missions" + "sides" "288378" + "StartU" "0" + "StartV" "1" + "uv0" "-91.1862 -69.2384 0" + "uv1" "-91.1862 69.2384 0" + "uv2" "91.1862 69.2384 0" + "uv3" "91.1862 -69.2384 0" + "origin" "2261 -2496 119" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "6886034" + "classname" "prop_static" + "angles" "0 114 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2485 -3532 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "6886054" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2976 -2214 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6886070" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3498 -2214 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6886341" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2421 -3757 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "6886374" + "classname" "hostage_entity" + "angles" "0 268 0" + "HostageSpawnExclusionGroup1" "0" + "HostageSpawnExclusionGroup10" "0" + "HostageSpawnExclusionGroup11" "0" + "HostageSpawnExclusionGroup12" "0" + "HostageSpawnExclusionGroup13" "0" + "HostageSpawnExclusionGroup14" "0" + "HostageSpawnExclusionGroup15" "0" + "HostageSpawnExclusionGroup16" "0" + "HostageSpawnExclusionGroup17" "0" + "HostageSpawnExclusionGroup18" "0" + "HostageSpawnExclusionGroup19" "0" + "HostageSpawnExclusionGroup2" "1" + "HostageSpawnExclusionGroup20" "0" + "HostageSpawnExclusionGroup21" "0" + "HostageSpawnExclusionGroup22" "0" + "HostageSpawnExclusionGroup23" "0" + "HostageSpawnExclusionGroup24" "0" + "HostageSpawnExclusionGroup25" "0" + "HostageSpawnExclusionGroup26" "0" + "HostageSpawnExclusionGroup27" "0" + "HostageSpawnExclusionGroup28" "0" + "HostageSpawnExclusionGroup29" "0" + "HostageSpawnExclusionGroup3" "0" + "HostageSpawnExclusionGroup30" "0" + "HostageSpawnExclusionGroup4" "0" + "HostageSpawnExclusionGroup5" "0" + "HostageSpawnExclusionGroup6" "0" + "HostageSpawnExclusionGroup7" "0" + "HostageSpawnExclusionGroup8" "0" + "HostageSpawnExclusionGroup9" "0" + "HostageSpawnRandomFactor" "1" + "HostageType" "0" + "origin" "2470 -3304.63 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "6886383" + "classname" "func_detail" + solid + { + "id" "6886393" + side + { + "id" "378326" + "plane" "(2552 -3580 16) (2552 -3568 16) (2560 -3568 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[1 0 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378325" + "plane" "(2552 -3568 -16) (2552 -3616 -16) (2560 -3616 -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" "378324" + "plane" "(2552 -3616 -16) (2552 -3568 -16) (2552 -3568 16)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 1 0 336] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378323" + "plane" "(2560 -3568 -16) (2560 -3616 -16) (2560 -3616 -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" "378322" + "plane" "(2552 -3568 -16) (2560 -3568 -16) (2560 -3568 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" "378321" + "plane" "(2560 -3616 -16) (2552 -3616 -16) (2552 -3616 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 -1 383.994] 0.125" + "vaxis" "[1 0 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378320" + "plane" "(2552 -3616 -8) (2552 -3580 16) (2560 -3580 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -0.83205 -0.554701 785.087] 0.125" + "vaxis" "[1 0 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "6886401" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -0.61714 0.786853" + "BasisOrigin" "2547.5 -2602.65 18.1419" + "BasisU" "1 0 0" + "BasisV" "-0 0.786853 0.61714" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/display_stance_launch_vector" + "sides" "285737" + "StartU" "0" + "StartV" "1" + "uv0" "-58.5 -41.3794 0" + "uv1" "-58.5 41.3794 0" + "uv2" "58.5 41.3794 0" + "uv3" "58.5 -41.3794 0" + "origin" "2547.5 -2602.65 18.1419" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +hidden +{ + entity + { + "id" "6886497" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2744 -3537 346" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6886524" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2661 -3057 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6886540" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2661 -3345 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6867959" + "classname" "prop_static" + "angles" "0 225 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-404 -3981 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6849473" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-818 -3619 79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6849485" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-742 -3620 79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6849489" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-608 -3619 79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6849497" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-680 -3617 79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6849501" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-544 -3604 79" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6849543" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-847 -3700 113" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6849547" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-774 -3700 113" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6849551" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-646 -3700 113" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6849615" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-518 -3700 113" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6849675" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-518 -3512 113" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6849679" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-646 -3512 113" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6849683" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-774 -3512 113" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6849687" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-847 -3512 113" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6849833" + "classname" "prop_static" + "angles" "0 97 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_inferno/hr_i/curb_set_c/curb_set_c_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-118 -3918 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6849868" + "classname" "prop_static" + "angles" "0 97 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_inferno/hr_i/curb_set_c/curb_set_c_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-244 -3934 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6849888" + "classname" "prop_static" + "angles" "0 97 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_inferno/hr_i/curb_set_c/curb_set_c_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-370 -3950 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6849900" + "classname" "prop_static" + "angles" "0 3 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_inferno/hr_i/curb_set_c/curb_set_c_b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-470 -3968 35.0577" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6849967" + "classname" "prop_static" + "angles" "0 51.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-139 -3952 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6849991" + "classname" "prop_static" + "angles" "0 43 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-197 -3970 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6850007" + "classname" "prop_static" + "angles" "0 51.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-97 -3957 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6850011" + "classname" "prop_static" + "angles" "0 43 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-255 -3972 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6850015" + "classname" "prop_static" + "angles" "0 204 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-327 -3975 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6829655" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-409 -2936 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "6829679" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-635 -2936 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "6829723" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-673.571 -2956.16 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "6829818" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-667 -3143 0.250004" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "6829826" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-893 -3143 0.250004" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +entity +{ + "id" "6829918" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "-610 -3133.5 35.4" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "6829919" + side + { + "id" "377929" + "plane" "(-648 -3136 39.9007) (-648 -3135 39.9007) (-572 -3133 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 844] 0.25" + "vaxis" "[0 -1 0 -852] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377928" + "plane" "(-648 -3135 30.9007) (-648 -3136 30.9007) (-572 -3134 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 844] 0.25" + "vaxis" "[0 -1 0 -852] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377927" + "plane" "(-648 -3136 30.9015) (-648 -3135 30.9015) (-648 -3135 39.9042)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377926" + "plane" "(-572 -3133 30.9016) (-572 -3134 30.9016) (-572 -3134 39.9044)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377925" + "plane" "(-648 -3135 30.9015) (-572 -3133 30.9015) (-572 -3133 39.9043)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 844] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377924" + "plane" "(-572 -3134 30.9015) (-648 -3136 30.9015) (-648 -3136 39.9043)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 844] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +hidden +{ + entity + { + "id" "6829921" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-570.815 -3133.1 0.239849" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6829925" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-649.201 -3135.94 0.239845" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6829973" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "-532 -3131.5 35.4" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "6829974" + side + { + "id" "377941" + "plane" "(-570 -3134 39.9007) (-570 -3133 39.9007) (-494 -3131 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 532] 0.25" + "vaxis" "[0 -1 0 -844] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377940" + "plane" "(-570 -3133 30.9007) (-570 -3134 30.9007) (-494 -3132 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 532] 0.25" + "vaxis" "[0 -1 0 -844] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377939" + "plane" "(-570 -3134 30.9015) (-570 -3133 30.9015) (-570 -3133 39.9042)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 844] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377938" + "plane" "(-494 -3131 30.9016) (-494 -3132 30.9016) (-494 -3132 39.9044)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 844] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377937" + "plane" "(-570 -3133 30.9015) (-494 -3131 30.9015) (-494 -3131 39.9043)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 532] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377936" + "plane" "(-494 -3132 30.9015) (-570 -3134 30.9015) (-570 -3134 39.9043)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 532] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +hidden +{ + entity + { + "id" "6829976" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-492.815 -3131.1 0.239849" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6829984" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "-454 -3129.5 35.4" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "6829985" + side + { + "id" "377953" + "plane" "(-492 -3131 39.9007) (-396 -3128.5 39.9007) (-396 -3129.5 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 220] 0.25" + "vaxis" "[0 -1 0 -836] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377952" + "plane" "(-492 -3132 30.9007) (-396 -3129.5 30.9007) (-396 -3128.5 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 220] 0.25" + "vaxis" "[0 -1 0 -836] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377951" + "plane" "(-492 -3131 30.9007) (-492 -3131 39.9007) (-492 -3132 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 836] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377950" + "plane" "(-396 -3129.5 30.9007) (-396 -3129.5 39.9007) (-396 -3128.5 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 836] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377949" + "plane" "(-396 -3128.5 30.9007) (-396 -3128.5 39.9007) (-492 -3131 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 220] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377948" + "plane" "(-492 -3132 30.9007) (-492 -3132 39.9007) (-396 -3129.5 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 220] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +hidden +{ + entity + { + "id" "6829987" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-395 -3129 0.239849" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6830855" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-402 -2548 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6830859" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-401 -2548 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6830911" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "457 -2669 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "6830939" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "457 -2447 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "6831145" + "classname" "prop_dynamic_override" + "angles" "15 323 0" + "AnimateEveryFrame" "0" + "body" "0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademindist" "-1" + "fadescale" "1" + "health" "0" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "origin" "2531.47 -2319.55 84.532" + editor + { + "color" "178 203 0" + "groupid" "6831144" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "6831147" + "classname" "prop_static" + "angles" "0 323 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/exhibits/display_stance_launch.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2527.09 -2316.25 -16" + editor + { + "color" "178 203 0" + "groupid" "6831144" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6831177" + "classname" "prop_static" + "angles" "0 294 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/exhibits/display_stance_deployment.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2602.53 -2258.19 -16" + editor + { + "color" "252 101 0" + "groupid" "6831176" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6831181" + "classname" "prop_dynamic_override" + "angles" "15 294 0" + "AnimateEveryFrame" "0" + "body" "0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademindist" "-1" + "fadescale" "1" + "health" "0" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "origin" "2604.76 -2263.2 84.532" + editor + { + "color" "252 101 0" + "groupid" "6831176" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "6831223" + "classname" "prop_dynamic_override" + "angles" "15 286.5 0" + "AnimateEveryFrame" "0" + "body" "0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademindist" "-1" + "fadescale" "1" + "health" "0" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "origin" "2691.91 -2231.17 84.532" + editor + { + "color" "101 150 0" + "groupid" "6831222" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "6831225" + "classname" "prop_static" + "angles" "0 286.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/exhibits/display_stance_landing.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2690.35 -2225.91 -16" + editor + { + "color" "101 150 0" + "groupid" "6831222" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6831341" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0.998752 0.0499376 0" + "BasisOrigin" "2204 -3244 56" + "BasisU" "-0.0499376 0.998752 0" + "BasisV" "0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/space_shuttle_flight_missions" + "sides" "378112" + "StartU" "0" + "StartV" "1" + "uv0" "-96.7055 -72.6927 0" + "uv1" "-96.7055 72.6927 0" + "uv2" "96.7055 72.6927 0" + "uv3" "96.7055 -72.6927 0" + "origin" "2204 -3244 56" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "6831349" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0.989949 0.141421 0" + "BasisOrigin" "2214 -3401 64" + "BasisU" "-0.141421 0.989949 0" + "BasisV" "0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/space_shuttle_flight_duration" + "sides" "378118" + "StartU" "0" + "StartV" "1" + "uv0" "-69.3923 -66.4716 0" + "uv1" "-69.3923 66.4716 0" + "uv2" "69.3923 66.4716 0" + "uv3" "69.3923 -66.4716 0" + "origin" "2214 -3401 64" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "6831533" + "classname" "func_detail" + solid + { + "id" "6831527" + side + { + "id" "378139" + "plane" "(2176 -3168 136) (2200 -3168 136) (2200 -3176 136)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -240] 0.125" + "vaxis" "[0 -1 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378138" + "plane" "(2176 -3176 16) (2200 -3176 16) (2200 -3168 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" "378137" + "plane" "(2176 -3168 136) (2176 -3176 136) (2176 -3176 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" "378136" + "plane" "(2200 -3168 16) (2200 -3176 16) (2200 -3176 136)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 -240] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378135" + "plane" "(2200 -3168 136) (2176 -3168 136) (2176 -3168 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" "378134" + "plane" "(2200 -3176 16) (2176 -3176 16) (2176 -3176 136)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 -465] 0.125" + "vaxis" "[0 0 -1 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "6811799" + "classname" "func_detail" + solid + { + "id" "6811451" + side + { + "id" "377847" + "plane" "(2808 -2349 -8) (3320 -2349 -8) (3320 -2357 -8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 -1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377846" + "plane" "(2808 -2357 -16) (3320 -2357 -16) (3320 -2349 -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" "377845" + "plane" "(2808 -2349 -8) (2808 -2357 -8) (2808 -2357 -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" "377844" + "plane" "(3320 -2349 -16) (3320 -2357 -16) (3320 -2357 -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" "377843" + "plane" "(3320 -2349 -8) (2808 -2349 -8) (2808 -2349 -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" "377842" + "plane" "(3320 -2357 -16) (2808 -2357 -16) (2808 -2357 -8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "6811812" + "classname" "func_detail" + solid + { + "id" "6811804" + side + { + "id" "377865" + "plane" "(3320 -2349 -8) (3328 -2349 -8) (3328 -3784 -8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 -1 0 -84] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377864" + "plane" "(3320 -3784 -16) (3328 -3784 -16) (3328 -2349 -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" "377863" + "plane" "(3320 -2349 -8) (3320 -3784 -8) (3320 -3784 -16)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 1 0 80] 0.25" + "vaxis" "[0 0 -1 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377862" + "plane" "(3328 -2349 -16) (3328 -3784 -16) (3328 -3784 -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" "377861" + "plane" "(3328 -2349 -8) (3320 -2349 -8) (3320 -2349 -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" "377860" + "plane" "(3328 -3784 -16) (3320 -3784 -16) (3320 -3784 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +hidden +{ + entity + { + "id" "6793133" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -3978 7" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "6793145" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1989 -3983.97 7" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "6774767" + "classname" "prop_static" + "angles" "0 251.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-263 -5148 0.238861" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -2768]" + } + } +} +hidden +{ + entity + { + "id" "6775150" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1896 -5192 0.25" + editor + { + "color" "206 135 0" + "groupid" "6775149" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6775154" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1896 -5192 6.25" + editor + { + "color" "206 135 0" + "groupid" "6775149" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6775159" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1896 -5192 13.25" + editor + { + "color" "206 135 0" + "groupid" "6775149" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6775164" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1896 -5192 2.25" + editor + { + "color" "206 135 0" + "groupid" "6775149" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6775186" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "2024 -4376 0.249999" + editor + { + "color" "206 135 0" + "groupid" "6775185" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6775190" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "2024 -4376 6.25" + editor + { + "color" "206 135 0" + "groupid" "6775185" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6775195" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2024 -4376 13.25" + editor + { + "color" "206 135 0" + "groupid" "6775185" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6775200" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "2024 -4376 2.25" + editor + { + "color" "206 135 0" + "groupid" "6775185" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6775240" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -4480 0.249992" + editor + { + "color" "206 135 0" + "groupid" "6775239" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6775244" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1888 -4480 6.24999" + editor + { + "color" "206 135 0" + "groupid" "6775239" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6775249" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1888 -4480 13.25" + editor + { + "color" "206 135 0" + "groupid" "6775239" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6775254" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1888 -4480 2.24999" + editor + { + "color" "206 135 0" + "groupid" "6775239" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6775276" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1680 -4480 0.249992" + editor + { + "color" "206 135 0" + "groupid" "6775275" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6775280" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1680 -4480 6.24999" + editor + { + "color" "206 135 0" + "groupid" "6775275" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6775285" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1680 -4480 13.25" + editor + { + "color" "206 135 0" + "groupid" "6775275" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6775290" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1680 -4480 2.24999" + editor + { + "color" "206 135 0" + "groupid" "6775275" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "6756128" + "classname" "func_detail" + solid + { + "id" "6366384" + side + { + "id" "377194" + "plane" "(2395 -3776 294) (2395 -3776 210) (2395 -3792 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[0 1 0 -0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377193" + "plane" "(2393 -3792 294) (2393 -3792 210) (2393 -3776 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[0 -1 0 1.01563] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377192" + "plane" "(2395 -3792 294) (2395 -3792 210) (2393 -3792 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[1 0 0 -54.9922] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377191" + "plane" "(2393 -3776 294) (2393 -3776 210) (2395 -3776 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[-1 0 0 56.9902] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377190" + "plane" "(2393 -3792 294) (2393 -3776 294) (2395 -3776 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 39.9961] 0.25" + "vaxis" "[1 0 0 -40.0088] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377189" + "plane" "(2393 -3776 210) (2393 -3792 210) (2395 -3792 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24.0039] 0.25" + "vaxis" "[1 0 0 -40.0088] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "6756134" + "classname" "func_detail" + solid + { + "id" "6366381" + side + { + "id" "377200" + "plane" "(2446 -3776 294) (2446 -3776 208.002) (2446 -3792 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 48.0059] 0.125" + "vaxis" "[0 -1 0 0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377199" + "plane" "(2446 -3792 294) (2446 -3792 208.002) (2444 -3792 208.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -48] 0.125" + "vaxis" "[1 0 0 -15.9883] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377198" + "plane" "(2444 -3776 294) (2444 -3776 208) (2446 -3776 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -48] 0.125" + "vaxis" "[-1 0 0 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377197" + "plane" "(2444 -3792 208.001) (2446 -3792 208.001) (2446 -3776 208.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -47.9951] 0.25" + "vaxis" "[0 1 0 -0.00976563] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377196" + "plane" "(2444 -3792 294) (2444 -3792 208.002) (2444 -3776 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -48] 0.125" + "vaxis" "[0 -1 0 0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377195" + "plane" "(2444 -3776 294) (2446 -3776 294) (2446 -3792 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "6756144" + "classname" "func_detail" + solid + { + "id" "6366386" + side + { + "id" "377206" + "plane" "(2446 -3792 296) (2344 -3792 296) (2344 -3776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 -0.0078125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377205" + "plane" "(2446 -3776 294) (2344 -3776 294) (2344 -3792 294)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -151.99] 0.125" + "vaxis" "[0 1 0 -0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377204" + "plane" "(2446 -3792 294) (2344 -3792 294) (2344 -3792 296)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -151.99] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377203" + "plane" "(2344 -3776 294) (2446 -3776 294) (2446 -3776 296)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -151.99] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377202" + "plane" "(2446 -3776 294) (2446 -3792 294) (2446 -3792 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00976563] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377201" + "plane" "(2344 -3792 294) (2344 -3776 294) (2344 -3776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00976563] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366382" + side + { + "id" "377212" + "plane" "(2444 -3792 210) (2344 -3792 210) (2344 -3776 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -159.99] 0.125" + "vaxis" "[0 -1 0 0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377211" + "plane" "(2444 -3776 208) (2344 -3776 208) (2344 -3792 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -159.99] 0.125" + "vaxis" "[0 1 0 -0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377210" + "plane" "(2444 -3792 208.001) (2344 -3792 208.001) (2344 -3792 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -159.99] 0.125" + "vaxis" "[0 0 -1 -2.04797] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377209" + "plane" "(2344 -3776 208.001) (2444 -3776 208.001) (2444 -3776 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -159.99] 0.125" + "vaxis" "[0 0 1 50.0539] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377208" + "plane" "(2444 -3776 208.001) (2444 -3792 208.001) (2444 -3792 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00976563] 0.25" + "vaxis" "[0 0 -1 -25.024] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377207" + "plane" "(2344 -3792 208.001) (2344 -3776 208.001) (2344 -3776 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00976563] 0.25" + "vaxis" "[0 0 -1 -25.024] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366388" + side + { + "id" "377218" + "plane" "(2497 -3792 210) (2446 -3792 210) (2446 -3776 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -207.99] 0.125" + "vaxis" "[0 -1 0 0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377217" + "plane" "(2497 -3776 208) (2446 -3776 208) (2446 -3792 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -207.99] 0.125" + "vaxis" "[0 1 0 -0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377216" + "plane" "(2497 -3792 208.001) (2446 -3792 208.001) (2446 -3792 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -207.99] 0.125" + "vaxis" "[0 0 -1 -2.04797] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377215" + "plane" "(2446 -3776 208.001) (2497 -3776 208.001) (2497 -3776 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -207.99] 0.125" + "vaxis" "[0 0 1 50.0539] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377214" + "plane" "(2497 -3776 208.001) (2497 -3792 208.001) (2497 -3792 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00976563] 0.25" + "vaxis" "[0 0 -1 -25.024] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377213" + "plane" "(2446 -3792 208.001) (2446 -3776 208.001) (2446 -3776 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00976563] 0.25" + "vaxis" "[0 0 -1 -25.024] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366390" + side + { + "id" "377224" + "plane" "(2497 -3776 294) (2497 -3776 210) (2497 -3792 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[0 1 0 -0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377223" + "plane" "(2495 -3792 294) (2495 -3792 210) (2495 -3776 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[0 -1 0 1.01563] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377222" + "plane" "(2497 -3792 294) (2497 -3792 210) (2495 -3792 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[1 0 0 -38.9922] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377221" + "plane" "(2495 -3776 294) (2495 -3776 210) (2497 -3776 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[-1 0 0 40.9902] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377220" + "plane" "(2495 -3792 294) (2495 -3776 294) (2497 -3776 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 39.9961] 0.25" + "vaxis" "[1 0 0 -0.00878906] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377219" + "plane" "(2495 -3776 210) (2495 -3792 210) (2497 -3792 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24.0039] 0.25" + "vaxis" "[1 0 0 -0.00878906] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6366392" + side + { + "id" "377230" + "plane" "(2497 -3792 296) (2446 -3792 296) (2446 -3776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 -0.0078125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377229" + "plane" "(2497 -3776 294) (2446 -3776 294) (2446 -3792 294)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -199.99] 0.125" + "vaxis" "[0 1 0 -0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377228" + "plane" "(2497 -3792 294) (2446 -3792 294) (2446 -3792 296)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -199.99] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377227" + "plane" "(2446 -3776 294) (2497 -3776 294) (2497 -3776 296)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -199.99] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377226" + "plane" "(2497 -3776 294) (2497 -3792 294) (2497 -3792 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00976563] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377225" + "plane" "(2446 -3792 294) (2446 -3776 294) (2446 -3776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00976563] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6756235" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1624 -4960 0.249999" + editor + { + "color" "206 135 0" + "groupid" "6756234" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6756239" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1624 -4960 6.25" + editor + { + "color" "206 135 0" + "groupid" "6756234" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6756244" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1624 -4960 13.25" + editor + { + "color" "206 135 0" + "groupid" "6756234" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6756249" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1624 -4960 2.25" + editor + { + "color" "206 135 0" + "groupid" "6756234" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6756289" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1584 -4744 0.25" + editor + { + "color" "206 135 0" + "groupid" "6756288" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6756293" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1584 -4744 6.25" + editor + { + "color" "206 135 0" + "groupid" "6756288" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6756298" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1584 -4744 13.25" + editor + { + "color" "206 135 0" + "groupid" "6756288" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6756303" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1584 -4744 2.25" + editor + { + "color" "206 135 0" + "groupid" "6756288" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6756343" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1640 -4560 0.25" + editor + { + "color" "206 135 0" + "groupid" "6756342" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6756347" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1640 -4560 6.25" + editor + { + "color" "206 135 0" + "groupid" "6756342" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6756352" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1640 -4560 13.25" + editor + { + "color" "206 135 0" + "groupid" "6756342" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6756357" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1640 -4560 2.25" + editor + { + "color" "206 135 0" + "groupid" "6756342" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6756433" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1928 -4560 0.249999" + editor + { + "color" "206 135 0" + "groupid" "6756432" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6756437" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1928 -4560 6.25" + editor + { + "color" "206 135 0" + "groupid" "6756432" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6756442" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1928 -4560 13.25" + editor + { + "color" "206 135 0" + "groupid" "6756432" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6756447" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1928 -4560 2.25" + editor + { + "color" "206 135 0" + "groupid" "6756432" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "6756492" + "classname" "func_detail" + solid + { + "id" "6756488" + side + { + "id" "377242" + "plane" "(-1302.99 -2584 120.75) (-1306.93 -2575.91 120.75) (-1297.95 -2571.53 120.75)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[-0.438371 0.898794 0 57] 0.125" + "vaxis" "[0.898794 0.438371 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377241" + "plane" "(-1294 -2579.62 -24.25) (-1297.95 -2571.53 -24.25) (-1306.93 -2575.91 -24.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.438371 0.898794 0 57.1665] 0.25" + "vaxis" "[0.898794 0.438371 0 47.4756] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377240" + "plane" "(-1302.99 -2584 120.75) (-1294 -2579.62 120.75) (-1294 -2579.62 -24.25)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[0.89879 0.438378 0 301.729] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377239" + "plane" "(-1306.93 -2575.91 -24.25) (-1297.95 -2571.53 -24.25) (-1297.95 -2571.53 120.75)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[-0.898795 -0.438369 0 -488.24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377238" + "plane" "(-1306.93 -2575.91 120.75) (-1302.99 -2584 120.75) (-1302.99 -2584 -24.25)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[-0.438808 0.898581 0 48.6528] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377237" + "plane" "(-1297.95 -2571.53 -24.25) (-1294 -2579.62 -24.25) (-1294 -2579.62 120.75)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[-0.438371 0.898794 0 57] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "6756928" + "classname" "func_detail" + solid + { + "id" "6756912" + side + { + "id" "377584" + "plane" "(2800 -3768 -8) (2800 -2349 -8) (2808 -2349 -8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[1 0 0 80] 0.25" + "vaxis" "[0 1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377583" + "plane" "(2800 -2349 -16) (2800 -2349 -8) (2800 -3768 -8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 0 1 79.998] 0.25" + "vaxis" "[0 1 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "377582" + "plane" "(2808 -3768 -16) (2808 -3768 -8) (2808 -2349 -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" "377581" + "plane" "(2808 -2349 -16) (2808 -2349 -8) (2800 -2349 -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" "377580" + "plane" "(2800 -3768 -16) (2800 -3768 -8) (2808 -3768 -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" "377579" + "plane" "(2800 -2349 -16) (2800 -3768 -16) (2808 -3768 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "6737097" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "e1" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "-1829 -5007 649" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6737112" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "f1" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "-1830 -4968 649" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6737121" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "g1" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "-1869 -4966 649" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6737130" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "H1" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "-1871 -5007 649" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6737143" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1191 -5247 4.00178e-11" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6737219" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1992 -4272 0.25" + editor + { + "color" "206 135 0" + "groupid" "6737218" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6737223" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1992 -4272 6.25" + editor + { + "color" "206 135 0" + "groupid" "6737218" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6737228" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1992 -4272 13.25" + editor + { + "color" "206 135 0" + "groupid" "6737218" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6737233" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1992 -4272 2.25" + editor + { + "color" "206 135 0" + "groupid" "6737218" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6737273" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1728 -4264 0.25" + editor + { + "color" "206 135 0" + "groupid" "6737272" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6737277" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1728 -4264 6.25" + editor + { + "color" "206 135 0" + "groupid" "6737272" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6737282" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1728 -4264 13.25" + editor + { + "color" "206 135 0" + "groupid" "6737272" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6737287" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1728 -4264 2.25" + editor + { + "color" "206 135 0" + "groupid" "6737272" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6737345" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "2352 -4656 48.25" + editor + { + "color" "206 135 0" + "groupid" "6737344" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6737349" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "2352 -4656 54.25" + editor + { + "color" "206 135 0" + "groupid" "6737344" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6737354" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2352 -4656 61.25" + editor + { + "color" "206 135 0" + "groupid" "6737344" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6737359" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "2352 -4656 50.25" + editor + { + "color" "206 135 0" + "groupid" "6737344" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6737381" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "2289 -4352 48.25" + editor + { + "color" "206 135 0" + "groupid" "6737380" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6737385" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "2289 -4352 54.25" + editor + { + "color" "206 135 0" + "groupid" "6737380" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6737390" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2289 -4352 61.25" + editor + { + "color" "206 135 0" + "groupid" "6737380" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6737395" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "2289 -4352 50.25" + editor + { + "color" "206 135 0" + "groupid" "6737380" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6737522" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2112 -3475 28.3802" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737526" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2111 -3475 56.3802" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737530" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2111 -3475 88.3802" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737534" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2111 -3475 120.38" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737618" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2114 -3502 119.149" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "6737710" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2112 -3475 118.739" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737722" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_16.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2111 -3479 118.002" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737818" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1493 -3457 89" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737849" + "classname" "prop_static" + "angles" "0 0 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1493 -3457 125.314" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737865" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_16.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1476 -3457 124.385" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737912" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_junctionbox_c_nowires.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1511 -3455 125" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737940" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_16.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1497 -3457 124.385" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737959" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-295 -3807 -185.23" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6737999" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-295 -3807 -83.326" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6738059" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_005a_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-295 -3809 -181" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6738114" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_005a_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-295 -3809 -117" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6738153" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel02_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-322 -3806 -79.9658" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6738177" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_005a_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-315 -3809 -83" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6718677" + "classname" "func_instance" + "angles" "-0 179.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1779 -4809 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6718687" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-1065 -3868.7 -224" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "6718797" + "classname" "func_instance" + "angles" "-0 -38.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1901 -5264 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6718803" + "classname" "func_instance" + "angles" "-0 -38.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1725 -5272 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6718809" + "classname" "func_instance" + "angles" "-0 138.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1733 -5070 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6718824" + "classname" "func_instance" + "angles" "-0 -44 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "2103 -5052 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "6718838" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1224 -5480 0" + editor + { + "color" "206 135 0" + "groupid" "6719024" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6718889" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1224 -5480 6" + editor + { + "color" "206 135 0" + "groupid" "6719024" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6718967" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1224 -5480 2" + editor + { + "color" "206 135 0" + "groupid" "6719024" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "6718987" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1224 -5480 13" + editor + { + "color" "206 135 0" + "groupid" "6719024" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "6719026" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1224 -5384 0" + editor + { + "color" "206 135 0" + "groupid" "6719025" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6719030" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1224 -5384 6" + editor + { + "color" "206 135 0" + "groupid" "6719025" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6719035" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1224 -5384 13" + editor + { + "color" "206 135 0" + "groupid" "6719025" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6719040" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1224 -5384 2" + editor + { + "color" "206 135 0" + "groupid" "6719025" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6719080" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1480 -5480 0" + editor + { + "color" "206 135 0" + "groupid" "6719079" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6719084" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1480 -5480 6" + editor + { + "color" "206 135 0" + "groupid" "6719079" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6719089" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1480 -5480 13" + editor + { + "color" "206 135 0" + "groupid" "6719079" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6719094" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1480 -5480 2" + editor + { + "color" "206 135 0" + "groupid" "6719079" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6719116" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1272 -5104 0.25" + editor + { + "color" "206 135 0" + "groupid" "6719115" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6719120" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1272 -5104 6.25" + editor + { + "color" "206 135 0" + "groupid" "6719115" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6719125" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1272 -5104 13.25" + editor + { + "color" "206 135 0" + "groupid" "6719115" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6719130" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1272 -5104 2.25" + editor + { + "color" "206 135 0" + "groupid" "6719115" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6719170" + "classname" "prop_static" + "angles" "0 53 180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1280 -4768 0.25" + editor + { + "color" "206 135 0" + "groupid" "6719169" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6719174" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1280 -4768 6.25" + editor + { + "color" "206 135 0" + "groupid" "6719169" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6719179" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1280 -4768 13.25" + editor + { + "color" "206 135 0" + "groupid" "6719169" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6719184" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1280 -4768 2.25" + editor + { + "color" "206 135 0" + "groupid" "6719169" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6719224" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1072 -4504 0.25" + editor + { + "color" "206 135 0" + "groupid" "6719223" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6719228" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1072 -4504 6.25" + editor + { + "color" "206 135 0" + "groupid" "6719223" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6719233" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1072 -4504 13.25" + editor + { + "color" "206 135 0" + "groupid" "6719223" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6719238" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1072 -4504 2.25" + editor + { + "color" "206 135 0" + "groupid" "6719223" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "6719296" + "classname" "prop_static" + "angles" "0 53 -180" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1072 -4312 0.25" + editor + { + "color" "206 135 0" + "groupid" "6719295" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6719300" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "89.1872 180 -180" + "pitch" "89.1872" + "spawnflags" "0" + "style" "0" + "origin" "1072 -4312 6.25" + editor + { + "color" "206 135 0" + "groupid" "6719295" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "6719305" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1072 -4312 13.25" + editor + { + "color" "206 135 0" + "groupid" "6719295" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6719310" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_noz.vmt" + "renderamt" "255" + "rendercolor" "255 247 230" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "1072 -4312 2.25" + editor + { + "color" "206 135 0" + "groupid" "6719295" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "6700607" + "classname" "env_cubemap" + "cubemapsize" "0" + "origin" "481.354 -4274.72 64" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6700847" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1064 -4456 288" + editor + { + "color" "197 134 0" + "groupid" "6701014" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6700851" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1110 -4456 281" + editor + { + "color" "197 134 0" + "groupid" "6701014" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6700855" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1218 -4456 281" + editor + { + "color" "197 134 0" + "groupid" "6701014" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6700883" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1352 -4456 288" + editor + { + "color" "197 134 0" + "groupid" "6701014" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6700887" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1294 -4456 281" + editor + { + "color" "197 134 0" + "groupid" "6701014" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701015" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1293 -4480 281" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701019" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1351 -4480 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701023" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1217 -4480 281" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701027" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1063 -4480 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701031" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1109 -4480 281" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701046" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2447 -5007.67 272" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701050" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2447 -5263.67 272" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701054" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2447 -4752 272" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701058" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2571 -5007.67 272" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701062" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2571 -5263.67 272" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6701066" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2571 -4752 272" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6682899" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1920 -5238 18.8799" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6682923" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1920 -5139 18.8799" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6682946" + "classname" "prop_static" + "angles" "0 251.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2039 -4755 18.8799" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6682994" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2049 -4426 18.8799" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6683026" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2048 -4320 18.8799" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662715" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1551 -3799 -288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662750" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1551 -3822 -288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662770" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1551 -3799 -96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662774" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1551 -3822 -96" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662794" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_curve_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1529 -3799 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662818" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_curve_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1529 -3822 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662834" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1551 -3822 -84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662896" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1551 -3799 -84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662948" + "classname" "prop_static" + "angles" "0 270 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1337 -3799 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6662952" + "classname" "prop_static" + "angles" "0 270 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1337 -3822 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663020" + "classname" "prop_static" + "angles" "0 270 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1145 -3799 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663024" + "classname" "prop_static" + "angles" "0 270 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1145 -3822 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663058" + "classname" "prop_static" + "angles" "0 270 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-953 -3822 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663062" + "classname" "prop_static" + "angles" "0 270 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-953 -3799 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663074" + "classname" "prop_static" + "angles" "0 270 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-761 -3822 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663078" + "classname" "prop_static" + "angles" "0 270 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-761 -3799 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663090" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-767 -3822 -67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663113" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-767 -3799 -67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663117" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-959 -3822 -67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663121" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-959 -3799 -67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663133" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1151 -3822 -67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663137" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1151 -3799 -67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663149" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1343 -3822 -67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663153" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1343 -3799 -67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663173" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1433 -3831 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663197" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1241 -3831 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663205" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1049 -3831 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663213" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-857 -3831 -63" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663221" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-858 -3799 -69" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663237" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1242 -3799 -69" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663323" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2552 -4692 230.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663327" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2552 -4664 230.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663343" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2552 -4692 254" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663386" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2552 -4664 254" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663472" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_curve_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2531 -4691.92 275" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663496" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_curve_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2531 -4664 275" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663504" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2339 -4664 275" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663508" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2339 -4692 275" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663552" + "classname" "prop_static" + "angles" "0 270 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_curve_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2315 -4664 275" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663556" + "classname" "prop_static" + "angles" "0 270 179.5" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_curve_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2315 -4692 275" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663604" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2315 -4664 275" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663631" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2315 -4692 275" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663643" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2294 -4692 320" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663647" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2294 -4664 320" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663733" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_curve_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2273 -4664 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663737" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_curve_d.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2273 -4692 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663793" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2081 -4692 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663824" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2081 -4664 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663828" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2033 -4664 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663832" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2033 -4691 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663909" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2048 -4691 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663925" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2048 -4664 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663929" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2138 -4655 339.723" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663949" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2232 -4655 339.723" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663957" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2442 -4655 275.8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663965" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2139 -4692 334" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663989" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2234 -4692 334" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6663997" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2442 -4692 269" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664013" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2339 -4664 266.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664025" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2315 -4664 266.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664029" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2485 -4662 271" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664048" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2488 -4662 274" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664083" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2487 -4692 274" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664087" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2484 -4692 271" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664091" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2387 -4692 274" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664095" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2384 -4692 271" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664099" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2388 -4664 274" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664103" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2385 -4664 271" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664163" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2055 -4664 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664167" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2052 -4664 339" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664171" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2055 -4691 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664175" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_supports_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2052 -4691 340" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6664279" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel02_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2078 -4740 331.844" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6664299" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel02_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2137 -5506 235.973" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6664323" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel02_small.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2641 -5507 247.268" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6664343" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel02_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1197 -5432 142.045" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6664367" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel02_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2 -4606 128.846" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "6664409" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "248 -4622 58.0607" + editor + { + "color" "102 103 0" + "groupid" "6664408" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6664413" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "248 -4622 96.0607" + editor + { + "color" "102 103 0" + "groupid" "6664408" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "6664417" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "221.96 -4639 96.0607" + editor + { + "color" "102 103 0" + "groupid" "6664408" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6664422" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "247.96 -4655 96.0607" + editor + { + "color" "102 103 0" + "groupid" "6664408" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6664426" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "243.96 -4655 46.0607" + editor + { + "color" "102 103 0" + "groupid" "6664408" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6664430" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "247.96 -4639 96.0607" + editor + { + "color" "102 103 0" + "groupid" "6664408" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "6664434" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "242.96 -4639 96.0607" + editor + { + "color" "102 103 0" + "groupid" "6664408" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6664437" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "248 -4622 58.4213" + editor + { + "color" "102 103 0" + "groupid" "6664408" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6664640" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-866 -3784 -156.558" + editor + { + "color" "102 103 0" + "groupid" "6664639" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6664644" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-866 -3784 -118.558" + editor + { + "color" "102 103 0" + "groupid" "6664639" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "6664648" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-849 -3810.04 -118.558" + editor + { + "color" "102 103 0" + "groupid" "6664639" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6664653" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-833 -3784.04 -118.558" + editor + { + "color" "102 103 0" + "groupid" "6664639" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6664657" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-833 -3788.04 -168.558" + editor + { + "color" "102 103 0" + "groupid" "6664639" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6664661" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-849 -3784.04 -118.558" + editor + { + "color" "102 103 0" + "groupid" "6664639" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "6664665" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "-849 -3789.04 -118.558" + editor + { + "color" "102 103 0" + "groupid" "6664639" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6664668" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-866 -3784 -156.197" + editor + { + "color" "102 103 0" + "groupid" "6664639" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "6665041" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-1056 -3678 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "373536" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-1056 -3678 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "6665047" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-1055.58 -3702.93 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "373536" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-1055.58 -3702.93 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "6665071" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "-974.542 -4486.04 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "376389" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-974.542 -4486.04 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "6665077" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "-1065.17 -4949.73 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "373114" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-1065.17 -4949.73 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "6665083" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-1507.95 -4419.12 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "373195" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-1507.95 -4419.12 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6665089" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-1490.58 -3892.35 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "373195" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-1490.58 -3892.35 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "6665095" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-2038.45 -4652.28 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "373195" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-2038.45 -4652.28 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "6665101" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-1777.53 -5269.29 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "373195" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-1777.53 -5269.29 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "6665107" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-1120.87 -5197.78 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "373184" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-1120.87 -5197.78 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "6665119" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "-509.778 -5139.03 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "299524" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-509.778 -5139.03 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "6665125" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_003a_256.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1240 -4496 302.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6665137" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_003a_128.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1240 -4368 302.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6665214" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1040 -4538 61.0366" + editor + { + "color" "102 103 0" + "groupid" "6665213" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "6665222" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1066.04 -4521 99.0366" + editor + { + "color" "102 103 0" + "groupid" "6665213" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6665231" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1044 -4506 34" + editor + { + "color" "102 103 0" + "groupid" "6665213" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6665235" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1040.04 -4521 99.0366" + editor + { + "color" "102 103 0" + "groupid" "6665213" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "6665239" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "1045.04 -4521 99.0366" + editor + { + "color" "102 103 0" + "groupid" "6665213" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6665242" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1040 -4538 61.3972" + editor + { + "color" "102 103 0" + "groupid" "6665213" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6665320" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel02_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1039 -4304 141" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "6643884" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "223 248 255 250" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-30 270 0" + "pitch" "-30" + "spawnflags" "0" + "style" "0" + "origin" "-198 -4125 -5.276" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +entity +{ + "id" "6643889" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "-198 -4124 -1.276" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +hidden +{ + entity + { + "id" "6643892" + "classname" "prop_static" + "angles" "-50.5 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-197 -4114 2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -2768]" + } + } +} +hidden +{ + entity + { + "id" "6643896" + "classname" "prop_static" + "angles" "-50.5 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-336 -4114 2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -2768]" + } + } +} +entity +{ + "id" "6643900" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "-337 -4124 -1.276" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +entity +{ + "id" "6643903" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "223 248 255 250" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-30 270 0" + "pitch" "-30" + "spawnflags" "0" + "style" "0" + "origin" "-337 -4125 -5.276" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +hidden +{ + entity + { + "id" "6643957" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_256.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-72 -4112 5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644001" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-392 -4112 5.36865" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644029" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-328 -4112 5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644061" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-8 -4112 5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644101" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-4.73526 -4112 5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644113" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_wall_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-38 -4112 150.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644117" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64_b.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-104 -4120 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644121" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64_c.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-104 -4128 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644125" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-104 -4124 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644129" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_wall_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-104 -4111 151" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644133" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-168 -4120 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644137" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-168 -4124 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644141" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-168 -4128 152.314" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644145" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_wall_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-164 -4112 150.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644225" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64_b.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-232 -4120 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644229" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64_c.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-232 -4128 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644233" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-232 -4124 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644237" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_wall_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-232 -4112 150.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644241" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-296 -4120 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644245" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-296 -4124 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644249" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-296 -4128 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644253" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_wall_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-292 -4112 150.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644321" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_wall_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-356 -4112 150.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644325" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-360 -4128 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644329" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-360 -4124 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644333" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-360 -4120 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644337" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_wall_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-420 -4112 150.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644341" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-424 -4128 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644345" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-424 -4124 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644349" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_64.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-424 -4120 152.333" + editor + { + "color" "105 150 0" + "groupid" "6644445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644632" + "classname" "prop_static" + "angles" "0 0 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_curve_large.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-424 -4128 152.365" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644636" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4128 176" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644640" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4124 176" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644644" + "classname" "prop_static" + "angles" "0 0 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_curve_large.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-424 -4124 152.365" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644648" + "classname" "prop_static" + "angles" "0 0 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_curve_large.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-424 -4120 152.365" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644652" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4120 176" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644860" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4128 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644864" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4124 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644868" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4120 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644872" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4128 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644876" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4124 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644880" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4120 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644884" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4128 208" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644888" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4124 208" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6644892" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002b_16.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -4120 208" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6645361" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_curve_large.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-40.0404 -4120 152.344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6645365" + "classname" "prop_static" + "angles" "0 180 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_curve_large.mdl" + "renderamt" "255" + "rendercolor" "69 69 69" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-40.0404 -4124 152.344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6645369" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_002a_curve_large.mdl" + "renderamt" "255" + "rendercolor" "219 78 36" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-40.0404 -4128 152.344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6645493" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-76 -4112 90.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6645541" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-268 -4112 90.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6626329" + "classname" "env_cubemap" + "cubemapsize" "7" + "origin" "-312 -3932 96" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "6626352" + "classname" "env_cubemap" + "cubemapsize" "7" + "origin" "-536 -3931 96" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "6626360" + "classname" "env_cubemap" + "cubemapsize" "7" + "origin" "-768 -4192 96" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "6626363" + "classname" "env_cubemap" + "cubemapsize" "7" + "origin" "-768 -4432 96" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "6626370" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-1342 -3995.38 31" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "6626376" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-1920 -4727.8 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "6626386" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1424 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626401" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1168 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626420" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1047 -4386 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626475" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1047 -4642 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626498" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1309 -4746 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626545" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1437 -4746 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626584" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_endcap.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1047 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626619" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_endcap.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1047 -4746 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626639" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_endcap.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1424 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626655" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1077 -4488 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626679" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1077 -4360 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626716" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1138 -4360 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626720" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1138 -4488 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626725" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1199 -4360 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626729" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1199 -4488 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626734" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1261 -4360 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626738" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1261 -4488 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626743" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1323 -4360 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626747" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1323 -4488 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626752" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1385 -4360 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626756" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1385 -4488 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6626761" + "classname" "func_instance" + "angles" "-0 85 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1323 -4441 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6626770" + "classname" "func_instance" + "angles" "-0 112 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1324 -4702 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6626776" + "classname" "func_instance" + "angles" "-0 -118.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1203 -4646 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6626785" + "classname" "func_instance" + "angles" "-0 -72 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1199 -4430 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6626791" + "classname" "func_instance" + "angles" "-0 94 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1199 -4535 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "6626811" + "classname" "prop_static" + "angles" "0 358.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1086 -4614 0.250002" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626815" + "classname" "prop_dynamic" + "angles" "0 358.5 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1086.35 -4614.21 0.250002" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626835" + "classname" "prop_static" + "angles" "0 91.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1178.81 -4713 0.250002" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6626839" + "classname" "prop_dynamic" + "angles" "0 91.5 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1179 -4712.64 0.250002" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6608811" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-779 -3181 156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6608835" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-503 -3181 156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6608891" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_256.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "497 -2290 159.945" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6608911" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_256.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "497 -2568 159.945" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6608939" + "classname" "prop_static" + "angles" "0 0 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_256.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-513 -3185 158.249" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6609075" + "classname" "prop_static" + "angles" "0 0 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_256.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2 -2913 154.583" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6609079" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-268 -2909 152.335" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6609123" + "classname" "prop_static" + "angles" "0 182.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-182.761 -2951.18 1.2538" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6609127" + "classname" "prop_static" + "angles" "0 358 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-279 -2955 1.2538" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6609139" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1954 -3220 155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6609155" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_256.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1952 -3232 155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6609167" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1954 -3500 155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6609199" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_256.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1952 -2953 155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6591426" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "a0" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "a1" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "-1256 -4838 98" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6591450" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "b0" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "-1374 -4684 719" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6591500" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "b0" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "b1" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "-1260 -4561 98" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6591545" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "a0" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "-1373 -4733 719" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6591572" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "c1" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "-1425 -4734 719" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6591581" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "d1" + "TextureScale" "1" + "Type" "0" + "Width" "1" + "origin" "-1424 -4682 719" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6591593" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "d1" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "d0" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "-1540 -4558 98" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6591617" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "c1" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "c0" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "-1539 -4832 98" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "6591638" + "classname" "prop_static" + "angles" "18.3257 63.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2001 -5140 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591642" + "classname" "prop_static" + "angles" "15.2607 294.446 3.46044" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1995 -4829 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591646" + "classname" "prop_static" + "angles" "18.3257 126.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1693 -5144 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591650" + "classname" "prop_static" + "angles" "18.3257 222.448 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1693 -4833 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591654" + "classname" "prop_static" + "angles" "18.3257 126.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1814 -4524 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591658" + "classname" "prop_static" + "angles" "18.3257 63.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2122 -4520 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591662" + "classname" "prop_static" + "angles" "18.3257 222.448 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1814 -4213 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591666" + "classname" "prop_static" + "angles" "15.2607 294.446 3.46044" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2116 -4209 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591670" + "classname" "prop_static" + "angles" "18.3257 126.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1268 -4349 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591674" + "classname" "prop_static" + "angles" "18.3257 63.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1576 -4345 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591678" + "classname" "prop_static" + "angles" "15.2607 294.446 3.46044" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1570 -4034 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591682" + "classname" "prop_static" + "angles" "18.3257 222.448 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1268 -4038 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591686" + "classname" "prop_static" + "angles" "18.3257 126.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1617 -4029 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591690" + "classname" "prop_static" + "angles" "18.3257 222.448 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1617 -3718 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591694" + "classname" "prop_static" + "angles" "15.2607 294.446 3.46044" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1919 -3714 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6591698" + "classname" "prop_static" + "angles" "18.3257 63.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1925 -4025 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6574401" + "classname" "prop_static" + "angles" "18.3257 222.448 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1242 -4545 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6574428" + "classname" "prop_static" + "angles" "0 23.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/rocket_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" ".90" + "origin" "-1399 -4707 33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6574479" + "classname" "prop_static" + "angles" "0 22 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/rocket_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" ".80" + "origin" "-1850 -4993 34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6574495" + "classname" "prop_static" + "angles" "0 21.602 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/rocket_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" ".90" + "origin" "-1970 -4368 34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6574527" + "classname" "prop_static" + "angles" "0 21.602 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/rocket_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" ".90" + "origin" "-1773 -3868 34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6574547" + "classname" "prop_static" + "angles" "0 21.602 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/rocket_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" ".90" + "origin" "-1422 -4193 34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6574579" + "classname" "prop_static" + "angles" "15.2607 294.446 3.46044" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1544 -4541 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6574615" + "classname" "prop_static" + "angles" "18.3257 126.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1242 -4856 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6574631" + "classname" "prop_static" + "angles" "18.3257 63.948 0.129829" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/cable_support.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1550 -4852 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6556921" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2048 -4232 71" + editor + { + "color" "102 103 0" + "groupid" "6556920" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6556925" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2048 -4246 72" + editor + { + "color" "102 103 0" + "groupid" "6556920" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "6556929" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2021.96 -4249 109" + editor + { + "color" "102 103 0" + "groupid" "6556920" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6556934" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2048 -4262 72" + editor + { + "color" "102 103 0" + "groupid" "6556920" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6556938" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2044 -4265 50" + editor + { + "color" "102 103 0" + "groupid" "6556920" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6556942" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2047.96 -4249 109" + editor + { + "color" "102 103 0" + "groupid" "6556920" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "6556946" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "2042.96 -4249 109" + editor + { + "color" "102 103 0" + "groupid" "6556920" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6556949" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2048 -4232 71.3606" + editor + { + "color" "102 103 0" + "groupid" "6556920" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6538448" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128_low.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1457 -4853 304" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538475" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128_low.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1457 -4816 304" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538499" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1532 -4998 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538576" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1516 -4998 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538599" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1724 -5498 287.983" + editor + { + "color" "118 159 0" + "groupid" "6539407" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538607" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1460 -4901 290" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538638" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1604 -4901 283" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538646" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1604 -4876 283" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538650" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1460 -4876 290" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538654" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1652 -4876 290" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538658" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1718 -4876 283" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538662" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1430 -4748 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538794" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1536 -4901 283" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6538798" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1536 -4876 283" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539704" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1568 -4517 290" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539708" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1644 -4517 283" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539716" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1641 -4577 283" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539720" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1565 -4577 290" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539760" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2309 -4438 386" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539806" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2309 -4561 386" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539816" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2309 -4499 386" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539821" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2309 -4622 386" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539826" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2309 -4682 386" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6539831" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 253 232" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "2334.22 -5397.8 223.705" + editor + { + "color" "103 116 0" + "groupid" "6539830" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "6539834" + "classname" "light_spot" + "_cone" "35" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "255 253 232 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-33 44 90" + "pitch" "-33" + "spawnflags" "0" + "style" "0" + "origin" "2330.1 -5401.78 226.705" + editor + { + "color" "103 116 0" + "groupid" "6539830" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "6539839" + "classname" "prop_static" + "angles" "0 134 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2324.14 -5407.54 244.25" + editor + { + "color" "103 116 0" + "groupid" "6539830" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6539870" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 253 232" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "2339.46 -5236.13 223.705" + editor + { + "color" "103 116 0" + "groupid" "6539869" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "6539873" + "classname" "light_spot" + "_cone" "35" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "255 253 232 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-33 0.500007 90" + "pitch" "-33" + "spawnflags" "0" + "style" "0" + "origin" "2333.73 -5236.18 226.705" + editor + { + "color" "103 116 0" + "groupid" "6539869" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "6539878" + "classname" "prop_static" + "angles" "0 90.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2325.44 -5236.26 244.25" + editor + { + "color" "103 116 0" + "groupid" "6539869" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "6539896" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 253 232" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "2338.82 -5096.5 223.705" + editor + { + "color" "103 116 0" + "groupid" "6539895" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "6539899" + "classname" "light_spot" + "_cone" "35" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "255 253 232 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-33 336.5 90" + "pitch" "-33" + "spawnflags" "0" + "style" "0" + "origin" "2333.57 -5094.22 226.705" + editor + { + "color" "103 116 0" + "groupid" "6539895" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "6539904" + "classname" "prop_static" + "angles" "0 66.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2325.96 -5090.92 244.25" + editor + { + "color" "103 116 0" + "groupid" "6539895" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "6539923" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2447 -5504 48.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539928" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2571 -5504 48.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539932" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2447 -4758 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6539936" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2571 -4758 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6540104" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_512.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2174 -5000 306" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6540109" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_512.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2235 -5000 306" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6540114" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_512.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2296 -5000 306" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6540120" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2199 -4742 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6540125" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2260 -4742 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6521443" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1586.16 -3896.57 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke/asphalt_crack_03" + "sides" "337052" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1586.16 -3896.57 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6521449" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1865 -4130 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke/asphalt_crack_01" + "sides" "339343" + "StartU" "0" + "StartV" "1" + "uv0" "-95.2549 -83.9111 0" + "uv1" "-95.2549 83.9111 0" + "uv2" "95.2549 83.9111 0" + "uv3" "95.2549 -83.9111 0" + "origin" "1865 -4130 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "6521467" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1886 -4024 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6521490" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1968 -4025 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6521495" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1497 -5034 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" ".5" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/nuke_drain_covers_color" + "sides" "388526" + "StartU" "0" + "StartV" ".5" + "uv0" "-8.1549 -7.87937 0" + "uv1" "-8.1549 7.87937 0" + "uv2" "8.1549 7.87937 0" + "uv3" "8.1549 -7.87937 0" + "origin" "1497 -5034 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "6521573" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1221 -5142 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" ".5" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/nuke_drain_covers_color" + "sides" "388526" + "StartU" "0" + "StartV" ".5" + "uv0" "-8.1549 -7.87937 0" + "uv1" "-8.1549 7.87937 0" + "uv2" "8.1549 7.87937 0" + "uv3" "8.1549 -7.87937 0" + "origin" "1221 -5142 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "6521634" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1450.86 -4683.03 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" ".5" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/nuke_drain_covers_color" + "sides" "376826" + "StartU" "0" + "StartV" ".5" + "uv0" "-8.13532 -8.03 0" + "uv1" "-8.13532 8.03 0" + "uv2" "8.13532 8.03 0" + "uv3" "8.13532 -8.03 0" + "origin" "1450.86 -4683.03 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "6521682" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1451 -4346 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" ".5" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/nuke_drain_covers_color" + "sides" "376826" + "StartU" "0" + "StartV" ".5" + "uv0" "-8.13532 -8.03 0" + "uv1" "-8.13532 8.03 0" + "uv2" "8.13532 8.03 0" + "uv3" "8.13532 -8.03 0" + "origin" "1451 -4346 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "6521792" + "classname" "prop_static" + "angles" "90 13 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1569 -4843 168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6487853" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-878 -3640 32.8484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6400741" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "381 -4097.8 159.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6400742" + side + { + "id" "375220" + "plane" "(376 -4146 160) (376 -4049 160) (386 -4049 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375219" + "plane" "(376 -4049 159) (376 -4146 159) (386 -4146 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -792] 0.125" + "vaxis" "[1 0 0 152] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375218" + "plane" "(376 -4146 159) (376 -4049 159) (376 -4049 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375217" + "plane" "(386 -4049 159) (386 -4146 159) (386 -4146 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -792] 0.125" + "vaxis" "[0 0 1 176] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375216" + "plane" "(376 -4049 159) (386 -4049 159) (386 -4049 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" "375215" + "plane" "(386 -4146 159) (376 -4146 159) (376 -4146 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" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "6400756" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "381 -4097.79 159.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6400757" + side + { + "id" "375232" + "plane" "(376 -4146 160) (376 -4049 160) (386 -4049 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375231" + "plane" "(376 -4049 159) (376 -4146 159) (386 -4146 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 760] 0.125" + "vaxis" "[1 0 0 -104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375230" + "plane" "(376 -4146 159) (376 -4049 159) (376 -4049 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375229" + "plane" "(386 -4049 159) (386 -4146 159) (386 -4146 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 760] 0.125" + "vaxis" "[0 0 1 176] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375228" + "plane" "(376 -4049 159) (386 -4049 159) (386 -4049 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" "375227" + "plane" "(386 -4146 159) (376 -4146 159) (376 -4146 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" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "6400774" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "381 -4271.76 159.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6400775" + side + { + "id" "375256" + "plane" "(376 -4395 160) (376 -4147 160) (386 -4147 160)" + "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" "375255" + "plane" "(376 -4147 159) (376 -4395 159) (386 -4395 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 816] 0.125" + "vaxis" "[1 0 0 -104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375254" + "plane" "(376 -4395 159) (376 -4147 159) (376 -4147 160)" + "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" "375253" + "plane" "(386 -4147 159) (386 -4395 159) (386 -4395 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 816] 0.125" + "vaxis" "[0 0 1 176] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375252" + "plane" "(376 -4147 159) (386 -4147 159) (386 -4147 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" "375251" + "plane" "(386 -4395 159) (376 -4395 159) (376 -4395 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" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +hidden +{ + entity + { + "id" "6400800" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "615 -4643 0.250015" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "6400816" + "classname" "prop_static" + "angles" "0 77.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "493 -4629 0.250015" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "6400921" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/dust_manholes/dust_manhole_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "838 -4013.56 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6400935" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "838 -4014 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/dust_manhole_concrete_color" + "sides" "108437" + "StartU" "0" + "StartV" "1" + "uv0" "-22.0002 -20.9994 0" + "uv1" "-22.0002 20.9994 0" + "uv2" "22.0002 20.9994 0" + "uv3" "22.0002 -20.9994 0" + "origin" "838 -4014 -1.52588e-05" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6400992" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "558.943 -4322.13 2" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "6401349" + "classname" "info_overlay" + "BasisNormal" "0.664364 -0.747409 0" + "BasisOrigin" "338.82 -4656.38 47.4122" + "BasisU" "0.747409 0.664364 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain005a" + "sides" "326254 340602 326242" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "338.82 -4656.38 47.4122" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +hidden +{ + entity + { + "id" "6401400" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "103 115 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2238 -6031 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6401404" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "103 115 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2373 -6031 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6401424" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "103 115 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1977 -6031 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6401428" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "103 115 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2112 -6031 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6401448" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "103 115 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2416 -5847 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6401452" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "103 115 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2416 -5982 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "6401499" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/dust_manholes/dust_manhole_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-80 -3087 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6383992" + "classname" "func_detail" + solid + { + "id" "6383988" + side + { + "id" "375112" + "plane" "(384 -4000 240) (400 -4000 240) (400 -4016 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" "375111" + "plane" "(384 -4016 160) (400 -4016 160) (400 -4000 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 -110] 0.25" + "vaxis" "[0 -1 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375110" + "plane" "(384 -4000 240) (384 -4016 240) (384 -4016 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" "375109" + "plane" "(400 -4000 160) (400 -4016 160) (400 -4016 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" "375108" + "plane" "(400 -4000 240) (384 -4000 240) (384 -4000 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" "375107" + "plane" "(400 -4016 160) (384 -4016 160) (384 -4016 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "6384019" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "381 -4478 159.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6384016" + side + { + "id" "375148" + "plane" "(376 -4396 160) (386 -4396 160) (386 -4559 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" "375147" + "plane" "(376 -4559 159) (386 -4559 159) (386 -4396 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -496] 0.125" + "vaxis" "[1 0 0 -104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375146" + "plane" "(376 -4396 160) (376 -4559 160) (376 -4559 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375145" + "plane" "(386 -4396 159) (386 -4559 159) (386 -4559 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -496] 0.125" + "vaxis" "[0 0 1 176] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375144" + "plane" "(386 -4396 160) (376 -4396 160) (376 -4396 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "375143" + "plane" "(386 -4559 159) (376 -4559 159) (376 -4559 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" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +hidden +{ + entity + { + "id" "6366244" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1740 -3457 0.856307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6366264" + "classname" "prop_static" + "angles" "0 274.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/trash_b/hr_food_pile_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1491 -3473 0.0168438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6366280" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/shuttle_sign.mdl" + "renderamt" "255" + "rendercolor" "159 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2608 -3880 152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +entity +{ + "id" "6366416" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2470.5 -3785 252" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "6366391" + side + { + "id" "374716" + "plane" "(2446 -3786 294) (2446 -3784 294) (2495 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4.00491] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374715" + "plane" "(2446 -3784 210) (2446 -3786 210) (2495 -3786 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -27.9951] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374714" + "plane" "(2495 -3784 210) (2495 -3786 210) (2495 -3786 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374713" + "plane" "(2446 -3786 210) (2446 -3784 210) (2446 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374712" + "plane" "(2495 -3786 210) (2446 -3786 210) (2446 -3786 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 235.102] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374711" + "plane" "(2446 -3784 210) (2495 -3784 210) (2495 -3784 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 235.102] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6366425" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2419.5 -3785 252" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "6366383" + side + { + "id" "374722" + "plane" "(2395 -3786 294) (2395 -3784 294) (2444 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.0049] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374721" + "plane" "(2395 -3784 210) (2395 -3786 210) (2444 -3786 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -15.9951] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374720" + "plane" "(2444 -3784 210) (2444 -3786 210) (2444 -3786 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374719" + "plane" "(2395 -3786 210) (2395 -3784 210) (2395 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374718" + "plane" "(2444 -3786 210) (2395 -3786 210) (2395 -3786 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 224.653] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374717" + "plane" "(2395 -3784 210) (2444 -3784 210) (2444 -3784 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 224.653] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "6366434" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2368.5 -3785 252" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "6366385" + side + { + "id" "374728" + "plane" "(2344 -3786 294) (2344 -3784 294) (2393 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44.0049] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374727" + "plane" "(2344 -3784 210) (2344 -3786 210) (2393 -3786 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -3.99509] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374726" + "plane" "(2393 -3784 210) (2393 -3786 210) (2393 -3786 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374725" + "plane" "(2344 -3786 210) (2344 -3784 210) (2344 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374724" + "plane" "(2393 -3786 210) (2344 -3786 210) (2344 -3786 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 214.204] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374723" + "plane" "(2344 -3784 210) (2393 -3784 210) (2393 -3784 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 214.204] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "6366449" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2317.5 -3785 252" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2006001" + side + { + "id" "374734" + "plane" "(2293 -3786 294) (2293 -3784 294) (2342 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8.00488] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374733" + "plane" "(2293 -3784 210) (2293 -3786 210) (2342 -3786 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8.00488] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374732" + "plane" "(2342 -3784 210) (2342 -3786 210) (2342 -3786 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374731" + "plane" "(2293 -3786 210) (2293 -3784 210) (2293 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374730" + "plane" "(2342 -3786 210) (2293 -3786 210) (2293 -3786 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 203.755] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374729" + "plane" "(2293 -3784 210) (2342 -3784 210) (2342 -3784 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 203.755] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "6366457" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2266.5 -3785 252" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2006013" + side + { + "id" "374740" + "plane" "(2242 -3786 294) (2242 -3784 294) (2291 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -20.0049] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374739" + "plane" "(2242 -3784 210) (2242 -3786 210) (2291 -3786 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20.0049] 0.25" + "vaxis" "[0 -1 0 3.99121] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374738" + "plane" "(2291 -3784 210) (2291 -3786 210) (2291 -3786 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374737" + "plane" "(2242 -3786 210) (2242 -3784 210) (2242 -3784 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.99121] 0.25" + "vaxis" "[0 0 -1 30.9688] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374736" + "plane" "(2291 -3786 210) (2242 -3786 210) (2242 -3786 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 193.306] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374735" + "plane" "(2242 -3784 210) (2291 -3784 210) (2291 -3784 294)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 193.306] 0.191406" + "vaxis" "[0 0 -1 128] 0.328125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +hidden +{ + entity + { + "id" "6366528" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "182 182 182" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2696.45 -4058.68 208.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "6366532" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "182 182 182" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2753 -4058 208.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "6366619" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2154 -3792 169.682" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "6366643" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2480 -3789 118" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "6366675" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2223 -3789 118" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "6366698" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2607 -3803 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6366706" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_16.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2607 -3787 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6366769" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_128.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2341 -3793 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6366855" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_128.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2481 -3793 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6366867" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_128.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2214 -3793 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6366891" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1464 -3452 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6366895" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1493 -3457 25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6366899" + "classname" "prop_static" + "angles" "0 0 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1493 -3457 22" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6367036" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1577.22 -4216.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6367032" + side + { + "id" "374860" + "plane" "(1552 -4217 6) (1552 -4216 6) (1675 -4216 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -104.286] 0.125" + "vaxis" "[0 -1 0 -8.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374859" + "plane" "(1552 -4216 0) (1552 -4217 0) (1675 -4217 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" "374858" + "plane" "(1552 -4217 0) (1552 -4216 0) (1552 -4216 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374857" + "plane" "(1675 -4216 0) (1675 -4217 0) (1675 -4217 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 223.711] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374856" + "plane" "(1552 -4216 0) (1675 -4216 0) (1675 -4216 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374855" + "plane" "(1675 -4217 0) (1552 -4217 0) (1552 -4217 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -104.286] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "6349407" + "classname" "func_detail" + solid + { + "id" "6349398" + side + { + "id" "374477" + "plane" "(-664 -4352 31) (-664 -4376 31) (-656 -4376 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374476" + "plane" "(-664 -4376 31) (-664 -4352 31) (-664 -4352 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374475" + "plane" "(-656 -4352 31) (-656 -4376 31) (-656 -4376 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" "374474" + "plane" "(-664 -4352 31) (-656 -4352 31) (-656 -4352 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -831.994] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374473" + "plane" "(-656 -4376 31) (-664 -4376 31) (-664 -4376 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -319.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374472" + "plane" "(-664 -4376 48) (-664 -4352 48) (-656 -4352 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6349397" + side + { + "id" "374483" + "plane" "(-664 -4376 160) (-664 -4352 160) (-656 -4352 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" "374482" + "plane" "(-664 -4352 48) (-664 -4352 160) (-664 -4376 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[0 1 0 251.43] 0.125" + "vaxis" "[0 0 -1 350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374481" + "plane" "(-656 -4376 48) (-656 -4376 160) (-656 -4352 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" "374480" + "plane" "(-656 -4352 48) (-656 -4352 160) (-664 -4352 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[1 0 0 -644.564] 0.125" + "vaxis" "[0 0 -1 350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374479" + "plane" "(-664 -4376 48) (-664 -4376 160) (-656 -4376 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-1 0 0 -68.5625] 0.125" + "vaxis" "[0 0 -1 350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374478" + "plane" "(-664 -4352 48) (-664 -4376 48) (-656 -4376 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +hidden +{ + entity + { + "id" "6349516" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-664 -4363 138.474" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6349532" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-664 -4363 119.781" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6349562" + "classname" "func_detail" + solid + { + "id" "6349560" + side + { + "id" "374518" + "plane" "(-32 -4000 240) (368 -4000 240) (368 -4008 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" "374517" + "plane" "(-32 -4008 160) (368 -4008 160) (368 -4000 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[-1 0 0 -110] 0.25" + "vaxis" "[0 -1 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374516" + "plane" "(-32 -4000 240) (-32 -4008 240) (-32 -4008 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" "374515" + "plane" "(368 -4000 160) (368 -4008 160) (368 -4008 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" "374514" + "plane" "(368 -4000 240) (-32 -4000 240) (-32 -4000 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" "374513" + "plane" "(368 -4008 160) (-32 -4008 160) (-32 -4008 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +hidden +{ + entity + { + "id" "6332129" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-631 -4002 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "6332326" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-653 -4343.5 100" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6332324" + side + { + "id" "374161" + "plane" "(-658 -4343 160) (-648 -4343 160) (-648 -4344 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" "374160" + "plane" "(-658 -4344 40) (-648 -4344 40) (-648 -4343 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374159" + "plane" "(-658 -4343 160) (-658 -4344 160) (-658 -4344 40)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00174915] 0.125" + "vaxis" "[0 -1 0 -79.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374158" + "plane" "(-648 -4343 40) (-648 -4344 40) (-648 -4344 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" "374157" + "plane" "(-648 -4343 160) (-658 -4343 160) (-658 -4343 40)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374156" + "plane" "(-648 -4344 40) (-658 -4344 40) (-658 -4344 160)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "6332396" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-653 -4196 40.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6332392" + side + { + "id" "374209" + "plane" "(-658 -4049 41) (-648 -4049 41) (-648 -4343 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -288] 0.125" + "vaxis" "[1 0 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374208" + "plane" "(-658 -4343 40) (-648 -4343 40) (-648 -4049 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374207" + "plane" "(-658 -4049 41) (-658 -4343 41) (-658 -4343 40)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -288] 0.125" + "vaxis" "[0 0 1 -160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374206" + "plane" "(-648 -4049 40) (-648 -4343 40) (-648 -4343 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374205" + "plane" "(-648 -4049 41) (-658 -4049 41) (-658 -4049 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" "374204" + "plane" "(-648 -4343 40) (-658 -4343 40) (-658 -4343 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "6332426" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-651 -4260.5 84" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6332418" + side + { + "id" "374245" + "plane" "(-655 -4478 127) (-655 -4475 127) (-649 -4475 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374244" + "plane" "(-655 -4475 41) (-655 -4478 41) (-649 -4478 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374243" + "plane" "(-655 -4478 41) (-655 -4475 41) (-655 -4475 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 95.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374242" + "plane" "(-649 -4475 41) (-649 -4478 41) (-649 -4478 127)" + "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" "374241" + "plane" "(-655 -4475 41) (-649 -4475 41) (-649 -4475 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374240" + "plane" "(-649 -4478 41) (-655 -4478 41) (-655 -4478 127)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +entity +{ + "id" "6332447" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-651 -4260.5 143.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6332439" + side + { + "id" "374269" + "plane" "(-655 -4478 158) (-655 -4475 158) (-649 -4475 158)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374268" + "plane" "(-655 -4475 129) (-655 -4478 129) (-649 -4478 129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374267" + "plane" "(-655 -4478 129) (-655 -4475 129) (-655 -4475 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 95.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374266" + "plane" "(-649 -4475 129) (-649 -4478 129) (-649 -4478 158)" + "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" "374265" + "plane" "(-655 -4475 129) (-649 -4475 129) (-649 -4475 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0.00194979] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374264" + "plane" "(-649 -4478 129) (-655 -4478 129) (-655 -4478 158)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -7.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10500]" + } +} +entity +{ + "id" "6332461" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-392 -4002.5 40.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6332455" + side + { + "id" "374293" + "plane" "(-608 -3998 41) (-176 -3998 41) (-176 -4008 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -288] 0.125" + "vaxis" "[0 1 0 127.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374292" + "plane" "(-608 -4008 40) (-176 -4008 40) (-176 -3998 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374291" + "plane" "(-608 -3998 41) (-608 -4008 41) (-608 -4008 40)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -520] 0.125" + "vaxis" "[0 -1 0 -148] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374290" + "plane" "(-176 -3998 40) (-176 -4008 40) (-176 -4008 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374289" + "plane" "(-176 -3998 41) (-608 -3998 41) (-608 -3998 40)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -288] 0.125" + "vaxis" "[0 0 -1 -39.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374288" + "plane" "(-176 -4008 40) (-608 -4008 40) (-608 -4008 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12000]" + } +} +entity +{ + "id" "6332542" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-607.5 -4003 100" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6332482" + side + { + "id" "374317" + "plane" "(-608 -3998 159) (-607 -3998 159) (-607 -4008 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374316" + "plane" "(-608 -4008 41) (-607 -4008 41) (-607 -3998 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374315" + "plane" "(-608 -3998 159) (-608 -4008 159) (-608 -4008 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 127.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374314" + "plane" "(-607 -3998 41) (-607 -4008 41) (-607 -4008 159)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374313" + "plane" "(-607 -3998 159) (-608 -3998 159) (-608 -3998 41)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374312" + "plane" "(-607 -4008 41) (-608 -4008 41) (-608 -4008 159)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +hidden +{ + entity + { + "id" "6314542" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-875 -4513.05 33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6314614" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-276 -3761 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/dust_manhole_concrete_color" + "sides" "376688 376706" + "StartU" "0" + "StartV" "1" + "uv0" "-21 -24.9999 0" + "uv1" "-21 24.9999 0" + "uv2" "21 24.9999 0" + "uv3" "21 -24.9999 0" + "origin" "-276 -3761 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "6314687" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "821 -5382 1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6314739" + "classname" "prop_static" + "angles" "0 216.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "734 -2469 -38" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6314875" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1641 -3600 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/dust_manhole_concrete_color" + "sides" "337010" + "StartU" "0" + "StartV" "1" + "uv0" "-28 -30 0" + "uv1" "-28 30 0" + "uv2" "28 30 0" + "uv3" "28 -30 0" + "origin" "1641 -3600 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "6314933" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "326 -6148 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/dust_manhole_concrete_color" + "sides" "336386" + "StartU" "0" + "StartV" "1" + "uv0" "-22 -22.625 0" + "uv1" "-22 22.625 0" + "uv2" "22 22.625 0" + "uv3" "22 -22.625 0" + "origin" "326 -6148 7.62939e-06" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "6297703" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/direction_sign.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-681 -4394 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "6297784" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/direction_sign.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-855 -3713 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "6297804" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/direction_sign.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-79 -4866 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "6297877" + "classname" "func_detail" + solid + { + "id" "6297813" + side + { + "id" "374107" + "plane" "(-695 -4395 137.875) (-695 -4393 137.875) (-667 -4393 137.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374106" + "plane" "(-695 -4393 34.875) (-695 -4395 34.875) (-667 -4395 34.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374105" + "plane" "(-695 -4395 34.875) (-695 -4393 34.875) (-695 -4393 137.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374104" + "plane" "(-667 -4393 34.875) (-667 -4395 34.875) (-667 -4395 137.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374103" + "plane" "(-695 -4393 34.875) (-667 -4393 34.875) (-667 -4393 137.875)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 43] 0.125" + "vaxis" "[0 0 -1 743] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "374102" + "plane" "(-667 -4395 34.875) (-695 -4395 34.875) (-695 -4395 137.875)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_003" + "uaxis" "[1 0 0 43] 0.125" + "vaxis" "[0 0 -1 743] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "6279874" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1412 -3800 29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6279902" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1476 -3736 29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6280003" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1344 -2974 29.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6280034" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1312 -2974 29.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6280988" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-829 -3708 32.8484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6280996" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-675 -3709 32.8484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6281010" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2303 -6093 33.2089" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6281051" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2032 -6091 33.2089" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "6281059" + "classname" "func_instance" + "angles" "-0 -108 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1730 -5370 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "6262739" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-720 -4469 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6262852" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-656 -4149 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "6263035" + "classname" "prop_static" + "angles" "0 343.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/weed_plant_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-685 -4451 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6263047" + "classname" "prop_static" + "angles" "0 343.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/weed_plant_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-678 -4343 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6263051" + "classname" "prop_static" + "angles" "0 152.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/weed_plant_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-681 -4223 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6263087" + "classname" "prop_static" + "angles" "0 343.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/weed_plant_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-677 -4384 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6175915" + "classname" "prop_static" + "angles" "0 323.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/curb_round001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1850 -4988 30" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "6175931" + "classname" "prop_static" + "angles" "0 323.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/curb_round001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1399 -4708 29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "6175942" + "classname" "func_detail" + solid + { + "id" "6175914" + side + { + "id" "372892" + "plane" "(-1740.93 -4879.27 32.2503) (-1790.51 -4845.54 32.2503) (-1848.61 -4834 32.2503)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 -1 0 208] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372891" + "plane" "(-1848.61 -4834 34) (-1790.5 -4845.54 34) (-1740.92 -4879.27 34)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -152] 0.125" + "vaxis" "[0 -1 0 416] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372890" + "plane" "(-1848.61 -4834 32.25) (-1790.5 -4845.54 32.25) (-1790.52 -4845.54 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372889" + "plane" "(-1790.51 -4845.54 32.25) (-1740.93 -4879.27 32.25) (-1740.91 -4879.28 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372888" + "plane" "(-1740.93 -4879.27 32.2479) (-1707.62 -4928.97 32.2479) (-1707.62 -4928.96 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -208] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372887" + "plane" "(-1707.62 -4928.97 32.25) (-1696 -4987.56 32.25) (-1696 -4987.56 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -208] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372886" + "plane" "(-1696 -4987.56 32.25) (-1707.62 -5047.04 32.25) (-1707.62 -5047.02 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -208] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372885" + "plane" "(-1707.62 -5047.04 32.25) (-1740.93 -5096.73 32.25) (-1740.94 -5096.73 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -208] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372884" + "plane" "(-1740.93 -5096.73 32.25) (-1790.51 -5130.46 32.25) (-1790.52 -5130.46 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372883" + "plane" "(-1790.51 -5130.46 32.25) (-1848.61 -5142 32.25) (-1848.61 -5142 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372882" + "plane" "(-1848.62 -5142 32.25) (-1907.5 -5130.46 32.25) (-1907.5 -5130.46 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372881" + "plane" "(-1907.5 -5130.46 32.2481) (-1957.05 -5096.75 32.2481) (-1957.06 -5096.74 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372880" + "plane" "(-1957.05 -5096.75 32.25) (-1990.38 -5047.02 32.25) (-1990.38 -5047.03 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -208] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372879" + "plane" "(-1990.38 -5047.01 32.25) (-2002 -4987.56 32.25) (-2002 -4987.56 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -208] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372878" + "plane" "(-2002 -4987.56 32.25) (-1990.38 -4928.97 32.25) (-1990.38 -4928.97 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -208] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372877" + "plane" "(-1990.38 -4928.97 32.25) (-1957.07 -4879.27 32.25) (-1957.07 -4879.27 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -208] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372876" + "plane" "(-1957.07 -4879.27 32.25) (-1907.49 -4845.54 32.25) (-1907.49 -4845.54 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372875" + "plane" "(-1907.49 -4845.54 32.25) (-1848.61 -4834 32.25) (-1848.6 -4834 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 180] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6175930" + side + { + "id" "372910" + "plane" "(-1289.93 -4599.27 31.2503) (-1339.5 -4565.54 31.2503) (-1397.61 -4554 31.2503)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 -88] 0.25" + "vaxis" "[0 -1 0 304] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372909" + "plane" "(-1397.61 -4554 33) (-1339.51 -4565.54 33) (-1289.92 -4599.28 33)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -688] 0.125" + "vaxis" "[0 -1 0 608] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372908" + "plane" "(-1397.61 -4554 31.2519) (-1339.51 -4565.54 31.2519) (-1339.51 -4565.54 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372907" + "plane" "(-1339.51 -4565.54 31.25) (-1289.93 -4599.27 31.25) (-1289.92 -4599.28 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372906" + "plane" "(-1289.93 -4599.27 31.25) (-1256.62 -4648.97 31.25) (-1256.62 -4648.95 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372905" + "plane" "(-1256.62 -4648.97 31.25) (-1245 -4707.56 31.25) (-1245 -4707.57 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372904" + "plane" "(-1245 -4707.56 31.25) (-1256.62 -4767.04 31.25) (-1256.62 -4767.03 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372903" + "plane" "(-1256.62 -4767.05 31.25) (-1289.93 -4816.73 31.25) (-1289.93 -4816.73 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372902" + "plane" "(-1289.93 -4816.73 31.25) (-1339.51 -4850.46 31.25) (-1339.52 -4850.46 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372901" + "plane" "(-1339.51 -4850.46 31.25) (-1397.61 -4862 31.25) (-1397.61 -4862 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372900" + "plane" "(-1397.61 -4862 31.25) (-1456.5 -4850.46 31.25) (-1456.49 -4850.46 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372899" + "plane" "(-1456.51 -4850.46 31.25) (-1506.04 -4816.75 31.25) (-1506.06 -4816.74 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372898" + "plane" "(-1506.05 -4816.75 31.25) (-1539.38 -4767.02 31.25) (-1539.38 -4767.04 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372897" + "plane" "(-1539.38 -4767.02 31.25) (-1551 -4707.56 31.25) (-1551 -4707.56 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372896" + "plane" "(-1551 -4707.56 31.25) (-1539.38 -4648.97 31.25) (-1539.38 -4648.97 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372895" + "plane" "(-1539.38 -4648.97 31.25) (-1506.07 -4599.27 31.25) (-1506.07 -4599.27 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -304] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372894" + "plane" "(-1506.07 -4599.27 31.25) (-1456.49 -4565.54 31.25) (-1456.49 -4565.54 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372893" + "plane" "(-1456.49 -4565.54 31.25) (-1397.61 -4554 31.25) (-1397.61 -4554 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 -88] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "6175950" + "classname" "prop_static" + "angles" "0 323.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/curb_round001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1971 -4369 30" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "6175960" + "classname" "prop_static" + "angles" "0 323.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/curb_round001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1423 -4193 30" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "6175985" + "classname" "prop_static" + "angles" "0 323.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/curb_round001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1774 -3870 29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "6175997" + "classname" "func_detail" + solid + { + "id" "6175959" + side + { + "id" "373036" + "plane" "(-1313.93 -4084.27 32.2503) (-1363.51 -4050.54 32.2503) (-1421.61 -4039 32.2503)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 -1 0 -196] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373035" + "plane" "(-1421.61 -4039 34) (-1363.51 -4050.54 34) (-1313.92 -4084.28 34)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373034" + "plane" "(-1421.62 -4039 32.25) (-1363.51 -4050.54 32.25) (-1363.51 -4050.54 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373033" + "plane" "(-1363.51 -4050.54 32.25) (-1313.93 -4084.27 32.25) (-1313.92 -4084.28 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373032" + "plane" "(-1313.93 -4084.27 32.248) (-1280.62 -4133.97 32.248) (-1280.62 -4133.95 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 196] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373031" + "plane" "(-1280.62 -4133.97 32.25) (-1269 -4192.56 32.25) (-1269 -4192.56 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 196] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373030" + "plane" "(-1269 -4192.56 32.25) (-1280.62 -4252.04 32.25) (-1280.62 -4252.03 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 196] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373029" + "plane" "(-1280.62 -4252.04 32.2521) (-1313.93 -4301.73 32.2521) (-1313.94 -4301.73 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 196] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373028" + "plane" "(-1313.93 -4301.73 32.25) (-1363.51 -4335.46 32.25) (-1363.54 -4335.46 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373027" + "plane" "(-1363.51 -4335.46 32.25) (-1421.61 -4347 32.25) (-1421.61 -4347 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373026" + "plane" "(-1421.61 -4347 32.25) (-1480.5 -4335.46 32.25) (-1480.5 -4335.46 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373025" + "plane" "(-1480.51 -4335.46 32.2481) (-1530.04 -4301.75 32.2481) (-1530.06 -4301.74 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373024" + "plane" "(-1530.04 -4301.75 32.25) (-1563.38 -4252.01 32.25) (-1563.38 -4252.02 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 196] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373023" + "plane" "(-1563.38 -4252.02 32.25) (-1575 -4192.56 32.25) (-1575 -4192.56 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 196] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373022" + "plane" "(-1575 -4192.56 32.25) (-1563.38 -4133.97 32.25) (-1563.38 -4133.97 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 196] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373021" + "plane" "(-1563.38 -4133.97 32.25) (-1530.07 -4084.27 32.25) (-1530.07 -4084.27 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 196] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373020" + "plane" "(-1530.07 -4084.27 32.25) (-1480.49 -4050.54 32.25) (-1480.49 -4050.54 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373019" + "plane" "(-1480.49 -4050.54 32.25) (-1421.61 -4039 32.25) (-1421.61 -4039 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6175949" + side + { + "id" "373054" + "plane" "(-1861.93 -4260.27 32.2503) (-1911.5 -4226.54 32.2503) (-1969.62 -4215 32.2503)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 -1 0 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373053" + "plane" "(-1969.62 -4215 34) (-1911.5 -4226.55 34) (-1861.92 -4260.28 34)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 816] 0.125" + "vaxis" "[0 -1 0 248] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373052" + "plane" "(-1969.61 -4215 32.25) (-1911.51 -4226.54 32.25) (-1911.51 -4226.54 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373051" + "plane" "(-1911.5 -4226.54 32.25) (-1861.93 -4260.27 32.25) (-1861.92 -4260.28 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373050" + "plane" "(-1861.93 -4260.27 32.25) (-1828.62 -4309.97 32.25) (-1828.62 -4309.96 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373049" + "plane" "(-1828.62 -4309.97 32.25) (-1817 -4368.56 32.25) (-1817 -4368.56 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373048" + "plane" "(-1817 -4368.56 32.25) (-1828.62 -4428.04 32.25) (-1828.62 -4428.03 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373047" + "plane" "(-1828.62 -4428.04 32.25) (-1861.93 -4477.73 32.25) (-1861.94 -4477.73 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373046" + "plane" "(-1861.93 -4477.73 32.2521) (-1911.51 -4511.46 32.2521) (-1911.54 -4511.46 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373045" + "plane" "(-1911.51 -4511.46 32.25) (-1969.61 -4523 32.25) (-1969.61 -4523 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373044" + "plane" "(-1969.61 -4523 32.25) (-2028.5 -4511.46 32.25) (-2028.49 -4511.46 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373043" + "plane" "(-2028.51 -4511.46 32.25) (-2078.05 -4477.75 32.25) (-2078.06 -4477.74 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373042" + "plane" "(-2078.05 -4477.75 32.25) (-2111.38 -4428.01 32.25) (-2111.38 -4428.03 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373041" + "plane" "(-2111.38 -4428.02 32.25) (-2123 -4368.56 32.25) (-2123 -4368.56 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373040" + "plane" "(-2123 -4368.56 32.25) (-2111.38 -4309.97 32.25) (-2111.38 -4309.97 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373039" + "plane" "(-2111.38 -4309.97 32.25) (-2078.07 -4260.27 32.25) (-2078.07 -4260.27 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373038" + "plane" "(-2078.07 -4260.27 32.25) (-2028.49 -4226.54 32.25) (-2028.49 -4226.54 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373037" + "plane" "(-2028.49 -4226.54 32.25) (-1969.61 -4215 32.25) (-1969.61 -4215 34)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 152] 0.25" + "vaxis" "[0 0 -1 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6175984" + side + { + "id" "373072" + "plane" "(-1664.94 -3761.26 31.2503) (-1714.5 -3727.54 31.2503) (-1772.61 -3716 31.2503)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 388] 0.25" + "vaxis" "[0 -1 0 72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373071" + "plane" "(-1772.61 -3716 33) (-1714.51 -3727.54 33) (-1664.92 -3761.28 33)" + "material" "CS_APOLLO/OUTSIDE/GROUND_GREEN" + "uaxis" "[1 0 0 264] 0.125" + "vaxis" "[0 -1 0 144] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373070" + "plane" "(-1772.62 -3716 31.25) (-1714.51 -3727.54 31.25) (-1714.52 -3727.54 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 388] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373069" + "plane" "(-1714.51 -3727.54 31.25) (-1664.93 -3761.27 31.25) (-1664.91 -3761.28 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 388] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373068" + "plane" "(-1664.92 -3761.28 31.248) (-1631.62 -3810.96 31.248) (-1631.63 -3810.95 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -72] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373067" + "plane" "(-1631.62 -3810.97 31.25) (-1620 -3869.56 31.25) (-1620 -3869.56 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -72] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373066" + "plane" "(-1620 -3869.56 31.25) (-1631.62 -3929.04 31.25) (-1631.62 -3929.02 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -72] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373065" + "plane" "(-1631.62 -3929.05 31.25) (-1664.93 -3978.73 31.25) (-1664.93 -3978.73 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -72] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373064" + "plane" "(-1664.93 -3978.74 31.2479) (-1714.5 -4012.46 31.2479) (-1714.52 -4012.46 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 388] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373063" + "plane" "(-1714.51 -4012.46 31.25) (-1772.61 -4024 31.25) (-1772.61 -4024 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 388] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373062" + "plane" "(-1772.61 -4024 31.25) (-1831.5 -4012.46 31.25) (-1831.5 -4012.46 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 388] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373061" + "plane" "(-1831.51 -4012.46 31.2519) (-1881.05 -3978.75 31.2519) (-1881.06 -3978.74 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 388] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373060" + "plane" "(-1881.05 -3978.75 31.2481) (-1914.38 -3929.02 31.2481) (-1914.38 -3929.03 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -72] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373059" + "plane" "(-1914.38 -3929.01 31.25) (-1926 -3869.56 31.25) (-1926 -3869.56 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -72] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373058" + "plane" "(-1926 -3869.56 31.25) (-1914.38 -3810.97 31.25) (-1914.38 -3810.97 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -72] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373057" + "plane" "(-1914.38 -3810.97 31.25) (-1881.07 -3761.27 31.25) (-1881.07 -3761.27 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 -72] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373056" + "plane" "(-1881.07 -3761.27 31.25) (-1831.49 -3727.54 31.25) (-1831.48 -3727.54 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 388] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373055" + "plane" "(-1831.49 -3727.54 31.25) (-1772.61 -3716 31.25) (-1772.61 -3716 33)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 388] 0.25" + "vaxis" "[0 0 -1 124] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6159268" + "classname" "func_instance" + "angles" "-0 -71 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1728 -5184 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6159271" + "classname" "func_instance" + "angles" "-0 49.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "2086 -5369 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6159280" + "classname" "func_instance" + "angles" "-0 92.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "2101 -5198 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "6140989" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "596 -2426 0.25" + editor + { + "color" "249 146 0" + "groupid" "6141125" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6141009" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "609 -2685 -8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "6141057" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "614 -2594 -8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "6141069" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "614 -2505 -8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "6141085" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "501 -2683 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "6141097" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "596 -2490 0.25" + editor + { + "color" "249 146 0" + "groupid" "6141125" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "6141126" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "501 -2186 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6141130" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "565 -2186 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "6141154" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "597 -2186 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6141162" + "classname" "prop_static" + "angles" "8.5 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "624.994 -2186 -20.9117" + editor + { + "color" "183 104 0" + "groupid" "6141198" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6141166" + "classname" "prop_static" + "angles" "8.5 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "688.291 -2186 -30.3715" + editor + { + "color" "183 104 0" + "groupid" "6141198" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6141178" + "classname" "prop_static" + "angles" "-8.5 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "751.588 -2186 -39.8313" + editor + { + "color" "183 104 0" + "groupid" "6141198" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "6141251" + "classname" "prop_static" + "angles" "8.5 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "688.291 -2282 -30.3715" + editor + { + "color" "183 104 0" + "groupid" "6141250" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6141255" + "classname" "prop_static" + "angles" "8.5 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "624.994 -2282 -20.9117" + editor + { + "color" "183 104 0" + "groupid" "6141250" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6141259" + "classname" "prop_static" + "angles" "-8.5 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "751.588 -2282 -39.8313" + editor + { + "color" "183 104 0" + "groupid" "6141250" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "6141277" + "classname" "prop_static" + "angles" "8.5 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "596 -2351.71 -11.3715" + editor + { + "color" "183 104 0" + "groupid" "6141276" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6141281" + "classname" "prop_static" + "angles" "8.5 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "596 -2415.01 -1.91173" + editor + { + "color" "183 104 0" + "groupid" "6141276" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6141285" + "classname" "prop_static" + "angles" "-8.5 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "596 -2288.41 -20.8313" + editor + { + "color" "183 104 0" + "groupid" "6141276" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "6142027" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "745 -2157 -35.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6142035" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "537 -2145 -35.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6142448" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_512.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "492 -2128 192.346" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6142464" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_256.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "492 -2640 192.346" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6142523" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_corner_002.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "492 -2908 193" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6142559" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_64.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "480 -2908 193" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6142606" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_16.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "416 -2908 193" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6142630" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "550 -2563 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke/asphalt_crack_03" + "sides" "372628 372796" + "StartU" "0" + "StartV" "1" + "uv0" "-106.5 -106.5 0" + "uv1" "-106.5 106.5 0" + "uv2" "106.5 106.5 0" + "uv3" "106.5 -106.5 0" + "origin" "550 -2563 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "6121762" + "classname" "func_detail" + solid + { + "id" "6121694" + side + { + "id" "371980" + "plane" "(646.695 -2687 -40) (611 -2687 -16) (611 -2687 -4)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8288 0.00570004 -0.5595 -262.074] 0.16" + "vaxis" "[-0.5595 0 -0.8288 -25.4223] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371979" + "plane" "(611 -2683 -16) (646.694 -2683 -40) (664 -2683 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8288 0.00570004 -0.5595 -262.074] 0.16" + "vaxis" "[-0.5595 0 -0.8288 -25.4223] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371978" + "plane" "(611 -2687 -16) (611 -2683 -16) (611 -2683 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371977" + "plane" "(664 -2687 -40) (664 -2683 -40) (646.694 -2683 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371976" + "plane" "(646.695 -2687 -40) (646.694 -2683 -40) (611 -2683 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8321 0 -0.5547 346.469] 0.125" + "vaxis" "[0 1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371975" + "plane" "(611 -2687 -4) (611 -2683 -4) (664 -2683 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8321 0 -0.5547 418.469] 0.125" + "vaxis" "[0 1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121726" + side + { + "id" "371986" + "plane" "(611 -2590 -16) (646.694 -2590 -40) (664 -2590 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.82876 0.0113995 -0.559473 -449.121] 0.16" + "vaxis" "[-0.5595 0 -0.8288 -25.4223] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371985" + "plane" "(611 -2590 -16) (611 -2590 -4) (611 -2598 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 56] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371984" + "plane" "(664 -2590 -40) (646.694 -2590 -40) (646.696 -2598 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371983" + "plane" "(611 -2590 -16) (611 -2598 -16) (646.696 -2598 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8321 0 -0.5547 418.469] 0.125" + "vaxis" "[0 1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371982" + "plane" "(611 -2590 -4) (664 -2590 -40) (664 -2598 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.827216 0 -0.561883 590.585] 0.125" + "vaxis" "[0 1 0 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371981" + "plane" "(646.696 -2598 -40) (611 -2598 -16) (611 -2598 -4)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.82876 0.0113995 -0.559473 -449.121] 0.16" + "vaxis" "[-0.5595 0 -0.8288 -25.4223] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121698" + side + { + "id" "371992" + "plane" "(611 -2503 -4) (611 -2503 -16) (646.696 -2503 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8288 0.00570004 -0.5595 -266.207] 0.16" + "vaxis" "[-0.5595 0 -0.8288 -25.4223] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371991" + "plane" "(611 -2507 -16) (611 -2503 -16) (611 -2503 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371990" + "plane" "(664 -2503 -40) (646.695 -2503 -40) (646.695 -2507 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371989" + "plane" "(646.695 -2503 -40) (611 -2503 -16) (611 -2507 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8321 0 -0.5547 418.469] 0.125" + "vaxis" "[0 1 0 24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371988" + "plane" "(611 -2507 -4) (611 -2503 -4) (664 -2503 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.827216 0 -0.561883 441.985] 0.125" + "vaxis" "[0 1 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371987" + "plane" "(664 -2507 -40) (646.695 -2507 -40) (611 -2507 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8288 0.00570004 -0.5595 -266.207] 0.16" + "vaxis" "[-0.5595 0 -0.8288 -25.4223] 0.16" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121697" + side + { + "id" "371998" + "plane" "(648 -2683 -40) (648 -2507 -40) (648 -2507 -38)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 444] 0.06" + "vaxis" "[0 0 -1 6.33325] 0.06" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371997" + "plane" "(660 -2507 -40) (648 -2507 -40) (648 -2683 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371996" + "plane" "(660 -2683 -38) (648 -2683 -38) (648 -2507 -38)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001_STAIR" + "uaxis" "[1 0 0 0] 0.1875" + "vaxis" "[0 -1 0 -15.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371995" + "plane" "(660 -2683 -40) (648 -2683 -40) (648 -2683 -38)" + "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" "371994" + "plane" "(648 -2507 -38) (648 -2507 -40) (660 -2507 -40)" + "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" "371993" + "plane" "(660 -2507 -40) (660 -2683 -40) (660 -2683 -38)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 444] 0.06" + "vaxis" "[0 0 -1 6.33325] 0.06" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121695" + side + { + "id" "372004" + "plane" "(648 -2683 -30) (648 -2683 -32) (636 -2683 -32)" + "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" "372003" + "plane" "(636 -2507 -30) (636 -2507 -32) (648 -2507 -32)" + "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" "372002" + "plane" "(648 -2507 -30) (648 -2507 -32) (648 -2683 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 444] 0.06" + "vaxis" "[0 0 -1 12.3333] 0.06" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372001" + "plane" "(636 -2683 -30) (636 -2683 -32) (636 -2507 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 444] 0.06" + "vaxis" "[0 0 -1 12.3333] 0.06" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372000" + "plane" "(648 -2507 -32) (636 -2507 -32) (636 -2683 -32)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001_STAIR" + "uaxis" "[1 0 0 0] 0.1875" + "vaxis" "[0 -1 0 -472] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371999" + "plane" "(648 -2683 -30) (636 -2683 -30) (636 -2507 -30)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001_STAIR" + "uaxis" "[1 0 0 0] 0.1875" + "vaxis" "[0 -1 0 -15.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121715" + side + { + "id" "372010" + "plane" "(624 -2683 -14) (624 -2683 -16) (612 -2683 -16)" + "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" "372009" + "plane" "(612 -2507 -14) (612 -2507 -16) (624 -2507 -16)" + "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" "372008" + "plane" "(624 -2507 -14) (624 -2507 -16) (624 -2683 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 444] 0.06" + "vaxis" "[0 0 -1 23] 0.06" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372007" + "plane" "(612 -2683 -14) (612 -2683 -16) (612 -2507 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 444] 0.06" + "vaxis" "[0 0 -1 23] 0.06" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372006" + "plane" "(624 -2507 -16) (612 -2507 -16) (612 -2683 -16)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001_STAIR" + "uaxis" "[1 0 0 0] 0.1875" + "vaxis" "[0 -1 0 -472] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372005" + "plane" "(624 -2683 -14) (612 -2683 -14) (612 -2507 -14)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001_STAIR" + "uaxis" "[1 0 0 0] 0.1875" + "vaxis" "[0 -1 0 -15.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121696" + side + { + "id" "372016" + "plane" "(636 -2683 -22) (636 -2683 -24) (624 -2683 -24)" + "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" "372015" + "plane" "(624 -2507 -22) (624 -2507 -24) (636 -2507 -24)" + "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" "372014" + "plane" "(636 -2507 -22) (636 -2507 -24) (636 -2683 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 444] 0.06" + "vaxis" "[0 0 -1 17.3333] 0.06" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372013" + "plane" "(624 -2683 -22) (624 -2683 -24) (624 -2507 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 444] 0.06" + "vaxis" "[0 0 -1 12] 0.06" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372012" + "plane" "(636 -2507 -24) (624 -2507 -24) (624 -2683 -24)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001_STAIR" + "uaxis" "[1 0 0 0] 0.1875" + "vaxis" "[0 -1 0 -472] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372011" + "plane" "(636 -2683 -22) (624 -2683 -22) (624 -2507 -22)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001_STAIR" + "uaxis" "[1 0 0 0] 0.1875" + "vaxis" "[0 -1 0 -15.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6121716" + side + { + "id" "372022" + "plane" "(612 -2683 -6) (612 -2683 -8) (600 -2683 -8)" + "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" "372021" + "plane" "(600 -2507 -6) (600 -2507 -8) (612 -2507 -8)" + "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" "372020" + "plane" "(612 -2507 -6) (612 -2507 -8) (612 -2683 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 444] 0.06" + "vaxis" "[0 0 -1 28] 0.06" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372019" + "plane" "(600 -2683 -6) (600 -2683 -8) (600 -2507 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372018" + "plane" "(612 -2507 -8) (600 -2507 -8) (600 -2683 -8)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001_STAIR" + "uaxis" "[1 0 0 0] 0.1875" + "vaxis" "[0 -1 0 -472] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372017" + "plane" "(612 -2683 -6) (600 -2683 -6) (600 -2507 -6)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001_STAIR" + "uaxis" "[1 0 0 0] 0.1875" + "vaxis" "[0 -1 0 -15.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "209 198 0" + "groupid" "6122412" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "6121918" + "classname" "func_detail" + solid + { + "id" "6121781" + side + { + "id" "372034" + "plane" "(600 -2683 -4) (611 -2683 -4) (611 -2687 -4)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -384.601] 0.125" + "vaxis" "[0 1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372033" + "plane" "(600 -2687 -16) (611 -2687 -16) (611 -2683 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372032" + "plane" "(600 -2683 -4) (600 -2687 -4) (600 -2687 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372031" + "plane" "(611 -2683 -16) (611 -2687 -16) (611 -2687 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372030" + "plane" "(611 -2683 -4) (600 -2683 -4) (600 -2683 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -385] 0.125" + "vaxis" "[0 0 -1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372029" + "plane" "(611 -2687 -16) (600 -2687 -16) (600 -2687 -4)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -385] 0.125" + "vaxis" "[0 0 1 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "209 198 0" + "groupid" "6122412" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "6121937" + "classname" "func_detail" + solid + { + "id" "6121925" + side + { + "id" "372064" + "plane" "(600 -2590 -4) (611 -2590 -4) (611 -2598 -4)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -236] 0.125" + "vaxis" "[0 1 0 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372063" + "plane" "(600 -2598 -16) (611 -2598 -16) (611 -2590 -16)" + "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" "372062" + "plane" "(600 -2590 -4) (600 -2598 -4) (600 -2598 -16)" + "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" "372061" + "plane" "(611 -2590 -16) (611 -2598 -16) (611 -2598 -4)" + "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" "372060" + "plane" "(611 -2590 -4) (600 -2590 -4) (600 -2590 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -385] 0.125" + "vaxis" "[0 0 1 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372059" + "plane" "(611 -2598 -16) (600 -2598 -16) (600 -2598 -4)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -385] 0.125" + "vaxis" "[0 0 1 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "209 198 0" + "groupid" "6122412" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "6121946" + "classname" "func_detail" + solid + { + "id" "6121942" + side + { + "id" "372082" + "plane" "(600 -2507 -4) (600 -2503 -4) (611 -2503 -4)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -384.601] 0.125" + "vaxis" "[0 1 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372081" + "plane" "(600 -2503 -16) (600 -2507 -16) (611 -2507 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372080" + "plane" "(600 -2507 -16) (600 -2503 -16) (600 -2503 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372079" + "plane" "(611 -2503 -16) (611 -2507 -16) (611 -2507 -4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372078" + "plane" "(600 -2503 -16) (611 -2503 -16) (611 -2503 -4)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -385] 0.125" + "vaxis" "[0 0 1 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372077" + "plane" "(611 -2507 -16) (600 -2507 -16) (600 -2507 -4)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -385] 0.125" + "vaxis" "[0 0 1 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "209 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "209 198 0" + "groupid" "6122412" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "6123024" + "classname" "func_detail" + solid + { + "id" "6122956" + side + { + "id" "372202" + "plane" "(592 -2278 -16) (592 -2190 -16) (600 -2182 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 16] 0.125" + "vaxis" "[-1 0 0 97] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372201" + "plane" "(592 -2190 -24) (592 -2278 -24) (600 -2286 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372200" + "plane" "(592 -2278 -24) (592 -2190 -24) (592 -2190 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 911.997] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372199" + "plane" "(600 -2182 -24) (600 -2286 -24) (600 -2286 -16)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -216] 0.125" + "vaxis" "[0 0 -1 639] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372198" + "plane" "(592 -2190 -24) (600 -2182 -24) (600 -2182 -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" "372197" + "plane" "(600 -2286 -24) (592 -2278 -24) (592 -2278 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6122960" + side + { + "id" "372208" + "plane" "(496 -2286 -16) (504 -2278 -16) (592 -2278 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372207" + "plane" "(504 -2278 -24) (496 -2286 -24) (600 -2286 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372206" + "plane" "(496 -2286 -24) (504 -2278 -24) (504 -2278 -16)" + "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" "372205" + "plane" "(592 -2278 -24) (600 -2286 -24) (600 -2286 -16)" + "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" "372204" + "plane" "(504 -2278 -24) (592 -2278 -24) (592 -2278 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -800] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372203" + "plane" "(600 -2286 -24) (496 -2286 -24) (496 -2286 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -800] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6122949" + side + { + "id" "372214" + "plane" "(504 -2278 -16) (504 -2190 -16) (592 -2190 -16)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[1 0 0 -372.364] 0.171875" + "vaxis" "[0 -1 0 -453.818] 0.171875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372213" + "plane" "(504 -2190 -20) (504 -2278 -20) (592 -2278 -20)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[1 0 0 -370.046] 0.172" + "vaxis" "[0 -1 0 -59.2402] 0.158" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372212" + "plane" "(504 -2278 -20) (504 -2190 -20) (504 -2190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372211" + "plane" "(592 -2190 -20) (592 -2278 -20) (592 -2278 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372210" + "plane" "(504 -2190 -20) (592 -2190 -20) (592 -2190 -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" "372209" + "plane" "(592 -2278 -20) (504 -2278 -20) (504 -2278 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6123008" + side + { + "id" "372220" + "plane" "(600 -2182 -16) (592 -2190 -16) (504 -2190 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 384] 0.125" + "vaxis" "[0 1 0 -111] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372219" + "plane" "(496 -2182 -24) (504 -2190 -24) (592 -2190 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372218" + "plane" "(600 -2182 -24) (592 -2190 -24) (592 -2190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372217" + "plane" "(504 -2190 -24) (496 -2182 -24) (496 -2182 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372216" + "plane" "(592 -2190 -24) (504 -2190 -24) (504 -2190 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 415.998] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372215" + "plane" "(496 -2182 -24) (600 -2182 -24) (600 -2182 -16)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 23.9971] 0.125" + "vaxis" "[0 0 -1 639] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6122955" + side + { + "id" "372226" + "plane" "(496 -2286 -16) (496 -2182 -16) (504 -2190 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 16] 0.125" + "vaxis" "[-1 0 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372225" + "plane" "(496 -2182 -24) (496 -2286 -24) (504 -2278 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372224" + "plane" "(496 -2286 -24) (496 -2182 -24) (496 -2182 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372223" + "plane" "(504 -2190 -24) (504 -2278 -24) (504 -2278 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -655.998] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372222" + "plane" "(496 -2182 -24) (504 -2190 -24) (504 -2190 -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" "372221" + "plane" "(504 -2278 -24) (496 -2286 -24) (496 -2286 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +hidden +{ + entity + { + "id" "6123159" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "746 -2173 -40.002" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +entity +{ + "id" "6123719" + "classname" "func_detail" + solid + { + "id" "8233449" + side + { + "id" "389680" + "plane" "(592 -2416 0) (592 -2286 -16) (600 -2286 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -0.992511 0.122157 144.75] 0.125" + "vaxis" "[-1 0 0 97] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389679" + "plane" "(592 -2286 -24) (592 -2286 -16) (592 -2416 -0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -0.99251 0.122155 -735.41] 0.125" + "vaxis" "[0 -0.122155 -0.992511 -24.7759] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389678" + "plane" "(600 -2416 -8) (600 -2416 -0) (600 -2286 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -0.992511 0.122155 145] 0.125" + "vaxis" "[0 0.122155 0.992511 26] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389677" + "plane" "(600 -2286 -24) (600 -2286 -16) (592 -2286 -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" "389676" + "plane" "(592 -2416 -8) (592 -2416 0) (600 -2416 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" "389675" + "plane" "(592 -2286 -24) (592 -2416 -8) (600 -2416 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -0.992511 0.122155 -731.508] 0.125" + "vaxis" "[1 0 0 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6123614" + side + { + "id" "372346" + "plane" "(504 -2416 0) (504 -2286 -16) (592 -2286 -16)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[1 0 0 -372.364] 0.171875" + "vaxis" "[0 -0.992511 0.122157 -157.333] 0.255822" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "372345" + "plane" "(504 -2286 -18) (504 -2286 -16) (504 -2416 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" "372344" + "plane" "(592 -2416 -2) (592 -2416 0) (592 -2286 -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" "372343" + "plane" "(592 -2286 -18) (592 -2286 -16) (504 -2286 -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" "372342" + "plane" "(504 -2416 -2) (504 -2416 0) (592 -2416 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" "372341" + "plane" "(504 -2286 -18) (504 -2416 -2) (592 -2416 -2)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[1 0 0 -370.046] 0.172" + "vaxis" "[0 -1 0 -287.746] 0.158" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "8233535" + side + { + "id" "389686" + "plane" "(496 -2416 0) (496 -2286 -16) (504 -2286 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -0.992511 0.122157 144.75] 0.125" + "vaxis" "[-1 0 0 -31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389685" + "plane" "(496 -2286 -24) (496 -2286 -16) (496 -2416 -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" "389684" + "plane" "(504 -2416 -8) (504 -2416 -0) (504 -2286 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -0.992511 0.122155 145] 0.125" + "vaxis" "[0 0.122155 0.992511 26] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389683" + "plane" "(504 -2286 -24) (504 -2286 -16) (496 -2286 -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" "389682" + "plane" "(496 -2416 -8) (496 -2416 0) (504 -2416 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" "389681" + "plane" "(496 -2286 -24) (496 -2416 -8) (504 -2416 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -0.992511 0.122155 -731.508] 0.125" + "vaxis" "[1 0 0 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +hidden +{ + entity + { + "id" "6123942" + "classname" "prop_static" + "angles" "0 85.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "731 -2142 -45" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6124285" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "533 -2683 0.249996" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6124289" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "597 -2683 0.249996" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6124340" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "633 -2685 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6124344" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "657 -2685 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6124380" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "662 -2594 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6124384" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "638 -2594 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6124436" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "662 -2505 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "6124440" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "638 -2505 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "6101978" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-814.249 -2745.66 402" + editor + { + "color" "217 230 0" + "groupid" "6101977" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6101983" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-814.249 -2745.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6101977" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6101988" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-812.38 -2744.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6101977" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6101991" + "classname" "prop_static" + "angles" "0 327.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-814.249 -2745.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6101977" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6102158" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-814.249 -2580.66 402" + editor + { + "color" "217 230 0" + "groupid" "6102157" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6102163" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-814.249 -2580.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6102157" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6102168" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-812.38 -2579.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6102157" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6102171" + "classname" "prop_static" + "angles" "0 356 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-814.249 -2580.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6102157" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6102304" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-1074.25 -2580.66 402" + editor + { + "color" "217 230 0" + "groupid" "6102303" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6102309" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-1074.25 -2580.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6102303" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6102314" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-1072.38 -2579.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6102303" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6102317" + "classname" "prop_static" + "angles" "0 210.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1074.25 -2580.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6102303" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6102322" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-1074.25 -2745.66 402" + editor + { + "color" "217 230 0" + "groupid" "6102321" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6102327" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-1074.25 -2745.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6102321" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6102332" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-1072.38 -2744.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6102321" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6102335" + "classname" "prop_static" + "angles" "0 19 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1074.25 -2745.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6102321" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6102674" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-1371.25 -2580.66 402" + editor + { + "color" "217 230 0" + "groupid" "6102673" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6102679" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-1371.25 -2580.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6102673" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6102684" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-1369.38 -2579.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6102673" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6102687" + "classname" "prop_static" + "angles" "0 200.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1371.25 -2580.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6102673" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6102692" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-1371.25 -2745.66 402" + editor + { + "color" "217 230 0" + "groupid" "6102691" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6102697" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-1371.25 -2745.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6102691" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6102702" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-1369.38 -2744.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6102691" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6102705" + "classname" "prop_static" + "angles" "0 60 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1371.25 -2745.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6102691" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6102970" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "35.7515 -2580.66 402" + editor + { + "color" "217 230 0" + "groupid" "6102969" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6102975" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "35.7515 -2580.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6102969" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6102980" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "37.6205 -2579.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6102969" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6102983" + "classname" "prop_static" + "angles" "0 312.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "35.7515 -2580.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6102969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6102988" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "35.7515 -2745.66 402" + editor + { + "color" "217 230 0" + "groupid" "6102987" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6102993" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "35.7515 -2745.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6102987" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6102998" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "37.6205 -2744.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6102987" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6103001" + "classname" "prop_static" + "angles" "0 221 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "35.7515 -2745.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6102987" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6103118" + "classname" "light" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-1928.25 -2580.66 402" + editor + { + "color" "217 230 0" + "groupid" "6103117" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6103123" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-1928.25 -2580.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6103117" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6103128" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-1926.38 -2579.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6103117" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6103131" + "classname" "prop_static" + "angles" "0 252.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1928.25 -2580.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6103117" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6103136" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-1928.25 -2745.66 402" + editor + { + "color" "217 230 0" + "groupid" "6103135" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6103141" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_inner_cone" "1" + "_light" "232 224 198 499" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-1928.25 -2745.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6103135" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6103146" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-1926.38 -2744.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6103135" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6103149" + "classname" "prop_static" + "angles" "0 73.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1928.25 -2745.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6103135" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6103266" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-2490.25 -2580.66 402" + editor + { + "color" "217 230 0" + "groupid" "6103265" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6103271" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-2490.25 -2580.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6103265" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6103276" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-2488.38 -2579.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6103265" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6103279" + "classname" "prop_static" + "angles" "0 199.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2490.25 -2580.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6103265" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6103284" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-2490.25 -2745.66 402" + editor + { + "color" "217 230 0" + "groupid" "6103283" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6103289" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-2490.25 -2745.66 414.965" + editor + { + "color" "217 230 0" + "groupid" "6103283" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6103294" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-2488.38 -2744.52 416.675" + editor + { + "color" "217 230 0" + "groupid" "6103283" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6103297" + "classname" "prop_static" + "angles" "0 214 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2490.25 -2745.84 460.925" + editor + { + "color" "217 230 0" + "groupid" "6103283" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +hidden +{ + entity + { + "id" "6103466" + "classname" "prop_static" + "angles" "0 22.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-813 -2085.33 460.837" + editor + { + "color" "217 230 0" + "groupid" "6103517" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6103470" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-813 -2085.14 414.878" + editor + { + "color" "217 230 0" + "groupid" "6103517" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6103475" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-811.131 -2084 416.587" + editor + { + "color" "217 230 0" + "groupid" "6103517" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +entity +{ + "id" "6103478" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-813 -2085.14 401.913" + editor + { + "color" "217 230 0" + "groupid" "6103517" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6103573" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-245 -2085.14 401.913" + editor + { + "color" "217 230 0" + "groupid" "6103572" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6103578" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-245 -2085.14 414.878" + editor + { + "color" "217 230 0" + "groupid" "6103572" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6103583" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-243.131 -2084 416.587" + editor + { + "color" "217 230 0" + "groupid" "6103572" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6103586" + "classname" "prop_static" + "angles" "0 302 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-245 -2085.33 460.837" + editor + { + "color" "217 230 0" + "groupid" "6103572" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6103717" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-1368 -2081.14 401.913" + editor + { + "color" "217 230 0" + "groupid" "6103716" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6103722" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-1368 -2081.14 414.878" + editor + { + "color" "217 230 0" + "groupid" "6103716" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6103727" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-1366.13 -2080 416.587" + editor + { + "color" "217 230 0" + "groupid" "6103716" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6103730" + "classname" "prop_static" + "angles" "0 228.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1368 -2081.33 460.837" + editor + { + "color" "217 230 0" + "groupid" "6103716" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +hidden +{ + entity + { + "id" "6103752" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1368 -2081 461" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "6103783" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-1927 -2084.14 401.913" + editor + { + "color" "217 230 0" + "groupid" "6103782" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6103788" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" ".7" + "_inner_cone" "1" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-1927 -2084.14 414.878" + editor + { + "color" "217 230 0" + "groupid" "6103782" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6103793" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-1925.13 -2083 416.587" + editor + { + "color" "217 230 0" + "groupid" "6103782" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6103796" + "classname" "prop_static" + "angles" "0 163.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1927 -2085 460.837" + editor + { + "color" "217 230 0" + "groupid" "6103782" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6103837" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "232 224 198 6" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-2490 -2085.14 401.913" + editor + { + "color" "217 230 0" + "groupid" "6103836" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 8000]" + } +} +entity +{ + "id" "6103842" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_inner_cone" ".7" + "_light" "251 242 215 599" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "angles" "-90 90 0" + "pitch" "-90" + "style" "0" + "origin" "-2490 -2085.14 414.878" + editor + { + "color" "217 230 0" + "groupid" "6103836" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[5000 7500]" + } +} +entity +{ + "id" "6103847" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademaxdist" "900" + "fademindist" "800" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "32" + "HDRColorScale" "1.0" + "mincpulevel" "2" + "mingpulevel" "3" + "model" "sprites/glow01.vmt" + "renderamt" "175" + "rendercolor" "245 242 233" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "1" + "origin" "-2488.13 -2084 416.587" + editor + { + "color" "217 230 0" + "groupid" "6103836" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3000 -2768]" + } +} +hidden +{ + entity + { + "id" "6103850" + "classname" "prop_static" + "angles" "0 340 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1500" + "fademindist" "1400" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2490 -2085.33 460.837" + editor + { + "color" "217 230 0" + "groupid" "6103836" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-13268 -7768]" + } + } +} +entity +{ + "id" "6104510" + "classname" "func_detail" + solid + { + "id" "6104366" + side + { + "id" "371800" + "plane" "(-56 -2176 -24) (-64 -2184 -24) (-328 -2184 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 34] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371799" + "plane" "(-336 -2176 -32) (-328 -2184 -32) (-64 -2184 -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" "371798" + "plane" "(-328 -2184 -32) (-336 -2176 -32) (-336 -2176 -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" "371797" + "plane" "(-56 -2176 -32) (-64 -2184 -32) (-64 -2184 -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" "371796" + "plane" "(-336 -2176 -32) (-56 -2176 -32) (-56 -2176 -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" "371795" + "plane" "(-64 -2184 -32) (-328 -2184 -32) (-328 -2184 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 640] 0.125" + "vaxis" "[0 0 1 94.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6104370" + side + { + "id" "371806" + "plane" "(-64 -2184 -24) (-56 -2176 -24) (-56 -2240 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371805" + "plane" "(-64 -2232 -32) (-56 -2240 -32) (-56 -2176 -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" "371804" + "plane" "(-64 -2184 -32) (-64 -2184 -24) (-64 -2232 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 319.998] 0.125" + "vaxis" "[0 0 1 94.9959] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371803" + "plane" "(-56 -2240 -32) (-56 -2240 -24) (-56 -2176 -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" "371802" + "plane" "(-56 -2176 -32) (-56 -2176 -24) (-64 -2184 -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" "371801" + "plane" "(-64 -2232 -32) (-64 -2232 -24) (-56 -2240 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6104367" + side + { + "id" "371812" + "plane" "(-64 -2232 -24) (-56 -2240 -24) (-336 -2240 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371811" + "plane" "(-56 -2240 -32) (-64 -2232 -32) (-328 -2232 -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" "371810" + "plane" "(-336 -2240 -24) (-336 -2240 -32) (-328 -2232 -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" "371809" + "plane" "(-56 -2240 -32) (-56 -2240 -24) (-64 -2232 -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" "371808" + "plane" "(-328 -2232 -24) (-328 -2232 -32) (-64 -2232 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 94.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371807" + "plane" "(-336 -2240 -32) (-336 -2240 -24) (-56 -2240 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6104372" + side + { + "id" "371818" + "plane" "(-336 -2176 -24) (-328 -2184 -24) (-328 -2232 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371817" + "plane" "(-336 -2240 -32) (-328 -2232 -32) (-328 -2184 -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" "371816" + "plane" "(-336 -2176 -32) (-336 -2176 -24) (-336 -2240 -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" "371815" + "plane" "(-328 -2232 -32) (-328 -2232 -24) (-328 -2184 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 1 94.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371814" + "plane" "(-328 -2184 -32) (-328 -2184 -24) (-336 -2176 -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" "371813" + "plane" "(-336 -2240 -32) (-336 -2240 -24) (-328 -2232 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6104491" + side + { + "id" "371824" + "plane" "(-328 -2184 -30) (-328 -2232 -30) (-64 -2232 -30)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[1 0 0 293.106] 0.094" + "vaxis" "[0 -1 0 -193.363] 0.094" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371823" + "plane" "(-328 -2232 -24) (-328 -2232 -30) (-328 -2184 -30)" + "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" "371822" + "plane" "(-64 -2184 -24) (-64 -2184 -30) (-64 -2232 -30)" + "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" "371821" + "plane" "(-328 -2184 -24) (-328 -2184 -30) (-64 -2184 -30)" + "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" "371820" + "plane" "(-64 -2232 -24) (-64 -2232 -30) (-328 -2232 -30)" + "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" "371819" + "plane" "(-328 -2232 -24) (-328 -2184 -24) (-64 -2184 -24)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[1 0 0 288] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "6104552" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "242 106 109 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-267.294 -2229 -47.7832" + editor + { + "color" "155 192 0" + "groupid" "6104551" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "6104557" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "-267 -2235.75 -47.7832" + editor + { + "color" "155 192 0" + "groupid" "6104551" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "6104560" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-267 -2240.75 -47.7832" + editor + { + "color" "155 192 0" + "groupid" "6104551" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6104678" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-335 -2219 -68" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6104705" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-78 -2219 -68" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6104786" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-80 -2182 -52" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6104809" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-48 -2182 -52" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6104856" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-48 -2192 -52" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6104860" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-80 -2192 -52" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6104864" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "243 18 40" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-48 -2201 -52" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6104868" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "243 18 40" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-80 -2201 -52" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6105053" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "2386 -4288.5 51" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6105054" + side + { + "id" "371842" + "plane" "(2048 -4289 54) (2048 -4288 54) (2560 -4288 54)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 111.008] 0.125" + "vaxis" "[0 -1 0 55.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371841" + "plane" "(2048 -4288 48) (2048 -4289 48) (2560 -4289 48)" + "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" "371840" + "plane" "(2048 -4289 48) (2048 -4288 48) (2048 -4288 54)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 111] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371839" + "plane" "(2560 -4288 48) (2560 -4289 48) (2560 -4289 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371838" + "plane" "(2048 -4288 48) (2560 -4288 48) (2560 -4288 54)" + "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" "371837" + "plane" "(2560 -4289 48) (2048 -4289 48) (2048 -4289 54)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 111.008] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +hidden +{ + entity + { + "id" "6105103" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1520 -5423 268" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6105131" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1520 -5076.35 268" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "6084955" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-882.9 -4898.84 -222" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "6084958" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-1495.07 -4396.55 -222" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "6084964" + "classname" "func_instance" + "angles" "-0 -71 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1682 -4879 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6084979" + "classname" "func_instance" + "angles" "-0 -117 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1672 -4827 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6084985" + "classname" "func_instance" + "angles" "-0 61.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "2106 -4921 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6084994" + "classname" "func_instance" + "angles" "-0 103.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "2112 -4810 279" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6085003" + "classname" "func_instance" + "angles" "-0 -1.50001 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "2021 -4938.6 280" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6085012" + "classname" "func_instance" + "angles" "-0 22 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1958 -4287.12 249" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6085021" + "classname" "func_instance" + "angles" "-0 15.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1796 -4286 249" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6085027" + "classname" "func_instance" + "angles" "-0 -17 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1731 -4287 249" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6085036" + "classname" "func_instance" + "angles" "-0 -17 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "1561 -4285 249" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "6085135" + "classname" "prop_static" + "angles" "0 92.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1529 -3696 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6085155" + "classname" "prop_static" + "angles" "0 272 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1528 -3774 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6085171" + "classname" "prop_static" + "angles" "0 272 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1528 -3813 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6085179" + "classname" "prop_static" + "angles" "0 92.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1837 -3972 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6085213" + "classname" "prop_static" + "angles" "0 92.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1836 -4009 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6068180" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2475 -5988 33.2089" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6068185" + "classname" "prop_static" + "angles" "0 30.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1805.36 -5952.9 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6068189" + "classname" "prop_static" + "angles" "0 120.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1806.73 -5952.54 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6068193" + "classname" "prop_static" + "angles" "0 120.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1866.62 -5850.87 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6068197" + "classname" "prop_static" + "angles" "0 30.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1924.27 -6022.94 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6068201" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1900 -5931 32.4988" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6068280" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_twin_spot_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-696 -3040 191.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -5268]" + } + } +} +entity +{ + "id" "6051306" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1252 -5438 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "5427060" + side + { + "id" "371602" + "plane" "(1201 -5503 6) (1304 -5503 6) (1304 -5504 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -176.996] 0.125" + "vaxis" "[0 1 0 54.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371601" + "plane" "(1201 -5504 0) (1304 -5504 0) (1304 -5503 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" "371600" + "plane" "(1201 -5503 6) (1201 -5504 6) (1201 -5504 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" "371599" + "plane" "(1304 -5503 0) (1304 -5504 0) (1304 -5504 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371598" + "plane" "(1304 -5503 6) (1201 -5503 6) (1201 -5503 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -176.996] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371597" + "plane" "(1304 -5504 0) (1201 -5504 0) (1201 -5504 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5427057" + side + { + "id" "371608" + "plane" "(1200 -5372 6) (1201 -5372 6) (1201 -5504 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191] 0.125" + "vaxis" "[1 0 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371607" + "plane" "(1200 -5504 0) (1201 -5504 0) (1201 -5372 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" "371606" + "plane" "(1200 -5372 6) (1200 -5504 6) (1200 -5504 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" "371605" + "plane" "(1201 -5372 0) (1201 -5504 0) (1201 -5504 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371604" + "plane" "(1201 -5372 6) (1200 -5372 6) (1200 -5372 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -152.996] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371603" + "plane" "(1201 -5504 0) (1200 -5504 0) (1200 -5504 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "6051320" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1480.5 -5503.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6051315" + side + { + "id" "371620" + "plane" "(1433 -5503 6) (1528 -5503 6) (1528 -5504 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -177] 0.125" + "vaxis" "[0 1 0 54.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371619" + "plane" "(1433 -5504 0) (1528 -5504 0) (1528 -5503 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" "371618" + "plane" "(1433 -5503 6) (1433 -5504 6) (1433 -5504 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 14.9922] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371617" + "plane" "(1528 -5503 0) (1528 -5504 0) (1528 -5504 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371616" + "plane" "(1528 -5503 6) (1433 -5503 6) (1433 -5503 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -177] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371615" + "plane" "(1528 -5504 0) (1433 -5504 0) (1433 -5504 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "6051346" + "classname" "prop_static" + "angles" "0 222.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2080.74 -5258 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051354" + "classname" "prop_static" + "angles" "0 311 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2065.22 -4737.61 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051362" + "classname" "prop_static" + "angles" "0 308 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1926 -3619 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051378" + "classname" "prop_static" + "angles" "0 40 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1199 -3941 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051390" + "classname" "prop_static" + "angles" "0 298.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1163 -4983 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051414" + "classname" "prop_static" + "angles" "0 317 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1571 -4560 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051426" + "classname" "prop_static" + "angles" "0 315 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-652 -5634 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051446" + "classname" "prop_static" + "angles" "0 206 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "695 -965 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051458" + "classname" "prop_static" + "angles" "0 269 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1440 -959 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051474" + "classname" "prop_static" + "angles" "0 281.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2286 -964 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051514" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/shuttle_sign.mdl" + "renderamt" "255" + "rendercolor" "159 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1314 -3204 150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6051581" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/shuttle_sign.mdl" + "renderamt" "255" + "rendercolor" "159 96 96" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1578 -3456 150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +entity +{ + "id" "6051635" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1232.5 -4936 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6051633" + side + { + "id" "371632" + "plane" "(1232 -4752 6) (1233 -4752 6) (1233 -5120 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191] 0.125" + "vaxis" "[1 0 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371631" + "plane" "(1232 -5120 0) (1233 -5120 0) (1233 -4752 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" "371630" + "plane" "(1232 -4752 6) (1232 -5120 6) (1232 -5120 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" "371629" + "plane" "(1233 -4752 0) (1233 -5120 0) (1233 -5120 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371628" + "plane" "(1233 -4752 6) (1232 -4752 6) (1232 -4752 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" "371627" + "plane" "(1233 -5120 0) (1232 -5120 0) (1232 -5120 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "6051649" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1216.5 -5120.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6051644" + side + { + "id" "371644" + "plane" "(1200 -5120 6) (1233 -5120 6) (1233 -5121 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -208.988] 0.125" + "vaxis" "[0 -1 0 -8.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371643" + "plane" "(1200 -5121 0) (1233 -5121 0) (1233 -5120 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" "371642" + "plane" "(1200 -5120 6) (1200 -5121 6) (1200 -5121 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" "371641" + "plane" "(1233 -5120 0) (1233 -5121 0) (1233 -5121 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371640" + "plane" "(1233 -5120 6) (1200 -5120 6) (1200 -5120 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" "371639" + "plane" "(1233 -5121 0) (1200 -5121 0) (1200 -5121 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -208.988] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "6051662" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1200.5 -5122.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6051656" + side + { + "id" "371656" + "plane" "(1200 -5121 6) (1201 -5121 6) (1201 -5124 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191.004] 0.125" + "vaxis" "[1 0 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371655" + "plane" "(1200 -5124 0) (1201 -5124 0) (1201 -5121 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" "371654" + "plane" "(1200 -5121 6) (1200 -5124 6) (1200 -5124 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" "371653" + "plane" "(1201 -5121 0) (1201 -5124 0) (1201 -5124 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191.004] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371652" + "plane" "(1201 -5121 6) (1200 -5121 6) (1200 -5121 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" "371651" + "plane" "(1201 -5124 0) (1200 -5124 0) (1200 -5124 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -208.988] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "6051675" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1136.5 -4751.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6051669" + side + { + "id" "371668" + "plane" "(1040 -4751 6) (1233 -4751 6) (1233 -4752 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -48.9941] 0.125" + "vaxis" "[0 1 0 54.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371667" + "plane" "(1040 -4752 0) (1233 -4752 0) (1233 -4751 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" "371666" + "plane" "(1040 -4751 6) (1040 -4752 6) (1040 -4752 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" "371665" + "plane" "(1233 -4751 0) (1233 -4752 0) (1233 -4752 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371664" + "plane" "(1233 -4751 6) (1040 -4751 6) (1040 -4751 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -48.9941] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371663" + "plane" "(1233 -4752 0) (1040 -4752 0) (1040 -4752 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "6051688" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1040.5 -4616 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6051682" + side + { + "id" "371680" + "plane" "(1040 -4481 6) (1041 -4481 6) (1041 -4751 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191.004] 0.125" + "vaxis" "[1 0 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371679" + "plane" "(1040 -4751 0) (1041 -4751 0) (1041 -4481 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" "371678" + "plane" "(1040 -4481 6) (1040 -4751 6) (1040 -4751 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" "371677" + "plane" "(1041 -4481 0) (1041 -4751 0) (1041 -4751 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191.004] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371676" + "plane" "(1041 -4481 6) (1040 -4481 6) (1040 -4481 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -192.99] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371675" + "plane" "(1041 -4751 0) (1040 -4751 0) (1040 -4751 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "6051705" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1040.5 -4311.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6051697" + side + { + "id" "371692" + "plane" "(1040 -4272 6) (1041 -4272 6) (1041 -4351 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191] 0.125" + "vaxis" "[1 0 0 -8.99805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371691" + "plane" "(1040 -4351 0) (1041 -4351 0) (1041 -4272 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" "371690" + "plane" "(1040 -4272 6) (1040 -4351 6) (1040 -4351 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" "371689" + "plane" "(1041 -4272 0) (1041 -4351 0) (1041 -4351 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 191] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371688" + "plane" "(1041 -4272 6) (1040 -4272 6) (1040 -4272 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" "371687" + "plane" "(1041 -4351 0) (1040 -4351 0) (1040 -4351 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -192.992] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "6051719" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1252.5 -4272.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6051712" + side + { + "id" "371704" + "plane" "(1041 -4272 6) (1464 -4272 6) (1464 -4273 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -80.9921] 0.125" + "vaxis" "[0 -1 0 -8.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371703" + "plane" "(1041 -4273 0) (1464 -4273 0) (1464 -4272 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" "371702" + "plane" "(1041 -4272 6) (1041 -4273 6) (1041 -4273 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" "371701" + "plane" "(1464 -4272 0) (1464 -4273 0) (1464 -4273 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371700" + "plane" "(1464 -4272 6) (1041 -4272 6) (1041 -4272 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" "371699" + "plane" "(1464 -4273 0) (1041 -4273 0) (1041 -4273 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -80.9922] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "6051737" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1508 -4272.5 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "6051732" + side + { + "id" "371716" + "plane" "(1552 -4216 6) (1552 -4217 6) (1464 -4273 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.711764 0.452941 0.536875 64.3848] 0.125" + "vaxis" "[0.536875 -0.843661 0 -56.6055] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371715" + "plane" "(1552 -4217 0) (1552 -4216 0) (1464 -4272 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371714" + "plane" "(1464 -4273 6) (1464 -4273 0) (1464 -4272 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371713" + "plane" "(1552 -4217 0) (1552 -4217 6) (1552 -4216 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 247.004] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371712" + "plane" "(1464 -4272 6) (1464 -4272 0) (1552 -4216 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" "371711" + "plane" "(1464 -4273 0) (1464 -4273 6) (1552 -4217 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -80.9922] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +hidden +{ + entity + { + "id" "6034531" + "classname" "prop_static" + "angles" "0 30.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-602.265 -5357.94 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6034573" + "classname" "prop_static" + "angles" "0 30.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-483.36 -5287.9 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6034577" + "classname" "prop_static" + "angles" "0 120.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-484.729 -5287.54 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6034605" + "classname" "prop_static" + "angles" "0 120.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-544.619 -5185.87 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6034682" + "classname" "prop_static" + "angles" "0 120.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2013.62 -5614.87 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6034686" + "classname" "prop_static" + "angles" "0 30.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1952.36 -5716.9 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6034691" + "classname" "prop_static" + "angles" "0 30.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2071.27 -5786.94 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6034695" + "classname" "prop_static" + "angles" "0 120.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1953.73 -5716.54 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6034699" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2047 -5695 32.4988" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "6034898" + "classname" "func_detail" + solid + { + "id" "6034831" + side + { + "id" "371578" + "plane" "(-1845 -3352 -16) (-1845 -3584 -16) (-1829 -3584 -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" "371577" + "plane" "(-1845 -3584 -16) (-1845 -3352 -16) (-1845 -3352 34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371576" + "plane" "(-1829 -3352 -16) (-1829 -3584 -16) (-1829 -3584 34)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371575" + "plane" "(-1845 -3352 -16) (-1829 -3352 -16) (-1829 -3352 34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371574" + "plane" "(-1829 -3584 -16) (-1845 -3584 -16) (-1845 -3584 34)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -775.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371573" + "plane" "(-1845 -3584 34) (-1845 -3352 34) (-1829 -3352 34)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6034830" + side + { + "id" "371584" + "plane" "(-1845 -3586 50) (-1845 -3352 50) (-1826 -3352 50)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 13.998] 0.125" + "vaxis" "[0 -1 0 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371583" + "plane" "(-1845 -3352 34) (-1845 -3352 50) (-1845 -3586 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371582" + "plane" "(-1826 -3586 34) (-1826 -3586 50) (-1826 -3352 50)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -882] 0.125" + "vaxis" "[0 -1 0 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371581" + "plane" "(-1826 -3352 34) (-1826 -3352 50) (-1845 -3352 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371580" + "plane" "(-1845 -3586 34) (-1845 -3586 50) (-1826 -3586 50)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -882] 0.125" + "vaxis" "[-1 0 0 422.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371579" + "plane" "(-1845 -3352 34) (-1845 -3586 34) (-1826 -3586 34)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6034840" + side + { + "id" "371590" + "plane" "(-1952 -3568 -16) (-1952 -3584 -16) (-1845 -3584 -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" "371589" + "plane" "(-1952 -3584 -16) (-1952 -3568 -16) (-1952 -3568 34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371588" + "plane" "(-1845 -3568 -16) (-1845 -3584 -16) (-1845 -3584 34)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371587" + "plane" "(-1952 -3568 -16) (-1845 -3568 -16) (-1845 -3568 34)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -191.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371586" + "plane" "(-1845 -3584 -16) (-1952 -3584 -16) (-1952 -3584 34)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -775.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371585" + "plane" "(-1952 -3584 34) (-1952 -3568 34) (-1845 -3568 34)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6034841" + side + { + "id" "371596" + "plane" "(-1952 -3586 50) (-1952 -3568 50) (-1845 -3568 50)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -1 0 -273.998] 0.125" + "vaxis" "[-1 0 0 422.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371595" + "plane" "(-1952 -3568 34) (-1952 -3568 50) (-1952 -3586 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371594" + "plane" "(-1845 -3586 34) (-1845 -3586 50) (-1845 -3568 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371593" + "plane" "(-1845 -3568 34) (-1845 -3568 50) (-1952 -3568 50)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -882] 0.125" + "vaxis" "[-1 0 0 422.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371592" + "plane" "(-1952 -3586 34) (-1952 -3586 50) (-1845 -3586 50)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -882] 0.125" + "vaxis" "[-1 0 0 422.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371591" + "plane" "(-1952 -3568 34) (-1952 -3586 34) (-1845 -3586 34)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "6034909" + "classname" "prop_static" + "angles" "0 11.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1892 -3512 7.98291" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6034913" + "classname" "prop_static" + "angles" "0 207.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1908 -3468 7.98291" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6017213" + "classname" "prop_static" + "angles" "0 45 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/jupiter_c.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1.2" + "origin" "-1422 -4192.96 32" + editor + { + "color" "240 213 0" + "groupid" "6017212" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017217" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/mercury_atlas_stand.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1420 -4193 33" + editor + { + "color" "240 213 0" + "groupid" "6017212" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017483" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1484 -3735 28.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6017492" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1396 -3653 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "6017566" + "classname" "prop_static" + "angles" "0 99 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1155.89 -5018.69 30.25" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6017597" + "classname" "prop_static" + "angles" "0 99 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1137.43 -5135.24 30.25" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6017657" + "classname" "prop_static" + "angles" "0 9 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1136.28 -5136.07 30.25" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6017701" + "classname" "prop_static" + "angles" "0 59 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/trash_b/hr_food_pile.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1205 -4979 32.0203" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6017717" + "classname" "prop_static" + "angles" "0 9 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1651.86 -5217.73 30.25" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6017796" + "classname" "prop_static" + "angles" "0 207.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1289.62 -5088.47 30" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017812" + "classname" "prop_static" + "angles" "0 224 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1217.36 -5078.04 30" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017824" + "classname" "prop_static" + "angles" "0 224 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1356.83 -5105.19 30" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017828" + "classname" "prop_static" + "angles" "0 264.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1419.16 -5107.98 30" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017840" + "classname" "prop_static" + "angles" "0 199 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1482.32 -5111.91 30" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017852" + "classname" "prop_static" + "angles" "0 199 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1606.5 -5158.91 30" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017860" + "classname" "prop_static" + "angles" "0 199 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1555.78 -5127.59 30" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017868" + "classname" "prop_static" + "angles" "0 224 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1396.95 -5126.74 30" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6017872" + "classname" "prop_static" + "angles" "0 39.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1512.04 -5148 30" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "6018106" + "classname" "prop_static" + "angles" "0 107 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/table_cafeteria.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-794.683 -5086.95 34.2874" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6018110" + "classname" "prop_static" + "angles" "0 103.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-752.073 -5072.37 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6018114" + "classname" "prop_static" + "angles" "0 20.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-781.073 -5127.37 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6018118" + "classname" "prop_static" + "angles" "0 208 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-800.333 -5052.8 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6018122" + "classname" "prop_static" + "angles" "0 307.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-840.073 -5100.37 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "6018146" + "classname" "prop_static" + "angles" "0 322 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-264 -5456 32.2389" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -2768]" + } + } +} +hidden +{ + entity + { + "id" "6000503" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2171 -3974 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6000511" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2299 -3974 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6000804" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2298.49 -4869.07 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6000808" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2299 -5028 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "6000816" + "classname" "prop_static" + "angles" "0 45 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/mercury3.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1970.55 -4369 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "6000820" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/mercury_atlas_stand.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1969 -4369.04 33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "6000848" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/mercury_atlas.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1849 -4988 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "6000852" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/mercury_atlas_stand.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1852 -4990 33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +entity +{ + "id" "5967063" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "847.5 -5808 88.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "5967013" + side + { + "id" "371332" + "plane" "(847 -5840 128) (848 -5840 128) (848 -5844 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" "371331" + "plane" "(847 -5844 48) (848 -5844 48) (848 -5840 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" "371330" + "plane" "(847 -5840 128) (847 -5844 128) (847 -5844 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371329" + "plane" "(848 -5840 48) (848 -5844 48) (848 -5844 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" "371328" + "plane" "(848 -5840 128) (847 -5840 128) (847 -5840 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00233838] 0.125" + "vaxis" "[1 0 0 -247.988] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371327" + "plane" "(848 -5844 48) (847 -5844 48) (847 -5844 128)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00174741] 0.125" + "vaxis" "[-1 0 0 -39.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5967058" + side + { + "id" "371338" + "plane" "(847 -5844 48) (847 -5772 48) (848 -5772 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371337" + "plane" "(847 -5772 45) (847 -5772 48) (847 -5844 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371336" + "plane" "(848 -5772 44) (848 -5844 44) (848 -5844 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371335" + "plane" "(848 -5772 44) (848 -5772 48) (847 -5772 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371334" + "plane" "(848 -5844 44) (847 -5844 45) (847 -5844 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371333" + "plane" "(848 -5844 44) (848 -5772 44) (847 -5772 45)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5967006" + side + { + "id" "371344" + "plane" "(847 -5772 128) (848 -5772 128) (848 -5776 128)" + "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" "371343" + "plane" "(847 -5776 48) (848 -5776 48) (848 -5772 48)" + "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" "371342" + "plane" "(847 -5772 128) (847 -5776 128) (847 -5776 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371341" + "plane" "(848 -5772 48) (848 -5776 48) (848 -5776 128)" + "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" "371340" + "plane" "(848 -5772 128) (847 -5772 128) (847 -5772 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00233838] 0.125" + "vaxis" "[1 0 0 -247.988] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371339" + "plane" "(848 -5776 48) (847 -5776 48) (847 -5776 128)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00174741] 0.125" + "vaxis" "[-1 0 0 -39.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5967018" + side + { + "id" "371350" + "plane" "(847 -5772 128) (847 -5844 128) (848 -5844 128)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371349" + "plane" "(847 -5844 128) (847 -5772 128) (847 -5772 132)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 1 18] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371348" + "plane" "(848 -5772 128) (848 -5844 128) (848 -5844 133)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371347" + "plane" "(847 -5772 128) (848 -5772 128) (848 -5772 133)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[-1 0 0 727.988] 0.125" + "vaxis" "[0 0 1 18.0023] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371346" + "plane" "(848 -5844 128) (847 -5844 128) (847 -5844 132)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 39.9961] 0.125" + "vaxis" "[0 0 1 18.0017] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371345" + "plane" "(847 -5844 132) (847 -5772 132) (848 -5772 133)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0.707107 0 0.707107 -112.061] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5967082" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "576.5 -5808 88.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "5967083" + side + { + "id" "371380" + "plane" "(577 -5776 128) (576 -5776 128) (576 -5772 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371379" + "plane" "(577 -5772 48) (576 -5772 48) (576 -5776 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371378" + "plane" "(577 -5776 128) (577 -5772 128) (577 -5772 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371377" + "plane" "(576 -5776 48) (576 -5772 48) (576 -5772 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" "371376" + "plane" "(576 -5776 128) (577 -5776 128) (577 -5776 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00233459] 0.125" + "vaxis" "[-1 0 0 136.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371375" + "plane" "(576 -5772 48) (577 -5772 48) (577 -5772 128)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00174713] 0.125" + "vaxis" "[1 0 0 -167.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5967084" + side + { + "id" "371386" + "plane" "(577 -5772 48) (577 -5844 48) (576 -5844 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[1 0 0 -196] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371385" + "plane" "(577 -5844 45) (577 -5844 48) (577 -5772 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371384" + "plane" "(576 -5844 44) (576 -5772 44) (576 -5772 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371383" + "plane" "(576 -5844 44) (576 -5844 48) (577 -5844 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[-1 0 0 575.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371382" + "plane" "(576 -5772 44) (577 -5772 45) (577 -5772 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[-1 0 0 575.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371381" + "plane" "(576 -5772 44) (576 -5844 44) (577 -5844 45)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[-0.707107 0 -0.707107 43.2817] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5967085" + side + { + "id" "371392" + "plane" "(577 -5844 128) (576 -5844 128) (576 -5840 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371391" + "plane" "(577 -5840 48) (576 -5840 48) (576 -5844 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371390" + "plane" "(577 -5844 128) (577 -5840 128) (577 -5840 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371389" + "plane" "(576 -5844 48) (576 -5840 48) (576 -5840 128)" + "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" "371388" + "plane" "(576 -5844 128) (577 -5844 128) (577 -5844 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00233459] 0.125" + "vaxis" "[-1 0 0 136.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371387" + "plane" "(576 -5840 48) (577 -5840 48) (577 -5840 128)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00174713] 0.125" + "vaxis" "[1 0 0 -167.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5967086" + side + { + "id" "371398" + "plane" "(577 -5844 128) (577 -5772 128) (576 -5772 128)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 768] 0.125" + "vaxis" "[1 0 0 -246] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371397" + "plane" "(577 -5772 128) (577 -5844 128) (577 -5844 132)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 768] 0.125" + "vaxis" "[0 0 1 18] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371396" + "plane" "(576 -5844 128) (576 -5772 128) (576 -5772 133)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 -1 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371395" + "plane" "(577 -5844 128) (576 -5844 128) (576 -5844 133)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -424.008] 0.125" + "vaxis" "[0 0 1 18.0023] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371394" + "plane" "(576 -5772 128) (577 -5772 128) (577 -5772 132)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[-1 0 0 167.992] 0.125" + "vaxis" "[0 0 1 18.0017] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371393" + "plane" "(577 -5772 132) (577 -5844 132) (576 -5844 133)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 768] 0.125" + "vaxis" "[-0.707107 0 0.707107 7.29729] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "5933776" + "classname" "prop_static" + "angles" "0 278 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1084 -3861 32.8484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5933930" + "classname" "prop_dynamic" + "angles" "0 270 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_vertigo/trafficcone_clean.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-1074.3 -4131.78 47.1164" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "5933954" + "classname" "prop_static" + "angles" "0 8 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1663.55 -5328.61 62" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "5933958" + "classname" "prop_static" + "angles" "0 8 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1726.93 -5319.7 62" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "5934002" + "classname" "prop_static" + "angles" "0 8 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1790.24 -5310.91 62" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "5934006" + "classname" "prop_static" + "angles" "0 8 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1853.62 -5302 62" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "5934067" + "classname" "prop_static" + "angles" "0 8 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1600 -5337.6 62" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "5934087" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1917 -5293 62" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "5916467" + "classname" "prop_dynamic" + "angles" "0 271 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase1_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1856 -5473 48.3729" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5916497" + "classname" "prop_dynamic" + "angles" "0 271 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase1_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "2138 -5466 48.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5916549" + "classname" "prop_dynamic" + "angles" "0 98 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1737 -5277 0.249998" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5916587" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1784 -4567 0.250008" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5916888" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1087 -3434 -8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +entity +{ + "id" "5916941" + "classname" "func_detail" + solid + { + "id" "5916935" + side + { + "id" "371152" + "plane" "(-1086 -3956 99) (-1069 -3956 99) (-1069 -3972 99)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.987689 0.156435 0 -2] 0.125" + "vaxis" "[0.156435 -0.987689 0 680] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371151" + "plane" "(-1086 -3972 8.17842) (-1069 -3972 8.17842) (-1069 -3956 8.17842)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371150" + "plane" "(-1086 -3956 99) (-1086 -3972 99) (-1086 -3972 8.17842)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371149" + "plane" "(-1069 -3956 8.17842) (-1069 -3972 8.17842) (-1069 -3972 99)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -18.101] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371148" + "plane" "(-1069 -3956 99) (-1086 -3956 99) (-1086 -3956 8.17842)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -293.43] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371147" + "plane" "(-1069 -3972 8.17842) (-1086 -3972 8.17842) (-1086 -3972 99)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -714.098] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "5916946" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-418 -5339 68" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "5899804" + "classname" "prop_dynamic" + "angles" "0 270 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_vertigo/trafficcone_clean.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-1036.22 -4067.61 46.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "5899831" + "classname" "prop_dynamic" + "angles" "0 270 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_vertigo/trafficcone_clean.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-213.615 -3316.84 15.1164" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "5899835" + "classname" "prop_dynamic" + "angles" "0 270 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_vertigo/trafficcone_clean.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-289.006 -3271.73 15.1164" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "5899851" + "classname" "prop_dynamic" + "angles" "0 270 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_vertigo/trafficcone_clean.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1490.17 -2373.3 -24.8836" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "5899855" + "classname" "prop_dynamic" + "angles" "0 270 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_vertigo/trafficcone_clean.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1518.4 -2255.17 -24.8836" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "5899859" + "classname" "prop_dynamic" + "angles" "0 270 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_vertigo/trafficcone_clean.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1490.41 -2308.36 -24.8836" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "5899867" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1041 -4978 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5899875" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1040 -4914 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5899879" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "127 -5270 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5899895" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "68 -5271 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5899911" + "classname" "prop_static" + "angles" "0 92 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "533 -2768 -44" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5899927" + "classname" "prop_static" + "angles" "0 272 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "515 -2786 -44" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5899939" + "classname" "prop_static" + "angles" "0 92 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "531 -2837 -44" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5899943" + "classname" "prop_static" + "angles" "0 272 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "520 -2856 -44" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "5900025" + "classname" "func_detail" + solid + { + "id" "5900022" + side + { + "id" "371140" + "plane" "(-514 -4780 -77) (-512 -4780 -77) (-512 -4812 -77)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371139" + "plane" "(-514 -4812 -165) (-512 -4812 -165) (-512 -4780 -165)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371138" + "plane" "(-514 -4780 -77) (-514 -4812 -77) (-514 -4812 -165)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371137" + "plane" "(-512 -4780 -165) (-512 -4812 -165) (-512 -4812 -77)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371136" + "plane" "(-512 -4780 -77) (-514 -4780 -77) (-514 -4780 -165)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371135" + "plane" "(-512 -4812 -165) (-514 -4812 -165) (-514 -4812 -77)" + "material" "DEV/REFLECTIVITY_70B" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "5883305" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1286 -3424 16.0168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5883336" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1219 -3424 16.0168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5883344" + "classname" "prop_static" + "angles" "0 287 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1103 -2669 -39.1516" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5883360" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1313 -2568 -39.1516" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5883376" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1086 -3711 32.8484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5883384" + "classname" "prop_static" + "angles" "0 92 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1086 -3646 32.8484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5883388" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1088 -3819 32.8484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5883434" + "classname" "prop_static" + "angles" "0 284.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-238 -5278 0.848438" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5866241" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "493 -2280 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "5866261" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "493 -2812 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "5866274" + "classname" "prop_static" + "angles" "0 200.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1386 -7113.17 -31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5866282" + "classname" "prop_static" + "angles" "0 200.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2176 -7662 -31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5866290" + "classname" "prop_static" + "angles" "0 200.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1376 -8609 -31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5866294" + "classname" "prop_static" + "angles" "0 200.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1803 -6452.13 -31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5866302" + "classname" "prop_static" + "angles" "0 200.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1425 -6190.01 -30" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "5849708" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1600 -7344 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1600 -7344 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849714" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1602 -7465 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1602 -7465 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849720" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1605 -7600 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1605 -7600 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849726" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1604 -7735 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1604 -7735 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849732" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1608 -7863 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1608 -7863 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849738" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1590 -8242 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1590 -8242 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849744" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1596 -8123 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1596 -8123 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849750" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1600 -7984 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1600 -7984 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849768" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1968 -7344 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1968 -7344 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849774" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1970 -7465 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1970 -7465 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849780" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1973 -7600 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1973 -7600 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849786" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1972 -7735 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1972 -7735 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849792" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1976 -7863 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1976 -7863 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849798" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "2552 -7352 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "2552 -7352 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849804" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "2554 -7473 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "2554 -7473 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849810" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "2557 -7608 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "2557 -7608 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849816" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "2556 -7743 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "2556 -7743 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5849822" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "2560 -7871 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "2560 -7871 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "5799537" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "545 -9072 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5799595" + "classname" "prop_static" + "angles" "0 112.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "741.665 -7640.43 -31.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5799599" + "classname" "prop_static" + "angles" "0 62 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "644.605 -9085.19 -31.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5799611" + "classname" "prop_static" + "angles" "0 62 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "644 -9051 -31.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5799615" + "classname" "prop_static" + "angles" "0 112.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2083.02 -9527.78 -31.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5799619" + "classname" "prop_static" + "angles" "0 112.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1794.23 -6033.44 -31.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5799623" + "classname" "prop_static" + "angles" "0 112.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2636 -6314 -31.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5783120" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/security_barrier/security_barrier_base.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "4316 -9498 -23.75" + editor + { + "color" "146 115 0" + "groupid" "5783119" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "5783124" + "classname" "func_detail" + solid + { + "id" "5783125" + side + { + "id" "370918" + "plane" "(4331 -9324 26.25) (4331 -9506 26.25) (4332 -9506 26.25)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 -149.004] 0.05" + "vaxis" "[-1 0 0 113.037] 0.047" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "370917" + "plane" "(4332 -9324 32.2496) (4332 -9324 26.2496) (4332 -9506 26.2496)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 -149.004] 0.05" + "vaxis" "[0 0 -1 46.3945] 0.047" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "370916" + "plane" "(4331 -9506 32.2496) (4331 -9506 26.2496) (4331 -9324 26.2496)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 -149.004] 0.05" + "vaxis" "[0 0 1 -44.3945] 0.047" + "rotation" "180" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "370915" + "plane" "(4332 -9506 32.2496) (4332 -9506 26.2496) (4331 -9506 26.2496)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[-1 0 0 160] 0.25" + "vaxis" "[0 0 -1 56.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370914" + "plane" "(4331 -9324 32.2496) (4331 -9324 26.2496) (4332 -9324 26.2496)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[-1 0 0 348] 0.5" + "vaxis" "[0 0 -1 124.499] 0.5" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "370913" + "plane" "(4331 -9506 32.25) (4331 -9324 32.25) (4332 -9324 32.25)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 -149.004] 0.05" + "vaxis" "[1 0 0 -13.0369] 0.047" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "146 115 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "146 115 0" + "groupid" "5783119" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5783126" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/security_barrier/security_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "4332 -9330 -23.75" + editor + { + "color" "146 115 0" + "groupid" "5783119" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "5783130" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/security_barrier/security_barrier_boom.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "4330 -9498 29" + editor + { + "color" "146 115 0" + "groupid" "5783118" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "5783168" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/security_barrier/security_barrier_base.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "4326 -8895 -23.75" + editor + { + "color" "146 115 0" + "groupid" "5783167" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "5783172" + "classname" "func_detail" + solid + { + "id" "5783173" + side + { + "id" "370930" + "plane" "(4311 -9069 26.25) (4311 -8887 26.25) (4310 -8887 26.25)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -393] 0.05" + "vaxis" "[1 0 0 48.7148] 0.047" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "370929" + "plane" "(4310 -9069 32.2496) (4310 -9069 26.2496) (4310 -8887 26.2496)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -393] 0.05" + "vaxis" "[0 0 -1 46.3945] 0.047" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "370928" + "plane" "(4311 -8887 32.2496) (4311 -8887 26.2496) (4311 -9069 26.2496)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -393] 0.05" + "vaxis" "[0 0 1 -44.3945] 0.047" + "rotation" "180" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "370927" + "plane" "(4310 -8887 32.2496) (4310 -8887 26.2496) (4311 -8887 26.2496)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[1 0 0 -103.996] 0.25" + "vaxis" "[0 0 -1 56.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370926" + "plane" "(4311 -9069 32.2496) (4311 -9069 26.2496) (4310 -9069 26.2496)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[1 0 0 -39.998] 0.5" + "vaxis" "[0 0 -1 124.499] 0.5" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "370925" + "plane" "(4311 -8887 32.25) (4311 -9069 32.25) (4310 -9069 32.25)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -393] 0.05" + "vaxis" "[-1 0 0 51.2852] 0.047" + "rotation" "270" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "146 115 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "146 115 0" + "groupid" "5783167" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5783174" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/security_barrier/security_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "4310 -9063 -23.75" + editor + { + "color" "146 115 0" + "groupid" "5783167" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "5783178" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/security_barrier/security_barrier_boom.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "4312 -8895 29" + editor + { + "color" "146 115 0" + "groupid" "5783166" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "5783243" + "classname" "func_detail" + solid + { + "id" "5783239" + side + { + "id" "370948" + "plane" "(-928 -9248 24) (-928 -9232 24) (-464 -9232 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370947" + "plane" "(-928 -9232 -48) (-928 -9248 -48) (-464 -9248 -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" "370946" + "plane" "(-928 -9248 -48) (-928 -9232 -48) (-928 -9232 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" "370945" + "plane" "(-464 -9232 -48) (-464 -9248 -48) (-464 -9248 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" "370944" + "plane" "(-928 -9232 -48) (-464 -9232 -48) (-464 -9232 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -663.984] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370943" + "plane" "(-464 -9248 -48) (-928 -9248 -48) (-928 -9248 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "5766322" + "classname" "func_detail" + solid + { + "id" "5699840" + side + { + "id" "370750" + "plane" "(-928 -9616 -16) (-928 -9600 -16) (4344 -9600 -16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 630] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370749" + "plane" "(-928 -9600 -48) (-928 -9616 -48) (4344 -9616 -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" "370748" + "plane" "(-928 -9616 -48) (-928 -9600 -48) (-928 -9600 -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" "370747" + "plane" "(4344 -9600 -48) (4344 -9616 -48) (4344 -9616 -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" "370746" + "plane" "(-928 -9600 -48) (4344 -9600 -48) (4344 -9600 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -535.984] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370745" + "plane" "(4344 -9616 -48) (-928 -9616 -48) (-928 -9616 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "5766329" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2647 -9330 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766340" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2894 -9596 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766379" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2666 -7005 -31.7501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766445" + "classname" "prop_static" + "angles" "0 0.500004 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3064 -6982 -46.7911" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5766518" + "classname" "prop_static" + "angles" "0 9 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_station_wagon01.mdl" + "renderamt" "255" + "rendercolor" "152 183 151" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3492 -7793 -34.753" + editor + { + "color" "255 108 0" + "groupid" "5766517" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "5766522" + "classname" "prop_static" + "angles" "0 175 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "205 205 205" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3510 -7417 -34.753" + editor + { + "color" "255 108 0" + "groupid" "5766517" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "5766526" + "classname" "prop_static" + "angles" "0 5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "18 28 4" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3857 -7524 -34.753" + editor + { + "color" "255 108 0" + "groupid" "5766517" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "5766533" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3675 -7488 -32.753" + editor + { + "color" "255 108 0" + "groupid" "5766532" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766537" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3692 -7268 -24.565" + editor + { + "color" "255 108 0" + "groupid" "5766532" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766541" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3980.78 -8879 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766545" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3980.78 -8831 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766549" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3980.78 -8871 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766553" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "4004.78 -8847 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766557" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3996.78 -8847 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766561" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3975 -8850 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766565" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -8871 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766569" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -8823 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766573" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3724 -8374 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766577" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3700 -8902 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766581" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3699 -8910 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766585" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3619 -8886 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766589" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3619 -8376 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766593" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3338.22 -8855 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766597" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3330.22 -8855 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766601" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -8831 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766605" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3360 -8852 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766609" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -8320 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766613" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -8272 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766617" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3360 -8301 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766621" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3338.22 -8304 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766625" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3330.22 -8304 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766629" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -8280 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766633" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3724 -7862 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766637" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3619 -7864 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766641" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3980.78 -8328 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766645" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3980.78 -8280 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766649" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3980.78 -8320 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766653" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "4004.78 -8296 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766657" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3996.78 -8296 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766661" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3975 -8299 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766665" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -7932 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766669" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -7884 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766673" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -7892 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766677" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3330.22 -7916 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766681" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3338.22 -7916 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766685" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3360 -7913 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766689" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3980.78 -7893 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766693" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3980.78 -7941 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766697" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3671 -7809 -29.1459" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "5766701" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3675 -7964 -29.1423" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "5766705" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3673 -8131 -29.1459" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "5766709" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3673 -7586 -28.9701" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "5766713" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3675 -7488 -29.1459" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "5766717" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3996.78 -7909 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766721" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "4004.78 -7909 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766725" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3980.78 -7933 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766729" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3975 -7912 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766733" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -7313 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766737" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3338.22 -7297 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766741" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3330.22 -7297 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766745" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -7273 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766749" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3354.22 -7265 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766753" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3360 -7294 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766757" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3611 -7343 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766761" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3611 -7327 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766765" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3619 -7352 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766769" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3611 -7352 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766773" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3635 -7247 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766777" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3636 -7239 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766781" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3655 -7268 -24.565" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766785" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3716 -7263 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766789" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3716 -7325 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766793" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3981.78 -7272 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766797" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3981.78 -7320 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766801" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3997.78 -7288 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766805" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "4005.78 -7288 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766809" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3981.78 -7312 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766813" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3976 -7291 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5766817" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3716 -7333 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766821" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3724 -7350 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5766825" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3716 -7350 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5766505" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5748806" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1736 -7248 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5748810" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1817 -7264 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5748842" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1737 -7240 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5748873" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1817 -7326 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5748897" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1712 -7328 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5748909" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1817 -7351 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5748948" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1817 -7334 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5748979" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1712 -7344 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5748991" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1712 -7353 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749003" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1756 -7269 -24.565" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5749035" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2097.78 -7910 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749039" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2081.78 -7894 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749044" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2081.78 -7942 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749048" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2081.78 -7934 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749052" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2105.78 -7910 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749056" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2076 -7913 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5749161" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2097.78 -8297 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749165" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2081.78 -8281 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749169" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2081.78 -8321 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749173" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2081.78 -8329 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749177" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2105.78 -8297 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749181" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2076 -8300 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5749289" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2476 -9233 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749314" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1720 -8887 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749318" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1800 -8911 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749322" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1801 -8903 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749376" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -8872 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749380" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1439.22 -8856 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749384" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1431.22 -8856 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749388" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -8832 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749392" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -8824 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749396" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1461 -8853 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5749401" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2081.78 -8880 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749405" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2081.78 -8832 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749409" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2081.78 -8872 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749413" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2105.78 -8848 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749417" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2097.78 -8848 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749421" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2076 -8851 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5749970" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3046.78 -8882 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749974" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3046.78 -8834 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749979" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3046.78 -8874 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749983" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3070.78 -8850 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749987" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3062.78 -8850 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5749991" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3041 -8853 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5749997" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -8874 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750001" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -8826 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750005" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2790 -8377 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750009" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2766 -8905 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750013" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2765 -8913 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750017" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2685 -8889 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750021" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2685 -8379 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750025" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2404.22 -8858 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750029" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2396.22 -8858 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750033" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -8834 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750037" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2426 -8855 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750041" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -8323 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750045" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -8275 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750049" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2426 -8304 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750053" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2404.22 -8307 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750057" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2396.22 -8307 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750061" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -8283 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750067" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2790 -7865 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750071" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2685 -7867 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750075" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3046.78 -8331 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750079" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3046.78 -8283 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750083" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3046.78 -8323 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750087" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3070.78 -8299 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750091" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3062.78 -8299 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750095" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3041 -8302 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750100" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -7935 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750104" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -7887 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750108" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -7895 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750112" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2396.22 -7919 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750116" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2404.22 -7919 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750120" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2426 -7916 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750124" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3046.78 -7896 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750129" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3046.78 -7944 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750133" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2737 -7812 -29.1459" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "5750137" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2741 -7967 -29.1423" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "5750141" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2739 -8134 -29.1459" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "5750145" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2739 -7589 -28.9701" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "5750149" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2741 -7491 -29.1459" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "5750153" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3062.78 -7912 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750157" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3070.78 -7912 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750161" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3046.78 -7936 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750165" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3041 -7915 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750170" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -7316 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750174" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2404.22 -7300 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750178" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2396.22 -7300 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750182" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -7276 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750186" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2420.22 -7268 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750190" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2426 -7297 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750194" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2677 -7346 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750198" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2677 -7330 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750202" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2685 -7355 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750206" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2677 -7355 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750210" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2701 -7250 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750214" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -7242 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750218" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2721 -7271 -24.565" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750225" + "classname" "prop_static" + "angles" "0 9 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_station_wagon01.mdl" + "renderamt" "255" + "rendercolor" "152 183 151" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2558 -7796 -34.753" + editor + { + "color" "255 108 0" + "groupid" "5750224" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "5750229" + "classname" "prop_static" + "angles" "0 175 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "205 205 205" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2576 -7420 -34.753" + editor + { + "color" "255 108 0" + "groupid" "5750224" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "5750233" + "classname" "prop_static" + "angles" "0 5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "18 28 4" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2923 -7527 -34.753" + editor + { + "color" "255 108 0" + "groupid" "5750224" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "5750240" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2741 -7491 -32.753" + editor + { + "color" "255 108 0" + "groupid" "5750239" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750244" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2758 -7271 -24.565" + editor + { + "color" "255 108 0" + "groupid" "5750239" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750248" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2782 -7266 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750252" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2782 -7328 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750257" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3047.78 -7275 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750261" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3047.78 -7323 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750265" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3063.78 -7291 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750269" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3071.78 -7291 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750273" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3047.78 -7315 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750277" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3042 -7294 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5750281" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2782 -7336 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750285" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2790 -7353 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5750289" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2782 -7353 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749969" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5731988" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1720 -7865 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732000" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1825 -7351 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732004" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1825 -7863 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732074" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -7266 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732078" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -7314 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732082" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1461 -7295 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5732086" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -7274 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732090" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1431.22 -7298 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732094" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1439.22 -7298 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732224" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -7885 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732228" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -7933 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732232" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1439.22 -7917 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732236" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1431.22 -7917 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732240" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -7893 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732244" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1461 -7914 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5732336" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2082.78 -7321 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732340" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2082.78 -7313 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732344" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2106.78 -7289 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732348" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2098.78 -7289 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732352" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2082.78 -7273 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732356" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2077 -7292 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5732514" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1772 -7810 -29.1459" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "5732518" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1774 -8132 -29.1459" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +entity +{ + "id" "5732550" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1075 -8338 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1075 -8338 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5732556" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1071 -8472 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1071 -8472 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "5732563" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1205.78 -8550 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732567" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1205.78 -8542 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732571" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1221.78 -8518 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732575" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1229.78 -8518 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732579" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1205.78 -8502 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732583" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1200 -8521 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +entity +{ + "id" "5732666" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1088 -8577 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1088 -8577 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5732672" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1084 -8716 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1084 -8716 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5732678" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1078 -8835 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1078 -8835 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5732684" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1075 -8961 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1075 -8961 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5732690" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1071 -9095 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1071 -9095 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "5732791" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1964 -9233 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732800" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1720 -8377 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732804" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1825 -8375 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732837" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -8321 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732841" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1431.22 -8305 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732845" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1439.22 -8305 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732849" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -8281 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732853" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455.22 -8273 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732857" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1461 -8302 -24.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5732974" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1221.78 -9137 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732978" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1205.78 -9121 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5732983" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1229.78 -9137 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5733019" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1230 -9160 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5715831" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1367 -9330 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5715839" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1879 -9330 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5715847" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2391 -9330 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5715905" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "949 -8585 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5715919" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "949 -9097 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5715947" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1452 -9233 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5715971" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1720 -7353 -31.75" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5716006" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1084 -8093 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1084 -8093 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "5716024" + "classname" "prop_static" + "angles" "0 181 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_station_wagon01.mdl" + "renderamt" "255" + "rendercolor" "39 5 7" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1074 -8152 -34.753" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +entity +{ + "id" "5716028" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1078 -8212 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1078 -8212 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "5699016" + "classname" "prop_static" + "angles" "0 107 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "710 -8290 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5699078" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "300 -6735 -25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699082" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "455 -6732 -25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699086" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "545 -8560 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699094" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "949 -7049 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699128" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "902 -7790 -30.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "5699156" + "classname" "prop_static" + "angles" "0 170.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "911 -7364 -35.753" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699160" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "949 -7561 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5699203" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "709 -7422 -32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "219113" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "709 -7422 -32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5699221" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "709 -7869 -32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "219107" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "709 -7869 -32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "5699239" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "709 -8289 -32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "219107" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "709 -8289 -32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "5699261" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "927 -7594 -28.813" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699360" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1205.78 -7275 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699365" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1221.78 -7291 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699369" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1229.78 -7291 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699373" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1205.78 -7315 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699377" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1205.78 -7323 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699381" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1200 -7294 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699476" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush003.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "911 -7787 -35.753" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +entity +{ + "id" "5699554" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1071 -7740 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1071 -7740 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "5699580" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush003.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "892 -8206 -35.753" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699584" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush003.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "912 -8206 -35.753" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699588" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "928 -8013 -28.813" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699618" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "899 -8212 -30.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "5699691" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1204.78 -7894 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699695" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1204.78 -7942 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699699" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1220.78 -7910 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699703" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1228.78 -7910 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699707" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1204.78 -7934 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699711" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1199 -7913 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699785" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "949 -8073 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699873" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "197 -6620 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "5699877" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "389 -6620 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "5699881" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "517 -6620 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "5699889" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "622 -6646 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5699929" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "855 -9330 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5699949" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "856 -9329 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5682533" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "864 -7025 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5682565" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "864 -7281 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5682597" + "classname" "prop_static" + "angles" "0 327 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_house/swat_van.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1069 -6992 -30.6773" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +hidden +{ + entity + { + "id" "5682613" + "classname" "prop_static" + "angles" "0 327 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_house/swat_van.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1044 -6785 -30.6773" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +hidden +{ + entity + { + "id" "5682621" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "864 -7793 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5682801" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "545 -7024 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5683059" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "545 -8048 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5683106" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "448 -6761 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5683141" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "576 -6761 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5683161" + "classname" "prop_static" + "angles" "0 197.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "709 -7423 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5683169" + "classname" "prop_static" + "angles" "0 149.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "710 -7870 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5666028" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2656 -6714 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5666063" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2655 -6610 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5666091" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2671 -6610 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5666118" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2672 -6714 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5666132" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2489.29 -6692 -29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5666136" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2607.36 -6692 -29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "5666154" + "classname" "prop_static" + "angles" "0 197.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1628 -6368 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5666166" + "classname" "prop_static" + "angles" "0 197.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1986 -6368 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "5666190" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1628 -6367 -32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "5732" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1628 -6367 -32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5666202" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "1986 -6367 -32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "5732" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1986 -6367 -32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "5666221" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1943.48 -6041 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5666225" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1664.06 -6041 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5649824" + "classname" "prop_static" + "angles" "0 8.49999 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1408 -4414 0.250011" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5649840" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1421 -4337 0.250011" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5649856" + "classname" "prop_static" + "angles" "0 91 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1316 -4977 0.250019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5632952" + "classname" "prop_static" + "angles" "0 350.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1526 -2317 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5632980" + "classname" "prop_static" + "angles" "0 338 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1492 -2437 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633010" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "823 -1957 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633022" + "classname" "prop_static" + "angles" "0 315 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "860 -1791 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633154" + "classname" "prop_static" + "angles" "0 39 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-321 -5116 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633182" + "classname" "prop_static" + "angles" "0 5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1062 -4004 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633206" + "classname" "prop_static" + "angles" "0 5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1051 -4127 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633226" + "classname" "prop_static" + "angles" "0 90.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-318 -4388 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633254" + "classname" "prop_static" + "angles" "0 357 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-817 -3868 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633278" + "classname" "prop_static" + "angles" "0 270.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1075 -2020 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633646" + "classname" "prop_static" + "angles" "0 29.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1876 -1444 -23.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5633666" + "classname" "prop_static" + "angles" "0 323 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1280 -1443 -23.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "5633793" + "classname" "func_detail" + solid + { + "id" "5633767" + side + { + "id" "370349" + "plane" "(-2072 -2000 187) (-2072 -1984 187) (-2067 -1984 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370348" + "plane" "(-2072 -1984 -16) (-2072 -2000 -16) (-2067 -2000 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370347" + "plane" "(-2072 -2000 -16) (-2072 -1984 -16) (-2072 -1984 187)" + "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" "370346" + "plane" "(-2067 -1984 -16) (-2067 -2000 -16) (-2067 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -115] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370345" + "plane" "(-2072 -1984 -16) (-2067 -1984 -16) (-2067 -1984 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370344" + "plane" "(-2067 -2000 -16) (-2072 -2000 -16) (-2072 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 213] 0.125" + "vaxis" "[1 0 0 -16] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633742" + side + { + "id" "370355" + "plane" "(-2072 -1992 108) (-2191 -1992 108) (-2191 -1992 187)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 132.384] 0.594" + "vaxis" "[0 0 -1 93.3463] 0.309" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370354" + "plane" "(-2191 -1990 108) (-2072 -1990 108) (-2072 -1990 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12.0012] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370353" + "plane" "(-2072 -1992 187) (-2191 -1992 187) (-2191 -1990 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[-1 0 0 -12.0012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370352" + "plane" "(-2072 -1990 108) (-2191 -1990 108) (-2191 -1992 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 0.25" + "vaxis" "[-1 0 0 -140] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370351" + "plane" "(-2191 -1992 187) (-2191 -1992 108) (-2191 -1990 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370350" + "plane" "(-2072 -1990 187) (-2072 -1990 108) (-2072 -1992 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 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" "5633759" + side + { + "id" "370361" + "plane" "(-1948 -1992 108) (-2067 -1992 108) (-2067 -1992 187)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 179.63] 0.594" + "vaxis" "[0 0 -1 93.3463] 0.309" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370360" + "plane" "(-2067 -1990 108) (-1948 -1990 108) (-1948 -1990 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370359" + "plane" "(-1948 -1992 187) (-2067 -1992 187) (-2067 -1990 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[-1 0 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370358" + "plane" "(-1948 -1990 108) (-2067 -1990 108) (-2067 -1992 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 0.25" + "vaxis" "[-1 0 0 356] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370357" + "plane" "(-2067 -1992 187) (-2067 -1992 108) (-2067 -1990 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370356" + "plane" "(-1948 -1990 187) (-1948 -1990 108) (-1948 -1992 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 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" "5633758" + side + { + "id" "370367" + "plane" "(-2067 -2000 108) (-2067 -1984 108) (-1948 -1984 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -123] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370366" + "plane" "(-2067 -1984 104) (-2067 -2000 104) (-1948 -2000 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -75] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370365" + "plane" "(-2067 -2000 104) (-2067 -1984 104) (-2067 -1984 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370364" + "plane" "(-1948 -1984 104) (-1948 -2000 104) (-1948 -2000 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370363" + "plane" "(-2067 -1984 104) (-1948 -1984 104) (-1948 -1984 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370362" + "plane" "(-1948 -2000 104) (-2067 -2000 104) (-2067 -2000 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -123] 0.125" + "vaxis" "[0 0 -1 31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633741" + side + { + "id" "370373" + "plane" "(-2191 -2000 108) (-2191 -1984 108) (-2072 -1984 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -155.001] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370372" + "plane" "(-2191 -1984 104) (-2191 -2000 104) (-2072 -2000 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -43] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370371" + "plane" "(-2191 -2000 104) (-2191 -1984 104) (-2191 -1984 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370370" + "plane" "(-2072 -1984 104) (-2072 -2000 104) (-2072 -2000 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370369" + "plane" "(-2191 -1984 104) (-2072 -1984 104) (-2072 -1984 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370368" + "plane" "(-2072 -2000 104) (-2191 -2000 104) (-2191 -2000 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -155.001] 0.125" + "vaxis" "[0 0 -1 31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633771" + side + { + "id" "370379" + "plane" "(-1948 -2000 187) (-1948 -1984 187) (-1944 -1984 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370378" + "plane" "(-1948 -1984 -16) (-1948 -2000 -16) (-1944 -2000 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370377" + "plane" "(-1948 -2000 -16) (-1948 -1984 -16) (-1948 -1984 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 -0.0727539] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370376" + "plane" "(-1944 -1984 -16) (-1944 -2000 -16) (-1944 -2000 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 -1 0 -0.0727539] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370375" + "plane" "(-1948 -1984 -16) (-1944 -1984 -16) (-1944 -1984 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370374" + "plane" "(-1944 -2000 -16) (-1948 -2000 -16) (-1948 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 213] 0.125" + "vaxis" "[1 0 0 -40] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633739" + side + { + "id" "370385" + "plane" "(-2194 -2000 187) (-2194 -1984 187) (-2191 -1984 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370384" + "plane" "(-2194 -1984 -16) (-2194 -2000 -16) (-2191 -2000 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370383" + "plane" "(-2194 -2000 -16) (-2194 -1984 -16) (-2194 -1984 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -115] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370382" + "plane" "(-2191 -1984 -16) (-2191 -2000 -16) (-2191 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -115] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370381" + "plane" "(-2194 -1984 -16) (-2191 -1984 -16) (-2191 -1984 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370380" + "plane" "(-2191 -2000 -16) (-2194 -2000 -16) (-2194 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 213] 0.125" + "vaxis" "[1 0 0 16] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5633778" + side + { + "id" "370391" + "plane" "(-2194 -2000 192) (-2194 -1984 192) (-1944 -1984 192)" + "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" "370390" + "plane" "(-2194 -1984 187) (-2194 -2000 187) (-1944 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -35] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370389" + "plane" "(-2194 -2000 187) (-2194 -1984 187) (-2194 -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" "370388" + "plane" "(-1944 -1984 187) (-1944 -2000 187) (-1944 -2000 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" "370387" + "plane" "(-2194 -1984 187) (-1944 -1984 187) (-1944 -1984 192)" + "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" "370386" + "plane" "(-1944 -2000 187) (-2194 -2000 187) (-2194 -2000 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 109] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +hidden +{ + entity + { + "id" "5633816" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2004 -1969 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5633824" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2143 -1969 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5633844" + "classname" "func_detail" + solid + { + "id" "5633757" + side + { + "id" "370403" + "plane" "(-1948 -1992 -16) (-2067 -1992 -16) (-2067 -1992 104)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 94.6553] 0.464844" + "vaxis" "[0 0 -1 221.867] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370402" + "plane" "(-1948 -1990 -16) (-2067 -1990 -16) (-2067 -1992 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[-1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370401" + "plane" "(-2067 -1990 -16) (-1948 -1990 -16) (-1948 -1990 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370400" + "plane" "(-1948 -1992 104) (-2067 -1992 104) (-2067 -1990 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[-1 0 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370399" + "plane" "(-1948 -1990 104) (-1948 -1990 -16) (-1948 -1992 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370398" + "plane" "(-2067 -1992 104) (-2067 -1992 -16) (-2067 -1990 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 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" "5633740" + side + { + "id" "370409" + "plane" "(-2072 -1992 -16) (-2191 -1992 -16) (-2191 -1992 104)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 105.412] 0.464844" + "vaxis" "[0 0 -1 221.867] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370408" + "plane" "(-2072 -1990 -16) (-2191 -1990 -16) (-2191 -1992 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[-1 0 0 -8.00122] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370407" + "plane" "(-2191 -1990 -16) (-2072 -1990 -16) (-2072 -1990 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 8.00122] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370406" + "plane" "(-2072 -1992 104) (-2191 -1992 104) (-2191 -1990 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[-1 0 0 -8.00122] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370405" + "plane" "(-2072 -1990 104) (-2072 -1990 -16) (-2072 -1992 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370404" + "plane" "(-2191 -1992 104) (-2191 -1992 -16) (-2191 -1990 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +hidden +{ + entity + { + "id" "5633857" + "classname" "prop_static" + "angles" "0 335 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2085 -3861 0.250004" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5633877" + "classname" "prop_static" + "angles" "0 353.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2044 -4099 0.250011" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "5600059" + "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/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1680.45 -2145.61 30.2916" + editor + { + "color" "165 146 0" + "groupid" "5600058" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "5600063" + "classname" "func_detail" + solid + { + "id" "5600064" + side + { + "id" "369629" + "plane" "(-1647.45 -2237.62 42.25) (-1648.45 -2236.62 42.25) (-1648.45 -2146.62 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-1 0 0 -17.5738] 0.25" + "vaxis" "[0 1 0 6.48883] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369628" + "plane" "(-1647.45 -2145.62 22.25) (-1648.45 -2146.62 22.25) (-1648.45 -2236.62 22.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[-1 0 0 -33.5767] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369627" + "plane" "(-1648.45 -2146.62 22.25) (-1647.45 -2145.62 22.25) (-1647.45 -2145.62 42.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33.5767] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369626" + "plane" "(-1647.45 -2237.61 22.25) (-1648.45 -2236.62 22.25) (-1648.45 -2236.62 42.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33.5767] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369625" + "plane" "(-1647.45 -2145.63 22.25) (-1647.45 -2237.62 22.25) (-1647.45 -2237.61 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369624" + "plane" "(-1648.45 -2236.62 22.25) (-1648.45 -2146.63 22.25) (-1648.45 -2146.62 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600065" + side + { + "id" "369635" + "plane" "(-1930.44 -2145.62 42.25) (-1647.45 -2145.63 42.25) (-1648.44 -2146.62 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-1 0 0 -17.5738] 0.25" + "vaxis" "[0 1 0 6.48883] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369634" + "plane" "(-1647.45 -2145.62 22.25) (-1930.45 -2145.62 22.25) (-1929.45 -2146.61 22.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[-1 0 0 -33.5767] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369633" + "plane" "(-1930.44 -2145.62 22.25) (-1647.45 -2145.62 22.25) (-1647.45 -2145.62 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-1 0 0 -17.5738] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369632" + "plane" "(-1648.44 -2146.62 22.25) (-1929.45 -2146.61 22.25) (-1929.45 -2146.62 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 5.57086] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369631" + "plane" "(-1647.45 -2145.63 22.25) (-1648.45 -2146.62 22.25) (-1648.44 -2146.62 42.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369630" + "plane" "(-1929.45 -2146.61 22.25) (-1930.45 -2145.62 22.25) (-1930.45 -2145.62 42.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600066" + side + { + "id" "369641" + "plane" "(-1929.45 -2236.61 42.25) (-1648.45 -2236.62 42.25) (-1647.45 -2237.62 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-1 0 0 -17.5738] 0.25" + "vaxis" "[0 1 0 6.48883] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369640" + "plane" "(-1648.45 -2236.62 22.25) (-1929.45 -2236.62 22.25) (-1930.44 -2237.61 22.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[-1 0 0 -33.5767] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369639" + "plane" "(-1929.45 -2236.61 22.25) (-1648.45 -2236.62 22.25) (-1648.45 -2236.62 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-1 0 0 -37.5733] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369638" + "plane" "(-1647.46 -2237.62 22.25) (-1930.45 -2237.61 22.25) (-1930.45 -2237.61 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 49.5709] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369637" + "plane" "(-1648.45 -2236.62 22.25) (-1647.45 -2237.62 22.25) (-1647.45 -2237.62 42.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369636" + "plane" "(-1930.45 -2237.62 22.25) (-1929.45 -2236.61 22.25) (-1929.45 -2236.62 42.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600067" + side + { + "id" "369647" + "plane" "(-1930.45 -2145.62 42.25) (-1929.45 -2146.62 42.25) (-1929.45 -2236.61 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-1 0 0 -17.5738] 0.25" + "vaxis" "[0 1 0 6.48883] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369646" + "plane" "(-1929.45 -2146.61 22.25) (-1930.45 -2145.62 22.25) (-1930.45 -2237.61 22.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[-1 0 0 -33.5767] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369645" + "plane" "(-1930.45 -2145.62 22.25) (-1929.45 -2146.61 22.25) (-1929.45 -2146.61 42.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33.5767] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369644" + "plane" "(-1929.45 -2236.62 22.25) (-1930.45 -2237.61 22.25) (-1930.45 -2237.62 42.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33.5767] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369643" + "plane" "(-1929.45 -2146.62 22.25) (-1929.45 -2236.62 22.25) (-1929.45 -2236.62 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369642" + "plane" "(-1930.44 -2237.61 22.25) (-1930.45 -2145.62 22.25) (-1930.45 -2145.62 42.25)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 -1 0 17.5112] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "165 146 0" + "groupid" "5600058" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "5600068" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/rocket_miniature001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1789.45 -2191.62 -23.75" + editor + { + "color" "165 146 0" + "groupid" "5600058" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5600240" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1375 -1437 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5600268" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1787 -1445 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5600292" + "classname" "prop_static" + "angles" "0 197.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1601 -1464 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5600304" + "classname" "prop_static" + "angles" "0 351 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1205 -1461 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "5600312" + "classname" "prop_static" + "angles" "0 258.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2040 -1463 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "5600328" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-2040 -1463 -24" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "369654" + "StartU" "0" + "StartV" "1" + "uv0" "-32.0002 -32 0" + "uv1" "-32.0002 32 0" + "uv2" "32.0002 32 0" + "uv3" "32.0002 -32 0" + "origin" "-2040 -1463 -24" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "5600370" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-1601 -1463 -24" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/metalgrate008a_decal" + "sides" "369654" + "StartU" "0" + "StartV" "1" + "uv0" "-32.0002 -32 0" + "uv1" "-32.0002 32 0" + "uv2" "32.0002 32 0" + "uv3" "32.0002 -32 0" + "origin" "-1601 -1463 -24" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "5600446" + "classname" "func_detail" + solid + { + "id" "5600436" + side + { + "id" "369803" + "plane" "(-949 -1984 108) (-837 -1984 108) (-837 -2000 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 212.999] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369802" + "plane" "(-949 -2000 104) (-837 -2000 104) (-837 -1984 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -155] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369801" + "plane" "(-949 -1984 108) (-949 -2000 108) (-949 -2000 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369800" + "plane" "(-837 -1984 104) (-837 -2000 104) (-837 -2000 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369799" + "plane" "(-837 -1984 108) (-949 -1984 108) (-949 -1984 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" "369798" + "plane" "(-837 -2000 104) (-949 -2000 104) (-949 -2000 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 212.998] 0.125" + "vaxis" "[0 0 -1 31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600415" + side + { + "id" "369809" + "plane" "(-832 -2000 187) (-832 -2000 -16) (-837 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 0.00244141] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369808" + "plane" "(-832 -1984 187) (-832 -1984 -16) (-832 -2000 -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" "369807" + "plane" "(-837 -1984 -16) (-832 -1984 -16) (-832 -1984 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.0012207] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369806" + "plane" "(-837 -1984 187) (-832 -1984 187) (-832 -2000 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -0.0012207] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369805" + "plane" "(-837 -2000 -16) (-832 -2000 -16) (-832 -1984 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -480] 0.25" + "vaxis" "[-1 0 0 -448.001] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369804" + "plane" "(-837 -2000 187) (-837 -2000 -16) (-837 -1984 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600405" + side + { + "id" "369815" + "plane" "(-952 -2000 -24) (-832 -2000 -24) (-832 -1984 -24)" + "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" "369814" + "plane" "(-832 -2000 -24) (-952 -2000 -24) (-952 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 77] 0.125" + "vaxis" "[0 0 1 -63.9971] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369813" + "plane" "(-952 -1984 -16) (-952 -1984 -24) (-832 -1984 -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" "369812" + "plane" "(-952 -2000 -16) (-952 -2000 -24) (-952 -1984 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -115] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369811" + "plane" "(-832 -2000 -16) (-952 -2000 -16) (-952 -1984 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 77] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369810" + "plane" "(-832 -1984 -16) (-832 -1984 -24) (-832 -2000 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 832] 0.125" + "vaxis" "[0 1 0 -64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600431" + side + { + "id" "369821" + "plane" "(-1358 -1984 192) (-832 -1984 192) (-832 -2000 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" "369820" + "plane" "(-1358 -2000 187) (-832 -2000 187) (-832 -1984 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -3] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369819" + "plane" "(-1358 -1984 192) (-1358 -2000 192) (-1358 -2000 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369818" + "plane" "(-832 -1984 187) (-832 -2000 187) (-832 -2000 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" "369817" + "plane" "(-832 -1984 192) (-1358 -1984 192) (-1358 -1984 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369816" + "plane" "(-832 -2000 187) (-1358 -2000 187) (-1358 -2000 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 77] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +entity +{ + "id" "5600459" + "classname" "func_detail" + solid + { + "id" "5600202" + side + { + "id" "369827" + "plane" "(-688 -1408 24) (-688 -1416 24) (-2624 -1416 24)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369826" + "plane" "(-688 -1416 -24) (-688 -1408 -24) (-2624 -1408 -24)" + "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" "369825" + "plane" "(-2624 -1408 24) (-2624 -1416 24) (-2624 -1416 -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" "369824" + "plane" "(-688 -1416 24) (-688 -1408 24) (-688 -1408 -24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -536] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369823" + "plane" "(-688 -1408 24) (-2624 -1408 24) (-2624 -1408 -24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -88] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369822" + "plane" "(-2624 -1416 24) (-688 -1416 24) (-688 -1416 -24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -88] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600203" + side + { + "id" "369833" + "plane" "(-688 -1416 32) (-2624 -1416 32) (-2624 -1408 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 -1 0 512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369832" + "plane" "(-688 -1408 24) (-2624 -1408 24) (-2624 -1416 24)" + "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" "369831" + "plane" "(-2624 -1416 32) (-2624 -1416 24) (-2624 -1408 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" "369830" + "plane" "(-688 -1408 32) (-688 -1408 24) (-688 -1416 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" "369829" + "plane" "(-2624 -1408 32) (-2624 -1408 24) (-688 -1408 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369828" + "plane" "(-688 -1416 32) (-688 -1416 24) (-2624 -1416 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -64] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +entity +{ + "id" "5600474" + "classname" "func_detail" + solid + { + "id" "1186791" + side + { + "id" "369845" + "plane" "(-1200 -1991 104) (-1200 -1989 104) (-952 -1989 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369844" + "plane" "(-1200 -1989 -24) (-1200 -1991 -24) (-952 -1991 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369843" + "plane" "(-1200 -1991 -24) (-1200 -1989 -24) (-1200 -1989 104)" + "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" "369842" + "plane" "(-952 -1989 -24) (-952 -1991 -24) (-952 -1991 104)" + "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" "369841" + "plane" "(-1200 -1989 -24) (-952 -1989 -24) (-952 -1989 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" "369840" + "plane" "(-952 -1991 -24) (-1200 -1991 -24) (-1200 -1991 104)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 24.6211] 0.438" + "vaxis" "[0 0 -1 213.288] 0.469" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "5600488" + "classname" "func_detail" + solid + { + "id" "1186786" + side + { + "id" "369851" + "plane" "(-1200 -1992 108) (-952 -1992 108) (-952 -1992 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369850" + "plane" "(-952 -1994 108) (-1200 -1994 108) (-1200 -1994 187)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 214.71] 0.96875" + "vaxis" "[0 0 -1 93.9747] 0.308594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369849" + "plane" "(-952 -1994 187) (-1200 -1994 187) (-1200 -1992 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369848" + "plane" "(-952 -1992 108) (-1200 -1992 108) (-1200 -1994 108)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 -960] 0.125" + "vaxis" "[0 -1 0 -24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369847" + "plane" "(-952 -1992 187) (-952 -1992 108) (-952 -1994 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369846" + "plane" "(-1200 -1994 187) (-1200 -1994 108) (-1200 -1992 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13000]" + } +} +entity +{ + "id" "5600503" + "classname" "func_detail" + solid + { + "id" "5600466" + side + { + "id" "369869" + "plane" "(-952 -1984 187) (-949 -1984 187) (-949 -2000 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369868" + "plane" "(-952 -2000 -16) (-949 -2000 -16) (-949 -1984 -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" "369867" + "plane" "(-952 -1984 187) (-952 -2000 187) (-952 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -115] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369866" + "plane" "(-949 -1984 -16) (-949 -2000 -16) (-949 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -115] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369865" + "plane" "(-949 -1984 187) (-952 -1984 187) (-952 -1984 -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" "369864" + "plane" "(-949 -2000 -16) (-952 -2000 -16) (-952 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 213] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5600497" + side + { + "id" "369875" + "plane" "(-1200 -1984 108) (-952 -1984 108) (-952 -2000 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -147.001] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369874" + "plane" "(-1200 -2000 104) (-952 -2000 104) (-952 -1984 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 205] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369873" + "plane" "(-1200 -1984 108) (-1200 -2000 108) (-1200 -2000 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369872" + "plane" "(-952 -1984 104) (-952 -2000 104) (-952 -2000 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369871" + "plane" "(-952 -1984 108) (-1200 -1984 108) (-1200 -1984 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -52] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369870" + "plane" "(-952 -2000 104) (-1200 -2000 104) (-1200 -2000 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -147.002] 0.125" + "vaxis" "[0 0 -1 31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14000]" + } +} +entity +{ + "id" "5600644" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "-1278 -1997 59.8279" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "369959" + "StartU" "0" + "StartV" "1" + "uv0" "-38 -38 0" + "uv1" "-38 38 0" + "uv2" "38 38 0" + "uv3" "38 -38 0" + "origin" "-1278 -1997 59.8279" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "5600684" + "classname" "func_detail" + solid + { + "id" "5600596" + side + { + "id" "369959" + "plane" "(-1203 -1992 -16) (-1355 -1992 -16) (-1355 -1992 104)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 234.105] 0.59375" + "vaxis" "[0 0 -1 221.867] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369958" + "plane" "(-1203 -1990 -16) (-1355 -1990 -16) (-1355 -1992 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[-1 0 0 7.99878] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369957" + "plane" "(-1355 -1990 -16) (-1203 -1990 -16) (-1203 -1990 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -7.99878] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369956" + "plane" "(-1355 -1990 104) (-1203 -1990 104) (-1203 -1992 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[-1 0 0 7.99878] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369955" + "plane" "(-1203 -1990 104) (-1203 -1990 -16) (-1203 -1992 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369954" + "plane" "(-1355 -1992 104) (-1355 -1992 -16) (-1355 -1990 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 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" "5600591" + side + { + "id" "369965" + "plane" "(-1203 -1992 108) (-1355 -1992 108) (-1355 -1992 187)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 234.105] 0.59375" + "vaxis" "[0 0 -1 93.9747] 0.308594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369964" + "plane" "(-1355 -1990 108) (-1203 -1990 108) (-1203 -1990 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 60.0012] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369963" + "plane" "(-1355 -1990 187) (-1203 -1990 187) (-1203 -1992 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[-1 0 0 -60.0012] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369962" + "plane" "(-1203 -1990 108) (-1355 -1990 108) (-1355 -1992 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 0.25" + "vaxis" "[-1 0 0 -380.001] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369961" + "plane" "(-1355 -1992 187) (-1355 -1992 108) (-1355 -1990 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369960" + "plane" "(-1203 -1990 187) (-1203 -1990 108) (-1203 -1992 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -472] 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" "5600586" + side + { + "id" "369971" + "plane" "(-1358 -1984 187) (-1355 -1984 187) (-1355 -2000 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369970" + "plane" "(-1358 -2000 -16) (-1355 -2000 -16) (-1355 -1984 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369969" + "plane" "(-1358 -1984 187) (-1358 -2000 187) (-1358 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -115] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369968" + "plane" "(-1355 -1984 -16) (-1355 -2000 -16) (-1355 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 -115] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369967" + "plane" "(-1355 -1984 187) (-1358 -1984 187) (-1358 -1984 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369966" + "plane" "(-1355 -2000 -16) (-1358 -2000 -16) (-1358 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 213] 0.125" + "vaxis" "[1 0 0 48] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15268]" + } +} +entity +{ + "id" "5600695" + "classname" "func_detail" + solid + { + "id" "5600416" + side + { + "id" "369977" + "plane" "(-837 -1994 -16) (-949 -1994 -16) (-949 -1994 104)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 121.143] 0.4375" + "vaxis" "[0 0 -1 221.867] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369976" + "plane" "(-837 -1992 -16) (-949 -1992 -16) (-949 -1994 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -0.0012207] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369975" + "plane" "(-949 -1992 -16) (-837 -1992 -16) (-837 -1992 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.0012207] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369974" + "plane" "(-949 -1992 104) (-837 -1992 104) (-837 -1994 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -0.0012207] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369973" + "plane" "(-837 -1992 104) (-837 -1992 -16) (-837 -1994 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -480] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369972" + "plane" "(-949 -1994 104) (-949 -1994 -16) (-949 -1992 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -480] 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" "5600417" + side + { + "id" "369983" + "plane" "(-837 -1994 108) (-949 -1994 108) (-949 -1994 187)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 121.143] 0.4375" + "vaxis" "[0 0 -1 93.9747] 0.308594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369982" + "plane" "(-949 -1992 108) (-837 -1992 108) (-837 -1992 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.0012207] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369981" + "plane" "(-949 -1992 187) (-837 -1992 187) (-837 -1994 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32] 0.25" + "vaxis" "[-1 0 0 -0.0012207] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369980" + "plane" "(-837 -1992 108) (-949 -1992 108) (-949 -1994 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -480] 0.25" + "vaxis" "[-1 0 0 -448.001] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369979" + "plane" "(-949 -1994 187) (-949 -1994 108) (-949 -1992 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -480] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369978" + "plane" "(-837 -1992 187) (-837 -1992 108) (-837 -1994 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -480] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "5600847" + "classname" "func_detail" + solid + { + "id" "5600844" + side + { + "id" "370151" + "plane" "(-2624 -1416 24) (-2616 -1416 24) (-2616 -1740 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" + } + side + { + "id" "370150" + "plane" "(-2624 -1740 -24) (-2616 -1740 -24) (-2616 -1416 -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" + } + side + { + "id" "370149" + "plane" "(-2624 -1416 24) (-2624 -1740 24) (-2624 -1740 -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" "370148" + "plane" "(-2616 -1416 -24) (-2616 -1740 -24) (-2616 -1740 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -471.996] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370147" + "plane" "(-2616 -1416 24) (-2624 -1416 24) (-2624 -1416 -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" "370146" + "plane" "(-2616 -1740 -24) (-2624 -1740 -24) (-2624 -1740 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -768]" + } +} +entity +{ + "id" "5600854" + "classname" "func_detail" + solid + { + "id" "5600852" + side + { + "id" "370163" + "plane" "(-2624 -1416 32) (-2616 -1416 32) (-2616 -1740 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[1 0 0 319.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370162" + "plane" "(-2624 -1740 24) (-2616 -1740 24) (-2616 -1416 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" + } + side + { + "id" "370161" + "plane" "(-2624 -1416 32) (-2624 -1740 32) (-2624 -1740 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" "370160" + "plane" "(-2616 -1416 24) (-2616 -1740 24) (-2616 -1740 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370159" + "plane" "(-2616 -1416 32) (-2624 -1416 32) (-2624 -1416 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" "370158" + "plane" "(-2616 -1740 24) (-2624 -1740 24) (-2624 -1740 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "5600864" + "classname" "func_detail" + solid + { + "id" "5600861" + side + { + "id" "370175" + "plane" "(-696 -1416 24) (-688 -1416 24) (-688 -1740 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" + } + side + { + "id" "370174" + "plane" "(-696 -1740 -24) (-688 -1740 -24) (-688 -1416 -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" + } + side + { + "id" "370173" + "plane" "(-696 -1416 24) (-696 -1740 24) (-696 -1740 -24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -88] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370172" + "plane" "(-688 -1416 -24) (-688 -1740 -24) (-688 -1740 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" "370171" + "plane" "(-688 -1416 24) (-696 -1416 24) (-696 -1416 -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" "370170" + "plane" "(-688 -1740 -24) (-696 -1740 -24) (-696 -1740 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 1500]" + } +} +entity +{ + "id" "5600875" + "classname" "func_detail" + solid + { + "id" "5600869" + side + { + "id" "370187" + "plane" "(-696 -1416 32) (-688 -1416 32) (-688 -1740 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 -1 0 -575.998] 0.125" + "vaxis" "[-1 0 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370186" + "plane" "(-696 -1740 24) (-688 -1740 24) (-688 -1416 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" + } + side + { + "id" "370185" + "plane" "(-696 -1416 32) (-696 -1740 32) (-696 -1740 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 -1 0 -575.998] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "370184" + "plane" "(-688 -1416 24) (-688 -1740 24) (-688 -1740 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" "370183" + "plane" "(-688 -1416 32) (-696 -1416 32) (-696 -1416 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" "370182" + "plane" "(-688 -1740 24) (-696 -1740 24) (-696 -1740 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 2500]" + } +} +hidden +{ + entity + { + "id" "5600884" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-749 -1474 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5600908" + "classname" "prop_static" + "angles" "0 91.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-732 -1557 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5583405" + "classname" "prop_static" + "angles" "-89.5 243 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/csm_119.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1114.85 -4569.78 -372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5583419" + "classname" "func_detail" + solid + { + "id" "5583417" + side + { + "id" "369461" + "plane" "(-1239.76 -4381 -464) (-842.372 -4583.48 -464) (-943.611 -4782.17 -464)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0.891007 -0.453991 0 48] 0.25" + "vaxis" "[-0.453991 -0.891007 0 96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369460" + "plane" "(-1341 -4579.69 -480) (-943.611 -4782.17 -480) (-842.372 -4583.48 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.891007 -0.453991 0 -21.1911] 0.25" + "vaxis" "[-0.453991 -0.891007 0 52.6439] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369459" + "plane" "(-1239.76 -4381 -464) (-1341 -4579.69 -464) (-1341 -4579.69 -480)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[-0.321018 -0.630036 0.707106 -356.188] 0.125" + "vaxis" "[-0.321018 -0.630036 -0.707106 -388.188] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369458" + "plane" "(-842.372 -4583.48 -480) (-943.611 -4782.17 -480) (-943.611 -4782.17 -464)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0.647979 0.283058 0.707106 523.43] 0.125" + "vaxis" "[0.647979 0.283058 -0.707106 491.43] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369457" + "plane" "(-842.372 -4583.48 -464) (-1239.76 -4381 -464) (-1239.76 -4381 -480)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0.283058 -0.647979 0.707106 -695.959] 0.125" + "vaxis" "[0.283058 -0.647979 -0.707106 -727.959] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369456" + "plane" "(-943.611 -4782.17 -480) (-1341 -4579.69 -480) (-1341 -4579.69 -464)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0.630036 -0.32102 0.707106 910.115] 0.125" + "vaxis" "[0.630036 -0.32102 -0.707106 878.115] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "5583526" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-278 -4601 -479.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5583530" + "classname" "prop_dynamic" + "angles" "0 0 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-278 -4601 -480" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5583584" + "classname" "func_detail" + solid + { + "id" "5583582" + side + { + "id" "369545" + "plane" "(-1152 -5184 -352) (-816 -5184 -352) (-816 -5256 -352)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369544" + "plane" "(-1152 -5256 -392) (-816 -5256 -392) (-816 -5184 -392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369543" + "plane" "(-1152 -5184 -352) (-1152 -5256 -352) (-1152 -5256 -392)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369542" + "plane" "(-816 -5184 -392) (-816 -5256 -392) (-816 -5256 -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" "369541" + "plane" "(-816 -5184 -352) (-1152 -5184 -352) (-1152 -5184 -392)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[1 0 0 -841] 0.102" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369540" + "plane" "(-816 -5256 -392) (-1152 -5256 -392) (-1152 -5256 -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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "5583783" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-789 -4981 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5583787" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-788 -4980 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5583791" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-916.001 -4980 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5583795" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-917.001 -4965 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5583868" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-916 -4981 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5583897" + "classname" "func_detail" + solid + { + "id" "5583757" + side + { + "id" "369576" + "plane" "(-1048 -5184 -352) (-1048 -4992 -352) (-1152 -4992 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00170898] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369575" + "plane" "(-1048 -4992 -352) (-1048 -5184 -352) (-1048 -4992 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.5547 -0.692307 -0.461538 365] 0.063" + "vaxis" "[0 -0.5547 0.83205 -841] 0.102" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369574" + "plane" "(-1152 -5184 -352) (-1152 -4992 -352) (-1152 -4992 -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" "369573" + "plane" "(-1152 -4992 -352) (-1048 -4992 -352) (-1048 -4992 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00170898] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369572" + "plane" "(-1152 -4992 -224) (-1048 -4992 -224) (-1048 -5184 -352)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5583755" + side + { + "id" "369581" + "plane" "(-920 -4992 -480) (-920 -5184 -480) (-816 -5184 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369580" + "plane" "(-920 -5184 -480) (-920 -4992 -480) (-920 -5184 -352)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-0.5547 0.692307 -0.461538 365] 0.063" + "vaxis" "[0 0.5547 0.83205 -841] 0.102" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369579" + "plane" "(-816 -4992 -480) (-816 -5184 -480) (-816 -5184 -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" "369578" + "plane" "(-816 -5184 -480) (-920 -5184 -480) (-920 -5184 -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" "369577" + "plane" "(-816 -5184 -352) (-920 -5184 -352) (-920 -4992 -480)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 375] 0.125" + "vaxis" "[0 -1 0 279] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +hidden +{ + entity + { + "id" "5583912" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-921 -5186 -351.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5583916" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-920.999 -5187 -351.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5584020" + "classname" "func_instance" + "angles" "-0 19.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-559 -4695.2 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584029" + "classname" "func_instance" + "angles" "-0 178.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-624 -4695 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584038" + "classname" "func_instance" + "angles" "-0 -170 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-771 -4692.8 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584041" + "classname" "func_instance" + "angles" "-0 19.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-706 -4693 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584050" + "classname" "func_instance" + "angles" "-0 -170 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-992 -4686.8 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584053" + "classname" "func_instance" + "angles" "-0 19.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-927 -4687 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584056" + "classname" "func_instance" + "angles" "-0 178.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-845 -4689 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584059" + "classname" "func_instance" + "angles" "-0 19.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-557 -4498 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584062" + "classname" "func_instance" + "angles" "-0 178.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-622 -4497.8 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584065" + "classname" "func_instance" + "angles" "-0 19.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-704 -4495.8 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584068" + "classname" "func_instance" + "angles" "-0 -170 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-769 -4495.6 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584071" + "classname" "func_instance" + "angles" "-0 178.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-843 -4491.8 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584074" + "classname" "func_instance" + "angles" "-0 19.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-925 -4489.8 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584077" + "classname" "func_instance" + "angles" "-0 -170 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-990 -4489.6 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584080" + "classname" "func_instance" + "angles" "-0 19.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-1066 -4032 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584083" + "classname" "func_instance" + "angles" "-0 -170 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-1131 -4031.8 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584086" + "classname" "func_instance" + "angles" "-0 19.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-1081 -4264 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584089" + "classname" "func_instance" + "angles" "-0 -170 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-1146 -4263.8 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584092" + "classname" "func_instance" + "angles" "-0 19.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-1081 -4435 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5584095" + "classname" "func_instance" + "angles" "-0 -170 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-1146 -4434.8 -47" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "5584102" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-1327 -4984 -202" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5584134" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-1243 -4984 -202" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5584158" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-683 -4984 -202" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5567315" + "classname" "func_detail" + solid + { + "id" "5391528" + side + { + "id" "369389" + "plane" "(1584 -5336 101) (1928 -5288 101) (1928 -5296 101)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.983645 0.137253 0.11664 -401.89] 0.125" + "vaxis" "[0.138196 -0.990405 0 -93.3203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369388" + "plane" "(1928 -5288 0) (1584 -5336 0) (1584 -5344 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" "369387" + "plane" "(1584 -5336 0) (1928 -5288 0) (1928 -5288 101)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369386" + "plane" "(1928 -5288 0) (1928 -5296 0) (1928 -5296 101)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 -402] 0.125" + "vaxis" "[0 1 0 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369385" + "plane" "(1928 -5296 0) (1584 -5344 0) (1584 -5344 101)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369384" + "plane" "(1584 -5344 0) (1584 -5336 0) (1584 -5336 101)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 76.0019] 0.125" + "vaxis" "[0 -1 0 -32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "5567616" + "classname" "info_overlay" + "BasisNormal" "0 -0 1" + "BasisOrigin" "1298.05 -1538.31 -16" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_train/train_cement_stain_01" + "sides" "369443" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1298.05 -1538.31 -16" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "5567622" + "classname" "info_overlay" + "BasisNormal" "0 -0 1" + "BasisOrigin" "814.033 -1561.68 -16" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_train/train_cement_stain_01" + "sides" "369443" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "814.033 -1561.68 -16" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +hidden +{ + entity + { + "id" "5551507" + "classname" "prop_static" + "angles" "15.3233 8.55585 29.6531" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2236.17 -3472 297.745" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5551538" + "classname" "prop_static" + "angles" "15.815 352.41 -26.0557" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2235.83 -3208 297.745" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5534257" + "classname" "func_detail" + solid + { + "id" "2524717" + side + { + "id" "389668" + "plane" "(-1360 -2832 201) (384 -2832 201) (384 -2884 201)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[1 0 0 432.314] 0.102" + "vaxis" "[0 -1 0 -115.609] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389667" + "plane" "(-1360 -2884 199) (384 -2884 199) (384 -2832 199)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0 1 0 115.609] 0.102" + "vaxis" "[1 0 0 432.314] 0.102" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389666" + "plane" "(-1360 -2832 201) (-1360 -2884 201) (-1360 -2884 199)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389665" + "plane" "(384 -2832 199) (384 -2884 199) (384 -2884 201)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389664" + "plane" "(384 -2832 201) (-1360 -2832 201) (-1360 -2832 199)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389663" + "plane" "(384 -2884 199) (-1360 -2884 199) (-1360 -2884 201)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "5535105" + "classname" "func_detail" + solid + { + "id" "5535098" + side + { + "id" "369247" + "plane" "(1384 -2064 -16) (1416 -2064 -16) (1416 -2120 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 68] 0.125" + "vaxis" "[0 -1 0 -487.661] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369246" + "plane" "(1384 -2120 -44) (1416 -2120 -44) (1416 -2064 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369245" + "plane" "(1384 -2064 -16) (1384 -2120 -16) (1384 -2120 -44)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -791.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369244" + "plane" "(1416 -2064 -44) (1416 -2120 -44) (1416 -2120 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 615.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369243" + "plane" "(1416 -2064 -16) (1384 -2064 -16) (1384 -2064 -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" "369242" + "plane" "(1416 -2120 -44) (1384 -2120 -44) (1384 -2120 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "5535110" + "classname" "func_detail" + solid + { + "id" "5535111" + side + { + "id" "369259" + "plane" "(840 -2064 -16) (872 -2064 -16) (872 -2120 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 324] 0.125" + "vaxis" "[0 -1 0 -487.661] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369258" + "plane" "(840 -2120 -44) (872 -2120 -44) (872 -2064 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369257" + "plane" "(840 -2064 -16) (840 -2120 -16) (840 -2120 -44)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -791.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369256" + "plane" "(872 -2064 -44) (872 -2120 -44) (872 -2120 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 615.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369255" + "plane" "(872 -2064 -16) (840 -2064 -16) (840 -2064 -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" "369254" + "plane" "(872 -2120 -44) (840 -2120 -44) (840 -2120 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 232] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "5535122" + "classname" "func_detail" + solid + { + "id" "5535123" + side + { + "id" "369271" + "plane" "(1112 -2064 -16) (1144 -2064 -16) (1144 -2120 -16)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 -828] 0.125" + "vaxis" "[0 -1 0 -487.661] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369270" + "plane" "(1112 -2120 -44) (1144 -2120 -44) (1144 -2064 -44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369269" + "plane" "(1112 -2064 -16) (1112 -2120 -16) (1112 -2120 -44)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -791.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369268" + "plane" "(1144 -2064 -44) (1144 -2120 -44) (1144 -2120 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 615.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369267" + "plane" "(1144 -2064 -16) (1112 -2064 -16) (1112 -2064 -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" "369266" + "plane" "(1144 -2120 -44) (1112 -2120 -44) (1112 -2120 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -920] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "5535141" + "classname" "func_detail" + solid + { + "id" "5535128" + side + { + "id" "369307" + "plane" "(872 -2096 -32) (872 -2080 -32) (1112 -2080 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -90] 0.125" + "vaxis" "[0 -1 0 110] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369306" + "plane" "(872 -2080 -40) (872 -2096 -40) (1112 -2096 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369305" + "plane" "(872 -2096 -40) (872 -2080 -40) (872 -2080 -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" "369304" + "plane" "(1112 -2080 -40) (1112 -2096 -40) (1112 -2096 -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" "369303" + "plane" "(872 -2080 -40) (1112 -2080 -40) (1112 -2080 -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" "369302" + "plane" "(1112 -2096 -40) (872 -2096 -40) (872 -2096 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 375] 0.125" + "vaxis" "[0 0 -1 293] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5535127" + side + { + "id" "369313" + "plane" "(872 -2080 -24) (872 -2064 -24) (1112 -2064 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -90] 0.125" + "vaxis" "[0 -1 0 110] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369312" + "plane" "(872 -2064 -40) (872 -2080 -40) (1112 -2080 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "369311" + "plane" "(872 -2080 -40) (872 -2064 -40) (872 -2064 -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" "369310" + "plane" "(1112 -2064 -40) (1112 -2080 -40) (1112 -2080 -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" "369309" + "plane" "(872 -2064 -40) (1112 -2064 -40) (1112 -2064 -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" "369308" + "plane" "(1112 -2080 -40) (872 -2080 -40) (872 -2080 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 375] 0.125" + "vaxis" "[0 0 -1 239] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +hidden +{ + entity + { + "id" "5535434" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3041 -3043.73 -192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5535454" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3158 -3498 -192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5517558" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-814 -2746.12 460.75" + editor + { + "color" "222 171 0" + "groupid" "5517557" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5517572" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-814 -2581 461" + editor + { + "color" "222 171 0" + "groupid" "5517571" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5517796" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1074 -2746.12 460.75" + editor + { + "color" "222 171 0" + "groupid" "5517795" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5517810" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1074 -2581 461" + editor + { + "color" "222 171 0" + "groupid" "5517809" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5517966" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1371.5 -2746.12 460.5" + editor + { + "color" "222 171 0" + "groupid" "5517965" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5517980" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1371.5 -2581 460.75" + editor + { + "color" "222 171 0" + "groupid" "5517979" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5518136" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1928.1 -2746.12 460.5" + editor + { + "color" "222 171 0" + "groupid" "5518135" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5518150" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1928.1 -2581 460.75" + editor + { + "color" "222 171 0" + "groupid" "5518149" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5518332" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2490 -2746.12 460.5" + editor + { + "color" "222 171 0" + "groupid" "5518331" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5518346" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2490 -2581 460.75" + editor + { + "color" "222 171 0" + "groupid" "5518345" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5518441" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2489.48 -2085 461" + editor + { + "color" "234 211 0" + "groupid" "5518431" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5518489" + "classname" "prop_static" + "angles" "0 3 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-890 -2968 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5484469" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2550 -2934 16" + editor + { + "color" "112 157 0" + "groupid" "5484468" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "5484473" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2468 -2934 16" + editor + { + "color" "112 157 0" + "groupid" "5484468" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "5484477" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_16.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2486 -2934 16" + editor + { + "color" "112 157 0" + "groupid" "5484468" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "5485458" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1735 -2084 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "368659 368683" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1735 -2084 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "5467558" + "classname" "func_detail" + solid + { + "id" "5467603" + side + { + "id" "367825" + "plane" "(1428 -4720 304) (1428 -4720 192) (1437 -4722 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.976187 -0.21693 0 -13.2133] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367824" + "plane" "(1437 -4722 304) (1437 -4722 192) (1445 -4727 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.992656 0.120965 0 -20.5708] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367823" + "plane" "(1445 -4727 304) (1445 -4727 192) (1450 -4735 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.839268 0.543717 0 -1.77844] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367822" + "plane" "(1450 -4735 304) (1450 -4735 192) (1452 -4744 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.609957 0.792434 0 1.57368] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367821" + "plane" "(1452 -4744 304) (1452 -4744 192) (1450 -4753 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.21693 0.976187 0 12.5535] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367820" + "plane" "(1450 -4753 304) (1450 -4753 192) (1445 -4761 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.529999 0.847998 0 5.19939] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367819" + "plane" "(1445 -4761 304) (1445 -4761 192) (1437 -4766 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.848296 0.529522 0 -21.4768] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367818" + "plane" "(1437 -4766 304) (1437 -4766 192) (1428 -4768 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.976084 0.217391 0 -21.2852] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367817" + "plane" "(1428 -4768 304) (1428 -4768 192) (1419 -4766 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.976187 -0.21693 0 -13.2133] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367816" + "plane" "(1419 -4766 304) (1419 -4766 192) (1411 -4761 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.847998 -0.529999 0 -30.7065] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367815" + "plane" "(1411 -4761 304) (1411 -4761 192) (1406 -4753 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.529999 -0.847998 0 -21.8358] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367814" + "plane" "(1406 -4753 304) (1406 -4753 192) (1404 -4744 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0.216931 -0.976187 0 -10.8646] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367813" + "plane" "(1404 -4744 304) (1404 -4744 192) (1406 -4735 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[-0.216931 -0.976187 0 -5.61967] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367812" + "plane" "(1406 -4735 304) (1406 -4735 192) (1411 -4727 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[-0.529999 -0.847998 0 7.3753] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367811" + "plane" "(1411 -4727 304) (1411 -4727 192) (1419 -4722 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[-0.847998 -0.529999 0 25.6741] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367810" + "plane" "(1419 -4722 304) (1419 -4722 192) (1428 -4720 192)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[-0.976187 -0.21693 0 27.3663] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367809" + "plane" "(1428 -4720 304) (1437 -4722 304) (1445 -4727 304)" + "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" "367808" + "plane" "(1445 -4727 192) (1437 -4722 192) (1428 -4720 192)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -768]" + } +} +hidden +{ + entity + { + "id" "5467807" + "classname" "prop_static" + "angles" "0 161.5 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/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1916.32 -4815.47 46.0416" + editor + { + "color" "165 146 0" + "groupid" "5467876" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "5467844" + "classname" "func_detail" + solid + { + "id" "5467747" + side + { + "id" "368005" + "plane" "(2014.04 -4813.37 54) (2012.78 -4814 54) (1927.43 -4785.44 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-0.317305 -0.948324 0 -42.2551] 0.25" + "vaxis" "[-0.948324 0.317305 0 5.08006] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368004" + "plane" "(1926.8 -4784.18 38) (1927.43 -4785.44 38) (2012.78 -4814 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[-0.317305 -0.948324 0 -58.258] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368003" + "plane" "(1927.43 -4785.44 38) (1926.8 -4784.18 38) (1926.8 -4784.18 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.317305 0.948324 0 58.258] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368002" + "plane" "(2014.04 -4813.37 38) (2012.78 -4814 38) (2012.78 -4814 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.317305 0.948324 0 58.258] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368001" + "plane" "(1926.8 -4784.18 38) (2014.04 -4813.37 38) (2014.04 -4813.37 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368000" + "plane" "(2012.79 -4814 38) (1927.44 -4785.44 38) (1927.43 -4785.44 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5467746" + side + { + "id" "368011" + "plane" "(1837.01 -5052.55 54) (1926.8 -4784.19 54) (1927.44 -4785.44 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-0.317305 -0.948324 0 -42.2551] 0.25" + "vaxis" "[-0.948324 0.317305 0 5.08006] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368010" + "plane" "(1926.8 -4784.18 38) (1837 -5052.55 38) (1838.26 -5051.92 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[-0.317305 -0.948324 0 -58.258] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368009" + "plane" "(1837 -5052.55 38) (1926.8 -4784.18 38) (1926.8 -4784.18 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-0.317305 -0.948324 0 -42.2551] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368008" + "plane" "(1927.43 -4785.44 38) (1838.26 -5051.92 38) (1838.27 -5051.92 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0.317305 0.948324 0 30.2521] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368007" + "plane" "(1926.8 -4784.18 38) (1927.43 -4785.44 38) (1927.43 -4785.44 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368006" + "plane" "(1838.27 -5051.92 38) (1837 -5052.55 38) (1837 -5052.55 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5467748" + side + { + "id" "368017" + "plane" "(1923.61 -5080.48 54) (2012.78 -4814 54) (2014.05 -4813.37 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-0.317305 -0.948324 0 -42.2551] 0.25" + "vaxis" "[-0.948324 0.317305 0 5.08006] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368016" + "plane" "(2012.78 -4814 38) (1923.61 -5080.48 38) (1924.24 -5081.74 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[-0.317305 -0.948324 0 -58.258] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368015" + "plane" "(1923.61 -5080.48 38) (2012.78 -4814 38) (2012.78 -4814 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-0.317305 -0.948324 0 -62.255] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368014" + "plane" "(2014.05 -4813.37 38) (1924.24 -5081.74 38) (1924.24 -5081.74 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0.317305 0.948324 0 10.2521] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368013" + "plane" "(2012.78 -4814 38) (2014.05 -4813.37 38) (2014.05 -4813.37 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368012" + "plane" "(1924.24 -5081.74 38) (1923.61 -5080.48 38) (1923.61 -5080.47 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5467744" + side + { + "id" "368023" + "plane" "(1837.01 -5052.55 54) (1838.27 -5051.92 54) (1923.61 -5080.48 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[-0.317305 -0.948324 0 -42.2551] 0.25" + "vaxis" "[-0.948324 0.317305 0 5.08006] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368022" + "plane" "(1838.26 -5051.92 38) (1837 -5052.55 38) (1924.24 -5081.74 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[-0.317305 -0.948324 0 -58.258] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368021" + "plane" "(1837.01 -5052.55 38) (1838.26 -5051.92 38) (1838.26 -5051.92 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.317305 0.948324 0 58.258] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368020" + "plane" "(1923.61 -5080.48 38) (1924.24 -5081.74 38) (1924.25 -5081.75 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.317305 0.948324 0 58.258] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368019" + "plane" "(1838.27 -5051.92 38) (1923.61 -5080.48 38) (1923.61 -5080.48 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368018" + "plane" "(1924.24 -5081.74 38) (1837.01 -5052.55 38) (1837.01 -5052.55 54)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0.948324 -0.317305 0 18.9199] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "165 146 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "165 146 0" + "groupid" "5467876" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "5468304" + "classname" "func_detail" + solid + { + "id" "5468300" + side + { + "id" "368485" + "plane" "(2192 -5104 160) (2192 -5168 160) (2176 -5168 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 320.004] 0.125" + "vaxis" "[1 0 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368484" + "plane" "(2176 -5104 160) (2176 -5168 160) (2176 -5168 72)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368483" + "plane" "(2192 -5168 72) (2192 -5104 72) (2176 -5104 72)" + "material" "DEV/REFLECTIVITY_20" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368482" + "plane" "(2192 -5168 160) (2192 -5168 72) (2176 -5168 72)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -1343.99] 0.125" + "vaxis" "[1 0 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368481" + "plane" "(2176 -5104 72) (2192 -5104 72) (2192 -5104 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -315.418] 0.125" + "vaxis" "[1 0 0 74.7586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368480" + "plane" "(2192 -5168 160) (2192 -5104 160) (2192 -5104 72)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "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" "5468301" + side + { + "id" "368491" + "plane" "(2280 -5144 160) (2192 -5168 160) (2192 -5104 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 328] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368490" + "plane" "(2280 -5144 160) (2280 -5128 160) (2280 -5128 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" "368489" + "plane" "(2280 -5128 72) (2192 -5104 72) (2192 -5168 72)" + "material" "DEV/REFLECTIVITY_20" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368488" + "plane" "(2280 -5144 72) (2192 -5168 72) (2192 -5168 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368487" + "plane" "(2192 -5104 160) (2192 -5104 72) (2280 -5128 72)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "368486" + "plane" "(2192 -5104 160) (2192 -5168 160) (2192 -5168 72)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +hidden +{ + entity + { + "id" "5468573" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_exit_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1.3" + "origin" "1040 -4416 126.53" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 9500]" + } + } +} +entity +{ + "id" "5447816" + "classname" "func_detail" + solid + { + "id" "6521715" + side + { + "id" "376856" + "plane" "(1576 -4992 0) (1585 -4990 0) (1593 -4985 0)" + "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" "376855" + "plane" "(1600 -4968 0) (1598 -4977 0) (1598 -4977 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.21693 0.976187 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376854" + "plane" "(1598 -4977 160) (1598 -4977 0) (1593 -4985 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.529999 0.847998 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376853" + "plane" "(1593 -4985 160) (1593 -4985 0) (1585 -4990 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.847998 0.529999 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376852" + "plane" "(1585 -4990 160) (1585 -4990 0) (1576 -4992 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.976187 0.216931 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376851" + "plane" "(1600 -4968 160) (1598 -4977 160) (1593 -4985 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" "376850" + "plane" "(1576 -4968 0) (1600 -4968 0) (1600 -4968 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" "376849" + "plane" "(1576 -4992 160) (1576 -4992 0) (1576 -4968 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6521716" + side + { + "id" "376864" + "plane" "(1600 -4968 192) (1598 -4977 192) (1593 -4985 192)" + "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" "376863" + "plane" "(1600 -4968 160) (1598 -4977 160) (1598 -4977 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.21693 0.976187 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376862" + "plane" "(1593 -4985 160) (1593 -4985 192) (1598 -4977 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.529999 0.847998 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376861" + "plane" "(1585 -4990 160) (1585 -4990 192) (1593 -4985 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.847998 0.529999 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376860" + "plane" "(1576 -4992 160) (1576 -4992 192) (1585 -4990 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.976187 0.216931 0 -184] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376859" + "plane" "(1576 -4992 160) (1585 -4990 160) (1593 -4985 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" "376858" + "plane" "(1600 -4968 160) (1600 -4968 192) (1576 -4968 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" "376857" + "plane" "(1576 -4968 192) (1576 -4992 192) (1576 -4992 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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -768]" + } +} +hidden +{ + entity + { + "id" "5449426" + "classname" "prop_static" + "angles" "0 7 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1864 -4484 143.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1268]" + } + } +} +hidden +{ + entity + { + "id" "5449434" + "classname" "prop_static" + "angles" "0 7 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1908 -4484 143.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1268]" + } + } +} +hidden +{ + entity + { + "id" "5449454" + "classname" "prop_static" + "angles" "0 7 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1660 -4484 143.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1268]" + } + } +} +hidden +{ + entity + { + "id" "5449458" + "classname" "prop_static" + "angles" "0 7 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1704 -4484 143.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1268]" + } + } +} +entity +{ + "id" "5449708" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "1784 -4520 3" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "0" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "5449700" + side + { + "id" "366517" + "plane" "(1954 -4502 6) (1952 -4504 6) (1616 -4504 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 39] 0.125" + "vaxis" "[0 1 0 46.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366516" + "plane" "(1952 -4504 0) (1954 -4502 0) (1614 -4502 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" "366515" + "plane" "(1616 -4504 6) (1616 -4504 0) (1614 -4502 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" "366514" + "plane" "(1952 -4504 0) (1952 -4504 6) (1954 -4502 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366513" + "plane" "(1614 -4502 6) (1614 -4502 0) (1954 -4502 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 39] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366512" + "plane" "(1616 -4504 0) (1616 -4504 6) (1952 -4504 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5449701" + side + { + "id" "366523" + "plane" "(1954 -4502 6) (1954 -4538 6) (1952 -4536 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 199] 0.125" + "vaxis" "[1 0 0 -16.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366522" + "plane" "(1954 -4538 0) (1954 -4502 0) (1952 -4504 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" "366521" + "plane" "(1952 -4536 6) (1952 -4536 0) (1952 -4504 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" "366520" + "plane" "(1954 -4538 0) (1954 -4538 6) (1954 -4502 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 199] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366519" + "plane" "(1952 -4504 6) (1952 -4504 0) (1954 -4502 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" "366518" + "plane" "(1952 -4536 0) (1952 -4536 6) (1954 -4538 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5449702" + side + { + "id" "366529" + "plane" "(1954 -4538 6) (1614 -4538 6) (1616 -4536 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -24.9883] 0.125" + "vaxis" "[0 -1 0 -16.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366528" + "plane" "(1952 -4536 0) (1616 -4536 0) (1614 -4538 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" "366527" + "plane" "(1614 -4538 0) (1616 -4536 0) (1616 -4536 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366526" + "plane" "(1954 -4538 6) (1952 -4536 6) (1952 -4536 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" "366525" + "plane" "(1616 -4536 0) (1952 -4536 0) (1952 -4536 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366524" + "plane" "(1614 -4538 6) (1954 -4538 6) (1954 -4538 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -24.9883] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5449703" + side + { + "id" "366535" + "plane" "(1614 -4538 6) (1614 -4502 6) (1616 -4504 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -120.988] 0.125" + "vaxis" "[-1 0 0 46.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366534" + "plane" "(1614 -4502 0) (1614 -4538 0) (1616 -4536 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" "366533" + "plane" "(1614 -4502 0) (1614 -4502 6) (1614 -4538 6)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -120.988] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366532" + "plane" "(1616 -4504 6) (1616 -4504 0) (1616 -4536 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" "366531" + "plane" "(1616 -4504 0) (1616 -4504 6) (1614 -4502 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366530" + "plane" "(1616 -4536 6) (1616 -4536 0) (1614 -4538 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -152.992] 0.125" + "vaxis" "[0 0 -1 47] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +hidden +{ + entity + { + "id" "5449820" + "classname" "prop_static" + "angles" "0 0 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_32x32.mdl" + "renderamt" "255" + "rendercolor" "103 103 103" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1784 -4504 21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 11500]" + } + } +} +hidden +{ + entity + { + "id" "5450008" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1784.38 -4504.26 86" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "5450012" + "classname" "prop_physics_multiplayer" + "angles" "0 90 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "277" + "origin" "1784.38 -4502.26 86" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +entity +{ + "id" "5451433" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "1617 -4505 57" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "5451434" + side + { + "id" "367627" + "plane" "(1615 -4507 104) (1615 -4503 104) (1619 -4503 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 176] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367626" + "plane" "(1615 -4503 10) (1615 -4507 10) (1619 -4507 10)" + "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" "367625" + "plane" "(1615 -4507 10) (1615 -4503 10) (1615 -4503 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 -1004] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367624" + "plane" "(1619 -4503 10) (1619 -4507 10) (1619 -4507 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 100] 0.25" + "vaxis" "[0 1 0 72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367623" + "plane" "(1615 -4503 10) (1619 -4503 10) (1619 -4503 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -980] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367622" + "plane" "(1619 -4507 10) (1615 -4507 10) (1615 -4507 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 100] 0.25" + "vaxis" "[1 0 0 208] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +entity +{ + "id" "5451453" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "1617 -4535 57" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "5451454" + side + { + "id" "367639" + "plane" "(1615 -4537 104) (1615 -4533 104) (1619 -4533 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 176] 0.25" + "vaxis" "[0 -1 0 -216] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367638" + "plane" "(1615 -4533 10) (1615 -4537 10) (1619 -4537 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367637" + "plane" "(1615 -4537 10) (1615 -4533 10) (1615 -4533 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 -100] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367636" + "plane" "(1619 -4533 10) (1619 -4537 10) (1619 -4537 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 100] 0.25" + "vaxis" "[0 1 0 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367635" + "plane" "(1615 -4533 10) (1619 -4533 10) (1619 -4533 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 -980] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367634" + "plane" "(1619 -4537 10) (1615 -4537 10) (1615 -4537 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 100] 0.25" + "vaxis" "[1 0 0 208] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +entity +{ + "id" "5451459" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "1951 -4535 57" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "5451460" + side + { + "id" "367657" + "plane" "(1949 -4537 104) (1949 -4533 104) (1953 -4533 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -136] 0.25" + "vaxis" "[0 -1 0 -216] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367656" + "plane" "(1949 -4533 10) (1949 -4537 10) (1953 -4537 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367655" + "plane" "(1949 -4537 10) (1949 -4533 10) (1949 -4533 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 -100] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367654" + "plane" "(1953 -4533 10) (1953 -4537 10) (1953 -4537 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 100] 0.25" + "vaxis" "[0 1 0 192] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367653" + "plane" "(1949 -4533 10) (1953 -4533 10) (1953 -4533 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 356] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367652" + "plane" "(1953 -4537 10) (1949 -4537 10) (1949 -4537 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 100] 0.25" + "vaxis" "[1 0 0 -104] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +entity +{ + "id" "5451462" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "1951 -4505 57" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "5451463" + side + { + "id" "367663" + "plane" "(1949 -4507 104) (1949 -4503 104) (1953 -4503 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -136] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367662" + "plane" "(1949 -4503 10) (1949 -4507 10) (1953 -4507 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 56] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367661" + "plane" "(1949 -4507 10) (1949 -4503 10) (1949 -4503 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 -1004] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367660" + "plane" "(1953 -4503 10) (1953 -4507 10) (1953 -4507 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 100] 0.25" + "vaxis" "[0 1 0 72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367659" + "plane" "(1949 -4503 10) (1953 -4503 10) (1953 -4503 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[-1 0 0 356] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "367658" + "plane" "(1953 -4507 10) (1949 -4507 10) (1949 -4507 104)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 100] 0.25" + "vaxis" "[1 0 0 -104] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +entity +{ + "id" "5451554" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "1784 -4368 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "5428818" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1027 -4356 0.278198" + editor + { + "color" "101 202 0" + "groupid" "5428817" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "5428822" + "classname" "prop_static" + "angles" "0 202 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1025 -4476 0.278198" + editor + { + "color" "101 202 0" + "groupid" "5428817" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "5428826" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1032 -4416 0.25" + editor + { + "color" "101 202 0" + "groupid" "5428817" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +entity +{ + "id" "5429195" + "classname" "func_detail" + solid + { + "id" "5429093" + side + { + "id" "362074" + "plane" "(1616 -4504 144) (1656 -4504 144) (1618 -4494 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362073" + "plane" "(1618 -4494 160) (1656 -4504 160) (1616 -4504 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362072" + "plane" "(1656 -4504 144) (1616 -4504 144) (1616 -4504 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 15.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362071" + "plane" "(1618 -4494 144) (1656 -4504 144) (1656 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 15.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362070" + "plane" "(1616 -4504 144) (1618 -4494 144) (1618 -4494 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.196115 -0.980581 0 -169.194] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429094" + side + { + "id" "362079" + "plane" "(1618 -4494 144) (1655.98 -4504 144) (1622 -4484 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362078" + "plane" "(1622 -4484 160) (1656.01 -4504 160) (1618 -4494 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362077" + "plane" "(1656 -4504 144) (1618 -4494 144) (1618 -4494 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 15.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362076" + "plane" "(1622 -4484 144) (1656 -4504 144) (1656 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 15.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362075" + "plane" "(1618 -4494 144) (1622 -4484 144) (1622 -4484 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.371391 -0.928477 0 -123.176] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429095" + side + { + "id" "362084" + "plane" "(1622 -4484 144) (1656 -4504 144) (1628 -4476 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362083" + "plane" "(1628 -4476 160) (1656 -4504 160) (1622 -4484 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362082" + "plane" "(1656 -4504 144) (1622 -4484 144) (1622 -4484 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 15.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362081" + "plane" "(1628 -4476 144) (1656 -4504 144) (1656 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362080" + "plane" "(1622 -4484 144) (1628 -4476 144) (1628 -4476 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.6 -0.8 0 -256.359] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429096" + side + { + "id" "362089" + "plane" "(1628 -4476 144) (1656 -4503.99 144) (1636 -4470 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362088" + "plane" "(1636 -4470 160) (1656 -4504 160) (1628 -4476 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362087" + "plane" "(1656 -4504 144) (1628 -4476 144) (1628 -4476 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362086" + "plane" "(1636 -4470 144) (1656 -4504 144) (1656 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362085" + "plane" "(1628 -4476 144) (1636 -4470 144) (1636 -4470 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.8 -0.6 0 -233.971] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429097" + side + { + "id" "362094" + "plane" "(1636 -4470 144) (1656 -4504.01 144) (1646 -4466 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362093" + "plane" "(1646 -4466 160) (1656 -4504 160) (1636 -4470 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362092" + "plane" "(1656 -4504 144) (1636 -4470 144) (1636 -4470 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362091" + "plane" "(1646 -4466 144) (1656 -4504 144) (1656 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362090" + "plane" "(1636 -4470 144) (1646 -4466 144) (1646 -4466 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.928477 -0.371391 0 -112.16] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429098" + side + { + "id" "362099" + "plane" "(1646 -4466 144) (1656 -4503.99 144) (1656 -4464 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362098" + "plane" "(1656 -4464 160) (1656 -4504 160) (1646 -4466 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362097" + "plane" "(1656 -4504 144) (1646 -4466 144) (1646 -4466 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362096" + "plane" "(1656 -4464 144) (1656 -4504 144) (1656 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362095" + "plane" "(1646 -4466 144) (1656 -4464 144) (1656 -4464 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.98058 -0.196117 0 -333.368] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429099" + side + { + "id" "362105" + "plane" "(1708 -4464 160) (1708 -4504 160) (1656 -4504 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362104" + "plane" "(1708 -4504 144) (1708 -4464 144) (1656 -4464 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362103" + "plane" "(1708 -4464 144) (1708 -4504 144) (1708 -4504 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" "362102" + "plane" "(1656 -4504 144) (1656 -4464 144) (1656 -4464 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" "362101" + "plane" "(1708 -4504 144) (1656 -4504 144) (1656 -4504 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362100" + "plane" "(1656 -4464 144) (1708 -4464 144) (1708 -4464 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429101" + side + { + "id" "362110" + "plane" "(1708 -4504 144) (1748 -4504 144) (1746 -4494 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362109" + "plane" "(1748 -4504 160) (1708 -4504 160) (1746 -4494 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362108" + "plane" "(1748 -4504 144) (1708 -4504 144) (1708 -4504 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" "362107" + "plane" "(1708 -4504 144) (1746 -4494 144) (1746 -4494 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" + } + side + { + "id" "362106" + "plane" "(1746 -4494 144) (1748 -4504 144) (1748 -4504 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.196116 0.980581 0 298.402] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429102" + side + { + "id" "362115" + "plane" "(1708 -4504 144) (1746 -4494 144) (1742 -4484 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362114" + "plane" "(1746 -4494 160) (1708 -4504 160) (1742 -4484 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362113" + "plane" "(1746 -4494 144) (1708 -4504 144) (1708 -4504 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" + } + side + { + "id" "362112" + "plane" "(1708 -4504 144) (1742 -4484 144) (1742 -4484 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" + } + side + { + "id" "362111" + "plane" "(1742 -4484 144) (1746 -4494 144) (1746 -4494 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.371391 0.928477 0 349.973] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429103" + side + { + "id" "362120" + "plane" "(1708 -4504 144) (1742 -4484 144) (1736 -4476 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362119" + "plane" "(1742 -4484 160) (1708 -4504 160) (1736 -4476 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362118" + "plane" "(1742 -4484 144) (1708 -4504 144) (1708 -4504 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" + } + side + { + "id" "362117" + "plane" "(1708 -4504 144) (1736 -4476 144) (1736 -4476 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362116" + "plane" "(1736 -4476 144) (1742 -4484 144) (1742 -4484 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.6 0.8 0 434.832] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429104" + side + { + "id" "362125" + "plane" "(1708 -4504 144) (1736 -4476 144) (1728 -4470 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362124" + "plane" "(1736 -4476 160) (1708 -4504 160) (1728 -4470 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362123" + "plane" "(1736 -4476 144) (1708 -4504 144) (1708 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362122" + "plane" "(1708 -4504 144) (1728 -4470 144) (1728 -4470 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362121" + "plane" "(1728 -4470 144) (1736 -4476 144) (1736 -4476 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.8 0.6 0 109.51] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429105" + side + { + "id" "362130" + "plane" "(1708 -4504 144) (1728 -4470 144) (1718 -4466 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362129" + "plane" "(1728 -4470 160) (1708 -4504.01 160) (1718 -4466 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362128" + "plane" "(1728 -4470 144) (1708 -4504 144) (1708 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362127" + "plane" "(1708 -4504 144) (1718 -4466 144) (1718 -4466 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362126" + "plane" "(1718 -4466 144) (1728 -4470 144) (1728 -4470 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.928477 0.371391 0 328.221] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429106" + side + { + "id" "362135" + "plane" "(1708 -4504 144) (1718 -4466 144) (1708 -4464 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 140] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362134" + "plane" "(1718 -4466 160) (1708 -4504 160) (1708 -4464 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362133" + "plane" "(1718 -4466 144) (1708 -4504 144) (1708 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362132" + "plane" "(1708 -4504 144) (1708 -4464 144) (1708 -4464 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362131" + "plane" "(1708 -4464 144) (1718 -4466 144) (1718 -4466 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.98058 0.196117 0 385.71] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 16000]" + } +} +entity +{ + "id" "5429231" + "classname" "func_detail" + solid + { + "id" "5429025" + side + { + "id" "362141" + "plane" "(1912 -4464 160) (1912 -4504 160) (1860 -4504 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362140" + "plane" "(1912 -4504 144) (1912 -4464 144) (1860 -4464 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362139" + "plane" "(1912 -4464 144) (1912 -4504 144) (1912 -4504 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" "362138" + "plane" "(1860 -4504 144) (1860 -4464 144) (1860 -4464 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" "362137" + "plane" "(1912 -4504 144) (1860 -4504 144) (1860 -4504 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.9946] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362136" + "plane" "(1860 -4464 144) (1912 -4464 144) (1912 -4464 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428998" + side + { + "id" "362146" + "plane" "(1912 -4504 144) (1952 -4504 144) (1950 -4494 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362145" + "plane" "(1952 -4504 160) (1912 -4504 160) (1950 -4494 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362144" + "plane" "(1952 -4504 144) (1912 -4504 144) (1912 -4504 160)" + "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" "362143" + "plane" "(1912 -4504 144) (1950 -4494 144) (1950 -4494 160)" + "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" "362142" + "plane" "(1950 -4494 144) (1952 -4504 144) (1952 -4504 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.196116 0.980581 0 198.496] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5428999" + side + { + "id" "362151" + "plane" "(1912 -4504 144) (1950 -4494 144) (1946 -4484 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362150" + "plane" "(1950 -4494 160) (1912 -4504 160) (1946 -4484 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362149" + "plane" "(1950 -4494 144) (1912 -4504 144) (1912 -4504 160)" + "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" "362148" + "plane" "(1912 -4504 144) (1946 -4484 144) (1946 -4484 160)" + "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" "362147" + "plane" "(1946 -4484 144) (1950 -4494 144) (1950 -4494 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.371391 0.928477 0 69.7949] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429000" + side + { + "id" "362156" + "plane" "(1912 -4504 144) (1946 -4484 144) (1940 -4476 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362155" + "plane" "(1946 -4484 160) (1912 -4504 160) (1940 -4476 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362154" + "plane" "(1946 -4484 144) (1912 -4504 144) (1912 -4504 160)" + "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" "362153" + "plane" "(1912 -4504 144) (1940 -4476 144) (1940 -4476 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362152" + "plane" "(1940 -4476 144) (1946 -4484 144) (1946 -4484 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.6 0.8 0 72.3984] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429001" + side + { + "id" "362161" + "plane" "(1912 -4504 144) (1940 -4476 144) (1932 -4470 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362160" + "plane" "(1940 -4476 160) (1912 -4504 160) (1932 -4470 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362159" + "plane" "(1940 -4476 144) (1912 -4504 144) (1912 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362158" + "plane" "(1912 -4504 144) (1932 -4470 144) (1932 -4470 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362157" + "plane" "(1932 -4470 144) (1940 -4476 144) (1940 -4476 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.8 0.6 0 126.805] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429002" + side + { + "id" "362166" + "plane" "(1912 -4504 144) (1932 -4470 144) (1922 -4466 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362165" + "plane" "(1932 -4470 160) (1912 -4504 160) (1922 -4466 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362164" + "plane" "(1932 -4470 144) (1912 -4504 144) (1912 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362163" + "plane" "(1912 -4504 144) (1922 -4466 144) (1922 -4466 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362162" + "plane" "(1922 -4466 144) (1932 -4470 144) (1932 -4470 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.928477 0.371391 0 88.2324] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429003" + side + { + "id" "362171" + "plane" "(1912 -4504 144) (1922 -4466 144) (1912 -4464 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362170" + "plane" "(1922 -4466 160) (1912 -4503.99 160) (1912 -4464 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362169" + "plane" "(1922 -4466 144) (1912 -4504 144) (1912 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362168" + "plane" "(1912 -4504 144) (1912 -4464 144) (1912 -4464 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362167" + "plane" "(1912 -4464 144) (1922 -4466 144) (1922 -4466 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.98058 0.196117 0 260.694] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429036" + side + { + "id" "362176" + "plane" "(1820 -4504 144) (1860 -4504 144) (1822 -4494 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362175" + "plane" "(1822 -4494 160) (1860 -4504 160) (1820 -4504 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362174" + "plane" "(1860 -4504 144) (1820 -4504 144) (1820 -4504 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362173" + "plane" "(1822 -4494 144) (1860 -4504 144) (1860 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 31.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362172" + "plane" "(1820 -4504 144) (1822 -4494 144) (1822 -4494 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.196116 -0.98058 0 -31.3906] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429037" + side + { + "id" "362181" + "plane" "(1822 -4494 144) (1860 -4504 144) (1826 -4484 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362180" + "plane" "(1826 -4484 160) (1860 -4504 160) (1822 -4494 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362179" + "plane" "(1860 -4504 144) (1822 -4494 144) (1822 -4494 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 31.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362178" + "plane" "(1826 -4484 144) (1860 -4504 144) (1860 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 31.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362177" + "plane" "(1822 -4494 144) (1826 -4484 144) (1826 -4484 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.371391 -0.928477 0 -225.475] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429038" + side + { + "id" "362186" + "plane" "(1826 -4484 144) (1860 -4504 144) (1832 -4476 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362185" + "plane" "(1832 -4476 160) (1860 -4504 160) (1826 -4484 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362184" + "plane" "(1860 -4504 144) (1826 -4484 144) (1826 -4484 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 31.9917] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362183" + "plane" "(1832 -4476 144) (1860 -4504 144) (1860 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362182" + "plane" "(1826 -4484 144) (1832 -4476 144) (1832 -4476 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.6 -0.8 0 -478.471] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429039" + side + { + "id" "362191" + "plane" "(1832 -4476 144) (1860 -4504 144) (1840 -4470 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362190" + "plane" "(1840 -4470 160) (1860 -4504 160) (1832 -4476 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362189" + "plane" "(1860 -4504 144) (1832 -4476 144) (1832 -4476 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362188" + "plane" "(1840 -4470 144) (1860 -4504 144) (1860 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362187" + "plane" "(1832 -4476 144) (1840 -4470 144) (1840 -4470 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.8 -0.6 0 -116.77] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429040" + side + { + "id" "362196" + "plane" "(1840 -4470 144) (1860 -4504.02 144) (1850 -4466 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362195" + "plane" "(1850 -4466 160) (1860 -4504 160) (1840 -4470 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362194" + "plane" "(1860 -4504.01 144) (1840 -4470 144) (1840 -4470 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362193" + "plane" "(1850 -4466 144) (1860 -4504 144) (1860 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362192" + "plane" "(1840 -4470 144) (1850 -4466 144) (1850 -4466 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.928477 -0.371391 0 -290.522] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5429041" + side + { + "id" "362201" + "plane" "(1850 -4466 144) (1860 -4504.02 144) (1860 -4464 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 210] 0.125" + "vaxis" "[0 -1 0 -126.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362200" + "plane" "(1860 -4464 160) (1860 -4504 160) (1850 -4466 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362199" + "plane" "(1860 -4504 144) (1850 -4466 144) (1850 -4466 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362198" + "plane" "(1860 -4464 144) (1860 -4504 144) (1860 -4504 160)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362197" + "plane" "(1850 -4466 144) (1860 -4464 144) (1860 -4464 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.98058 -0.196117 0 -426.698] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "262144" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -16268]" + } +} +entity +{ + "id" "5429247" + "classname" "func_detail" + solid + { + "id" "5429026" + side + { + "id" "362219" + "plane" "(1798 -4504 139) (1784 -4504 136) (1770 -4504 139)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362218" + "plane" "(1784 -4496 208) (1770 -4496 205) (1759 -4496 197)" + "material" "CS_APOLLO/DECALS/APOLLO-LOGO" + "uaxis" "[-1 0 0 142.223] 0.140625" + "vaxis" "[0 0 -1 455.111] 0.140625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362217" + "plane" "(1770 -4496 205) (1784 -4496 208) (1784 -4504 208)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362216" + "plane" "(1759 -4496 197) (1770 -4496 205) (1770 -4504 205)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362215" + "plane" "(1759 -4504 197) (1751 -4504 186) (1751 -4496 186)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362214" + "plane" "(1751 -4504 186) (1748 -4504 172) (1748 -4496 172)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362213" + "plane" "(1748 -4504 172) (1751 -4504 158) (1751 -4496 158)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362212" + "plane" "(1751 -4504 158) (1759 -4504 147) (1759.01 -4496 147)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362211" + "plane" "(1759 -4504 147) (1770 -4504 139) (1770 -4496 139)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362210" + "plane" "(1770 -4504 139) (1784 -4504 136) (1784 -4496 136)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362209" + "plane" "(1784 -4504 136) (1798 -4504 139) (1798 -4496 139)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362208" + "plane" "(1798 -4504 139) (1809 -4504 147) (1809 -4496 147)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362207" + "plane" "(1817 -4496 158) (1809 -4496 147) (1809 -4504 147)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362206" + "plane" "(1820 -4496 172) (1817 -4496 158) (1817 -4504 158)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362205" + "plane" "(1817 -4496 186) (1820 -4496 172) (1820 -4504 172)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362204" + "plane" "(1809 -4496 197) (1817 -4496 186) (1817 -4504 186)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362203" + "plane" "(1798 -4496 205) (1809 -4496 197) (1809 -4504 197)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "362202" + "plane" "(1784 -4496 208) (1798 -4496 205) (1798 -4504 205)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 15.9956] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -15768]" + } +} +hidden +{ + entity + { + "id" "5429762" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1226 -5248 -7.59959e-06" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "5429774" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1862 -4240 2.98023e-08" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +entity +{ + "id" "5429879" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02_add.vmt" + "renderamt" "255" + "rendercolor" "223 254 192" + "renderfx" "0" + "rendermode" "9" + "scale" ".7" + "spawnflags" "0" + "origin" "1206 -5245.95 140" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5430099" + "classname" "prop_static" + "angles" "34.1015 199.068 4.80631" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/apollo_14_command_capsule.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2429.47 -4473.56 102.05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5430342" + "classname" "prop_static" + "angles" "0 102 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose04.mdl" + "renderamt" "255" + "rendercolor" "225 225 225" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1515.91 -4803.57 44" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "5431092" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1786.79 -4536.05 93.4799" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "5431096" + "classname" "prop_physics_multiplayer" + "angles" "0 270 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "277" + "origin" "1786.38 -4539.05 93.4799" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "5408999" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005_window.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1428 -5504 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "5409003" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005_window.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1308 -5506 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "5409007" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1308 -5506 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "5409011" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1428 -5504 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "5409015" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1368 -5512 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +entity +{ + "id" "5409263" + "classname" "func_detail" + solid + { + "id" "5409264" + side + { + "id" "356953" + "plane" "(1584 -5872 48) (1568 -5872 48) (1568 -5520 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 320] 0.125" + "vaxis" "[1 0 0 -703.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356952" + "plane" "(1584 -5520 40) (1568 -5520 40) (1568 -5872 40)" + "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" "356951" + "plane" "(1584 -5872 40) (1568 -5872 40) (1568 -5872 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" "356950" + "plane" "(1568 -5520 40) (1584 -5520 40) (1584 -5520 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" "356949" + "plane" "(1568 -5872 40) (1568 -5520 40) (1568 -5520 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356948" + "plane" "(1584 -5520 40) (1584 -5872 40) (1584 -5872 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409265" + side + { + "id" "356959" + "plane" "(1568 -5872 40) (1552 -5872 40) (1552 -5520 40)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 320] 0.125" + "vaxis" "[1 0 0 -703.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356958" + "plane" "(1568 -5520 32) (1552 -5520 32) (1552 -5872 32)" + "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" "356957" + "plane" "(1568 -5872 32) (1552 -5872 32) (1552 -5872 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" "356956" + "plane" "(1552 -5520 32) (1568 -5520 32) (1568 -5520 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" "356955" + "plane" "(1552 -5872 32) (1552 -5520 32) (1552 -5520 40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356954" + "plane" "(1568 -5520 32) (1568 -5872 32) (1568 -5872 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 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" "5409266" + side + { + "id" "356965" + "plane" "(1552 -5872 32) (1536 -5872 32) (1536 -5520 32)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 320] 0.125" + "vaxis" "[1 0 0 -703.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356964" + "plane" "(1552 -5520 24) (1536 -5520 24) (1536 -5872 24)" + "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" "356963" + "plane" "(1552 -5872 24) (1536 -5872 24) (1536 -5872 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" "356962" + "plane" "(1536 -5520 24) (1552 -5520 24) (1552 -5520 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" "356961" + "plane" "(1536 -5872 24) (1536 -5520 24) (1536 -5520 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356960" + "plane" "(1552 -5520 24) (1552 -5872 24) (1552 -5872 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5409267" + side + { + "id" "356971" + "plane" "(1536 -5872 24) (1520 -5872 24) (1520 -5520 24)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 320] 0.125" + "vaxis" "[1 0 0 -703.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356970" + "plane" "(1536 -5520 16) (1520 -5520 16) (1520 -5872 16)" + "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" "356969" + "plane" "(1536 -5872 16) (1520 -5872 16) (1520 -5872 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" "356968" + "plane" "(1520 -5520 16) (1536 -5520 16) (1536 -5520 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" "356967" + "plane" "(1520 -5872 16) (1520 -5520 16) (1520 -5520 24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356966" + "plane" "(1536 -5520 16) (1536 -5872 16) (1536 -5872 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 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" "5409268" + side + { + "id" "356977" + "plane" "(1520 -5872 16) (1504 -5872 16) (1504 -5520 16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 320] 0.125" + "vaxis" "[1 0 0 -703.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356976" + "plane" "(1520 -5520 8) (1504 -5520 8) (1504 -5872 8)" + "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" "356975" + "plane" "(1520 -5872 8) (1504 -5872 8) (1504 -5872 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" "356974" + "plane" "(1504 -5520 8) (1520 -5520 8) (1520 -5520 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" "356973" + "plane" "(1504 -5872 8) (1504 -5520 8) (1504 -5520 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -98] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356972" + "plane" "(1520 -5520 8) (1520 -5872 8) (1520 -5872 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 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" "5409269" + side + { + "id" "356983" + "plane" "(1504 -5872 8) (1488 -5872 8) (1488 -5520 8)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 320] 0.125" + "vaxis" "[1 0 0 -703.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356982" + "plane" "(1504 -5520 0) (1488 -5520 0) (1488 -5872 0)" + "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" "356981" + "plane" "(1504 -5872 0) (1488 -5872 0) (1488 -5872 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" "356980" + "plane" "(1488 -5520 0) (1504 -5520 0) (1504 -5520 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" "356979" + "plane" "(1488 -5872 0) (1488 -5520 0) (1488 -5520 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -192] 0.125" + "vaxis" "[0 0 -1 -37] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356978" + "plane" "(1504 -5520 0) (1504 -5872 0) (1504 -5872 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "5409643" + "classname" "func_detail" + solid + { + "id" "335243" + side + { + "id" "357565" + "plane" "(1987 -4216 2) (1987 -4200 2) (2048 -4200 2)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 773.331] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357564" + "plane" "(1987 -4200 0) (1987 -4216 0) (2048 -4216 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357563" + "plane" "(1987 -4216 0) (1987 -4200 0) (1987 -4200 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357562" + "plane" "(2048 -4200 0) (2048 -4216 0) (2048 -4216 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357561" + "plane" "(1987 -4200 0) (2048 -4200 0) (2048 -4200 2)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357560" + "plane" "(2048 -4216 0) (1987 -4216 0) (1987 -4216 2)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4662641" + side + { + "id" "357553" + "plane" "(2048 -4216 128) (2040 -4216 128) (2040 -4200 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" "357552" + "plane" "(2040 -4200 48) (2040 -4200 128) (2040 -4216 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 0] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357551" + "plane" "(2048 -4200 48) (2048 -4200 128) (2040 -4200 128)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357550" + "plane" "(2040 -4216 48) (2040 -4216 128) (2048 -4216 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357549" + "plane" "(2048 -4216 48) (2048 -4216 128) (2048 -4200 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" "357548" + "plane" "(2048 -4200 48) (2040 -4200 48) (2040 -4216 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4662642" + side + { + "id" "357559" + "plane" "(2048 -4200 0) (2040 -4200 0) (2040 -4216 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" "357558" + "plane" "(2040 -4216 48) (2040 -4216 0) (2040 -4200 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 0] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357557" + "plane" "(2040 -4200 48) (2040 -4200 0) (2048 -4200 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357556" + "plane" "(2048 -4216 48) (2048 -4216 0) (2040 -4216 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "357555" + "plane" "(2048 -4200 48) (2048 -4200 0) (2048 -4216 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" "357554" + "plane" "(2048 -4216 48) (2040 -4216 48) (2040 -4200 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "5410523" + "classname" "func_detail" + solid + { + "id" "5449208" + side + { + "id" "365827" + "plane" "(1448 -4992 144) (1448 -4990 144) (1551.67 -4990 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" "365826" + "plane" "(1448 -4990 40) (1448 -4992 40) (1552 -4992 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "365825" + "plane" "(1448 -4992 40) (1448 -4990 40) (1448 -4990 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "365824" + "plane" "(1448 -4990 40) (1551.67 -4990 40) (1551.67 -4990 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" "365823" + "plane" "(1552 -4992 40) (1448 -4992 40) (1448 -4992 144)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -39.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "365822" + "plane" "(1551.67 -4990 40) (1552 -4992 40) (1552 -4992 144)" + "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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -1768]" + } +} +hidden +{ + entity + { + "id" "5410652" + "classname" "prop_static" + "angles" "0 7 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1481 -4953 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1268]" + } + } +} +hidden +{ + entity + { + "id" "5410679" + "classname" "prop_static" + "angles" "0 7 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1532 -4954 144" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1268]" + } + } +} +entity +{ + "id" "5410683" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 253 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 7 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "1480 -4953 141" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -1268]" + } +} +entity +{ + "id" "5410687" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 253 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 7 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "1531 -4954 141" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -1268]" + } +} +entity +{ + "id" "5410872" + "classname" "func_detail" + solid + { + "id" "6521730" + side + { + "id" "376881" + "plane" "(1416 -4944 0) (1407 -4946 0) (1399 -4951 0)" + "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" "376880" + "plane" "(1416 -4992 160) (1416 -4992 0) (1407 -4990 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.976187 -0.21693 0 315.574] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376879" + "plane" "(1407 -4990 160) (1407 -4990 0) (1399 -4985 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.847998 -0.529999 0 507.614] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376878" + "plane" "(1399 -4985 160) (1399 -4985 0) (1394 -4977 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.529999 -0.847998 0 82.6235] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376877" + "plane" "(1394 -4977 160) (1394 -4977 0) (1392 -4968 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.21693 -0.976187 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376876" + "plane" "(1392 -4968 160) (1392 -4968 0) (1394 -4959.01 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" "376875" + "plane" "(1394 -4959.01 160) (1394 -4959.01 0) (1399 -4951 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" "376874" + "plane" "(1399 -4951 160) (1399 -4951 0) (1407 -4946 0)" + "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" "376873" + "plane" "(1407 -4946 160) (1407 -4946 0) (1416 -4944 0)" + "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" "376872" + "plane" "(1416 -4944 160) (1416 -4992 160) (1407 -4990 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" "376871" + "plane" "(1416 -4944 160) (1416 -4944 0) (1416 -4992 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6521736" + side + { + "id" "376892" + "plane" "(1416 -4944 192) (1416 -4992 192) (1407 -4990 192)" + "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" "376891" + "plane" "(1407 -4990 160) (1407 -4990 192) (1416 -4992 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.976187 -0.216931 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376890" + "plane" "(1399 -4985 160) (1399 -4985 192) (1407 -4990 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.847998 -0.529999 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376889" + "plane" "(1394 -4977 160) (1394 -4977 192) (1399 -4985 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.529999 -0.847998 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376888" + "plane" "(1392 -4968 160) (1392 -4968 192) (1394 -4977 192)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0.21693 -0.976187 0 6] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "376887" + "plane" "(1394 -4959 160) (1394 -4959 192) (1392 -4968 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" "376886" + "plane" "(1399 -4951 160) (1399 -4951 192) (1394 -4959 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" "376885" + "plane" "(1407 -4946 160) (1407 -4946 192) (1399 -4951 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" "376884" + "plane" "(1416 -4944 160) (1416 -4944 192) (1407 -4946 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" "376883" + "plane" "(1416 -4944 160) (1407 -4946 160) (1399 -4951 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" "376882" + "plane" "(1416 -4992 160) (1416 -4992 192) (1416 -4944 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -768]" + } +} +entity +{ + "id" "5374687" + "classname" "func_detail" + solid + { + "id" "5447650" + side + { + "id" "364405" + "plane" "(1680 -5496 48) (1664 -5496 48) (1664 -5332.84 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -447.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364404" + "plane" "(1664 -5332.84 40) (1664 -5496 40) (1680 -5496 40)" + "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" "364403" + "plane" "(1680 -5496 40) (1664 -5496 40) (1664 -5496 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" "364402" + "plane" "(1664 -5496 40) (1664 -5332.84 40) (1664 -5332.84 48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 -99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364401" + "plane" "(1680 -5330.6 40) (1680 -5496 40) (1680 -5496 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" "364400" + "plane" "(1664 -5332.84 40) (1680 -5330.6 40) (1680 -5330.6 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5447651" + side + { + "id" "364411" + "plane" "(1664 -5496 40) (1648 -5496 40) (1648 -5335.07 40)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -447.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364410" + "plane" "(1648 -5335.07 32) (1648 -5496 32) (1664 -5496 32)" + "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" "364409" + "plane" "(1664 -5496 32) (1648 -5496 32) (1648 -5496 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" "364408" + "plane" "(1648 -5496 32) (1648 -5335.07 32) (1648 -5335.07 40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364407" + "plane" "(1664 -5332.84 32) (1664 -5496 32) (1664 -5496 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" "364406" + "plane" "(1648 -5335.07 32) (1664 -5332.84 32) (1664 -5332.84 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5447652" + side + { + "id" "364417" + "plane" "(1648 -5496 32) (1632 -5496 32) (1632 -5337.3 32)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -447.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364416" + "plane" "(1632 -5337.3 24) (1632 -5496 24) (1648 -5496 24)" + "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" "364415" + "plane" "(1648 -5496 24) (1632 -5496 24) (1632 -5496 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" "364414" + "plane" "(1632 -5496 24) (1632 -5337.3 24) (1632 -5337.3 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 -99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364413" + "plane" "(1648 -5335.07 24) (1648 -5496 24) (1648 -5496 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" "364412" + "plane" "(1632 -5337.3 24) (1648 -5335.07 24) (1648 -5335.07 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5447653" + side + { + "id" "364423" + "plane" "(1632 -5496 24) (1616 -5496 24) (1616 -5339.53 24)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -447.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364422" + "plane" "(1616 -5339.54 16) (1616 -5496 16) (1632 -5496 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" "364421" + "plane" "(1632 -5496 16) (1616 -5496 16) (1616 -5496 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" "364420" + "plane" "(1616 -5496 16) (1616 -5339.54 16) (1616 -5339.54 24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364419" + "plane" "(1632 -5337.3 16) (1632 -5496 16) (1632 -5496 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" "364418" + "plane" "(1616 -5339.53 16) (1632 -5337.3 16) (1632 -5337.3 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5447654" + side + { + "id" "364429" + "plane" "(1616 -5496 16) (1600 -5496 16) (1600 -5341.77 16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -447.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364428" + "plane" "(1600 -5341.77 8) (1600 -5496 8) (1616 -5496 8)" + "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" "364427" + "plane" "(1616 -5496 8) (1600 -5496 8) (1600 -5496 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" "364426" + "plane" "(1600 -5496 8) (1600 -5341.77 8) (1600 -5341.77 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 -98] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364425" + "plane" "(1616 -5339.54 8) (1616 -5496 8) (1616 -5496 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" "364424" + "plane" "(1600 -5341.77 8) (1616 -5339.53 8) (1616 -5339.53 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5447655" + side + { + "id" "364435" + "plane" "(1600 -5496 8) (1584 -5496 8) (1584 -5344 8)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -447.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364434" + "plane" "(1584 -5344 0) (1584 -5496 0) (1600 -5496 0)" + "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" "364433" + "plane" "(1600 -5496 0) (1584 -5496 0) (1584 -5496 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" "364432" + "plane" "(1584 -5496 0) (1584 -5344 0) (1584 -5344 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 -37] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "364431" + "plane" "(1600 -5341.77 0) (1600 -5496 0) (1600 -5496 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" "364430" + "plane" "(1584 -5344 0) (1600 -5341.77 0) (1600 -5341.77 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "5357824" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "234 -4088 -194.748" + editor + { + "color" "251 104 0" + "groupid" "5357810" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5323602" + "classname" "func_detail" + solid + { + "id" "5323603" + side + { + "id" "351961" + "plane" "(-1149 -3784 -97) (-1149 -3784 -105) (-1175 -3784 -105)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[-1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351960" + "plane" "(-1175 -3751 -97) (-1175 -3751 -105) (-1149 -3751 -105)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351959" + "plane" "(-1149 -3751 -97) (-1149 -3751 -105) (-1149 -3784 -105)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351958" + "plane" "(-1175 -3784 -97) (-1175 -3784 -105) (-1175 -3751 -105)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351957" + "plane" "(-1175 -3751 -97) (-1149 -3751 -97) (-1149 -3784 -97)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 40.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351956" + "plane" "(-1149 -3751 -105) (-1175 -3751 -105) (-1175 -3784 -105)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 40.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323604" + side + { + "id" "351967" + "plane" "(-1216 -3751 -96) (-1175 -3751 -96) (-1175 -3784 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351966" + "plane" "(-1175 -3751 -106) (-1216 -3751 -106) (-1216 -3784 -106)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[1 0 0 384.007] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351965" + "plane" "(-1175 -3784 -106) (-1216 -3784 -106) (-1216 -3784 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -8.00342] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351964" + "plane" "(-1216 -3751 -106) (-1175 -3751 -106) (-1175 -3751 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351963" + "plane" "(-1216 -3784 -106) (-1216 -3751 -106) (-1216 -3751 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351962" + "plane" "(-1175 -3751 -106) (-1175 -3784 -106) (-1175 -3784 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323605" + side + { + "id" "351973" + "plane" "(-1108 -3751 -96) (-1098 -3751 -96) (-1098 -3784 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351972" + "plane" "(-1098 -3751 -224) (-1108 -3751 -224) (-1108 -3784 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 16.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351971" + "plane" "(-1098 -3784 -224) (-1108 -3784 -224) (-1108 -3784 -96)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -296] 0.125" + "vaxis" "[0 0 -1 -993.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351970" + "plane" "(-1108 -3751 -224) (-1098 -3751 -224) (-1098 -3751 -96)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[1 0 0 -1.46868] 0.245" + "vaxis" "[0 0 -1 -68.683] 0.205" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351969" + "plane" "(-1108 -3784 -224) (-1108 -3751 -224) (-1108 -3751 -96)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[0 0 -1 -993.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351968" + "plane" "(-1098 -3751 -224) (-1098 -3784 -224) (-1098 -3784 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323606" + side + { + "id" "351979" + "plane" "(-1175 -3751 -96) (-1149 -3751 -96) (-1149 -3784 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351978" + "plane" "(-1149 -3784 -97) (-1175 -3784 -97) (-1175 -3784 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -8.00342] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351977" + "plane" "(-1175 -3751 -97) (-1149 -3751 -97) (-1149 -3751 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351976" + "plane" "(-1149 -3751 -97) (-1175 -3751 -97) (-1175 -3784 -97)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 40.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351975" + "plane" "(-1175 -3751 -97) (-1175 -3751 -96) (-1175 -3784 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351974" + "plane" "(-1149 -3784 -97) (-1149 -3784 -96) (-1149 -3751 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323607" + side + { + "id" "351985" + "plane" "(-1226 -3751 -96) (-1216 -3751 -96) (-1216 -3784 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351984" + "plane" "(-1216 -3751 -224) (-1226 -3751 -224) (-1226 -3784 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16.7598] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351983" + "plane" "(-1216 -3784 -224) (-1226 -3784 -224) (-1226 -3784 -96)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 376.003] 0.125" + "vaxis" "[0 0 1 720.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351982" + "plane" "(-1226 -3751 -224) (-1216 -3751 -224) (-1216 -3751 -96)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[-1 0 0 -14.5313] 0.245" + "vaxis" "[0 0 -1 -68.683] 0.205" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351981" + "plane" "(-1226 -3784 -224) (-1226 -3751 -224) (-1226 -3751 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351980" + "plane" "(-1216 -3751 -224) (-1216 -3784 -224) (-1216 -3784 -96)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[0 0 1 720.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323608" + side + { + "id" "351991" + "plane" "(-1149 -3751 -106) (-1175 -3751 -106) (-1175 -3784 -106)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[1 0 0 384.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351990" + "plane" "(-1149 -3784 -106) (-1175 -3784 -106) (-1175 -3784 -105)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -8.00342] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351989" + "plane" "(-1175 -3751 -106) (-1149 -3751 -106) (-1149 -3751 -105)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351988" + "plane" "(-1175 -3751 -105) (-1149 -3751 -105) (-1149 -3784 -105)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 40.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351987" + "plane" "(-1175 -3784 -105) (-1175 -3784 -106) (-1175 -3751 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351986" + "plane" "(-1149 -3751 -105) (-1149 -3751 -106) (-1149 -3784 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323609" + side + { + "id" "351997" + "plane" "(-1149 -3751 -96) (-1108 -3751 -96) (-1108 -3784 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351996" + "plane" "(-1108 -3751 -106) (-1149 -3751 -106) (-1149 -3784 -106)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[1 0 0 526.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351995" + "plane" "(-1108 -3784 -106) (-1149 -3784 -106) (-1149 -3784 -96)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 -1 -472] 0.125" + "vaxis" "[1 0 0 526.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351994" + "plane" "(-1149 -3751 -106) (-1108 -3751 -106) (-1108 -3751 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351993" + "plane" "(-1108 -3751 -106) (-1108 -3784 -106) (-1108 -3784 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351992" + "plane" "(-1149 -3784 -106) (-1149 -3751 -106) (-1149 -3751 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 186 211" + "groupid" "5323601" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "5323613" + "classname" "func_detail" + solid + { + "id" "5323614" + side + { + "id" "352015" + "plane" "(-955 -3785 -97) (-955 -3785 -105) (-981 -3785 -105)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[-1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352014" + "plane" "(-981 -3752 -97) (-981 -3752 -105) (-955 -3752 -105)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352013" + "plane" "(-955 -3752 -97) (-955 -3752 -105) (-955 -3785 -105)" + "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" "352012" + "plane" "(-981 -3785 -97) (-981 -3785 -105) (-981 -3752 -105)" + "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" "352011" + "plane" "(-981 -3752 -97) (-955 -3752 -97) (-955 -3785 -97)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352010" + "plane" "(-955 -3752 -105) (-981 -3752 -105) (-981 -3785 -105)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323615" + side + { + "id" "352021" + "plane" "(-1022 -3752 -96) (-981 -3752 -96) (-981 -3785 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352020" + "plane" "(-981 -3752 -106) (-1022 -3752 -106) (-1022 -3785 -106)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[1 0 0 526.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352019" + "plane" "(-981 -3785 -106) (-1022 -3785 -106) (-1022 -3785 -96)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 -1 -472] 0.125" + "vaxis" "[1 0 0 526.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352018" + "plane" "(-1022 -3752 -106) (-981 -3752 -106) (-981 -3752 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352017" + "plane" "(-1022 -3785 -106) (-1022 -3752 -106) (-1022 -3752 -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" "352016" + "plane" "(-981 -3752 -106) (-981 -3785 -106) (-981 -3785 -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" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323616" + side + { + "id" "352027" + "plane" "(-914 -3752 -96) (-904 -3752 -96) (-904 -3785 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352026" + "plane" "(-904 -3752 -224) (-914 -3752 -224) (-914 -3785 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352025" + "plane" "(-904 -3785 -224) (-914 -3785 -224) (-914 -3785 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -8.00342] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352024" + "plane" "(-914 -3752 -224) (-904 -3752 -224) (-904 -3752 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 7.99561] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352023" + "plane" "(-914 -3785 -224) (-914 -3752 -224) (-914 -3752 -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" "352022" + "plane" "(-904 -3752 -224) (-904 -3785 -224) (-904 -3785 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323617" + side + { + "id" "352033" + "plane" "(-981 -3752 -96) (-955 -3752 -96) (-955 -3785 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352032" + "plane" "(-955 -3785 -97) (-981 -3785 -97) (-981 -3785 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -0.00341797] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352031" + "plane" "(-981 -3752 -97) (-955 -3752 -97) (-955 -3752 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352030" + "plane" "(-955 -3752 -97) (-981 -3752 -97) (-981 -3785 -97)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352029" + "plane" "(-981 -3752 -97) (-981 -3752 -96) (-981 -3785 -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" "352028" + "plane" "(-955 -3785 -97) (-955 -3785 -96) (-955 -3752 -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" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323618" + side + { + "id" "352039" + "plane" "(-1032 -3752 -96) (-1022 -3752 -96) (-1022 -3785 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352038" + "plane" "(-1022 -3752 -224) (-1032 -3752 -224) (-1032 -3785 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.7598] 0.25" + "vaxis" "[1 0 0 24.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352037" + "plane" "(-1022 -3785 -224) (-1032 -3785 -224) (-1032 -3785 -96)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 360.003] 0.125" + "vaxis" "[0 0 -1 -306] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352036" + "plane" "(-1032 -3752 -224) (-1022 -3752 -224) (-1022 -3752 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -4.76904] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352035" + "plane" "(-1032 -3785 -224) (-1032 -3752 -224) (-1032 -3752 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352034" + "plane" "(-1022 -3752 -224) (-1022 -3785 -224) (-1022 -3785 -96)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[0 0 -1 -306] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323619" + side + { + "id" "352045" + "plane" "(-955 -3752 -106) (-981 -3752 -106) (-981 -3785 -106)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352044" + "plane" "(-955 -3785 -106) (-981 -3785 -106) (-981 -3785 -105)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -0.00341797] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352043" + "plane" "(-981 -3752 -106) (-955 -3752 -106) (-955 -3752 -105)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352042" + "plane" "(-981 -3752 -105) (-955 -3752 -105) (-955 -3785 -105)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352041" + "plane" "(-981 -3785 -105) (-981 -3785 -106) (-981 -3752 -106)" + "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" "352040" + "plane" "(-955 -3752 -105) (-955 -3752 -106) (-955 -3785 -106)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5323620" + side + { + "id" "352051" + "plane" "(-955 -3752 -96) (-914 -3752 -96) (-914 -3785 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352050" + "plane" "(-914 -3752 -106) (-955 -3752 -106) (-955 -3785 -106)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352049" + "plane" "(-914 -3785 -106) (-955 -3785 -106) (-955 -3785 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -0.00341797] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352048" + "plane" "(-955 -3752 -106) (-914 -3752 -106) (-914 -3752 -96)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352047" + "plane" "(-914 -3752 -106) (-914 -3785 -106) (-914 -3785 -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" "352046" + "plane" "(-955 -3785 -106) (-955 -3752 -106) (-955 -3752 -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" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 186 211" + "groupid" "5323612" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "5324011" + "classname" "func_detail" + solid + { + "id" "5324001" + side + { + "id" "352136" + "plane" "(-448 -4800 -224) (-416 -4784 -224) (-400 -4800 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352135" + "plane" "(-400 -4800 -272) (-416 -4784 -272) (-448 -4800 -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" "352134" + "plane" "(-448 -4800 -272) (-448 -4800 -224) (-400 -4800 -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" "352133" + "plane" "(-416 -4784 -272) (-416 -4784 -224) (-448 -4800 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[0.894427 0.447214 0 284.66] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352132" + "plane" "(-400 -4800 -272) (-400 -4800 -224) (-416 -4784 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324002" + side + { + "id" "352141" + "plane" "(-400 -4800 -224) (-416 -4784 -224) (-400 -4752 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352140" + "plane" "(-400 -4752 -272) (-416 -4784 -272) (-400 -4800 -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" "352139" + "plane" "(-400 -4800 -272) (-400 -4800 -224) (-400 -4752 -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" "352138" + "plane" "(-400 -4752 -272) (-400 -4752 -224) (-416 -4784 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[0.447214 0.894427 0 39.8281] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352137" + "plane" "(-416 -4784 -272) (-416 -4784 -224) (-400 -4800 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "5324021" + "classname" "func_detail" + solid + { + "id" "5324022" + side + { + "id" "352156" + "plane" "(-1400 -4752 -224) (-1384 -4784 -224) (-1400 -4800 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352155" + "plane" "(-1400 -4800 -272) (-1384 -4784 -272) (-1400 -4752 -272)" + "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" "352154" + "plane" "(-1400 -4752 -272) (-1400 -4752 -224) (-1400 -4800 -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" "352153" + "plane" "(-1384 -4784 -272) (-1384 -4784 -224) (-1400 -4752 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[0.447214 -0.894427 0 -828.699] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352152" + "plane" "(-1400 -4800 -272) (-1400 -4800 -224) (-1384 -4784 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 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" "5324023" + side + { + "id" "352161" + "plane" "(-1400 -4800 -224) (-1384 -4784 -224) (-1352 -4800 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352160" + "plane" "(-1352 -4800 -272) (-1384 -4784 -272) (-1400 -4800 -272)" + "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" "352159" + "plane" "(-1400 -4800 -272) (-1400 -4800 -224) (-1352 -4800 -224)" + "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" "352158" + "plane" "(-1352 -4800 -272) (-1352 -4800 -224) (-1384 -4784 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[0.894427 -0.447214 0 674.465] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352157" + "plane" "(-1384 -4784 -272) (-1384 -4784 -224) (-1400 -4800 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "5324042" + "classname" "func_detail" + solid + { + "id" "5324043" + side + { + "id" "352176" + "plane" "(-1352 -3944 -224) (-1384 -3960 -224) (-1400 -3944 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352175" + "plane" "(-1400 -3944 -272) (-1384 -3960 -272) (-1352 -3944 -272)" + "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" "352174" + "plane" "(-1352 -3944 -272) (-1352 -3944 -224) (-1400 -3944 -224)" + "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" "352173" + "plane" "(-1384 -3960 -272) (-1384 -3960 -224) (-1352 -3944 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[-0.894427 -0.447214 0 -588.956] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352172" + "plane" "(-1400 -3944 -272) (-1400 -3944 -224) (-1384 -3960 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 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" "5324044" + side + { + "id" "352181" + "plane" "(-1400 -3944 -224) (-1384 -3960 -224) (-1400 -3992 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352180" + "plane" "(-1400 -3992 -272) (-1384 -3960 -272) (-1400 -3944 -272)" + "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" "352179" + "plane" "(-1400 -3944 -272) (-1400 -3944 -224) (-1400 -3992 -224)" + "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" "352178" + "plane" "(-1400 -3992 -272) (-1400 -3992 -224) (-1384 -3960 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[-0.447213 -0.894427 0 -559.389] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352177" + "plane" "(-1384 -3960 -272) (-1384 -3960 -224) (-1400 -3944 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "5324066" + "classname" "func_detail" + solid + { + "id" "5324067" + side + { + "id" "352196" + "plane" "(-400 -4432 -224) (-416 -4400 -224) (-400 -4384 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352195" + "plane" "(-400 -4384 -272) (-416 -4400 -272) (-400 -4432 -272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352194" + "plane" "(-400 -4432 -272) (-400 -4432 -224) (-400 -4384 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352193" + "plane" "(-416 -4400 -272) (-416 -4400 -224) (-400 -4432 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[-0.447214 0.894427 0 132.789] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352192" + "plane" "(-400 -4384 -272) (-400 -4384 -224) (-416 -4400 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324068" + side + { + "id" "352201" + "plane" "(-400 -4384 -224) (-416 -4400 -224) (-448 -4384 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352200" + "plane" "(-448 -4384 -272) (-416 -4400 -272) (-400 -4384 -272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352199" + "plane" "(-400 -4384 -272) (-400 -4384 -224) (-448 -4384 -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" "352198" + "plane" "(-448 -4384 -272) (-448 -4384 -224) (-416 -4400 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[-0.894427 0.447213 0 -442.793] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352197" + "plane" "(-416 -4400 -272) (-416 -4400 -224) (-400 -4384 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "5324093" + "classname" "func_detail" + solid + { + "id" "5324094" + side + { + "id" "352216" + "plane" "(-816 -3992 -224) (-832 -3960 -224) (-816 -3944 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352215" + "plane" "(-816 -3944 -272) (-832 -3960 -272) (-816 -3992 -272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.002] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352214" + "plane" "(-816 -3992 -272) (-816 -3992 -224) (-816 -3944 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.002] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352213" + "plane" "(-832 -3960 -272) (-832 -3960 -224) (-816 -3992 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[-0.447214 0.894427 0 -429.455] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352212" + "plane" "(-816 -3944 -272) (-816 -3944 -224) (-832 -3960 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324095" + side + { + "id" "352221" + "plane" "(-816 -3944 -224) (-832 -3960 -224) (-864 -3944 -224)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "352220" + "plane" "(-864 -3944 -272) (-832 -3960 -272) (-816 -3944 -272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32.002] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352219" + "plane" "(-816 -3944 -272) (-816 -3944 -224) (-864 -3944 -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" "352218" + "plane" "(-864 -3944 -272) (-864 -3944 -224) (-832 -3960 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 0 1 365] 0.063" + "vaxis" "[-0.894427 0.447213 0 -899.81] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352217" + "plane" "(-832 -3960 -272) (-832 -3960 -224) (-816 -3944 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +hidden +{ + entity + { + "id" "5324120" + "classname" "prop_dynamic" + "angles" "0 0 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-1515 -4523 -480" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324124" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1515 -4523 -479.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324144" + "classname" "prop_dynamic" + "angles" "0 0 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-1516 -4400 -480" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324148" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1516 -4400 -479.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5324174" + "classname" "func_detail" + solid + { + "id" "5324175" + side + { + "id" "352335" + "plane" "(-955 -3785 -353) (-955 -3785 -361) (-981 -3785 -361)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[-1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352334" + "plane" "(-981 -3752 -353) (-981 -3752 -361) (-955 -3752 -361)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352333" + "plane" "(-955 -3752 -353) (-955 -3752 -361) (-955 -3785 -361)" + "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" "352332" + "plane" "(-981 -3785 -353) (-981 -3785 -361) (-981 -3752 -361)" + "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" "352331" + "plane" "(-981 -3752 -353) (-955 -3752 -353) (-955 -3785 -353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352330" + "plane" "(-955 -3752 -361) (-981 -3752 -361) (-981 -3785 -361)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324176" + side + { + "id" "352341" + "plane" "(-1022 -3752 -352) (-981 -3752 -352) (-981 -3785 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352340" + "plane" "(-981 -3752 -362) (-1022 -3752 -362) (-1022 -3785 -362)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[1 0 0 526.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352339" + "plane" "(-981 -3785 -362) (-1022 -3785 -362) (-1022 -3785 -352)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 -1 -472] 0.125" + "vaxis" "[1 0 0 526.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352338" + "plane" "(-1022 -3752 -362) (-981 -3752 -362) (-981 -3752 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352337" + "plane" "(-1022 -3785 -362) (-1022 -3752 -362) (-1022 -3752 -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" "352336" + "plane" "(-981 -3752 -362) (-981 -3785 -362) (-981 -3785 -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" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324177" + side + { + "id" "352347" + "plane" "(-914 -3752 -352) (-904 -3752 -352) (-904 -3785 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352346" + "plane" "(-904 -3752 -480) (-914 -3752 -480) (-914 -3785 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352345" + "plane" "(-904 -3785 -480) (-914 -3785 -480) (-914 -3785 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -8.00342] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352344" + "plane" "(-914 -3752 -480) (-904 -3752 -480) (-904 -3752 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 7.99561] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352343" + "plane" "(-914 -3785 -480) (-914 -3752 -480) (-914 -3752 -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" "352342" + "plane" "(-904 -3752 -480) (-904 -3785 -480) (-904 -3785 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324178" + side + { + "id" "352353" + "plane" "(-981 -3752 -352) (-955 -3752 -352) (-955 -3785 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352352" + "plane" "(-955 -3785 -353) (-981 -3785 -353) (-981 -3785 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -0.00341797] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352351" + "plane" "(-981 -3752 -353) (-955 -3752 -353) (-955 -3752 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352350" + "plane" "(-955 -3752 -353) (-981 -3752 -353) (-981 -3785 -353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352349" + "plane" "(-981 -3752 -353) (-981 -3752 -352) (-981 -3785 -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" "352348" + "plane" "(-955 -3785 -353) (-955 -3785 -352) (-955 -3752 -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" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324179" + side + { + "id" "352359" + "plane" "(-1032 -3752 -352) (-1022 -3752 -352) (-1022 -3785 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352358" + "plane" "(-1022 -3752 -480) (-1032 -3752 -480) (-1032 -3785 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12.7598] 0.25" + "vaxis" "[1 0 0 24.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352357" + "plane" "(-1022 -3785 -480) (-1032 -3785 -480) (-1032 -3785 -352)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 360.003] 0.125" + "vaxis" "[0 0 -1 -306] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352356" + "plane" "(-1032 -3752 -480) (-1022 -3752 -480) (-1022 -3752 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -4.76904] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352355" + "plane" "(-1032 -3785 -480) (-1032 -3752 -480) (-1032 -3752 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352354" + "plane" "(-1022 -3752 -480) (-1022 -3785 -480) (-1022 -3785 -352)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[0 0 -1 -306] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324180" + side + { + "id" "352365" + "plane" "(-955 -3752 -362) (-981 -3752 -362) (-981 -3785 -362)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352364" + "plane" "(-955 -3785 -362) (-981 -3785 -362) (-981 -3785 -361)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -0.00341797] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352363" + "plane" "(-981 -3752 -362) (-955 -3752 -362) (-955 -3752 -361)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352362" + "plane" "(-981 -3752 -361) (-955 -3752 -361) (-955 -3785 -361)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352361" + "plane" "(-981 -3785 -361) (-981 -3785 -362) (-981 -3752 -362)" + "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" "352360" + "plane" "(-955 -3752 -361) (-955 -3752 -362) (-955 -3785 -362)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324181" + side + { + "id" "352371" + "plane" "(-955 -3752 -352) (-914 -3752 -352) (-914 -3785 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352370" + "plane" "(-914 -3752 -362) (-955 -3752 -362) (-955 -3785 -362)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352369" + "plane" "(-914 -3785 -362) (-955 -3785 -362) (-955 -3785 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -0.00341797] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352368" + "plane" "(-955 -3752 -362) (-914 -3752 -362) (-914 -3752 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 0.00341797] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352367" + "plane" "(-914 -3752 -362) (-914 -3785 -362) (-914 -3785 -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" "352366" + "plane" "(-955 -3785 -362) (-955 -3752 -362) (-955 -3752 -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" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 186 211" + "groupid" "5324173" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "5324186" + "classname" "func_detail" + solid + { + "id" "5324187" + side + { + "id" "352395" + "plane" "(-1149 -3784 -353) (-1149 -3784 -361) (-1175 -3784 -361)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[-1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352394" + "plane" "(-1175 -3751 -353) (-1175 -3751 -361) (-1149 -3751 -361)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352393" + "plane" "(-1149 -3751 -353) (-1149 -3751 -361) (-1149 -3784 -361)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352392" + "plane" "(-1175 -3784 -353) (-1175 -3784 -361) (-1175 -3751 -361)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352391" + "plane" "(-1175 -3751 -353) (-1149 -3751 -353) (-1149 -3784 -353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 40.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352390" + "plane" "(-1149 -3751 -361) (-1175 -3751 -361) (-1175 -3784 -361)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 40.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324188" + side + { + "id" "352401" + "plane" "(-1216 -3751 -352) (-1175 -3751 -352) (-1175 -3784 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352400" + "plane" "(-1175 -3751 -362) (-1216 -3751 -362) (-1216 -3784 -362)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[1 0 0 384.007] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352399" + "plane" "(-1175 -3784 -362) (-1216 -3784 -362) (-1216 -3784 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -8.00342] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352398" + "plane" "(-1216 -3751 -362) (-1175 -3751 -362) (-1175 -3751 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352397" + "plane" "(-1216 -3784 -362) (-1216 -3751 -362) (-1216 -3751 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352396" + "plane" "(-1175 -3751 -362) (-1175 -3784 -362) (-1175 -3784 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324189" + side + { + "id" "352407" + "plane" "(-1108 -3751 -352) (-1098 -3751 -352) (-1098 -3784 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352406" + "plane" "(-1098 -3751 -480) (-1108 -3751 -480) (-1108 -3784 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 16.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352405" + "plane" "(-1098 -3784 -480) (-1108 -3784 -480) (-1108 -3784 -352)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -296] 0.125" + "vaxis" "[0 0 -1 -993.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352404" + "plane" "(-1108 -3751 -480) (-1098 -3751 -480) (-1098 -3751 -352)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[1 0 0 -1.46869] 0.245" + "vaxis" "[0 0 -1 -293.463] 0.205" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352403" + "plane" "(-1108 -3784 -480) (-1108 -3751 -480) (-1108 -3751 -352)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[0 0 -1 -993.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352402" + "plane" "(-1098 -3751 -480) (-1098 -3784 -480) (-1098 -3784 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324190" + side + { + "id" "352413" + "plane" "(-1175 -3751 -352) (-1149 -3751 -352) (-1149 -3784 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352412" + "plane" "(-1149 -3784 -353) (-1175 -3784 -353) (-1175 -3784 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -8.00342] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352411" + "plane" "(-1175 -3751 -353) (-1149 -3751 -353) (-1149 -3751 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352410" + "plane" "(-1149 -3751 -353) (-1175 -3751 -353) (-1175 -3784 -353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 40.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352409" + "plane" "(-1175 -3751 -353) (-1175 -3751 -352) (-1175 -3784 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352408" + "plane" "(-1149 -3784 -353) (-1149 -3784 -352) (-1149 -3751 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324191" + side + { + "id" "352419" + "plane" "(-1226 -3751 -352) (-1216 -3751 -352) (-1216 -3784 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352418" + "plane" "(-1216 -3751 -480) (-1226 -3751 -480) (-1226 -3784 -480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16.7598] 0.25" + "vaxis" "[1 0 0 32.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352417" + "plane" "(-1216 -3784 -480) (-1226 -3784 -480) (-1226 -3784 -352)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 376.003] 0.125" + "vaxis" "[0 0 1 720.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352416" + "plane" "(-1226 -3751 -480) (-1216 -3751 -480) (-1216 -3751 -352)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[-1 0 0 -14.5313] 0.245" + "vaxis" "[0 0 -1 -293.463] 0.205" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352415" + "plane" "(-1226 -3784 -480) (-1226 -3751 -480) (-1226 -3751 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352414" + "plane" "(-1216 -3751 -480) (-1216 -3784 -480) (-1216 -3784 -352)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[0 0 1 720.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324192" + side + { + "id" "352425" + "plane" "(-1149 -3751 -362) (-1175 -3751 -362) (-1175 -3784 -362)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[1 0 0 384.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352424" + "plane" "(-1149 -3784 -362) (-1175 -3784 -362) (-1175 -3784 -361)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -8.00342] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352423" + "plane" "(-1175 -3751 -362) (-1149 -3751 -362) (-1149 -3751 -361)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 7.99609] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352422" + "plane" "(-1175 -3751 -361) (-1149 -3751 -361) (-1149 -3784 -361)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[1 0 0 40.0034] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352421" + "plane" "(-1175 -3784 -361) (-1175 -3784 -362) (-1175 -3751 -362)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352420" + "plane" "(-1149 -3751 -361) (-1149 -3751 -362) (-1149 -3784 -362)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5324193" + side + { + "id" "352431" + "plane" "(-1149 -3751 -352) (-1108 -3751 -352) (-1108 -3784 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[1 0 0 8.00342] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352430" + "plane" "(-1108 -3751 -362) (-1149 -3751 -362) (-1149 -3784 -362)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[1 0 0 526.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352429" + "plane" "(-1108 -3784 -362) (-1149 -3784 -362) (-1149 -3784 -352)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 -1 -472] 0.125" + "vaxis" "[1 0 0 526.003] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352428" + "plane" "(-1149 -3751 -362) (-1108 -3751 -362) (-1108 -3751 -352)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 0 1 0] 0.25" + "vaxis" "[1 0 0 0.00146484] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352427" + "plane" "(-1108 -3751 -362) (-1108 -3784 -362) (-1108 -3784 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352426" + "plane" "(-1149 -3784 -362) (-1149 -3751 -362) (-1149 -3751 -352)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 186 211" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 186 211" + "groupid" "5324185" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "5324386" + "classname" "prop_static" + "angles" "0 359 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1560 -3872 -104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324390" + "classname" "prop_static" + "angles" "0 359 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1560.19 -3883 -102.401" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324410" + "classname" "prop_static" + "angles" "0 359 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1560 -4182.81 -104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324414" + "classname" "prop_static" + "angles" "0 359 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1560.19 -4193.81 -102.401" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324442" + "classname" "prop_static" + "angles" "0 359 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1560 -4831 -104" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324446" + "classname" "prop_static" + "angles" "0 359 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1560.19 -4842 -102.401" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324474" + "classname" "prop_static" + "angles" "0 89 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1251 -4984 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324478" + "classname" "prop_static" + "angles" "0 89 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1240 -4984.19 -90.401" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324514" + "classname" "prop_static" + "angles" "0 89 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-786.82 -4984 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324518" + "classname" "prop_static" + "angles" "0 89 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-775.82 -4984.19 -90.401" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324562" + "classname" "prop_static" + "angles" "0 89 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-290.192 -4984.19 -90.401" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5324566" + "classname" "prop_static" + "angles" "0 89 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-301.192 -4984 -92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5324882" + "classname" "func_detail" + solid + { + "id" "7005235" + side + { + "id" "379041" + "plane" "(-1560 -4984 -224) (-1432 -4984 -224) (-1520 -4944 -224)" + "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" "379040" + "plane" "(-1432 -4984 -224) (-1560 -4984 -224) (-1560 -4984 -184)" + "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" "379039" + "plane" "(-1520 -4944 -224) (-1432 -4984 -224) (-1432 -4984 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0.910366 -0.413803 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379038" + "plane" "(-1560 -4984 -224) (-1520 -4944 -224) (-1520 -4944 -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" "379037" + "plane" "(-1432 -4984 -184) (-1560 -4984 -184) (-1520 -4944 -184)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005236" + side + { + "id" "379046" + "plane" "(-1560 -4856 -224) (-1560 -4984 -224) (-1520 -4944 -224)" + "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" "379045" + "plane" "(-1560 -4984 -224) (-1560 -4856 -224) (-1560 -4856 -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" "379044" + "plane" "(-1560 -4856 -224) (-1520 -4944 -224) (-1520 -4944 -184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[0.413803 -0.910366 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379043" + "plane" "(-1520 -4944 -224) (-1560 -4984 -224) (-1560 -4984 -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" "379042" + "plane" "(-1560 -4984 -184) (-1560 -4856 -184) (-1520 -4944 -184)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005238" + side + { + "id" "379056" + "plane" "(-1560 -4984 -184) (-1560 -4984 -56) (-1432 -4984 -56)" + "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" "379055" + "plane" "(-1432 -4984 -184) (-1432 -4984 -56) (-1520 -4944 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0.910366 -0.413803 0 247.997] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379054" + "plane" "(-1520 -4944 -184) (-1520 -4944 -56) (-1560 -4984 -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" "379053" + "plane" "(-1560 -4984 -184) (-1432 -4984 -184) (-1520 -4944 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379052" + "plane" "(-1432 -4984 -56) (-1560 -4984 -56) (-1520 -4944 -56)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005240" + side + { + "id" "379066" + "plane" "(-1560 -4856 -184) (-1560 -4856 -56) (-1560 -4984 -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" "379065" + "plane" "(-1520 -4944 -184) (-1520 -4944 -56) (-1560 -4856 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0.413803 -0.910366 0 32.9833] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379064" + "plane" "(-1560 -4984 -184) (-1560 -4984 -56) (-1520 -4944 -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" "379063" + "plane" "(-1560 -4856 -184) (-1560 -4984 -184) (-1520 -4944 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379062" + "plane" "(-1560 -4984 -56) (-1560 -4856 -56) (-1520 -4944 -56)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005237" + side + { + "id" "379051" + "plane" "(-1432 -4984 -46) (-1560 -4984 -46) (-1520 -4944 -46)" + "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" "379050" + "plane" "(-1560 -4984 -56) (-1560 -4984 -46) (-1432 -4984 -46)" + "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" "379049" + "plane" "(-1432 -4984 -56) (-1432 -4984 -46) (-1520 -4944 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.910366 -0.413803 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379048" + "plane" "(-1520 -4944 -56) (-1520 -4944 -46) (-1560 -4984 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379047" + "plane" "(-1560 -4984 -56) (-1432 -4984 -56) (-1520 -4944 -56)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7005239" + side + { + "id" "379061" + "plane" "(-1560 -4984 -46) (-1560 -4856 -46) (-1520 -4944 -46)" + "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" "379060" + "plane" "(-1560 -4856 -56) (-1560 -4856 -46) (-1560 -4984 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379059" + "plane" "(-1520 -4944 -56) (-1520 -4944 -46) (-1560 -4856 -46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.413803 -0.910366 0 252] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379058" + "plane" "(-1560 -4984 -56) (-1560 -4984 -46) (-1520 -4944 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379057" + "plane" "(-1560 -4856 -56) (-1560 -4984 -56) (-1520 -4944 -56)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +hidden +{ + entity + { + "id" "5324893" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-867.345 -4828 -480" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5324909" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1218 -4828 -480" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5324925" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-513.289 -4828 -480" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5324941" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-513.289 -4828 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5324945" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-867.345 -4828 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5324949" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1218 -4828 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "5325035" + "classname" "func_detail" + solid + { + "id" "5325033" + side + { + "id" "352551" + "plane" "(-1400 -4800 -272) (-400 -4800 -272) (-400 -4856 -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" "352550" + "plane" "(-1400 -4856 -336) (-400 -4856 -336) (-400 -4800 -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" "352549" + "plane" "(-1400 -4800 -272) (-1400 -4856 -272) (-1400 -4856 -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" "352548" + "plane" "(-400 -4800 -336) (-400 -4856 -336) (-400 -4856 -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" "352547" + "plane" "(-400 -4800 -272) (-1400 -4800 -272) (-1400 -4800 -336)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352546" + "plane" "(-400 -4856 -336) (-1400 -4856 -336) (-1400 -4856 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" + } +} +entity +{ + "id" "5325044" + "classname" "func_detail" + solid + { + "id" "5325041" + side + { + "id" "352563" + "plane" "(-1456 -3944 -272) (-1400 -3944 -272) (-1400 -4856 -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" "352562" + "plane" "(-1456 -4856 -336) (-1400 -4856 -336) (-1400 -3944 -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" "352561" + "plane" "(-1456 -3944 -272) (-1456 -4856 -272) (-1456 -4856 -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" "352560" + "plane" "(-1400 -3944 -336) (-1400 -4856 -336) (-1400 -4856 -272)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 -1 0 -159.996] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352559" + "plane" "(-1400 -3944 -272) (-1456 -3944 -272) (-1456 -3944 -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" + } + side + { + "id" "352558" + "plane" "(-1400 -4856 -336) (-1456 -4856 -336) (-1456 -4856 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11768]" + } +} +entity +{ + "id" "5325052" + "classname" "func_detail" + solid + { + "id" "5325049" + side + { + "id" "352575" + "plane" "(-400 -4384 -272) (-344 -4384 -272) (-344 -4856 -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" "352574" + "plane" "(-400 -4856 -336) (-344 -4856 -336) (-344 -4384 -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" "352573" + "plane" "(-400 -4384 -272) (-400 -4856 -272) (-400 -4856 -336)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1280] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352572" + "plane" "(-344 -4384 -336) (-344 -4856 -336) (-344 -4856 -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" "352571" + "plane" "(-344 -4384 -272) (-400 -4384 -272) (-400 -4384 -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" + } + side + { + "id" "352570" + "plane" "(-344 -4856 -336) (-400 -4856 -336) (-400 -4856 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "5325060" + "classname" "func_detail" + solid + { + "id" "5325057" + side + { + "id" "352587" + "plane" "(-1456 -3888 -272) (-816 -3888 -272) (-816 -3944 -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" "352586" + "plane" "(-1456 -3944 -336) (-816 -3944 -336) (-816 -3888 -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" "352585" + "plane" "(-1456 -3888 -272) (-1456 -3944 -272) (-1456 -3944 -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" "352584" + "plane" "(-816 -3888 -336) (-816 -3944 -336) (-816 -3944 -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" "352583" + "plane" "(-816 -3888 -272) (-1456 -3888 -272) (-1456 -3888 -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" + } + side + { + "id" "352582" + "plane" "(-816 -3944 -336) (-1456 -3944 -336) (-1456 -3944 -272)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[-1 0 0 1824] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +hidden +{ + entity + { + "id" "5325073" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1218 -3914.32 -480" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5325089" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-866 -3920.92 -480" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "5325102" + "classname" "func_detail" + solid + { + "id" "5325100" + side + { + "id" "352599" + "plane" "(-1400 -4800 -46) (-400 -4800 -46) (-400 -4856 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352598" + "plane" "(-1400 -4856 -76) (-400 -4856 -76) (-400 -4800 -76)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -49] 0.125" + "vaxis" "[0 -1 0 -344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352597" + "plane" "(-1400 -4800 -46) (-1400 -4856 -46) (-1400 -4856 -76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352596" + "plane" "(-400 -4800 -76) (-400 -4856 -76) (-400 -4856 -46)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 -1 0 -319.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352595" + "plane" "(-400 -4800 -46) (-1400 -4800 -46) (-1400 -4800 -76)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352594" + "plane" "(-400 -4856 -76) (-1400 -4856 -76) (-1400 -4856 -46)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8768]" + } +} +entity +{ + "id" "5325109" + "classname" "func_detail" + solid + { + "id" "5325107" + side + { + "id" "352611" + "plane" "(-1456 -3904 -46) (-1400 -3904 -46) (-1400 -4856 -46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352610" + "plane" "(-1456 -4856 -76) (-1400 -4856 -76) (-1400 -3904 -76)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -49] 0.125" + "vaxis" "[0 -1 0 -344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352609" + "plane" "(-1456 -3904 -46) (-1456 -4856 -46) (-1456 -4856 -76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352608" + "plane" "(-1400 -3904 -76) (-1400 -4856 -76) (-1400 -4856 -46)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352607" + "plane" "(-1400 -3904 -46) (-1456 -3904 -46) (-1456 -3904 -76)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-1 0 0 -383.996] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "352606" + "plane" "(-1400 -4856 -76) (-1456 -4856 -76) (-1456 -4856 -46)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -7768]" + } +} +hidden +{ + entity + { + "id" "5325196" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1423 -4827 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5325216" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1423 -4392 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5325228" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1423 -3939 -224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5325258" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "87 87 87" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1423 -4827 -479.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "5304983" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-417 -4382 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305104" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5304987" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-416 -4381 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305104" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5304991" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-545 -4366 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305104" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5304996" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-418 -4362 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305104" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5305037" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-545 -4382 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305104" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305041" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-544 -4381 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305104" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5305045" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-673 -4366 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305104" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5305314" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-839.999 -3942 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305313" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305318" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-840.999 -3943 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305313" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305322" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-968.999 -3943 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305313" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305326" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-967.999 -3942 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305313" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5305330" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1097 -3927 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305313" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5305335" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-968.999 -3927 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305313" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5305340" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-841.999 -3923 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305313" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5305538" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1096 -3942 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305537" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305542" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1097 -3943 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305537" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305546" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1225 -3943 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305537" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305550" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1224 -3942 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305537" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5305554" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1353 -3927 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305537" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5305559" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1225 -3927 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305537" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5305667" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1403 -4008 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305666" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305671" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1402 -4009 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305666" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305675" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1402 -4137 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305666" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305679" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1403 -4136 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305666" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5305683" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1418 -4265 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305666" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5305688" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1418 -4137 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305666" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5305856" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1403 -4264 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305855" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305860" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1402 -4265 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305855" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305864" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1402 -4393 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305855" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305868" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1403 -4392 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305855" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5305872" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1418 -4521 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305855" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5305964" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1403 -4520 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305963" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305968" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1402 -4521 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305963" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305972" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1402 -4649 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305963" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5305976" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1403 -4648 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5305963" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5305980" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1418 -4777 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305963" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5305985" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1418 -4649 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5305963" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5306074" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1356 -4803 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306073" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306078" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1355 -4802 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306073" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306082" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1227 -4802 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306073" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306086" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1228 -4803 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306073" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5306090" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1099 -4818 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5306073" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5306095" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1227 -4818 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5306073" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5306263" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1100 -4803 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306262" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306267" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1099 -4802 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306262" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306271" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-971.001 -4802 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306262" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306275" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-972.001 -4803 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306262" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5306279" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-843.001 -4818 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5306262" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5306284" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-971.001 -4818 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5306262" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5306344" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-844.002 -4803 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306343" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306348" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-843.002 -4802 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306343" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306352" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-715.001 -4802 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306343" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306356" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-716.001 -4803 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5306343" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5306360" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-587.001 -4818 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5306343" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5306365" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-715.001 -4818 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5306343" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5306464" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-587 -4802 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306468" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-588 -4803 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5306472" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-459 -4818 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5306522" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-398 -4623 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306526" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-397 -4624 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5306530" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-382 -4495 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5306535" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-397 -4752 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5306539" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-398 -4751 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5306543" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-382 -4623 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5306548" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-382 -4751 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5306698" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-374.961 -4381.07 -202.748" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5306739" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-1560 -4152.43 -204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5306755" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-1560 -4295 -204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5307102" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-814 -4232 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5307093" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5307106" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-813 -4233 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5307093" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5307110" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-798 -4104 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5307093" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5307115" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-798 -4232 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5307093" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5307121" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-813 -4105 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5307120" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5307125" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-814 -4104 -223.75" + editor + { + "color" "251 104 0" + "groupid" "5307120" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "5307142" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-798 -3976 -202.748" + editor + { + "color" "251 104 0" + "groupid" "5307120" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "5307461" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1304 -4951 -479.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5307465" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-1304 -4951 -480" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5307485" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-634 -4954 -479.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5307489" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-634 -4954 -480" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5272234" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-69 -6276 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "5272273" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-69 -6030.79 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "5272285" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-176 -5717 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "5272317" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/cs_apollo/shop_scanner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "67.9145 -5717 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +entity +{ + "id" "5240556" + "classname" "info_overlay" + "angles" "-20.5 0 0" + "BasisNormal" "-0.69807 -0.697815 -0.160477" + "BasisOrigin" "202 -4156.28 7" + "BasisU" "-0.680076 0.716278 -0.156341" + "BasisV" "0.224043 0 -0.974579" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/decals/arrowleft" + "sides" "338062" + "StartU" "1" + "StartV" "0" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "202 -4156.28 7" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5240580" + "classname" "info_overlay" + "angles" "0 0 6" + "BasisNormal" "0.789841 0.592877 0.156996" + "BasisOrigin" "-755.872 -4322 -118" + "BasisU" "-0.601779 0.798576 0.0117953" + "BasisV" "-0.11838 -0.103793 0.987529" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/arrowright" + "sides" "338050" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-755.872 -4322 -118" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "5208880" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_vending_machine/nuke_vending_machine.mdl" + "renderamt" "255" + "rendercolor" "144 144 144" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "464 -2395 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5193033" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/giftshop_roof001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-373 -5990 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +entity +{ + "id" "5176978" + "classname" "func_detail" + solid + { + "id" "5176979" + side + { + "id" "351377" + "plane" "(-381 -5061.02 151.125) (-381.182 -5062 151.125) (-545.386 -5031.57 151.125)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-0.983255 0.182236 0 64.7096] 0.25" + "vaxis" "[0.182236 0.983255 0 33.0597] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351376" + "plane" "(-381.182 -5062 60.25) (-381 -5061.02 60.25) (-545.203 -5030.58 60.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.983255 0.182236 0 46.7096] 0.25" + "vaxis" "[0.182236 0.983255 0 -53.1903] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351375" + "plane" "(-381 -5061.02 60.25) (-381.182 -5062 60.25) (-381.182 -5062 151.123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.182236 -0.983255 0 53.1903] 0.25" + "vaxis" "[0 0 -1 13] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351374" + "plane" "(-545.386 -5031.57 60.25) (-545.203 -5030.58 60.25) (-545.203 -5030.58 151.123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.182236 -0.983255 0 53.1903] 0.25" + "vaxis" "[0 0 -1 13] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351373" + "plane" "(-381.182 -5062 60.25) (-545.386 -5031.57 60.25) (-545.386 -5031.57 151.123)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.983255 0.182236 0 46.7096] 0.25" + "vaxis" "[0 0 -1 13] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351372" + "plane" "(-545.203 -5030.58 60.25) (-381 -5061.02 60.25) (-381 -5061.02 151.123)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-0.983255 0.182236 0 64.7096] 0.25" + "vaxis" "[0 0 -1 934.75] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "5176980" + "classname" "prop_static" + "angles" "0 169.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/display_map.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-464.322 -5049.64 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5177024" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "-495.036 -5055.45 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_8" + "sides" "299524 373148" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-495.036 -5055.45 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5177030" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "-435.602 -5066.93 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_8" + "sides" "299524 299837" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-435.602 -5066.93 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "5177064" + "classname" "prop_static" + "angles" "0 251.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/rocket_miniature001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1925.36 -4933.43 -8" + editor + { + "color" "165 146 0" + "groupid" "5467876" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5160934" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1196 -6338 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "5160988" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_ceiling_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1110 -5193 155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "5160992" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "1110 -5194.29 141" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +entity +{ + "id" "5160995" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 251 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 90 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "1110 -5195.28 133" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "5161000" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1109 -5194.06 101" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "5161005" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "1099 -5199.94 61.5616" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "5161180" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "-67 -5622.82 177" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +hidden +{ + entity + { + "id" "5161183" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-67 -5622.82 176" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -3768]" + } + } +} +entity +{ + "id" "5161187" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 251 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "-67 -5622.82 172" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "5143370" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "63 -5987 97" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "0" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/giftshopdecal" + "sides" "351064" + "StartU" "1" + "StartV" "1" + "uv0" "-80.3425 -39.3377 0" + "uv1" "-80.3425 39.3377 0" + "uv2" "80.3425 39.3377 0" + "uv3" "80.3425 -39.3377 0" + "origin" "63 -5987 97" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5143406" + "classname" "info_overlay" + "BasisNormal" "0 -1 0" + "BasisOrigin" "1888.57 -3192 503.352" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/drainage_stain_01" + "sides" "349203" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1888.57 -3192 503.352" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "5143412" + "classname" "info_overlay" + "BasisNormal" "0 -1 0" + "BasisOrigin" "1721.1 -3192 501.032" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/drainage_stain_01" + "sides" "349203" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1721.1 -3192 501.032" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "5143418" + "classname" "info_overlay" + "BasisNormal" "-1 0 0" + "BasisOrigin" "1632 -3052.27 506.201" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/drainage_stain_01" + "sides" "349206" + "StartU" "1" + "StartV" "0" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1632 -3052.27 506.201" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "5143424" + "classname" "info_overlay" + "BasisNormal" "-1 0 0" + "BasisOrigin" "1632 -2781.1 510.93" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/drainage_stain_01" + "sides" "349206" + "StartU" "1" + "StartV" "0" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1632 -2781.1 510.93" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "5143430" + "classname" "info_overlay" + "BasisNormal" "-1 0 0" + "BasisOrigin" "1632 -2948.56 518.065" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/drainage_stain_01" + "sides" "349206" + "StartU" "1" + "StartV" "0" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1632 -2948.56 518.065" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5143436" + "classname" "info_overlay" + "BasisNormal" "0 -1 0" + "BasisOrigin" "1780.76 -3192 513.304" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/drainage_stain_01" + "sides" "349203" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1780.76 -3192 513.304" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5143442" + "classname" "info_overlay" + "BasisNormal" "-1 0 0" + "BasisOrigin" "2192 -3598.3 522.635" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/drainage_stain_01" + "sides" "349218" + "StartU" "1" + "StartV" "0" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "2192 -3598.3 522.635" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "5143448" + "classname" "info_overlay" + "BasisNormal" "-1 0 0" + "BasisOrigin" "2192 -3543.78 517.018" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/drainage_stain_01" + "sides" "349218" + "StartU" "1" + "StartV" "0" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "2192 -3543.78 517.018" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "5143454" + "classname" "info_overlay" + "BasisNormal" "-1 0 0" + "BasisOrigin" "2192 -3494.19 521.984" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/drainage_stain_01" + "sides" "349218" + "StartU" "1" + "StartV" "0" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "2192 -3494.19 521.984" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "5143460" + "classname" "info_overlay" + "BasisNormal" "-1 0 0" + "BasisOrigin" "2192 -3379.85 482.452" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "349218" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "2192 -3379.85 482.452" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "5143466" + "classname" "info_overlay" + "BasisNormal" "0 -1 0" + "BasisOrigin" "2489.47 -3728 500.537" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "349227" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "2489.47 -3728 500.537" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "5143472" + "classname" "info_overlay" + "BasisNormal" "0 -1 0" + "BasisOrigin" "2652.91 -3728 502.109" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "349227" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "2652.91 -3728 502.109" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "5143486" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "182 182 182" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1757 -3422 382.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "5143490" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "182 182 182" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1698.86 -3421.93 382.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "5143522" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "182 182 182" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "462.257 -2844.13 208.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "5143538" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "182 182 182" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "462 -2772 208.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "5143582" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-621 -4115 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5143586" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-501 -4115 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "5143590" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-561 -4108 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +entity +{ + "id" "5143651" + "classname" "func_detail" + solid + { + "id" "5143645" + side + { + "id" "351317" + "plane" "(-626 -4112 124) (-496 -4112 124) (-496 -4117 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" "351316" + "plane" "(-626 -4117 115) (-496 -4117 115) (-496 -4112 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351315" + "plane" "(-626 -4112 124) (-626 -4117 124) (-626 -4117 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351314" + "plane" "(-496 -4112 115) (-496 -4117 115) (-496 -4117 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" "351313" + "plane" "(-496 -4112 124) (-626 -4112 124) (-626 -4112 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351312" + "plane" "(-496 -4117 115) (-626 -4117 115) (-626 -4117 124)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 102] 0.125" + "vaxis" "[0 0 -1 28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5143635" + side + { + "id" "351323" + "plane" "(-496 -4112 124) (-493 -4112 124) (-493 -4117 124)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351322" + "plane" "(-496 -4117 0.248772) (-493 -4117 0.248772) (-493 -4112 0.248772)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351321" + "plane" "(-496 -4112 124) (-496 -4117 124) (-496 -4117 0.248772)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351320" + "plane" "(-493 -4112 0.248772) (-493 -4117 0.248772) (-493 -4117 124)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351319" + "plane" "(-493 -4112 124) (-496 -4112 124) (-496 -4112 0.248772)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351318" + "plane" "(-493 -4117 0.248772) (-496 -4117 0.248772) (-496 -4117 124)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5143642" + side + { + "id" "351329" + "plane" "(-640 -4112 124) (-626 -4112 124) (-626 -4117 124)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351328" + "plane" "(-640 -4117 0) (-626 -4117 0) (-626 -4112 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351327" + "plane" "(-640 -4112 124) (-640 -4117 124) (-640 -4117 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -0.995087] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351326" + "plane" "(-626 -4112 0) (-626 -4117 0) (-626 -4117 124)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 62] 0.125" + "vaxis" "[0 0 -1 28.0098] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351325" + "plane" "(-626 -4112 124) (-640 -4112 124) (-640 -4112 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -0.995087] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351324" + "plane" "(-626 -4117 0) (-640 -4117 0) (-640 -4117 124)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 102] 0.125" + "vaxis" "[0 0 -1 28.0098] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "5143801" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-501.665 -3982.09 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "378169" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-501.665 -3982.09 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13000]" + } +} +entity +{ + "id" "5143807" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-626.252 -3987.13 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "378169" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-626.252 -3987.13 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +entity +{ + "id" "5143813" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "880 -3158 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "368599" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "880 -3158 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14000]" + } +} +entity +{ + "id" "5143825" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-99.515 -3569.14 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "374011 376688 376676" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-99.515 -3569.14 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +entity +{ + "id" "5143831" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-100 -3591 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate025a" + "sides" "374011 376676 376688" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "-100 -3591 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "5143837" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-420 -3097 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate005a" + "sides" "244688" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-420 -3097 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15500]" + } +} +entity +{ + "id" "5143849" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-444.452 -1993.05 -24" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate005a" + "sides" "249741" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-444.452 -1993.05 -24" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "5143855" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -0 1" + "BasisOrigin" "-108 -2503 -24" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate005a" + "sides" "379349" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-108 -2503 -24" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "5143886" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 40" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1635 -4841 69.805" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "5143921" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 40" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1647 -5454 105.468" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "5144631" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "1.37102 -6164.08 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_1" + "sides" "322586 322603" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -128 0" + "uv1" "-64 128 0" + "uv2" "64 128 0" + "uv3" "64 -128 0" + "origin" "1.37102 -6164.08 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +entity +{ + "id" "5144649" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-188.6 -6445.32 -48" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "278686" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-188.6 -6445.32 -48" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14268]" + } +} +entity +{ + "id" "5144655" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "-823.707 -5572.52 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "373160" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-823.707 -5572.52 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +entity +{ + "id" "5144667" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1056 -2793 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "368611 368635" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1056 -2793 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" + } +} +entity +{ + "id" "5144685" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-329 -3954 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "378175" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-329 -3954 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "5144703" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "972 -4768 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "371081 371098 108449" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "972 -4768 7.62939e-06" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "5144715" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-512 -5281 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "299837 299548 242705 299524" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-512 -5281 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10268]" + } +} +entity +{ + "id" "5144745" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-1326.5 -3904.94 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "373090" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-1326.5 -3904.94 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9768]" + } +} +entity +{ + "id" "5144751" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "-1651.04 -4729.5 32" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "373195" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-1651.04 -4729.5 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9268]" + } +} +entity +{ + "id" "5127774" + "classname" "func_detail" + solid + { + "id" "5127772" + side + { + "id" "351257" + "plane" "(-3 -5988 70) (135 -5988 70) (135 -5990 70)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 63] 0.125" + "vaxis" "[0 -1 0 -890.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351256" + "plane" "(-3 -5990 62) (135 -5990 62) (135 -5988 62)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 63] 0.125" + "vaxis" "[0 1 0 804.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351255" + "plane" "(-3 -5988 70) (-3 -5990 70) (-3 -5990 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351254" + "plane" "(135 -5988 62) (135 -5990 62) (135 -5990 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" "351253" + "plane" "(135 -5988 70) (-3 -5988 70) (-3 -5988 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351252" + "plane" "(135 -5990 62) (-3 -5990 62) (-3 -5990 70)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 63] 0.125" + "vaxis" "[0 0 -1 485] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "5127804" + "classname" "func_detail" + solid + { + "id" "5127799" + side + { + "id" "351269" + "plane" "(142 -5924 70) (143 -5924 70) (143 -5984 70)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 63] 0.125" + "vaxis" "[1 0 0 -195] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351268" + "plane" "(142 -5984 62) (143 -5984 62) (143 -5924 62)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 63] 0.125" + "vaxis" "[-1 0 0 109] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351267" + "plane" "(142 -5924 70) (142 -5984 70) (142 -5984 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351266" + "plane" "(143 -5924 62) (143 -5984 62) (143 -5984 70)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 63] 0.125" + "vaxis" "[0 0 -1 485] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351265" + "plane" "(143 -5924 70) (142 -5924 70) (142 -5924 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351264" + "plane" "(143 -5984 62) (142 -5984 62) (142 -5984 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "5111667" + "classname" "prop_static" + "angles" "0 12 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1199 -5344 152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5111699" + "classname" "prop_static" + "angles" "0 351.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1199 -5356 152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5111757" + "classname" "func_detail" + solid + { + "id" "5111740" + side + { + "id" "351065" + "plane" "(134 -5987 181) (-2 -5987 181) (-2 -5986 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351064" + "plane" "(-2 -5987 71) (-2 -5987 181) (134 -5987 181)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 5.56522] 0.539063" + "vaxis" "[0 0 -1 160] 0.4375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351063" + "plane" "(134 -5986 71) (134 -5986 181) (-2 -5986 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351062" + "plane" "(-2 -5986 71) (-2 -5986 181) (-2 -5987 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351061" + "plane" "(134 -5987 71) (134 -5987 181) (134 -5986 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351060" + "plane" "(134 -5986 71) (-2 -5986 71) (-2 -5987 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5111734" + side + { + "id" "351071" + "plane" "(140 -5945 181) (141 -5945 181) (141 -5983 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351070" + "plane" "(140 -5983 71) (141 -5983 71) (141 -5945 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351069" + "plane" "(140 -5945 181) (140 -5983 181) (140 -5983 71)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 109] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351068" + "plane" "(141 -5945 71) (141 -5983 71) (141 -5983 181)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 109] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351067" + "plane" "(141 -5945 181) (140 -5945 181) (140 -5945 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351066" + "plane" "(141 -5983 71) (140 -5983 71) (140 -5983 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5111766" + "classname" "func_detail" + solid + { + "id" "5111739" + side + { + "id" "351077" + "plane" "(135 -5984 32) (-3 -5984 32) (-3 -5988 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351076" + "plane" "(135 -5988 32) (-3 -5988 32) (-3 -5988 70)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351075" + "plane" "(-3 -5984 32) (135 -5984 32) (135 -5984 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" "351074" + "plane" "(-3 -5988 32) (-3 -5984 32) (-3 -5984 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" "351073" + "plane" "(135 -5984 32) (135 -5988 32) (135 -5988 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" "351072" + "plane" "(135 -5988 70) (-3 -5988 70) (-3 -5984 70)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2753873" + side + { + "id" "351083" + "plane" "(135 -5984 182) (144 -5984 182) (144 -5992 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351082" + "plane" "(135 -5992 32) (144 -5992 32) (144 -5984 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351081" + "plane" "(144 -5984 32) (144 -5992 32) (144 -5992 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 127.988] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351080" + "plane" "(144 -5992 32) (135 -5992 32) (135 -5992 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351079" + "plane" "(135 -5984 32) (144 -5984 32) (144 -5984 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -240.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351078" + "plane" "(135 -5992 32) (135 -5984 32) (135 -5984 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "5111774" + "classname" "func_detail" + solid + { + "id" "2753882" + side + { + "id" "351089" + "plane" "(-3 -5992 182) (-11 -5992 182) (-11 -5984 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351088" + "plane" "(-3 -5984 32) (-11 -5984 32) (-11 -5992 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351087" + "plane" "(-3 -5992 32) (-11 -5992 32) (-11 -5992 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351086" + "plane" "(-11 -5984 32) (-3 -5984 32) (-3 -5984 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351085" + "plane" "(-3 -5984 32) (-3 -5992 32) (-3 -5992 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351084" + "plane" "(-11 -5992 32) (-11 -5984 32) (-11 -5984 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "5111832" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "110 -5979 70" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5111848" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "107 -5973 70" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5111852" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "109 -5965 70" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5111856" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "108 -5958 70" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5111880" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_cap2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "21 -5973 70" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5111900" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_cap2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "22 -5956 70" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5111908" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "68 68 68" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "108 -5954.94 90" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5111930" + "classname" "func_detail" + solid + { + "id" "5111928" + side + { + "id" "351101" + "plane" "(107 -5944 144) (109 -5944 144) (109 -5966 144)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 -8.5] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351100" + "plane" "(107 -5966 142) (109 -5966 142) (109 -5944 142)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 4.25] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351099" + "plane" "(107 -5944 144) (107 -5966 144) (107 -5966 142)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 -8.5] 0.125" + "vaxis" "[0 0 1 -232] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351098" + "plane" "(109 -5944 142) (109 -5966 142) (109 -5966 144)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 1 0 -8.5] 0.125" + "vaxis" "[0 0 -1 40] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351097" + "plane" "(109 -5944 144) (107 -5944 144) (107 -5944 142)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351096" + "plane" "(109 -5966 142) (107 -5966 142) (107 -5966 144)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -760.496] 0.125" + "vaxis" "[1 0 0 63.9979] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +hidden +{ + entity + { + "id" "5111947" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt3.mdl" + "renderamt" "255" + "rendercolor" "209 209 209" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "63 -5954.94 90" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5111967" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie2.mdl" + "renderamt" "255" + "rendercolor" "88 88 88" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "15 -5954.94 90" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5112042" + "classname" "func_detail" + solid + { + "id" "5112026" + side + { + "id" "351143" + "plane" "(-11 -5944 182) (139 -5944 182) (139 -5984 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351142" + "plane" "(-11 -5984 158) (139 -5984 158) (139 -5944 158)" + "material" "LINK/CARPET/CARPET_BLACK01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351141" + "plane" "(-11 -5944 182) (-11 -5984 182) (-11 -5984 158)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351140" + "plane" "(139 -5944 158) (139 -5984 158) (139 -5984 182)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 614.406] 0.0390625" + "vaxis" "[0 0 -1 298.667] 0.046875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351139" + "plane" "(139 -5944 182) (-11 -5944 182) (-11 -5944 158)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351138" + "plane" "(139 -5984 158) (-11 -5984 158) (-11 -5984 182)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[1 0 0 74.1053] 0.148438" + "vaxis" "[0 0 -1 298.667] 0.046875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "5112072" + "classname" "func_detail" + solid + { + "id" "5112064" + side + { + "id" "351167" + "plane" "(139 -5945 71) (142 -5945 71) (142 -5983 71)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 16] 0.125" + "vaxis" "[1 0 0 -140] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351166" + "plane" "(139 -5983 70) (142 -5983 70) (142 -5945 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" "351165" + "plane" "(139 -5945 71) (139 -5983 71) (139 -5983 70)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 16] 0.125" + "vaxis" "[0 0 -1 -228] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351164" + "plane" "(142 -5945 70) (142 -5983 70) (142 -5983 71)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 16] 0.125" + "vaxis" "[0 0 -1 -228] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351163" + "plane" "(142 -5945 71) (139 -5945 71) (139 -5945 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" "351162" + "plane" "(142 -5983 70) (139 -5983 70) (139 -5983 71)" + "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" "5112040" + side + { + "id" "351173" + "plane" "(139 -5944 182) (142 -5944 182) (142 -5945 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351172" + "plane" "(139 -5945 70) (142 -5945 70) (142 -5944 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" "351171" + "plane" "(139 -5944 182) (139 -5945 182) (139 -5945 70)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 16] 0.125" + "vaxis" "[0 -1 0 -83.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351170" + "plane" "(142 -5944 70) (142 -5945 70) (142 -5945 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 16] 0.125" + "vaxis" "[0 1 0 83.9922] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351169" + "plane" "(142 -5944 182) (139 -5944 182) (139 -5944 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" "351168" + "plane" "(142 -5945 70) (139 -5945 70) (139 -5945 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 16] 0.125" + "vaxis" "[1 0 0 -228] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5112053" + side + { + "id" "351179" + "plane" "(139 -5983 182) (142 -5983 182) (142 -5984 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351178" + "plane" "(139 -5984 70) (142 -5984 70) (142 -5983 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" "351177" + "plane" "(139 -5983 182) (139 -5984 182) (139 -5984 70)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 15.9979] 0.125" + "vaxis" "[0 1 0 107.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351176" + "plane" "(142 -5983 70) (142 -5984 70) (142 -5984 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 16.002] 0.125" + "vaxis" "[0 -1 0 -107.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351175" + "plane" "(142 -5983 182) (139 -5983 182) (139 -5983 70)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 16] 0.125" + "vaxis" "[1 0 0 -228] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351174" + "plane" "(142 -5984 70) (139 -5984 70) (139 -5984 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5112058" + side + { + "id" "351185" + "plane" "(139 -5945 182) (142 -5945 182) (142 -5983 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351184" + "plane" "(139 -5983 181) (142 -5983 181) (142 -5945 181)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 16] 0.125" + "vaxis" "[-1 0 0 -28] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351183" + "plane" "(139 -5945 182) (139 -5983 182) (139 -5983 181)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 16] 0.125" + "vaxis" "[0 0 -1 -228] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351182" + "plane" "(142 -5945 181) (142 -5983 181) (142 -5983 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 16] 0.125" + "vaxis" "[0 0 -1 -228] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351181" + "plane" "(142 -5945 182) (139 -5945 182) (139 -5945 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351180" + "plane" "(142 -5983 181) (139 -5983 181) (139 -5983 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +entity +{ + "id" "5112105" + "classname" "func_detail" + solid + { + "id" "5112097" + side + { + "id" "351215" + "plane" "(-2 -5985 182) (134 -5985 182) (134 -5988 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351214" + "plane" "(-2 -5988 181) (134 -5988 181) (134 -5985 181)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 488.002] 0.125" + "vaxis" "[0 -1 0 -155.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351213" + "plane" "(-2 -5985 182) (-2 -5988 182) (-2 -5988 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351212" + "plane" "(134 -5985 181) (134 -5988 181) (134 -5988 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" "351211" + "plane" "(134 -5985 182) (-2 -5985 182) (-2 -5985 181)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351210" + "plane" "(134 -5988 181) (-2 -5988 181) (-2 -5988 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 488.001] 0.125" + "vaxis" "[0 0 1 220] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5112084" + side + { + "id" "351221" + "plane" "(134 -5985 182) (135 -5985 182) (135 -5988 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351220" + "plane" "(134 -5988 70) (135 -5988 70) (135 -5985 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" "351219" + "plane" "(134 -5985 182) (134 -5988 182) (134 -5988 70)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 16.002] 0.125" + "vaxis" "[0 -1 0 -155.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351218" + "plane" "(135 -5985 70) (135 -5988 70) (135 -5988 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" "351217" + "plane" "(135 -5985 182) (134 -5985 182) (134 -5985 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" "351216" + "plane" "(135 -5988 70) (134 -5988 70) (134 -5988 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 16] 0.125" + "vaxis" "[1 0 0 84] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5112089" + side + { + "id" "351227" + "plane" "(-3 -5985 182) (-2 -5985 182) (-2 -5988 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351226" + "plane" "(-3 -5988 70) (-2 -5988 70) (-2 -5985 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" "351225" + "plane" "(-3 -5985 182) (-3 -5988 182) (-3 -5988 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" "351224" + "plane" "(-2 -5985 70) (-2 -5988 70) (-2 -5988 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 15.9979] 0.125" + "vaxis" "[0 1 0 99.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351223" + "plane" "(-2 -5985 182) (-3 -5985 182) (-3 -5985 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" "351222" + "plane" "(-2 -5988 70) (-3 -5988 70) (-3 -5988 182)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 16] 0.125" + "vaxis" "[1 0 0 84] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5112093" + side + { + "id" "351233" + "plane" "(-2 -5985 71) (134 -5985 71) (134 -5988 71)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 -487.998] 0.125" + "vaxis" "[0 -1 0 -155.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351232" + "plane" "(-2 -5988 70) (134 -5988 70) (134 -5985 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" "351231" + "plane" "(-2 -5985 71) (-2 -5988 71) (-2 -5988 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" "351230" + "plane" "(134 -5985 70) (134 -5988 70) (134 -5988 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351229" + "plane" "(134 -5985 71) (-2 -5985 71) (-2 -5985 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" "351228" + "plane" "(134 -5988 70) (-2 -5988 70) (-2 -5988 71)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 -487.998] 0.125" + "vaxis" "[0 0 -1 188] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +hidden +{ + entity + { + "id" "5112141" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "143 -5837 126.267" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5112149" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "143 -5659 126.267" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "5112173" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "78.1056 -5968.93 157.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "5112177" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "78.1056 -5968.93 151.75" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +entity +{ + "id" "5112180" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "216 244 250 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "60 -5979 120.75" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "5112200" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "216 244 250 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "108 -5976 120.75" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "5112205" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "216 244 250 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "13 -5976 120.75" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "5096074" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "2290 -3728 199.303" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "5096098" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2398.43 -3702.96 299.98" + editor + { + "color" "148 153 0" + "groupid" "5096097" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "5096101" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "5000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 600" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 162.387 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2397.58 -3701.94 298.269" + editor + { + "color" "148 153 0" + "groupid" "5096097" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "5096106" + "classname" "prop_static" + "angles" "0 253 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2405.48 -3704.25 315.875" + editor + { + "color" "148 153 0" + "groupid" "5096097" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "5080217" + "classname" "prop_physics_multiplayer" + "angles" "15 270 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "261" + "origin" "-568.41 -4108 -99.579" + editor + { + "color" "153 226 0" + "groupid" "5080233" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "5080221" + "classname" "prop_static" + "angles" "15 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-568 -4105.1 -98.8025" + editor + { + "color" "153 226 0" + "groupid" "5080233" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "5080289" + "classname" "prop_physics_multiplayer" + "angles" "15 90 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "261" + "origin" "-568 -3988 -99.579" + editor + { + "color" "153 226 0" + "groupid" "5080288" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "5080293" + "classname" "prop_static" + "angles" "15 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-568.41 -3990.9 -98.8025" + editor + { + "color" "153 226 0" + "groupid" "5080288" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "5080361" + "classname" "prop_static" + "angles" "0 115 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "10.3532 -4080.22 -107.734" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5080365" + "classname" "prop_static" + "angles" "0 69 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "22.2845 -4080.51 -107.446" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5063720" + "classname" "func_detail" + solid + { + "id" "5063721" + side + { + "id" "350651" + "plane" "(-489 -4983 -147) (-489 -4982 -147) (-473 -4982 -147)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -329.714] 0.07" + "vaxis" "[0 1 0 286.85] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350650" + "plane" "(-489 -4982 -163) (-489 -4983 -163) (-473 -4983 -163)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -329.714] 0.07" + "vaxis" "[0 -1 0 -3.42365] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350649" + "plane" "(-489 -4983 -163) (-489 -4982 -163) (-489 -4982 -147)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[0 -1 0 -3.42365] 0.07" + "vaxis" "[0 0 -1 -280.571] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350648" + "plane" "(-473 -4982 -163) (-473 -4983 -163) (-473 -4983 -147)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[0 1 0 286.846] 0.07" + "vaxis" "[0 0 -1 -280.571] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350647" + "plane" "(-489 -4982 -163) (-473 -4982 -163) (-473 -4982 -147)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -329.714] 0.07" + "vaxis" "[0 0 -1 -280.572] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350646" + "plane" "(-473 -4983 -163) (-489 -4983 -163) (-489 -4983 -147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5063722" + side + { + "id" "350657" + "plane" "(-407 -4983 -122) (-407 -4982 -122) (-395 -4982 -122)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -436.286] 0.07" + "vaxis" "[0 1 0 3.28009] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350656" + "plane" "(-407 -4982 -144) (-407 -4983 -144) (-395 -4983 -144)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -189.941] 0.085" + "vaxis" "[0 -1 0 -480.645] 0.085" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350655" + "plane" "(-407 -4983 -144) (-407 -4982 -144) (-407 -4982 -122)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[0 -1 0 -253.465] 0.085" + "vaxis" "[0 0 -1 -395] 0.085" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350654" + "plane" "(-395 -4982 -144) (-395 -4983 -144) (-395 -4983 -122)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[0 1 0 92.8748] 0.085" + "vaxis" "[0 0 -1 -395] 0.085" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350653" + "plane" "(-407 -4982 -144) (-395 -4982 -144) (-395 -4982 -122)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -189.941] 0.085" + "vaxis" "[0 0 -1 -395] 0.085" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350652" + "plane" "(-395 -4983 -144) (-407 -4983 -144) (-407 -4983 -122)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5063723" + side + { + "id" "350663" + "plane" "(-360 -4983 -150) (-360 -4982 -150) (-344 -4982 -150)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -276.857] 0.07" + "vaxis" "[0 1 0 3.28009] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350662" + "plane" "(-360 -4982 -166) (-360 -4983 -166) (-344 -4983 -166)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -276.857] 0.07" + "vaxis" "[0 -1 0 -286.991] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350661" + "plane" "(-360 -4983 -166) (-360 -4982 -166) (-360 -4982 -150)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[0 -1 0 -257.42] 0.07" + "vaxis" "[0 0 -1 -95] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350660" + "plane" "(-344 -4982 -166) (-344 -4983 -166) (-344 -4983 -150)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[0 1 0 32.8538] 0.07" + "vaxis" "[0 0 -1 -95] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350659" + "plane" "(-360 -4982 -166) (-344 -4982 -166) (-344 -4982 -150)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -276.857] 0.07" + "vaxis" "[0 0 -1 -95] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350658" + "plane" "(-344 -4983 -166) (-360 -4983 -166) (-360 -4983 -150)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5063724" + side + { + "id" "350669" + "plane" "(-554 -4983 -134) (-554 -4982 -134) (-541 -4982 -134)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -48.5711] 0.07" + "vaxis" "[0 1 0 286.85] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350668" + "plane" "(-554 -4982 -150) (-554 -4983 -150) (-541 -4983 -150)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -48.5711] 0.07" + "vaxis" "[0 -1 0 -3.42365] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350667" + "plane" "(-554 -4983 -150) (-554 -4982 -150) (-554 -4982 -134)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[0 -1 0 -329.709] 0.07" + "vaxis" "[0 0 -1 -94.8569] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350666" + "plane" "(-541 -4982 -150) (-541 -4983 -150) (-541 -4983 -134)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[0 1 0 3.41583] 0.07" + "vaxis" "[0 0 -1 -94.8569] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350665" + "plane" "(-554 -4982 -150) (-541 -4982 -150) (-541 -4982 -134)" + "material" "CS_APOLLO/DECALS/HISTORY_TS" + "uaxis" "[-1 0 0 -48.5711] 0.07" + "vaxis" "[0 0 -1 -94.8571] 0.07" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350664" + "plane" "(-541 -4983 -150) (-554 -4983 -150) (-554 -4983 -134)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 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" "5063725" + side + { + "id" "350675" + "plane" "(-492 -4984 -96) (-592 -4984 -96) (-592 -4983 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350674" + "plane" "(-492 -4983 -196) (-592 -4983 -196) (-592 -4984 -196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350673" + "plane" "(-592 -4984 -196) (-592 -4983 -196) (-592 -4983 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350672" + "plane" "(-592 -4983 -196) (-492 -4983 -196) (-492 -4983 -96)" + "material" "CS_APOLLO/DECALS/HISTORY_03" + "uaxis" "[-1 0 0 -471.04] 0.195313" + "vaxis" "[0 0 -1 -491.52] 0.195313" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350671" + "plane" "(-492 -4984 -196) (-592 -4984 -196) (-592 -4984 -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" "350670" + "plane" "(-492 -4983 -196) (-492 -4984 -196) (-492 -4984 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 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" "5063726" + side + { + "id" "350681" + "plane" "(-392 -4984 -96) (-492 -4984 -96) (-492 -4983 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350680" + "plane" "(-392 -4983 -196) (-492 -4983 -196) (-492 -4984 -196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350679" + "plane" "(-492 -4983 -196) (-392 -4983 -196) (-392 -4983 -96)" + "material" "CS_APOLLO/DECALS/HISTORY_02" + "uaxis" "[-1 0 0 -471.04] 0.195313" + "vaxis" "[0 0 -1 -491.52] 0.195313" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350678" + "plane" "(-392 -4984 -196) (-492 -4984 -196) (-492 -4984 -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" "350677" + "plane" "(-492 -4984 -196) (-492 -4983 -196) (-492 -4983 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350676" + "plane" "(-392 -4983 -196) (-392 -4984 -196) (-392 -4984 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 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" "5063727" + side + { + "id" "350687" + "plane" "(-392 -4983 -96) (-292 -4983 -96) (-292 -4984 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350686" + "plane" "(-392 -4984 -196) (-292 -4984 -196) (-292 -4983 -196)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350685" + "plane" "(-292 -4983 -196) (-292 -4984 -196) (-292 -4984 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350684" + "plane" "(-392 -4983 -196) (-292 -4983 -196) (-292 -4983 -96)" + "material" "CS_APOLLO/DECALS/HISTORY_01" + "uaxis" "[-1 0 0 -471.04] 0.195313" + "vaxis" "[0 0 -1 -491.52] 0.195313" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350683" + "plane" "(-292 -4984 -196) (-392 -4984 -196) (-392 -4984 -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" "350682" + "plane" "(-392 -4984 -196) (-392 -4983 -196) (-392 -4983 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -28] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "5064062" + "classname" "func_detail" + solid + { + "id" "5064060" + side + { + "id" "350723" + "plane" "(255.01 -3373.92 243) (305.922 -3323.01 243) (453 -3470.09 243)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 39.8325] 0.25" + "vaxis" "[-0.707107 -0.707107 0 10.3826] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350722" + "plane" "(305.922 -3323.01 224) (255.01 -3373.92 224) (402.088 -3521 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 39.8325] 0.25" + "vaxis" "[-0.707107 -0.707107 0 10.3826] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350721" + "plane" "(255.01 -3373.92 224) (305.922 -3323.01 224) (305.922 -3323.01 243)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.707107 0.707107 0 78.2349] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350720" + "plane" "(453 -3470.09 224) (402.088 -3521 224) (402.088 -3521 243)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.707107 0.707107 0 78.2349] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350719" + "plane" "(305.922 -3323.01 224) (453 -3470.09 224) (453 -3470.09 243)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.707107 -0.707107 0 -205.335] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350718" + "plane" "(402.088 -3521 224) (255.01 -3373.92 224) (255.01 -3373.92 243)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 39.8325] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "5047595" + "classname" "func_detail" + solid + { + "id" "4747241" + side + { + "id" "350272" + "plane" "(-1376 -6152 252) (-1376 -6152 190) (-1376 -6143 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350271" + "plane" "(-998 -6143 252) (-998 -6143 190) (-998 -6152 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350270" + "plane" "(-1376 -6143 252) (-1376 -6143 190) (-998 -6143 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350269" + "plane" "(-998 -6152 252) (-998 -6152 190) (-1376 -6152 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[-1 0 0 156.055] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350268" + "plane" "(-1376 -6152 252) (-1376 -6143 252) (-998 -6143 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350267" + "plane" "(-1376 -6143 190) (-1376 -6152 190) (-998 -6152 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "5047614" + "classname" "func_detail" + solid + { + "id" "5047609" + side + { + "id" "350290" + "plane" "(-1376 -6143 323) (-1376 -6143 252) (-1376 -6128 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350289" + "plane" "(-1376 -6128 323) (-1376 -6128 252) (-948 -6128 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" "350288" + "plane" "(-968 -6143 323) (-968 -6143 252) (-1376 -6143 252)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 288] 0.125" + "vaxis" "[0 0 -1 -600] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350287" + "plane" "(-948 -6128 323) (-948 -6128 252) (-968 -6143 252)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 288] 0.125" + "vaxis" "[0 0 -1 -600] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350286" + "plane" "(-968 -6143 323) (-1376 -6143 323) (-1376 -6128 323)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350285" + "plane" "(-948 -6128 252) (-1376 -6128 252) (-1376 -6143 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5047590" + side + { + "id" "350296" + "plane" "(-968 -6143 328) (-1376 -6143 328) (-1376 -6128 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350295" + "plane" "(-1376 -6128 323) (-1376 -6128 328) (-1376 -6143 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350294" + "plane" "(-948 -6128 323) (-948 -6128 328) (-1376 -6128 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350293" + "plane" "(-1376 -6143 323) (-1376 -6143 328) (-968 -6143 328)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -277] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350292" + "plane" "(-968 -6143 323) (-968 -6143 328) (-948 -6128 328)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -277] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350291" + "plane" "(-948 -6128 323) (-1376 -6128 323) (-1376 -6143 323)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "5047626" + "classname" "func_detail" + solid + { + "id" "5047581" + side + { + "id" "350302" + "plane" "(-1376 -6143 32) (-1376 -6128 32) (-948 -6128 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" "350301" + "plane" "(-1376 -6128 -48) (-1376 -6143 -48) (-968 -6143 -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" "350300" + "plane" "(-1376 -6143 -48) (-1376 -6128 -48) (-1376 -6128 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" "350299" + "plane" "(-1376 -6128 -48) (-948 -6128 -48) (-948 -6128 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" "350298" + "plane" "(-968 -6143 -48) (-1376 -6143 -48) (-1376 -6143 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[1 0 0 -504.996] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350297" + "plane" "(-948 -6128 -48) (-968 -6143 -48) (-968 -6143 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[0.8 0.6 0 -135.388] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "5047671" + "classname" "prop_static" + "angles" "0 246.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9534 9393 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047691" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/treeline_skybox01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9183 10710 5147" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047743" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9074.76 9948.64 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047747" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9193.53 9911.18 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047751" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9113.19 9841.26 5152.36" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047755" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9267.89 9890.27 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047759" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9203.14 9826.31 5153.97" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047763" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9285.56 9830.2 5153.55" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047767" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9375.78 9894.39 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047771" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9049.76 9922.27 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047775" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9031.82 9868.83 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047779" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8914.88 9972.78 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047783" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8924.36 9910.57 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047787" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9156.55 10062.7 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047791" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9313.67 9989.66 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047795" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9521.45 10075.3 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047799" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9470.02 9955.97 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047803" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9327.95 9827.32 5153.86" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047807" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9183.7 9645.42 5153.31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047811" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9240.3 9645.33 5152.45" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047815" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9054.07 9570.21 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047819" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9148.61 9557.64 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047823" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9098.48 9666.62 5156.92" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047827" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8936.97 9629.49 5151" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047831" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9187.78 9710.8 5163.32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047835" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9248.07 9712.64 5163.2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047839" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8816.69 9620.31 5147.76" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047843" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8694.71 9679.79 5162.58" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047847" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8783.13 9688.43 5154.91" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047858" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9541.13 8833 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047862" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9598.55 8833 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047878" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9676.79 8833 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047908" + "classname" "prop_static" + "angles" "0 45 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8563 9705.02 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5047916" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9180 10138.9 5139" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5047932" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9225 10138.9 5139" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5047940" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9195.01 10036.7 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047944" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9231.43 10044.3 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "5047948" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9182.77 9967.66 5150" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +entity +{ + "id" "5047958" + "classname" "func_detail" + solid + { + "id" "4810420" + side + { + "id" "350362" + "plane" "(173 -4791 448) (119 -4809 448) (56 -4817 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350361" + "plane" "(119 -4809 440) (119 -4809 448) (173 -4791 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[0.947951 0.318417 0 4.77344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350360" + "plane" "(56 -4817 440) (56 -4817 448) (119 -4809 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[0.990695 0.136101 0 118.957] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350359" + "plane" "(56 -4791 448) (56 -4817 448) (56 -4817 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350358" + "plane" "(173 -4791 440) (173 -4791 448) (56 -4791 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" + } + side + { + "id" "350357" + "plane" "(56 -4791 440) (56 -4817 440) (118.965 -4809 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0.125973 -0.992034 0 -201.445] 0.125" + "vaxis" "[0.991982 0.125966 0.0102164 -308.145] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +entity +{ + "id" "5047964" + "classname" "func_detail" + solid + { + "id" "4046097" + side + { + "id" "350368" + "plane" "(2112 -4032 0) (2112 -3928 0) (2232 -3928 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" "350367" + "plane" "(2112 -3928 -16) (2112 -4032 -16) (2232 -4032 -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" "350366" + "plane" "(2112 -4032 -16) (2112 -3928 -16) (2112 -3928 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" "350365" + "plane" "(2232 -3928 -16) (2232 -4032 -16) (2232 -4032 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" "350364" + "plane" "(2112 -3928 -16) (2232 -3928 -16) (2232 -3928 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350363" + "plane" "(2232 -4032 -16) (2112 -4032 -16) (2112 -4032 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_005" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +entity +{ + "id" "5047970" + "classname" "func_detail" + solid + { + "id" "4695465" + side + { + "id" "350374" + "plane" "(144 -5984 32) (172 -5984 32) (172 -6000 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001_DARK" + "uaxis" "[1 0 0 230] 0.125" + "vaxis" "[0 -1 0 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350373" + "plane" "(144 -6000 -16) (172 -6000 -16) (172 -5984 -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" "350372" + "plane" "(144 -5984 32) (144 -6000 32) (144 -6000 -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" "350371" + "plane" "(172 -5984 -16) (172 -6000 -16) (172 -6000 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350370" + "plane" "(172 -5984 32) (144 -5984 32) (144 -5984 -16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350369" + "plane" "(172 -6000 -16) (144 -6000 -16) (144 -6000 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747057" + side + { + "id" "345882" + "plane" "(-1376 -6152 256) (-1376 -6143 256) (-998 -6143 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" "345881" + "plane" "(-1376 -6143 252) (-1376 -6143 256) (-1376 -6152 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" "345880" + "plane" "(-998 -6152 252) (-998 -6152 256) (-998 -6143 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" "345879" + "plane" "(-998 -6143 252) (-998 -6143 256) (-1376 -6143 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" "345878" + "plane" "(-1376 -6152 252) (-1376 -6152 256) (-998 -6152 256)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.599999 -0.8 0 -272.207] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345877" + "plane" "(-1376 -6143 252) (-1376 -6152 252) (-998 -6152 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747242" + side + { + "id" "346104" + "plane" "(-1376 -6143 186) (-1376 -6152 186) (-998 -6152 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346103" + "plane" "(-1376 -6152 190) (-1376 -6152 186) (-1376 -6143 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346102" + "plane" "(-998 -6143 190) (-998 -6143 186) (-998 -6152 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346101" + "plane" "(-1376 -6143 190) (-1376 -6143 186) (-998 -6143 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346100" + "plane" "(-998 -6152 190) (-998 -6152 186) (-1376 -6152 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.599999 -0.8 0 -272] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346099" + "plane" "(-1376 -6152 190) (-1376 -6143 190) (-998 -6143 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5047635" + side + { + "id" "350308" + "plane" "(-1376 -6143 252) (-1376 -6143 40) (-1376 -6128 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" "350307" + "plane" "(-1376 -6128 252) (-1376 -6128 40) (-948 -6128 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" "350306" + "plane" "(-968 -6143 252) (-968 -6143 40) (-1376 -6143 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[1 0 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350305" + "plane" "(-948 -6128 252) (-948 -6128 40) (-968 -6143 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[1 0 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350304" + "plane" "(-968 -6143 252) (-1376 -6143 252) (-1376 -6128 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350303" + "plane" "(-948 -6128 40) (-1376 -6128 40) (-1376 -6143 40)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12000]" + } +} +entity +{ + "id" "5047981" + "classname" "func_detail" + solid + { + "id" "5047636" + side + { + "id" "350380" + "plane" "(-948 -6128 32) (-1376 -6128 32) (-1376 -6143 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" "350379" + "plane" "(-1376 -6143 40) (-1376 -6143 32) (-1376 -6128 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" "350378" + "plane" "(-1376 -6128 40) (-1376 -6128 32) (-948 -6128 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" "350377" + "plane" "(-968 -6143 40) (-968 -6143 32) (-1376 -6143 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[1 0 0 -929] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350376" + "plane" "(-948 -6128 40) (-948 -6128 32) (-968 -6143 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[1 0 0 -929] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350375" + "plane" "(-968 -6143 40) (-1376 -6143 40) (-1376 -6128 40)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "5047996" + "classname" "func_detail" + solid + { + "id" "4747072" + side + { + "id" "350386" + "plane" "(-1048 -5536 256) (-1048 -5456 256) (-936 -5456 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" "350385" + "plane" "(-1048 -5456 252) (-1048 -5456 256) (-1048 -5536 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" "350384" + "plane" "(-936 -5536 252) (-936 -5536 256) (-936 -5456 256)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -181] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350383" + "plane" "(-936 -5456 252) (-936 -5456 256) (-1048 -5456 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" "350382" + "plane" "(-1048 -5536 252) (-1048 -5536 256) (-936 -5536 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" "350381" + "plane" "(-1048 -5456 252) (-1048 -5536 252) (-936 -5536 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747121" + side + { + "id" "350392" + "plane" "(-1464 -5520 256) (-1464 -5344 256) (-1048 -5344 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" "350391" + "plane" "(-1464 -5344 252) (-1464 -5344 256) (-1464 -5520 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" "350390" + "plane" "(-1048 -5520 252) (-1048 -5520 256) (-1048 -5344 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" "350389" + "plane" "(-1048 -5344 252) (-1048 -5344 256) (-1464 -5344 256)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 394.988] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350388" + "plane" "(-1464 -5520 252) (-1464 -5520 256) (-1048 -5520 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" "350387" + "plane" "(-1464 -5344 252) (-1464 -5520 252) (-1048 -5520 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747267" + side + { + "id" "350398" + "plane" "(-1048 -5536 252) (-1048 -5536 190) (-1048 -5456 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350397" + "plane" "(-936 -5456 252) (-936 -5456 190) (-936 -5536 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0 -1 0 -492.922] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350396" + "plane" "(-1048 -5456 252) (-1048 -5456 190) (-936 -5456 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350395" + "plane" "(-936 -5536 252) (-936 -5536 190) (-1048 -5536 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350394" + "plane" "(-1048 -5536 252) (-1048 -5456 252) (-936 -5456 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350393" + "plane" "(-1048 -5456 190) (-1048 -5536 190) (-936 -5536 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747360" + side + { + "id" "350404" + "plane" "(-1464 -5520 252) (-1464 -5520 190) (-1464 -5344 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350403" + "plane" "(-1048 -5344 252) (-1048 -5344 190) (-1048 -5520 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350402" + "plane" "(-1464 -5344 252) (-1464 -5344 190) (-1048 -5344 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[1 0 0 -181] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350401" + "plane" "(-1048 -5520 252) (-1048 -5520 190) (-1464 -5520 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350400" + "plane" "(-1464 -5520 252) (-1464 -5344 252) (-1048 -5344 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350399" + "plane" "(-1464 -5344 190) (-1464 -5520 190) (-1048 -5520 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747067" + side + { + "id" "350410" + "plane" "(-1048 -5616 256) (-1048 -5536 256) (-936 -5536 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" "350409" + "plane" "(-1048 -5536 252) (-1048 -5536 256) (-1048 -5616 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" "350408" + "plane" "(-936 -5616 252) (-936 -5616 256) (-936 -5536 256)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -181] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350407" + "plane" "(-936 -5536 252) (-936 -5536 256) (-1048 -5536 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" "350406" + "plane" "(-1048 -5616 252) (-1048 -5616 256) (-936 -5616 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" "350405" + "plane" "(-1048 -5536 252) (-1048 -5616 252) (-936 -5616 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747265" + side + { + "id" "350416" + "plane" "(-1048 -5616 252) (-1048 -5616 190) (-1048 -5536 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350415" + "plane" "(-936 -5536 252) (-936 -5536 190) (-936 -5616 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0 -1 0 -492.922] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350414" + "plane" "(-1048 -5536 252) (-1048 -5536 190) (-936 -5536 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350413" + "plane" "(-936 -5616 252) (-936 -5616 190) (-1048 -5616 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350412" + "plane" "(-1048 -5616 252) (-1048 -5536 252) (-936 -5536 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350411" + "plane" "(-1048 -5536 190) (-1048 -5616 190) (-936 -5616 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747268" + side + { + "id" "350422" + "plane" "(-1048 -5456 186) (-1048 -5536 186) (-936 -5536 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350421" + "plane" "(-1048 -5536 190) (-1048 -5536 186) (-1048 -5456 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350420" + "plane" "(-936 -5456 190) (-936 -5456 186) (-936 -5536 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -272] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350419" + "plane" "(-1048 -5456 190) (-1048 -5456 186) (-936 -5456 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350418" + "plane" "(-936 -5536 190) (-936 -5536 186) (-1048 -5536 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350417" + "plane" "(-1048 -5536 190) (-1048 -5456 190) (-936 -5456 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747266" + side + { + "id" "350428" + "plane" "(-1048 -5536 186) (-1048 -5616 186) (-936 -5616 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350427" + "plane" "(-1048 -5616 190) (-1048 -5616 186) (-1048 -5536 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350426" + "plane" "(-936 -5536 190) (-936 -5536 186) (-936 -5616 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -272] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350425" + "plane" "(-1048 -5536 190) (-1048 -5536 186) (-936 -5536 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350424" + "plane" "(-936 -5616 190) (-936 -5616 186) (-1048 -5616 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350423" + "plane" "(-1048 -5616 190) (-1048 -5536 190) (-936 -5536 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747359" + side + { + "id" "350434" + "plane" "(-1464 -5344 186) (-1464 -5520 186) (-1048 -5520 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350433" + "plane" "(-1464 -5520 190) (-1464 -5520 186) (-1464 -5344 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350432" + "plane" "(-1048 -5344 190) (-1048 -5344 186) (-1048 -5520 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350431" + "plane" "(-1464 -5344 190) (-1464 -5344 186) (-1048 -5344 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -187.128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350430" + "plane" "(-1048 -5520 190) (-1048 -5520 186) (-1464 -5520 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350429" + "plane" "(-1464 -5520 190) (-1464 -5344 190) (-1048 -5344 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2409939" + side + { + "id" "350440" + "plane" "(-1536 -5600 328) (-1536 -5536 328) (-992 -5536 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350439" + "plane" "(-1536 -5536 32) (-1536 -5600 32) (-992 -5600 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" "350438" + "plane" "(-1536 -5600 32) (-1536 -5536 32) (-1536 -5536 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350437" + "plane" "(-992 -5536 32) (-992 -5600 32) (-992 -5600 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350436" + "plane" "(-1536 -5536 32) (-992 -5536 32) (-992 -5536 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350435" + "plane" "(-992 -5600 32) (-1536 -5600 32) (-1536 -5600 328)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13000]" + } +} +entity +{ + "id" "5048021" + "classname" "func_detail" + solid + { + "id" "3538328" + side + { + "id" "350447" + "plane" "(528 -5231.96 32) (527.652 -5232 32) (527.652 -5232 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" "350446" + "plane" "(527.646 -5232 112) (527.646 -5232 32) (462 -5232 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -23.998] 0.25" + "vaxis" "[0 0 -1 7.99805] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350445" + "plane" "(462 -5232 32) (527.66 -5232 32) (528 -5231.96 32)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350444" + "plane" "(462 -5053 32) (528 -5053 32) (528 -5053 112)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.393691 0.919243 0 272.17] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350443" + "plane" "(462 -5232 112) (462 -5232 32) (462 -5053 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" "350442" + "plane" "(528 -5053 32) (528 -5231.95 32) (528 -5231.95 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" "350441" + "plane" "(528 -5231.96 112) (527.652 -5232 112) (462 -5232 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538308" + side + { + "id" "350454" + "plane" "(528 -5053 0) (462 -5053 0) (462 -5232 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350453" + "plane" "(528 -5231.95 0) (527.649 -5232 0) (527.649 -5232 32)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350452" + "plane" "(527.648 -5232 32) (527.648 -5232 0) (462 -5232 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -23.998] 0.25" + "vaxis" "[0 0 -1 7.99805] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350451" + "plane" "(462 -5053 32) (528 -5053 32) (528 -5231.95 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.658408 -0.752662 0 -2.02246] 0.25" + "vaxis" "[-0.752662 0.658407 0 31.3389] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350450" + "plane" "(462 -5053 0) (528 -5053 0) (528 -5053 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 92.7441] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350449" + "plane" "(462 -5232 32) (462 -5232 0) (462 -5053 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" "350448" + "plane" "(528 -5053 0) (528 -5231.95 0) (528 -5231.95 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +hidden +{ + entity + { + "id" "5048113" + "classname" "prop_static" + "angles" "0 271 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245.037 -4493.67 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5048117" + "classname" "prop_static" + "angles" "0 271 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-430.435 -4478.93 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5048121" + "classname" "prop_static" + "angles" "0 271 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_128.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-520 -4274 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "5048179" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_128.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-49 -4548 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "5048199" + "classname" "func_detail" + solid + { + "id" "4749299" + side + { + "id" "350513" + "plane" "(400 -4016 236) (400 -4016 164) (400 -3984 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" + } + side + { + "id" "350512" + "plane" "(432 -4016 236) (432 -4016 164) (400 -4016 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" + } + side + { + "id" "350511" + "plane" "(400 -3984 236) (400 -3984 164) (432 -4016 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-0.707106 0.707107 0 -47.1914] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "-2147483648" + } + side + { + "id" "350510" + "plane" "(432 -4016 236) (400 -4016 236) (400 -3984 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350509" + "plane" "(400 -3984 164) (400 -4016 164) (432 -4016 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748139" + side + { + "id" "350518" + "plane" "(432 -4016 240) (400 -4016 240) (400 -3984 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" "350517" + "plane" "(400 -3984 236) (400 -3984 240) (400 -4016 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" "350516" + "plane" "(400 -4016 236) (400 -4016 240) (432 -4016 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" "350515" + "plane" "(432 -4016 236) (432 -4016 240) (400 -3984 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.707107 -0.707107 0 -500.32] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350514" + "plane" "(400 -3984 236) (400 -4016 236) (432 -4016 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748147" + side + { + "id" "350524" + "plane" "(384 -4016 208) (384 -4688 208) (432 -4688 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" "350523" + "plane" "(384 -4688 208) (384 -4016 208) (384 -4016 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350522" + "plane" "(432 -4016 208) (432 -4688 208) (432 -4688 236)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0 1 0 51.9302] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "-2147483648" + } + side + { + "id" "350521" + "plane" "(384 -4016 208) (432 -4016 208) (432 -4016 236)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 463] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350520" + "plane" "(432 -4688 208) (384 -4688 208) (384 -4688 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350519" + "plane" "(384 -4688 236) (384 -4016 236) (432 -4016 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748146" + side + { + "id" "350530" + "plane" "(384 -4688 240) (384 -4016 240) (432 -4016 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" "350529" + "plane" "(384 -4016 236) (384 -4016 240) (384 -4688 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" "350528" + "plane" "(432 -4688 236) (432 -4688 240) (432 -4016 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -298.63] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350527" + "plane" "(432 -4016 236) (432 -4016 240) (384 -4016 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" "350526" + "plane" "(384 -4688 236) (384 -4688 240) (432 -4688 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" "350525" + "plane" "(384 -4016 236) (384 -4688 236) (432 -4688 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14268]" + } +} +entity +{ + "id" "5048211" + "classname" "func_detail" + solid + { + "id" "4749300" + side + { + "id" "350535" + "plane" "(400 -3984 160) (400 -4016 160) (432 -4016 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[-1 0 0 -110] 0.25" + "vaxis" "[0 -1 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350534" + "plane" "(400 -4016 164) (400 -4016 160) (400 -3984 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" "350533" + "plane" "(432 -4016 164) (432 -4016 160) (400 -4016 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" "350532" + "plane" "(400 -3984 164) (400 -3984 160) (432 -4016 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.707106 0.707107 0 -25] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350531" + "plane" "(432 -4016 164) (400 -4016 164) (400 -3984 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +entity +{ + "id" "5048226" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "2040 -4199 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4662964" + side + { + "id" "350547" + "plane" "(2040 -4200 52) (2040 -4200 44) (2040 -4198 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 -1 0 808.633] 0.125" + "vaxis" "[0 0 -1 480.572] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350546" + "plane" "(2048 -4198 50) (2048 -4198 46) (2048 -4200 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" "350545" + "plane" "(2040 -4198 50) (2040 -4198 46) (2048 -4198 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350544" + "plane" "(2048 -4200 52) (2048 -4200 44) (2040 -4200 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" "350543" + "plane" "(2040 -4198 46) (2040 -4200 44) (2048 -4200 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -503.516] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350542" + "plane" "(2040 -4200 52) (2040 -4198 50) (2048 -4198 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0.707107 -0.707107 480.572] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" + } +} +entity +{ + "id" "5048234" + "classname" "func_detail" + solid + { + "id" "4522841" + side + { + "id" "350553" + "plane" "(2427 -4161 0) (2459 -4161 0) (2459 -4208 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 -1 0 58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350552" + "plane" "(2427 -4208 -16) (2459 -4208 -16) (2459 -4161 -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" "350551" + "plane" "(2427 -4161 0) (2427 -4208 0) (2427 -4208 -16)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 -60] 0.125" + "vaxis" "[0 0 -1 58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350550" + "plane" "(2459 -4161 -16) (2459 -4208 -16) (2459 -4208 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" "350549" + "plane" "(2459 -4161 0) (2427 -4161 0) (2427 -4161 -16)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350548" + "plane" "(2459 -4208 -16) (2427 -4208 -16) (2427 -4208 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "5048240" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1318.5 -4199 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4664145" + side + { + "id" "350559" + "plane" "(1024 -4200 52) (1024 -4200 44) (1024 -4198 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 808.633] 0.125" + "vaxis" "[0 0 -1 480.572] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350558" + "plane" "(1024 -4198 50) (1024 -4198 46) (1613 -4198 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350557" + "plane" "(1613 -4200 44) (1024 -4200 44) (1024 -4200 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350556" + "plane" "(1024 -4198 46) (1024 -4200 44) (1613 -4200 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -503.516] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350555" + "plane" "(1024 -4200 52) (1024 -4198 50) (1613 -4198 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0.707107 -0.707107 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350554" + "plane" "(1613 -4198 50) (1613 -4198 46) (1613 -4200 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11768]" + } +} +entity +{ + "id" "5048248" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1023 -4716 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4663244" + side + { + "id" "350565" + "plane" "(1022 -4784 50) (1022 -4784 46) (1022 -4648 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 799.996] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350564" + "plane" "(1024 -4648 44) (1024 -4784 44) (1024 -4784 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350563" + "plane" "(1024 -4784 52) (1024 -4784 44) (1022 -4784 46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350562" + "plane" "(1022 -4784 50) (1022 -4648 50) (1024 -4648 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 800] 0.125" + "vaxis" "[-0.707107 0 -0.707107 203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350561" + "plane" "(1024 -4784 44) (1024 -4648 44) (1022 -4648 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 800] 0.125" + "vaxis" "[0.707107 0 -0.707107 -440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350560" + "plane" "(1022 -4648 50) (1022 -4648 46) (1024 -4648 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "5048256" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "2223 -6033 48.5" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4680245" + side + { + "id" "350573" + "plane" "(2222 -6176 47) (2222 -5888 46) (2222 -5888 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 -640] 0.125" + "vaxis" "[0 0 -1 -165] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350572" + "plane" "(2224 -5888 52) (2224 -5888 44) (2224 -6176 45)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350571" + "plane" "(2222 -5888 50) (2222 -5888 46) (2224 -5888 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" "350570" + "plane" "(2222 -6176 51) (2222 -5888 50) (2224 -5888 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.00243829 1 -0.00100997 -683] 0.125" + "vaxis" "[-0.707105 0.00100997 -0.707108 75] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350569" + "plane" "(2224 -6176 45) (2224 -5888 44) (2222 -5888 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 -640] 0.125" + "vaxis" "[0.707107 0 -0.707107 -73] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350568" + "plane" "(2224 -6178 51) (2224 -6178 47) (2223 -6177 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350567" + "plane" "(2224 -6176 53) (2224 -6178 51) (2223 -6177 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350566" + "plane" "(2224 -6178 47) (2224 -6176 45) (2223 -6177 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "5032101" + "classname" "func_detail" + solid + { + "id" "4153137" + side + { + "id" "350076" + "plane" "(2232 -4032 64) (2208 -4008 64) (2208 -3952 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[-1 0 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350075" + "plane" "(2232 -4032 56) (2232 -4032 64) (2232 -3928 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 1 -377] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350074" + "plane" "(2232 -4032 64) (2232 -4032 56) (2208 -4008 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350073" + "plane" "(2232 -4032 56) (2232 -3928 56) (2208 -3952 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350072" + "plane" "(2232 -3928 64) (2208 -3952 64) (2208 -3952 56)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350071" + "plane" "(2208 -4008 64) (2208 -4008 56) (2208 -3952 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 1 71] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4153123" + side + { + "id" "350082" + "plane" "(2208 -3952 64) (2065 -3952 64) (2041 -3928 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[-1 0 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350081" + "plane" "(2041 -3928 64) (2065 -3952 64) (2065 -3952 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350080" + "plane" "(2232 -3928 64) (2232 -3928 56) (2208 -3952 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350079" + "plane" "(2232 -3928 64) (2041 -3928 64) (2041 -3928 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -889.994] 0.125" + "vaxis" "[-1 0 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350078" + "plane" "(2065 -3952 56) (2208 -3952 56) (2232 -3928 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350077" + "plane" "(2065 -3952 64) (2208 -3952 64) (2208 -3952 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 -473.994] 0.125" + "vaxis" "[-1 0 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4153132" + side + { + "id" "350088" + "plane" "(2065 -4032 64) (2065 -4008 64) (2208 -4008 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[-1 0 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350087" + "plane" "(2065 -4032 56) (2065 -4032 64) (2232 -4032 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 -281.994] 0.125" + "vaxis" "[-1 0 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350086" + "plane" "(2065 -4008 56) (2065 -4032 56) (2232 -4032 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350085" + "plane" "(2208 -4008 56) (2208 -4008 64) (2065 -4008 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -697.994] 0.125" + "vaxis" "[-1 0 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350084" + "plane" "(2065 -4032 64) (2065 -4032 56) (2065 -4008 56)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350083" + "plane" "(2232 -4032 56) (2232 -4032 64) (2208 -4008 64)" + "material" "DEV/REFLECTIVITY_90B" + "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" "4152870" + side + { + "id" "350094" + "plane" "(2041 -3928 56) (2232 -3928 56) (2232 -4032 56)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350093" + "plane" "(2041 -4032 0) (2232 -4032 0) (2232 -3928 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" "350092" + "plane" "(2041 -3928 56) (2041 -4032 56) (2041 -4032 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -528] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350091" + "plane" "(2232 -3928 0) (2232 -4032 0) (2232 -4032 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" "350090" + "plane" "(2232 -3928 56) (2041 -3928 56) (2041 -3928 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350089" + "plane" "(2232 -4032 0) (2041 -4032 0) (2041 -4032 56)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4153128" + side + { + "id" "350100" + "plane" "(2041 -4032 64) (2041 -3928 64) (2065 -3952 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[-1 0 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350099" + "plane" "(2041 -4032 64) (2041 -4032 56) (2041 -3928 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350098" + "plane" "(2041 -4032 56) (2041 -4032 64) (2065 -4032 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350097" + "plane" "(2041 -4032 56) (2065 -4032 56) (2065 -3952 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350096" + "plane" "(2041 -3928 64) (2041 -3928 56) (2065 -3952 56)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350095" + "plane" "(2065 -4032 56) (2065 -4032 64) (2065 -3952 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 1 -953] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "5032123" + "classname" "func_detail" + solid + { + "id" "4810931" + side + { + "id" "350106" + "plane" "(-240 -4795 240) (-296 -4795 240) (-296 -4814 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" "350105" + "plane" "(-296 -4814 440) (-296 -4814 240) (-296 -4795 240)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[0 -1 0 45] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350104" + "plane" "(-240 -4814 240) (-296 -4814 240) (-296 -4814 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 -13.2973] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "350103" + "plane" "(-240 -4814 440) (-296 -4814 440) (-296 -4795 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" "350102" + "plane" "(-296 -4795 440) (-296 -4795 240) (-240 -4795 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" "350101" + "plane" "(-240 -4795 240) (-240 -4814 240) (-240 -4814 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4810062" + side + { + "id" "350112" + "plane" "(-296 -4817 448) (-296 -4791 448) (56 -4791 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350111" + "plane" "(-296 -4791 448) (-296 -4817 448) (-296 -4817 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350110" + "plane" "(56 -4817 440) (56 -4817 448) (56 -4791 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" "350109" + "plane" "(-296 -4817 440) (-296 -4817 448) (56 -4817 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[1 0 0 -10.0503] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350108" + "plane" "(-296 -4791 440) (-296 -4817 440) (56 -4817 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 -1 0 -196] 0.125" + "vaxis" "[1 0 0 -10.0503] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350107" + "plane" "(56 -4791 440) (56 -4791 448) (-296 -4791 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4810932" + side + { + "id" "350118" + "plane" "(-24 -4795 360) (-240 -4795 360) (-240 -4814 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 192] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350117" + "plane" "(-24 -4814 360) (-240 -4814 360) (-240 -4814 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 -13.2973] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "350116" + "plane" "(-24 -4814 440) (-240 -4814 440) (-240 -4795 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" "350115" + "plane" "(-240 -4795 360) (-24 -4795 360) (-24 -4795 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350114" + "plane" "(-24 -4795 360) (-24 -4814 360) (-24 -4814 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350113" + "plane" "(-240 -4814 440) (-240 -4814 360) (-240 -4795 360)" + "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" "4810925" + side + { + "id" "350124" + "plane" "(-24 -4814 240) (56 -4814 240) (56 -4795 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" "350123" + "plane" "(56 -4795 240) (56 -4814 240) (56 -4814 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350122" + "plane" "(56 -4814 440) (56 -4814 240) (-24 -4814 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 -13.2973] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "350121" + "plane" "(-24 -4795 440) (56 -4795 440) (56 -4814 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" "350120" + "plane" "(-24 -4795 240) (56 -4795 240) (56 -4795 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350119" + "plane" "(-24 -4814 440) (-24 -4814 240) (-24 -4795 240)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4810912" + side + { + "id" "350130" + "plane" "(116 -4809 360) (116 -4809 440) (170 -4791 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0.948683 0.316228 0 748.275] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "350129" + "plane" "(56 -4791 440) (56 -4814 440) (56 -4814 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350128" + "plane" "(116 -4809 360) (170 -4791 360) (56 -4791 360)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0.627329 -0.778754 0 -71] 0.125" + "vaxis" "[0.778729 0.627309 -0.00794935 857] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350127" + "plane" "(170 -4791 360) (170 -4791 440) (56 -4791 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350126" + "plane" "(56 -4814 440) (56 -4791 440) (170 -4791 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" "350125" + "plane" "(56 -4814 360) (56 -4814 440) (116 -4809 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4810421" + side + { + "id" "350136" + "plane" "(170 -4791 360) (170 -4791 440) (206 -4762 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0.778754 0.62733 0 654.391] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "350135" + "plane" "(170 -4791 360) (206 -4762 360) (193 -4762 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0.778753 0.627329 0 -71] 0.125" + "vaxis" "[-0.627329 0.778753 0 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350134" + "plane" "(206 -4762 360) (206 -4762 440) (193 -4762 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350133" + "plane" "(170 -4791 360) (157 -4791 360) (157 -4791 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350132" + "plane" "(193 -4762 360) (193 -4762 440) (157 -4791 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350131" + "plane" "(170 -4791 440) (157 -4791 440) (193 -4762 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4810422" + side + { + "id" "350142" + "plane" "(209 -4762 448) (173 -4791 448) (157 -4791 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350141" + "plane" "(173 -4791 440) (173 -4791 448) (209 -4762 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 2.89977] 0.125" + "vaxis" "[0.783716 0.621119 0 583.336] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350140" + "plane" "(209 -4762 440) (209 -4762 448) (193 -4762 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" + } + side + { + "id" "350139" + "plane" "(157 -4791 448) (173 -4791 448) (173 -4791 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350138" + "plane" "(193 -4762 440) (193 -4762 448) (157 -4791 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" + } + side + { + "id" "350137" + "plane" "(157 -4791 440) (173 -4791 440) (209 -4762 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0.627329 -0.778754 0 -57.4043] 0.125" + "vaxis" "[0.778729 0.627309 -0.00794929 855.49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4810423" + side + { + "id" "350148" + "plane" "(193 -4762 360) (206 -4762 360) (219 -4728 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-0.357137 -0.934051 0 -71] 0.125" + "vaxis" "[0.934051 -0.357137 0 12] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350147" + "plane" "(206 -4728 360) (206 -4728 440) (193 -4762 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350146" + "plane" "(206 -4762 360) (206 -4762 440) (219 -4728 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 0 1 815] 0.125" + "vaxis" "[0.357137 0.934052 0 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "350145" + "plane" "(219 -4728 360) (219 -4728 440) (206 -4728 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350144" + "plane" "(193 -4762 360) (193 -4762 440) (206 -4762 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350143" + "plane" "(206 -4728 440) (219 -4728 440) (206 -4762 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4810424" + side + { + "id" "350154" + "plane" "(193 -4762 448) (206 -4728 448) (222 -4728 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350153" + "plane" "(206 -4728 440) (206 -4728 448) (193 -4762 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" "350152" + "plane" "(209 -4762 440) (209 -4762 448) (222 -4728 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 2.89977] 0.125" + "vaxis" "[0.357137 0.934052 0 930.064] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350151" + "plane" "(222 -4728 440) (222 -4728 448) (206 -4728 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" + } + side + { + "id" "350150" + "plane" "(193 -4762 440) (193 -4762 448) (209 -4762 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" + } + side + { + "id" "350149" + "plane" "(206 -4728 440) (193 -4762 440) (209 -4762 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0.934052 -0.357137 0 -124.344] 0.125" + "vaxis" "[0.357137 0.934051 0 930.058] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "5032153" + "classname" "func_detail" + solid + { + "id" "4810935" + side + { + "id" "350160" + "plane" "(-240 -4799 360) (16 -4799 360) (16 -4803 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350159" + "plane" "(-240 -4803 240) (16 -4803 240) (16 -4799 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" "350158" + "plane" "(-240 -4799 360) (-240 -4803 360) (-240 -4803 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" "350157" + "plane" "(16 -4799 240) (16 -4803 240) (16 -4803 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350156" + "plane" "(16 -4799 360) (-240 -4799 360) (-240 -4799 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" "350155" + "plane" "(16 -4803 240) (-240 -4803 240) (-240 -4803 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 704] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4811309" + side + { + "id" "350166" + "plane" "(-240 -4811 360) (16 -4811 360) (16 -4812 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350165" + "plane" "(-240 -4812 240) (16 -4812 240) (16 -4811 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" "350164" + "plane" "(-240 -4811 360) (-240 -4812 360) (-240 -4812 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" "350163" + "plane" "(16 -4811 240) (16 -4812 240) (16 -4812 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350162" + "plane" "(16 -4811 360) (-240 -4811 360) (-240 -4811 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" "350161" + "plane" "(16 -4812 240) (-240 -4812 240) (-240 -4812 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 240] 1" + "vaxis" "[0 0 -1 0] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4810123" + side + { + "id" "350172" + "plane" "(194 -4762 240) (158 -4791 240) (158 -4791 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0.778753 0.627329 0 554.717] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350171" + "plane" "(157 -4791 240) (158 -4791 240) (194 -4762 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" "350170" + "plane" "(194 -4762 360) (158 -4791 360) (157 -4791 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350169" + "plane" "(193 -4762 240) (194 -4762 240) (194 -4762 360)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350168" + "plane" "(158 -4791 360) (158 -4791 240) (157 -4791 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350167" + "plane" "(157 -4791 240) (193 -4762 240) (193 -4762 360)" + "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" "4810184" + side + { + "id" "350178" + "plane" "(158 -4791 360) (104 -4809 360) (104 -4808 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350177" + "plane" "(104 -4809 240) (158 -4791 240) (157 -4791 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" "350176" + "plane" "(104 -4808 360) (104 -4808 240) (157 -4791 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" "350175" + "plane" "(104 -4809 240) (104 -4809 360) (158 -4791 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0.948683 0.316227 0 704] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350174" + "plane" "(157 -4791 360) (157 -4791 240) (158 -4791 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" "350173" + "plane" "(104 -4808 240) (104 -4808 360) (104 -4809 360)" + "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" "4810181" + side + { + "id" "350184" + "plane" "(170 -4791 360) (116 -4809 360) (116 -4808 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350183" + "plane" "(116 -4809 240) (170 -4791 240) (169 -4791 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" "350182" + "plane" "(116 -4808 360) (116 -4808 240) (169 -4791 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" "350181" + "plane" "(116 -4809 240) (116 -4809 360) (170 -4791 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0.948683 0.316227 0 240] 1" + "vaxis" "[0 0 -1 0] 0.469" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350180" + "plane" "(169 -4791 360) (169 -4791 240) (170 -4791 240)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350179" + "plane" "(116 -4808 240) (116 -4808 360) (116 -4809 360)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "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" "4810079" + side + { + "id" "350190" + "plane" "(193 -4762 360) (206 -4728 360) (207 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350189" + "plane" "(206 -4728 240) (193 -4762 240) (194 -4762 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" "350188" + "plane" "(193 -4762 240) (206 -4728 240) (206 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350187" + "plane" "(207 -4728 240) (194 -4762 240) (194 -4762 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0.357137 0.934051 0 605.954] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350186" + "plane" "(206 -4728 240) (207 -4728 240) (207 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350185" + "plane" "(194 -4762 240) (193 -4762 240) (193 -4762 360)" + "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" "4810236" + side + { + "id" "350195" + "plane" "(56 -4814 240) (56 -4809 240) (56 -4809 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350194" + "plane" "(56 -4809 240) (56 -4814 240) (116 -4809 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" "350193" + "plane" "(56 -4814 360) (56 -4809 360) (116 -4809 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350192" + "plane" "(56 -4809 360) (56 -4809 240) (116 -4809 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" "350191" + "plane" "(115.986 -4809 240) (56 -4814 240) (56 -4814 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0.996544 0.0830643 0 240] 1" + "vaxis" "[0 0 -1 0] 0.469" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4795157" + side + { + "id" "350201" + "plane" "(205 -4762 360) (218 -4728 360) (219 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350200" + "plane" "(218 -4728 240) (205 -4762 240) (206 -4762 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" "350199" + "plane" "(205 -4762 240) (218 -4728 240) (218 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350198" + "plane" "(219 -4728 240) (206 -4762 240) (206 -4762 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 240] 1" + "vaxis" "[0 0 -1 0] 0.469" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350197" + "plane" "(218 -4728 240) (219 -4728 240) (219 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350196" + "plane" "(206 -4762 240) (205 -4762 240) (205 -4762 360)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4810121" + side + { + "id" "350207" + "plane" "(206 -4762 240) (170 -4791 240) (170 -4791 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0.778754 0.627329 0 240] 1" + "vaxis" "[0 0 -1 0] 0.469" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350206" + "plane" "(169 -4791 240) (170 -4791 240) (206 -4762 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" "350205" + "plane" "(206 -4762 360) (170 -4791 360) (169 -4791 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350204" + "plane" "(205 -4762 240) (206 -4762 240) (206 -4762 360)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350203" + "plane" "(170 -4791 360) (170 -4791 240) (169 -4791 240)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350202" + "plane" "(169 -4791 240) (205 -4762 240) (205 -4762 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.778754 0.627329 0 -57.2021] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "5032175" + "classname" "func_detail" + solid + { + "id" "4810386" + side + { + "id" "350212" + "plane" "(104.035 -4809 240) (56 -4809 240) (56 -4813 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" "350211" + "plane" "(56 -4809 360) (103.988 -4809 360) (56 -4813 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350210" + "plane" "(56 -4809 240) (103.988 -4809 240) (103.988 -4809 360)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350209" + "plane" "(103.988 -4809 240) (56 -4813 240) (56 -4813 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0.996544 0.0830653 0 -114.014] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350208" + "plane" "(56 -4813 240) (56 -4809 240) (56 -4809 360)" + "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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "5032183" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "1352 -3020 284" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1978635" + side + { + "id" "350218" + "plane" "(1351 -2912 224) (1351 -2912 344) (1351 -3128 344)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 59.2593] 0.25" + "vaxis" "[0 0 -1 29.8666] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350217" + "plane" "(1353 -3128 224) (1353 -3128 344) (1353 -2912 344)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 59.2593] 0.25" + "vaxis" "[0 0 -1 29.8666] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350216" + "plane" "(1353 -2912 224) (1353 -2912 344) (1351 -2912 344)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350215" + "plane" "(1351 -3128 224) (1351 -3128 344) (1353 -3128 344)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350214" + "plane" "(1351 -2912 224) (1351 -3128 224) (1353 -3128 224)" + "material" "CEILING/HR_C/HR_CEILING_TILE_001_COLOR" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350213" + "plane" "(1351 -3128 344) (1351 -2912 344) (1353 -2912 344)" + "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 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "5001351" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/destinationmoonsign001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 -5153 180" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "5001390" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/destinationmoonsign001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1855 -4152 158" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4985952" + "classname" "prop_static" + "angles" "0 271 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase1.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2138 -5467 48.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4985982" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_ceiling_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "839 -4570 154" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4986010" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_ceiling_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "560 -4570 154" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "4970564" + "classname" "func_detail" + solid + { + "id" "4970561" + side + { + "id" "349850" + "plane" "(29 -4861.38 254) (29 -4807.38 254) (208 -4807.38 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349849" + "plane" "(29 -4807.38 240) (29 -4861.38 240) (208 -4861.38 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" "349848" + "plane" "(29 -4861.38 240) (29 -4807.38 240) (29 -4807.38 254)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 623] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349847" + "plane" "(208 -4807.38 240) (208 -4861.38 240) (208 -4861.38 254)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 623] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349846" + "plane" "(29 -4807.38 240) (208 -4807.38 240) (208 -4807.38 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349845" + "plane" "(208 -4861.38 240) (29 -4861.38 240) (29 -4861.38 254)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 623] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "4970576" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/display_map.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2155.81 -3792.88 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4955221" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "3 -4814 462" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/stain01" + "sides" "350122" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "3 -4814 462" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "4939604" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/display_map.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1136 -3016 -38" + editor + { + "color" "252 237 0" + "groupid" "4939646" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4939630" + "classname" "func_detail" + solid + { + "id" "4939624" + side + { + "id" "349730" + "plane" "(1134.98 -3007.98 50.7353) (1133.98 -3007.98 50.7353) (1133.98 -2999.98 50.7353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[-1 0 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349729" + "plane" "(1134.98 -2999.98 42.7353) (1133.98 -2999.98 42.7353) (1133.98 -3007.98 42.7353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[-1 0 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349728" + "plane" "(1133.98 -2999.98 42.7353) (1134.98 -2999.98 42.7353) (1134.98 -2999.98 50.7353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349727" + "plane" "(1134.98 -3007.98 42.7353) (1133.98 -3007.98 42.7353) (1133.98 -3007.98 50.7353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349726" + "plane" "(1134.98 -2999.98 42.7353) (1134.98 -3007.98 42.7353) (1134.98 -3007.98 50.7353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349725" + "plane" "(1133.98 -3007.98 42.7353) (1133.98 -2999.98 42.7353) (1133.98 -2999.98 50.7353)" + "material" "CS_APOLLO/DECALS/YOU_ARE_HERE" + "uaxis" "[0 -1 0 0] 0.03125" + "vaxis" "[0 0 -1 87.5299] 0.03125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "252 237 0" + "groupid" "4939663" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "4939685" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/display_map.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2295.3 -5408.85 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4939707" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/display_map.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "956.861 -4780.75 0.25" + editor + { + "color" "176 249 0" + "groupid" "4939719" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4939737" + "classname" "func_detail" + solid + { + "id" "4939735" + side + { + "id" "349772" + "plane" "(1940 -3977 79) (1940 -3976 79) (1948 -3976 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -35.998] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349771" + "plane" "(1940 -3976 71) (1940 -3977 71) (1948 -3977 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -35.998] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349770" + "plane" "(1948 -3976 71) (1948 -3977 71) (1948 -3977 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349769" + "plane" "(1940 -3977 71) (1940 -3976 71) (1940 -3976 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349768" + "plane" "(1948 -3977 71) (1940 -3977 71) (1940 -3977 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -35.998] 0.25" + "vaxis" "[0 0 -1 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349767" + "plane" "(1940 -3976 71) (1948 -3976 71) (1948 -3976 79)" + "material" "CS_APOLLO/DECALS/YOU_ARE_HERE" + "uaxis" "[-1 0 0 -127.984] 0.03125" + "vaxis" "[0 0 -1 -32] 0.03125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +hidden +{ + entity + { + "id" "4939746" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "76 -5228.39 4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4939754" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "19 -5228 4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4939758" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "121 -5228 4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +entity +{ + "id" "4939764" + "classname" "func_detail" + solid + { + "id" "4939762" + side + { + "id" "349784" + "plane" "(-9 -5233 101.875) (-9 -5232 101.875) (153 -5232 101.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349783" + "plane" "(-9 -5232 -0.125004) (-9 -5233 -0.125004) (153 -5233 -0.125004)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349782" + "plane" "(-9 -5233 -0.125004) (-9 -5232 -0.125004) (-9 -5232 101.873)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349781" + "plane" "(153 -5232 -0.125003) (153 -5233 -0.125003) (153 -5233 101.873)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349780" + "plane" "(-9 -5232 -0.125004) (153 -5232 -0.125004) (153 -5232 101.873)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 -14] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349779" + "plane" "(153 -5233 -0.125004) (-9 -5233 -0.125004) (-9 -5233 101.873)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -40] 0.25" + "vaxis" "[0 0 -1 -14] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "4939775" + "classname" "func_detail" + solid + { + "id" "4939773" + side + { + "id" "349796" + "plane" "(1859 -3979 125) (1859 -3978 125) (2026 -3978 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349795" + "plane" "(1859 -3978 10.5989) (1859 -3979 10.5989) (2026 -3979 10.5989)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349794" + "plane" "(1859 -3979 10.5983) (1859 -3978 10.5983) (1859 -3978 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349793" + "plane" "(2026 -3978 10.5982) (2026 -3979 10.5982) (2026 -3979 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349792" + "plane" "(1859 -3978 10.5983) (2026 -3978 10.5983) (2026 -3978 125)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349791" + "plane" "(2026 -3979 10.5983) (1859 -3979 10.5983) (1859 -3979 125)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 0 -1 -66] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "4939792" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/display_map.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-676 -3497 13" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4939811" + "classname" "func_detail" + solid + { + "id" "4939808" + side + { + "id" "349808" + "plane" "(-760 -3500 131.875) (-593 -3500 131.875) (-593 -3501 131.875)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 402] 0.25" + "vaxis" "[0 -1 0 -361.749] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349807" + "plane" "(-760 -3501 41) (-593 -3501 41) (-593 -3500 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349806" + "plane" "(-760 -3500 131.875) (-760 -3501 131.875) (-760 -3501 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349805" + "plane" "(-593 -3500 41) (-593 -3501 41) (-593 -3501 131.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349804" + "plane" "(-593 -3500 131.875) (-760 -3500 131.875) (-760 -3500 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349803" + "plane" "(-593 -3501 41) (-760 -3501 41) (-760 -3501 131.875)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 402] 0.25" + "vaxis" "[0 0 -1 857.75] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "4939833" + "classname" "func_detail" + solid + { + "id" "4939824" + side + { + "id" "349832" + "plane" "(-638 -3496 94.3709) (-638 -3495 94.3709) (-630 -3495 94.3709)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 -1 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349831" + "plane" "(-630 -3496 86.3709) (-630 -3495 86.3709) (-638 -3495 86.3709)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 -1 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349830" + "plane" "(-630 -3495 86.3709) (-630 -3496 86.3709) (-630 -3496 94.3709)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349829" + "plane" "(-638 -3496 86.3709) (-638 -3495 86.3709) (-638 -3495 94.3709)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349828" + "plane" "(-630 -3496 86.3709) (-638 -3496 86.3709) (-638 -3496 94.3709)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349827" + "plane" "(-638 -3495 86.3709) (-630 -3495 86.3709) (-630 -3495 94.3709)" + "material" "CS_APOLLO/DECALS/YOU_ARE_HERE" + "uaxis" "[-1 0 0 -201.252] 0.03125" + "vaxis" "[0 0 -1 203.87] 0.03125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +hidden +{ + entity + { + "id" "4939838" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_restroom_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-64 -3746 118" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "4924139" + "classname" "func_detail" + solid + { + "id" "4924137" + side + { + "id" "349652" + "plane" "(38 -5234.08 58) (38 -5233.08 58) (46 -5233.08 58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349651" + "plane" "(38 -5233.08 50) (38 -5234.08 50) (46 -5234.08 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349650" + "plane" "(38 -5234.08 50) (38 -5233.08 50) (38 -5233.08 58)" + "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" "349649" + "plane" "(46 -5233.08 50) (46 -5234.08 50) (46 -5234.08 58)" + "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" "349648" + "plane" "(38 -5233.08 50) (46 -5233.08 50) (46 -5233.08 58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349647" + "plane" "(46 -5234.08 50) (38 -5234.08 50) (38 -5234.08 58)" + "material" "CS_APOLLO/DECALS/YOU_ARE_HERE" + "uaxis" "[1 0 0 -192] 0.03125" + "vaxis" "[0 0 -1 64] 0.03125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "235 204 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "235 204 0" + "groupid" "4924162" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "4924146" + "classname" "func_detail" + solid + { + "id" "4924147" + side + { + "id" "349664" + "plane" "(98 -5231 58) (98 -5230 58) (106 -5230 58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.0018] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349663" + "plane" "(98 -5230 50) (98 -5231 50) (106 -5231 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.0018] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349662" + "plane" "(106 -5230 50) (106 -5231 50) (106 -5231 58)" + "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" "349661" + "plane" "(98 -5231 50) (98 -5230 50) (98 -5230 58)" + "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" "349660" + "plane" "(106 -5231 50) (98 -5231 50) (98 -5231 58)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16.0018] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349659" + "plane" "(98 -5230 50) (106 -5230 50) (106 -5230 58)" + "material" "CS_APOLLO/DECALS/YOU_ARE_HERE" + "uaxis" "[-1 0 0 64] 0.03125" + "vaxis" "[0 0 -1 64] 0.03125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "235 204 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "235 204 0" + "groupid" "4924162" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "4924264" + "classname" "func_detail" + solid + { + "id" "4924265" + side + { + "id" "349706" + "plane" "(1932 -3980 79) (1932 -3979 79) (1940 -3979 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 31.4805] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349705" + "plane" "(1932 -3979 71) (1932 -3980 71) (1940 -3980 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 31.4805] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349704" + "plane" "(1932 -3980 71) (1932 -3979 71) (1932 -3979 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.4805] 0.25" + "vaxis" "[0 0 -1 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349703" + "plane" "(1940 -3979 71) (1940 -3980 71) (1940 -3980 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -31.4805] 0.25" + "vaxis" "[0 0 -1 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349702" + "plane" "(1932 -3979 71) (1940 -3979 71) (1940 -3979 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 0 -1 -44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349701" + "plane" "(1940 -3980 71) (1932 -3980 71) (1932 -3980 79)" + "material" "CS_APOLLO/DECALS/YOU_ARE_HERE" + "uaxis" "[1 0 0 -128] 0.03125" + "vaxis" "[0 0 -1 -32] 0.03125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "235 204 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "235 204 0" + "groupid" "4924263" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "4924268" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/display_map.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1949 -3978 5" + editor + { + "color" "235 204 0" + "groupid" "4924263" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4908289" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-1 0 0" + "BasisOrigin" "1807 -2220 166.213" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/decals/naturetext" + "sides" "296341" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -32 0" + "uv1" "-128 32 0" + "uv2" "128 32 0" + "uv3" "128 -32 0" + "origin" "1807 -2220 166.213" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "4908409" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1536 -2193 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4908421" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1578.74 -2495.31 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908425" + "classname" "prop_static" + "angles" "0 112 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1686 -2470 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908429" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1633.4 -2468.48 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908433" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1503.79 -2516.5 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908437" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1498.03 -2458.42 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908441" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1570.07 -2465.07 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908449" + "classname" "prop_static" + "angles" "0 148 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1754.6 -2524.72 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908453" + "classname" "prop_static" + "angles" "0 192 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1725.72 -2477.92 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908457" + "classname" "prop_static" + "angles" "0 183 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1667.59 -2535.43 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908461" + "classname" "prop_static" + "angles" "0 148 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1582.03 -2544.98 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908465" + "classname" "prop_static" + "angles" "0 148 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1618.42 -2504.54 -33.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908497" + "classname" "prop_static" + "angles" "0 276.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1494 -2492 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908509" + "classname" "prop_static" + "angles" "0 169.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1556 -2485 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908521" + "classname" "prop_static" + "angles" "0 192 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1594 -2474 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908533" + "classname" "prop_static" + "angles" "0 192 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1674 -2474 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908537" + "classname" "prop_static" + "angles" "0 280.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1628 -2477 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908549" + "classname" "prop_static" + "angles" "0 192 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1732 -2475 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4908565" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1759.95 -2119.15 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4908569" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1758.71 -2025.39 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4908573" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1754.28 -1915.68 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4908577" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1775.58 -2455.76 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4908581" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1743 -2449.68 -39" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4908713" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush003.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2370 -4856.83 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4908729" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush003.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2374 -4889 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4908733" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush003.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2373 -4962 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +entity +{ + "id" "4891958" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 0 -0" + "BasisOrigin" "635 -841 322" + "BasisU" "0 1 0" + "BasisV" "0 -0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/lunatext" + "sides" "370984 370978 370989" + "StartU" "0" + "StartV" "1" + "uv0" "-207.582 -53.0799 0" + "uv1" "-207.582 53.0799 0" + "uv2" "207.582 53.0799 0" + "uv3" "207.582 -53.0799 0" + "origin" "635 -841 322" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4892181" + "classname" "func_detail" + solid + { + "id" "4892178" + side + { + "id" "348991" + "plane" "(816 -1389 100) (1376 -1389 100) (1376 -1392 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" "348990" + "plane" "(816 -1392 -14) (1376 -1392 -14) (1376 -1389 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348989" + "plane" "(816 -1389 100) (816 -1392 100) (816 -1392 -14)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348988" + "plane" "(1376 -1389 -14) (1376 -1392 -14) (1376 -1392 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 65] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348987" + "plane" "(1376 -1389 100) (816 -1389 100) (816 -1389 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348986" + "plane" "(1376 -1392 -14) (816 -1392 -14) (816 -1392 100)" + "material" "TARPS/HR_TARPS/HR_TARP_A1" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "4892746" + "classname" "info_overlay" + "BasisNormal" "0 1 0" + "BasisOrigin" "-1239.66 -5504 302.457" + "BasisU" "1 -0 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "346331" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "-1239.66 -5504 302.457" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15500]" + } +} +entity +{ + "id" "4892752" + "classname" "info_overlay" + "BasisNormal" "0 1 0" + "BasisOrigin" "1394.84 -4200 347.401" + "BasisU" "1 -0 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "390187" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "1394.84 -4200 347.401" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "4892758" + "classname" "info_overlay" + "BasisNormal" "-1 0 0" + "BasisOrigin" "1024 -4473.48 365.683" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "390304" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "1024 -4473.48 365.683" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "4893060" + "classname" "func_detail" + solid + { + "id" "4764824" + side + { + "id" "349555" + "plane" "(1808 -3456 360) (1608 -3456 360) (1608 -3440 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349554" + "plane" "(1608 -3440 224) (1608 -3440 360) (1608 -3456 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349553" + "plane" "(1808 -3440 224) (1808 -3440 360) (1608 -3440 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349552" + "plane" "(1608 -3456 224) (1608 -3456 360) (1808 -3456 360)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349551" + "plane" "(1808 -3456 224) (1808 -3456 360) (1808 -3440 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349550" + "plane" "(1808 -3440 224) (1608 -3440 224) (1608 -3456 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 13500]" + } +} +entity +{ + "id" "4876528" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 -0 0" + "BasisOrigin" "-2419 -3970 277" + "BasisU" "0 1 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/edutext" + "sides" "297506" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -32 0" + "uv1" "-128 32 0" + "uv2" "128 32 0" + "uv3" "128 -32 0" + "origin" "-2419 -3970 277" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "4876562" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2424 -3971 325.871" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4876586" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2424 -3885.79 326" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4876598" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2424 -4048.17 326" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "4876606" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "-51 -2915 284" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1.11719" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/lunatext" + "sides" "327142" + "StartU" "0" + "StartV" "1.13503" + "uv0" "-143 -36.3211 0" + "uv1" "-143 36.3211 0" + "uv2" "143 36.3211 0" + "uv3" "143 -36.3211 0" + "origin" "-51 -2915 284" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "4876630" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 0 -0" + "BasisOrigin" "400 -2237 286.054" + "BasisU" "0 1 0" + "BasisV" "0 -0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/lunatext" + "sides" "326986" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -32 0" + "uv1" "-128 32 0" + "uv2" "128 32 0" + "uv3" "128 -32 0" + "origin" "400 -2237 286.054" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "4876648" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 0 -0" + "BasisOrigin" "400 -2357 289" + "BasisU" "0 1 0" + "BasisV" "0 -0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "326986" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "400 -2357 289" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "4876718" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "784.672 -2699.05 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain003a" + "sides" "372754 372778" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "784.672 -2699.05 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "4876724" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-480.585 -3810.21 32" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain003a" + "sides" "376718" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "-480.585 -3810.21 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "4876730" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "821.535 -5429.35 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain003a" + "sides" "371098" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "821.535 -5429.35 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "4876736" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "834.014 -4911.64 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/drainage_stain_05" + "sides" "371098" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "834.014 -4911.64 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "4861205" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 1 0" + "BasisOrigin" "-1380 -5339 216" + "BasisU" "1 -0 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/decals/cafetext" + "sides" "350402" + "StartU" "1" + "StartV" "0" + "uv0" "-64 -32 0" + "uv1" "-64 32 0" + "uv2" "64 32 0" + "uv3" "64 -32 0" + "origin" "-1380 -5339 216" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "4861251" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1056 -5344 245" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4846058" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/display_map.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "72 -5232 0" + editor + { + "color" "235 204 0" + "groupid" "4924162" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4830633" + "classname" "prop_static" + "angles" "0 170.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "882 -7364 -35.753" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4830667" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/bush003.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "891 -7787 -35.753" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4830773" + "classname" "prop_static" + "angles" "0 323.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/curb_round001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "755 -6192 -2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4830812" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "787.676 -6254.71 2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830816" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "842.594 -6219.07 2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830820" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "829.645 -6154.25 2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830824" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "849.393 -6184.93 2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830828" + "classname" "prop_static" + "angles" "0 316 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush004.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "695 -6131 2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830863" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush006.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "765 -6285 -11" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830886" + "classname" "prop_static" + "angles" "0 343 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush006.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "819 -6252 -11" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830898" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2381 -5493.02 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830906" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2357.09 -5335.3 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830910" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2371 -5318 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4830914" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2342 -5205 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "4813312" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_ventilation_exhaust/nuke_outdoor_vent_exhaust_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-272 -4814 359" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4813332" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_ventilation_exhaust/nuke_outdoor_vent_exhaust_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-272 -4814 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4813400" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-416 -4870 219" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813404" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-288 -4870 219" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813408" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-551 -4870 219" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813476" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-160 -4870 219" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813496" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-32 -4870 219" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813515" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-664 -4752 219" + editor + { + "color" "123 164 0" + "groupid" "4813627" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813535" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-664 -4624 219" + editor + { + "color" "123 164 0" + "groupid" "4813627" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813547" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-664 -4496 219" + editor + { + "color" "123 164 0" + "groupid" "4813627" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813555" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-664 -4368 219" + editor + { + "color" "123 164 0" + "groupid" "4813627" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813571" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-664 -4240 219" + editor + { + "color" "123 164 0" + "groupid" "4813627" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813579" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-664 -4104 219" + editor + { + "color" "123 164 0" + "groupid" "4813627" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813629" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "423 -4752 219" + editor + { + "color" "123 164 0" + "groupid" "4813628" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813633" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "423 -4624 219" + editor + { + "color" "123 164 0" + "groupid" "4813628" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813637" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "423 -4496 219" + editor + { + "color" "123 164 0" + "groupid" "4813628" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813641" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "423 -4368 219" + editor + { + "color" "123 164 0" + "groupid" "4813628" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813645" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "423 -4240 219" + editor + { + "color" "123 164 0" + "groupid" "4813628" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4813649" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "423 -4104 219" + editor + { + "color" "123 164 0" + "groupid" "4813628" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +entity +{ + "id" "4813763" + "classname" "func_detail" + solid + { + "id" "4812035" + side + { + "id" "348166" + "plane" "(-296 -4814 440) (-296 -4814 360) (-363 -4807 360)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0.995141 -0.0984596 0 -890.988] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "348165" + "plane" "(-296 -4814 360) (-296 -4814 440) (-296 -4791 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348164" + "plane" "(-296 -4814 440) (-363 -4807 440) (-363 -4784 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" "348163" + "plane" "(-363 -4807 360) (-296 -4814 360) (-296 -4791 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0.994571 -0.10391 0.00548051 -512] 0.125" + "vaxis" "[0.103912 0.994586 0 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348162" + "plane" "(-363 -4807 440) (-363 -4807 360) (-363 -4784 360)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348161" + "plane" "(-296 -4791 360) (-296 -4791 440) (-363 -4784 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.994586 -0.103913 0 -14.6376] 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" "4812223" + side + { + "id" "348172" + "plane" "(-363 -4807 360) (-418 -4787 360) (-418 -4787 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0.94044 -0.339958 0 -494.307] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "348171" + "plane" "(-363 -4807 440) (-418 -4787 440) (-418 -4765 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" "348170" + "plane" "(-418 -4765 360) (-418 -4787 360) (-363 -4807 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0.939791 -0.341742 0.00189847 -512] 0.125" + "vaxis" "[0.341743 0.939793 0 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348169" + "plane" "(-363 -4807 360) (-363 -4807 440) (-363 -4784 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348168" + "plane" "(-418 -4787 440) (-418 -4787 360) (-418 -4765 360)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348167" + "plane" "(-363 -4784 440) (-418 -4765 440) (-418 -4765 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.94519 -0.326521 0 -58.1855] 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" "4811252" + side + { + "id" "348178" + "plane" "(-363 -4810.37 448) (-418 -4790.49 448) (-418 -4765 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348177" + "plane" "(-363 -4810.37 440) (-418 -4790.49 440) (-418 -4790.49 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[0.940446 -0.339943 0 -979.589] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348176" + "plane" "(-418 -4765 440) (-418 -4790.48 440) (-363 -4810.37 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[-0.339973 -0.940435 0 -118.008] 0.125" + "vaxis" "[0.940435 -0.339973 0 -980.875] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348175" + "plane" "(-363 -4810.37 440) (-363 -4810.37 448) (-363 -4784 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" "348174" + "plane" "(-418 -4765 448) (-418 -4790.49 448) (-418 -4790.49 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348173" + "plane" "(-363 -4784 448) (-418 -4765 448) (-418 -4765 440)" + "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" "4811173" + side + { + "id" "348184" + "plane" "(-296 -4817 448) (-363 -4810.37 448) (-363 -4784 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348183" + "plane" "(-363 -4810.37 448) (-296 -4817 448) (-296 -4817 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[0.995143 -0.0984379 0 -742.904] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348182" + "plane" "(-296 -4817 440) (-296 -4817 448) (-296 -4791 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" "348181" + "plane" "(-363 -4810.37 440) (-296 -4817 440) (-296 -4791 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[-0.0984725 -0.99514 0 -241.891] 0.125" + "vaxis" "[0.995139 -0.0984725 0 -744.368] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348180" + "plane" "(-363 -4784 448) (-363 -4810.36 448) (-363 -4810.36 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348179" + "plane" "(-296 -4791 440) (-296 -4791 448) (-363 -4784 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4811293" + side + { + "id" "348190" + "plane" "(-418 -4790.49 448) (-456 -4762.08 448) (-456 -4738 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348189" + "plane" "(-418 -4790.49 440) (-456 -4762.08 440) (-456 -4762.08 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[0.800908 -0.598788 0 -102.152] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348188" + "plane" "(-456 -4738 440) (-456 -4762.08 440) (-418 -4790.49 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[-0.598768 -0.800923 0 -244.768] 0.125" + "vaxis" "[0.800923 -0.598768 0 -101.24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348187" + "plane" "(-418 -4790.49 440) (-418 -4790.49 448) (-418 -4765 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" "348186" + "plane" "(-456 -4738 448) (-456 -4762.08 448) (-456 -4762.08 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348185" + "plane" "(-418 -4765 448) (-456 -4738 448) (-456 -4738 440)" + "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" "4812347" + side + { + "id" "348196" + "plane" "(-418 -4787 360) (-456 -4759.06 360) (-456 -4759.07 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0.800809 -0.59892 0 -566.869] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "348195" + "plane" "(-418 -4787 440) (-456 -4759.07 440) (-456 -4738 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" "348194" + "plane" "(-456 -4738 360) (-456 -4759.07 360) (-418 -4787 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0.805685 -0.592286 -0.00823295 -512] 0.125" + "vaxis" "[0.592306 0.805713 0 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348193" + "plane" "(-418 -4787 360) (-418 -4787 440) (-418 -4765 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348192" + "plane" "(-456 -4759.07 440) (-456 -4759.07 360) (-456 -4738 360)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348191" + "plane" "(-418 -4765 440) (-456 -4738 440) (-456 -4738 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.81518 -0.579207 0 -35.7622] 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" "4812126" + side + { + "id" "348201" + "plane" "(-456 -4759.07 440) (-456 -4759.07 360) (-467 -4728 360)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0.356438 -0.934319 0 -611.26] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "128" + } + side + { + "id" "348200" + "plane" "(-456 -4759.06 440) (-467 -4728 440) (-456 -4728 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" "348199" + "plane" "(-467 -4728 440) (-467 -4728 360) (-456 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348198" + "plane" "(-456 -4728 360) (-467 -4728 360) (-456 -4759.06 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0.333659 -0.942384 0.0241651 -512] 0.125" + "vaxis" "[0.942659 0.333756 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348197" + "plane" "(-456 -4759.07 360) (-456 -4759.07 440) (-456 -4728 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -55.3506] 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" "4810981" + side + { + "id" "348206" + "plane" "(-456 -4762.09 448) (-469 -4728 448) (-456 -4728 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348205" + "plane" "(-469 -4728 440) (-469 -4728 448) (-456 -4762.08 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[0.356351 -0.934352 0 -171.765] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348204" + "plane" "(-456 -4728 448) (-469 -4728 448) (-469 -4728 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348203" + "plane" "(-456 -4728 440) (-469 -4728 440) (-456 -4762.09 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[-0.934365 -0.356316 0 -147.028] 0.125" + "vaxis" "[0.356316 -0.934365 0 -172.537] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348202" + "plane" "(-456 -4762.08 440) (-456 -4762.08 448) (-456 -4728 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4812654" + side + { + "id" "348212" + "plane" "(-363 -4802 240) (-363 -4803 240) (-296 -4810 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" "348211" + "plane" "(-296 -4809 240) (-296 -4810 240) (-296 -4810 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348210" + "plane" "(-363 -4803 360) (-363 -4802 360) (-296 -4809 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348209" + "plane" "(-363 -4803 240) (-363 -4802 240) (-363 -4802 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348208" + "plane" "(-296 -4810 360) (-296 -4810 240) (-363 -4803 240)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0.994587 -0.103912 0 45.3831] 1.219" + "vaxis" "[0 0 -1 0] 0.469" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348207" + "plane" "(-363 -4802 240) (-296 -4809 240) (-296 -4809 360)" + "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" "4812766" + side + { + "id" "348218" + "plane" "(-418 -4782 240) (-418 -4783 240) (-363 -4803 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" "348217" + "plane" "(-418 -4783 360) (-418 -4782 360) (-363 -4802 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348216" + "plane" "(-363 -4802 240) (-363 -4803 240) (-363 -4803 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348215" + "plane" "(-418 -4783 240) (-418 -4782 240) (-418 -4782 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348214" + "plane" "(-363 -4803 240) (-418 -4783 240) (-418 -4783 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0.939793 -0.341743 0 106.65] 1.219" + "vaxis" "[0 0 -1 0] 0.469" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348213" + "plane" "(-418 -4782 240) (-363 -4802 240) (-363 -4802 360)" + "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" "4812960" + side + { + "id" "348224" + "plane" "(-456 -4754 240) (-456 -4755 240) (-418 -4783 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" "348223" + "plane" "(-456 -4755 360) (-456 -4754 360) (-418 -4782 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348222" + "plane" "(-418 -4782 240) (-418 -4783 240) (-418 -4783 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348221" + "plane" "(-456 -4755 240) (-456 -4754 240) (-456 -4754 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348220" + "plane" "(-418 -4783 240) (-456 -4755 240) (-456 -4755 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0.805056 -0.593199 0 94.2623] 1.219" + "vaxis" "[0 0 -1 0] 0.469" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348219" + "plane" "(-456 -4754 240) (-418 -4782 240) (-418 -4782 360)" + "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" "4813145" + side + { + "id" "348230" + "plane" "(-465.5 -4728 240) (-456 -4754.98 240) (-456 -4753.98 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" "348229" + "plane" "(-464.5 -4728 240) (-464.5 -4728 360) (-465.5 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348228" + "plane" "(-464.5 -4728 360) (-456 -4754 360) (-456 -4755 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348227" + "plane" "(-456 -4754.98 240) (-456 -4755 360) (-456 -4754 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348226" + "plane" "(-465.5 -4728 240) (-465.5 -4728 360) (-456 -4755 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0.331906 -0.943312 0 -168.433] 1.219" + "vaxis" "[0 0 -1 0] 0.469" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348225" + "plane" "(-464.5 -4728 240) (-456 -4753.98 240) (-456 -4754 360)" + "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" "4813187" + side + { + "id" "348235" + "plane" "(-456 -4747.96 240) (-456 -4728 240) (-462 -4728 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" "348234" + "plane" "(-456 -4728 360) (-462 -4728 360) (-462 -4728 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" "348233" + "plane" "(-456 -4748 360) (-462 -4728 360) (-456 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348232" + "plane" "(-456 -4747.96 240) (-456 -4748 360) (-456 -4728 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348231" + "plane" "(-462 -4728 360) (-456 -4748 360) (-456 -4747.96 240)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0.0995034 -0.995037 0 704] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4813059" + side + { + "id" "348241" + "plane" "(-456 -4738 240) (-456 -4748 240) (-418 -4776 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" "348240" + "plane" "(-456 -4748 360) (-456 -4738 360) (-418 -4765 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348239" + "plane" "(-418 -4765 240) (-418 -4776 240) (-418 -4776 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348238" + "plane" "(-456 -4748 240) (-456 -4738 240) (-456 -4738 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348237" + "plane" "(-456 -4738 240) (-418 -4765 240) (-418 -4765 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348236" + "plane" "(-418 -4776 240) (-456 -4748 240) (-456 -4748 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0.805056 -0.593199 0 704] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4812869" + side + { + "id" "348247" + "plane" "(-418 -4765 240) (-418 -4776 240) (-363 -4796 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" "348246" + "plane" "(-418 -4776 360) (-418 -4765 360) (-363 -4784 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348245" + "plane" "(-363 -4784 240) (-363 -4796 240) (-363 -4796 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348244" + "plane" "(-418 -4776 240) (-418 -4765 240) (-418 -4765 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348243" + "plane" "(-418 -4765 240) (-363 -4784 240) (-363 -4784 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348242" + "plane" "(-363 -4796 240) (-418 -4776 240) (-418 -4776 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0.939793 -0.341743 0 704] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4812576" + side + { + "id" "348253" + "plane" "(-363 -4784 240) (-363 -4796 240) (-296 -4803 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" "348252" + "plane" "(-296 -4791 240) (-296 -4803 240) (-296 -4803 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348251" + "plane" "(-363 -4796 360) (-363 -4784 360) (-296 -4791 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348250" + "plane" "(-363 -4796 240) (-363 -4784 240) (-363 -4784 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348249" + "plane" "(-363 -4784 240) (-296 -4791 240) (-296 -4791 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348248" + "plane" "(-296 -4803 360) (-296 -4803 240) (-363 -4796 240)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 704] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -14768]" + } +} +entity +{ + "id" "4813876" + "classname" "func_detail" + solid + { + "id" "4813868" + side + { + "id" "348331" + "plane" "(-605 -4320 240) (-605 -4632 240) (-604 -4632 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" "348330" + "plane" "(-605 -4632 240) (-605 -4320 240) (-605 -4320 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 216.615] 1.21875" + "vaxis" "[0 0 -1 0] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348329" + "plane" "(-604 -4320 240) (-604 -4632 240) (-604 -4632 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348328" + "plane" "(-605 -4320 360) (-605 -4320 240) (-604 -4320 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" "348327" + "plane" "(-604 -4632 240) (-605 -4632 240) (-605 -4632 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348326" + "plane" "(-605 -4632 360) (-605 -4320 360) (-604 -4320 360)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -8768]" + } +} +entity +{ + "id" "4813948" + "classname" "func_detail" + solid + { + "id" "4814078" + side + { + "id" "348523" + "plane" "(-598 -4016 240) (-608 -4016 240) (-608 -4056 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" "348522" + "plane" "(-608 -4056 240) (-608 -4016 240) (-608 -4016 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 -1 0 -912.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348521" + "plane" "(-608 -4016 440) (-608 -4016 240) (-598 -4016 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348520" + "plane" "(-608 -4056 440) (-608 -4016 440) (-598 -4016 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" "348519" + "plane" "(-598 -4016 440) (-598 -4016 240) (-598 -4056 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" "348518" + "plane" "(-598 -4056 240) (-608 -4056 240) (-608 -4056 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814081" + side + { + "id" "348541" + "plane" "(-608 -4056 448) (-608 -4016 448) (-598 -4016 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348540" + "plane" "(-608 -4016 440) (-608 -4016 448) (-608 -4056 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 3.99869] 0.125" + "vaxis" "[0 1 0 629.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348539" + "plane" "(-598 -4016 448) (-608 -4016 448) (-608 -4016 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[1 0 0 -10] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348538" + "plane" "(-598 -4016 440) (-608 -4016 440) (-608 -4056 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" "348537" + "plane" "(-598 -4056 448) (-598 -4016 448) (-598 -4016 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348536" + "plane" "(-598 -4056 440) (-608 -4056 440) (-608 -4056 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4813940" + side + { + "id" "348409" + "plane" "(-608 -4248 240) (-608 -4320 240) (-598 -4320 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" "348408" + "plane" "(-608 -4320 240) (-608 -4248 240) (-608 -4248 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 -1 0 -912.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348407" + "plane" "(-608 -4320 440) (-608 -4248 440) (-598 -4248 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" "348406" + "plane" "(-608 -4248 440) (-608 -4248 240) (-598 -4248 240)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348405" + "plane" "(-598 -4320 240) (-608 -4320 240) (-608 -4320 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348404" + "plane" "(-598 -4248 240) (-598 -4320 240) (-598 -4320 440)" + "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" "4813934" + side + { + "id" "348415" + "plane" "(-608 -4320 360) (-608 -4320 440) (-608 -4632 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 -1 0 -912.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348414" + "plane" "(-608 -4632 440) (-608 -4320 440) (-598 -4320 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" "348413" + "plane" "(-608 -4320 440) (-608 -4320 360) (-598 -4320 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348412" + "plane" "(-608 -4632 360) (-608 -4632 440) (-598 -4632 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348411" + "plane" "(-608 -4320 360) (-608 -4632 360) (-598 -4632 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -447.996] 0.125" + "vaxis" "[1 0 0 -0.00138478] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348410" + "plane" "(-598 -4632 360) (-598 -4632 440) (-598 -4320 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "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" "4813932" + side + { + "id" "348421" + "plane" "(-608 -4632 240) (-608 -4728 240) (-598 -4728 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" "348420" + "plane" "(-608 -4728 440) (-608 -4728 240) (-608 -4632 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 -1 0 -912.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348419" + "plane" "(-598 -4728 240) (-608 -4728 240) (-608 -4728 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348418" + "plane" "(-598 -4728 440) (-608 -4728 440) (-608 -4632 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" "348417" + "plane" "(-608 -4632 440) (-608 -4632 240) (-598 -4632 240)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348416" + "plane" "(-598 -4632 240) (-598 -4728 240) (-598 -4728 440)" + "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" "4813866" + side + { + "id" "348427" + "plane" "(-598 -4320 240) (-598 -4632 240) (-592 -4632 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" "348426" + "plane" "(-598 -4632 240) (-598 -4320 240) (-598 -4320 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 1733] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348425" + "plane" "(-592 -4320 240) (-592 -4632 240) (-592 -4632 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348424" + "plane" "(-598 -4320 360) (-598 -4320 240) (-592 -4320 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" "348423" + "plane" "(-592 -4632 240) (-598 -4632 240) (-598 -4632 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348422" + "plane" "(-598 -4632 360) (-598 -4320 360) (-592 -4320 360)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4813976" + side + { + "id" "348451" + "plane" "(-600 -4056 240) (-600 -4248 240) (-598 -4248 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" "348450" + "plane" "(-600 -4248 240) (-600 -4056 240) (-600 -4056 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 -1 0 -1472] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348449" + "plane" "(-598 -4248 240) (-600 -4248 240) (-600 -4248 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348448" + "plane" "(-598 -4056 240) (-598 -4248 240) (-598 -4248 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348447" + "plane" "(-600 -4056 360) (-600 -4056 240) (-598 -4056 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" "348446" + "plane" "(-598 -4248 360) (-600 -4248 360) (-600 -4056 360)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4813975" + side + { + "id" "348445" + "plane" "(-608 -4056 360) (-608 -4056 440) (-608 -4248 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 -1 0 -912.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348444" + "plane" "(-598 -4248 440) (-608 -4248 440) (-608 -4056 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" "348443" + "plane" "(-608 -4248 360) (-608 -4248 440) (-598 -4248 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348442" + "plane" "(-598 -4248 360) (-598 -4248 440) (-598 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348441" + "plane" "(-608 -4056 440) (-608 -4056 360) (-598 -4056 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348440" + "plane" "(-608 -4056 360) (-608 -4248 360) (-598 -4248 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -447.996] 0.125" + "vaxis" "[1 0 0 -0.00138478] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814080" + side + { + "id" "348535" + "plane" "(-598 -4728 448) (-608 -4728 448) (-608 -4056 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348534" + "plane" "(-608 -4056 448) (-608 -4728 448) (-608 -4728 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 3.99869] 0.125" + "vaxis" "[0 1 0 629.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348533" + "plane" "(-598 -4728 440) (-608 -4728 440) (-608 -4728 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[1 0 0 -10] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348532" + "plane" "(-608 -4056 440) (-608 -4728 440) (-598 -4728 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" "348531" + "plane" "(-598 -4728 440) (-598 -4728 448) (-598 -4056 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" "348530" + "plane" "(-598 -4056 448) (-608 -4056 448) (-608 -4056 440)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3268]" + } +} +entity +{ + "id" "4813990" + "classname" "func_detail" + solid + { + "id" "4813939" + side + { + "id" "348469" + "plane" "(-592 -4016 240) (-598 -4016 240) (-598 -4248 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" "348468" + "plane" "(-598 -4016 240) (-592 -4016 240) (-592 -4016 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348467" + "plane" "(-598 -4016 440) (-592 -4016 440) (-592 -4248 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" "348466" + "plane" "(-592 -4016 440) (-592 -4016 240) (-592 -4248 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" "348465" + "plane" "(-592 -4248 240) (-598 -4248 240) (-598 -4248 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348464" + "plane" "(-598 -4248 240) (-598 -4016 240) (-598 -4016 440)" + "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" "4813935" + side + { + "id" "348475" + "plane" "(-598 -4320 440) (-592 -4320 440) (-592 -4632 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" "348474" + "plane" "(-592 -4632 360) (-592 -4632 440) (-592 -4320 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348473" + "plane" "(-598 -4320 360) (-592 -4320 360) (-592 -4320 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348472" + "plane" "(-598 -4632 440) (-592 -4632 440) (-592 -4632 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348471" + "plane" "(-598 -4632 360) (-592 -4632 360) (-592 -4320 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -447.996] 0.125" + "vaxis" "[1 0 0 -0.00138478] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348470" + "plane" "(-598 -4320 360) (-598 -4320 440) (-598 -4632 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "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" "4813982" + side + { + "id" "348481" + "plane" "(-605 -4056 240) (-605 -4248 240) (-604 -4248 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" "348480" + "plane" "(-605 -4248 240) (-605 -4056 240) (-605 -4056 360)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 -32] 0.75" + "vaxis" "[0 0 -1 0] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348479" + "plane" "(-604 -4248 240) (-605 -4248 240) (-605 -4248 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348478" + "plane" "(-604 -4056 240) (-604 -4248 240) (-604 -4248 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348477" + "plane" "(-605 -4056 360) (-605 -4056 240) (-604 -4056 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" "348476" + "plane" "(-604 -4248 360) (-605 -4248 360) (-605 -4056 360)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4813933" + side + { + "id" "348487" + "plane" "(-598 -4728 240) (-592 -4728 240) (-592 -4632 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" "348486" + "plane" "(-592 -4728 240) (-598 -4728 240) (-598 -4728 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348485" + "plane" "(-592 -4728 440) (-598 -4728 440) (-598 -4632 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" "348484" + "plane" "(-592 -4632 240) (-592 -4728 240) (-592 -4728 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348483" + "plane" "(-598 -4632 240) (-592 -4632 240) (-592 -4632 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348482" + "plane" "(-598 -4728 440) (-598 -4728 240) (-598 -4632 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4813941" + side + { + "id" "348493" + "plane" "(-598 -4320 240) (-592 -4320 240) (-592 -4248 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" "348492" + "plane" "(-598 -4248 440) (-592 -4248 440) (-592 -4320 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" "348491" + "plane" "(-592 -4248 240) (-592 -4320 240) (-592 -4320 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348490" + "plane" "(-598 -4248 240) (-592 -4248 240) (-592 -4248 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348489" + "plane" "(-592 -4320 240) (-598 -4320 240) (-598 -4320 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348488" + "plane" "(-598 -4320 240) (-598 -4248 240) (-598 -4248 440)" + "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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 0]" + } +} +hidden +{ + entity + { + "id" "4814011" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_ventilation_exhaust/nuke_outdoor_vent_exhaust_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-608 -4284 355.525" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4814015" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_ventilation_exhaust/nuke_outdoor_vent_exhaust_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-608 -4284 305.525" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4814082" + "classname" "prop_static" + "angles" "90 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-507 -4016 381.32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4814176" + "classname" "func_detail" + solid + { + "id" "4814173" + side + { + "id" "348637" + "plane" "(-240 -4020 360) (-40 -4020 360) (-40 -4021 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348636" + "plane" "(-240 -4021 240) (-40 -4021 240) (-40 -4020 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" "348635" + "plane" "(-240 -4020 360) (-240 -4021 360) (-240 -4021 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" "348634" + "plane" "(-40 -4020 240) (-40 -4021 240) (-40 -4021 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348633" + "plane" "(-40 -4020 360) (-240 -4020 360) (-240 -4020 240)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 51.2] 0.78125" + "vaxis" "[0 0 -1 0] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348632" + "plane" "(-40 -4021 240) (-240 -4021 240) (-240 -4021 360)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12000]" + } +} +entity +{ + "id" "4814195" + "classname" "func_detail" + solid + { + "id" "4814104" + side + { + "id" "348655" + "plane" "(-336 -4056 240) (-240 -4056 240) (-240 -4016 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" "348654" + "plane" "(-336 -4016 240) (-240 -4016 240) (-240 -4016 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348653" + "plane" "(-336 -4016 440) (-240 -4016 440) (-240 -4056 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" "348652" + "plane" "(-240 -4056 240) (-336 -4056 240) (-336 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348651" + "plane" "(-336 -4056 240) (-336 -4016 240) (-336 -4016 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348650" + "plane" "(-240 -4016 440) (-240 -4016 240) (-240 -4056 240)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814138" + side + { + "id" "348661" + "plane" "(-40 -4016 360) (-40 -4016 440) (-240 -4016 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348660" + "plane" "(-40 -4056 440) (-240 -4056 440) (-240 -4016 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" "348659" + "plane" "(-240 -4056 360) (-240 -4056 440) (-40 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348658" + "plane" "(-240 -4016 360) (-240 -4016 440) (-240 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348657" + "plane" "(-40 -4016 440) (-40 -4016 360) (-40 -4056 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348656" + "plane" "(-40 -4016 360) (-240 -4016 360) (-240 -4056 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814092" + side + { + "id" "348667" + "plane" "(-336 -4016 240) (-592 -4016 240) (-592 -4056 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" "348666" + "plane" "(-592 -4016 240) (-336 -4016 240) (-336 -4016 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348665" + "plane" "(-592 -4056 440) (-592 -4016 440) (-336 -4016 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" "348664" + "plane" "(-592 -4056 240) (-592 -4016 240) (-592 -4016 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348663" + "plane" "(-336 -4056 240) (-592 -4056 240) (-592 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348662" + "plane" "(-336 -4016 440) (-336 -4016 240) (-336 -4056 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814079" + side + { + "id" "348673" + "plane" "(-598 -4016 448) (368 -4016 448) (368 -4056 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348672" + "plane" "(368 -4056 448) (368 -4016 448) (368 -4016 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4.00116] 0.125" + "vaxis" "[0 -1 0 -521.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348671" + "plane" "(-598 -4016 440) (368 -4016 440) (368 -4016 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[1 0 0 -10] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348670" + "plane" "(368 -4056 440) (368 -4016 440) (-598 -4016 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" "348669" + "plane" "(-598 -4016 440) (-598 -4016 448) (-598 -4056 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" "348668" + "plane" "(-598 -4056 448) (368 -4056 448) (368 -4056 440)" + "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" "4814140" + side + { + "id" "348679" + "plane" "(232 -4016 360) (232 -4016 440) (32 -4016 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348678" + "plane" "(232 -4056 440) (32 -4056 440) (32 -4016 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" "348677" + "plane" "(32 -4056 360) (32 -4056 440) (232 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348676" + "plane" "(232 -4016 440) (232 -4016 360) (232 -4056 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348675" + "plane" "(32 -4016 360) (32 -4016 440) (32 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348674" + "plane" "(232 -4016 360) (32 -4016 360) (32 -4056 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[-1 0 0 128] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814124" + side + { + "id" "348685" + "plane" "(32 -4016 240) (-40 -4016 240) (-40 -4056 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" "348684" + "plane" "(-40 -4016 240) (32 -4016 240) (32 -4016 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348683" + "plane" "(32 -4056 440) (-40 -4056 440) (-40 -4016 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" "348682" + "plane" "(32 -4056 240) (-40 -4056 240) (-40 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348681" + "plane" "(-40 -4056 240) (-40 -4016 240) (-40 -4016 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348680" + "plane" "(32 -4016 440) (32 -4016 240) (32 -4056 240)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814182" + side + { + "id" "348691" + "plane" "(0 -4020 360) (232 -4020 360) (232 -4021 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348690" + "plane" "(0 -4021 240) (232 -4021 240) (232 -4020 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" "348689" + "plane" "(0 -4020 360) (0 -4021 360) (0 -4021 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" "348688" + "plane" "(232 -4020 240) (232 -4021 240) (232 -4021 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348687" + "plane" "(232 -4020 360) (0 -4020 360) (0 -4020 240)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 0] 0.90625" + "vaxis" "[0 0 -1 0] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348686" + "plane" "(232 -4021 240) (0 -4021 240) (0 -4021 360)" + "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" "4814111" + side + { + "id" "348697" + "plane" "(232 -4056 240) (368 -4056 240) (368 -4016 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" "348696" + "plane" "(368 -4016 440) (368 -4016 240) (368 -4056 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 622.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348695" + "plane" "(232 -4016 240) (368 -4016 240) (368 -4016 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348694" + "plane" "(232 -4016 440) (368 -4016 440) (368 -4056 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" "348693" + "plane" "(368 -4056 440) (368 -4056 240) (232 -4056 240)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -896] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348692" + "plane" "(232 -4056 240) (232 -4016 240) (232 -4016 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814141" + side + { + "id" "348703" + "plane" "(232 -4024 240) (32 -4024 240) (32 -4056 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" "348702" + "plane" "(32 -4024 240) (232 -4024 240) (232 -4024 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -328] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348701" + "plane" "(232 -4056 240) (32 -4056 240) (32 -4056 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348700" + "plane" "(232 -4024 360) (232 -4024 240) (232 -4056 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" "348699" + "plane" "(32 -4056 240) (32 -4024 240) (32 -4024 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348698" + "plane" "(232 -4056 360) (32 -4056 360) (32 -4024 360)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814139" + side + { + "id" "348709" + "plane" "(-40 -4024 240) (-240 -4024 240) (-240 -4056 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" "348708" + "plane" "(-240 -4024 240) (-40 -4024 240) (-40 -4024 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -328] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348707" + "plane" "(-40 -4056 240) (-240 -4056 240) (-240 -4056 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348706" + "plane" "(-240 -4056 240) (-240 -4024 240) (-240 -4024 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348705" + "plane" "(-40 -4024 360) (-40 -4024 240) (-40 -4056 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" "348704" + "plane" "(-40 -4056 360) (-240 -4056 360) (-240 -4024 360)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +hidden +{ + entity + { + "id" "4814226" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_ventilation_exhaust/nuke_outdoor_vent_exhaust_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-8 -4016 361" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4814230" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_ventilation_exhaust/nuke_outdoor_vent_exhaust_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-8 -4016 311" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "4814266" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 1 -0" + "BasisOrigin" "-490 -4016 270" + "BasisU" "1 0 0" + "BasisV" "0 -0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/drainage_stain_04" + "sides" "348666" + "StartU" "1" + "StartV" "0" + "uv0" "-64 -32 0" + "uv1" "-64 32 0" + "uv2" "64 32 0" + "uv3" "64 -32 0" + "origin" "-490 -4016 270" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "4814278" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 1 -0" + "BasisOrigin" "-472 -4016 382" + "BasisU" "1 0 0" + "BasisV" "0 -0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_11" + "sides" "348666" + "StartU" "1" + "StartV" "0" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-472 -4016 382" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "4814637" + "classname" "func_detail" + solid + { + "id" "4814610" + side + { + "id" "348811" + "plane" "(368 -4368 360) (368 -4368 440) (368 -4056 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 622.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348810" + "plane" "(352 -4368 440) (352 -4056 440) (368 -4056 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" "348809" + "plane" "(368 -4056 360) (368 -4056 440) (352 -4056 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348808" + "plane" "(352 -4056 360) (352 -4056 440) (352 -4368 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348807" + "plane" "(368 -4368 440) (368 -4368 360) (352 -4368 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348806" + "plane" "(368 -4368 360) (368 -4056 360) (352 -4056 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -767.998] 0.125" + "vaxis" "[1 0 0 -0.00129246] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814500" + side + { + "id" "348817" + "plane" "(368 -4056 448) (368 -4728 448) (352 -4728 448)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348816" + "plane" "(368 -4056 440) (368 -4728 440) (368 -4728 448)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4.00116] 0.125" + "vaxis" "[0 -1 0 -521.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348815" + "plane" "(352 -4728 448) (368 -4728 448) (368 -4728 440)" + "material" "METAL/HR_METAL/HR_IBEAM_01_COLOR" + "uaxis" "[0 0 1 4] 0.125" + "vaxis" "[1 0 0 -10] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348814" + "plane" "(352 -4728 440) (368 -4728 440) (368 -4056 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" "348813" + "plane" "(352 -4056 440) (368 -4056 440) (368 -4056 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" + } + side + { + "id" "348812" + "plane" "(352 -4056 448) (352 -4728 448) (352 -4728 440)" + "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" "4814534" + side + { + "id" "348823" + "plane" "(368 -4504 240) (368 -4368 240) (352 -4368 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" "348822" + "plane" "(368 -4368 240) (368 -4504 240) (368 -4504 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 622.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348821" + "plane" "(352 -4504 440) (352 -4368 440) (368 -4368 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" "348820" + "plane" "(352 -4504 240) (352 -4368 240) (352 -4368 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348819" + "plane" "(368 -4504 440) (368 -4504 240) (352 -4504 240)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -512] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348818" + "plane" "(352 -4368 240) (368 -4368 240) (368 -4368 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 -896] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814608" + side + { + "id" "348829" + "plane" "(368 -4632 360) (368 -4632 440) (368 -4504 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 622.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348828" + "plane" "(352 -4632 440) (352 -4504 440) (368 -4504 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" "348827" + "plane" "(352 -4504 360) (352 -4504 440) (352 -4632 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348826" + "plane" "(368 -4632 440) (368 -4632 360) (352 -4632 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348825" + "plane" "(368 -4504 360) (368 -4504 440) (352 -4504 440)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348824" + "plane" "(352 -4504 360) (352 -4632 360) (368 -4632 360)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 -1 0 -895.996] 0.125" + "vaxis" "[1 0 0 -0.00144912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814508" + side + { + "id" "348835" + "plane" "(352 -4728 240) (368 -4728 240) (368 -4632 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" "348834" + "plane" "(368 -4632 240) (368 -4728 240) (368 -4728 440)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 622.996] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348833" + "plane" "(368 -4728 440) (368 -4728 240) (352 -4728 240)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348832" + "plane" "(368 -4632 440) (368 -4728 440) (352 -4728 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" "348831" + "plane" "(352 -4728 440) (352 -4728 240) (352 -4632 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" "348830" + "plane" "(352 -4632 240) (368 -4632 240) (368 -4632 440)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 127.996] 0.125" + "vaxis" "[1 0 0 -0.00144912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4814622" + side + { + "id" "348841" + "plane" "(364 -4504 360) (365 -4504 360) (365 -4632 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348840" + "plane" "(364 -4632 240) (365 -4632 240) (365 -4504 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" "348839" + "plane" "(364 -4504 360) (364 -4632 360) (364 -4632 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" "348838" + "plane" "(365 -4504 240) (365 -4632 240) (365 -4632 360)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 61] 4.875" + "vaxis" "[0 0 -1 0] 1.875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348837" + "plane" "(365 -4504 360) (364 -4504 360) (364 -4504 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" "348836" + "plane" "(365 -4632 240) (364 -4632 240) (364 -4632 360)" + "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" "4814607" + side + { + "id" "348847" + "plane" "(352 -4504 240) (352 -4632 240) (360 -4632 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" "348846" + "plane" "(360 -4504 240) (360 -4632 240) (360 -4632 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 704] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348845" + "plane" "(352 -4632 240) (352 -4504 240) (352 -4504 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348844" + "plane" "(360 -4632 360) (360 -4632 240) (352 -4632 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" "348843" + "plane" "(352 -4504 240) (360 -4504 240) (360 -4504 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348842" + "plane" "(352 -4632 360) (352 -4504 360) (360 -4504 360)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 -10268]" + } +} +entity +{ + "id" "4814655" + "classname" "func_detail" + solid + { + "id" "4814609" + side + { + "id" "348853" + "plane" "(360 -4368 240) (360 -4056 240) (352 -4056 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" "348852" + "plane" "(360 -4056 240) (360 -4368 240) (360 -4368 360)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 1952] 0.125" + "vaxis" "[0 0 -1 1376] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348851" + "plane" "(352 -4056 240) (360 -4056 240) (360 -4056 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348850" + "plane" "(352 -4368 240) (352 -4056 240) (352 -4056 360)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348849" + "plane" "(360 -4368 360) (360 -4368 240) (352 -4368 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" "348848" + "plane" "(352 -4368 360) (352 -4056 360) (360 -4056 360)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 -9768]" + } +} +hidden +{ + entity + { + "id" "4814671" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/transformer_yard_powerbox/transformer_yard_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-441.928 -4022.18 257.408" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4814690" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/transformer_yard_powerbox/transformer_yard_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-415 -4022 257.408" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4814694" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/transformer_yard_powerbox/transformer_yard_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-415.072 -4019 257.408" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4814698" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/transformer_yard_powerbox/transformer_yard_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-442 -4019.18 257.408" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4814710" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_ventilation_exhaust/nuke_outdoor_vent_exhaust_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "368 -4436 363" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4814714" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_ventilation_exhaust/nuke_outdoor_vent_exhaust_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "368 -4436 313" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "4814766" + "classname" "info_overlay" + "BasisNormal" "1 0 0" + "BasisOrigin" "368 -4413.84 421.486" + "BasisU" "0 1 0" + "BasisV" "0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "348822" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "368 -4413.84 421.486" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 -8768]" + } +} +entity +{ + "id" "4814772" + "classname" "info_overlay" + "BasisNormal" "1 -0 0" + "BasisOrigin" "368 -4598.19 411.431" + "BasisU" "0 1 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "348829" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "368 -4598.19 411.431" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 -8268]" + } +} +entity +{ + "id" "4814778" + "classname" "info_overlay" + "BasisNormal" "1 -0 0" + "BasisOrigin" "368 -4218.62 413.898" + "BasisU" "0 1 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "348811" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "368 -4218.62 413.898" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 -7768]" + } +} +entity +{ + "id" "4814784" + "classname" "info_overlay" + "BasisNormal" "-1 -0 -0" + "BasisOrigin" "-608 -4503.25 416.5" + "BasisU" "-0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "348415" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "-608 -4503.25 416.5" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 -7268]" + } +} +hidden +{ + entity + { + "id" "4814794" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1007 -4471.57 33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4814903" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1113.04 -3322.31 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4814947" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1113 -4331.06 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4814963" + "classname" "prop_static" + "angles" "0 0.499997 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1845.99 -3094 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4814979" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "946 -3407 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4815097" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1248 -3407 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4815167" + "classname" "prop_static" + "angles" "-88.9297 243.817 -152.313" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "140 -4925 236" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4815191" + "classname" "prop_static" + "angles" "-88.9297 273.817 -152.313" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "241 -4912 236" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4815203" + "classname" "prop_static" + "angles" "-88.9297 222.817 -152.313" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "46 -4912 236" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +entity +{ + "id" "4815223" + "classname" "info_overlay" + "BasisNormal" "1 0 0" + "BasisOrigin" "-948 -5790.13 -9.75691" + "BasisU" "0 1 0" + "BasisV" "0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "overlays/wall_stain001" + "sides" "341751" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-948 -5790.13 -9.75691" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 0]" + } +} +entity +{ + "id" "4815229" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "291 -4728 381" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "overlays/wall_stain001" + "sides" "348714" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "291 -4728 381" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 500]" + } +} +entity +{ + "id" "4815247" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "293 -4728 266" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/drainage_stain_04" + "sides" "348714" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -32 0" + "uv1" "-64 32 0" + "uv2" "64 32 0" + "uv3" "64 -32 0" + "origin" "293 -4728 266" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 1000]" + } +} +hidden +{ + entity + { + "id" "4815259" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/dust_electrical_powerbox/dust_electrical_powerbox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2533 -6187 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4815295" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_dust/hr_dust/dust_wire_connectors/dust_electric_cable_pole_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "368 -4637.39 403" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4815367" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "493 -2557 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +entity +{ + "id" "4764586" + "classname" "info_overlay" + "BasisNormal" "1 0 -0" + "BasisOrigin" "-948 -6037.76 129.263" + "BasisU" "0 1 0" + "BasisV" "0 -0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain002a" + "sides" "345583" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-948 -6037.76 129.263" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4764592" + "classname" "info_overlay" + "BasisNormal" "1 0 -0" + "BasisOrigin" "-948 -5740.93 116.422" + "BasisU" "0 1 0" + "BasisV" "0 -0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "345583" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "-948 -5740.93 116.422" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "4764808" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-62 -3775 118" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4764880" + "classname" "prop_static" + "angles" "0 179.5 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_satellite_dish/dust_satellite_dish_wall_02b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-585 -4728 359" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4765199" + "classname" "prop_static" + "angles" "90 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-433 -4016 381.32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4765283" + "classname" "prop_static" + "angles" "0 273.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/historyspacesign001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "114 -4843 252" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4747193" + "classname" "prop_static" + "angles" "0 89 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2155 -3673 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4747197" + "classname" "prop_static" + "angles" "0 89 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2157.41 -3910.65 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4747396" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1418.82 -5343 245" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4747859" + "classname" "prop_static" + "angles" "0 45 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/historyspacesign001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "370.268 -3411.4 243" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4749503" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-477 -3654 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4749623" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1076 -3621 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4725866" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-49 -6105 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "4725949" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-686 -6103 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "4726003" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "2 73 100" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1031 -5407 37" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4726035" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "2 73 100" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1309 -5407 37" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4726097" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "2 73 100" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1513 -5407 37" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "4726629" + "classname" "func_detail" + solid + { + "id" "4747174" + side + { + "id" "346044" + "plane" "(-1488 -5554 252) (-1488 -5554 256) (-1464 -5554 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346043" + "plane" "(-1488 -5344 256) (-1488 -5344 252) (-1464 -5344 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 394.988] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346042" + "plane" "(-1488 -5554 256) (-1488 -5554 252) (-1488 -5344 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346041" + "plane" "(-1464 -5554 256) (-1488 -5554 256) (-1488 -5344 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346040" + "plane" "(-1464 -5344 256) (-1464 -5344 252) (-1464 -5554 252)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 58.9932] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346039" + "plane" "(-1464 -5344 252) (-1488 -5344 252) (-1488 -5554 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747170" + side + { + "id" "346020" + "plane" "(-1488 -5344 256) (-1488 -5344 252) (-1488 -5554 252)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 176.004] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346019" + "plane" "(-1510 -5554 256) (-1510 -5554 252) (-1510 -5346 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346018" + "plane" "(-1510 -5346 256) (-1510 -5346 252) (-1488 -5344 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.995893 0.0905385 0 120.802] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346017" + "plane" "(-1488 -5554 256) (-1488 -5554 252) (-1510 -5554 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.993883 0.110434 0 17.9546] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346016" + "plane" "(-1510 -5554 256) (-1510 -5346 256) (-1488 -5344 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346015" + "plane" "(-1510 -5346 252) (-1510 -5554 252) (-1488 -5554 252)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747172" + side + { + "id" "346032" + "plane" "(-1510 -5346 256) (-1510 -5346 252) (-1510 -5554 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 0.970142 0 31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346031" + "plane" "(-1530 -5554 256) (-1530 -5554 252) (-1530 -5352 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 -0.936329 0 15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346030" + "plane" "(-1530 -5352 256) (-1530 -5352 252) (-1510 -5346 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.957826 0.287348 0 396.501] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346029" + "plane" "(-1510 -5554 256) (-1510 -5554 252) (-1530 -5554 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948683 0.316229 0 55.1847] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346028" + "plane" "(-1530 -5554 256) (-1530 -5352 256) (-1510 -5346 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346027" + "plane" "(-1530 -5352 252) (-1530 -5554 252) (-1510 -5554 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747176" + side + { + "id" "346056" + "plane" "(-1530 -5352 256) (-1530 -5352 252) (-1530 -5554 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 0.936329 0 -15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346055" + "plane" "(-1550 -5554 256) (-1550 -5554 252) (-1550 -5362 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 -0.868243 0 33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346054" + "plane" "(-1550 -5362 256) (-1550 -5362 252) (-1530 -5352 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.894427 0.447214 0 315.578] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346053" + "plane" "(-1530 -5554 256) (-1530 -5554 252) (-1550 -5554 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 0.406139 0 39.789] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346052" + "plane" "(-1550 -5554 256) (-1550 -5362 256) (-1530 -5352 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346051" + "plane" "(-1550 -5362 252) (-1550 -5554 252) (-1530 -5554 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747178" + side + { + "id" "346068" + "plane" "(-1550 -5362 256) (-1550 -5362 252) (-1550 -5554 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 0.868243 0 -33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346067" + "plane" "(-1568 -5554 256) (-1568 -5554 252) (-1568 -5376 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346066" + "plane" "(-1568 -5376 256) (-1568 -5376 252) (-1550 -5362 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.789352 0.613941 0 5.14648] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346065" + "plane" "(-1550 -5554 256) (-1550 -5554 252) (-1568 -5554 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759256 0.650792 0 32.9327] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346064" + "plane" "(-1568 -5554 256) (-1568 -5376 256) (-1550 -5362 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346063" + "plane" "(-1568 -5376 252) (-1568 -5554 252) (-1550 -5554 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747180" + side + { + "id" "346080" + "plane" "(-1568 -5376 256) (-1568 -5376 252) (-1568 -5554 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 -4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346079" + "plane" "(-1582 -5554 256) (-1582 -5554 252) (-1582 -5394 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 -0.496139 0 8.17213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346078" + "plane" "(-1582 -5394 256) (-1582 -5394 252) (-1568 -5376 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.61394 0.789352 0 228.889] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346077" + "plane" "(-1568 -5554 256) (-1568 -5554 252) (-1582 -5554 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650791 0.759257 0 22.2487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346076" + "plane" "(-1582 -5554 256) (-1582 -5394 256) (-1568 -5376 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346075" + "plane" "(-1582 -5394 252) (-1582 -5554 252) (-1568 -5554 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747366" + side + { + "id" "346272" + "plane" "(-1488 -5344 252) (-1488 -5344 190) (-1488 -5554 190)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 176.004] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346271" + "plane" "(-1510 -5554 252) (-1510 -5554 190) (-1510 -5346 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346270" + "plane" "(-1510 -5346 252) (-1510 -5346 190) (-1488 -5344 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.995893 0.0905359 0 502.859] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346269" + "plane" "(-1488 -5554 252) (-1488 -5554 190) (-1510 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.993883 0.110434 0 17.9546] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346268" + "plane" "(-1510 -5554 252) (-1510 -5346 252) (-1488 -5344 252)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346267" + "plane" "(-1510 -5346 190) (-1510 -5554 190) (-1488 -5554 190)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747362" + side + { + "id" "346248" + "plane" "(-1510 -5346 252) (-1510 -5346 190) (-1510 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 0.970142 0 31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346247" + "plane" "(-1530 -5554 252) (-1530 -5554 190) (-1530 -5352 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 -0.936329 0 15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346246" + "plane" "(-1530 -5352 252) (-1530 -5352 190) (-1510 -5346 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.957826 0.287348 0 70.9355] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346245" + "plane" "(-1510 -5554 252) (-1510 -5554 190) (-1530 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948683 0.316229 0 55.1847] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346244" + "plane" "(-1530 -5554 252) (-1530 -5352 252) (-1510 -5346 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346243" + "plane" "(-1530 -5352 190) (-1530 -5554 190) (-1510 -5554 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747364" + side + { + "id" "346260" + "plane" "(-1464 -5554 252) (-1464 -5554 190) (-1488 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346259" + "plane" "(-1488 -5344 252) (-1488 -5344 190) (-1464 -5344 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[1 0 0 345.875] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346258" + "plane" "(-1488 -5554 252) (-1488 -5554 190) (-1488 -5344 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346257" + "plane" "(-1464 -5344 252) (-1464 -5344 190) (-1464 -5554 190)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 58.9932] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346256" + "plane" "(-1464 -5554 252) (-1488 -5554 252) (-1488 -5344 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346255" + "plane" "(-1464 -5344 190) (-1488 -5344 190) (-1488 -5554 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747368" + side + { + "id" "346284" + "plane" "(-1530 -5352 252) (-1530 -5352 190) (-1530 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 0.936329 0 -15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346283" + "plane" "(-1550 -5554 252) (-1550 -5554 190) (-1550 -5362 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 -0.868243 0 33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346282" + "plane" "(-1550 -5362 252) (-1550 -5362 190) (-1530 -5352 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.894427 0.447214 0 1019.75] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346281" + "plane" "(-1530 -5554 252) (-1530 -5554 190) (-1550 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 0.406139 0 39.789] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346280" + "plane" "(-1550 -5554 252) (-1550 -5362 252) (-1530 -5352 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346279" + "plane" "(-1550 -5362 190) (-1550 -5554 190) (-1530 -5554 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747370" + side + { + "id" "346296" + "plane" "(-1550 -5362 252) (-1550 -5362 190) (-1550 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 0.868243 0 -33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346295" + "plane" "(-1568 -5554 252) (-1568 -5554 190) (-1568 -5376 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346294" + "plane" "(-1568 -5376 252) (-1568 -5376 190) (-1550 -5362 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.789352 0.613941 0 721.65] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346293" + "plane" "(-1550 -5554 252) (-1550 -5554 190) (-1568 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759256 0.650792 0 32.9327] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346292" + "plane" "(-1568 -5554 252) (-1568 -5376 252) (-1550 -5362 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346291" + "plane" "(-1568 -5376 190) (-1568 -5554 190) (-1550 -5554 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747372" + side + { + "id" "346308" + "plane" "(-1568 -5376 252) (-1568 -5376 190) (-1568 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 -4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346307" + "plane" "(-1582 -5554 252) (-1582 -5554 190) (-1582 -5394 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 -0.496139 0 8.17213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346306" + "plane" "(-1582 -5394 252) (-1582 -5394 190) (-1568 -5376 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.61394 0.789352 0 932.59] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346305" + "plane" "(-1568 -5554 252) (-1568 -5554 190) (-1582 -5554 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650791 0.759257 0 22.2487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346304" + "plane" "(-1582 -5554 252) (-1582 -5394 252) (-1568 -5376 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346303" + "plane" "(-1582 -5394 190) (-1582 -5554 190) (-1568 -5554 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747361" + side + { + "id" "346242" + "plane" "(-1510 -5346 190) (-1510 -5346 186) (-1510 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 0.970142 0 31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346241" + "plane" "(-1530 -5554 190) (-1530 -5554 186) (-1530 -5352 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 -0.936329 0 15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346240" + "plane" "(-1530 -5352 190) (-1530 -5352 186) (-1510 -5346 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.957826 -0.287349 0 -188.647] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346239" + "plane" "(-1510 -5554 190) (-1510 -5554 186) (-1530 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948683 0.316229 0 55.1847] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346238" + "plane" "(-1530 -5352 186) (-1530 -5554 186) (-1510 -5554 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346237" + "plane" "(-1530 -5554 190) (-1530 -5352 190) (-1510 -5346 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747363" + side + { + "id" "346254" + "plane" "(-1464 -5554 190) (-1464 -5554 186) (-1488 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346253" + "plane" "(-1488 -5344 190) (-1488 -5344 186) (-1464 -5344 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -187.128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346252" + "plane" "(-1488 -5554 190) (-1488 -5554 186) (-1488 -5344 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346251" + "plane" "(-1464 -5344 190) (-1464 -5344 186) (-1464 -5554 186)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 58.9932] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346250" + "plane" "(-1464 -5344 186) (-1488 -5344 186) (-1488 -5554 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346249" + "plane" "(-1464 -5554 190) (-1488 -5554 190) (-1488 -5344 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747365" + side + { + "id" "346266" + "plane" "(-1488 -5344 190) (-1488 -5344 186) (-1488 -5554 186)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 176.004] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346265" + "plane" "(-1510 -5554 190) (-1510 -5554 186) (-1510 -5346 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346264" + "plane" "(-1510 -5346 190) (-1510 -5346 186) (-1488 -5344 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.995893 -0.0905385 0 -424.941] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346263" + "plane" "(-1488 -5554 190) (-1488 -5554 186) (-1510 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.993883 0.110434 0 17.9546] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346262" + "plane" "(-1510 -5346 186) (-1510 -5554 186) (-1488 -5554 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346261" + "plane" "(-1510 -5554 190) (-1510 -5346 190) (-1488 -5344 190)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747367" + side + { + "id" "346278" + "plane" "(-1530 -5352 190) (-1530 -5352 186) (-1530 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 0.936329 0 -15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346277" + "plane" "(-1550 -5554 190) (-1550 -5554 186) (-1550 -5362 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 -0.868243 0 33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346276" + "plane" "(-1550 -5362 190) (-1550 -5362 186) (-1530 -5352 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.894427 -0.447214 0 -107.719] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346275" + "plane" "(-1530 -5554 190) (-1530 -5554 186) (-1550 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 0.406139 0 39.789] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346274" + "plane" "(-1550 -5362 186) (-1550 -5554 186) (-1530 -5554 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346273" + "plane" "(-1550 -5554 190) (-1550 -5362 190) (-1530 -5352 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747369" + side + { + "id" "346290" + "plane" "(-1550 -5362 190) (-1550 -5362 186) (-1550 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 0.868243 0 -33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346289" + "plane" "(-1568 -5554 190) (-1568 -5554 186) (-1568 -5376 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346288" + "plane" "(-1568 -5376 190) (-1568 -5376 186) (-1550 -5362 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.789352 -0.61394 0 -309.283] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346287" + "plane" "(-1550 -5554 190) (-1550 -5554 186) (-1568 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759256 0.650792 0 32.9327] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346286" + "plane" "(-1568 -5376 186) (-1568 -5554 186) (-1550 -5554 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346285" + "plane" "(-1568 -5554 190) (-1568 -5376 190) (-1550 -5362 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747371" + side + { + "id" "346302" + "plane" "(-1568 -5376 190) (-1568 -5376 186) (-1568 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 -4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346301" + "plane" "(-1582 -5554 190) (-1582 -5554 186) (-1582 -5394 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 -0.496139 0 8.17213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346300" + "plane" "(-1582 -5394 190) (-1582 -5394 186) (-1568 -5376 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.613941 -0.789352 0 -495.65] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346299" + "plane" "(-1568 -5554 190) (-1568 -5554 186) (-1582 -5554 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650791 0.759257 0 22.2487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346298" + "plane" "(-1582 -5394 186) (-1582 -5554 186) (-1568 -5554 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346297" + "plane" "(-1582 -5554 190) (-1582 -5394 190) (-1568 -5376 190)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10268]" + } +} +entity +{ + "id" "4726654" + "classname" "func_detail" + solid + { + "id" "4747244" + side + { + "id" "346116" + "plane" "(-948 -5616 186) (-948 -6128 186) (-936 -6128 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346115" + "plane" "(-948 -6128 190) (-948 -6128 186) (-948 -5616 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346114" + "plane" "(-936 -5616 190) (-936 -5616 186) (-936 -6128 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -272] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346113" + "plane" "(-948 -5616 190) (-948 -5616 186) (-936 -5616 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346112" + "plane" "(-936 -6128 190) (-936 -6128 186) (-948 -6128 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346111" + "plane" "(-948 -6128 190) (-948 -5616 190) (-936 -5616 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747053" + side + { + "id" "345858" + "plane" "(-948 -6128 256) (-948 -5616 256) (-936 -5616 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" "345857" + "plane" "(-948 -5616 252) (-948 -5616 256) (-948 -6128 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" "345856" + "plane" "(-936 -6128 252) (-936 -6128 256) (-936 -5616 256)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -181] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345855" + "plane" "(-936 -5616 252) (-936 -5616 256) (-948 -5616 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" "345854" + "plane" "(-948 -6128 252) (-948 -6128 256) (-936 -6128 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" "345853" + "plane" "(-948 -5616 252) (-948 -6128 252) (-936 -6128 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747243" + side + { + "id" "346110" + "plane" "(-948 -6128 252) (-948 -6128 190) (-948 -5616 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346109" + "plane" "(-936 -5616 252) (-936 -5616 190) (-936 -6128 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0 -1 0 -492.922] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346108" + "plane" "(-948 -5616 252) (-948 -5616 190) (-936 -5616 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346107" + "plane" "(-936 -6128 252) (-936 -6128 190) (-948 -6128 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346106" + "plane" "(-948 -6128 252) (-948 -5616 252) (-936 -5616 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346105" + "plane" "(-948 -5616 190) (-948 -6128 190) (-936 -6128 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -9268]" + } +} +entity +{ + "id" "4726697" + "classname" "func_detail" + solid + { + "id" "4747240" + side + { + "id" "346092" + "plane" "(-936 -6128 186) (-998 -6128 186) (-998 -6152 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346091" + "plane" "(-998 -6152 190) (-998 -6152 186) (-998 -6128 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346090" + "plane" "(-998 -6128 190) (-998 -6128 186) (-936 -6128 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346089" + "plane" "(-963 -6152 190) (-963 -6152 186) (-998 -6152 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.599999 -0.8 0 -272] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346088" + "plane" "(-936 -6128 190) (-936 -6128 186) (-963 -6152 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.0830458 -0.996546 0 -272] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346087" + "plane" "(-963 -6152 190) (-998 -6152 190) (-998 -6128 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747055" + side + { + "id" "345870" + "plane" "(-963 -6152 256) (-998 -6152 256) (-998 -6128 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" "345869" + "plane" "(-998 -6128 252) (-998 -6128 256) (-998 -6152 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" "345868" + "plane" "(-936 -6128 252) (-936 -6128 256) (-998 -6128 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" "345867" + "plane" "(-998 -6152 252) (-998 -6152 256) (-963 -6152 256)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.599999 -0.8 0 -272.207] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345866" + "plane" "(-963 -6152 252) (-963 -6152 256) (-936 -6128 256)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.0830458 -0.996546 0 -14.2168] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345865" + "plane" "(-936 -6128 252) (-998 -6128 252) (-998 -6152 252)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747239" + side + { + "id" "346086" + "plane" "(-998 -6152 252) (-998 -6152 190) (-998 -6128 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346085" + "plane" "(-998 -6128 252) (-998 -6128 190) (-936 -6128 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346084" + "plane" "(-963 -6152 252) (-963 -6152 190) (-998 -6152 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[-1 0 0 156.055] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346083" + "plane" "(-936 -6128 252) (-936 -6128 190) (-963 -6152 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[-0.747409 -0.664364 0 124.695] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346082" + "plane" "(-963 -6152 252) (-998 -6152 252) (-998 -6128 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346081" + "plane" "(-936 -6128 190) (-998 -6128 190) (-998 -6152 190)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -7268]" + } +} +hidden +{ + entity + { + "id" "4726813" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_ac_unit/dust_ac_unit_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1483 -5504 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4726829" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_ac_unit/dust_ac_unit_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1521 -5504 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4726841" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "2 73 100" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1169 -5408.2 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4726845" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "2 73 100" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1041 -5408 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +entity +{ + "id" "4726891" + "classname" "func_detail" + solid + { + "id" "4726886" + side + { + "id" "345549" + "plane" "(-1529 -5391 37) (-1497 -5391 37) (-1497 -5423 37)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345548" + "plane" "(-1529 -5423 32) (-1497 -5423 32) (-1497 -5391 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" "345547" + "plane" "(-1529 -5391 37) (-1529 -5423 37) (-1529 -5423 32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 0 1 -120] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345546" + "plane" "(-1497 -5391 32) (-1497 -5423 32) (-1497 -5423 37)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 0 -1 -720] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345545" + "plane" "(-1497 -5391 37) (-1529 -5391 37) (-1529 -5391 32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 935.996] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345544" + "plane" "(-1497 -5423 32) (-1529 -5423 32) (-1529 -5423 37)" + "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" "4726877" + side + { + "id" "345555" + "plane" "(-1325 -5391 37) (-1293 -5391 37) (-1293 -5423 37)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345554" + "plane" "(-1325 -5423 32) (-1293 -5423 32) (-1293 -5391 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" "345553" + "plane" "(-1325 -5391 37) (-1325 -5423 37) (-1325 -5423 32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345552" + "plane" "(-1293 -5391 32) (-1293 -5423 32) (-1293 -5423 37)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 0 -1 -928] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345551" + "plane" "(-1293 -5391 37) (-1325 -5391 37) (-1325 -5391 32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 1 935.996] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345550" + "plane" "(-1293 -5423 32) (-1325 -5423 32) (-1325 -5423 37)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 335.996] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726879" + side + { + "id" "345561" + "plane" "(-1047 -5391 37) (-1015 -5391 37) (-1015 -5423 37)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -130] 0.125" + "vaxis" "[0 -1 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345560" + "plane" "(-1047 -5423 32) (-1015 -5423 32) (-1015 -5391 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" "345559" + "plane" "(-1047 -5391 37) (-1047 -5423 37) (-1047 -5423 32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 0 1 -609.998] 0.125" + "vaxis" "[0 -1 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345558" + "plane" "(-1015 -5391 32) (-1015 -5423 32) (-1015 -5423 37)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 0 -1 -786] 0.125" + "vaxis" "[0 -1 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345557" + "plane" "(-1015 -5391 37) (-1047 -5391 37) (-1047 -5391 32)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -130] 0.125" + "vaxis" "[0 0 1 908.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345556" + "plane" "(-1015 -5423 32) (-1047 -5423 32) (-1047 -5423 37)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -130] 0.125" + "vaxis" "[0 0 -1 732.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -4768]" + } +} +hidden +{ + entity + { + "id" "4731619" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1007 -4180 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4731939" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "529 -2705 -35.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4731967" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1332 -3733 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4731971" + "classname" "prop_static" + "angles" "0 0.499997 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1160 -2996 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4731983" + "classname" "prop_static" + "angles" "0 0.499997 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1503 -3094 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4732007" + "classname" "prop_static" + "angles" "0 89 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lamp001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2291.3 -5296.85 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4695602" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "166 -5617 0.250006" + editor + { + "color" "234 143 0" + "groupid" "4695718" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "4695618" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "166 -5745 0.250006" + editor + { + "color" "234 143 0" + "groupid" "4695718" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "4695626" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_corner_001_16.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "167 -5890 0.25" + editor + { + "color" "234 143 0" + "groupid" "4695718" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "4695646" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_corner_001_16.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "166 -5601 0.249998" + editor + { + "color" "234 143 0" + "groupid" "4695718" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "4695674" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "149 -5890 0.25" + editor + { + "color" "234 143 0" + "groupid" "4695718" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "4679980" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "752 -5749 8.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4680007" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "680 -5749 8.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4680077" + "classname" "prop_static" + "angles" "0 200.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1335 -1789.28 -14" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4680101" + "classname" "prop_static" + "angles" "0 200.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2355 -3901.36 -14" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "4680264" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "2299 -6177 49" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4680275" + side + { + "id" "344904" + "plane" "(2752 -6176 53) (2752 -6176 45) (2752 -6178 47)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344903" + "plane" "(2444 -6176 45) (2752 -6176 45) (2752 -6176 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344902" + "plane" "(2752 -6178 51) (2752 -6178 47) (2444 -6178 47)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -455.994] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344901" + "plane" "(2752 -6176 53) (2752 -6178 51) (2444 -6178 51)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -455.994] 0.25" + "vaxis" "[0 -0.707107 -0.707107 -125.771] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344900" + "plane" "(2752 -6178 47) (2752 -6176 45) (2444 -6176 45)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -456] 0.25" + "vaxis" "[0 0.707107 -0.707107 -15] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344899" + "plane" "(2444 -6178 51) (2444 -6178 47) (2444 -6176 45)" + "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 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4680274" + side + { + "id" "344898" + "plane" "(2224 -6178 51) (2224 -6178 47) (2224 -6176 45)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344897" + "plane" "(2224 -6176 53) (2224 -6176 45) (2374 -6176 45)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344896" + "plane" "(2374 -6178 47) (2224 -6178 47) (2224 -6178 51)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -455.994] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344895" + "plane" "(2374 -6178 51) (2224 -6178 51) (2224 -6176 53)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -455.994] 0.25" + "vaxis" "[0 -0.707107 -0.707107 -125.771] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344894" + "plane" "(2374 -6176 45) (2224 -6176 45) (2224 -6178 47)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -456] 0.25" + "vaxis" "[0 0.707107 -0.707107 -15] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344893" + "plane" "(2374 -6176 53) (2374 -6176 45) (2374 -6178 47)" + "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 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +hidden +{ + entity + { + "id" "4680285" + "classname" "prop_static" + "angles" "0 200.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/manhole/manhole.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1161 -7186.38 -30" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4662574" + "classname" "prop_static" + "angles" "0 329.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_unique/mopbucket01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1509.03 -2235.24 -23.7846" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "4662942" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "2256 -4207 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4662938" + side + { + "id" "344282" + "plane" "(2048 -4208 52) (2048 -4208 44) (2048 -4206 46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344281" + "plane" "(2464 -4206 50) (2464 -4206 46) (2464 -4208 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" "344280" + "plane" "(2048 -4206 50) (2048 -4206 46) (2464 -4206 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344279" + "plane" "(2464 -4208 52) (2464 -4208 44) (2048 -4208 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" "344278" + "plane" "(2048 -4206 46) (2048 -4208 44) (2464 -4208 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -7] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344277" + "plane" "(2048 -4208 52) (2048 -4206 50) (2464 -4206 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0.707107 -0.707107 488] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "4663229" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1023 -4199 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4663133" + side + { + "id" "344414" + "plane" "(1024 -4200 44) (1024 -4200 52) (1024 -4198 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344413" + "plane" "(1022 -4200 50) (1023 -4199 51) (1024 -4200 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.666667 0.333333 0.666667 341.332] 0.125" + "vaxis" "[-0.235702 0.942809 -0.235702 406.932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344412" + "plane" "(1024 -4200 44) (1023 -4199 45) (1022 -4200 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 800] 0.125" + "vaxis" "[0.707107 0 -0.707107 -440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344411" + "plane" "(1024 -4198 50) (1024 -4200 52) (1023 -4199 51)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0.707107 -0.707107 480.572] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344410" + "plane" "(1022 -4200 50) (1022 -4200 46) (1023 -4199 45)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.707107 0.707107 0 546.852] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344409" + "plane" "(1023 -4199 45) (1024 -4200 44) (1024 -4198 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344408" + "plane" "(1024 -4200 52) (1024 -4200 44) (1022 -4200 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +entity +{ + "id" "4663237" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1023 -4416 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "5427757" + side + { + "id" "360257" + "plane" "(1022 -4352 46) (1022 -4200 46) (1022 -4200 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 799.996] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360256" + "plane" "(1024 -4200 44) (1024 -4352 44) (1024 -4352 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360255" + "plane" "(1022 -4352 50) (1022 -4200 50) (1024 -4200 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 800] 0.125" + "vaxis" "[-0.707107 0 -0.707107 203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360254" + "plane" "(1024 -4352 44) (1024 -4200 44) (1022 -4200 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 800] 0.125" + "vaxis" "[0.707107 0 -0.707107 -440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360253" + "plane" "(1022 -4200 50) (1022 -4200 46) (1024 -4200 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360252" + "plane" "(1024 -4352 52) (1024 -4352 44) (1022 -4352 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5427758" + side + { + "id" "360263" + "plane" "(1022 -4632 50) (1022 -4632 46) (1022 -4480 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 799.996] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360262" + "plane" "(1024 -4480 44) (1024 -4632 44) (1024 -4632 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360261" + "plane" "(1024 -4632 52) (1024 -4632 44) (1022 -4632 46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360260" + "plane" "(1022 -4632 50) (1022 -4480 50) (1024 -4480 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 800] 0.125" + "vaxis" "[-0.707107 0 -0.707107 203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360259" + "plane" "(1024 -4632 44) (1024 -4480 44) (1022 -4480 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 800] 0.125" + "vaxis" "[0.707107 0 -0.707107 -440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "360258" + "plane" "(1022 -4480 50) (1022 -4480 46) (1024 -4480 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "4663471" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1057.5 -4785 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4663467" + side + { + "id" "344513" + "plane" "(1022 -4784 50) (1022 -4784 46) (1024 -4784 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" "344512" + "plane" "(1091 -4786 50) (1091 -4786 46) (1024 -4786 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -639.998] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344511" + "plane" "(1093 -4784 52) (1093 -4784 44) (1091 -4786 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-0.707107 -0.707107 0 -574.07] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344510" + "plane" "(1024 -4786 50) (1024 -4786 46) (1023 -4785 45)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-0.707107 0.707107 0 482.324] 0.125" + "vaxis" "[0 0 -1 -155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344509" + "plane" "(1091 -4786 50) (1024 -4786 50) (1023 -4785 51)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -640] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -397] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344508" + "plane" "(1093 -4784 44) (1024 -4784 44) (1023 -4785 45)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -640] 0.125" + "vaxis" "[0 0.707107 -0.707107 155] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344507" + "plane" "(1023 -4785 51) (1022 -4784 50) (1024 -4784 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 800] 0.125" + "vaxis" "[-0.707107 0 -0.707107 203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344506" + "plane" "(1024 -4784 44) (1022 -4784 46) (1023 -4785 45)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 800] 0.125" + "vaxis" "[0 -1 0 -440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -3268]" + } +} +entity +{ + "id" "4663590" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1171.5 -4785 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4663548" + side + { + "id" "344553" + "plane" "(1159 -4786 50) (1159 -4786 46) (1159 -4784 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" "344552" + "plane" "(1184 -4784 52) (1184 -4784 44) (1184 -4786 46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344551" + "plane" "(1159 -4784 52) (1159 -4784 44) (1184 -4784 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" "344550" + "plane" "(1184 -4786 50) (1184 -4786 46) (1159 -4786 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -640] 0.125" + "vaxis" "[0 0 1 -60] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344549" + "plane" "(1184 -4784 52) (1184 -4786 50) (1159 -4786 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -640] 0.125" + "vaxis" "[0 0.707107 0.707107 506.855] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344548" + "plane" "(1184 -4786 46) (1184 -4784 44) (1159 -4784 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 -640] 0.125" + "vaxis" "[0 -0.707107 0.707107 -401.916] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "4663686" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1183 -4908 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4663708" + side + { + "id" "344592" + "plane" "(1182 -5030 46) (1182 -4784 46) (1182 -4784 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 -640] 0.125" + "vaxis" "[0 0 -1 -165] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344591" + "plane" "(1184 -4784 52) (1184 -4784 44) (1184 -5032 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" "344590" + "plane" "(1182 -4784 50) (1182 -4784 46) (1184 -4784 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" "344589" + "plane" "(1182 -5030 50) (1182 -4784 50) (1184 -4784 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 -640] 0.125" + "vaxis" "[-0.707107 0 -0.707107 280] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344588" + "plane" "(1184 -5032 44) (1184 -4784 44) (1182 -4784 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 -640] 0.125" + "vaxis" "[0.707107 0 -0.707107 -314] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344587" + "plane" "(1184 -5032 52) (1184 -5032 44) (1182 -5030 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +entity +{ + "id" "4663751" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1183 -5585 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "5408700" + side + { + "id" "356335" + "plane" "(1182 -5888 50) (1182 -5888 46) (1182 -5372 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 -640] 0.125" + "vaxis" "[0 0 -1 -165] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356334" + "plane" "(1184 -5372 44) (1184 -5888 44) (1184 -5890 46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356333" + "plane" "(1184 -5890 50) (1184 -5890 46) (1183 -5889 45)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-0.707107 0.707107 0 -582] 0.125" + "vaxis" "[0 0 -1 -162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356332" + "plane" "(1182 -5888 50) (1182 -5372 50) (1184 -5372 52)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 -640] 0.125" + "vaxis" "[-0.707107 0 -0.707107 274] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356331" + "plane" "(1184 -5888 44) (1184 -5372 44) (1182 -5372 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0 1 0 -640] 0.125" + "vaxis" "[0.707107 0 -0.707107 -311] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356330" + "plane" "(1184 -5890 46) (1184 -5888 44) (1183 -5889 45)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -407] 0.125" + "vaxis" "[0 0.707107 -0.707107 272] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356329" + "plane" "(1184 -5888 52) (1184 -5890 50) (1183 -5889 51)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -407] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -307] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "356328" + "plane" "(1182 -5372 50) (1182 -5372 46) (1184 -5372 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 8500]" + } +} +entity +{ + "id" "4664033" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1704 -5889 48" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "4663985" + side + { + "id" "344667" + "plane" "(1184 -5890 50) (1184 -5890 46) (1184 -5888 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" "344666" + "plane" "(2224 -5888 52) (2224 -5888 44) (2224 -5890 46)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344665" + "plane" "(1184 -5888 52) (1184 -5888 44) (2224 -5888 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" "344664" + "plane" "(2224 -5890 50) (2224 -5890 46) (1184 -5890 46)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -406.586] 0.125" + "vaxis" "[0 0 -1 -162] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344663" + "plane" "(2224 -5888 52) (2224 -5890 50) (1184 -5890 50)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -407] 0.125" + "vaxis" "[0 -0.707107 -0.707107 -307] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344662" + "plane" "(2224 -5890 46) (2224 -5888 44) (1184 -5888 44)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[-1 0 0 -407] 0.125" + "vaxis" "[0 0.707107 -0.707107 272] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 10500]" + } +} +hidden +{ + entity + { + "id" "4647225" + "classname" "prop_static" + "angles" "0 156.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-204 -5664 32.2389" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4647317" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_ac_unit/dust_ac_unit_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-948 -6059 165" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4647333" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_ac_unit/dust_ac_unit_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-948 -6024 165" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4647466" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1320 -2561 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "4647493" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1840 -2442 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "4631296" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_locker_bench/nuke_locker_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1659 -3123 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4631331" + "classname" "prop_static" + "angles" "0 145 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/trash_b/hr_food_pile_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1476 -3860 -1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4631769" + "classname" "prop_static" + "angles" "0 135 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_8.mdl" + "renderamt" "255" + "rendercolor" "65 65 65" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "205 -1869 -23.75" + editor + { + "color" "166 191 0" + "groupid" "4631761" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "4631773" + "classname" "prop_static" + "angles" "0 135 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "181.654 -1888.14 -23.75" + editor + { + "color" "166 191 0" + "groupid" "4631760" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "4631902" + "classname" "prop_static" + "angles" "0 314.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_restroom_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "203 -1870 63.0192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +entity +{ + "id" "4632080" + "classname" "func_detail" + solid + { + "id" "4181153" + side + { + "id" "343949" + "plane" "(2032 -4200 272) (2048 -4200 272) (2048 -4216 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" "343948" + "plane" "(2032 -4216 208) (2048 -4216 208) (2048 -4200 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" "343947" + "plane" "(2032 -4200 272) (2032 -4216 272) (2032 -4216 208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 422.665] 0.15" + "vaxis" "[0 -1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343946" + "plane" "(2048 -4200 208) (2048 -4216 208) (2048 -4216 272)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -191.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343945" + "plane" "(2048 -4200 272) (2032 -4200 272) (2032 -4200 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -383.992] 0.125" + "vaxis" "[0 0 -1 160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343944" + "plane" "(2048 -4216 208) (2032 -4216 208) (2032 -4216 272)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE_LIGHT" + "uaxis" "[1 0 0 9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 7000]" + } +} +hidden +{ + entity + { + "id" "4612740" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_64.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1148 -4827 240.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4612744" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_64.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1147.17 -4905.57 240.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4612855" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1158 -5008 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4612859" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1153 -5008 3.25001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4612863" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1123 -5009 82.7643" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4612938" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1094.04 -5007.99 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "4612954" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1187 -5008 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "4612970" + "classname" "prop_static" + "angles" "0 269 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1095.88 -4783.51 0.249992" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "4612974" + "classname" "prop_static" + "angles" "0 269 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1126 -4777.04 0.249992" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "4612978" + "classname" "prop_static" + "angles" "0 269 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1123.86 -4785 79.6974" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4613099" + "classname" "prop_static" + "angles" "-78.9898 2.87297 -1.2924" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_stack_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1180 -4939 33.9469" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4613316" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_downtown/keycard_reader.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1173 -4784 74.4909" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4613347" + "classname" "prop_static" + "angles" "0 316 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_downtown/keycard_reader.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-224 -1840 49.2369" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4614014" + "classname" "prop_static" + "angles" "0 45 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8401 8675 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4614063" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8839.97 7990.78 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614067" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8856.15 7989.83 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614071" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8881.8 7990.95 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614075" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8909.58 7992.52 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614079" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8944.54 7991.77 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614083" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8962.85 7991.96 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614087" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8980.4 7991.92 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614091" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9002.76 7991.34 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614095" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9026.09 7991.37 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614099" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9058.63 7992.71 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614103" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9078.66 7992.48 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614107" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9108.6 7993.19 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614111" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9129.92 7992.23 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614115" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9155.09 7991.48 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614261" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8947.92 7785.23 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614265" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8973.09 7784.48 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614270" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8926.6 7786.19 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614274" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8896.66 7785.48 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614278" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8876.63 7785.71 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614282" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8844.09 7784.37 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614286" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8820.76 7784.34 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614290" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8798.4 7784.92 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614294" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8780.85 7784.96 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614298" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8762.54 7784.77 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614302" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8727.58 7785.52 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614306" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8674.15 7782.83 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614310" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8699.8 7783.95 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614314" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8657.97 7783.78 5153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614438" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8734 7683 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614454" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8968.37 7700.52 5152.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614458" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8968.68 7622.94 5152.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614462" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8968.68 7568.94 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614466" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9051 7703 5152.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614470" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9051.31 7625.42 5152.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614474" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9051.31 7571.42 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614493" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9330 8348 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614497" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9332 8378 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614501" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9335 8444 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614505" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9334 8470 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614509" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9331 8501 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614519" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9327.07 8233.96 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614523" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9296.29 8239.04 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614527" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9297.26 8278.55 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614531" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9278.01 8243.27 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614535" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9316 8221.34 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614539" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9272.4 8275.85 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614543" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9307.04 8318.66 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614555" + "classname" "prop_static" + "angles" "0 0 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9377.94 8049.56 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4614571" + "classname" "prop_static" + "angles" "0 0 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9391 8108 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4614595" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9360.74 8629.04 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614599" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9357.74 8660.04 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614603" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9361.74 8603.04 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614627" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9472 8647 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614655" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9404 8599 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614706" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9658.4 8135.85 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614710" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9664.01 8103.27 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614714" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9682.29 8099.04 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614718" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9702 8081.34 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614722" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9713.07 8093.96 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614726" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9715.06 8113.66 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614730" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9716.38 8130.98 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614735" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9710.51 8144.51 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614739" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9683.26 8138.55 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4614787" + "classname" "prop_static" + "angles" "0 0 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_shack.mdl" + "renderamt" "255" + "rendercolor" "172 102 98" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9314.4 8175.71 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4614791" + "classname" "prop_static" + "angles" "0 0 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_shack.mdl" + "renderamt" "255" + "rendercolor" "172 102 98" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9315 8133 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4614803" + "classname" "prop_static" + "angles" "0 0 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_shack.mdl" + "renderamt" "255" + "rendercolor" "172 102 98" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9396.42 8770.51 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4614807" + "classname" "prop_static" + "angles" "0 0 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_shack.mdl" + "renderamt" "255" + "rendercolor" "172 102 98" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9435.81 8815.45 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4614811" + "classname" "prop_static" + "angles" "0 270.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_shack.mdl" + "renderamt" "255" + "rendercolor" "172 102 98" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8800 7993 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4614827" + "classname" "prop_static" + "angles" "0 270.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_shack.mdl" + "renderamt" "255" + "rendercolor" "172 102 98" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8757 7993 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4614955" + "classname" "prop_static" + "angles" "0 269 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2379 -6176 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "4614959" + "classname" "prop_static" + "angles" "0 269 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2409 -6168.53 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "4615027" + "classname" "prop_static" + "angles" "0 269 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2408 -6177 62.8187" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4615031" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_downtown/keycard_reader.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2457 -6175 57.6122" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4615047" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_256.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2216 -5892 -29.7886" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4615075" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_256.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2216 -5896 -30" + editor + { + "color" "109 186 0" + "groupid" "4615191" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4615099" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_corner_large.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2218 -5896 232" + editor + { + "color" "109 186 0" + "groupid" "4615191" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4615143" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_corner_large.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2218 -5892 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4615206" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_256.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "983 -4650 -77.25" + editor + { + "color" "109 186 0" + "groupid" "4615201" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4615219" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_256.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "978 -4651 -77.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4615227" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1314 -4193 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4615231" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1320 -4192.98 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4615405" + "classname" "func_detail" + solid + { + "id" "5079590" + side + { + "id" "350747" + "plane" "(384 -4688 208) (384 -4509 208) (432 -4509 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" "350746" + "plane" "(384 -4509 160) (384 -4688 160) (432 -4688 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350745" + "plane" "(384 -4688 160) (384 -4509 160) (384 -4509 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" "350744" + "plane" "(432 -4688 160) (384 -4688 160) (384 -4688 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "350743" + "plane" "(384 -4509 160) (432 -4509 160) (432 -4509 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[-1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350742" + "plane" "(432 -4509 160) (432 -4688 160) (432 -4688 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5079592" + side + { + "id" "350759" + "plane" "(432 -4509 208) (384 -4509 208) (384 -4183 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" "350758" + "plane" "(432 -4183 160) (384 -4183 160) (384 -4509 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350757" + "plane" "(384 -4509 160) (384 -4183 160) (384 -4183 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" "350756" + "plane" "(384 -4183 160) (432 -4183 160) (432 -4183 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" "350755" + "plane" "(432 -4509 160) (384 -4509 160) (384 -4509 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" "350754" + "plane" "(432 -4183 160) (432 -4509 160) (432 -4509 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222482" + side + { + "id" "380537" + "plane" "(848 -4184 208) (1008 -4184 208) (1008 -4509 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" "380536" + "plane" "(1008 -4509 206) (1008 -4509 208) (1008 -4184 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380535" + "plane" "(1008 -4184 206) (1008 -4184 208) (848 -4184 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" "380534" + "plane" "(848 -4509 206) (848 -4509 208) (1008 -4509 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" "380533" + "plane" "(848 -4184 206) (848 -4184 208) (848 -4509 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380532" + "plane" "(848 -4509 206) (1008 -4509 206) (1008 -4184 206)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5079595" + side + { + "id" "350777" + "plane" "(384 -4184 208) (384 -4016 208) (432 -4016 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" "350776" + "plane" "(384 -4016 160) (384 -4184 160) (432 -4184 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350775" + "plane" "(384 -4184 160) (384 -4016 160) (384 -4016 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" "350774" + "plane" "(384 -4016 160) (432 -4016 160) (432 -4016 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[-1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350773" + "plane" "(432 -4184 160) (384 -4184 160) (384 -4184 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350772" + "plane" "(432 -4016 160) (432 -4184 160) (432 -4184 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222495" + side + { + "id" "380561" + "plane" "(432 -4688 160) (1008 -4688 160) (1008 -4509 160)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[0 1 0 60] 0.125" + "vaxis" "[1 0 0 -332] 0.125" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "380560" + "plane" "(1008 -4509 162) (1008 -4509 160) (1008 -4688 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380559" + "plane" "(1008 -4688 162) (1008 -4688 160) (432 -4688 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "380558" + "plane" "(432 -4509 162) (432 -4509 160) (1008 -4509 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[-1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380557" + "plane" "(432 -4688 162) (432 -4688 160) (432 -4509 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" "380556" + "plane" "(432 -4509 162) (1008 -4509 162) (1008 -4688 162)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5079591" + side + { + "id" "350753" + "plane" "(560 -4509 208) (432 -4509 208) (432 -4183 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" "350752" + "plane" "(560 -4183 160) (432 -4183 160) (432 -4509 160)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 60] 0.125" + "vaxis" "[0 -1 0 -332] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "350751" + "plane" "(432 -4183 160) (560 -4183 160) (560 -4183 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" "350750" + "plane" "(560 -4509 160) (432 -4509 160) (432 -4509 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" "350749" + "plane" "(560 -4183 160) (560 -4509 160) (560 -4509 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350748" + "plane" "(432 -4509 160) (432 -4183 160) (432 -4183 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222506" + side + { + "id" "380585" + "plane" "(432 -4184 160) (1008 -4184 160) (1008 -4016 160)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[0 1 0 60] 0.125" + "vaxis" "[1 0 0 -332] 0.125" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "380584" + "plane" "(1008 -4016 162) (1008 -4016 160) (1008 -4184 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380583" + "plane" "(432 -4016 162) (432 -4016 160) (1008 -4016 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380582" + "plane" "(1008 -4184 162) (1008 -4184 160) (432 -4184 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380581" + "plane" "(432 -4184 162) (432 -4184 160) (432 -4016 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" "380580" + "plane" "(432 -4016 162) (1008 -4016 162) (1008 -4184 162)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222475" + side + { + "id" "380519" + "plane" "(432 -4509 208) (1008 -4509 208) (1008 -4688 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" "380518" + "plane" "(1008 -4688 206) (1008 -4688 208) (1008 -4509 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380517" + "plane" "(432 -4688 206) (432 -4688 208) (1008 -4688 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "380516" + "plane" "(1008 -4509 206) (1008 -4509 208) (432 -4509 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[-1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380515" + "plane" "(432 -4509 206) (432 -4509 208) (432 -4688 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" "380514" + "plane" "(432 -4688 206) (1008 -4688 206) (1008 -4509 206)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222501" + side + { + "id" "380573" + "plane" "(848 -4509 160) (1008 -4509 160) (1008 -4184 160)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 60] 0.125" + "vaxis" "[0 -1 0 -332] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "380572" + "plane" "(1008 -4184 162) (1008 -4184 160) (1008 -4509 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380571" + "plane" "(848 -4184 162) (848 -4184 160) (1008 -4184 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" "380570" + "plane" "(1008 -4509 162) (1008 -4509 160) (848 -4509 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" "380569" + "plane" "(848 -4509 162) (848 -4509 160) (848 -4184 160)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380568" + "plane" "(848 -4184 162) (1008 -4184 162) (1008 -4509 162)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222488" + side + { + "id" "380543" + "plane" "(432 -4016 208) (1008 -4016 208) (1008 -4184 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" "380542" + "plane" "(1008 -4184 206) (1008 -4184 208) (1008 -4016 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380541" + "plane" "(1008 -4016 206) (1008 -4016 208) (432 -4016 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380540" + "plane" "(432 -4184 206) (432 -4184 208) (1008 -4184 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380539" + "plane" "(432 -4016 206) (432 -4016 208) (432 -4184 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" "380538" + "plane" "(432 -4184 206) (1008 -4184 206) (1008 -4016 206)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222494" + side + { + "id" "380555" + "plane" "(1008 -4509 206) (1008 -4509 162) (1008 -4688 162)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380554" + "plane" "(1008 -4688 206) (1008 -4688 162) (432 -4688 162)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "380553" + "plane" "(432 -4509 206) (432 -4509 162) (1008 -4509 162)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[-1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380552" + "plane" "(432 -4688 206) (432 -4688 162) (432 -4509 162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380551" + "plane" "(432 -4509 206) (1008 -4509 206) (1008 -4688 206)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380550" + "plane" "(432 -4688 162) (1008 -4688 162) (1008 -4509 162)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222500" + side + { + "id" "380567" + "plane" "(1008 -4184 206) (1008 -4184 162) (1008 -4509 162)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 375.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380566" + "plane" "(848 -4184 206) (848 -4184 162) (1008 -4184 162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380565" + "plane" "(1008 -4509 206) (1008 -4509 162) (848 -4509 162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380564" + "plane" "(848 -4509 206) (848 -4509 162) (848 -4184 162)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380563" + "plane" "(848 -4184 206) (1008 -4184 206) (1008 -4509 206)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380562" + "plane" "(848 -4509 162) (1008 -4509 162) (1008 -4184 162)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7222505" + side + { + "id" "380579" + "plane" "(1008 -4016 206) (1008 -4016 162) (1008 -4184 162)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 375.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380578" + "plane" "(432 -4016 206) (432 -4016 162) (1008 -4016 162)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[-1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380577" + "plane" "(1008 -4184 206) (1008 -4184 162) (432 -4184 162)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 -8] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380576" + "plane" "(432 -4184 206) (432 -4184 162) (432 -4016 162)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380575" + "plane" "(432 -4016 206) (1008 -4016 206) (1008 -4184 206)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "380574" + "plane" "(432 -4184 162) (1008 -4184 162) (1008 -4016 162)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -14768]" + } +} +hidden +{ + entity + { + "id" "4615678" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1047.06 -5819 1.20892" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "4615708" + "classname" "func_detail" + solid + { + "id" "4615722" + side + { + "id" "343360" + "plane" "(1040 -5864 -0) (1040 -5880 -0) (1184 -5880 -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" "343359" + "plane" "(1040 -5880 -0) (1040 -5864 -0) (1040 -5864 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" "343358" + "plane" "(1184 -5864 -0) (1184 -5880 -0) (1184 -5880 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" "343357" + "plane" "(1040 -5864 -0) (1184 -5864 -0) (1184 -5864 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" "343356" + "plane" "(1184 -5880 -0) (1040 -5880 -0) (1040 -5880 20)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343355" + "plane" "(1040 -5880 20) (1040 -5864 20) (1184 -5864 20)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4615721" + side + { + "id" "343354" + "plane" "(1040 -5880 30) (1040 -5864 30) (1184 -5864 30)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343353" + "plane" "(1040 -5864 20) (1040 -5864 30) (1040 -5880 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343352" + "plane" "(1184 -5880 20) (1184 -5880 30) (1184 -5864 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343351" + "plane" "(1184 -5864 20) (1184 -5864 30) (1040 -5864 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343350" + "plane" "(1040 -5880 20) (1040 -5880 30) (1184 -5880 30)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 0 -1 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343349" + "plane" "(1040 -5864 20) (1040 -5880 20) (1184 -5880 20)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -10268]" + } +} +hidden +{ + entity + { + "id" "4615730" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1184 -5873 -17" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4615765" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1182 -5588 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "4615802" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1078.59 -5624.34 5.99998" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4615806" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1146.21 -5623.29 6" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4615810" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1108 -5619 6" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4615818" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1121.41 -5665.66 6" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4615822" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1092 -5671 5.99998" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4615830" + "classname" "prop_static" + "angles" "0 94 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1155.18 -5713.17 6.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "4615834" + "classname" "prop_static" + "angles" "0 94 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1081.32 -5747.36 6.24999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "4615838" + "classname" "prop_static" + "angles" "0 149 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1111 -5678 6.24999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "4615850" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/palmetto_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1107 -5674 18.452" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "4615858" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "1515 -5887 323.962" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_4" + "sides" "390618 390631 390637" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -128 0" + "uv1" "-64 128 0" + "uv2" "64 128 0" + "uv3" "64 -128 0" + "origin" "1515 -5887 323.962" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -8268]" + } +} +entity +{ + "id" "4615870" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-1 -0 -0" + "BasisOrigin" "1181 -5218.43 358" + "BasisU" "-0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "390525" + "StartU" "1" + "StartV" "0" + "uv0" "-128 -64 0" + "uv1" "-128 64 0" + "uv2" "128 64 0" + "uv3" "128 -64 0" + "origin" "1181 -5218.43 358" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -7768]" + } +} +entity +{ + "id" "4615902" + "classname" "ambient_generic" + "cspinup" "0" + "fadeinsecs" "0" + "fadeoutsecs" "0" + "health" "3" + "lfomodpitch" "0" + "lfomodvol" "0" + "lforate" "0" + "lfotype" "0" + "message" "ambient/animal/bird10.wav" + "pitch" "100" + "pitchstart" "100" + "preset" "0" + "radius" "128" + "spawnflags" "48" + "spindown" "0" + "spinup" "0" + "targetname" "birds.mid" + "volstart" "0" + "origin" "1775.09 -3744.63 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4615944" + "classname" "trigger_multiple" + "origin" "1773.5 -3751 8" + "spawnflags" "4097" + "StartDisabled" "0" + "wait" "1" + connections + { + "OnEndTouch" "birds.midPlaySound0-1" + } + solid + { + "id" "4615941" + side + { + "id" "343384" + "plane" "(1725 -3690 16) (1822 -3690 16) (1822 -3812 16)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343383" + "plane" "(1725 -3812 0) (1822 -3812 0) (1822 -3690 0)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343382" + "plane" "(1725 -3690 16) (1725 -3812 16) (1725 -3812 0)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343381" + "plane" "(1822 -3690 0) (1822 -3812 0) (1822 -3812 16)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343380" + "plane" "(1822 -3690 16) (1725 -3690 16) (1725 -3690 0)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343379" + "plane" "(1822 -3812 0) (1725 -3812 0) (1725 -3812 16)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -6268]" + } +} +entity +{ + "id" "4615994" + "classname" "ambient_generic" + "cspinup" "0" + "fadeinsecs" "0" + "fadeoutsecs" "0" + "health" "1" + "lfomodpitch" "0" + "lfomodvol" "0" + "lforate" "0" + "lfotype" "0" + "message" "ambient/tones/lab_loop1.wav" + "pitch" "100" + "pitchstart" "100" + "preset" "0" + "radius" "300" + "spawnflags" "48" + "spindown" "0" + "spinup" "0" + "targetname" "drone.under" + "volstart" "0" + "origin" "-300 -3950 -216" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "4616017" + "classname" "trigger_multiple" + "origin" "-335 -3962.5 -216" + "spawnflags" "4097" + "StartDisabled" "0" + "wait" "1" + connections + { + "OnTouching" "drone.underPlaySound0-1" + } + solid + { + "id" "4616015" + side + { + "id" "343396" + "plane" "(-379 -4100 -208) (-379 -3825 -208) (-291 -3825 -208)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343395" + "plane" "(-379 -3825 -224) (-379 -4100 -224) (-291 -4100 -224)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343394" + "plane" "(-379 -4100 -224) (-379 -3825 -224) (-379 -3825 -208)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343393" + "plane" "(-291 -3825 -224) (-291 -4100 -224) (-291 -4100 -208)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343392" + "plane" "(-379 -3825 -224) (-291 -3825 -224) (-291 -3825 -208)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343391" + "plane" "(-291 -4100 -224) (-379 -4100 -224) (-379 -4100 -208)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -5268]" + } +} +entity +{ + "id" "4616071" + "classname" "ambient_generic" + "cspinup" "0" + "fadeinsecs" "0" + "fadeoutsecs" "0" + "health" "1" + "lfomodpitch" "0" + "lfomodvol" "0" + "lforate" "0" + "lfotype" "0" + "message" "ambient/inferno/bees_01.wav" + "pitch" "100" + "pitchstart" "100" + "preset" "0" + "radius" "78" + "spawnflags" "48" + "spindown" "0" + "spinup" "0" + "targetname" "bees.bin" + "volstart" "0" + "origin" "-954.6 -4706.17 40" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "4616086" + "classname" "trigger_multiple" + "origin" "-939.5 -4706.5 40" + "spawnflags" "4097" + "StartDisabled" "0" + "wait" "1" + connections + { + "OnTouching" "bees.binPlaySound0-1" + } + solid + { + "id" "4616084" + side + { + "id" "343408" + "plane" "(-1004 -4628 48) (-875 -4628 48) (-875 -4785 48)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343407" + "plane" "(-1004 -4785 32) (-875 -4785 32) (-875 -4628 32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343406" + "plane" "(-1004 -4628 48) (-1004 -4785 48) (-1004 -4785 32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343405" + "plane" "(-875 -4628 32) (-875 -4785 32) (-875 -4785 48)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343404" + "plane" "(-875 -4628 48) (-1004 -4628 48) (-1004 -4628 32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343403" + "plane" "(-875 -4785 32) (-1004 -4785 32) (-1004 -4785 48)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -4268]" + } +} +entity +{ + "id" "4597882" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-182 -2393 25.9925" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "4597887" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-182 -2302 25.9925" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "4597897" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-724 -2339 64.5663" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "4597907" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1097 -2344 69.3159" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "4597965" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1073 -2690 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_assault/assault_grate_decal02" + "sides" "368635" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "1073 -2690 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "4597980" + "classname" "prop_static" + "angles" "0 92 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1106 -2786 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4598003" + "classname" "prop_static" + "angles" "0 323.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/trash_b/hr_food_pile_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1279 -3398 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4598007" + "classname" "prop_static" + "angles" "0 231.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1294.34 -3407.19 16.2389" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4583285" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_sign001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "77 -6000 214" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4583331" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_sign002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-74 -5578 192.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566385" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-131 -2912 359.031" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4566413" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-45.1297 -2912 359" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4566425" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-227.968 -2912 359" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4566462" + "classname" "prop_static" + "angles" "-0.999994 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1567 -4992 173" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566526" + "classname" "prop_static" + "angles" "-0.999994 93 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1302 -5504 152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566530" + "classname" "prop_static" + "angles" "-0.999994 84.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1312 -5504 152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566570" + "classname" "prop_static" + "angles" "-0.999994 84.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1856.62 -5504 179" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566574" + "classname" "prop_static" + "angles" "-0.999994 93 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1846.62 -5504 179" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566610" + "classname" "prop_static" + "angles" "-0.999994 84.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2102.29 -5504 179" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566614" + "classname" "prop_static" + "angles" "-0.999994 93 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2092.29 -5504 179" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566626" + "classname" "prop_static" + "angles" "-0.999994 84.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1512 -5504 152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566630" + "classname" "prop_static" + "angles" "-0.999994 93 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1502 -5504 152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566666" + "classname" "prop_static" + "angles" "-0.999994 278.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2069 -4280 167.847" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566670" + "classname" "prop_static" + "angles" "-0.999994 248 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2060 -4280 167.847" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566682" + "classname" "prop_static" + "angles" "-0.999994 22.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1596.82 -4946 163.085" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566686" + "classname" "prop_static" + "angles" "-0.999994 357 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1599 -4954.73 163.085" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566718" + "classname" "prop_static" + "angles" "-0.999994 357 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1554 -4758.73 163.974" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566722" + "classname" "prop_static" + "angles" "-0.999994 22.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1551.82 -4750 163.974" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566750" + "classname" "prop_static" + "angles" "-0.999994 357 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1424 -4526 151.661" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566754" + "classname" "prop_static" + "angles" "-0.999994 11.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1424 -4516 151.661" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566790" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "18 -4112 74.0864" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566814" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "7 -4112 75.6855" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566834" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-366 -4112 78.1238" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4566838" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-355 -4112 76.5247" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567338" + "classname" "prop_static" + "angles" "0 25.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-632.735 -4602 170.401" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567342" + "classname" "prop_static" + "angles" "0 25.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-628 -4611.93 172" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567386" + "classname" "prop_static" + "angles" "0 359 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-640.192 -4349 178.059" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567390" + "classname" "prop_static" + "angles" "0 359 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-640 -4338 176.46" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567434" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-476 -3808 -88" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567438" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-464 -3808 -88.2878" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567598" + "classname" "prop_static" + "angles" "0 308.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-919 -2912 147.941" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567610" + "classname" "prop_static" + "angles" "0 132 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-368 -3168 156" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567642" + "classname" "prop_static" + "angles" "-0.999994 320 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-520 -1936 143.843" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567698" + "classname" "prop_static" + "angles" "-1.07156 57.8023 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1164 -2897 126.286" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567726" + "classname" "prop_static" + "angles" "-1.07156 116.302 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1170 -2897 126.286" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567754" + "classname" "prop_static" + "angles" "-0.999994 81 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "141 -2896 96.9499" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567770" + "classname" "prop_static" + "angles" "-0.999994 96.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "130 -2896 96.9499" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567782" + "classname" "prop_static" + "angles" "-0.999994 272.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "32 -1936 125.715" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567786" + "classname" "prop_static" + "angles" "-0.999994 258 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "22 -1936 125.715" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567822" + "classname" "prop_static" + "angles" "-0.999994 94 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2514 -3777.26 114.77" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567826" + "classname" "prop_static" + "angles" "-0.999994 79.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2524 -3777 114.77" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567854" + "classname" "prop_static" + "angles" "-0.999994 94 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2146 -3055.26 178" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567858" + "classname" "prop_static" + "angles" "-0.999994 79.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2156 -3055 178" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567878" + "classname" "prop_static" + "angles" "-0.999994 94 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2226 -3775.26 155.206" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4567882" + "classname" "prop_static" + "angles" "-0.999994 79.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/speaker001.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2236 -3775 155.206" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4568121" + "classname" "prop_static" + "angles" "0 107 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/table_cafeteria.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1692.38 -5439.77 34.2874" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4568125" + "classname" "prop_static" + "angles" "0 103.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1640.77 -5428.19 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4568129" + "classname" "prop_static" + "angles" "0 185 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1698.03 -5405.62 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4568133" + "classname" "prop_static" + "angles" "0 20.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1678.77 -5480.19 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4568141" + "classname" "prop_static" + "angles" "0 107 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/table_cafeteria.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1718.61 -5645.58 34.2874" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4568145" + "classname" "prop_static" + "angles" "0 103.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1667 -5634 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4568149" + "classname" "prop_static" + "angles" "0 185 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1724.26 -5611.43 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4568153" + "classname" "prop_static" + "angles" "0 20.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1705 -5686 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4568157" + "classname" "prop_static" + "angles" "0 288.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1764 -5659 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "4568209" + "classname" "prop_static" + "angles" "0 359 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001.mdl" + "renderamt" "255" + "rendercolor" "2 73 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-947.525 -6058.12 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "4568213" + "classname" "prop_static" + "angles" "0 359 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-954 -6028 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "4568217" + "classname" "prop_static" + "angles" "0 359 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-946.036 -6030.14 31.6974" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4568297" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-735.738 -6345 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568301" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-735 -6375.01 31.7643" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4568305" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-735.738 -6345 -47.7499" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568309" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-736.297 -6409 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568357" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-737 -6533 -47.5696" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568361" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-738 -6595 -47.5696" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568376" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-736 -6314 -47.5696" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568388" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-738 -6625 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568432" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-891.993 -5949 31.7643" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4568436" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-922 -5949.74 -47.7499" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568440" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-922 -5949.74 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568444" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-858.002 -5950.3 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568448" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-734 -5951 -47.5696" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4568510" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1128 -5344 245" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4568545" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1240 -5344 245" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4568573" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_wires/dust_wires_01_attachment_light_nowires.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1346 -5343 245" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4568589" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_lights/dust_street_lamp_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2608 -6176 333" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4568636" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_lights/dust_street_lamp_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2423 -6176 333" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4568644" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_lights/dust_street_lamp_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2258 -6176 333" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4568664" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_lights/dust_street_lamp_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1512.18 -5888 333" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4568668" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_lights/dust_street_lamp_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1677.18 -5888 333" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4568672" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_lights/dust_street_lamp_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1862.18 -5888 333" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4568692" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2729.22 -8392.68 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "4568728" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-332 -7745 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4568732" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-361.643 -7720.72 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "4568736" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-332 -7696 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4568740" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-388 -7697 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4568744" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-389 -7745 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "4551625" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8394.06 8786.89 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4551662" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8562.38 8634.61 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4551666" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8567.04 8746.78 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4551670" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8566.63 8548.07 5152.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4551712" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_256.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2228 -6145 383" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4551797" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_512.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2752 -6172 383" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4551821" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_corner_002.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2228 -6172 382.867" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4551837" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_16.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2228 -6161 383" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4551894" + "classname" "prop_static" + "angles" "0 270 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2223.75 -5983.2 317.247" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4551898" + "classname" "prop_static" + "angles" "0 270 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2224 -6073 317.247" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4551945" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-1 0 0" + "BasisOrigin" "2224 -5981 237.5" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "0.851562" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "390694 390700 390670" + "StartU" "0.195312" + "StartV" "0" + "uv0" "-25 -54.5 0" + "uv1" "-25 54.5 0" + "uv2" "25 54.5 0" + "uv3" "25 -54.5 0" + "origin" "2224 -5981 237.5" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "4551981" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-1 0 0" + "BasisOrigin" "2224 -6066 278.794" + "BasisU" "0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "390700 390694" + "StartU" "0.265626" + "StartV" "0" + "uv0" "-34.0001 -64 0" + "uv1" "-34.0001 64 0" + "uv2" "34.0001 64 0" + "uv3" "34.0001 -64 0" + "origin" "2224 -6066 278.794" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "4552077" + "classname" "func_detail" + solid + { + "id" "4552065" + side + { + "id" "342258" + "plane" "(448.368 -4980.47 152) (406.312 -4994.76 152) (367.688 -5017.98 152)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342257" + "plane" "(493 -4976 160) (537.631 -4980.47 160) (579.688 -4994.76 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342256" + "plane" "(493 -4976 152) (537.631 -4980.47 152) (537.631 -4980.47 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.995331 0.096523 0 253.083] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342255" + "plane" "(537.631 -4980.47 152) (579.688 -4994.76 152) (579.688 -4994.76 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342254" + "plane" "(579.688 -4994.76 152) (618.312 -5017.98 152) (618.312 -5017.98 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342253" + "plane" "(618.312 -5017.98 152) (650.927 -5049.24 152) (650.927 -5049.24 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.732677 -0.680577 0 -125.508] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342252" + "plane" "(650.927 -5049.24 152) (677.534 -5086.75 152) (677.534 -5086.75 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.59059 -0.806972 0 -325.492] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342251" + "plane" "(677.534 -5086.75 152) (695.559 -5128.73 152) (695.559 -5128.73 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.405058 -0.914291 0 -509.48] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342250" + "plane" "(695.559 -5128.73 152) (705 -5174.28 152) (705 -5174.28 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.209136 -0.977886 0 -352.113] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342249" + "plane" "(705 -5174.28 152) (705 -5220.72 152) (705 -5220.72 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -397.891] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342248" + "plane" "(705 -5220.72 152) (695.559 -5266.27 152) (695.559 -5266.27 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.209136 -0.977886 0 -74.0273] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342247" + "plane" "(695.559 -5266.27 152) (677.534 -5308.25 152) (677.534 -5308.25 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.405062 -0.914289 0 -154.367] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342246" + "plane" "(677.534 -5308.25 152) (650.927 -5345.76 152) (650.927 -5345.76 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.590585 -0.806975 0 -48.1094] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342245" + "plane" "(650.927 -5345.76 152) (618.312 -5377.02 152) (618.312 -5377.02 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.732677 -0.680577 0 -8.875] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342244" + "plane" "(618.312 -5377.02 152) (579.688 -5400.24 152) (579.688 -5400.24 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.864016 -0.503464 0 -500.24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342243" + "plane" "(579.688 -5400.24 152) (537.631 -5414.53 152) (537.631 -5414.53 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.94982 -0.312798 0 -165.96] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342242" + "plane" "(537.631 -5414.53 152) (493 -5419 152) (493 -5419 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" "342241" + "plane" "(493 -5419 152) (448.368 -5414.53 152) (448.368 -5414.53 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" "342240" + "plane" "(448.368 -5414.53 152) (406.312 -5400.24 152) (406.312 -5400.24 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" "342239" + "plane" "(406.312 -5400.24 152) (367.688 -5377.02 152) (367.688 -5377.02 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.864016 0.503464 0 480.765] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342238" + "plane" "(367.688 -5377.02 152) (335.073 -5345.76 152) (335.073 -5345.76 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.732677 0.680577 0 18.0293] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342237" + "plane" "(335.073 -5345.76 152) (308.466 -5308.25 152) (308.466 -5308.25 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.590585 0.806975 0 304.598] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342236" + "plane" "(308.466 -5308.25 152) (290.441 -5266.27 152) (290.441 -5266.27 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.405061 0.914289 0 437.223] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342235" + "plane" "(290.441 -5266.27 152) (281 -5220.72 152) (281 -5220.72 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.209136 0.977886 0 409.746] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342234" + "plane" "(281 -5220.72 152) (281 -5174.28 152) (281 -5174.28 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 375.828] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342233" + "plane" "(281 -5174.28 152) (290.441 -5128.73 152) (290.441 -5128.73 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.209136 0.977886 0 147.43] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342232" + "plane" "(290.441 -5128.73 152) (308.466 -5086.75 152) (308.466 -5086.75 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.405058 0.914291 0 73.7188] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342231" + "plane" "(308.466 -5086.75 152) (335.073 -5049.24 152) (335.073 -5049.24 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.59059 0.806972 0 169.438] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342230" + "plane" "(335.073 -5049.24 152) (367.688 -5017.98 152) (367.688 -5017.98 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.732677 0.680577 0 511.215] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342229" + "plane" "(367.688 -5017.98 152) (406.312 -4994.76 152) (406.312 -4994.76 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.864016 0.503464 0 344.982] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342228" + "plane" "(406.312 -4994.76 152) (448.368 -4980.47 152) (448.368 -4980.47 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.94982 0.312798 0 237.54] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342227" + "plane" "(448.368 -4980.47 152) (493 -4976 152) (493 -4976 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.995331 0.096523 0 246.436] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +hidden +{ + entity + { + "id" "4522059" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "321 -6506.74 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522075" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "321 -6348.03 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522083" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "324 -6209.24 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522091" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "872.081 -6507 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522147" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "870.275 -6348 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522175" + "classname" "prop_static" + "angles" "0 180 180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1154.23 -6507 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522187" + "classname" "prop_static" + "angles" "0 180 180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1141.51 -6348 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522199" + "classname" "prop_static" + "angles" "0 180 180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1154 -5943.13 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522211" + "classname" "prop_static" + "angles" "0 180 180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "851.935 -5943 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522223" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "473.861 -5943 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522231" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "175.873 -5943 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522356" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-817 -3506 79" + editor + { + "color" "224 169 0" + "groupid" "4522384" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522364" + "classname" "prop_static" + "angles" "0 180 -90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-537 -3506 79" + editor + { + "color" "224 169 0" + "groupid" "4522384" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522386" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-677 -3706 79" + editor + { + "color" "224 169 0" + "groupid" "4522385" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522390" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-817 -3706 79" + editor + { + "color" "224 169 0" + "groupid" "4522385" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522394" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-537 -3706 79" + editor + { + "color" "224 169 0" + "groupid" "4522385" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4522462" + "classname" "prop_static" + "angles" "0 55.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-955 -4706.12 29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4522478" + "classname" "prop_static" + "angles" "0 334.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-513 -3726 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4522507" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/transformer_yard_powerbox/transformer_yard_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-59 -3787 49.4078" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "4522572" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "481.569 -6410.16 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain007a" + "sides" "336440" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "481.569 -6410.16 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "4522578" + "classname" "info_overlay" + "angles" "0 265.5 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "768.999 -6540.99 0" + "BasisU" "-0.078459 -0.996917 0" + "BasisV" "0.996917 -0.078459 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain007a" + "sides" "336440" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "769 -6541 1.52588e-05" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "4522602" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "417.315 -6296.27 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate010a" + "sides" "336440" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "417.315 -6296.27 -3.05176e-05" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "4522614" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "417 -6317 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate010a" + "sides" "336440" + "StartU" "0" + "StartV" "1" + "uv0" "-8 -8 0" + "uv1" "-8 8 0" + "uv2" "8 8 0" + "uv3" "8 -8 0" + "origin" "417 -6317 -1.52588e-05" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "4522638" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "226.573 -6455.5 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_damage_1" + "sides" "336332" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "226.573 -6455.5 3.05176e-05" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "4522644" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "266.184 -6002.33 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_1" + "sides" "336374" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -128 0" + "uv1" "-64 128 0" + "uv2" "64 128 0" + "uv3" "64 -128 0" + "origin" "266.184 -6002.33 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "4522650" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "693.385 -5984.97 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_1" + "sides" "336374" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -128 0" + "uv1" "-64 128 0" + "uv2" "64 128 0" + "uv3" "64 -128 0" + "origin" "693.385 -5984.97 1.52588e-05" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "4522800" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2765 -4142 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4522812" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2762 -4220 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "4522816" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "2560.47 -3839.61 -16" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "339145" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "2560.47 -3839.61 -16" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "4522822" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "2504.57 -3841.4 -16" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "339145" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "2504.57 -3841.4 -16" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +entity +{ + "id" "4522831" + "classname" "func_detail" + solid + { + "id" "4522828" + side + { + "id" "342044" + "plane" "(2185 -4161 0) (2217 -4161 0) (2217 -4208 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 -1 0 58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342043" + "plane" "(2185 -4208 -16) (2217 -4208 -16) (2217 -4161 -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" "342042" + "plane" "(2185 -4161 0) (2185 -4208 0) (2185 -4208 -16)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[0 1 0 -60] 0.125" + "vaxis" "[0 0 -1 58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342041" + "plane" "(2217 -4161 -16) (2217 -4208 -16) (2217 -4208 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" "342040" + "plane" "(2217 -4161 0) (2185 -4161 0) (2185 -4161 -16)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -60] 0.125" + "vaxis" "[0 0 -1 58] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342039" + "plane" "(2217 -4208 -16) (2185 -4208 -16) (2185 -4208 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14768]" + } +} +hidden +{ + entity + { + "id" "4522849" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_straight_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "360 -3408 219" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4522857" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_straight_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "360 -3387 219" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4522885" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "576 -3450 222" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4522957" + "classname" "prop_static" + "angles" "0 270 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2792 -3983 451.026" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4522977" + "classname" "prop_static" + "angles" "0 270 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2792 -3919 451.026" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4522993" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-1 -0 -0" + "BasisOrigin" "2792 -3951 380" + "BasisU" "-0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "349243" + "StartU" "0.492187" + "StartV" "0" + "uv0" "-62.9999 -64 0" + "uv1" "-62.9999 64 0" + "uv2" "62.9999 64 0" + "uv3" "62.9999 -64 0" + "origin" "2792 -3951 380" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +hidden +{ + entity + { + "id" "4523037" + "classname" "prop_static" + "angles" "0 179.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/treeline_skybox01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8934 7064 5151" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523069" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8765.73 7536.46 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523073" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8844 7651 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523094" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8926.35 8101.77 5151.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523098" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8996.02 8105.42 5151" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523102" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9081 8098 5151.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523106" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8930.35 8047.77 5151.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523110" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8996 8051.42 5151" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523114" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9081 8044 5151" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523135" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9295.47 8356.71 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523139" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9314.74 8350.35 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523143" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9283.46 8438.17 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523147" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9301.48 8415.58 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523151" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9320.75 8409.23 5152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4523207" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/treeline_skybox01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "7241 8864 5163.67" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4507910" + "classname" "prop_static" + "angles" "0 135 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/trash_b/hr_food_pile.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-966 -4673 32.0203" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4507914" + "classname" "prop_static" + "angles" "0 71 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/trash_b/hr_food_pile_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-949.277 -4731.27 32.0203" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4493275" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_ceiling_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "132.392 -4777 163" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "4493298" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "131.104 -4777 149" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +entity +{ + "id" "4493319" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 251 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "130.114 -4777 141" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "4493344" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "131.333 -4778 109" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "4493384" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_ceiling_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-244.06 -4809 163" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4493442" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_exit_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-729 -3168 142.538" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +entity +{ + "id" "4493511" + "classname" "func_detail" + solid + { + "id" "4493512" + side + { + "id" "341834" + "plane" "(305 -4757 143.364) (304.129 -4757 143.364) (300.069 -4747.78 143.364)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 -11] 0.25" + "vaxis" "[0 -1 0 -26.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341833" + "plane" "(305 -4757.01 140.364) (304.129 -4757.01 140.364) (304.129 -4757.01 143.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 -20.5928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341832" + "plane" "(300.072 -4747.79 140.364) (300.072 -4747.79 143.364) (304.127 -4757 143.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -10.2298] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341831" + "plane" "(296.81 -4734.81 140.364) (296.81 -4734.81 143.364) (300.073 -4747.79 143.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -7.08057] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341830" + "plane" "(296 -4720 140.364) (296 -4720 143.364) (296.81 -4734.82 143.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -8.74087] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341829" + "plane" "(297 -4705 140.364) (297 -4705 143.364) (296 -4720.01 143.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -22.5922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341828" + "plane" "(300.019 -4691.99 140.364) (300.019 -4691.99 143.364) (297 -4705.01 143.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -25.5509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341827" + "plane" "(304.119 -4683 140.364) (304.119 -4683 143.364) (300.016 -4691.99 143.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -23.7961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341826" + "plane" "(305 -4683.01 143.364) (304.117 -4683.01 143.364) (304.117 -4683.01 140.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 -29.4928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341825" + "plane" "(305 -4683 140.364) (304.121 -4683 140.364) (300.015 -4692 140.364)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341824" + "plane" "(305 -4757 140.364) (305 -4757 143.364) (305 -4683.01 143.364)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4493513" + side + { + "id" "341845" + "plane" "(303.242 -4755 64.3643) (300.074 -4747.79 64.3643) (300.054 -4747.74 140.364)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.402224 -0.915541 0 422.418] 0.13" + "vaxis" "[0 0 -1 736.46] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341844" + "plane" "(300.058 -4747.75 140.364) (300.078 -4747.81 64.3643) (296.81 -4734.81 64.3643)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.243856 -0.969811 0 -170.047] 0.13" + "vaxis" "[0 0 -1 739.261] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341843" + "plane" "(296.81 -4734.83 140.364) (296.809 -4734.8 64.3643) (296 -4720.01 64.3643)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.0545778 -0.998509 0 -283.18] 0.13" + "vaxis" "[0 0 -1 739.957] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341842" + "plane" "(296 -4719.99 140.364) (296 -4720 64.3643) (297 -4705 64.3643)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[-0.0665338 -0.997784 0 -497.02] 0.13" + "vaxis" "[0 0 -1 739.968] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341841" + "plane" "(297 -4705 140.364) (297 -4704.99 64.3643) (300 -4692 64.3643)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[-0.224971 -0.974365 0 -313.182] 0.13" + "vaxis" "[0 0 -1 740.131] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341840" + "plane" "(300 -4692 140.364) (300 -4692 64.3643) (303.22 -4685.01 64.3643)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[-0.418189 -0.90836 0 467] 0.13" + "vaxis" "[0 0 -1 740] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341839" + "plane" "(305 -4685 64.3643) (303.221 -4685 64.3643) (300 -4692 64.3643)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341838" + "plane" "(303.244 -4755 140.364) (300.059 -4747.75 140.364) (296.812 -4734.84 140.364)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341837" + "plane" "(303.219 -4685.01 140.364) (303.219 -4685.01 64.3643) (305 -4685.01 64.3643)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341836" + "plane" "(305 -4755.01 64.3643) (303.246 -4755.01 64.3643) (303.25 -4755.01 140.364)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341835" + "plane" "(305 -4685.01 64.3643) (305 -4755.01 64.3643) (305 -4755.01 140.364)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 59] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4493514" + side + { + "id" "341851" + "plane" "(303.215 -4685 64.3643) (304.134 -4683 64.3643) (304.134 -4683 140.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -23.7961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341850" + "plane" "(304.129 -4683.01 140.364) (304.129 -4683.01 64.3643) (305 -4683.01 64.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 -14.3512] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341849" + "plane" "(305 -4683 64.3643) (304.135 -4683 64.3643) (303.213 -4685.01 64.3643)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341848" + "plane" "(303.209 -4685 140.364) (304.129 -4683 140.364) (305 -4683 140.364)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341847" + "plane" "(305 -4685.01 64.3643) (303.211 -4685.01 64.3643) (303.211 -4685.01 140.364)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341846" + "plane" "(305 -4683 140.364) (305 -4683 64.3643) (305 -4685.01 64.3643)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4493515" + side + { + "id" "341857" + "plane" "(305 -4757.01 64.3643) (304.129 -4757.01 64.3643) (304.129 -4757.01 140.364)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 -25.7374] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341856" + "plane" "(304.129 -4757 140.364) (304.129 -4757 64.3643) (303.25 -4755.01 64.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -10.3392] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341855" + "plane" "(305 -4755 64.3643) (303.248 -4755 64.3643) (304.129 -4757 64.3643)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341854" + "plane" "(305 -4757 140.364) (304.129 -4757 140.364) (303.25 -4755.01 140.364)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341853" + "plane" "(303.25 -4755.01 140.364) (303.25 -4755.01 64.3643) (305 -4755.01 64.3643)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341852" + "plane" "(305 -4755 64.3643) (305 -4757 64.3643) (305 -4757 140.364)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4493516" + side + { + "id" "341868" + "plane" "(305 -4683 61.3643) (304.129 -4683 61.3643) (300 -4692.02 61.3643)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 21] 0.25" + "vaxis" "[0 -1 0 -2.57666] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341867" + "plane" "(305 -4757.01 61.3643) (304.129 -4757.01 61.3643) (304.129 -4757.01 64.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 -25.7374] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341866" + "plane" "(304.129 -4757 64.3643) (304.129 -4757 61.3643) (300.058 -4747.75 61.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -10.3392] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341865" + "plane" "(300.056 -4747.74 64.3643) (300.056 -4747.74 61.3643) (296.81 -4734.8 61.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -7.08057] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341864" + "plane" "(296.81 -4734.8 64.3643) (296.81 -4734.8 61.3643) (296 -4720 61.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -8.74087] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341863" + "plane" "(296 -4720 64.3643) (296 -4720 61.3643) (297 -4705 61.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -22.5922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341862" + "plane" "(297 -4705 64.3643) (297 -4705 61.3643) (300 -4692.02 61.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -25.5509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341861" + "plane" "(300 -4692.02 64.3643) (300 -4692.02 61.3643) (304.129 -4683.01 61.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0 1 0 -23.7961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341860" + "plane" "(304.13 -4683.01 64.3643) (304.13 -4683.01 61.3643) (305 -4683.01 61.3643)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 -29.4928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341859" + "plane" "(305 -4757 64.3643) (304.129 -4757 64.3643) (300.058 -4747.75 64.3643)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341858" + "plane" "(305 -4683.01 64.3643) (305 -4683.01 61.3643) (305 -4757 61.3643)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +hidden +{ + entity + { + "id" "4493751" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1196.2 -5229 400.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4493755" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1196 -5101 400.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4493759" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1196.2 -5364 400.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4493832" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-514.113 -7193.04 -36.5445" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "4493836" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-502.655 -7659.23 -36.5445" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "4493840" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-507.824 -7952.14 -36.5445" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "4493877" + "classname" "prop_static" + "angles" "0 73 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/trash_b/hr_food_pile.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1536 -5485 32.0203" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4493881" + "classname" "prop_static" + "angles" "0 296 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/trash_b/hr_food_pile_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1588 -5504 32.0203" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4479155" + "classname" "info_target" + "angles" "0 0 0" + "spawnflags" "0" + "targetname" "truck.ctspawn" + "origin" "1023 -6857 2" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "4479256" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1488 -4992 168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4479301" + "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/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "216 33 65" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1428 -4996 36.9018" + editor + { + "color" "108 197 0" + "groupid" "4479300" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4479305" + "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/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1428 -4992 64.0418" + editor + { + "color" "108 197 0" + "groupid" "4479300" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "4464316" + "classname" "env_soundscape" + "position2" "birds.tspawn" + "radius" "570" + "soundscape" "overpass.TSpawn" + "StartDisabled" "0" + "origin" "1077 -1882.52 1" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4464443" + "classname" "info_target" + "angles" "0 0 0" + "spawnflags" "0" + "targetname" "birds.tspawn" + "origin" "2061.03 -1542 50" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4464531" + "classname" "env_soundscape" + "position0" "truck.ctspawn" + "position2" "birds.ctspawn" + "radius" "570" + "soundscape" "overpass.TSpawn" + "StartDisabled" "0" + "origin" "347.871 -6515.32 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4464567" + "classname" "info_target" + "angles" "0 0 0" + "spawnflags" "0" + "targetname" "birds.ctspawn" + "origin" "2631 -6524.75 71" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4464590" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.ctinside" + "StartDisabled" "0" + "origin" "-94.9194 -6156.64 41.068" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4464657" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.ctinside" + "StartDisabled" "0" + "origin" "-65.1726 -5739.23 41.0681" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4464668" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "127 -4634 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -11768]" + } +} +entity +{ + "id" "4464724" + "classname" "env_soundscape" + "radius" "159" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "-1164.4 -2962.39 -192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -11768]" + } +} +entity +{ + "id" "4464736" + "classname" "env_soundscape" + "radius" "268" + "soundscape" "nuke.abomb" + "StartDisabled" "0" + "origin" "-1172.7 -2556.22 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -15768]" + } +} +entity +{ + "id" "4464759" + "classname" "env_soundscape" + "radius" "142" + "soundscape" "nuke.abomb" + "StartDisabled" "0" + "origin" "-509.361 -2806.06 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -15768]" + } +} +entity +{ + "id" "4464782" + "classname" "env_soundscape" + "radius" "142" + "soundscape" "nuke.abomb" + "StartDisabled" "0" + "origin" "365.797 -2546.28 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -15768]" + } +} +entity +{ + "id" "4464793" + "classname" "env_soundscape" + "radius" "235" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "-658.562 -3050.8 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -12268]" + } +} +entity +{ + "id" "4464805" + "classname" "env_soundscape" + "radius" "128" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "-53 -5562 40" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4464839" + "classname" "env_soundscape" + "radius" "128" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "118.935 -4796.35 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4464850" + "classname" "env_soundscape" + "radius" "108" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "76.2287 -6160.42 40" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4464862" + "classname" "env_soundscape" + "radius" "108" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "1098 -5227 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4464874" + "classname" "env_soundscape" + "radius" "128" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "-783.579 -3310.03 7.99998" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4464908" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "1226.7 -3029.89 24" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4464941" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "1449.68 -3015.82 24" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -11768]" + } +} +entity +{ + "id" "4464952" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "1918.56 -3313.73 24" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -11768]" + } +} +entity +{ + "id" "4464963" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "2226.84 -3636.83 21.8726" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -11768]" + } +} +entity +{ + "id" "4464974" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "1859 -4307 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -11768]" + } +} +entity +{ + "id" "4464985" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "1283 -5247 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -11768]" + } +} +entity +{ + "id" "4465019" + "classname" "env_soundscape" + "radius" "112" + "soundscape" "nuke.tunnel" + "StartDisabled" "0" + "origin" "1695 -4323 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 -11768]" + } +} +entity +{ + "id" "4465063" + "classname" "env_soundscape" + "radius" "108" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "1615.62 -4115.81 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4465074" + "classname" "env_soundscape" + "radius" "108" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "1856.78 -4083.27 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4465085" + "classname" "env_soundscape" + "radius" "187" + "soundscape" "nuke.tspawn" + "StartDisabled" "0" + "origin" "1920 -3642 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 2500]" + } +} +entity +{ + "id" "4450596" + "classname" "func_detail" + solid + { + "id" "5449546" + side + { + "id" "366271" + "plane" "(1616 -4504 0) (1616 -4536 0) (1952 -4536 0)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 288] 0.25" + "vaxis" "[0 1 0 288] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366270" + "plane" "(1952 -4504 144) (1952 -4504 0) (1952 -4536 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -300] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366269" + "plane" "(1616 -4536 144) (1616 -4536 0) (1616 -4504 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -172.004] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366268" + "plane" "(1952 -4536 144) (1952 -4536 0) (1616 -4536 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 276] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366267" + "plane" "(1616 -4504 144) (1616 -4504 0) (1952 -4504 0)" + "material" "CS_APOLLO/OUTSIDE/HUBBLE2" + "uaxis" "[-1 0 0 828.952] 0.328125" + "vaxis" "[0 0 -1 0] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366266" + "plane" "(1616 -4536 144) (1616 -4504 144) (1952 -4504 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5449545" + side + { + "id" "366265" + "plane" "(1952 -4504 160) (1952 -4504 144) (1952 -4536 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -300] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366264" + "plane" "(1616 -4536 160) (1616 -4536 144) (1616 -4504 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -172.004] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366263" + "plane" "(1952 -4536 160) (1952 -4536 144) (1616 -4536 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 276] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366262" + "plane" "(1616 -4504 160) (1616 -4504 144) (1952 -4504 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 271.637] 0.125" + "vaxis" "[0 0 -1 -127] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366261" + "plane" "(1616 -4536 160) (1616 -4504 160) (1952 -4504 160)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[-1 0 0 431] 0.125" + "vaxis" "[0 1 0 -57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "366260" + "plane" "(1616 -4504 144) (1616 -4536 144) (1952 -4536 144)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4450603" + "classname" "func_detail" + solid + { + "id" "3839840" + side + { + "id" "341706" + "plane" "(1151 -5378 0) (1151 -5390 0) (1183 -5390 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" "341705" + "plane" "(1151 -5390 16) (1151 -5390 0) (1151 -5378 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -1023.99] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341704" + "plane" "(1183 -5378 16) (1183 -5378 0) (1183 -5390 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" "341703" + "plane" "(1151 -5378 16) (1151 -5378 0) (1183 -5378 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341702" + "plane" "(1183 -5390 16) (1183 -5390 0) (1151 -5390 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -792] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341701" + "plane" "(1151 -5390 16) (1151 -5378 16) (1183 -5378 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839839" + side + { + "id" "341712" + "plane" "(1149 -5392 24) (1149 -5392 16) (1149 -5376 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -1 0 -617.99] 0.125" + "vaxis" "[0 0 -1 710] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341711" + "plane" "(1183 -5376 24) (1183 -5376 16) (1183 -5392 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" "341710" + "plane" "(1149 -5376 24) (1149 -5376 16) (1183 -5376 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 382] 0.125" + "vaxis" "[0 0 -1 710] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341709" + "plane" "(1183 -5392 24) (1183 -5392 16) (1149 -5392 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 0 -1 -826] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341708" + "plane" "(1149 -5392 24) (1149 -5376 24) (1183 -5376 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 382] 0.125" + "vaxis" "[0 1 0 517.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341707" + "plane" "(1149 -5376 16) (1149 -5392 16) (1183 -5392 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "4450632" + "classname" "func_detail" + solid + { + "id" "2084465" + side + { + "id" "341754" + "plane" "(-976 -6128 32) (-976 -5616 32) (-948 -5616 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" "341753" + "plane" "(-976 -5616 -48) (-976 -6128 -48) (-948 -6128 -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" "341752" + "plane" "(-976 -6128 -48) (-976 -5616 -48) (-976 -5616 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" "341751" + "plane" "(-948 -5616 -48) (-948 -6128 -48) (-948 -6128 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[0 1 0 -929] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341750" + "plane" "(-976 -5616 -48) (-948 -5616 -48) (-948 -5616 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" "341749" + "plane" "(-948 -6128 -48) (-976 -6128 -48) (-976 -6128 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "4421875" + "classname" "func_detail" + solid + { + "id" "4421876" + side + { + "id" "341417" + "plane" "(512.496 -5888 136) (512.496 -5888.87 136) (503.273 -5892.93 136)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -11] 0.25" + "vaxis" "[1 0 0 -26.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341416" + "plane" "(512.498 -5888 133) (512.498 -5888.87 133) (512.498 -5888.87 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -20.5928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341415" + "plane" "(503.275 -5892.93 133) (503.275 -5892.93 136) (512.498 -5888.87 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -10.2298] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341414" + "plane" "(490.31 -5896.19 133) (490.31 -5896.19 136) (503.275 -5892.93 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 0.243417 0 -7.08057] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341413" + "plane" "(475.49 -5897 133) (475.49 -5897 136) (490.314 -5896.19 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 0.0548161 0 -8.74087] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341412" + "plane" "(460.463 -5896 133) (460.463 -5896 136) (475.506 -5897 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 -0.0548161 0 -22.5922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341411" + "plane" "(447.553 -5893 133) (447.553 -5893 136) (460.482 -5896 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 -0.243417 0 -25.5509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341410" + "plane" "(438.498 -5888.88 133) (438.498 -5888.88 136) (447.545 -5893.01 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 -23.7961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341409" + "plane" "(438.498 -5888 136) (438.498 -5888.88 136) (438.498 -5888.88 133)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 -29.4928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341408" + "plane" "(438.498 -5888 133) (438.498 -5888.88 133) (447.556 -5893.01 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341407" + "plane" "(512.498 -5888 133) (512.498 -5888 136) (438.498 -5888 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4421877" + side + { + "id" "341428" + "plane" "(510.498 -5889.76 57) (503.305 -5892.92 57) (503.249 -5892.94 133)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.915315 0.402734 0 335] 0.13" + "vaxis" "[0 0 -1 706] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341427" + "plane" "(503.251 -5892.94 133) (503.306 -5892.92 57) (490.302 -5896.19 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.969864 0.243637 0 79.5898] 0.13" + "vaxis" "[0 0 -1 705.762] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341426" + "plane" "(490.308 -5896.19 133) (490.306 -5896.19 57) (475.491 -5897 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.998503 0.0546616 0 103.183] 0.13" + "vaxis" "[0 0 -1 705.611] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341425" + "plane" "(475.491 -5897 133) (475.496 -5897 57) (460.497 -5896 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.997783 -0.0665236 0 240.671] 0.13" + "vaxis" "[0 0 -1 706.308] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341424" + "plane" "(460.487 -5896 133) (460.487 -5896 57) (447.506 -5893 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.974315 -0.225177 0 294.533] 0.13" + "vaxis" "[0 0 -1 706] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341423" + "plane" "(447.5 -5893 133) (447.5 -5893 57) (440.498 -5889.78 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.908492 -0.417897 0 -23] 0.13" + "vaxis" "[0 0 -1 706] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341422" + "plane" "(440.498 -5888 57) (440.498 -5889.78 57) (447.502 -5893 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341421" + "plane" "(510.498 -5889.75 133) (503.26 -5892.94 133) (490.309 -5896.19 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341420" + "plane" "(440.498 -5889.78 133) (440.498 -5889.78 57) (440.498 -5888 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341419" + "plane" "(510.498 -5888 57) (510.498 -5889.76 57) (510.498 -5889.75 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341418" + "plane" "(440.498 -5888 57) (510.498 -5888 57) (510.498 -5888 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 59] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4421878" + side + { + "id" "341434" + "plane" "(440.502 -5889.79 57) (438.5 -5888.87 57) (438.5 -5888.87 133)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 -23.7961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341433" + "plane" "(438.498 -5888.87 133) (438.498 -5888.87 57) (438.498 -5888 57)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 -14.3512] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341432" + "plane" "(438.498 -5888 57) (438.498 -5888.87 57) (440.498 -5889.79 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341431" + "plane" "(440.498 -5889.79 133) (438.498 -5888.87 133) (438.498 -5888 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341430" + "plane" "(440.498 -5888 57) (440.498 -5889.79 57) (440.498 -5889.79 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341429" + "plane" "(438.498 -5888 133) (438.498 -5888 57) (440.498 -5888 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4421879" + side + { + "id" "341440" + "plane" "(512.498 -5888 57) (512.498 -5888.87 57) (512.498 -5888.87 133)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -25.7374] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341439" + "plane" "(512.498 -5888.87 133) (512.498 -5888.87 57) (510.498 -5889.75 57)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -10.3392] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341438" + "plane" "(510.498 -5888 57) (510.498 -5889.75 57) (512.496 -5888.87 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341437" + "plane" "(512.496 -5888 133) (512.496 -5888.87 133) (510.498 -5889.75 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341436" + "plane" "(510.498 -5889.75 133) (510.498 -5889.75 57) (510.498 -5888 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341435" + "plane" "(510.502 -5888 57) (512.496 -5888 57) (512.496 -5888 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4421880" + side + { + "id" "341451" + "plane" "(438.498 -5888 54) (438.498 -5888.87 54) (447.506 -5893 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 21] 0.25" + "vaxis" "[1 0 0 -2.57666] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341450" + "plane" "(512.498 -5888 54) (512.498 -5888.86 54) (512.498 -5888.86 57)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -25.7374] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341449" + "plane" "(512.498 -5888.87 57) (512.498 -5888.87 54) (503.245 -5892.94 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -10.3392] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341448" + "plane" "(503.251 -5892.94 57) (503.251 -5892.94 54) (490.295 -5896.19 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 0.243417 0 -7.08057] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341447" + "plane" "(490.301 -5896.19 57) (490.301 -5896.19 54) (475.495 -5897 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 0.0548161 0 -8.74087] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341446" + "plane" "(475.492 -5897 57) (475.492 -5897 54) (460.503 -5896 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 -0.0548161 0 -22.5922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341445" + "plane" "(460.494 -5896 57) (460.494 -5896 54) (447.514 -5893 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 -0.243417 0 -25.5509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341444" + "plane" "(447.512 -5893 57) (447.512 -5893 54) (438.498 -5888.87 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 -23.7961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341443" + "plane" "(438.498 -5888.87 57) (438.498 -5888.87 54) (438.498 -5888 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 -29.4928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341442" + "plane" "(512.496 -5888 57) (512.496 -5888.87 57) (503.251 -5892.94 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341441" + "plane" "(438.498 -5888 57) (438.498 -5888 54) (512.494 -5888 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +hidden +{ + entity + { + "id" "4422027" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-202 -5682 136.386" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4422048" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "98 -5639 132" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "4422346" + "classname" "func_detail" + solid + { + "id" "4422343" + side + { + "id" "341485" + "plane" "(-56 -3832 79) (-40 -3832 79) (-40 -4000 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341484" + "plane" "(-56 -4000 23) (-40 -4000 23) (-40 -3832 23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341483" + "plane" "(-56 -3832 79) (-56 -4000 79) (-56 -4000 23)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -536] 0.125" + "vaxis" "[0 0 -1 272] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341482" + "plane" "(-40 -3832 23) (-40 -4000 23) (-40 -4000 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341481" + "plane" "(-40 -3832 79) (-56 -3832 79) (-56 -3832 23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341480" + "plane" "(-40 -4000 23) (-56 -4000 23) (-56 -4000 79)" + "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" "4422397" + side + { + "id" "341510" + "plane" "(-56 -3832 87) (-40 -3832 87) (-40 -4000 87)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341511" + "plane" "(-56 -4000 79) (-40 -4000 79) (-40 -3832 79)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341512" + "plane" "(-56 -3832 87) (-56 -4000 87) (-56 -4000 79)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341513" + "plane" "(-40 -3832 79) (-40 -4000 79) (-40 -4000 87)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341514" + "plane" "(-40 -3832 87) (-56 -3832 87) (-56 -3832 79)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341515" + "plane" "(-40 -4000 79) (-56 -4000 79) (-56 -4000 87)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +hidden +{ + entity + { + "id" "4422364" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "321 -3929 27" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "4422380" + "classname" "func_detail" + solid + { + "id" "4422358" + side + { + "id" "341503" + "plane" "(368 -3832 67) (384 -3832 67) (384 -4000 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -698] 0.125" + "vaxis" "[0 -1 0 407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341502" + "plane" "(368 -4000 56) (384 -4000 56) (384 -3832 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341501" + "plane" "(368 -3832 67) (368 -4000 67) (368 -4000 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" "341500" + "plane" "(384 -3832 56) (384 -4000 56) (384 -4000 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 -698] 0.125" + "vaxis" "[0 0 -1 407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341499" + "plane" "(384 -3832 67) (368 -3832 67) (368 -3832 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" "341498" + "plane" "(384 -4000 56) (368 -4000 56) (368 -4000 67)" + "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" "4422340" + side + { + "id" "341509" + "plane" "(368 -3832 56) (384 -3832 56) (384 -4000 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341508" + "plane" "(368 -4000 0) (384 -4000 0) (384 -3832 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" "341507" + "plane" "(368 -3832 56) (368 -4000 56) (368 -4000 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" "341506" + "plane" "(384 -3832 0) (384 -4000 0) (384 -4000 56)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -536] 0.125" + "vaxis" "[0 0 -1 272] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341505" + "plane" "(384 -3832 56) (368 -3832 56) (368 -3832 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" "341504" + "plane" "(384 -4000 0) (368 -4000 0) (368 -4000 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +hidden +{ + entity + { + "id" "4422389" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "7 -3893 27" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4422436" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-63 -3727 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "4422440" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-56 -3667 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "4422444" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-63 -3607 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4422548" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "375 -3874 0.250015" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4422575" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "375 -3814 0.250015" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4422602" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-51 -3876 0.250015" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4422606" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-51 -3816 0.250015" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4422623" + "classname" "prop_static" + "angles" "0 265.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "120 -3913.99 41" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "4422631" + "classname" "prop_static" + "angles" "0 314.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "207 -3916 74" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "4422721" + "classname" "func_detail" + solid + { + "id" "4422718" + side + { + "id" "341599" + "plane" "(-80 -3832 224) (-80 -3312 224) (-64 -3312 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" "341598" + "plane" "(-80 -3312 160) (-80 -3832 160) (-64 -3848 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341597" + "plane" "(-80 -3832 160) (-80 -3312 160) (-80 -3312 224)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 1 0 -766] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "16777216" + } + side + { + "id" "341596" + "plane" "(-64 -3312 160) (-64 -3848 160) (-64 -3848 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" "341595" + "plane" "(-80 -3312 160) (-64 -3312 160) (-64 -3312 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" "341594" + "plane" "(-64 -3848 160) (-80 -3832 160) (-80 -3832 224)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[-0.707107 0.707107 0 -981.479] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "16777216" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14000]" + } +} +entity +{ + "id" "4422797" + "classname" "func_detail" + solid + { + "id" "4422791" + side + { + "id" "341643" + "plane" "(318 -3424 224) (318 -2912 224) (384 -2912 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341642" + "plane" "(318 -2912 160) (318 -3424 160) (384 -3424 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 216] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341641" + "plane" "(318 -3424 160) (318 -2912 160) (318 -2912 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" "341640" + "plane" "(384 -2912 160) (384 -3424 160) (384 -3424 224)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 -1 0 -474.072] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "16777216" + } + side + { + "id" "341639" + "plane" "(318 -2912 160) (384 -2912 160) (384 -2912 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341638" + "plane" "(384 -3424 160) (318 -3424 160) (318 -3424 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 60] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +hidden +{ + entity + { + "id" "4423013" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-74 -3664 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "4423116" + "classname" "func_detail" + solid + { + "id" "4423114" + side + { + "id" "341682" + "plane" "(8 -3792 224) (808 -3792 224) (808 -3504 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" "341681" + "plane" "(8 -3792 224) (8 -3504 224) (8 -3792 296)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 -1 0 -448] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341680" + "plane" "(808 -3792 224) (808 -3792 296) (808 -3504 224)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341679" + "plane" "(808 -3792 224) (8 -3792 224) (8 -3792 296)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -448] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341678" + "plane" "(8 -3504 224) (808 -3504 224) (808 -3792 296)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 60] 0.125" + "vaxis" "[0 -1 0 -332] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +hidden +{ + entity + { + "id" "4423130" + "classname" "prop_static" + "angles" "0 0 -13.5" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "756.744 -3604 243" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4423142" + "classname" "prop_static" + "angles" "0 0 -13.5" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "678 -3601 243" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4407861" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-298 -4112 -199" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4407869" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-483 -3808 -201" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4407873" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" ".6" + "origin" "-537 -3808 -201" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4393926" + "classname" "func_detail" + solid + { + "id" "4393938" + side + { + "id" "341199" + "plane" "(-48 -4432 224) (-64 -4448 224) (-544 -4448 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" "341198" + "plane" "(-64 -4448 208) (-48 -4432 208) (-560 -4432 208)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341197" + "plane" "(-560 -4432 224) (-544 -4448 224) (-544 -4448 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" "341196" + "plane" "(-64 -4448 224) (-48 -4432 224) (-48 -4432 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" "341195" + "plane" "(-48 -4432 224) (-560 -4432 224) (-560 -4432 208)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341194" + "plane" "(-544 -4448 224) (-64 -4448 224) (-64 -4448 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4393958" + side + { + "id" "341223" + "plane" "(-48 -4656 224) (-64 -4640 224) (-64 -4448 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" "341222" + "plane" "(-48 -4432 208) (-64 -4448 208) (-64 -4640 208)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341221" + "plane" "(-48 -4656 224) (-48 -4432 224) (-48 -4432 208)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341220" + "plane" "(-64 -4640 224) (-48 -4656 224) (-48 -4656 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" "341219" + "plane" "(-48 -4432 224) (-64 -4448 224) (-64 -4448 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" "341218" + "plane" "(-64 -4448 224) (-64 -4640 224) (-64 -4640 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4393945" + side + { + "id" "341205" + "plane" "(-544 -4448 224) (-544 -4640 224) (-560 -4656 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" "341204" + "plane" "(-544 -4640 208) (-544 -4448 208) (-560 -4432 208)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341203" + "plane" "(-560 -4432 224) (-560 -4656 224) (-560 -4656 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" "341202" + "plane" "(-560 -4656 224) (-544 -4640 224) (-544 -4640 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" "341201" + "plane" "(-544 -4448 224) (-560 -4432 224) (-560 -4432 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" "341200" + "plane" "(-544 -4640 224) (-544 -4448 224) (-544 -4448 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4393976" + side + { + "id" "341235" + "plane" "(-544 -4640 224) (-64 -4640 224) (-48 -4656 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" "341234" + "plane" "(-48 -4656 208) (-64 -4640 208) (-544 -4640 208)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341233" + "plane" "(-560 -4656 224) (-48 -4656 224) (-48 -4656 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" "341232" + "plane" "(-544 -4640 224) (-560 -4656 224) (-560 -4656 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" "341231" + "plane" "(-48 -4656 224) (-64 -4640 224) (-64 -4640 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" "341230" + "plane" "(-64 -4640 224) (-544 -4640 224) (-544 -4640 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4393975" + side + { + "id" "341229" + "plane" "(-544 -4640 224) (-544 -4448 224) (-64 -4448 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" "341228" + "plane" "(-64 -4448 208) (-544 -4448 208) (-544 -4640 208)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341227" + "plane" "(-544 -4448 208) (-64 -4448 208) (-64 -4448 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" "341226" + "plane" "(-544 -4640 208) (-544 -4448 208) (-544 -4448 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" "341225" + "plane" "(-64 -4448 208) (-64 -4640 208) (-64 -4640 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" "341224" + "plane" "(-64 -4640 208) (-544 -4640 208) (-544 -4640 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "4394048" + "classname" "func_detail" + solid + { + "id" "4394030" + side + { + "id" "341295" + "plane" "(-464 -4416 224) (-609 -4416 224) (-609 -4144 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" "341294" + "plane" "(-609 -4144 208) (-609 -4416 208) (-464 -4416 208)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 129] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341293" + "plane" "(-464 -4416 208) (-609 -4416 208) (-609 -4416 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" "341292" + "plane" "(-609 -4416 208) (-609 -4144 208) (-609 -4144 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" "341291" + "plane" "(-464 -4144 208) (-464 -4416 208) (-464 -4416 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" "341290" + "plane" "(-609 -4144 208) (-464 -4144 208) (-464 -4144 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4394020" + side + { + "id" "341301" + "plane" "(-448 -4128 224) (-448 -4416 224) (-464 -4416 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" "341300" + "plane" "(-448 -4128 208) (-464 -4144 208) (-464 -4416 208)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341299" + "plane" "(-448 -4416 208) (-448 -4416 224) (-448 -4128 224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -75.998] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341298" + "plane" "(-448 -4128 208) (-448 -4128 224) (-464 -4144 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" "341297" + "plane" "(-464 -4416 208) (-464 -4416 224) (-448 -4416 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" "341296" + "plane" "(-464 -4144 208) (-464 -4144 224) (-464 -4416 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4394006" + side + { + "id" "341307" + "plane" "(-625 -4432 224) (-625 -4416 224) (-448 -4416 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" "341306" + "plane" "(-625 -4416 208) (-625 -4432 208) (-448 -4432 208)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341305" + "plane" "(-625 -4432 208) (-625 -4416 208) (-625 -4416 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" "341304" + "plane" "(-448 -4416 208) (-448 -4432 208) (-448 -4432 224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -75.998] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341303" + "plane" "(-448 -4432 208) (-625 -4432 208) (-625 -4432 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" "341302" + "plane" "(-625 -4416 208) (-448 -4416 208) (-448 -4416 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4394015" + side + { + "id" "341313" + "plane" "(-625 -4128 224) (-609 -4144 224) (-609 -4416 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" "341312" + "plane" "(-625 -4416 208) (-609 -4416 208) (-609 -4144 208)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341311" + "plane" "(-625 -4128 208) (-625 -4128 224) (-625 -4416 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" "341310" + "plane" "(-609 -4144 208) (-609 -4144 224) (-625 -4128 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" "341309" + "plane" "(-625 -4416 208) (-625 -4416 224) (-609 -4416 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" "341308" + "plane" "(-609 -4416 208) (-609 -4416 224) (-609 -4144 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4394031" + side + { + "id" "341319" + "plane" "(-609 -4144 224) (-625 -4128 224) (-448 -4128 224)" + "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" "341318" + "plane" "(-448 -4128 208) (-625 -4128 208) (-609 -4144 208)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341317" + "plane" "(-625 -4128 208) (-448 -4128 208) (-448 -4128 224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 307.998] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341316" + "plane" "(-609 -4144 208) (-625 -4128 208) (-625 -4128 224)" + "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" "341315" + "plane" "(-448 -4128 208) (-464 -4144 208) (-464 -4144 224)" + "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" "341314" + "plane" "(-464 -4144 208) (-609 -4144 208) (-609 -4144 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "4394061" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-529 -4239 208" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4394079" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-289 -4542 208" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "4394094" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-253 -4745 151.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +entity +{ + "id" "4394098" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "190 253 128 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-253.09 -4718 151.459" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "4366146" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-734.516 -4130 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "4352037" + "classname" "prop_static" + "angles" "0 341 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-937.59 -3201.13 6.32697" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4352045" + "classname" "prop_static" + "angles" "0 128 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-978.779 -3199 -7.95222" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4352061" + "classname" "prop_static" + "angles" "0 29.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-951 -3208 -11" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4352077" + "classname" "prop_static" + "angles" "0 29.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1044.07 -3207.26 -11" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4352081" + "classname" "prop_static" + "angles" "0 64 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1002.62 -3204.03 -11" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4352109" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "88 88 88" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-951.604 -3102 208" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4352113" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "88 88 88" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-867.019 -3102 208" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4352147" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1561 -5869.2 400.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4352151" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1689 -5869 400.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4352155" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1426 -5869.2 400.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "4352211" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_building_awning/nuke_building_awning.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1374 -3329 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -2768]" + } + } +} +entity +{ + "id" "4352526" + "classname" "func_detail" + solid + { + "id" "4352513" + side + { + "id" "340987" + "plane" "(-477 -3957 -224) (-496.949 -3942.03 -224) (-519 -3930 -224)" + "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" "340986" + "plane" "(-568 -3920 -219) (-543 -3922 -219) (-519.03 -3929.99 -219)" + "material" "CS_APOLLO/FLOOR/WOOD2" + "uaxis" "[0 1 0 -256] 0.125" + "vaxis" "[1 0 0 -256] 0.125" + "rotation" "90" + "lightmapscale" "6" + "smoothing_groups" "0" + } + side + { + "id" "340985" + "plane" "(-568 -3920 -224) (-543 -3922 -224) (-543 -3922 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.996815 0.0797476 0 209.779] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340984" + "plane" "(-543 -3922 -224) (-519 -3930 -224) (-519.039 -3929.98 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.948683 0.316228 0 587.859] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340983" + "plane" "(-519 -3930 -224) (-496.943 -3942.03 -224) (-496.852 -3942.09 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.877895 0.478852 0 613.502] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340982" + "plane" "(-496.931 -3942.04 -224) (-477 -3956.99 -224) (-477 -3956.99 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8 0.6 0 283.384] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340981" + "plane" "(-476.987 -3957 -224) (-462.016 -3976.97 -224) (-462.023 -3976.96 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.6 0.8 0 122.567] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340980" + "plane" "(-462 -3977 -224) (-450 -3999 -224) (-450 -3999 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.478852 0.877896 0 250.443] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340979" + "plane" "(-450 -3999 -224) (-442 -4023 -224) (-442 -4023 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.316228 0.948683 0 -14.9594] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340978" + "plane" "(-442 -4023 -224) (-440 -4048 -224) (-440 -4048 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.0797452 0.996815 0 722.225] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340977" + "plane" "(-440 -4048 -224) (-442 -4073 -224) (-442 -4073 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.0797452 0.996815 0 686.059] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340976" + "plane" "(-442 -4073 -224) (-450 -4097 -224) (-450 -4097.03 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.316228 0.948683 0 -80.5064] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340975" + "plane" "(-450 -4097 -224) (-462 -4119 -224) (-461.971 -4118.96 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.478852 0.877895 0 223.802] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340974" + "plane" "(-462 -4119 -224) (-477 -4139 -224) (-477 -4139 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.6 0.8 0 152.888] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340973" + "plane" "(-477 -4139 -224) (-497 -4154 -224) (-497.035 -4154.03 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8 0.6 0 449.989] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340972" + "plane" "(-497 -4154 -224) (-519 -4166 -224) (-518.926 -4165.97 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -262] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340971" + "plane" "(-519 -4166 -224) (-543 -4174 -224) (-543.031 -4174 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.948683 -0.316228 0 -774.317] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340970" + "plane" "(-543 -4174 -224) (-568 -4176 -224) (-568 -4176 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.996815 -0.0797477 0 -889.935] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340969" + "plane" "(-568 -4176 -224) (-593 -4174 -224) (-593 -4174 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.996815 -0.0797477 0 -893.368] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340968" + "plane" "(-593 -4174 -224) (-617 -4166 -224) (-617 -4166 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.948683 -0.316228 0 -840.881] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340967" + "plane" "(-617 -4166 -224) (-638.954 -4154.02 -224) (-638.948 -4154.03 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.877895 -0.478853 0 -494.427] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340966" + "plane" "(-638.947 -4154.03 -224) (-659 -4139 -224) (-659 -4139 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8 -0.6 0 -863.187] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340965" + "plane" "(-659 -4139 -224) (-674 -4119 -224) (-674 -4119 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.6 -0.8 0 -481.818] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340964" + "plane" "(-674 -4119 -224) (-686 -4097 -224) (-686 -4097.02 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.478852 -0.877895 0 -737.911] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340963" + "plane" "(-686 -4097 -224) (-694 -4073 -224) (-694 -4072.98 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.316228 -0.948683 0 -49.6604] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340962" + "plane" "(-694 -4073 -224) (-696 -4048 -224) (-696 -4048 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.0797452 -0.996815 0 -273.116] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340961" + "plane" "(-696 -4048 -224) (-694 -4023 -224) (-694 -4023 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.0797452 -0.996815 0 -675.925] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340960" + "plane" "(-694 -4023 -224) (-686 -3999 -224) (-686 -3999 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.316228 -0.948683 0 -470.047] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340959" + "plane" "(-686 -3999 -224) (-674 -3977 -224) (-674 -3977 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.478852 -0.877895 0 -831.508] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340958" + "plane" "(-674 -3977 -224) (-659 -3957 -224) (-658.982 -3956.98 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.6 -0.8 0 -201.318] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340957" + "plane" "(-659 -3957 -224) (-639 -3942 -224) (-639.029 -3942.02 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.8 -0.6 0 -940.55] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340956" + "plane" "(-639 -3942 -224) (-617 -3930 -224) (-616.989 -3930 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -262] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340955" + "plane" "(-617 -3930 -224) (-593 -3922 -224) (-593 -3922 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.948683 0.316228 0 644.405] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340954" + "plane" "(-593 -3922 -224) (-568 -3920 -224) (-568 -3920 -219)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0.996815 0.0797476 0 161.437] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4352482" + side + { + "id" "341021" + "plane" "(-525.625 -4005.33 -223.681) (-534.445 -3998 -223.681) (-545.285 -3992.67 -223.681)" + "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" "341020" + "plane" "(-567.668 -3988 -58) (-556.129 -3989.33 -58) (-545.287 -3992.67 -58)" + "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" "341019" + "plane" "(-567.664 -3988 -223.68) (-556.125 -3989.33 -223.68) (-556.133 -3989.33 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.993373 0.114933 0 462.669] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341018" + "plane" "(-556.129 -3989.33 -223.68) (-545.29 -3992.67 -223.68) (-545.297 -3992.67 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.955882 0.29375 0 121.621] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341017" + "plane" "(-545.286 -3992.67 -223.68) (-534.442 -3998 -223.68) (-534.438 -3998 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.987469 0.157811 0 696.606] 0.125" + "vaxis" "[0 0 -1 194.007] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341016" + "plane" "(-534.442 -3998 -223.68) (-525.625 -4005.33 -223.68) (-525.637 -4005.32 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.996913 -0.0785074 0 227.397] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341015" + "plane" "(-525.638 -4005.32 -223.68) (-518.163 -4014.68 -223.68) (-518.16 -4014.68 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.624228 0.781242 0 -10.3159] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341014" + "plane" "(-518.162 -4014.68 -223.68) (-512.751 -4025.32 -223.68) (-512.742 -4025.34 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.453251 0.891383 0 -896.51] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341013" + "plane" "(-512.748 -4025.33 -223.68) (-509.356 -4036 -223.68) (-509.356 -4036 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.302875 0.95303 0 -347.235] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341012" + "plane" "(-509.356 -4036 -223.68) (-508 -4048 -223.68) (-508 -4048 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.112284 0.993676 0 -308.107] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341011" + "plane" "(-508 -4048 -223.68) (-509.356 -4060 -223.68) (-509.355 -4060 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 353.008] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341010" + "plane" "(-509.357 -4060 -223.68) (-512.743 -4070.66 -223.68) (-512.752 -4070.68 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.302862 0.953034 0 61.6827] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341009" + "plane" "(-512.745 -4070.67 -223.68) (-518.171 -4081.33 -223.68) (-518.166 -4081.33 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.453251 0.891383 0 -306.302] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341008" + "plane" "(-518.175 -4081.34 -223.68) (-525.618 -4090.66 -223.68) (-525.641 -4090.68 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.624228 0.781242 0 -126.833] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341007" + "plane" "(-525.62 -4090.66 -223.68) (-534.45 -4098 -223.68) (-534.438 -4098 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.768719 0.639587 0 -70.1686] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341006" + "plane" "(-534.447 -4098 -223.68) (-545.279 -4103.33 -223.68) (-545.281 -4103.33 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.897394 0.441229 0 -926.556] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341005" + "plane" "(-545.287 -4103.33 -223.68) (-556.134 -4106.67 -223.68) (-556.141 -4106.67 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.955882 0.293749 0 -392.699] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341004" + "plane" "(-556.141 -4106.67 -223.68) (-567.656 -4108 -223.68) (-567.664 -4108 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.993378 0.114891 0 -983.284] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341003" + "plane" "(-567.657 -4108 -223.68) (-579.87 -4106.67 -223.68) (-579.867 -4106.67 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.994087 -0.108587 0 -137.821] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341002" + "plane" "(-579.857 -4106.67 -223.68) (-590.721 -4103.33 -223.68) (-590.712 -4103.33 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.955882 -0.29375 0 -264.668] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341001" + "plane" "(-590.715 -4103.33 -223.68) (-601.556 -4098 -223.68) (-601.554 -4098 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.897393 -0.441231 0 -277.627] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341000" + "plane" "(-601.573 -4098 -223.68) (-610.361 -4090.69 -223.68) (-610.362 -4090.68 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.76872 -0.639585 0 -231.679] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340999" + "plane" "(-610.379 -4090.67 -223.68) (-617.828 -4081.34 -223.68) (-617.83 -4081.33 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.624224 -0.781245 0 -455.378] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340998" + "plane" "(-617.836 -4081.32 -223.68) (-623.251 -4070.68 -223.68) (-623.251 -4070.68 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.453254 -0.891381 0 -807.266] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340997" + "plane" "(-623.253 -4070.67 -223.68) (-626.644 -4060 -223.68) (-626.643 -4060 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.302857 -0.953036 0 -504.11] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340996" + "plane" "(-626.644 -4060 -223.68) (-628 -4048 -223.68) (-628 -4048 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0.112282 -0.993676 0 -753.739] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340995" + "plane" "(-628 -4048 -223.68) (-626.645 -4036 -223.68) (-626.644 -4036 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.112283 -0.993676 0 166.051] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340994" + "plane" "(-626.644 -4036 -223.68) (-623.252 -4025.33 -223.68) (-623.247 -4025.32 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.30287 -0.953032 0 -503.226] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340993" + "plane" "(-623.254 -4025.33 -223.68) (-617.83 -4014.67 -223.68) (-617.83 -4014.67 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.453255 -0.89138 0 732.279] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340992" + "plane" "(-617.834 -4014.68 -223.68) (-610.368 -4005.33 -223.68) (-610.373 -4005.33 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.624224 -0.781245 0 350.9] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340991" + "plane" "(-610.382 -4005.34 -223.68) (-601.548 -3998 -223.68) (-601.548 -3998 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.7687 -0.639609 0 82.4826] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340990" + "plane" "(-601.564 -3998 -223.68) (-590.701 -3992.67 -223.68) (-590.701 -3992.67 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.897409 -0.441198 0 675.746] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340989" + "plane" "(-590.711 -3992.67 -223.68) (-579.866 -3989.33 -223.68) (-579.866 -3989.33 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.955882 -0.29375 0 907.84] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340988" + "plane" "(-579.86 -3989.33 -223.68) (-567.668 -3988 -223.68) (-567.66 -3988 -58)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[-0.994082 -0.108626 0 552.612] 0.125" + "vaxis" "[0 0 -1 194.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4352510" + side + { + "id" "341055" + "plane" "(-506 -3986 -58) (-519 -3975 -58) (-534 -3967 -58)" + "material" "DE_NUKE/HR_NUKE/OFFICELIGHT_EMITTER_001_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341054" + "plane" "(-568 -3960 -42) (-551 -3962 -42) (-534 -3967 -42)" + "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" "341053" + "plane" "(-568 -3960 -58) (-551 -3962 -58) (-551 -3962 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341052" + "plane" "(-551 -3962 -58) (-534 -3967 -58) (-534 -3967 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341051" + "plane" "(-534 -3967 -58) (-519 -3975 -58) (-519 -3975 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341050" + "plane" "(-519 -3975 -58) (-506 -3986 -58) (-506 -3986 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341049" + "plane" "(-506 -3986 -58) (-495 -3999 -58) (-495 -3999 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341048" + "plane" "(-495 -3999 -58) (-487 -4014 -58) (-487 -4014 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341047" + "plane" "(-487 -4014 -58) (-482 -4031 -58) (-482 -4031 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341046" + "plane" "(-482 -4031 -58) (-480 -4048 -58) (-480 -4048 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341045" + "plane" "(-480 -4048 -58) (-482 -4065 -58) (-482 -4065 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341044" + "plane" "(-482 -4065 -58) (-487 -4082 -58) (-487 -4082 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341043" + "plane" "(-487 -4082 -58) (-495 -4097 -58) (-495 -4097 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341042" + "plane" "(-495 -4097 -58) (-506 -4110 -58) (-506 -4110 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341041" + "plane" "(-506 -4110 -58) (-519 -4121 -58) (-518.98 -4120.99 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341040" + "plane" "(-519 -4121 -58) (-534 -4129 -58) (-534.016 -4129 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341039" + "plane" "(-534 -4129 -58) (-551 -4134 -58) (-551 -4134 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341038" + "plane" "(-551 -4134 -58) (-568 -4136 -58) (-568 -4136 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341037" + "plane" "(-568 -4136 -58) (-585 -4134 -58) (-585 -4134 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341036" + "plane" "(-585 -4134 -58) (-602 -4129 -58) (-602 -4129 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341035" + "plane" "(-602 -4129 -58) (-617 -4121 -58) (-617 -4121 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341034" + "plane" "(-617 -4121 -58) (-630 -4110 -58) (-630 -4110 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341033" + "plane" "(-630.012 -4109.99 -58) (-641 -4097.01 -58) (-641 -4097 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341032" + "plane" "(-641 -4097 -58) (-649 -4082 -58) (-649 -4082 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341031" + "plane" "(-649 -4082 -58) (-654 -4065 -58) (-654 -4065 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341030" + "plane" "(-654 -4065 -58) (-656 -4048 -58) (-656 -4048 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341029" + "plane" "(-656 -4048 -58) (-654 -4031 -58) (-654 -4031 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341028" + "plane" "(-654 -4031 -58) (-649 -4014 -58) (-649 -4014 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341027" + "plane" "(-649 -4014 -58) (-641 -3999 -58) (-641 -3999 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341026" + "plane" "(-641 -3999 -58) (-630 -3986 -58) (-630 -3986 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -124] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341025" + "plane" "(-630 -3986 -58) (-617 -3975 -58) (-617 -3975 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341024" + "plane" "(-617 -3975 -58) (-602 -3967 -58) (-602 -3967 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341023" + "plane" "(-602 -3967 -58) (-585 -3962 -58) (-585 -3962 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341022" + "plane" "(-585 -3962 -58) (-568 -3960 -58) (-568 -3960 -42)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -140] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10500]" + } +} +entity +{ + "id" "4337251" + "classname" "func_detail" + solid + { + "id" "4323647" + side + { + "id" "340605" + "plane" "(305 -4776 160) (305 -4650 160) (331 -4650 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" "340604" + "plane" "(305 -4650 16) (305 -4776 16) (331 -4776 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" "340603" + "plane" "(305 -4776 16) (305 -4650 16) (305 -4650 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -367] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340602" + "plane" "(331 -4650 16) (331 -4776 16) (331 -4776 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -367] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340601" + "plane" "(305 -4650 16) (331 -4650 16) (331 -4650 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" "340600" + "plane" "(331 -4776 16) (305 -4776 16) (305 -4776 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4337240" + side + { + "id" "340611" + "plane" "(302 -4660 16) (334 -4660 16) (334 -4792 16)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -130] 0.125" + "vaxis" "[0 -1 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340610" + "plane" "(302 -4792 0) (334 -4792 0) (334 -4660 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" "340609" + "plane" "(302 -4660 16) (302 -4792 16) (302 -4792 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340608" + "plane" "(334 -4660 0) (334 -4792 0) (334 -4792 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340607" + "plane" "(334 -4660 16) (302 -4660 16) (302 -4660 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" "340606" + "plane" "(334 -4792 0) (302 -4792 0) (302 -4792 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "4337268" + "classname" "prop_static" + "angles" "0 2 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "266.108 -4702 7.62939e-06" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4337304" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-121 -4800 107.303" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "4337346" + "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/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "216 33 65" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "35 -1940 14.7729" + editor + { + "color" "108 197 0" + "groupid" "4337345" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4337350" + "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/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "35 -1936 41.9126" + editor + { + "color" "108 197 0" + "groupid" "4337345" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4337564" + "classname" "prop_static" + "angles" "0 308 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-742 -2949 8.25" + editor + { + "color" "135 180 0" + "groupid" "4337646" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "4337589" + "classname" "func_detail" + solid + { + "id" "4337583" + side + { + "id" "340731" + "plane" "(-720 -2974 96) (-720 -2924 96) (-712 -2924 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 154.667] 0.09" + "vaxis" "[1 0 0 -702.694] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340730" + "plane" "(-720 -2924 8) (-720 -2974 8) (-712 -2974 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340729" + "plane" "(-720 -2974 8) (-720 -2924 8) (-720 -2924 96)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 -1 0 -1979.99] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340728" + "plane" "(-712 -2924 8) (-712 -2974 8) (-712 -2974 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 154.667] 0.09" + "vaxis" "[0 0 -1 -897.304] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340727" + "plane" "(-720 -2924 8) (-712 -2924 8) (-712 -2924 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" "340726" + "plane" "(-712 -2974 8) (-720 -2974 8) (-720 -2974 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -312.444] 0.09" + "vaxis" "[0 0 -1 114] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 180 0" + "groupid" "4337646" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "4337594" + "classname" "prop_static" + "angles" "0 180 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-762.937 -2964 8" + editor + { + "color" "135 180 0" + "groupid" "4337691" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "4337598" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 249 213 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 180 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "-762.799 -2964 13" + editor + { + "color" "135 180 0" + "groupid" "4337691" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "4337603" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-763 -2964 9" + editor + { + "color" "135 180 0" + "groupid" "4337691" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "4337610" + "classname" "func_detail" + solid + { + "id" "4337606" + side + { + "id" "340743" + "plane" "(-815 -2962 92) (-815 -2924 92) (-773 -2924 92)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340742" + "plane" "(-815 -2924 8) (-815 -2962 8) (-773 -2962 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340741" + "plane" "(-815 -2962 8) (-815 -2924 8) (-815 -2924 92)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 -396] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340740" + "plane" "(-773 -2924 8) (-773 -2962 8) (-773 -2962 92)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 -396] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340739" + "plane" "(-815 -2924 8) (-773 -2924 8) (-773 -2924 92)" + "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" "340738" + "plane" "(-773 -2962 8) (-815 -2962 8) (-815 -2962 92)" + "material" "CS_APOLLO/OUTSIDE/ADVERT2" + "uaxis" "[1 0 0 -304.762] 0.0820313" + "vaxis" "[0 0 -1 97.5238] 0.0820313" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 180 0" + "groupid" "4337646" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "4323432" + "classname" "func_detail" + solid + { + "id" "4323423" + side + { + "id" "340581" + "plane" "(-129 -4768 16) (-26 -4768 16) (-26 -4862 16)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -130] 0.125" + "vaxis" "[0 -1 0 61] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340580" + "plane" "(-129 -4862 0) (-26 -4862 0) (-26 -4768 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" "340579" + "plane" "(-129 -4768 16) (-129 -4862 16) (-129 -4862 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340578" + "plane" "(-26 -4768 0) (-26 -4862 0) (-26 -4862 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340577" + "plane" "(-26 -4768 16) (-129 -4768 16) (-129 -4768 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" "340576" + "plane" "(-26 -4862 0) (-129 -4862 0) (-129 -4862 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4323418" + side + { + "id" "340587" + "plane" "(-124 -4768 160) (-30 -4768 160) (-30 -4853 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" "340586" + "plane" "(-124 -4853 16) (-30 -4853 16) (-30 -4768 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" "340585" + "plane" "(-124 -4768 160) (-124 -4853 160) (-124 -4853 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340584" + "plane" "(-30 -4768 16) (-30 -4853 16) (-30 -4853 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340583" + "plane" "(-30 -4768 160) (-124 -4768 160) (-124 -4768 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" "340582" + "plane" "(-30 -4853 16) (-124 -4853 16) (-124 -4853 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "4323652" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "318 -4776 12" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "4296223" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "250 255 213 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-45 180 180" + "pitch" "-45" + "spawnflags" "0" + "style" "0" + "origin" "2376 -3344 237.613" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "4253242" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_corner_002.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1187 -5884 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253294" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_512.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1187 -5872 383.093" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253318" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_256.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1187 -5360 383.093" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253349" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_256.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1187 -5104 383.093" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253369" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_64.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1187 -4848 383.093" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253430" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_128.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1182 -4780 383.093" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253469" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_corner_002.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1028 -4780 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253497" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_512.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1028 -4768 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253521" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_32.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1028 -4256 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253552" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_corner_002.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1028 -4204 382.968" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253564" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_8.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1028 -4224 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253595" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_16.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1055 -4780 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253634" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_512.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 -4204 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253662" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_512.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1552 -4204 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4253678" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_512.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1951 -4212 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4254188" + "classname" "func_detail" + solid + { + "id" "5289149" + side + { + "id" "351637" + "plane" "(-416 -4760 160) (-16 -4760 160) (-16 -4688 160)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[0 1 0 129] 0.125" + "vaxis" "[-1 0 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351636" + "plane" "(-544.883 -4688 160) (-16 -4688 160) (-16 -4688 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" + } + side + { + "id" "351635" + "plane" "(-16 -4760 160) (-416 -4760 160) (-416 -4760 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" + } + side + { + "id" "351634" + "plane" "(-544.887 -4688 164) (-16 -4688 164) (-16 -4760 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351633" + "plane" "(-416 -4760 164) (-416 -4760 160) (-544.884 -4688 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351632" + "plane" "(-16 -4688 164) (-16 -4688 160) (-16 -4760 160)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "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" "5289151" + side + { + "id" "351649" + "plane" "(-544.887 -4688 239.875) (-16 -4688 239.875) (-16 -4760 239.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351648" + "plane" "(-544.883 -4688 236) (-16 -4688 236) (-16 -4688 239.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351647" + "plane" "(-416 -4760 239.875) (-16 -4760 239.875) (-16 -4760 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351646" + "plane" "(-416 -4760 236) (-16 -4760 236) (-16 -4688 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351645" + "plane" "(-544.883 -4688 236) (-544.883 -4688 239.875) (-416 -4760 239.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351644" + "plane" "(-16 -4760 236) (-16 -4760 239.875) (-16 -4688 239.875)" + "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" "5289153" + side + { + "id" "351661" + "plane" "(-544.883 -4688 164) (-16 -4688 164) (-16 -4688 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351660" + "plane" "(-16 -4760 164) (-416 -4760 164) (-416 -4760 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351659" + "plane" "(-544.887 -4688 236) (-16 -4688 236) (-16 -4760 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351658" + "plane" "(-416 -4760 164) (-16 -4760 164) (-16 -4688 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351657" + "plane" "(-416 -4760 236) (-416 -4760 164) (-544.883 -4688 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351656" + "plane" "(-16 -4688 236) (-16 -4688 164) (-16 -4760 164)" + "material" "TILE/HR_T/TILES_A" + "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" "5289154" + side + { + "id" "351667" + "plane" "(-672 -4688 160) (-672 -4760 160) (-416 -4760 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351666" + "plane" "(-672 -4760 164) (-672 -4760 160) (-672 -4688 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.497925 0.86722 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351665" + "plane" "(-672 -4688 164) (-672 -4688 160) (-544.88 -4688 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" "351664" + "plane" "(-416 -4760 160) (-672 -4760 160) (-672 -4760 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" + } + side + { + "id" "351663" + "plane" "(-672 -4760 164) (-672 -4688 164) (-544.881 -4688 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351662" + "plane" "(-544.882 -4688 164) (-544.882 -4688 160) (-416 -4760 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "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" "5289155" + side + { + "id" "351673" + "plane" "(-672 -4760 239.875) (-672 -4688 239.875) (-544.881 -4688 239.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351672" + "plane" "(-672 -4688 236) (-672 -4688 239.875) (-672 -4760 239.875)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 54.2998] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351671" + "plane" "(-544.88 -4688 239.875) (-672 -4688 239.875) (-672 -4688 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351670" + "plane" "(-672 -4760 236) (-672 -4760 239.875) (-416 -4760 239.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351669" + "plane" "(-672 -4688 236) (-672 -4760 236) (-416 -4760 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351668" + "plane" "(-416 -4760 236) (-416 -4760 239.875) (-544.882 -4688 239.875)" + "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" "5289156" + side + { + "id" "351679" + "plane" "(-672 -4760 236) (-672 -4760 164) (-672 -4688 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.497925 0.86722 0 -760.756] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351678" + "plane" "(-672 -4688 236) (-672 -4688 164) (-544.88 -4688 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" + } + side + { + "id" "351677" + "plane" "(-416 -4760 164) (-672 -4760 164) (-672 -4760 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351676" + "plane" "(-672 -4760 236) (-672 -4688 236) (-544.881 -4688 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351675" + "plane" "(-672 -4688 164) (-672 -4760 164) (-416 -4760 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351674" + "plane" "(-544.882 -4688 236) (-544.882 -4688 164) (-416 -4760 164)" + "material" "TILE/HR_T/TILES_A" + "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" "5289148" + side + { + "id" "351631" + "plane" "(-16 -4760 160) (432 -4760 160) (432 -4688 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351630" + "plane" "(432 -4688 164) (432 -4688 160) (432 -4760 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -238.285] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351629" + "plane" "(-16 -4688 160) (432 -4688 160) (432 -4688 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" + } + side + { + "id" "351628" + "plane" "(432 -4760 164) (432 -4760 160) (-16 -4760 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" "351627" + "plane" "(-16 -4688 164) (432 -4688 164) (432 -4760 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351626" + "plane" "(-16 -4760 164) (-16 -4760 160) (-16 -4688 160)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "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" "5289150" + side + { + "id" "351643" + "plane" "(-16 -4688 239.875) (432 -4688 239.875) (432 -4760 239.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351642" + "plane" "(432 -4760 236) (432 -4760 239.875) (432 -4688 239.875)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351641" + "plane" "(-16 -4688 236) (432 -4688 236) (432 -4688 239.875)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351640" + "plane" "(-16 -4760 239.875) (432 -4760 239.875) (432 -4760 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351639" + "plane" "(-16 -4760 236) (432 -4760 236) (432 -4688 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351638" + "plane" "(-16 -4688 236) (-16 -4688 239.875) (-16 -4760 239.875)" + "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" "5289152" + side + { + "id" "351655" + "plane" "(432 -4688 236) (432 -4688 164) (432 -4760 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0 1 0 51.9302] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "-2147483648" + } + side + { + "id" "351654" + "plane" "(-16 -4688 164) (432 -4688 164) (432 -4688 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351653" + "plane" "(432 -4760 236) (432 -4760 164) (-16 -4760 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" + } + side + { + "id" "351652" + "plane" "(-16 -4688 236) (432 -4688 236) (432 -4760 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351651" + "plane" "(-16 -4760 164) (432 -4760 164) (432 -4688 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351650" + "plane" "(-16 -4760 236) (-16 -4760 164) (-16 -4688 164)" + "material" "TILE/HR_T/TILES_A" + "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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "4254198" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-42 -4846 12" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4254210" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-113 -4846 12" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4237847" + "classname" "prop_static" + "angles" "0 179.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/transformer_yard_powerbox/transformer_yard_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1151 -3122 -22" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4237851" + "classname" "prop_static" + "angles" "0 64 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/fan_palm_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1135 -3159 -45" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4238124" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1348 -3736 28.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4238128" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1339 -3479 29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4238194" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1348 -3102 29.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4238203" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1339 -3111 29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4238241" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1386 -3550.53 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "4238257" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1388 -3048 36.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4238325" + "classname" "prop_static" + "angles" "0 95 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-404.435 -5786.18 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238327" + "classname" "prop_static" + "angles" "0 215.5 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-402 -5801 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238344" + "classname" "prop_static" + "angles" "0 133.5 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_07.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-451 -5811 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238360" + "classname" "prop_static" + "angles" "0 247 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_08.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-509 -6075 32.274" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238475" + "classname" "prop_static" + "angles" "0 306 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_01.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-438.211 -6152.56 56.7741" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238505" + "classname" "prop_static" + "angles" "0 188 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_06.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-390 -6119 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238517" + "classname" "prop_static" + "angles" "0 189.5 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_06.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-386 -6119 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238533" + "classname" "prop_static" + "angles" "0 0.499993 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_06.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-387 -6121 80.7731" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238561" + "classname" "prop_static" + "angles" "0 358.5 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_06.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-390 -6183.47 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238565" + "classname" "prop_static" + "angles" "0 186 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_06.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-393.945 -6182.81 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4238569" + "classname" "prop_static" + "angles" "0 171 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_06.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-392.629 -6181 80.7731" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "4239248" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/transformer_yard_powerbox/transformer_yard_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1000 -3175 -19" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4239274" + "classname" "prop_static" + "angles" "0 16.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/fan_palm_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1049.05 -3160 -38.8811" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4239490" + "classname" "prop_static" + "angles" "0 293 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "699 -2083 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4239642" + "classname" "prop_static" + "angles" "0 43 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "820 -1872 -15.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "4223748" + "classname" "func_detail" + solid + { + "id" "4223725" + side + { + "id" "339980" + "plane" "(-804 -2440 0) (-744 -2501 0) (-1056 -2501 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" "339979" + "plane" "(-744 -2501 -32) (-804 -2440 -32) (-1022 -2440 -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" "339978" + "plane" "(-1056 -2501 0) (-1056 -2501 -32) (-1022 -2440 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 885] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339977" + "plane" "(-744 -2501 -32) (-744 -2501 0) (-804 -2440 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339976" + "plane" "(-1022 -2440 0) (-1022 -2440 -32) (-804 -2440 -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" "339975" + "plane" "(-1056 -2501 -32) (-1056 -2501 0) (-744 -2501 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084803" + side + { + "id" "379830" + "plane" "(-1022 -2440 0) (-1056 -2501 0) (-744 -2501 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" "379829" + "plane" "(-1056 -2501 7) (-1056 -2501 0) (-1022 -2440 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379828" + "plane" "(-804 -2440 7) (-804 -2440 0) (-744 -2501 0)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[-0.701239 0.712926 0 -1678.91] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379827" + "plane" "(-1022 -2440 7) (-1022 -2440 0) (-804 -2440 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379826" + "plane" "(-744 -2501 7) (-744 -2501 0) (-1056 -2501 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" "379825" + "plane" "(-1056 -2501 7) (-1022 -2440 7) (-804 -2440 7)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084724" + side + { + "id" "379710" + "plane" "(-1056 -2501 144) (-1022 -2440 144) (-804 -2440 144)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 -114] 0.25" + "vaxis" "[0 -1 0 -378] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379709" + "plane" "(-1022 -2440 136) (-1022 -2440 144) (-1056 -2501 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379708" + "plane" "(-744 -2501 136) (-744 -2501 144) (-804 -2440 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379707" + "plane" "(-804 -2440 136) (-804 -2440 144) (-1022 -2440 144)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1168] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379706" + "plane" "(-1056 -2501 136) (-1056 -2501 144) (-744 -2501 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" "379705" + "plane" "(-1022 -2440 136) (-1056 -2501 136) (-744 -2501 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7084802" + side + { + "id" "379824" + "plane" "(-1056 -2501 136) (-1056 -2501 7) (-1022 -2440 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379823" + "plane" "(-804 -2440 136) (-804 -2440 7) (-744 -2501 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[0 1 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379822" + "plane" "(-1022 -2440 136) (-1022 -2440 7) (-804 -2440 7)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 431] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379821" + "plane" "(-744 -2501 136) (-744 -2501 7) (-1056 -2501 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379820" + "plane" "(-1056 -2501 136) (-1022 -2440 136) (-804 -2440 136)" + "material" "PLASTER/CEILING_INSULATION05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "379819" + "plane" "(-1022 -2440 7) (-1056 -2501 7) (-744 -2501 7)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "4224047" + "classname" "func_detail" + solid + { + "id" "6280505" + side + { + "id" "373861" + "plane" "(1832 -4020 0) (1834 -4022 0) (2041 -4022 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373860" + "plane" "(1832 -3936 0) (1832 -3936 24) (1832 -4020 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 1000] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373859" + "plane" "(2041 -3934 0) (2041 -4022 0) (2041 -4022 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373858" + "plane" "(2041 -3934 0) (2041 -3934 24) (1834 -3934 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -839.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373857" + "plane" "(2041 -4022 0) (1834 -4022 0) (1834 -4022 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -391.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373856" + "plane" "(1832 -3936 24) (1834 -3934 24) (2041 -3934 24)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373855" + "plane" "(1832 -3936 0) (1834 -3934 0) (1834 -3934 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.655169 0.755482 0 -996.953] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373854" + "plane" "(1834 -4022 0) (1832 -4020 0) (1832 -4020 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.655169 0.755482 0 738.9] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "202 111 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5999904" + side + { + "id" "371416" + "plane" "(1832 -3934 32) (2041 -3934 32) (2041 -3950 32)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 -1 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371415" + "plane" "(1832 -3934 32) (1848 -3950 32) (1848 -3950 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 551] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371414" + "plane" "(2041 -3934 32) (2041 -3934 24) (2041 -3950 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 551] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371413" + "plane" "(2041 -3934 32) (1832 -3934 32) (1832 -3934 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 501.992] 0.125" + "vaxis" "[0 0 -1 -1.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371412" + "plane" "(1848 -3950 24) (2041 -3950 24) (2041 -3934 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" + } + side + { + "id" "371411" + "plane" "(1848 -3950 32) (2041 -3950 32) (2041 -3950 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 0 -1 518.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "202 111 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4224052" + side + { + "id" "340136" + "plane" "(2041 -4022 32) (1848 -4022 32) (1848 -4006 32)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 -1 0 335] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340135" + "plane" "(2041 -4022 24) (1848 -4022 24) (1848 -4022 32)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 0 -1 -1.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340134" + "plane" "(2041 -4006 24) (1848 -4006 24) (1848 -4022 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" + } + side + { + "id" "340133" + "plane" "(1848 -4006 24) (2041 -4006 24) (2041 -4006 32)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 512] 0.125" + "vaxis" "[1 0 0 519.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340132" + "plane" "(1848 -4006 32) (1848 -4022 32) (1848 -4022 24)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340131" + "plane" "(2041 -4006 24) (2041 -4022 24) (2041 -4022 32)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "202 111 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5999894" + side + { + "id" "371410" + "plane" "(1848 -4022 32) (1832 -4022 32) (1832 -3934 32)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -202] 0.125" + "vaxis" "[0 -1 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371409" + "plane" "(1832 -3934 32) (1832 -4022 32) (1832 -4022 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -1 0 -314] 0.125" + "vaxis" "[0 0 -1 -1.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371408" + "plane" "(1848 -4022 24) (1832 -4022 24) (1832 -4022 32)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -202] 0.125" + "vaxis" "[0 0 -1 -1.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371407" + "plane" "(1832 -3934 24) (1832 -4022 24) (1848 -4022 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" + } + side + { + "id" "371406" + "plane" "(1848 -3950 32) (1832 -3934 32) (1832 -3934 24)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371405" + "plane" "(1848 -3950 24) (1848 -4022 24) (1848 -4022 32)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 512] 0.125" + "vaxis" "[0 -1 0 408] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "202 111 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "202 111 0" + "groupid" "4224123" + "visgroupid" "27" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +hidden +{ + entity + { + "id" "4224220" + "classname" "prop_static" + "angles" "0 45 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1461 -3855 0.238861" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4224234" + "classname" "prop_static" + "angles" "0 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1178 -4172.76 0.249999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4224238" + "classname" "prop_static" + "angles" "0 135 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1080.54 -4173 0.238861" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "4224263" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "441.5 -2647.5 35.4" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "4224258" + side + { + "id" "340148" + "plane" "(474 -2630 39.8014) (474 -2631 39.8014) (409 -2665 39.8014)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340147" + "plane" "(474 -2631 31) (474 -2630 31) (409 -2664 31)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340146" + "plane" "(409 -2665 39.8014) (409 -2665 31) (409 -2664 31)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340145" + "plane" "(474 -2631 31) (474 -2631 39.8014) (474 -2630 39.8014)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340144" + "plane" "(409 -2664 39.8014) (409 -2664 31) (474 -2630 31)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340143" + "plane" "(409 -2665 31) (409 -2665 39.8014) (474 -2631 39.8014)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "4224272" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "369 -2664.5 35.4" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "4224270" + side + { + "id" "340160" + "plane" "(407 -2664 39.9007) (407 -2665 39.9007) (331 -2667 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340159" + "plane" "(407 -2665 30.9007) (407 -2664 30.9007) (331 -2666 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340158" + "plane" "(331 -2667 39.9007) (331 -2667 30.9007) (331 -2666 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340157" + "plane" "(407 -2665 30.9007) (407 -2665 39.9007) (407 -2664 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340156" + "plane" "(331 -2666 39.9007) (331 -2666 30.9007) (407 -2664 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340155" + "plane" "(331 -2667 30.9007) (331 -2667 39.9007) (407 -2665 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "4224296" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "302 -2636 35.4" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "4224293" + side + { + "id" "340172" + "plane" "(329 -2666 39.9007) (329 -2667 39.9007) (275 -2605 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340171" + "plane" "(329 -2667 30.9007) (329 -2666 30.9007) (276 -2605 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340170" + "plane" "(275 -2605 39.9007) (275 -2605 30.9007) (276 -2605 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340169" + "plane" "(329 -2667 30.9007) (329 -2667 39.9007) (329 -2666 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340168" + "plane" "(276 -2605 39.9007) (276 -2605 30.9007) (329 -2666 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340167" + "plane" "(275 -2605 30.9007) (275 -2605 39.9007) (329 -2667 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "4224310" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "272.5 -2543 35.4" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "4224306" + side + { + "id" "340184" + "plane" "(276 -2604 39.9007) (275 -2604 39.9007) (269 -2482 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340183" + "plane" "(270 -2482 30.9007) (269 -2482 30.9007) (275 -2604 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340182" + "plane" "(275 -2604 30.9007) (269 -2482 30.9007) (269 -2482 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340181" + "plane" "(276 -2604 39.9007) (270 -2482 39.9007) (270 -2482 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340180" + "plane" "(269 -2482 30.9007) (270 -2482 30.9007) (270 -2482 39.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340179" + "plane" "(275 -2604 39.9007) (276 -2604 39.9007) (276 -2604 30.9007)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "4224327" + "classname" "prop_static" + "angles" "0 314.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_authorised_personel_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-260 -1870 64.2139" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "4208754" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "406 -2106 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4208777" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "384 -2106 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4208789" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "398 -2106 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4208908" + "classname" "func_detail" + solid + { + "id" "4208902" + side + { + "id" "339684" + "plane" "(2469 -2934 57) (2469 -2933 57) (2548 -2933 57)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 28] 0.125" + "vaxis" "[0 -1 0 -407.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339683" + "plane" "(2469 -2933 15.5) (2469 -2934 15.5) (2548 -2934 15.5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339682" + "plane" "(2469 -2934 15.5) (2469 -2933 15.5) (2469 -2933 57)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -124] 0.125" + "vaxis" "[0 0 -1 -20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339681" + "plane" "(2548 -2933 15.5) (2548 -2934 15.5) (2548 -2934 57)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 -148] 0.125" + "vaxis" "[0 0 -1 -20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339680" + "plane" "(2469 -2933 15.5) (2548 -2933 15.5) (2548 -2933 57)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 28] 0.125" + "vaxis" "[0 0 -1 -20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339679" + "plane" "(2548 -2934 15.5) (2469 -2934 15.5) (2469 -2934 57)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 28] 0.125" + "vaxis" "[0 0 -1 -20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "4209836" + "classname" "func_detail" + solid + { + "id" "4209837" + side + { + "id" "339860" + "plane" "(-1031.91 -2429.82 152) (-1031.91 -2252.82 152) (-1023.91 -2252.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28.2378] 0.25" + "vaxis" "[0 -1 0 20.71] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339859" + "plane" "(-1031.91 -2252.82 -24) (-1031.91 -2429.82 -24) (-1023.91 -2429.82 -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" + } + side + { + "id" "339858" + "plane" "(-1031.91 -2429.82 -24) (-1031.91 -2252.82 -24) (-1031.91 -2252.82 152)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 -1 0 -745.266] 0.172852" + "vaxis" "[0 0 -1 442.182] 0.34375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339857" + "plane" "(-1023.91 -2252.82 -24) (-1023.91 -2429.82 -24) (-1023.91 -2429.82 152)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 750.74] 0.172855" + "vaxis" "[0 0 -1 442.182] 0.34375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339856" + "plane" "(-1031.91 -2252.82 -24) (-1023.91 -2252.82 -24) (-1023.91 -2252.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 12.2378] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339855" + "plane" "(-1023.91 -2429.82 -24) (-1031.91 -2429.82 -24) (-1031.91 -2429.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 12.2378] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4209838" + side + { + "id" "339869" + "plane" "(-1039.06 -2243.82 -24) (-1035.06 -2252.82 -24) (-1019.06 -2252.82 -24)" + "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" "339868" + "plane" "(-1015.06 -2243.82 152) (-1019.06 -2252.82 152) (-1035.06 -2252.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20.71] 0.25" + "vaxis" "[-1 0 0 -60.2383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339867" + "plane" "(-1015.06 -2243.82 -24) (-1019.06 -2252.82 -24) (-1019.06 -2252.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339866" + "plane" "(-1035.06 -2252.82 -24) (-1039.06 -2243.82 -24) (-1039.06 -2243.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339865" + "plane" "(-1039.06 -2243.82 -24) (-1035.06 -2235.82 -24) (-1035.06 -2235.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-0.447214 -0.894427 0 -286.362] 0.125" + "vaxis" "[0 0 -1 469.973] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339864" + "plane" "(-1035.06 -2235.82 -24) (-1027.06 -2232.82 -24) (-1027.06 -2232.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339863" + "plane" "(-1027.06 -2232.82 -24) (-1019.06 -2235.82 -24) (-1019.06 -2235.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339862" + "plane" "(-1019.06 -2235.82 -24) (-1015.06 -2243.82 -24) (-1015.06 -2243.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339861" + "plane" "(-1019.06 -2252.82 -24) (-1035.06 -2252.82 -24) (-1035.06 -2252.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4209839" + side + { + "id" "339878" + "plane" "(-1035.06 -2429.82 -24) (-1039.06 -2438.82 -24) (-1035.06 -2446.82 -24)" + "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" "339877" + "plane" "(-1039.06 -2438.82 152) (-1035.06 -2429.82 152) (-1019.06 -2429.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52.71] 0.25" + "vaxis" "[1 0 0 28.2383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339876" + "plane" "(-1039.06 -2438.82 -24) (-1035.06 -2429.82 -24) (-1035.06 -2429.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-0.406137 -0.913812 0 -84.8657] 0.125" + "vaxis" "[0 0 -1 469.977] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339875" + "plane" "(-1019.06 -2429.82 -24) (-1015.06 -2438.82 -24) (-1015.06 -2438.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339874" + "plane" "(-1015.06 -2438.82 -24) (-1019.06 -2446.82 -24) (-1019.06 -2446.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339873" + "plane" "(-1019.06 -2446.82 -24) (-1027.06 -2449.82 -24) (-1027.06 -2449.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339872" + "plane" "(-1027.06 -2449.82 -24) (-1035.06 -2446.82 -24) (-1035.06 -2446.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339871" + "plane" "(-1035.06 -2446.82 -24) (-1039.06 -2438.82 -24) (-1039.06 -2438.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339870" + "plane" "(-1035.06 -2429.82 -24) (-1019.06 -2429.82 -24) (-1019.06 -2429.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "225 174 0" + "groupid" "4209835" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "4209860" + "classname" "func_detail" + solid + { + "id" "4209861" + side + { + "id" "339908" + "plane" "(-808.908 -2427.82 152) (-808.908 -2250.82 152) (-800.91 -2250.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28.2378] 0.25" + "vaxis" "[0 -1 0 20.71] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339907" + "plane" "(-808.908 -2250.82 -24) (-808.908 -2427.82 -24) (-800.91 -2427.82 -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" + } + side + { + "id" "339906" + "plane" "(-808.91 -2427.82 -24) (-808.91 -2250.82 -24) (-808.91 -2250.82 152)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 744.955] 0.172855" + "vaxis" "[0 0 -1 442.182] 0.34375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339905" + "plane" "(-800.91 -2250.82 -24) (-800.91 -2427.82 -24) (-800.91 -2427.82 152)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 750.74] 0.172855" + "vaxis" "[0 0 -1 442.182] 0.34375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339904" + "plane" "(-808.91 -2250.82 -24) (-800.91 -2250.82 -24) (-800.91 -2250.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 12.2378] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339903" + "plane" "(-800.91 -2427.82 -24) (-808.906 -2427.82 -24) (-808.91 -2427.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 12.2378] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4209862" + side + { + "id" "339917" + "plane" "(-816.059 -2241.82 -24) (-812.059 -2250.82 -24) (-796.062 -2250.82 -24)" + "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" "339916" + "plane" "(-792.059 -2241.82 152) (-796.058 -2250.82 152) (-812.059 -2250.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20.71] 0.25" + "vaxis" "[-1 0 0 -60.2383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339915" + "plane" "(-792.059 -2241.82 -24) (-796.058 -2250.82 -24) (-796.058 -2250.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339914" + "plane" "(-812.059 -2250.82 -24) (-816.059 -2241.82 -24) (-816.059 -2241.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339913" + "plane" "(-816.061 -2241.82 -24) (-812.06 -2233.82 -24) (-812.061 -2233.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-0.447214 -0.894427 0 -286.362] 0.125" + "vaxis" "[0 0 -1 469.973] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339912" + "plane" "(-812.06 -2233.82 -24) (-804.06 -2230.82 -24) (-804.059 -2230.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339911" + "plane" "(-804.06 -2230.82 -24) (-796.059 -2233.82 -24) (-796.059 -2233.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339910" + "plane" "(-796.061 -2233.82 -24) (-792.059 -2241.82 -24) (-792.059 -2241.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339909" + "plane" "(-796.059 -2250.82 -24) (-812.06 -2250.82 -24) (-812.059 -2250.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4209863" + side + { + "id" "339926" + "plane" "(-812.062 -2427.82 -24) (-816.061 -2436.82 -24) (-812.06 -2444.82 -24)" + "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" "339925" + "plane" "(-816.058 -2436.82 152) (-812.057 -2427.82 152) (-796.06 -2427.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52.71] 0.25" + "vaxis" "[1 0 0 28.2383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339924" + "plane" "(-816.06 -2436.82 -24) (-812.06 -2427.82 -24) (-812.06 -2427.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-0.406137 -0.913812 0 -84.8657] 0.125" + "vaxis" "[0 0 -1 469.977] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339923" + "plane" "(-796.06 -2427.82 -24) (-792.06 -2436.82 -24) (-792.061 -2436.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339922" + "plane" "(-792.063 -2436.82 -24) (-796.061 -2444.82 -24) (-796.06 -2444.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339921" + "plane" "(-796.059 -2444.82 -24) (-804.062 -2447.82 -24) (-804.062 -2447.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339920" + "plane" "(-804.06 -2447.82 -24) (-812.059 -2444.82 -24) (-812.059 -2444.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339919" + "plane" "(-812.058 -2444.82 -24) (-816.057 -2436.82 -24) (-816.059 -2436.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339918" + "plane" "(-812.059 -2427.82 -24) (-796.06 -2427.82 -24) (-796.059 -2427.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "225 174 0" + "groupid" "4209859" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "4180554" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1784 -4567 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4180853" + "classname" "func_detail" + solid + { + "id" "4180851" + side + { + "id" "339558" + "plane" "(1712 -5856 176) (1864 -5856 176) (1864 -5872 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -203.998] 0.25" + "vaxis" "[-1 0 0 -183.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339557" + "plane" "(1712 -5872 160) (1864 -5872 160) (1864 -5856 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339556" + "plane" "(1712 -5856 176) (1712 -5872 176) (1712 -5872 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" "339555" + "plane" "(1864 -5856 160) (1864 -5872 160) (1864 -5872 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" "339554" + "plane" "(1864 -5856 176) (1712 -5856 176) (1712 -5856 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 -12] 0.25" + "vaxis" "[-1 0 0 -183.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339553" + "plane" "(1864 -5872 160) (1712 -5872 160) (1712 -5872 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "4180869" + "classname" "func_detail" + solid + { + "id" "4180865" + side + { + "id" "339570" + "plane" "(1712 -5856 64) (1864 -5856 64) (1864 -5872 64)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339569" + "plane" "(1712 -5872 48) (1864 -5872 48) (1864 -5856 48)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339568" + "plane" "(1712 -5856 64) (1712 -5872 64) (1712 -5872 48)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339567" + "plane" "(1864 -5856 48) (1864 -5872 48) (1864 -5872 64)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339566" + "plane" "(1864 -5856 64) (1712 -5856 64) (1712 -5856 48)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339565" + "plane" "(1864 -5872 48) (1712 -5872 48) (1712 -5872 64)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "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" "4180849" + side + { + "id" "339576" + "plane" "(1864 -5872 176) (1864 -5856 176) (1880 -5856 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339575" + "plane" "(1864 -5856 48) (1864 -5872 48) (1880 -5872 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339574" + "plane" "(1864 -5872 48) (1864 -5856 48) (1864 -5856 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339573" + "plane" "(1880 -5856 48) (1880 -5872 48) (1880 -5872 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339572" + "plane" "(1880 -5872 48) (1864 -5872 48) (1864 -5872 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339571" + "plane" "(1864 -5856 48) (1880 -5856 48) (1880 -5856 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4180844" + side + { + "id" "339582" + "plane" "(1712 -5859 160) (1864 -5859 160) (1864 -5869 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" "339581" + "plane" "(1712 -5869 64) (1864 -5869 64) (1864 -5859 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" "339580" + "plane" "(1712 -5859 160) (1712 -5869 160) (1712 -5869 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" "339579" + "plane" "(1864 -5859 64) (1864 -5869 64) (1864 -5869 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" "339578" + "plane" "(1864 -5859 160) (1712 -5859 160) (1712 -5859 64)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON3" + "uaxis" "[-1 0 0 269.474] 0.148438" + "vaxis" "[0 0 -1 341.333] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339577" + "plane" "(1864 -5869 64) (1712 -5869 64) (1712 -5869 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +hidden +{ + entity + { + "id" "4181056" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2054 -4388 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4181068" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2054 -4380 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4181127" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2306 -4380 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4181131" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2306 -4388 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4181159" + "classname" "func_detail" + solid + { + "id" "4181156" + side + { + "id" "339606" + "plane" "(2464 -4272 208) (2464 -4208 208) (2496 -4208 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" "339605" + "plane" "(2464 -4208 144) (2464 -4272 144) (2496 -4272 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[0 1 0 60] 0.125" + "vaxis" "[-1 0 0 -332] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "339604" + "plane" "(2464 -4272 144) (2464 -4208 144) (2464 -4208 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" "339603" + "plane" "(2496 -4208 144) (2496 -4272 144) (2496 -4272 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" "339602" + "plane" "(2464 -4208 144) (2496 -4208 144) (2496 -4208 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" "339601" + "plane" "(2496 -4272 144) (2464 -4272 144) (2464 -4272 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "4181189" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2230 -4374 317" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4181211" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2130 -4374 317" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4166845" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2443 -4177 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4152883" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1439 -4003 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4152887" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1447.38 -4109.92 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4152896" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1483 -4181 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4153094" + "classname" "prop_static" + "angles" "0 292 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2078 -3984 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4153106" + "classname" "prop_static" + "angles" "0 292 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3988 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4153110" + "classname" "prop_static" + "angles" "0 292 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2149 -3987 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4153114" + "classname" "prop_static" + "angles" "0 292 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2180 -3987 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4137150" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skydome_001/nuke_skydome_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9048 8873 5148" + editor + { + "color" "210 139 0" + "groupid" "4137619" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4137162" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skydome_001/nuke_skydome_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9047 8871 5148" + editor + { + "color" "210 139 0" + "groupid" "4137619" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4137624" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skydome_001/nuke_skydome_003.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9151 8872 5260" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138576" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8175.65 8194.92 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138580" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8164.85 8443.33 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138588" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8134.6 8676.45 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138637" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8130.9 9297.21 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138641" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8141.7 9048.8 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138645" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8100.65 9530.33 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138649" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8098.3 10087.2 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138653" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8109.1 9838.83 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138657" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8068.05 10320.4 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138661" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8137.56 7507.07 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138665" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8148.36 7258.66 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138669" + "classname" "prop_static" + "angles" "0 278 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_powerline.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8107.31 7740.19 5139.48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4138875" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1377.8 -4053.49 19" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "4139026" + "classname" "func_detail" + solid + { + "id" "4139012" + side + { + "id" "339373" + "plane" "(2124 -4208 -8) (2124 -4032 -8) (2136 -4032 -8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 96] 0.125" + "vaxis" "[1 0 0 -404.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339372" + "plane" "(2124 -4032 -16) (2124 -4208 -16) (2136 -4208 -16)" + "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" "339371" + "plane" "(2124 -4208 -16) (2124 -4032 -16) (2124 -4032 -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" "339370" + "plane" "(2136 -4032 -16) (2136 -4208 -16) (2136 -4208 -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" "339369" + "plane" "(2124 -4032 -16) (2136 -4032 -16) (2136 -4032 -8)" + "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" "339368" + "plane" "(2136 -4208 -16) (2124 -4208 -16) (2124 -4208 -8)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4139013" + side + { + "id" "339379" + "plane" "(2112 -4208 0) (2112 -4032 0) (2124 -4032 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 96] 0.125" + "vaxis" "[1 0 0 -474.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339378" + "plane" "(2112 -4032 -8) (2112 -4208 -8) (2124 -4208 -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" "339377" + "plane" "(2112 -4208 -8) (2112 -4032 -8) (2112 -4032 0)" + "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" "339376" + "plane" "(2124 -4032 -8) (2124 -4208 -8) (2124 -4208 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" "339375" + "plane" "(2112 -4032 -8) (2124 -4032 -8) (2124 -4032 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" + } + side + { + "id" "339374" + "plane" "(2124 -4208 -8) (2112 -4208 -8) (2112 -4208 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4046103" + side + { + "id" "339385" + "plane" "(2112 -3792 0) (2124 -3792 0) (2124 -3928 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 96] 0.125" + "vaxis" "[1 0 0 -474.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339384" + "plane" "(2112 -3928 -8) (2124 -3928 -8) (2124 -3792 -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" "339383" + "plane" "(2112 -3792 0) (2112 -3928 0) (2112 -3928 -8)" + "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" "339382" + "plane" "(2124 -3792 -8) (2124 -3928 -8) (2124 -3928 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" "339381" + "plane" "(2124 -3792 0) (2112 -3792 0) (2112 -3792 -8)" + "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" "339380" + "plane" "(2124 -3928 -8) (2112 -3928 -8) (2112 -3928 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4046110" + side + { + "id" "339391" + "plane" "(2124 -3792 -8) (2136 -3792 -8) (2136 -3928 -8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_01_COLOR" + "uaxis" "[0 1 0 96] 0.125" + "vaxis" "[1 0 0 -404.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339390" + "plane" "(2124 -3928 -16) (2136 -3928 -16) (2136 -3792 -16)" + "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" "339389" + "plane" "(2124 -3792 -8) (2124 -3928 -8) (2124 -3928 -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" "339388" + "plane" "(2136 -3792 -16) (2136 -3928 -16) (2136 -3928 -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" "339387" + "plane" "(2136 -3792 -8) (2124 -3792 -8) (2124 -3792 -16)" + "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" "339386" + "plane" "(2136 -3928 -16) (2124 -3928 -16) (2124 -3928 -8)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +hidden +{ + entity + { + "id" "4139054" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2035.14 -4181 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "4139091" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1432 -3966 18" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4116221" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8828.67 8280.64 5152" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4116229" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8859.66 8228.33 5152" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4116247" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9402 8647 5152.25" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4116251" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9473 8599 5152.25" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "4116255" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9439 8647 5152.25" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +entity +{ + "id" "4102420" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-251 -4800 69.5616" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +hidden +{ + entity + { + "id" "4102467" + "classname" "prop_static" + "angles" "0 346 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container.mdl" + "renderamt" "255" + "rendercolor" "133 133 133" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2311 -4168 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "4088511" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "140 -2198.88 -25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "4088696" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_locker_bench/nuke_locker_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1905 -2809 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "4074172" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-329.892 -6020.48 332" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +hidden +{ + entity + { + "id" "4074176" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_cable_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-329.882 -6020.48 272.203" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +hidden +{ + entity + { + "id" "4074180" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-328.01 -5988 332" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +hidden +{ + entity + { + "id" "4074184" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_cable_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-328 -5988 272.203" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "4074235" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "53 -5904 151" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074260" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-23 -5904 151" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074265" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "108 -5760 150" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074280" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "102 -5836 150" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074285" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-240 -5720 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074290" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-316 -5720 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074295" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-516 -5756 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074305" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-432 -5724 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074310" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-592 -5804 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074336" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-648 -5884 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074341" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-652 -5992 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074346" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-644 -6100 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074351" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-544 -6224 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074356" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-440 -6256 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074361" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-312 -6258 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074366" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-236 -6258 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074371" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "179 235 244 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-72 -5964 160" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "4074382" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "40 -5801.98 182" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "4074391" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "-69 -5801.98 182" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "4045949" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2638 -4101 -10" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4045953" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2638 -4165 -10" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4045973" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_block.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2638 -4101 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4046016" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_block.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2638 -4160 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4046024" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2638 -4221 -10" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4046081" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_block.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2638 -4216 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "4046483" + "classname" "prop_static" + "angles" "0 95 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_street/trashbin01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2400 -4187.9 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4046548" + "classname" "prop_static" + "angles" "0 87 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_street/trashbin01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2361.87 -4187 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4046556" + "classname" "prop_static" + "angles" "0 341.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_junk/trashcluster01a_corner.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2481.68 -4196 -9.51446" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "4046643" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_exit_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2608 -3952 136" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4046703" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2608 -3872 -8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4046719" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2608 -3942 118.425" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "4046750" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2607 -3866 120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4046758" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_corner.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2607 -3872 116" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4046778" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2607 -3872 116" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4046798" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2607 -3872 84" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4046802" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2607 -3872 52" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "4046810" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_32.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2607 -3872 20" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "4032305" + "classname" "func_detail" + solid + { + "id" "3163839" + side + { + "id" "339157" + "plane" "(2792 -4352 32) (2464 -4352 32) (2464 -4264 32)" + "material" "STONE/HR_STONE/HR_PEBBLES_A" + "uaxis" "[0 -1 0 -576] 0.125" + "vaxis" "[-1 0 0 -512] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339156" + "plane" "(2792 -4264 -16) (2464 -4264 -16) (2464 -4352 -16)" + "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" "339155" + "plane" "(2464 -4264 -16) (2792 -4264 -16) (2792 -4264 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 488] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "339154" + "plane" "(2792 -4352 -16) (2464 -4352 -16) (2464 -4352 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" "339153" + "plane" "(2792 -4264 -16) (2792 -4352 -16) (2792 -4352 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" + } + side + { + "id" "339152" + "plane" "(2464 -4352 -16) (2464 -4264 -16) (2464 -4264 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "4032356" + "classname" "prop_static" + "angles" "0 355.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/fan_palm_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2704 -4288 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4032360" + "classname" "prop_static" + "angles" "0 265.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/fan_palm_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2760 -4304 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "4004894" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 0 -0" + "BasisOrigin" "260 -2542 74" + "BasisU" "0 1 0" + "BasisV" "0 -0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "306831" + "StartU" "0" + "StartV" "1" + "uv0" "-44.3646 -49.8838 0" + "uv1" "-44.3646 49.8838 0" + "uv2" "44.3646 49.8838 0" + "uv3" "44.3646 -49.8838 0" + "origin" "260 -2542 74" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "4004951" + "classname" "prop_static" + "angles" "0 94.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-133.111 -3500.25 24.6729" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4004959" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-99 -3502 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4004963" + "classname" "prop_static" + "angles" "0 169.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-138.901 -3443.95 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4004967" + "classname" "prop_static" + "angles" "0 128 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-143.522 -3369 25.2835" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4004975" + "classname" "prop_static" + "angles" "0 219.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-103.824 -3483 26.8411" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4004987" + "classname" "prop_static" + "angles" "0 247 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-104 -3419 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4004991" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-96 -3368 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4004995" + "classname" "prop_static" + "angles" "0 321 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-105 -3373 36" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "4005003" + "classname" "prop_static" + "angles" "0 182.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-109 -3445 36" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3976346" + "classname" "prop_dynamic" + "angles" "0 181.5 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "3460 -2444 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3976350" + "classname" "prop_static" + "angles" "0 181.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3460 -2444 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3976362" + "classname" "prop_dynamic" + "angles" "0 181.5 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "3460 -2812 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3976366" + "classname" "prop_static" + "angles" "0 181.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3460 -2812 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3976378" + "classname" "prop_static" + "angles" "0 181.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3456 -3184 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3976382" + "classname" "prop_dynamic" + "angles" "0 181.5 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "3456 -3184 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3976386" + "classname" "prop_static" + "angles" "0 181.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3456 -3552 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3976390" + "classname" "prop_dynamic" + "angles" "0 181.5 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase_64_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "3456 -3552 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "3976481" + "classname" "func_detail" + solid + { + "id" "3976482" + side + { + "id" "338469" + "plane" "(2609 -3944 87) (2609 -3900 87) (2610 -3900 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338468" + "plane" "(2610 -3944 -1) (2610 -3900 -1) (2609 -3900 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338467" + "plane" "(2609 -3944 -1) (2609 -3900 -1) (2609 -3900 87)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 49] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338466" + "plane" "(2610 -3900 -1) (2610 -3944 -1) (2610 -3944 87)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 49] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338465" + "plane" "(2609 -3900 -1) (2610 -3900 -1) (2610 -3900 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 33] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338464" + "plane" "(2610 -3944 -1) (2609 -3944 -1) (2609 -3944 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 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" "3976483" + side + { + "id" "338475" + "plane" "(2609 -4004 87) (2609 -3960 87) (2610 -3960 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338474" + "plane" "(2610 -4004 0) (2610 -3960 0) (2609 -3960 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338473" + "plane" "(2609 -4004 0) (2609 -3960 0) (2609 -3960 87)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 49] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338472" + "plane" "(2610 -3960 0) (2610 -4004 0) (2610 -4004 87)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 49] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338471" + "plane" "(2610 -4004 0) (2609 -4004 0) (2609 -4004 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 0 -1 33] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338470" + "plane" "(2609 -3960 0) (2610 -3960 0) (2610 -3960 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "3976484" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2608 -3892 -15.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "3976488" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2608 -4012 -15.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "3976492" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2616 -3952 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3977196" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3776 -3892 89" + editor + { + "color" "102 103 0" + "groupid" "3977195" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "3977200" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "3770.96 -3909 89" + editor + { + "color" "102 103 0" + "groupid" "3977195" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "3977203" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3775.96 -3909 89" + editor + { + "color" "102 103 0" + "groupid" "3977195" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "3977207" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3749.96 -3909 89" + editor + { + "color" "102 103 0" + "groupid" "3977195" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "3977212" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3775.96 -3925 89" + editor + { + "color" "102 103 0" + "groupid" "3977195" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "3977216" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3771.96 -3925 39" + editor + { + "color" "102 103 0" + "groupid" "3977195" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "3977220" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3776 -3892 51.3606" + editor + { + "color" "102 103 0" + "groupid" "3977195" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "3977224" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3776 -3892 51" + editor + { + "color" "102 103 0" + "groupid" "3977195" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "3977361" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3776 -2881 89" + editor + { + "color" "102 103 0" + "groupid" "3977360" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "3977365" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "3770.96 -2898 89" + editor + { + "color" "102 103 0" + "groupid" "3977360" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "3977368" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3775.96 -2898 89" + editor + { + "color" "102 103 0" + "groupid" "3977360" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "3977372" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3749.96 -2898 89" + editor + { + "color" "102 103 0" + "groupid" "3977360" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "3977377" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3775.96 -2914 89" + editor + { + "color" "102 103 0" + "groupid" "3977360" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "3977381" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3771.96 -2914 39" + editor + { + "color" "102 103 0" + "groupid" "3977360" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "3977385" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3776 -2881 51.3606" + editor + { + "color" "102 103 0" + "groupid" "3977360" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "3977389" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3776 -2881 51" + editor + { + "color" "102 103 0" + "groupid" "3977360" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "3977508" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3744 -2832 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -14268]" + } + } +} +hidden +{ + entity + { + "id" "3977583" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3760 -3504 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -14268]" + } + } +} +hidden +{ + entity + { + "id" "3977701" + "classname" "prop_static" + "angles" "0 318.5 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_notebook2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2366 -2766 49" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "3962183" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1048 -5112 0.25" + editor + { + "color" "255 255 0" + "visgroupid" "27" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962191" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1048 -4798 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962207" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1041 -5592 12" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962223" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "697 -4640 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962235" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "426 -4640 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962251" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "964 -4640 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962263" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "429 -4041 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962275" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "697 -4041 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962287" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "965 -4041 0.250008" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962357" + "classname" "prop_static" + "angles" "0 323.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/apollo_sphere.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "755 -6192 -11" + editor + { + "color" "157 254 0" + "groupid" "3962579" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962404" + "classname" "prop_static" + "angles" "0 323.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/hedge_round001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "755 -6192 0.249992" + editor + { + "color" "157 254 0" + "groupid" "3962579" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "3962543" + "classname" "func_detail" + solid + { + "id" "3962534" + side + { + "id" "338397" + "plane" "(697.511 -6049.54 0.250247) (647.932 -6083.27 0.250247) (614.62 -6132.97 0.250247)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338396" + "plane" "(756.387 -6038 2) (814.489 -6049.54 2) (864.068 -6083.27 2)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338395" + "plane" "(756.387 -6038 0.250247) (814.489 -6049.54 0.250247) (814.489 -6049.54 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338394" + "plane" "(814.489 -6049.54 0.250247) (864.068 -6083.27 0.250247) (864.068 -6083.27 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338393" + "plane" "(864.068 -6083.27 0.250247) (897.38 -6132.97 0.250247) (897.38 -6132.97 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338392" + "plane" "(897.38 -6132.97 0.250247) (909 -6191.56 0.250247) (909 -6191.56 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338391" + "plane" "(909 -6191.56 0.250247) (897.38 -6251.03 0.250247) (897.38 -6251.03 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338390" + "plane" "(897.38 -6251.03 0.250247) (864.068 -6300.73 0.250247) (864.068 -6300.73 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338389" + "plane" "(864.068 -6300.73 0.250247) (814.489 -6334.46 0.250247) (814.489 -6334.46 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338388" + "plane" "(814.489 -6334.46 0.250247) (756.387 -6346 0.250247) (756.387 -6346 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338387" + "plane" "(756.387 -6346 0.250247) (697.511 -6334.46 0.250247) (697.511 -6334.46 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338386" + "plane" "(697.511 -6334.46 0.250247) (647.932 -6300.73 0.250247) (647.932 -6300.73 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338385" + "plane" "(647.932 -6300.73 0.250247) (614.62 -6251.03 0.250247) (614.62 -6251.03 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338384" + "plane" "(614.62 -6251.03 0.250247) (603 -6191.56 0.250247) (603 -6191.56 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338383" + "plane" "(603 -6191.56 0.250247) (614.62 -6132.97 0.250247) (614.62 -6132.97 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338382" + "plane" "(614.62 -6132.97 0.250247) (647.932 -6083.27 0.250247) (647.932 -6083.27 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338381" + "plane" "(647.932 -6083.27 0.250247) (697.511 -6049.54 0.250247) (697.511 -6049.54 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338380" + "plane" "(697.511 -6049.54 0.250247) (756.387 -6038 0.250247) (756.387 -6038 2)" + "material" "CONCRETE/BLEND_BLACKTOP_GRASS_01" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "157 254 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "157 254 0" + "groupid" "3962579" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "3962771" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/pillar001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2201 -4177 0.249992" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3962785" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-592 -3056 191.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3962797" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-592 -3088 191.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3962805" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-792 -2912 27" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3962833" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-866 -2912 27" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3962837" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-718 -2912 27" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3962921" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1429 -2896 17" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3962925" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1510 -2896 17" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3962929" + "classname" "prop_static" + "angles" "90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1587 -2896 17" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3935263" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2176 -5238 77" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "3935290" + "classname" "prop_static" + "angles" "0 160 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2243 -4908 81.6578" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "3935457" + "classname" "prop_static" + "angles" "0 148 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1457 -1833 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935465" + "classname" "prop_static" + "angles" "0 333 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1467 -1970 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935473" + "classname" "prop_static" + "angles" "0 219.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1470 -2075 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935485" + "classname" "prop_static" + "angles" "0 292 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1457 -2064 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935505" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1453 -1998 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935513" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1457 -1922 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935517" + "classname" "prop_static" + "angles" "0 292 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1502 -2064 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935521" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1498 -1998 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935525" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1502 -1922 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935529" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1460 -1865 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935533" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1505 -1865 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935537" + "classname" "prop_static" + "angles" "0 290.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1502 -1800.21 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935541" + "classname" "prop_static" + "angles" "0 290.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1457.01 -1801 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935565" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1463 -1888 8.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935574" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1464 -2064 8.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3935578" + "classname" "prop_static" + "angles" "0 269.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1476 -1922 8.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "3921198" + "classname" "info_overlay" + "angles" "0 268 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1305 -2468 -40" + "BasisU" "-0.0348995 -0.999391 0" + "BasisV" "0.999391 -0.0348995 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_assault/assault_grate_decal02" + "sides" "368635" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "1305 -2468 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "3921204" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1074 -2664 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_assault/assault_grate_decal02" + "sides" "368635" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "1074 -2664 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3921210" + "classname" "info_overlay" + "angles" "0 90 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1291 -2929 16" + "BasisU" "-4.37114e-08 1 0" + "BasisV" "-1 -4.37114e-08 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_assault/assault_grate_decal02" + "sides" "265799" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "1291 -2929 16" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "3921240" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "171.31 -4897.46 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_assault/assault_grate_decal02" + "sides" "264680" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "171.31 -4897.46 -1.97458" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "3905851" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_03.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "109 -5799 22.25" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3905871" + "classname" "prop_static" + "angles" "0 293 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "669 -2077 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3905879" + "classname" "prop_static" + "angles" "0 307 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "746 -2087 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3905891" + "classname" "prop_static" + "angles" "0 114.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "788 -2075 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3905930" + "classname" "prop_static" + "angles" "0 218.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_05.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-592 -5802 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3905954" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_03.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-392 -5979 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906039" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "106 -5854 47" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906082" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "251 248 142" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "106 -5819 47" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906102" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "106 -5819 98" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906141" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt3.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "106 -5854 98" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906160" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie2.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "107 -5778 98" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906164" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "2000" + "fademindist" "1000" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_sweater.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "107 -5743 98" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906210" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "2000" + "fademindist" "1000" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie1.mdl" + "renderamt" "255" + "rendercolor" "200 230 253" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "107 -5743 47" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906214" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "190 112 119" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "107 -5778 47" + editor + { + "color" "230 187 0" + "groupid" "4695314" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906265" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "2000" + "fademindist" "1000" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt3.mdl" + "renderamt" "255" + "rendercolor" "134 134 134" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-66 -5982 108" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906269" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "2000" + "fademindist" "1000" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt2.mdl" + "renderamt" "255" + "rendercolor" "221 121 106" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-66 -5947 108" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906273" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "2000" + "fademindist" "1000" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "105 185 233" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-66 -5947 57" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906277" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "2000" + "fademindist" "1000" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "224 214 84" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-66 -5982 57" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906349" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-236 -6268 40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906384" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-234 -6254 40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906392" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-235 -6261 40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906396" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "187 135 130" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-314 -6253 40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906400" + "classname" "prop_static" + "angles" "0 1 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "187 135 130" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-311 -6259 40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906404" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "187 135 130" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-310 -6266 40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906460" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_cap1.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-651 -5993 66" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906519" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_cap2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-651 -5993 87" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906546" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_cap2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-651 -5992 107" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906558" + "classname" "prop_static" + "angles" "0 327.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_04.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-547 -6226 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906591" + "classname" "prop_static" + "angles" "0 192.5 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_07.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-562 -6100 32.274" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "3906593" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt2.mdl" + "renderamt" "255" + "rendercolor" "221 121 106" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-5 -5909 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906597" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt3.mdl" + "renderamt" "255" + "rendercolor" "134 134 134" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-40 -5909 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906649" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_sweater.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "71 -5908 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906653" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie2.mdl" + "renderamt" "255" + "rendercolor" "100 139 230" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "36 -5908 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906707" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie1.mdl" + "renderamt" "255" + "rendercolor" "164 164 164" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "71 -5908 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906711" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "77 77 77" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "36 -5908 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906759" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "225 225 225" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-40 -5909 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906763" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie2.mdl" + "renderamt" "255" + "rendercolor" "164 164 164" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-5 -5909 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906901" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "68 68 68" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-650 -6080 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906953" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "200 200 200" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-650 -6115 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3906965" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt2.mdl" + "renderamt" "255" + "rendercolor" "87 219 192" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-650 -6038 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907008" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_cap2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-651 -5888.32 87" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907028" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_cap2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-651 -5888.32 107" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907048" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie2.mdl" + "renderamt" "255" + "rendercolor" "68 68 68" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-650 -6080 107" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907052" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie1.mdl" + "renderamt" "255" + "rendercolor" "200 200 200" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-650 -6115 107" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907122" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-431.184 -5728.07 69" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907126" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-431.785 -5721.03 69" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907130" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "249 247 217" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-432.385 -5713.98 69" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907230" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -5727.09 87" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907234" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-432.6 -5720.05 87" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907238" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-433.201 -5713 87" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907302" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "105 152 228" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-433.201 -5712.91 107" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907306" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "105 152 228" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-432.6 -5719.95 107" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907310" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_mugs.mdl" + "renderamt" "255" + "rendercolor" "105 152 228" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-432 -5727 107" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907362" + "classname" "prop_static" + "angles" "0 222.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie2.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-578 -5793 107" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907390" + "classname" "prop_static" + "angles" "0 222.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_sweater.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-605 -5814 107" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907409" + "classname" "prop_static" + "angles" "0 222.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_tshirt.mdl" + "renderamt" "255" + "rendercolor" "115 187 221" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-605 -5814 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907413" + "classname" "prop_static" + "angles" "0 222.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_hoodie1.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-578 -5793 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3907502" + "classname" "prop_static" + "angles" "0 280 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "561 -2814 -36" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3907594" + "classname" "prop_static" + "angles" "0 6.49999 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "855 -3411 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3907632" + "classname" "prop_static" + "angles" "0 182 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1412 -2639 3.05784" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3907640" + "classname" "prop_static" + "angles" "0 92 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1463.35 -2597 -8.19244" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3907648" + "classname" "prop_static" + "angles" "0 105.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1385.35 -2683 -8.19244" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3907660" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1413 -2598 -1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3907664" + "classname" "prop_static" + "angles" "0 245 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1380.85 -2635.75 -7.92325" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3907688" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1511 -2578 -1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3907696" + "classname" "prop_static" + "angles" "0 276.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1371 -2669 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3907704" + "classname" "prop_static" + "angles" "0 55 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1451 -2588 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3907724" + "classname" "prop_static" + "angles" "0 276.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1392 -2613 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3907770" + "classname" "prop_static" + "angles" "0 205.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1360 -2717 -1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "3907798" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "632 -2380 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "372796" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "632 -2380 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "3907804" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "632 -2409 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "372796" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "632 -2409 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "3907822" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "1450.06 -2143.6 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "279425" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "1450.06 -2143.6 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "3907828" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1492 -2143 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "279425" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "1492 -2143 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "3907840" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "918 -3406 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "278685" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "918 -3406 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "3907852" + "classname" "info_overlay" + "angles" "0 4 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-224 -3914 32" + "BasisU" "0.997564 0.0697565 0" + "BasisV" "-0.0697565 0.997564 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "378175" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-224 -3914 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +entity +{ + "id" "3907858" + "classname" "info_overlay" + "angles" "0 3.5 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-260 -3916 32" + "BasisU" "0.998135 0.0610485 0" + "BasisV" "-0.0610485 0.998135 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "378175" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-260 -3916 32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "3907870" + "classname" "info_overlay" + "BasisNormal" "0 -0 1" + "BasisOrigin" "-624.675 -3261.6 0" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "340767" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-624.675 -3261.6 7.62939e-06" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "3907876" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -0 1" + "BasisOrigin" "-588 -3261 0" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "340767" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-588 -3261 7.62939e-06" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10500]" + } +} +entity +{ + "id" "3907900" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-202.284 -5409.92 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "264674" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-202.284 -5409.92 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +entity +{ + "id" "3907906" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "-202 -5379 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "264674" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "-202 -5379 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12000]" + } +} +entity +{ + "id" "3907918" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "352.222 -5494.95 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "336494" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "352.222 -5494.95 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +entity +{ + "id" "3907924" + "classname" "info_overlay" + "BasisNormal" "-0 0 1" + "BasisOrigin" "616.592 -5501.59 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "336494" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "616.592 -5501.59 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13000]" + } +} +entity +{ + "id" "3907930" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "954.665 -5378.23 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "371098" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "954.665 -5378.23 -7.62939e-06" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +entity +{ + "id" "3907936" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "954.472 -5347.24 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "371098" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "954.472 -5347.24 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14000]" + } +} +entity +{ + "id" "3907948" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "400 -4668.68 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "108419" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "400 -4668.68 -7.62939e-06" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "3907984" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "2071 -3871 0" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "337052" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "2071 -3871 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "3907990" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "2071 -3837 7.62939e-06" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalmetalgrate007a" + "sides" "337052" + "StartU" "0" + "StartV" "1" + "uv0" "-16 -16 0" + "uv1" "-16 16 0" + "uv2" "16 16 0" + "uv3" "16 -16 0" + "origin" "2071 -3837 7.62939e-06" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +hidden +{ + entity + { + "id" "3892971" + "classname" "prop_static" + "angles" "0 192.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_04.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-431 -5722 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3880044" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_05.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-66 -5965 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "3867124" + "classname" "func_detail" + solid + { + "id" "3867060" + side + { + "id" "338053" + "plane" "(-776.198 -4304.48 -76) (-742.107 -4348.91 -76) (-750.04 -4355 -76)" + "material" "CS_APOLLO/DECALS/HUBBLE" + "uaxis" "[-0.562137 0.827044 0 992.375] 0.125" + "vaxis" "[0.827044 0.562137 0 498.889] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338052" + "plane" "(-731 -4340.39 -224) (-765.091 -4295.96 -224) (-784.131 -4310.57 -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" "338051" + "plane" "(-750.04 -4355 -76) (-750.04 -4355 -224) (-784.131 -4310.57 -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" "338050" + "plane" "(-731 -4340.39 -224) (-742.107 -4348.91 -76) (-776.198 -4304.48 -76)" + "material" "CS_APOLLO/DECALS/HUBBLE" + "uaxis" "[-0.606849 0.792737 -0.057467 -501.585] 0.125" + "vaxis" "[0.0504658 -0.033726 -0.998156 -361.269] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338049" + "plane" "(-784.131 -4310.57 -76) (-784.131 -4310.57 -224) (-765.091 -4295.96 -224)" + "material" "CS_APOLLO/DECALS/HUBBLE" + "uaxis" "[-0.78165 -0.605145 -0.151072 -629.199] 0.125" + "vaxis" "[0.165167 0.032741 -0.985722 87.3838] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338048" + "plane" "(-750.04 -4355 -224) (-750.04 -4355 -76) (-742.107 -4348.91 -76)" + "material" "CS_APOLLO/DECALS/HUBBLE" + "uaxis" "[0.790062 0.611914 0.0369238 -490] 0.125" + "vaxis" "[-0.0164538 0.081377 -0.996548 175] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "3867131" + "classname" "func_detail" + solid + { + "id" "3867132" + side + { + "id" "338065" + "plane" "(190 -4127 52) (237 -4175 52) (224.867 -4177.19 52)" + "material" "CS_APOLLO/DECALS/HUBBLE" + "uaxis" "[-0.499924 0.508699 -0.700929 -879.129] 0.125" + "vaxis" "[-0.713231 -0.700929 0 -28.2285] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338064" + "plane" "(237 -4175 -96) (190.001 -4127 -96) (175.637 -4147.06 -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" "338063" + "plane" "(237 -4175 52) (190 -4127 52) (190.001 -4127 -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" "338062" + "plane" "(185.616 -4137.25 52) (224.867 -4177.19 52) (214.883 -4187 -96)" + "material" "CS_APOLLO/DECALS/HUBBLE" + "uaxis" "[0 1 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338061" + "plane" "(224.867 -4177.19 52) (237 -4175 52) (237 -4175 -96)" + "material" "CS_APOLLO/DECALS/HUBBLE" + "uaxis" "[-0.975639 0.1792 0.126556 -114.617] 0.125" + "vaxis" "[-0.11115 0.0935861 -0.989387 250.955] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338060" + "plane" "(190 -4127 52) (185.616 -4137.25 52) (175.637 -4147.06 -96)" + "material" "CS_APOLLO/DECALS/HUBBLE" + "uaxis" "[0.388356 0.921271 -0.0209673 -89.7319] 0.125" + "vaxis" "[0.020442 -0.0313603 -1 -44.6099] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "3853126" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1542 -1483 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "3853254" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_fences/dust_chainlink_fence_001_post.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "933 -1740 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +entity +{ + "id" "3853366" + "classname" "func_detail" + solid + { + "id" "3853367" + side + { + "id" "337789" + "plane" "(1139 -3098 82) (1138 -3098 82) (1138 -2930 82)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337788" + "plane" "(1139 -2930 -6) (1138 -2930 -6) (1138 -3098 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337787" + "plane" "(1139 -3098 -6) (1138 -3098 -6) (1138 -3098 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.002] 0.25" + "vaxis" "[0 0 -1 -14.1899] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337786" + "plane" "(1138 -2930 -6) (1139 -2930 -6) (1139 -2930 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.002] 0.25" + "vaxis" "[0 0 -1 -14.1899] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337785" + "plane" "(1138 -3098 -6) (1138 -2930 -6) (1138 -2930 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 -14.1899] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337784" + "plane" "(1139 -2930 -6) (1139 -3098 -6) (1139 -3098 82)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 -14.1899] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "252 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "252 237 0" + "groupid" "3853365" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +hidden +{ + entity + { + "id" "3853721" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_512.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2223 -5884 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3853745" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_512.mdl" + "renderamt" "255" + "rendercolor" "159 159 159" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1711 -5884 383" + editor + { + "color" "136 109 0" + "groupid" "4323510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3853776" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "378 -5759 99.9161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "3853796" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "575 -5759 100" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "3853905" + "classname" "prop_static" + "angles" "0 181 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container.mdl" + "renderamt" "255" + "rendercolor" "133 133 133" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1996 -3612 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3853945" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-949 -6360 -48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3853965" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-950 -6282 -48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3853973" + "classname" "prop_static" + "angles" "0 202.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_trash_bag_pile.mdl" + "renderamt" "255" + "rendercolor" "107 107 107" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-952 -6229 -47.722" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3853993" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1034 -4908 0.250015" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3853997" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "970 -4653 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "3854036" + "classname" "prop_static" + "angles" "0 280 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "994.483 -4698.58 5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3854060" + "classname" "prop_static" + "angles" "0 114.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "998 -4809 5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3854064" + "classname" "prop_static" + "angles" "0 94 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1000 -4871 5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3854088" + "classname" "prop_static" + "angles" "0 293.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1004 -4863 -1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3854108" + "classname" "prop_static" + "angles" "0 293.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "999 -4761 -1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3854112" + "classname" "prop_static" + "angles" "0 293.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1002 -4806 -1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3854116" + "classname" "prop_static" + "angles" "0 293.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "997 -4697 -1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3854150" + "classname" "prop_static" + "angles" "0 307.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1017 -4927 0.238861" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3839252" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "652 -3823 0.249988" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3839256" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "652 -3825 0.249988" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3839338" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "88 88 88" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1346 -5775 400" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3839346" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "88 88 88" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1440 -5774 400" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3839484" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "985 -5389 0.249985" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "3839515" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1040 -5398 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3839580" + "classname" "prop_static" + "angles" "0 46.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1010 -5467 7.34837" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3839642" + "classname" "prop_static" + "angles" "0 31 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1012 -5556 7.34837" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3839654" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1014 -5467 -7" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3839674" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1015 -5520 -7" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3839682" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1019 -5567 -7" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3839693" + "classname" "prop_static" + "angles" "0 220.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1004 -5362 0.238861" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3839797" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1090 -5386 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "3839801" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1120 -5385 79.5143" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3839849" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1085 -5386 -3" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "3839881" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1054 -5386 -3" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "3839905" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1149 -5386 -3" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "3839931" + "classname" "prop_static" + "angles" "0 230.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_trash_bag_pile.mdl" + "renderamt" "255" + "rendercolor" "107 107 107" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1076 -5461 0.238861" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3839970" + "classname" "prop_static" + "angles" "0 217 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_trash_bag_pile.mdl" + "renderamt" "255" + "rendercolor" "239 176 58" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1079 -5414 0.238861" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3840120" + "classname" "prop_static" + "angles" "0 91.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container.mdl" + "renderamt" "255" + "rendercolor" "133 133 133" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1149 -5456 0.278001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3840175" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_garbage_container/dust_garbage_container_open.mdl" + "renderamt" "255" + "rendercolor" "133 133 133" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1136 -5538 0.278001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "3840218" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1941.86 -5846.93 400" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3840234" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2000 -5847 400" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3825484" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2478 -5758 33.2089" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3825503" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2399 -5743 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3825533" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1150.27 -6548.65 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3825537" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1248.56 -6259.45 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3825545" + "classname" "prop_static" + "angles" "0 346.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1184 -6368 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3825553" + "classname" "prop_static" + "angles" "0 34 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1127 -6266 -47.2528" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3825561" + "classname" "prop_static" + "angles" "0 34 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1101 -6450 -47.2528" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3811581" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-400 -6367 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3811601" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-524 -6332 -54" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3811605" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-438 -6336 -54" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3811609" + "classname" "prop_static" + "angles" "0 313.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-476 -6335 -52" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3811637" + "classname" "prop_static" + "angles" "0 132.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-566.924 -6331.24 -52" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3811641" + "classname" "prop_static" + "angles" "0 35 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-604.901 -6329.58 -54" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3811657" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-665 -6368 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "3812095" + "classname" "func_detail" + solid + { + "id" "3812118" + side + { + "id" "336980" + "plane" "(-992 -6143 -48) (-992 -6632 -48) (-976 -6632 -48)" + "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" "336979" + "plane" "(-992 -6632 16) (-992 -6632 -48) (-992 -6143 -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" "336978" + "plane" "(-976 -6143 -48) (-976 -6632 -48) (-976 -6632 16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336977" + "plane" "(-976 -6632 16) (-976 -6632 -48) (-992 -6632 -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" "336976" + "plane" "(-992 -6143 16) (-992 -6143 -48) (-976 -6143 -48)" + "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" "336975" + "plane" "(-992 -6632 16) (-992 -6143 16) (-976 -6143 16)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812117" + side + { + "id" "336974" + "plane" "(-992 -6632 24) (-992 -6632 16) (-992 -6143 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 -962] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336973" + "plane" "(-976 -6632 16) (-976 -6632 24) (-976 -6143 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -449.999] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336972" + "plane" "(-976 -6632 24) (-976 -6632 16) (-992 -6632 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" "336971" + "plane" "(-992 -6632 24) (-992 -6143 24) (-976 -6143 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336970" + "plane" "(-992 -6143 24) (-992 -6143 16) (-976 -6143 16)" + "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" "336969" + "plane" "(-992 -6143 16) (-992 -6632 16) (-976 -6632 16)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -10268]" + } +} +hidden +{ + entity + { + "id" "3812139" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-983 -6143 -19" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "3812175" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-983 -6399 -19" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "3812191" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1034 -6495 -46.7911" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3812203" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1042 -6237 -46.7911" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3812215" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-827.056 -5642.07 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "3812219" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "255 242 85" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-823.125 -5873.84 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "3812227" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9430.77 8318.03 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812239" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9418.78 8324.08 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812243" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9408.64 8304.53 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812247" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9421.05 8271.21 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812251" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9398.7 8277.2 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812259" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9429.52 8349.81 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812263" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9409.3 8343.13 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812267" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9459.42 8249.8 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812271" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9413.31 8240.52 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812275" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9448.06 8231.29 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812279" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9437.44 8401.07 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812283" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9429.51 8424.36 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812291" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9583.41 8581.77 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812299" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9560.69 8582.32 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812303" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9593.85 8600.17 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812307" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9567.81 8603.93 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812311" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9565 8560.29 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3812480" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_128.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1522 -4196 148" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3812511" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_128.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1510 -4196 148" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3785551" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "769 -6640 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +entity +{ + "id" "3772698" + "classname" "func_detail" + solid + { + "id" "2711434" + side + { + "id" "336172" + "plane" "(-51 -6117 344) (-51 -6109 344) (-43 -6109 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336171" + "plane" "(-51 -6109 182) (-51 -6117 182) (-43 -6117 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336170" + "plane" "(-51 -6117 182) (-51 -6109 182) (-51 -6109 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336169" + "plane" "(-43 -6109 182) (-43 -6117 182) (-43 -6117 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336168" + "plane" "(-51 -6109 182) (-43 -6109 182) (-43 -6109 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336167" + "plane" "(-43 -6117 182) (-51 -6117 182) (-51 -6117 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2711436" + side + { + "id" "336178" + "plane" "(-127 -6213 344) (-127 -6205 344) (-119 -6205 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336177" + "plane" "(-127 -6205 182) (-127 -6213 182) (-119 -6213 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336176" + "plane" "(-127 -6213 182) (-127 -6205 182) (-127 -6205 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336175" + "plane" "(-119 -6205 182) (-119 -6213 182) (-119 -6213 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336174" + "plane" "(-127 -6205 182) (-119 -6205 182) (-119 -6205 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336173" + "plane" "(-119 -6213 182) (-127 -6213 182) (-127 -6213 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2711432" + side + { + "id" "336184" + "plane" "(-19 -6000 344) (-19 -5992 344) (-11 -5992 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336183" + "plane" "(-19 -5992 212) (-19 -6000 212) (-11 -6000 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336182" + "plane" "(-19 -6000 212) (-19 -5992 212) (-19 -5992 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336181" + "plane" "(-11 -5992 212) (-11 -6000 212) (-11 -6000 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336180" + "plane" "(-19 -5992 212) (-11 -5992 212) (-11 -5992 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336179" + "plane" "(-11 -6000 212) (-19 -6000 212) (-19 -6000 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2711430" + side + { + "id" "336190" + "plane" "(-50 -5881 344) (-50 -5873 344) (-42 -5873 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336189" + "plane" "(-50 -5873 214) (-50 -5881 214) (-42 -5881 214)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336188" + "plane" "(-50 -5881 214) (-50 -5873 214) (-50 -5873 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336187" + "plane" "(-42 -5873 214) (-42 -5881 214) (-42 -5881 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336186" + "plane" "(-50 -5873 214) (-42 -5873 214) (-42 -5873 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336185" + "plane" "(-42 -5881 214) (-50 -5881 214) (-50 -5881 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2711429" + side + { + "id" "336196" + "plane" "(-127 -5779 344) (-127 -5771 344) (-119 -5771 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336195" + "plane" "(-127 -5771 199) (-127 -5779 199) (-119 -5779 199)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336194" + "plane" "(-127 -5779 199) (-127 -5771 199) (-127 -5771 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336193" + "plane" "(-119 -5771 199) (-119 -5779 199) (-119 -5779 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336192" + "plane" "(-127 -5771 199) (-119 -5771 199) (-119 -5771 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336191" + "plane" "(-119 -5779 199) (-127 -5779 199) (-127 -5779 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5079941" + side + { + "id" "350789" + "plane" "(-241 -5712 344) (-241 -5704 344) (-233 -5704 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350788" + "plane" "(-241 -5704 214) (-241 -5704 344) (-241 -5712 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -0.00190861] 0.125" + "vaxis" "[0 1 0 143.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350787" + "plane" "(-233 -5712 214) (-233 -5712 344) (-233 -5704 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00207157] 0.125" + "vaxis" "[0 -1 0 -31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350786" + "plane" "(-233 -5704 214) (-233 -5704 344) (-241 -5704 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350785" + "plane" "(-241 -5712 214) (-241 -5712 344) (-233 -5712 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350784" + "plane" "(-241 -5704 214) (-241 -5712 214) (-233 -5712 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080121" + side + { + "id" "350891" + "plane" "(-503 -5712 344) (-503 -5704 344) (-495 -5704 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350890" + "plane" "(-503 -5704 214) (-503 -5704 344) (-503 -5712 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -0.0018156] 0.125" + "vaxis" "[0 1 0 63.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350889" + "plane" "(-495 -5712 214) (-495 -5712 344) (-495 -5704 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00216739] 0.125" + "vaxis" "[0 -1 0 -175.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350888" + "plane" "(-495 -5704 214) (-495 -5704 344) (-503 -5704 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350887" + "plane" "(-503 -5712 214) (-503 -5712 344) (-495 -5712 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350886" + "plane" "(-503 -5704 214) (-503 -5712 214) (-495 -5712 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2711427" + side + { + "id" "336214" + "plane" "(-621 -5785 344) (-621 -5776 344) (-613 -5776 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336213" + "plane" "(-621 -5776 32) (-621 -5785 32) (-613 -5785 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" "336212" + "plane" "(-621 -5785 32) (-621 -5776 32) (-621 -5776 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336211" + "plane" "(-613 -5776 32) (-613 -5785 32) (-613 -5785 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336210" + "plane" "(-621 -5776 32) (-613 -5776 32) (-613 -5776 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336209" + "plane" "(-613 -5785 32) (-621 -5785 32) (-621 -5785 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080123" + side + { + "id" "350903" + "plane" "(-693 -5881 344) (-693 -5873 344) (-685 -5873 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350902" + "plane" "(-693 -5873 214) (-693 -5873 344) (-693 -5881 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350901" + "plane" "(-685 -5881 214) (-685 -5881 344) (-685 -5873 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350900" + "plane" "(-685 -5873 214) (-685 -5873 344) (-693 -5873 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350899" + "plane" "(-693 -5881 214) (-693 -5881 344) (-685 -5881 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350898" + "plane" "(-693 -5873 214) (-693 -5881 214) (-685 -5881 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080124" + side + { + "id" "350909" + "plane" "(-724 -6000 344) (-724 -5992 344) (-716 -5992 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350908" + "plane" "(-724 -5992 214) (-724 -5992 344) (-724 -6000 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350907" + "plane" "(-716 -6000 214) (-716 -6000 344) (-716 -5992 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350906" + "plane" "(-716 -5992 214) (-716 -5992 344) (-724 -5992 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350905" + "plane" "(-724 -6000 214) (-724 -6000 344) (-716 -6000 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350904" + "plane" "(-724 -5992 214) (-724 -6000 214) (-716 -6000 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080125" + side + { + "id" "350915" + "plane" "(-686 -6119 344) (-686 -6111 344) (-678 -6111 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350914" + "plane" "(-686 -6111 214) (-686 -6111 344) (-686 -6119 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350913" + "plane" "(-678 -6119 214) (-678 -6119 344) (-678 -6111 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350912" + "plane" "(-678 -6111 214) (-678 -6111 344) (-686 -6111 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350911" + "plane" "(-686 -6119 214) (-686 -6119 344) (-678 -6119 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350910" + "plane" "(-686 -6111 214) (-686 -6119 214) (-678 -6119 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2711441" + side + { + "id" "336238" + "plane" "(-617 -6213 344) (-617 -6205 344) (-609 -6205 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336237" + "plane" "(-617 -6205 32) (-617 -6213 32) (-609 -6213 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" "336236" + "plane" "(-617 -6213 32) (-617 -6205 32) (-617 -6205 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336235" + "plane" "(-609 -6205 32) (-609 -6213 32) (-609 -6213 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336234" + "plane" "(-617 -6205 32) (-609 -6205 32) (-609 -6205 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336233" + "plane" "(-609 -6213 32) (-617 -6213 32) (-617 -6213 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080126" + side + { + "id" "350921" + "plane" "(-503 -6280 344) (-503 -6272 344) (-495 -6272 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350920" + "plane" "(-503 -6272 214) (-503 -6272 344) (-503 -6280 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350919" + "plane" "(-495 -6280 214) (-495 -6280 344) (-495 -6272 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350918" + "plane" "(-495 -6272 214) (-495 -6272 344) (-503 -6272 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350917" + "plane" "(-503 -6280 214) (-503 -6280 344) (-495 -6280 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350916" + "plane" "(-503 -6272 214) (-503 -6280 214) (-495 -6280 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080127" + side + { + "id" "350927" + "plane" "(-372 -6312 344) (-372 -6304 344) (-364 -6304 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350926" + "plane" "(-372 -6304 214) (-372 -6304 344) (-372 -6312 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350925" + "plane" "(-364 -6312 214) (-364 -6312 344) (-364 -6304 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350924" + "plane" "(-364 -6304 214) (-364 -6304 344) (-372 -6304 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350923" + "plane" "(-372 -6312 214) (-372 -6312 344) (-364 -6312 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350922" + "plane" "(-372 -6304 214) (-372 -6312 214) (-364 -6312 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080128" + side + { + "id" "350933" + "plane" "(-241 -6280 344) (-241 -6272 344) (-233 -6272 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350932" + "plane" "(-241 -6272 214) (-241 -6272 344) (-241 -6280 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350931" + "plane" "(-233 -6280 214) (-233 -6280 344) (-233 -6272 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 79.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350930" + "plane" "(-233 -6272 214) (-233 -6272 344) (-241 -6272 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350929" + "plane" "(-241 -6280 214) (-241 -6280 344) (-233 -6280 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350928" + "plane" "(-241 -6272 214) (-241 -6280 214) (-233 -6280 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5079940" + side + { + "id" "350783" + "plane" "(-241 -5704 182) (-241 -5712 182) (-233 -5712 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350782" + "plane" "(-241 -5712 182) (-241 -5704 182) (-241 -5704 214)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -0.00190861] 0.125" + "vaxis" "[0 1 0 143.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350781" + "plane" "(-233 -5704 182) (-233 -5712 182) (-233 -5712 214)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00207157] 0.125" + "vaxis" "[0 -1 0 -31.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350780" + "plane" "(-241 -5704 182) (-233 -5704 182) (-233 -5704 214)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350779" + "plane" "(-233 -5712 182) (-241 -5712 182) (-241 -5712 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 186.555] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350778" + "plane" "(-241 -5712 214) (-241 -5704 214) (-233 -5704 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080130" + side + { + "id" "350945" + "plane" "(-503 -5712 214) (-503 -5712 182) (-503 -5704 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -0.0018156] 0.125" + "vaxis" "[0 1 0 63.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350944" + "plane" "(-495 -5704 214) (-495 -5704 182) (-495 -5712 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00216739] 0.125" + "vaxis" "[0 -1 0 -175.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350943" + "plane" "(-503 -5704 214) (-503 -5704 182) (-495 -5704 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350942" + "plane" "(-495 -5712 214) (-495 -5712 182) (-503 -5712 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350941" + "plane" "(-503 -5712 214) (-503 -5704 214) (-495 -5704 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350940" + "plane" "(-503 -5704 182) (-503 -5712 182) (-495 -5712 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080134" + side + { + "id" "350969" + "plane" "(-693 -5881 214) (-693 -5881 182) (-693 -5873 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350968" + "plane" "(-685 -5873 214) (-685 -5873 182) (-685 -5881 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 186.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350967" + "plane" "(-693 -5873 214) (-693 -5873 182) (-685 -5873 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350966" + "plane" "(-685 -5881 214) (-685 -5881 182) (-693 -5881 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350965" + "plane" "(-693 -5881 214) (-693 -5873 214) (-685 -5873 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350964" + "plane" "(-693 -5873 182) (-693 -5881 182) (-685 -5881 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080136" + side + { + "id" "350981" + "plane" "(-724 -6000 214) (-724 -6000 182) (-724 -5992 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350980" + "plane" "(-716 -5992 214) (-716 -5992 182) (-716 -6000 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 122.98] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350979" + "plane" "(-724 -5992 214) (-724 -5992 182) (-716 -5992 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350978" + "plane" "(-716 -6000 214) (-716 -6000 182) (-724 -6000 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350977" + "plane" "(-724 -6000 214) (-724 -5992 214) (-716 -5992 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350976" + "plane" "(-724 -5992 182) (-724 -6000 182) (-716 -6000 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080138" + side + { + "id" "350993" + "plane" "(-686 -6119 214) (-686 -6119 182) (-686 -6111 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350992" + "plane" "(-678 -6111 214) (-678 -6111 182) (-678 -6119 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[0 1 0 72.3931] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350991" + "plane" "(-686 -6111 214) (-686 -6111 182) (-678 -6111 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350990" + "plane" "(-678 -6119 214) (-678 -6119 182) (-686 -6119 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350989" + "plane" "(-686 -6119 214) (-686 -6111 214) (-678 -6111 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350988" + "plane" "(-686 -6111 182) (-686 -6119 182) (-678 -6119 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080140" + side + { + "id" "351005" + "plane" "(-503 -6280 214) (-503 -6280 182) (-503 -6272 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351004" + "plane" "(-495 -6272 214) (-495 -6272 182) (-495 -6280 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351003" + "plane" "(-503 -6272 214) (-503 -6272 182) (-495 -6272 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 189.647] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351002" + "plane" "(-495 -6280 214) (-495 -6280 182) (-503 -6280 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351001" + "plane" "(-503 -6280 214) (-503 -6272 214) (-495 -6272 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351000" + "plane" "(-503 -6272 182) (-503 -6280 182) (-495 -6280 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080142" + side + { + "id" "351017" + "plane" "(-372 -6312 214) (-372 -6312 182) (-372 -6304 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351016" + "plane" "(-364 -6304 214) (-364 -6304 182) (-364 -6312 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351015" + "plane" "(-372 -6304 214) (-372 -6304 182) (-364 -6304 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 189.824] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351014" + "plane" "(-364 -6312 214) (-364 -6312 182) (-372 -6312 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351013" + "plane" "(-372 -6312 214) (-372 -6304 214) (-364 -6304 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351012" + "plane" "(-372 -6304 182) (-372 -6312 182) (-364 -6312 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080144" + side + { + "id" "351029" + "plane" "(-241 -6280 214) (-241 -6280 182) (-241 -6272 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351028" + "plane" "(-233 -6272 214) (-233 -6272 182) (-233 -6280 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 79.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351027" + "plane" "(-241 -6272 214) (-241 -6272 182) (-233 -6272 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 120.351] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351026" + "plane" "(-233 -6280 214) (-233 -6280 182) (-241 -6280 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351025" + "plane" "(-241 -6280 214) (-241 -6272 214) (-233 -6272 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351024" + "plane" "(-241 -6272 182) (-241 -6280 182) (-233 -6280 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080129" + side + { + "id" "350939" + "plane" "(-503 -5704 32) (-503 -5712 32) (-495 -5712 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" "350938" + "plane" "(-503 -5712 182) (-503 -5712 32) (-503 -5704 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -0.0018156] 0.125" + "vaxis" "[0 1 0 63.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350937" + "plane" "(-495 -5704 182) (-495 -5704 32) (-495 -5712 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00216739] 0.125" + "vaxis" "[0 -1 0 -175.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350936" + "plane" "(-503 -5704 182) (-503 -5704 32) (-495 -5704 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350935" + "plane" "(-495 -5712 182) (-495 -5712 32) (-503 -5712 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350934" + "plane" "(-503 -5712 182) (-503 -5704 182) (-495 -5704 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080133" + side + { + "id" "350963" + "plane" "(-693 -5873 32) (-693 -5881 32) (-685 -5881 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" "350962" + "plane" "(-693 -5881 182) (-693 -5881 32) (-693 -5873 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350961" + "plane" "(-685 -5873 182) (-685 -5873 32) (-685 -5881 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350960" + "plane" "(-693 -5873 182) (-693 -5873 32) (-685 -5873 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350959" + "plane" "(-685 -5881 182) (-685 -5881 32) (-693 -5881 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350958" + "plane" "(-693 -5881 182) (-693 -5873 182) (-685 -5873 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080135" + side + { + "id" "350975" + "plane" "(-724 -5992 32) (-724 -6000 32) (-716 -6000 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" "350974" + "plane" "(-724 -6000 182) (-724 -6000 32) (-724 -5992 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350973" + "plane" "(-716 -5992 182) (-716 -5992 32) (-716 -6000 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350972" + "plane" "(-724 -5992 182) (-724 -5992 32) (-716 -5992 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350971" + "plane" "(-716 -6000 182) (-716 -6000 32) (-724 -6000 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350970" + "plane" "(-724 -6000 182) (-724 -5992 182) (-716 -5992 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080137" + side + { + "id" "350987" + "plane" "(-686 -6111 32) (-686 -6119 32) (-678 -6119 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" "350986" + "plane" "(-686 -6119 182) (-686 -6119 32) (-686 -6111 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350985" + "plane" "(-678 -6111 182) (-678 -6111 32) (-678 -6119 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350984" + "plane" "(-686 -6111 182) (-686 -6111 32) (-678 -6111 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350983" + "plane" "(-678 -6119 182) (-678 -6119 32) (-686 -6119 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350982" + "plane" "(-686 -6119 182) (-686 -6111 182) (-678 -6111 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080139" + side + { + "id" "350999" + "plane" "(-503 -6272 32) (-503 -6280 32) (-495 -6280 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" "350998" + "plane" "(-503 -6280 182) (-503 -6280 32) (-503 -6272 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350997" + "plane" "(-495 -6272 182) (-495 -6272 32) (-495 -6280 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350996" + "plane" "(-503 -6272 182) (-503 -6272 32) (-495 -6272 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350995" + "plane" "(-495 -6280 182) (-495 -6280 32) (-503 -6280 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350994" + "plane" "(-503 -6280 182) (-503 -6272 182) (-495 -6272 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080141" + side + { + "id" "351011" + "plane" "(-372 -6304 32) (-372 -6312 32) (-364 -6312 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" "351010" + "plane" "(-372 -6312 182) (-372 -6312 32) (-372 -6304 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351009" + "plane" "(-364 -6304 182) (-364 -6304 32) (-364 -6312 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351008" + "plane" "(-372 -6304 182) (-372 -6304 32) (-364 -6304 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351007" + "plane" "(-364 -6312 182) (-364 -6312 32) (-372 -6312 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351006" + "plane" "(-372 -6312 182) (-372 -6304 182) (-364 -6304 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080143" + side + { + "id" "351023" + "plane" "(-241 -6272 32) (-241 -6280 32) (-233 -6280 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" "351022" + "plane" "(-241 -6280 182) (-241 -6280 32) (-241 -6272 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351021" + "plane" "(-233 -6272 182) (-233 -6272 32) (-233 -6280 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 79.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351020" + "plane" "(-241 -6272 182) (-241 -6272 32) (-233 -6272 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351019" + "plane" "(-233 -6280 182) (-233 -6280 32) (-241 -6280 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351018" + "plane" "(-241 -6280 182) (-241 -6272 182) (-233 -6272 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +hidden +{ + entity + { + "id" "3745710" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_40.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1993 -2564 16" + editor + { + "color" "184 177 0" + "groupid" "3745805" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "3745736" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1951 -2564 16" + editor + { + "color" "184 177 0" + "groupid" "3745805" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "3746422" + "classname" "func_detail" + solid + { + "id" "3746394" + side + { + "id" "335686" + "plane" "(2162 -2540 208) (2166 -2540 208) (2166 -2560 208)" + "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" "335685" + "plane" "(2162 -2560 48) (2166 -2560 48) (2166 -2540 48)" + "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" "335684" + "plane" "(2166 -2540 48) (2166 -2560 48) (2166 -2560 208)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 182] 0.125" + "vaxis" "[0 1 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335683" + "plane" "(2162 -2540 48) (2166 -2540 48) (2166 -2540 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335682" + "plane" "(2166 -2560 48) (2162 -2560 48) (2162 -2560 208)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 182] 0.125" + "vaxis" "[1 0 0 -184.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335681" + "plane" "(2162 -2560 48) (2162 -2540 48) (2162 -2540 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3746393" + side + { + "id" "335692" + "plane" "(2156 -2540 208) (2162 -2540 208) (2162 -2560 208)" + "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" "335691" + "plane" "(2156 -2560 48) (2162 -2560 48) (2162 -2540 48)" + "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" "335690" + "plane" "(2156 -2540 48) (2162 -2540 48) (2162 -2540 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335689" + "plane" "(2162 -2560 48) (2156 -2560 48) (2156 -2560 208)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -359.356] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335688" + "plane" "(2156 -2560 48) (2156 -2540 48) (2156 -2540 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" "335687" + "plane" "(2162 -2540 48) (2162 -2560 48) (2162 -2560 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3746389" + side + { + "id" "335698" + "plane" "(2152 -2560 208) (2152 -2540 208) (2156 -2540 208)" + "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" "335697" + "plane" "(2152 -2540 48) (2152 -2560 48) (2156 -2560 48)" + "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" "335696" + "plane" "(2152 -2560 48) (2152 -2540 48) (2152 -2540 208)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 -1 229.998] 0.125" + "vaxis" "[0 1 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335695" + "plane" "(2152 -2540 48) (2156 -2540 48) (2156 -2540 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335694" + "plane" "(2156 -2560 48) (2152 -2560 48) (2152 -2560 208)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 182] 0.125" + "vaxis" "[1 0 0 -184.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335693" + "plane" "(2156 -2540 48) (2156 -2560 48) (2156 -2560 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3746062" + side + { + "id" "335704" + "plane" "(2152 -2560 208) (1936 -2560 208) (1936 -2540 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335703" + "plane" "(2152 -2540 202) (1936 -2540 202) (1936 -2560 202)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -169.998] 0.125" + "vaxis" "[0 1 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335702" + "plane" "(2152 -2540 202) (2152 -2560 202) (2152 -2560 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" "335701" + "plane" "(1936 -2540 208) (1936 -2560 208) (1936 -2560 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335700" + "plane" "(1936 -2540 202) (2152 -2540 202) (2152 -2540 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335699" + "plane" "(1936 -2560 208) (2152 -2560 208) (2152 -2560 202)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -169.998] 0.125" + "vaxis" "[0 0 -1 -184.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3746063" + side + { + "id" "335710" + "plane" "(1942 -2560 202) (1936 -2560 202) (1936 -2540 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335709" + "plane" "(1942 -2540 48) (1936 -2540 48) (1936 -2560 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" "335708" + "plane" "(1942 -2540 48) (1942 -2560 48) (1942 -2560 202)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -586] 0.125" + "vaxis" "[0 1 0 -9] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335707" + "plane" "(1936 -2540 202) (1936 -2560 202) (1936 -2560 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" "335706" + "plane" "(1936 -2540 48) (1942 -2540 48) (1942 -2540 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335705" + "plane" "(1936 -2560 202) (1942 -2560 202) (1942 -2560 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -585.998] 0.125" + "vaxis" "[1 0 0 -184.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3746058" + side + { + "id" "335716" + "plane" "(1936 -2560 48) (1936 -2554 48) (2384 -2554 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[-1 0 0 485.998] 0.125" + "vaxis" "[0 1 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335715" + "plane" "(1936 -2554 0) (1936 -2560 0) (2384 -2560 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" "335714" + "plane" "(1936 -2560 0) (1936 -2554 0) (1936 -2554 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" "335713" + "plane" "(1936 -2554 0) (2384 -2554 0) (2384 -2554 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" "335712" + "plane" "(2384 -2560 0) (1936 -2560 0) (1936 -2560 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -359.356] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335711" + "plane" "(2384 -2554 0) (2384 -2560 0) (2384 -2560 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1741137" + side + { + "id" "335722" + "plane" "(1936 -2496 76) (2384 -2496 76) (2384 -2554 48)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335721" + "plane" "(1936 -2554 0) (2384 -2554 0) (2384 -2496 0)" + "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" "335720" + "plane" "(1936 -2554 48) (2384 -2554 48) (2384 -2554 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[1 0 0 -359.356] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335719" + "plane" "(2384 -2496 76) (1936 -2496 76) (1936 -2496 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" "335718" + "plane" "(1936 -2496 76) (1936 -2554 48) (1936 -2554 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" "335717" + "plane" "(2384 -2554 48) (2384 -2496 76) (2384 -2496 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3746038" + side + { + "id" "335728" + "plane" "(2166 -2540 208) (2384 -2540 208) (2384 -2560 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" "335727" + "plane" "(2166 -2560 202) (2384 -2560 202) (2384 -2540 202)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -169.998] 0.125" + "vaxis" "[0 1 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335726" + "plane" "(2166 -2540 208) (2166 -2560 208) (2166 -2560 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335725" + "plane" "(2384 -2540 202) (2384 -2560 202) (2384 -2560 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" "335724" + "plane" "(2384 -2540 208) (2166 -2540 208) (2166 -2540 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335723" + "plane" "(2384 -2560 202) (2166 -2560 202) (2166 -2560 208)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 -169.998] 0.125" + "vaxis" "[0 0 -1 -184.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3746061" + side + { + "id" "335734" + "plane" "(2378 -2540 202) (2384 -2540 202) (2384 -2560 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335733" + "plane" "(2378 -2560 48) (2384 -2560 48) (2384 -2540 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" "335732" + "plane" "(2378 -2540 202) (2378 -2560 202) (2378 -2560 48)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 -1 1014] 0.125" + "vaxis" "[0 1 0 -9] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335731" + "plane" "(2384 -2540 48) (2384 -2560 48) (2384 -2560 202)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335730" + "plane" "(2384 -2540 202) (2378 -2540 202) (2378 -2540 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" "335729" + "plane" "(2384 -2560 48) (2378 -2560 48) (2378 -2560 202)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 -1 1014] 0.125" + "vaxis" "[-1 0 0 -185] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "3732483" + "classname" "func_detail" + solid + { + "id" "3732460" + side + { + "id" "335260" + "plane" "(2144 -3192 0) (2146 -3182 0) (2132 -3176 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 -1 0 15.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335259" + "plane" "(2128 -3192 240) (2132 -3176 240) (2146 -3182 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 -1 0 15.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335258" + "plane" "(2144 -3192 240) (2144 -3192 0) (2128 -3192 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335257" + "plane" "(2146 -3182 0) (2146 -3182 240) (2132 -3176 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335256" + "plane" "(2132 -3176 240) (2128 -3192 240) (2128 -3192 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335255" + "plane" "(2144 -3192 240) (2146 -3182 240) (2146 -3182 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.196116 0.980581 0 337.411] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3732461" + side + { + "id" "335266" + "plane" "(2146 -3182 0) (2152 -3176 0) (2140 -3164 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 -1 0 15.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335265" + "plane" "(2132 -3176 240) (2140 -3164 240) (2152 -3176 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 -1 0 15.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335264" + "plane" "(2146 -3182 240) (2146 -3182 0) (2132 -3176 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335263" + "plane" "(2152 -3176 0) (2152 -3176 240) (2140 -3164 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335262" + "plane" "(2140 -3164 240) (2132 -3176 240) (2132 -3176 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335261" + "plane" "(2146 -3182 240) (2152 -3176 240) (2152 -3176 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.707107 0.707107 0 475.164] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3732462" + side + { + "id" "335272" + "plane" "(2152 -3176 0) (2158 -3170 0) (2152 -3156 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 -1 0 15.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335271" + "plane" "(2140 -3164 240) (2152 -3156 240) (2158 -3170 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 -1 0 15.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335270" + "plane" "(2152 -3176 240) (2152 -3176 0) (2140 -3164 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335269" + "plane" "(2158 -3170 0) (2158 -3170 240) (2152 -3156 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335268" + "plane" "(2152 -3156 240) (2140 -3164 240) (2140 -3164 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335267" + "plane" "(2152 -3176 240) (2158 -3170 240) (2158 -3170 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.707107 0.707107 0 475.164] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3732463" + side + { + "id" "335278" + "plane" "(2158 -3170 0) (2168 -3168 0) (2168 -3152 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 -1 0 15.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335277" + "plane" "(2152 -3156 240) (2168 -3152 240) (2168 -3168 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 -1 0 15.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335276" + "plane" "(2158 -3170 240) (2158 -3170 0) (2152 -3156 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335275" + "plane" "(2168 -3168 0) (2168 -3168 240) (2168 -3152 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -15.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335274" + "plane" "(2168 -3152 240) (2152 -3156 240) (2152 -3156 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48.0059] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335273" + "plane" "(2158 -3170 240) (2168 -3168 240) (2168 -3168 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0.98058 0.196117 0 203.21] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "3732494" + "classname" "func_detail" + solid + { + "id" "3732425" + side + { + "id" "335284" + "plane" "(2168 -3504 0) (2158 -3502 0) (2152 -3516 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[1 0 0 15.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335283" + "plane" "(2168 -3520 240) (2152 -3516 240) (2158 -3502 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[1 0 0 15.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335282" + "plane" "(2168 -3504 240) (2168 -3504 0) (2168 -3520 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335281" + "plane" "(2158 -3502 0) (2158 -3502 240) (2152 -3516 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335280" + "plane" "(2152 -3516 240) (2168 -3520 240) (2168 -3520 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335279" + "plane" "(2168 -3504 240) (2158 -3502 240) (2158 -3502 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-0.980581 0.196116 0 -242.201] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3732426" + side + { + "id" "335290" + "plane" "(2158 -3502 0) (2152 -3496 0) (2140 -3508 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[1 0 0 15.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335289" + "plane" "(2152 -3516 240) (2140 -3508 240) (2152 -3496 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[1 0 0 15.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335288" + "plane" "(2158 -3502 240) (2158 -3502 0) (2152 -3516 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335287" + "plane" "(2152 -3496 0) (2152 -3496 240) (2140 -3508 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335286" + "plane" "(2140 -3508 240) (2152 -3516 240) (2152 -3516 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335285" + "plane" "(2158 -3502 240) (2152 -3496 240) (2152 -3496 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-0.707107 0.707107 0 136.454] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3732427" + side + { + "id" "335296" + "plane" "(2152 -3496 0) (2146 -3490 0) (2132 -3496 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[1 0 0 15.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335295" + "plane" "(2140 -3508 240) (2132 -3496 240) (2146 -3490 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[1 0 0 15.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335294" + "plane" "(2152 -3496 240) (2152 -3496 0) (2140 -3508 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335293" + "plane" "(2146 -3490 0) (2146 -3490 240) (2132 -3496 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335292" + "plane" "(2132 -3496 240) (2140 -3508 240) (2140 -3508 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335291" + "plane" "(2152 -3496 240) (2146 -3490 240) (2146 -3490 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-0.707107 0.707107 0 136.454] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3732428" + side + { + "id" "335302" + "plane" "(2146 -3490 0) (2144 -3480 0) (2128 -3480 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[1 0 0 15.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335301" + "plane" "(2132 -3496 240) (2128 -3480 240) (2144 -3480 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[1 0 0 15.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335300" + "plane" "(2146 -3490 240) (2146 -3490 0) (2132 -3496 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335299" + "plane" "(2144 -3480 0) (2144 -3480 240) (2128 -3480 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335298" + "plane" "(2128 -3480 240) (2132 -3496 240) (2132 -3496 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "335297" + "plane" "(2146 -3490 240) (2144 -3480 240) (2144 -3480 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[-0.196117 0.98058 0 23.1621] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "3718515" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "378 -4271 0.249985" + editor + { + "color" "233 146 0" + "groupid" "3718514" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718520" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "376 -4271 0.249985" + editor + { + "color" "233 146 0" + "groupid" "3718519" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718776" + "classname" "prop_static" + "angles" "0 98.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-362 -5383 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3718884" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718796" + "classname" "prop_static" + "angles" "0 185 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-402 -5359 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3718884" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718816" + "classname" "prop_static" + "angles" "0 275.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-434 -5398 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3718884" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718840" + "classname" "prop_static" + "angles" "0 33.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-382 -5424 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3718884" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718911" + "classname" "prop_static" + "angles" "0 107 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/table_cafeteria.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-657.349 -5434.15 34.2874" + editor + { + "color" "183 216 0" + "groupid" "3718910" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718915" + "classname" "prop_static" + "angles" "0 98.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-611 -5422 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3718910" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718919" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-673 -5394 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3718910" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718923" + "classname" "prop_static" + "angles" "0 289 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-701 -5445 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3718910" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3718927" + "classname" "prop_static" + "angles" "0 16.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-646 -5470 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3718910" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719026" + "classname" "prop_static" + "angles" "0 107 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/table_cafeteria.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-888.06 -5326.4 34.2874" + editor + { + "color" "183 216 0" + "groupid" "3719025" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719030" + "classname" "prop_static" + "angles" "0 98.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-841 -5313 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3719025" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719034" + "classname" "prop_static" + "angles" "0 135 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-899 -5278 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3719025" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719038" + "classname" "prop_static" + "angles" "0 307 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-928 -5351 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3719025" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719042" + "classname" "prop_static" + "angles" "0 19.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-866 -5369 32.9084" + editor + { + "color" "183 216 0" + "groupid" "3719025" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719204" + "classname" "prop_static" + "angles" "0 208 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1012.26 -5189 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719208" + "classname" "prop_static" + "angles" "0 307.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1052 -5236.57 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719212" + "classname" "prop_static" + "angles" "0 107 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/table_cafeteria.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1006.61 -5223.15 34.2874" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719216" + "classname" "prop_static" + "angles" "0 103.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-964 -5208.57 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719220" + "classname" "prop_static" + "angles" "0 20.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-993 -5263.57 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719256" + "classname" "prop_static" + "angles" "0 185 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1385.26 -5265.43 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719260" + "classname" "prop_static" + "angles" "0 288.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1425 -5313 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719264" + "classname" "prop_static" + "angles" "0 107 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/table_cafeteria.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1379.61 -5299.58 34.2874" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719268" + "classname" "prop_static" + "angles" "0 103.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1328 -5288 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719272" + "classname" "prop_static" + "angles" "0 20.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_patio_set/dust_patio_chair.mdl" + "renderamt" "255" + "rendercolor" "5 173 237" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1366 -5340 32.9084" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "3719334" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1440.19 -5674 292" + editor + { + "color" "132 165 0" + "groupid" "3719333" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +hidden +{ + entity + { + "id" "3719338" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_cable_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1440.2 -5674 232.203" + editor + { + "color" "132 165 0" + "groupid" "3719333" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +hidden +{ + entity + { + "id" "3719342" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1440.24 -5673.92 232.266" + editor + { + "color" "132 165 0" + "groupid" "3719333" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "3719346" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "247 244 221 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 270 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "1422.2 -5673.92 225.203" + editor + { + "color" "132 165 0" + "groupid" "3719332" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "3719351" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "247 244 221 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 270 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "1456.2 -5673.92 225.203" + editor + { + "color" "132 165 0" + "groupid" "3719332" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "3719356" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "12" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow03_nofog.vmt" + "renderamt" "120" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "9" + "scale" "2" + "spawnflags" "0" + "origin" "1440.2 -5674 229.203" + editor + { + "color" "132 165 0" + "groupid" "3719332" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "3719359" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1439.2 -5673.92 184.203" + editor + { + "color" "132 165 0" + "groupid" "3719332" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "3719366" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1878.44 -5674 292" + editor + { + "color" "132 165 0" + "groupid" "3719365" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +hidden +{ + entity + { + "id" "3719370" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_cable_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1878.45 -5674 232.203" + editor + { + "color" "132 165 0" + "groupid" "3719365" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +hidden +{ + entity + { + "id" "3719374" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1878.49 -5673.92 232.266" + editor + { + "color" "132 165 0" + "groupid" "3719365" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "3719378" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "247 244 221 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 270 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "1860.45 -5673.92 225.203" + editor + { + "color" "132 165 0" + "groupid" "3719364" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "3719383" + "classname" "light_spot" + "_cone" "60" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "247 244 221 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 270 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "1894.45 -5673.92 225.203" + editor + { + "color" "132 165 0" + "groupid" "3719364" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "3719388" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "12" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow03_nofog.vmt" + "renderamt" "120" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "9" + "scale" "2" + "spawnflags" "0" + "origin" "1878.45 -5674 229.203" + editor + { + "color" "132 165 0" + "groupid" "3719364" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "3719391" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "247 244 221 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1877.45 -5673.92 184.203" + editor + { + "color" "132 165 0" + "groupid" "3719364" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "3703331" + "classname" "func_detail" + solid + { + "id" "3703358" + side + { + "id" "334670" + "plane" "(-1092 -4200 32) (-1092 -4454 32) (-966 -4454 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" "334669" + "plane" "(-1092 -4454 104) (-1092 -4454 32) (-1092 -4200 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" "334668" + "plane" "(-966 -4200 104) (-966 -4200 32) (-966 -4454 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334667" + "plane" "(-1092 -4200 104) (-1092 -4200 32) (-966 -4200 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334666" + "plane" "(-966 -4454 104) (-966 -4454 32) (-1092 -4454 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334665" + "plane" "(-1092 -4454 104) (-1092 -4200 104) (-966 -4200 104)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3703370" + side + { + "id" "334694" + "plane" "(-964 -4198 112) (-964 -4198 104) (-964 -4456 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 446.998] 0.125" + "vaxis" "[0 0 -1 384.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334693" + "plane" "(-980 -4198 104) (-964 -4198 104) (-964 -4198 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 447] 0.125" + "vaxis" "[0 0 1 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334692" + "plane" "(-964 -4456 112) (-964 -4456 104) (-980 -4456 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 -256.996] 0.125" + "vaxis" "[1 0 0 0.992675] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334691" + "plane" "(-980 -4456 104) (-964 -4456 104) (-964 -4198 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -1 0 -256.992] 0.125" + "vaxis" "[1 0 0 0.992674] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334690" + "plane" "(-980 -4198 112) (-964 -4198 112) (-964 -4456 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 446.998] 0.125" + "vaxis" "[1 0 0 0.992676] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334689" + "plane" "(-980 -4456 112) (-980 -4456 104) (-980 -4198 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 446.998] 0.125" + "vaxis" "[0 0 1 -511.006] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3703380" + side + { + "id" "334718" + "plane" "(-1076 -4198 104) (-980 -4198 104) (-980 -4198 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 447] 0.125" + "vaxis" "[0 0 1 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334717" + "plane" "(-980 -4198 104) (-1076 -4198 104) (-1076 -4214 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 447] 0.125" + "vaxis" "[0 1 0 624.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334716" + "plane" "(-1076 -4214 112) (-1076 -4198 112) (-980 -4198 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 447] 0.125" + "vaxis" "[0 -1 0 1] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334715" + "plane" "(-980 -4198 112) (-980 -4198 104) (-980 -4214 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334714" + "plane" "(-1076 -4214 104) (-1076 -4198 104) (-1076 -4198 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" "334713" + "plane" "(-980 -4214 104) (-1076 -4214 104) (-1076 -4214 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 447] 0.125" + "vaxis" "[0 0 -1 816.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3703373" + side + { + "id" "334700" + "plane" "(-1094 -4456 112) (-1094 -4456 104) (-1094 -4198 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334699" + "plane" "(-1094 -4198 112) (-1094 -4198 104) (-1076 -4198 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 515] 0.125" + "vaxis" "[0 0 1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334698" + "plane" "(-1076 -4456 104) (-1094 -4456 104) (-1094 -4456 112)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334697" + "plane" "(-1076 -4198 104) (-1094 -4198 104) (-1094 -4456 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 515] 0.125" + "vaxis" "[0 1 0 625.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334696" + "plane" "(-1076 -4456 112) (-1094 -4456 112) (-1094 -4198 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 446.998] 0.125" + "vaxis" "[1 0 0 0.992676] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334695" + "plane" "(-1076 -4198 112) (-1076 -4198 104) (-1076 -4456 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 446.998] 0.125" + "vaxis" "[0 0 -1 -511.006] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3703385" + side + { + "id" "334724" + "plane" "(-980 -4456 104) (-1076 -4456 104) (-1076 -4456 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 -256.996] 0.125" + "vaxis" "[1 0 0 0.992675] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334723" + "plane" "(-1076 -4440 104) (-1076 -4456 104) (-980 -4456 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -1 0 -256.992] 0.125" + "vaxis" "[1 0 0 0.992674] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334722" + "plane" "(-980 -4456 112) (-1076 -4456 112) (-1076 -4440 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 446.998] 0.125" + "vaxis" "[1 0 0 0.992676] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334721" + "plane" "(-980 -4440 104) (-980 -4456 104) (-980 -4456 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" "334720" + "plane" "(-1076 -4456 112) (-1076 -4456 104) (-1076 -4440 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334719" + "plane" "(-1076 -4440 104) (-980 -4440 104) (-980 -4440 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -384.996] 0.125" + "vaxis" "[1 0 0 0.992675] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "3703450" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1012 -4322.48 87" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3703466" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1031 -4337 87" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3703515" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-968 -4429 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3703535" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-968 -4301 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3703586" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-968 -4228 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3703686" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1088 -4429 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3703690" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1088 -4228 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3703694" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1088 -4301 99" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3703714" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-948 -4393 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3703722" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-948 -4261 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3703878" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1110 -4261 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3703882" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1110 -4400 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3703942" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_03.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "15 -5909 23.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3704012" + "classname" "prop_static" + "angles" "0 206 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_05.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-516 -5753 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3704060" + "classname" "prop_static" + "angles" "0 89 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop/foodtruck.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-500.327 -5742.08 40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "3704136" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_02.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-278 -5715 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3704242" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_02.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-275 -6259 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3704312" + "classname" "prop_static" + "angles" "0 41 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_01.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-438 -6154 32.2741" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "3704344" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-368 -5863 32.2398" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3704356" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-368 -5756 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "3704378" + "classname" "func_detail" + solid + { + "id" "3704376" + side + { + "id" "334790" + "plane" "(-369 -5756 71) (-368 -5756 71) (-368 -5862 71)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -679.555] 0.25" + "vaxis" "[0 -1 0 -187.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334789" + "plane" "(-369 -5862 66) (-368 -5862 66) (-368 -5756 66)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -679.555] 0.25" + "vaxis" "[0 1 0 663.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334788" + "plane" "(-369 -5756 71) (-369 -5862 71) (-369 -5862 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334787" + "plane" "(-368 -5756 66) (-368 -5862 66) (-368 -5862 71)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 -680] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334786" + "plane" "(-368 -5756 71) (-369 -5756 71) (-369 -5756 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "334785" + "plane" "(-368 -5862 66) (-369 -5862 66) (-369 -5862 71)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12500]" + } +} +hidden +{ + entity + { + "id" "3704388" + "classname" "prop_static" + "angles" "0 286 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_02.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-399 -5820 32.274" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "3704394" + "classname" "prop_static" + "angles" "0 247 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/cs_apollo/cardboard_box_06.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-436 -5870 32.274" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "3704402" + "classname" "prop_dynamic_override" + "angles" "0 309 0" + "AnimateEveryFrame" "0" + "body" "0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademindist" "-1" + "fadescale" "1" + "health" "0" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props/de_train/hr_t/hand_truck/hand_truck.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "0" + "spawnflags" "0" + "origin" "-529 -5950 32.274" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "3689960" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_01.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-640 -5992 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3690062" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/giftshop_shelf_05.mdl" + "renderamt" "255" + "rendercolor" "250 254 251" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-440 -6256 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3675043" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "154 154 154" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3041.44 -2762 -191" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3675408" + "classname" "prop_static" + "angles" "0 92 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1736 -3123 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 14500]" + } + } +} +hidden +{ + entity + { + "id" "3675496" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2550 -2932 16" + editor + { + "color" "112 157 0" + "groupid" "3675573" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "3675515" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2468 -2932 16" + editor + { + "color" "112 157 0" + "groupid" "3675573" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "3675538" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_16.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2486 -2932 16" + editor + { + "color" "112 157 0" + "groupid" "3675573" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "3675702" + "classname" "info_overlay" + "angles" "0 180 -180" + "BasisNormal" "0 1 0" + "BasisOrigin" "1984 -3136 88" + "BasisU" "-1 0 8.74228e-08" + "BasisV" "8.74228e-08 0 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "305268" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1984 -3136 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675773" + "classname" "info_overlay" + "angles" "0 180 180" + "BasisNormal" "0 1 0" + "BasisOrigin" "1944 -3136 88" + "BasisU" "-1 0 8.74228e-08" + "BasisV" "8.74228e-08 0 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "305268 305268" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1944 -3136 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675791" + "classname" "info_overlay" + "angles" "0 180 180" + "BasisNormal" "0 1 0" + "BasisOrigin" "2024 -3136 88" + "BasisU" "-1 0 8.74228e-08" + "BasisV" "8.74228e-08 0 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "305268 305268" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2024 -3136 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675797" + "classname" "info_overlay" + "angles" "0 180 -180" + "BasisNormal" "0 1 0" + "BasisOrigin" "2064 -3136 88" + "BasisU" "-1 0 8.74228e-08" + "BasisV" "8.74228e-08 0 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "305268 305268" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2064 -3136 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675803" + "classname" "info_overlay" + "angles" "0 180 180" + "BasisNormal" "0 1 0" + "BasisOrigin" "2104 -3136 88" + "BasisU" "-1 0 8.74228e-08" + "BasisV" "8.74228e-08 0 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "217368 305268" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2104 -3136 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675815" + "classname" "info_overlay" + "angles" "0 270 -180" + "BasisNormal" "-1 -4.37114e-08 0" + "BasisOrigin" "2088 -3120 88" + "BasisU" "4.37114e-08 -1 8.74228e-08" + "BasisV" "-3.82137e-15 8.74228e-08 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "305268 305268 217368" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2088 -3120 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675833" + "classname" "info_overlay" + "angles" "0 270 180" + "BasisNormal" "-1 -4.37114e-08 0" + "BasisOrigin" "2088 -3080 88" + "BasisU" "4.37114e-08 -1 8.74228e-08" + "BasisV" "-3.82137e-15 8.74228e-08 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "305268 305268 217368" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2088 -3080 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675839" + "classname" "info_overlay" + "angles" "0 270 -180" + "BasisNormal" "-1 -4.37114e-08 0" + "BasisOrigin" "2088 -3040 88" + "BasisU" "4.37114e-08 -1 8.74228e-08" + "BasisV" "-3.82137e-15 8.74228e-08 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "305268 305268 217368" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2088 -3040 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675845" + "classname" "info_overlay" + "angles" "0 180 -180" + "BasisNormal" "-1.06581e-14 1 0" + "BasisOrigin" "2104 -3056 88" + "BasisU" "-1 -1.06581e-14 8.74228e-08" + "BasisV" "8.74228e-08 -1.69407e-21 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "217366 217368" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2104 -3056 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675906" + "classname" "info_overlay" + "angles" "0 180 -180" + "BasisNormal" "-1.06581e-14 1 0" + "BasisOrigin" "2144 -3056 88" + "BasisU" "-1 -1.06581e-14 8.74228e-08" + "BasisV" "8.74228e-08 -1.69407e-21 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "217366 217368" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2144 -3056 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675918" + "classname" "info_overlay" + "angles" "0 180 180" + "BasisNormal" "-1.06581e-14 1 0" + "BasisOrigin" "2184 -3056 88" + "BasisU" "-1 -1.06581e-14 8.74228e-08" + "BasisV" "8.74228e-08 -1.69407e-21 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "217366 217368 217048" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2184 -3056 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675942" + "classname" "info_overlay" + "angles" "0 180 180" + "BasisNormal" "-1.06581e-14 1 0" + "BasisOrigin" "2224 -3060 88" + "BasisU" "-1 -1.06581e-14 8.74228e-08" + "BasisV" "8.74228e-08 -1.69407e-21 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "217366 217368 217048" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2224 -3060 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3675954" + "classname" "info_overlay" + "angles" "0 180 -180" + "BasisNormal" "-1.06581e-14 1 0" + "BasisOrigin" "2264 -3060 88" + "BasisU" "-1 -1.06581e-14 8.74228e-08" + "BasisV" "8.74228e-08 -1.69407e-21 1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "217366 217368 217048 217049" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "2264 -3060 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3676268" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "1 4.37114e-08 -3.82137e-15" + "BasisOrigin" "1536 -2908 88" + "BasisU" "4.37114e-08 -1 -2.13163e-14" + "BasisV" "-3.82137e-15 2.13163e-14 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "309037 308921 294387 216999 217245 216987" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1536 -2908 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3676310" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "1 4.37114e-08 -3.82137e-15" + "BasisOrigin" "1536 -2868 88" + "BasisU" "4.37114e-08 -1 -2.13163e-14" + "BasisV" "-3.82137e-15 2.13163e-14 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "309037 308921 294387 216999 217245 216987" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1536 -2868 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3676322" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "1 4.37114e-08 -3.82137e-15" + "BasisOrigin" "1548 -2828 88" + "BasisU" "4.37114e-08 -1 -2.13163e-14" + "BasisV" "-3.82137e-15 2.13163e-14 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "309037 308921 294387 216999 217245 216987" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1548 -2828 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3676352" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "1 4.37114e-08 -3.82137e-15" + "BasisOrigin" "1560 -2788 88" + "BasisU" "4.37114e-08 -1 -2.13163e-14" + "BasisV" "-3.82137e-15 2.13163e-14 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "216999 216987 217245 217197 217233 217209 217221 300044" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1560 -2788 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3676380" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "1 4.37114e-08 -3.82137e-15" + "BasisOrigin" "1568 -2748 88" + "BasisU" "4.37114e-08 -1 -2.13163e-14" + "BasisV" "-3.82137e-15 2.13163e-14 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "216999 217245 216987 217197 217233 217209 217221 300044" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1568 -2748 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3676386" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "1 4.37114e-08 -3.82137e-15" + "BasisOrigin" "1584 -2708 88" + "BasisU" "4.37114e-08 -1 -2.13163e-14" + "BasisV" "-3.82137e-15 2.13163e-14 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "216999 217245 216987 217197 217233 217209 217221 300044" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1584 -2708 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3676529" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "1 4.37114e-08 -3.82137e-15" + "BasisOrigin" "1584 -2668 88" + "BasisU" "4.37114e-08 -1 -2.13163e-14" + "BasisV" "-3.82137e-15 2.13163e-14 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "216999 217245 216987 217197 217233 217209 217221 300044" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1584 -2668 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3676583" + "classname" "info_overlay" + "angles" "0 270 0" + "BasisNormal" "1 4.37114e-08 -3.82137e-15" + "BasisOrigin" "1648 -2628 88" + "BasisU" "4.37114e-08 -1 -2.13163e-14" + "BasisV" "-3.82137e-15 2.13163e-14 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/exhibits/space_shuttle/orange_arrows" + "sides" "216999 217245 216987 217197 217233 217209 217221 300044" + "StartU" "1" + "StartV" "0" + "uv0" "-20 -20 0" + "uv1" "-20 20 0" + "uv2" "20 20 0" + "uv3" "20 -20 0" + "origin" "1648 -2628 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "3648129" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-78 -6310 147.186" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "3648137" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-34 -6156 172.261" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "3648188" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 0 0" + "BasisOrigin" "-360 -5979 109" + "BasisU" "0 1 0" + "BasisV" "0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "298923" + "StartU" "0" + "StartV" "1" + "uv0" "-32.0124 -32 0" + "uv1" "-32.0124 32 0" + "uv2" "32.0124 32 0" + "uv3" "32.0124 -32 0" + "origin" "-360 -5979 109" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "3648389" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "830 -3424 110.575" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3648409" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "878 -5888 135" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3648429" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "422 -5888 135" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3648484" + "classname" "prop_static" + "angles" "0 98 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1736.85 -5277.38 0.249998" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3607560" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2894 -6594 -46.7911" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3607572" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2892 -6324 -46.7911" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3607592" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2894 -6874 -46.7911" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3594008" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8728.15 8297.84 5152" + editor + { + "color" "210 139 0" + "groupid" "4131214" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594012" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8745.82 8300.98 5152" + editor + { + "color" "210 139 0" + "groupid" "4131214" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594016" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8721.86 8332.38 5152" + editor + { + "color" "210 139 0" + "groupid" "4131214" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594020" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8737.3 8330.74 5152" + editor + { + "color" "210 139 0" + "groupid" "4131214" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594024" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8746.38 8373.2 5152" + editor + { + "color" "210 139 0" + "groupid" "4131214" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594028" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8768.34 8335.01 5152" + editor + { + "color" "210 139 0" + "groupid" "4131214" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594032" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8765.89 8299.35 5152" + editor + { + "color" "210 139 0" + "groupid" "4131214" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594040" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8752.69 8431 5152" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594057" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8838.43 8392.81 5152" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594065" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8847.58 8369.04 5152" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594077" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8853.62 8286.42 5152" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594081" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8833.14 8234.65 5152" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594085" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8875.2 8256.21 5152" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594115" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9315.64 8299.43 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594119" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9324.51 8284.51 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594127" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9330.38 8270.98 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3594131" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9329.06 8253.66 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552248" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8620.94 8587.22 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552260" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8570.72 8586.8 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552264" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8542.98 8718.18 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552268" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8535.9 8662.4 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552272" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8515.9 8567.7 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552280" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8561.91 8765.73 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552284" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8591.14 8557.72 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552288" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8617.36 8547.38 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552292" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8555.74 8532.2 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552296" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8623.48 8524.2 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3552308" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8536.87 8764.02 5152" + editor + { + "color" "210 139 0" + "groupid" "4131636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +entity +{ + "id" "3552398" + "classname" "func_detail" + solid + { + "id" "3042849" + side + { + "id" "389674" + "plane" "(-2480 -2885 201) (-2480 -2833 201) (-1936 -2833 201)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_002" + "uaxis" "[1 0 0 399.059] 0.102" + "vaxis" "[0 -1 0 -125.412] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389673" + "plane" "(-2480 -2833 199) (-2480 -2885 199) (-1936 -2885 199)" + "material" "METAL/HR_METAL/HR_METAL_GRATING_001" + "uaxis" "[0 1 0 125.412] 0.102" + "vaxis" "[1 0 0 399.059] 0.102" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389672" + "plane" "(-2480 -2885 199) (-2480 -2833 199) (-2480 -2833 201)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389671" + "plane" "(-1936 -2833 199) (-1936 -2885 199) (-1936 -2885 201)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389670" + "plane" "(-2480 -2833 199) (-1936 -2833 199) (-1936 -2833 201)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "389669" + "plane" "(-1936 -2885 199) (-2480 -2885 199) (-2480 -2885 201)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3552415" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-177.5 -5742 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2711798" + side + { + "id" "333226" + "plane" "(-233 -5706.5 344) (-127 -5772 344) (-127 -5774 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333225" + "plane" "(-233 -5707.5 214) (-127 -5774 214) (-127 -5772 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333224" + "plane" "(-233 -5706.5 214) (-233 -5706.5 344) (-233 -5707.5 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333223" + "plane" "(-127 -5774 214) (-127 -5774 344) (-127 -5772 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333222" + "plane" "(-127 -5772 214) (-127 -5772 344) (-233 -5706.5 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 50.717] 0.414063" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333221" + "plane" "(-233 -5707.5 214) (-233 -5707.5 344) (-127 -5774 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 50.717] 0.414063" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3552423" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-84 -5822.5 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2711988" + side + { + "id" "333232" + "plane" "(-121 -5779 344) (-45 -5873 344) (-47 -5873 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333231" + "plane" "(-45 -5873 214) (-121 -5779 214) (-123 -5779 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333230" + "plane" "(-123 -5779 344) (-123 -5779 214) (-121 -5779 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333229" + "plane" "(-45 -5873 344) (-45 -5873 214) (-47 -5873 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333228" + "plane" "(-121 -5779 344) (-121 -5779 214) (-45 -5873 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 6.4538] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333227" + "plane" "(-47 -5873 344) (-47 -5873 214) (-123 -5779 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 158.316] 0.296875" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "3552431" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-35 -5932.5 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2723928" + side + { + "id" "333238" + "plane" "(-46 -5881 344) (-44 -5881 344) (-13 -5992 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333237" + "plane" "(-15 -5992 214) (-13 -5992 214) (-44 -5881 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333236" + "plane" "(-44 -5881 344) (-46 -5881 344) (-46 -5881 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333235" + "plane" "(-15 -5992 344) (-13 -5992 344) (-13 -5992 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333234" + "plane" "(-13 -5992 344) (-44 -5881 344) (-44 -5881 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 6.4538] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333233" + "plane" "(-46 -5881 344) (-15 -5992 344) (-15 -5992 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 123.871] 0.121094" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "3552439" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-34.5 -6051.5 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2723949" + side + { + "id" "333244" + "plane" "(-47 -6109 344) (-16 -6000 344) (-14 -6000 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333243" + "plane" "(-16 -6000 214) (-47 -6109 214) (-45 -6109 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333242" + "plane" "(-14 -6000 214) (-14 -6000 344) (-16 -6000 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333241" + "plane" "(-47 -6109 214) (-47 -6109 344) (-45 -6109 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333240" + "plane" "(-45 -6109 214) (-45 -6109 344) (-14 -6000 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 6.4538] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333239" + "plane" "(-16 -6000 214) (-16 -6000 344) (-47 -6109 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 110.703] 0.144531" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "3552447" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-81.5 -6159.5 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2723952" + side + { + "id" "333250" + "plane" "(-119 -6208 344) (-48 -6117 344) (-46 -6117 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333249" + "plane" "(-48 -6117 214) (-119 -6208 214) (-119 -6210 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333248" + "plane" "(-46 -6117 214) (-46 -6117 344) (-48 -6117 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333247" + "plane" "(-119 -6208 214) (-119 -6208 344) (-119 -6210 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333246" + "plane" "(-119 -6210 214) (-119 -6210 344) (-46 -6117 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 161.315] 0.285156" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333245" + "plane" "(-48 -6117 214) (-48 -6117 344) (-119 -6208 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 6.4538] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "3552455" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-176 -6240 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2723957" + side + { + "id" "333256" + "plane" "(-233 -6275 344) (-127 -6208 344) (-127 -6210 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333255" + "plane" "(-233 -6277 214) (-127 -6210 214) (-127 -6208 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333254" + "plane" "(-127 -6210 214) (-127 -6210 344) (-127 -6208 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333253" + "plane" "(-233 -6275 214) (-233 -6275 344) (-233 -6277 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333252" + "plane" "(-233 -6277 214) (-233 -6277 344) (-127 -6210 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 50.717] 0.414063" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333251" + "plane" "(-127 -6208 214) (-127 -6208 344) (-233 -6275 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 6.4538] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "3552463" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-300.5 -6287 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2723961" + side + { + "id" "333262" + "plane" "(-364 -6307 344) (-241 -6274 344) (-241 -6276 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333261" + "plane" "(-364 -6309 214) (-241 -6276 214) (-241 -6274 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333260" + "plane" "(-241 -6276 214) (-241 -6276 344) (-241 -6274 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333259" + "plane" "(-364 -6307 214) (-364 -6307 344) (-364 -6309 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333258" + "plane" "(-364 -6309 214) (-364 -6309 344) (-241 -6276 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 245.594] 0.480469" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333257" + "plane" "(-241 -6274 214) (-241 -6274 344) (-364 -6307 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 6.4538] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "3552471" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-435.5 -6288.5 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2723964" + side + { + "id" "333268" + "plane" "(-495 -6275 344) (-372 -6307 344) (-372 -6309 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333267" + "plane" "(-495 -6277 214) (-372 -6309 214) (-372 -6307 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333266" + "plane" "(-372 -6309 214) (-372 -6309 344) (-372 -6307 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333265" + "plane" "(-495 -6275 214) (-495 -6275 344) (-495 -6277 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333264" + "plane" "(-495 -6277 214) (-495 -6277 344) (-372 -6309 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 229.795] 0.496094" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333263" + "plane" "(-372 -6307 214) (-372 -6307 344) (-495 -6275 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 40.8739] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "3552479" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-560 -6242 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2723973" + side + { + "id" "333274" + "plane" "(-609 -6208 344) (-503 -6275 344) (-503 -6277 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333273" + "plane" "(-609 -6210 214) (-503 -6277 214) (-503 -6275 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333272" + "plane" "(-503 -6277 214) (-503 -6277 344) (-503 -6275 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333271" + "plane" "(-609 -6208 214) (-609 -6208 344) (-609 -6210 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333270" + "plane" "(-609 -6210 214) (-609 -6210 344) (-503 -6277 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 190.792] 0.414063" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333269" + "plane" "(-503 -6275 214) (-503 -6275 344) (-609 -6208 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 54.8572] 0.382813" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "3552487" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-650 -6162 279" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2724003" + side + { + "id" "333280" + "plane" "(-615 -6205 344) (-684 -6119 344) (-682 -6119 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333279" + "plane" "(-684 -6119 214) (-615 -6205 214) (-613 -6205 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333278" + "plane" "(-615 -6205 214) (-615 -6205 344) (-613 -6205 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333277" + "plane" "(-682 -6119 214) (-682 -6119 344) (-684 -6119 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333276" + "plane" "(-684 -6119 214) (-684 -6119 344) (-615 -6205 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 233.739] 0.269531" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333275" + "plane" "(-613 -6205 214) (-613 -6205 344) (-682 -6119 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 6.4538] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "3552495" + "classname" "func_detail" + solid + { + "id" "2729130" + side + { + "id" "333286" + "plane" "(-241 -5680 214) (-241 -5712 214) (-368 -5688 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333285" + "plane" "(-241 -5712 182) (-241 -5680 182) (-368 -5680 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[1 0 0 240.001] 0.125" + "vaxis" "[0 -1 0 -191.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333284" + "plane" "(-241 -5712 214) (-241 -5680 214) (-241 -5680 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" "333283" + "plane" "(-368 -5680 214) (-368 -5688 214) (-368 -5688 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" "333282" + "plane" "(-368 -5688 214) (-241 -5712 214) (-241 -5712 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333281" + "plane" "(-241 -5680 214) (-368 -5680 214) (-368 -5680 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "3552516" + "classname" "func_detail" + solid + { + "id" "1700037" + side + { + "id" "333322" + "plane" "(1808 -1988 116) (1808 -1988 -40) (1808 -1858 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333321" + "plane" "(1824 -1858 116) (1824 -1858 -40) (1824 -1988 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333320" + "plane" "(1808 -1858 116) (1808 -1858 -40) (1824 -1858 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333319" + "plane" "(1808 -1858 -40) (1808 -1988 -40) (1824 -1988 -40)" + "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" "333318" + "plane" "(1824 -1988 116) (1824 -1988 -40) (1808 -1988 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333317" + "plane" "(1808 -1988 116) (1808 -1858 116) (1824 -1858 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "3552522" + "classname" "func_detail" + solid + { + "id" "1548398" + side + { + "id" "333328" + "plane" "(1328 -2896 358) (1312 -2896 358) (1312 -2880 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333327" + "plane" "(1312 -2880 16) (1312 -2880 358) (1312 -2896 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333326" + "plane" "(1328 -2880 16) (1328 -2880 358) (1312 -2880 358)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -2027] 0.15" + "vaxis" "[1 0 0 20] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333325" + "plane" "(1312 -2896 16) (1312 -2896 358) (1328 -2896 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333324" + "plane" "(1328 -2896 16) (1328 -2896 358) (1328 -2880 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333323" + "plane" "(1328 -2880 16) (1312 -2880 16) (1312 -2896 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +entity +{ + "id" "3552555" + "classname" "func_detail" + solid + { + "id" "3467883" + side + { + "id" "333394" + "plane" "(1360 -4200 67) (1360 -3488 67) (1376 -3488 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -698] 0.125" + "vaxis" "[0 -1 0 407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333393" + "plane" "(1360 -3488 56) (1360 -3488 67) (1360 -4200 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 430] 0.125" + "vaxis" "[0 -1 0 407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333392" + "plane" "(1376 -4200 56) (1376 -4200 67) (1376 -3488 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 93.998] 0.125" + "vaxis" "[0 -1 0 407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333391" + "plane" "(1376 -3488 56) (1376 -3488 67) (1360 -3488 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333390" + "plane" "(1360 -4200 56) (1360 -4200 67) (1376 -4200 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333389" + "plane" "(1360 -3488 56) (1360 -4200 56) (1376 -4200 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12000]" + } +} +hidden +{ + entity + { + "id" "3537986" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "591 -5365 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3538010" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "370 -5365 0.249985" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "3538192" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 -0 0" + "BasisOrigin" "576 -5357 87" + "BasisU" "0 1 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "332066" + "StartU" "0" + "StartV" "1" + "uv0" "-38.3896 -36.5713 0" + "uv1" "-38.3896 36.5713 0" + "uv2" "38.3896 36.5713 0" + "uv3" "38.3896 -36.5713 0" + "origin" "576 -5357 87" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +hidden +{ + entity + { + "id" "3538531" + "classname" "prop_static" + "angles" "0 61 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "621 -5258 -3.54703e-11" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "3538575" + "classname" "func_detail" + solid + { + "id" "3538383" + side + { + "id" "332946" + "plane" "(592.369 -5271.02 162.192) (599 -5277.1 162.192) (593.589 -5283 162.192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332945" + "plane" "(598.999 -5277.1 6.19888e-06) (592.369 -5271.02 6.19888e-06) (586.964 -5276.92 6.19888e-06)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332944" + "plane" "(593.594 -5283 0.000403404) (586.963 -5276.92 0.000403404) (586.964 -5276.92 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332943" + "plane" "(592.369 -5271.02 0.000350237) (598.999 -5277.1 0.000350237) (598.999 -5277.1 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332942" + "plane" "(586.964 -5276.92 0.000357389) (592.369 -5271.02 0.000357389) (592.369 -5271.02 162.192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.7964] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332941" + "plane" "(598.999 -5277.1 0.000396252) (593.594 -5283 0.000396252) (593.594 -5283 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 1 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538499" + side + { + "id" "332956" + "plane" "(548 -5043 32) (595 -5074 32) (595 -5074 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.834773 0.550595 0 -142.566] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332955" + "plane" "(595 -5074 156) (595 -5074 32) (626 -5121 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.550595 0.834773 0 -163.688] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332954" + "plane" "(626 -5232 156) (626 -5232 32) (595 -5279 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.550595 0.834773 0 -465.096] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332953" + "plane" "(595 -5279 156) (595 -5279 32) (548 -5310 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.834773 0.550595 0 -470.973] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332952" + "plane" "(548 -5310 156) (548 -5310 32) (528 -5313.93 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" "332951" + "plane" "(528 -5043 156) (548 -5043 156) (595 -5074 156)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332950" + "plane" "(595 -5074 32) (548 -5043 32) (528 -5043 32)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332949" + "plane" "(528 -5043 32) (548 -5043 32) (548 -5043 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.393691 0.919243 0 272.17] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332948" + "plane" "(528 -5313.93 156) (528 -5313.93 32) (528 -5043 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332947" + "plane" "(626 -5121 156) (626 -5121 32) (626 -5232 32)" + "material" "METAL/HR_METAL/HR_METAL_SHUTTERS_01" + "uaxis" "[0 1 0 138.379] 0.108398" + "vaxis" "[0 0 -1 264.258] 0.121094" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538476" + side + { + "id" "333073" + "plane" "(342 -5136 127) (359 -5121 127) (359 -5232 127)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 -162] 0.125" + "vaxis" "[1 0 0 86.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333072" + "plane" "(359 -5121 125) (342 -5136 125) (342 -5216 125)" + "material" "STONE/COUNTER01" + "uaxis" "[-0.61394 0.789352 0 -215.749] 0.125" + "vaxis" "[-0.789352 -0.613941 0 -220.203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333071" + "plane" "(359 -5121 127) (359 -5121 125) (359 -5232 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28.002] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333070" + "plane" "(342 -5216 127) (342 -5216 125) (342 -5136 125)" + "material" "STONE/COUNTER01" + "uaxis" "[-0.613941 0.789352 0 -215.78] 0.125" + "vaxis" "[0 0 1 53.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333069" + "plane" "(342 -5136 127) (342 -5136 125) (359 -5121 125)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 -162] 0.125" + "vaxis" "[0 0 1 53.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333068" + "plane" "(359 -5232 127) (359 -5232 125) (342 -5216 125)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 66] 0.125" + "vaxis" "[0 0 -1 54] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538309" + side + { + "id" "332973" + "plane" "(595 -5074 0) (548 -5043 0) (528 -5043 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332972" + "plane" "(548 -5043 0) (595 -5074 0) (595 -5074 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.834773 -0.550595 0 339.332] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332971" + "plane" "(595 -5074 32) (595 -5074 0) (626 -5121 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.550595 -0.834773 0 296.489] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332970" + "plane" "(626 -5121 32) (626 -5121 0) (637 -5176 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.196117 -0.98058 0 187.077] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332969" + "plane" "(637 -5176 32) (637 -5176 0) (626 -5232 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.192746 -0.981249 0 -133.443] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332968" + "plane" "(626 -5232 32) (626 -5232 0) (595 -5279 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.550595 -0.834773 0 78.3174] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332967" + "plane" "(595 -5279 32) (595 -5279 0) (548 -5310 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.834773 -0.550595 0 20.2129] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332966" + "plane" "(548 -5310 32) (548 -5310 0) (528 -5313.93 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332965" + "plane" "(528 -5043 32) (548 -5043 32) (595 -5074 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.658408 -0.752662 0 -2.02246] 0.25" + "vaxis" "[-0.752662 0.658407 0 31.3389] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332964" + "plane" "(528 -5043 0) (548 -5043 0) (548 -5043 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 92.7441] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332963" + "plane" "(528 -5313.93 32) (528 -5313.93 0) (528 -5043 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "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" "3538507" + side + { + "id" "332978" + "plane" "(637 -5176 126) (637 -5176 156) (626 -5121 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.196117 0.980581 0 18.969] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332977" + "plane" "(637 -5176 156) (637 -5176 126) (626 -5232 126)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.192746 0.981249 0 -303.215] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332976" + "plane" "(626 -5121 156) (637 -5176 156) (626 -5232 156)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332975" + "plane" "(626 -5232 156) (626 -5232 126) (626 -5121 126)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332974" + "plane" "(626 -5232 126) (637 -5176 126) (626 -5121.02 126)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538274" + side + { + "id" "333113" + "plane" "(548 -5043 160) (595 -5074 160) (626 -5121 160)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333112" + "plane" "(595 -5074 156) (595 -5074 160) (548 -5043 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.834773 -0.550595 0 15.5684] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333111" + "plane" "(626 -5121 156) (626 -5121 160) (595 -5074 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 -511] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333110" + "plane" "(637 -5176 156) (637 -5176 160) (626 -5121 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.196117 -0.98058 0 -145.961] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333109" + "plane" "(626 -5232 156) (626 -5232 160) (637 -5176 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.192746 -0.981249 0 176.218] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333108" + "plane" "(595 -5279 156) (595 -5279 160) (626 -5232 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.550595 -0.834773 0 338.106] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333107" + "plane" "(548 -5310 156) (548 -5310 160) (595 -5279 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.834773 -0.550595 0 343.973] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333106" + "plane" "(527.646 -5314 160) (548 -5310 160) (548 -5310 156)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333105" + "plane" "(437 -5310 156) (437 -5310 160) (457 -5314 160)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333104" + "plane" "(390 -5279 156) (390 -5279 160) (437 -5310 160)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333103" + "plane" "(359 -5232 156) (359 -5232 160) (390 -5279 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.550595 -0.834773 0 160.777] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333102" + "plane" "(348 -5176 156) (348 -5176 160) (359 -5232 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.192746 -0.981249 0 303.752] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333101" + "plane" "(359 -5121 156) (359 -5121 160) (348 -5176 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.196117 -0.98058 0 -275.682] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333100" + "plane" "(390 -5074 156) (390 -5074 160) (359 -5121 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.550595 -0.834773 0 214.021] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333099" + "plane" "(437 -5043 156) (437 -5043 160) (390 -5074 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.834773 -0.550595 0 131.564] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333098" + "plane" "(595 -5074 156) (548 -5043 156) (437 -5043 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333097" + "plane" "(457 -5314 156) (457 -5314 160) (527.641 -5314 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" "333096" + "plane" "(548 -5043 156) (548 -5043 160) (437 -5043 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.393691 -0.919243 0 -399.16] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538514" + side + { + "id" "332990" + "plane" "(643 -5217 127) (626 -5232 127) (626 -5121 127)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 -162] 0.125" + "vaxis" "[0 -1 0 86.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332989" + "plane" "(626 -5232 125) (643 -5217 125) (643 -5137 125)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 -215.749] 0.125" + "vaxis" "[0 -1 0 -220.203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332988" + "plane" "(626 -5232 127) (626 -5232 125) (626 -5121 125)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28.002] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332987" + "plane" "(643 -5137 127) (643 -5137 125) (643 -5217 125)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 -215.78] 0.125" + "vaxis" "[0 0 -1 53.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332986" + "plane" "(643 -5217 127) (643 -5217 125) (626 -5232 125)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 -162] 0.125" + "vaxis" "[0 0 -1 53.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332985" + "plane" "(626 -5121 127) (626 -5121 125) (643 -5137 125)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 66] 0.125" + "vaxis" "[0 0 -1 54] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538513" + side + { + "id" "332996" + "plane" "(643 -5217 49) (626 -5232 49) (626 -5121 49)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 -162] 0.125" + "vaxis" "[0 -1 0 86.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332995" + "plane" "(626 -5232 47) (643 -5217 47) (643 -5137 47)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 -215.749] 0.125" + "vaxis" "[0 -1 0 -220.203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332994" + "plane" "(626 -5232 49) (626 -5232 47) (626 -5121 47)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28.002] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332993" + "plane" "(643 -5137 49) (643 -5137 47) (643 -5217 47)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 -215.78] 0.125" + "vaxis" "[0 0 -1 53.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332992" + "plane" "(643 -5217 49) (643 -5217 47) (626 -5232 47)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 -162] 0.125" + "vaxis" "[0 0 -1 53.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332991" + "plane" "(626 -5121 49) (626 -5121 47) (643 -5137 47)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 66] 0.125" + "vaxis" "[0 0 -1 54] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538504" + side + { + "id" "333001" + "plane" "(626 -5121 32) (637 -5176 32) (637 -5176 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.196117 0.980581 0 18.969] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333000" + "plane" "(637 -5176 48) (637 -5176 32) (626 -5232 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.192746 0.981249 0 -303.215] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332999" + "plane" "(626 -5232 32) (637 -5176 32) (626 -5121 32)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332998" + "plane" "(626 -5232 48) (626 -5232 32) (626 -5121 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "332997" + "plane" "(626 -5121 48) (637 -5176 48) (626 -5232 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538361" + side + { + "id" "333007" + "plane" "(617.485 -5121.94 162.192) (626.269 -5120 162.192) (627.997 -5127.82 162.192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333006" + "plane" "(626.268 -5120 1.38283e-05) (617.485 -5121.94 1.38283e-05) (619.216 -5129.76 1.38283e-05)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333005" + "plane" "(627.997 -5127.81 0.000411034) (619.214 -5129.75 0.000411034) (619.216 -5129.76 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333004" + "plane" "(617.485 -5121.94 0.000357866) (626.268 -5120 0.000357866) (626.268 -5120 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333003" + "plane" "(619.217 -5129.76 0.000365019) (617.485 -5121.94 0.000365019) (617.485 -5121.94 162.192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.7964] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333002" + "plane" "(626.268 -5120 0.000403881) (627.997 -5127.81 0.000403881) (628 -5127.81 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 1 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538458" + side + { + "id" "333078" + "plane" "(348 -5176 126) (348 -5176 156) (359 -5232 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.192746 0.981249 0 -430.754] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333077" + "plane" "(348 -5176 156) (348 -5176 126) (359 -5121 126)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.196117 0.980581 0 148.691] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333076" + "plane" "(359 -5232 156) (348 -5176 156) (359 -5121 156)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333075" + "plane" "(359 -5121 156) (359 -5121 126) (359 -5232 126)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333074" + "plane" "(359 -5121 126) (348 -5175.98 126) (359 -5231.96 126)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538327" + side + { + "id" "333020" + "plane" "(527.652 -5314 112) (527.652 -5314 156) (528 -5313.93 156)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333019" + "plane" "(528 -5313.93 156) (527.664 -5314 156) (462 -5314 156)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333018" + "plane" "(527.646 -5314 156) (527.646 -5314 112) (462 -5314 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -23.998] 0.25" + "vaxis" "[0 0 -1 7.99805] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333017" + "plane" "(528 -5043 112) (528 -5043 156) (462 -5043 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.393691 0.919243 0 272.17] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333016" + "plane" "(462 -5043 156) (462 -5314 156) (462 -5314 112)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333015" + "plane" "(528 -5313.93 112) (528 -5313.93 156) (528 -5043 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333014" + "plane" "(462 -5314 112) (527.652 -5314 112) (528 -5313.93 112)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538437" + side + { + "id" "333031" + "plane" "(437 -5310 32) (437 -5310 156) (457 -5314 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333030" + "plane" "(437 -5310 156) (437 -5310 32) (390 -5279 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" "333029" + "plane" "(390 -5279 156) (390 -5279 32) (359 -5232 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.550595 0.834773 0 -282.431] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333028" + "plane" "(359 -5121 156) (359 -5121 32) (390 -5074 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.550595 0.834773 0 -341.017] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333027" + "plane" "(390 -5074 156) (390 -5074 32) (437 -5043 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.834773 0.550595 0 -258.558] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333026" + "plane" "(462 -5314 156) (457 -5314 156) (437 -5310 156)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333025" + "plane" "(462 -5314 32) (457 -5314 32) (457 -5314 156)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -23.998] 0.25" + "vaxis" "[0 0 -1 7.99805] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333024" + "plane" "(462 -5043 32) (437 -5043 32) (390 -5074 32)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333023" + "plane" "(437 -5043 156) (437 -5043 32) (462 -5043 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.393691 0.919243 0 272.17] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333022" + "plane" "(462 -5043 32) (462 -5314 32) (462 -5314 156)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333021" + "plane" "(359 -5232 156) (359 -5232 32) (359 -5121 32)" + "material" "METAL/HR_METAL/HR_METAL_SHUTTERS_01" + "uaxis" "[0 1 0 138.379] 0.108398" + "vaxis" "[0 0 -1 264.258] 0.121094" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538340" + side + { + "id" "333037" + "plane" "(429.112 -5046.83 162.192) (436.701 -5042 162.192) (440.998 -5048.75 162.192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333036" + "plane" "(436.7 -5042 2.14577e-05) (429.112 -5046.83 2.14577e-05) (433.41 -5053.58 2.14577e-05)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333035" + "plane" "(440.996 -5048.75 0.000418663) (433.408 -5053.58 0.000418663) (433.41 -5053.58 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333034" + "plane" "(429.112 -5046.83 0.000365496) (436.7 -5042 0.000365496) (436.7 -5042 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333033" + "plane" "(433.412 -5053.58 0.000372648) (429.112 -5046.83 0.000372648) (429.112 -5046.83 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0.537428 0.843309 0 64.2969] 0.125" + "vaxis" "[0 0 -1 0.0824296] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333032" + "plane" "(436.7 -5042 0.00041151) (440.996 -5048.75 0.00041151) (441 -5048.75 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 1 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538300" + side + { + "id" "333049" + "plane" "(462 -5043 0) (437 -5043 0) (390 -5074 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333048" + "plane" "(457 -5314 32) (457 -5314 0) (437 -5310 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333047" + "plane" "(437 -5310 32) (437 -5310 0) (390 -5279 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333046" + "plane" "(390 -5279 32) (390 -5279 0) (359 -5232 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.550595 -0.834773 0 155.434] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333045" + "plane" "(359 -5232 32) (359 -5232 0) (348 -5176 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0.192746 -0.981249 0 -299.165] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333044" + "plane" "(348 -5176 32) (348 -5176 0) (359 -5121 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.196117 -0.98058 0 355.64] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333043" + "plane" "(359 -5121 32) (359 -5121 0) (390 -5074 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.550595 -0.834773 0 219.363] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333042" + "plane" "(390 -5074 32) (390 -5074 0) (437 -5043 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.834773 -0.550595 0 341.914] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333041" + "plane" "(462 -5314 0) (457 -5314 0) (457 -5314 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -23.998] 0.25" + "vaxis" "[0 0 -1 7.99805] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333040" + "plane" "(462 -5314 32) (457 -5314 32) (437 -5310 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.658408 -0.752662 0 -2.02246] 0.25" + "vaxis" "[-0.752662 0.658407 0 31.3389] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333039" + "plane" "(437 -5043 32) (437 -5043 0) (462 -5043 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 92.7441] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333038" + "plane" "(462 -5043 0) (462 -5314 0) (462 -5314 32)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "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" "3538459" + side + { + "id" "333095" + "plane" "(359 -5232 32) (348 -5176 32) (348 -5176 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.192746 0.981249 0 -430.754] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333094" + "plane" "(348 -5176 48) (348 -5176 32) (359 -5121 32)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.196117 0.980581 0 148.691] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333093" + "plane" "(359 -5121 32) (348 -5175.98 32) (359 -5231.96 32)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333092" + "plane" "(359 -5121 48) (359 -5121 32) (359 -5232 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" "333091" + "plane" "(359 -5232 48) (348 -5176 48) (359 -5121 48)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2292946" + side + { + "id" "333061" + "plane" "(342 -5136 49) (359 -5121 49) (359 -5232 49)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 -162] 0.125" + "vaxis" "[1 0 0 86.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333060" + "plane" "(359 -5121 47) (342 -5136 47) (342 -5216 47)" + "material" "STONE/COUNTER01" + "uaxis" "[-0.61394 0.789352 0 -215.749] 0.125" + "vaxis" "[-0.789352 -0.613941 0 -220.203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333059" + "plane" "(359 -5121 49) (359 -5121 47) (359 -5232 47)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28.002] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333058" + "plane" "(342 -5216 49) (342 -5216 47) (342 -5136 47)" + "material" "STONE/COUNTER01" + "uaxis" "[-0.613941 0.789352 0 -215.78] 0.125" + "vaxis" "[0 0 1 53.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333057" + "plane" "(342 -5136 49) (342 -5136 47) (359 -5121 47)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 -162] 0.125" + "vaxis" "[0 0 1 53.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333056" + "plane" "(359 -5232 49) (359 -5232 47) (342 -5216 47)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 66] 0.125" + "vaxis" "[0 0 -1 54] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3538392" + side + { + "id" "333067" + "plane" "(355.998 -5129 162.192) (358.252 -5120.29 162.192) (366 -5122.29 162.192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333066" + "plane" "(358.252 -5120.29 -9.05991e-06) (355.998 -5129 -9.05991e-06) (363.742 -5131 -9.05991e-06)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333065" + "plane" "(365.995 -5122.29 0.000388145) (363.74 -5131 0.000388145) (363.742 -5131 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 1 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333064" + "plane" "(355.998 -5129 0.000334978) (358.252 -5120.29 0.000334978) (358.252 -5120.29 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 1 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333063" + "plane" "(363.744 -5131 0.000342131) (355.998 -5129 0.000342131) (355.998 -5129 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 64.2969] 0.125" + "vaxis" "[0 0 -1 0.0824296] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333062" + "plane" "(358.252 -5120.29 0.000380993) (365.995 -5122.29 0.000380993) (365.999 -5122.29 162.192)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 2000]" + } +} +entity +{ + "id" "3538638" + "classname" "func_detail" + solid + { + "id" "3538059" + side + { + "id" "333128" + "plane" "(622 -5055 160) (563 -5015 160) (492 -5001 160)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 420] 0.125" + "vaxis" "[0 1 0 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333127" + "plane" "(492 -5001 208) (563 -5015 208) (622 -5055 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" "333126" + "plane" "(492 -5001 160) (563 -5015 160) (563 -5015 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.981108 -0.193458 0 -90.959] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333125" + "plane" "(563 -5015 160) (622 -5055 160) (622 -5055 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.827708 -0.561158 0 -840.183] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333124" + "plane" "(622 -5055 160) (662 -5114 160) (662 -5114 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.561158 -0.827708 0 -53.1025] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333123" + "plane" "(662 -5114 160) (676 -5184 160) (676 -5184 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.196116 -0.98058 0 -278.138] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333122" + "plane" "(676 -5184 160) (662 -5255 160) (662 -5255 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[-0.193458 -0.981108 0 782.788] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333121" + "plane" "(662 -5255 160) (622 -5314 160) (622 -5314 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[-0.561158 -0.827707 0 987.068] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333120" + "plane" "(363 -5314 160) (323 -5255 160) (323 -5255 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[-0.561159 0.827708 0 -98.2256] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333119" + "plane" "(323 -5255 160) (309 -5184 160) (309 -5184 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[-0.193459 0.981108 0 218.598] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333118" + "plane" "(309 -5184 160) (323 -5114 160) (323 -5114 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.196116 0.98058 0 -766.317] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333117" + "plane" "(323 -5114 160) (363 -5055 160) (363 -5055 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.561158 0.827708 0 -795.896] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333116" + "plane" "(363 -5055 160) (422 -5015 160) (422 -5015 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.827708 0.561158 0 -61.2432] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333115" + "plane" "(422 -5015 160) (492 -5001 160) (492 -5001 208)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.98058 0.196116 0 -886.805] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "333114" + "plane" "(622 -5314 160) (363 -5314 160) (363 -5314 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 2500]" + } +} +entity +{ + "id" "3538814" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-1 -0 -0" + "BasisOrigin" "384 -5361 88" + "BasisU" "-0 1 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "332067" + "StartU" "1" + "StartV" "0" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "384 -5361 88" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 6500]" + } +} +hidden +{ + entity + { + "id" "3538872" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_authorised_personel_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "495 -5043 130.004" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3538902" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "418 -4850 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3538906" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "553 -4850 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3539058" + "classname" "prop_static" + "angles" "0 43.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "355 -4665 0.238861" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "3539090" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "1519.5 -3216.5 72" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "2601250" + side + { + "id" "333214" + "plane" "(1519 -3216 120) (1520 -3216 120) (1520 -3217 120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333213" + "plane" "(1519 -3217 24) (1520 -3217 24) (1520 -3216 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" + } + side + { + "id" "333212" + "plane" "(1519 -3216 120) (1519 -3217 120) (1519 -3217 24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493] 0.15" + "vaxis" "[0 -1 0 -251.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333211" + "plane" "(1520 -3216 24) (1520 -3217 24) (1520 -3217 120)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493] 0.15" + "vaxis" "[0 1 0 27.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333210" + "plane" "(1520 -3216 120) (1519 -3216 120) (1519 -3216 24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493] 0.15" + "vaxis" "[-1 0 0 251.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "333209" + "plane" "(1520 -3217 24) (1519 -3217 24) (1519 -3217 120)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493] 0.15" + "vaxis" "[1 0 0 20] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 8000]" + } +} +entity +{ + "id" "3496123" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "196 206 208 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-688 -3617.46 -85" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "3496128" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "234 193 138 570" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "-688 -3617.46 -70" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "3496133" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "-688 -3617.46 -54" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +hidden +{ + entity + { + "id" "3496136" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-688 -3617.46 -48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "3496157" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "196 206 208 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-688 -3484.68 -85" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "3496162" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "234 193 138 570" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "-688 -3484.68 -70" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "3496167" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "-688 -3484.68 -54" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +hidden +{ + entity + { + "id" "3496170" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-688 -3484.68 -48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +hidden +{ + entity + { + "id" "3483032" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-771 -3397 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3483112" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-771 -3653 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3483116" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_8.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-771 -3725 -223.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 10000]" + } + } +} +hidden +{ + entity + { + "id" "3467817" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1442 -3893 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3467845" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1446 -3635 -29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3467853" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1442 -3535 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3467917" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1034 -3430 18" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "3467933" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "907 -3430 18" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "3467945" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "961 -3486.18 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3467990" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1217.3 -3486.7 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3467996" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1385 -3570 19" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3468012" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_hedge_256_128_high.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1387 -3792 19" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3468344" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "912.236 -3654.46 0.249999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3468352" + "classname" "prop_static" + "angles" "0 45 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "912 -3557 0.238861" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "3468390" + "classname" "func_detail" + solid + { + "id" "3467895" + side + { + "id" "329924" + "plane" "(888 -3424 56) (1312 -3424 56) (1312 -3440 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329923" + "plane" "(888 -3440 0) (1312 -3440 0) (1312 -3424 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" "329922" + "plane" "(888 -3424 56) (888 -3440 56) (888 -3440 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" "329921" + "plane" "(1312 -3424 0) (1312 -3440 0) (1312 -3440 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" "329920" + "plane" "(1312 -3424 56) (888 -3424 56) (888 -3424 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 44] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329919" + "plane" "(1312 -3440 0) (888 -3440 0) (888 -3440 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3467912" + side + { + "id" "329930" + "plane" "(888 -3424 67) (1312 -3424 67) (1312 -3440 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -698] 0.125" + "vaxis" "[0 -1 0 407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329929" + "plane" "(888 -3440 56) (1312 -3440 56) (1312 -3424 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329928" + "plane" "(888 -3424 67) (888 -3440 67) (888 -3440 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" "329927" + "plane" "(1312 -3424 56) (1312 -3440 56) (1312 -3440 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329926" + "plane" "(1312 -3424 67) (888 -3424 67) (888 -3424 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -698] 0.125" + "vaxis" "[0 0 1 638.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329925" + "plane" "(1312 -3440 56) (888 -3440 56) (888 -3440 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -698] 0.125" + "vaxis" "[0 0 -1 814.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15500]" + } +} +entity +{ + "id" "3468400" + "classname" "func_detail" + solid + { + "id" "3467908" + side + { + "id" "329936" + "plane" "(888 -3488 56) (1360 -3488 56) (1360 -3504 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329935" + "plane" "(888 -3504 0) (1360 -3504 0) (1360 -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" "329934" + "plane" "(888 -3488 56) (888 -3504 56) (888 -3504 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" "329933" + "plane" "(1360 -3488 0) (1360 -3504 0) (1360 -3504 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" "329932" + "plane" "(1360 -3488 56) (888 -3488 56) (888 -3488 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" "329931" + "plane" "(1360 -3504 0) (888 -3504 0) (888 -3504 56)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 44] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3467884" + side + { + "id" "329942" + "plane" "(1360 -3488 0) (1360 -4200 0) (1376 -4200 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" "329941" + "plane" "(1360 -4200 56) (1360 -4200 0) (1360 -3488 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 44.2578] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329940" + "plane" "(1376 -3488 56) (1376 -3488 0) (1376 -4200 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 44.2578] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329939" + "plane" "(1360 -3488 56) (1360 -3488 0) (1376 -3488 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" "329938" + "plane" "(1376 -4200 56) (1376 -4200 0) (1360 -4200 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" "329937" + "plane" "(1360 -4200 56) (1360 -3488 56) (1376 -3488 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3467910" + side + { + "id" "329948" + "plane" "(888 -3488 67) (1360 -3488 67) (1360 -3504 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -698] 0.125" + "vaxis" "[0 -1 0 407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329947" + "plane" "(888 -3504 56) (1360 -3504 56) (1360 -3488 56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329946" + "plane" "(888 -3488 67) (888 -3504 67) (888 -3504 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" "329945" + "plane" "(1360 -3488 56) (1360 -3504 56) (1360 -3504 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329944" + "plane" "(1360 -3488 67) (888 -3488 67) (888 -3488 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -698] 0.125" + "vaxis" "[0 0 1 638.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329943" + "plane" "(1360 -3504 56) (888 -3504 56) (888 -3504 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -698] 0.125" + "vaxis" "[0 0 -1 302.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "3468411" + "classname" "func_detail" + solid + { + "id" "3467811" + side + { + "id" "329954" + "plane" "(1424 -3456 0) (1424 -4200 0) (1440 -4200 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" "329953" + "plane" "(1424 -4200 56) (1424 -4200 0) (1424 -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" "329952" + "plane" "(1440 -3456 56) (1440 -3456 0) (1440 -4200 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 44.2578] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329951" + "plane" "(1424 -3456 56) (1424 -3456 0) (1440 -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" + } + side + { + "id" "329950" + "plane" "(1440 -4200 56) (1440 -4200 0) (1424 -4200 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" "329949" + "plane" "(1424 -4200 56) (1424 -3456 56) (1440 -3456 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3467810" + side + { + "id" "329960" + "plane" "(1424 -4200 67) (1424 -3456 67) (1440 -3456 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -698] 0.125" + "vaxis" "[0 -1 0 407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329959" + "plane" "(1424 -3456 56) (1424 -3456 67) (1424 -4200 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329958" + "plane" "(1440 -4200 56) (1440 -4200 67) (1440 -3456 67)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 93.998] 0.125" + "vaxis" "[0 -1 0 407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329957" + "plane" "(1440 -3456 56) (1440 -3456 67) (1424 -3456 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329956" + "plane" "(1424 -4200 56) (1424 -4200 67) (1440 -4200 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329955" + "plane" "(1424 -3456 56) (1424 -4200 56) (1440 -4200 56)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +hidden +{ + entity + { + "id" "3454626" + "classname" "prop_static" + "angles" "0 265.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1344.17 -3772.91 0.747166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3454630" + "classname" "prop_static" + "angles" "0 265.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1298 -3564 0.747166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "3454743" + "classname" "func_detail" + solid + { + "id" "3454772" + side + { + "id" "329630" + "plane" "(384 -3424 224) (384 -3392 224) (888 -3392 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" "329629" + "plane" "(384 -3392 160) (384 -3424 160) (920 -3424 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329628" + "plane" "(384 -3392 160) (384 -3392 224) (384 -3424 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" "329627" + "plane" "(888 -3392 160) (888 -3392 224) (384 -3392 224)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[1 0 0 941.926] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "16777216" + } + side + { + "id" "329626" + "plane" "(384 -3424 160) (384 -3424 224) (920 -3424 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" "329625" + "plane" "(920 -3424 160) (920 -3424 224) (888 -3392 224)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0.707107 -0.707107 0 218.593] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "16777216" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3441661" + side + { + "id" "329618" + "plane" "(888 -3832 224) (888 -3424 224) (920 -3424 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" "329617" + "plane" "(888 -3424 160) (888 -3832 160) (920 -3832 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329616" + "plane" "(888 -3832 160) (888 -3424 160) (888 -3424 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" "329615" + "plane" "(920 -3424 160) (920 -3832 160) (920 -3832 224)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[0 -1 0 -552.03] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "16777216" + } + side + { + "id" "329614" + "plane" "(888 -3424 160) (920 -3424 160) (920 -3424 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" "329613" + "plane" "(920 -3832 160) (888 -3832 160) (888 -3832 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3454817" + side + { + "id" "329636" + "plane" "(-64 -3832 224) (920 -3832 224) (904 -3848 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" "329635" + "plane" "(-64 -3848 160) (904 -3848 160) (920 -3832 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329634" + "plane" "(-64 -3832 224) (-64 -3848 224) (-64 -3848 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" "329633" + "plane" "(920 -3832 224) (-64 -3832 224) (-64 -3832 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" "329632" + "plane" "(-64 -3848 224) (904 -3848 224) (904 -3848 160)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[-1 0 0 -371.014] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "16777216" + } + side + { + "id" "329631" + "plane" "(904 -3848 224) (920 -3832 224) (920 -3832 160)" + "material" "CS_APOLLO/OUTSIDE/TILES_BLACK" + "uaxis" "[-0.707107 -0.707107 0 -704.789] 0.125" + "vaxis" "[0 0 -1 920] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "16777216" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "3454778" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_256.mdl" + "renderamt" "255" + "rendercolor" "253 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "961 -4632 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "3454856" + "classname" "prop_static" + "angles" "0 265.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1060 -3748 0.747166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3454860" + "classname" "prop_static" + "angles" "0 265.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1224.53 -3766.69 0.747166" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3428232" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1432 -3454 18" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "3428268" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1431.89 -3710 18" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "3428545" + "classname" "prop_static" + "angles" "0 0.5 0" + "disableshadows" "1" + "fademaxdist" "2136" + "fademindist" "1868" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1147 -3623 0.635532" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3386496" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2322.79 -5008 272" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3386644" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2322.79 -4752.33 272" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3387040" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2323 -5504 48.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3387056" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2323 -4752 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3359085" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-905 -3179 -3" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3359089" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-913 -3242 -3" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3359156" + "classname" "prop_static" + "angles" "0 207.427 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1062.29 -3207 4.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3344984" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9440 8599 5152.25" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3344992" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9463.69 8455 5152.25" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345015" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9457.5 8412.12 5152" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345075" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8540.69 8193 5152" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345106" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8672.69 8367 5152.25" + editor + { + "color" "210 139 0" + "groupid" "4130857" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345110" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8672.69 8311 5152.25" + editor + { + "color" "210 139 0" + "groupid" "4130857" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345136" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9099.63 9443.28 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345140" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9126.12 9465.21 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345144" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9103.84 9478.57 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345148" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9115.77 9433.28 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345152" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8929.17 9379.99 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345156" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8942.81 9364.27 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345160" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8919.73 9373.19 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345164" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9452.92 9402.02 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345168" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9452.21 9376.93 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345172" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_skybox_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9473.11 9372.28 5150" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "3345194" + "classname" "prop_static" + "angles" "0 75 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-3226 -3322 32.6355" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3345210" + "classname" "prop_static" + "angles" "0 75 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-3137 -3609 32.6355" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3345222" + "classname" "prop_static" + "angles" "0 75 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2635 -3420 32.6355" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3345246" + "classname" "prop_static" + "angles" "0 75 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2247 -3675 32.7472" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3345250" + "classname" "prop_static" + "angles" "0 105 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2516.32 -3701.82 32.7472" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3345258" + "classname" "prop_static" + "angles" "0 75 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2563 -3239.94 85" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3345270" + "classname" "prop_static" + "angles" "0 48 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1831 -2975 0.747162" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3345282" + "classname" "prop_static" + "angles" "0 123.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1895 -3037 0.747162" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3345298" + "classname" "prop_static" + "angles" "0 121.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1847.81 -3018.04 0.249992" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3345330" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1703 -3075 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3345359" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1447 -3075 0.250015" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3345409" + "classname" "prop_static" + "angles" "0 121.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1710.94 -2973.21 1.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3345413" + "classname" "prop_static" + "angles" "0 121.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1750.99 -3016.48 1.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3345421" + "classname" "prop_static" + "angles" "0 151.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1555 -2960 4.26434" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3345445" + "classname" "prop_static" + "angles" "0 335 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1776.69 -2964.68 3.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3345449" + "classname" "prop_static" + "angles" "0 335 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1811 -3025 3.26721" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3345461" + "classname" "prop_static" + "angles" "0 246.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1708.36 -2996.06 3.36468" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "3329791" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "190 253 128 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1856 -3104 177.809" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3329816" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "190 253 128 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1575 -2992 151.806" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3329856" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "190 253 128 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2165 -3648 120.723" + editor + { + "color" "216 113 0" + "groupid" "3704689" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3329886" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "190 253 128 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1855 -4244 135.613" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "3329943" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "223 254 192 2" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1232 -5248 142" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "3330349" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2134 -5840 48.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330353" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "2134 -5840 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330373" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1966 -5840 48.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330377" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1966 -5840 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330405" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1704 -5665 48.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330409" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1704 -5665 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330453" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1362 -5842 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330457" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1362 -5842 -0.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330493" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1233 -5677 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330497" + "classname" "prop_dynamic" + "angles" "0 0 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "1233 -5677 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330533" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2161 -5579 48.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330537" + "classname" "prop_dynamic" + "angles" "0 0 0" + "body" "0" + "DisableBoneFollowers" "0" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "maxcpulevel" "0" + "maxgpulevel" "0" + "MinAnimTime" "5" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase2_glass.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "2161 -5579 48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3330772" + "classname" "prop_static" + "angles" "0 148 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-367.588 -3213.11 5.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3330804" + "classname" "prop_static" + "angles" "0 249 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-392 -3227 5.24999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3330816" + "classname" "prop_static" + "angles" "0 84 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-457 -3223 5.24999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3330828" + "classname" "prop_static" + "angles" "0 40.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-502 -3215 5.24999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3330844" + "classname" "prop_static" + "angles" "0 4.49999 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-542 -3212 5.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3330852" + "classname" "prop_static" + "angles" "0 40.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-515 -3224 5.24999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3330860" + "classname" "prop_static" + "angles" "0 134 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-550 -3219 5.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3330874" + "classname" "prop_static" + "angles" "0 46.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2301 -3648 32.6355" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3330882" + "classname" "prop_static" + "angles" "0 0.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2307 -3824 32.6355" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "3330896" + "classname" "trigger_multiple" + "origin" "797 -5716 60.46" + "spawnflags" "4097" + "StartDisabled" "0" + "wait" "3" + connections + { + "OnTrigger" "scanner3PlaySound0.1-1" + } + solid + { + "id" "3330894" + side + { + "id" "329100" + "plane" "(766 -5720 112.955) (766 -5712 112.955) (820 -5712 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329099" + "plane" "(766 -5712 7.95517) (766 -5720 7.95517) (820 -5720 7.95517)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329098" + "plane" "(766 -5720 7.95601) (766 -5712 7.95601) (766 -5712 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329097" + "plane" "(820 -5712 7.95619) (820 -5720 7.95619) (820 -5720 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329096" + "plane" "(766 -5712 7.95611) (820 -5712 7.95611) (820 -5712 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329095" + "plane" "(820 -5720 7.95609) (766 -5720 7.95609) (766 -5720 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "3330907" + "classname" "ambient_generic" + "cspinup" "0" + "fadeinsecs" "0" + "fadeoutsecs" "0" + "health" "1" + "lfomodpitch" "0" + "lfomodvol" "0" + "lforate" "0" + "lfotype" "0" + "message" "Buttons.snd17" + "pitch" "100" + "pitchstart" "100" + "preset" "0" + "radius" "400" + "spawnflags" "48" + "spindown" "0" + "spinup" "0" + "targetname" "scanner3" + "volstart" "0" + "origin" "798 -5717 52" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "3330937" + "classname" "ambient_generic" + "cspinup" "0" + "fadeinsecs" "0" + "fadeoutsecs" "0" + "health" "1" + "lfomodpitch" "0" + "lfomodvol" "0" + "lforate" "0" + "lfotype" "0" + "message" "Buttons.snd17" + "pitch" "100" + "pitchstart" "100" + "preset" "0" + "radius" "400" + "spawnflags" "48" + "spindown" "0" + "spinup" "0" + "targetname" "scanner1" + "volstart" "0" + "origin" "626 -5716 52" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "3330952" + "classname" "trigger_multiple" + "origin" "628 -5716 60.46" + "spawnflags" "4097" + "StartDisabled" "0" + "wait" "3" + connections + { + "OnTrigger" "scanner1PlaySound0.1-1" + } + solid + { + "id" "3330953" + side + { + "id" "329124" + "plane" "(604 -5720 112.955) (604 -5712 112.955) (660 -5712 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329123" + "plane" "(604 -5712 7.95517) (604 -5720 7.95517) (660 -5720 7.95517)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329122" + "plane" "(604 -5720 7.95601) (604 -5712 7.95601) (604 -5712 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329121" + "plane" "(660 -5712 7.95619) (660 -5720 7.95619) (660 -5720 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329120" + "plane" "(604 -5712 7.95611) (660 -5712 7.95611) (660 -5712 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329119" + "plane" "(660 -5720 7.95609) (604 -5720 7.95609) (604 -5720 112.955)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +hidden +{ + entity + { + "id" "3330980" + "classname" "prop_static" + "angles" "0 172 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "869 -5583 0.238853" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "3331444" + "classname" "func_detail" + solid + { + "id" "2727327" + side + { + "id" "329184" + "plane" "(-495 -5704 214) (-376 -5680 214) (-376 -5688 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329183" + "plane" "(-495 -5712 182) (-376 -5688 182) (-376 -5680 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[-0.189765 0.981829 0 199.516] 0.125" + "vaxis" "[0.963989 0.186317 0.189765 44.6328] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329182" + "plane" "(-376 -5688 182) (-376 -5688 214) (-376 -5680 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329181" + "plane" "(-495 -5704 182) (-495 -5704 214) (-495 -5712 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329180" + "plane" "(-495 -5712 182) (-495 -5712 214) (-376 -5688 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329179" + "plane" "(-376 -5680 182) (-376 -5680 214) (-495 -5704 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725687" + side + { + "id" "329190" + "plane" "(-503 -5704 214) (-503 -5712 214) (-613 -5785 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329189" + "plane" "(-503 -5712 182) (-503 -5704 182) (-613 -5776 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[-0.5586 0.829437 0 162.672] 0.125" + "vaxis" "[0.687965 0.463324 0.5586 4.76563] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329188" + "plane" "(-503 -5712 214) (-503 -5704 214) (-503 -5704 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" "329187" + "plane" "(-613 -5776 214) (-613 -5785 214) (-613 -5785 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" "329186" + "plane" "(-613 -5785 214) (-503 -5712 214) (-503 -5712 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329185" + "plane" "(-503 -5704 214) (-613 -5776 214) (-613 -5776 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725682" + side + { + "id" "329196" + "plane" "(-621 -5785 214) (-613 -5785 214) (-685 -5873 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329195" + "plane" "(-693 -5873 182) (-685 -5873 182) (-613 -5785 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[-0.752577 0.658505 0 20.7129] 0.125" + "vaxis" "[0.433628 0.495575 0.752577 218.613] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329194" + "plane" "(-613 -5785 214) (-621 -5785 214) (-621 -5785 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" "329193" + "plane" "(-693 -5873 214) (-685 -5873 214) (-685 -5873 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" "329192" + "plane" "(-685 -5873 214) (-613 -5785 214) (-613 -5785 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329191" + "plane" "(-621 -5785 214) (-693 -5873 214) (-693 -5873 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725677" + side + { + "id" "329202" + "plane" "(-693 -5881 214) (-685 -5881 214) (-716 -5992 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329201" + "plane" "(-724 -5992 182) (-716 -5992 182) (-685 -5881 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[-0.962575 0.271016 0 162.854] 0.125" + "vaxis" "[0.0734497 0.260873 0.962575 243.441] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329200" + "plane" "(-685 -5881 214) (-693 -5881 214) (-693 -5881 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" "329199" + "plane" "(-724 -5992 214) (-716 -5992 214) (-716 -5992 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" "329198" + "plane" "(-716 -5992 214) (-685 -5881 214) (-685 -5881 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329197" + "plane" "(-693 -5881 214) (-724 -5992 214) (-724 -5992 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725667" + side + { + "id" "329208" + "plane" "(-724 -6000 214) (-716 -6000 214) (-678 -6111 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329207" + "plane" "(-686 -6111 182) (-678 -6111 182) (-716 -6000 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[-0.960104 -0.279642 0 -107.74] 0.125" + "vaxis" "[0.0781996 -0.268485 0.960104 -13.2813] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329206" + "plane" "(-716 -6000 214) (-724 -6000 214) (-724 -6000 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" "329205" + "plane" "(-686 -6111 214) (-678 -6111 214) (-678 -6111 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" "329204" + "plane" "(-678 -6111 214) (-716 -6000 214) (-716 -6000 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[-0.323889 0.946095 0 -223.688] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329203" + "plane" "(-724 -6000 214) (-686 -6111 214) (-686 -6111 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725663" + side + { + "id" "329214" + "plane" "(-686 -6119 214) (-678 -6119 214) (-609 -6205 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329213" + "plane" "(-617 -6205 182) (-609 -6205 182) (-678 -6119 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[-0.779983 -0.6258 0 -216.645] 0.125" + "vaxis" "[0.391626 -0.488114 0.779983 -92.4883] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329212" + "plane" "(-678 -6119 214) (-686 -6119 214) (-686 -6119 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" "329211" + "plane" "(-617 -6205 214) (-609 -6205 214) (-609 -6205 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" "329210" + "plane" "(-609 -6205 214) (-678 -6119 214) (-678 -6119 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[-0.625801 0.779983 0 -12.2158] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329209" + "plane" "(-686 -6119 214) (-617 -6205 214) (-617 -6205 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725658" + side + { + "id" "329220" + "plane" "(-503 -6272 214) (-503 -6280 214) (-609 -6213 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329219" + "plane" "(-503 -6280 182) (-503 -6272 182) (-609 -6205 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[-0.528441 -0.84897 0 -94.1094] 0.125" + "vaxis" "[0.72075 -0.44863 0.528441 -238.346] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329218" + "plane" "(-609 -6205 214) (-609 -6213 214) (-609 -6213 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" "329217" + "plane" "(-503 -6280 214) (-503 -6272 214) (-503 -6272 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" "329216" + "plane" "(-503 -6272 214) (-609 -6205 214) (-609 -6205 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329215" + "plane" "(-609 -6213 214) (-503 -6280 214) (-503 -6280 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2725693" + side + { + "id" "329226" + "plane" "(-495 -6272 214) (-372 -6304 214) (-372 -6312 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329225" + "plane" "(-495 -6280 182) (-372 -6312 182) (-372 -6304 182)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[-0.244452 -0.969661 0 -103.32] 0.125" + "vaxis" "[0.940243 -0.237036 0.244452 -62.041] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329224" + "plane" "(-495 -6272 182) (-495 -6272 214) (-495 -6280 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329223" + "plane" "(-372 -6312 182) (-372 -6312 214) (-372 -6304 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329222" + "plane" "(-372 -6304 182) (-372 -6304 214) (-495 -6272 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329221" + "plane" "(-495 -6280 182) (-495 -6280 214) (-372 -6312 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "3331464" + "classname" "func_detail" + solid + { + "id" "2725719" + side + { + "id" "329232" + "plane" "(-56 -6119 214) (-32 -6000 214) (-11 -6000 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329231" + "plane" "(-32 -6000 182) (-56 -6119 182) (-46 -6119 182)" + "material" "CS_APOLLO/CEILING/HR_METAL_CORRUGATED_005_DARK" + "uaxis" "[1 0 0 36] 0.125" + "vaxis" "[0 -1 0 -640] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329230" + "plane" "(-56 -6119 182) (-56 -6119 214) (-46 -6119 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329229" + "plane" "(-11 -6000 182) (-11 -6000 214) (-32 -6000 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329228" + "plane" "(-32 -6000 182) (-32 -6000 214) (-56 -6119 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329227" + "plane" "(-46 -6119 182) (-46 -6119 214) (-11 -6000 214)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 0 1 12] 0.125" + "vaxis" "[1 0 0 155] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15500]" + } +} +entity +{ + "id" "3331488" + "classname" "func_detail" + solid + { + "id" "2950229" + side + { + "id" "329305" + "plane" "(-447 -4767 192) (-427 -4767 192) (-427 -4777 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329304" + "plane" "(-447 -4777 184) (-427 -4777 184) (-427 -4767 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329303" + "plane" "(-447 -4767 192) (-447 -4777 192) (-447 -4777 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329302" + "plane" "(-427 -4767 184) (-427 -4777 184) (-427 -4777 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329301" + "plane" "(-427 -4767 192) (-447 -4767 192) (-447 -4767 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "329300" + "plane" "(-427 -4777 184) (-447 -4777 184) (-447 -4777 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +hidden +{ + entity + { + "id" "3261711" + "classname" "prop_static" + "angles" "0 16.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_keyboard01.mdl" + "renderamt" "255" + "rendercolor" "128 128 128" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1844.6 -5463 89" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "3261715" + "classname" "prop_static" + "angles" "0 15 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_office_desk_monitor.mdl" + "renderamt" "255" + "rendercolor" "87 141 181" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1867 -5486 88" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3261719" + "classname" "prop_static" + "angles" "0 271 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/displaycase1.mdl" + "preventpropcombine" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1854.79 -5474.21 48.3729" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3247737" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3378 -2268 -24.0907" + editor + { + "color" "233 146 0" + "groupid" "3247736" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3247763" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3378 -2612 -24.0906" + editor + { + "color" "233 146 0" + "groupid" "3247762" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3247789" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2204 -2903 -24.0906" + editor + { + "color" "233 146 0" + "groupid" "3247788" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3247826" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-260 -4758 -0.0585403" + editor + { + "color" "233 146 0" + "groupid" "3247825" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3247848" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "125 -4680 -0.0585403" + editor + { + "color" "233 146 0" + "groupid" "3247847" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3247869" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-55.0005 -5688 32.0001" + editor + { + "color" "233 146 0" + "groupid" "3247868" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3247890" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-40 -6156 32.0001" + editor + { + "color" "233 146 0" + "groupid" "3247889" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3247929" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1855 -4208 5.34058e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3247948" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1932 -3432 16.0001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3248010" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1336 -3020 16.0001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3248029" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "488 -2558 3.8147e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3248092" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-780 -3176 4.57764e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3248133" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-524 -2904 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3248137" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-524 -2904 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3190480" + "classname" "prop_static" + "angles" "0 180 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-830.138 -2962 8" + editor + { + "color" "135 180 0" + "groupid" "3190617" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "3190535" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 249 213 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 180 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "-830 -2962 13" + editor + { + "color" "135 180 0" + "groupid" "3190617" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "3190583" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-830.201 -2962 9" + editor + { + "color" "135 180 0" + "groupid" "3190617" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "3193388" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1278 -3059 -155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3177185" + "classname" "prop_static" + "angles" "0 229.5 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2367.64 -5317.14 78.1242" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3177197" + "classname" "prop_static" + "angles" "0 314 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2350 -5179 76.0711" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3177217" + "classname" "prop_static" + "angles" "0 29.5 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/cs_apollo/a7l_suit_pose05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-840 -2951 8" + editor + { + "color" "135 180 0" + "groupid" "3190617" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3163406" + "classname" "prop_static" + "angles" "0 121.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1063.09 -3108 64" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163414" + "classname" "prop_static" + "angles" "0 121.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1384 -2932 39.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163422" + "classname" "prop_static" + "angles" "0 84 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1256 -2936 31.6774" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163522" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-103 -4002 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "3163684" + "classname" "prop_static" + "angles" "0 85.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "593 -2145 -41" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163749" + "classname" "prop_static" + "angles" "0 355.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "808 -2092 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163783" + "classname" "prop_static" + "angles" "0 355.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "808 -2060 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163852" + "classname" "prop_static" + "angles" "0 265.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/fan_palm_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2701 -4301 30" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163860" + "classname" "prop_static" + "angles" "0 265.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/fan_palm_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2779.12 -4323.02 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163888" + "classname" "prop_static" + "angles" "0 354 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2689 -4328 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163892" + "classname" "prop_static" + "angles" "0 354 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2729.88 -4326.4 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163896" + "classname" "prop_static" + "angles" "0 354 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2781 -4325 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3163912" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2688 -4304 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3149952" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1664 -6656 -28.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3149960" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1696 -6656 -28.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3150001" + "classname" "prop_static" + "angles" "0 132.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1920 -5936 -25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150083" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1552 -5936 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150152" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2000 -5936 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150156" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/sage_bush_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1260 -5928 -28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150191" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/sage_bush_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2154.86 -6037.96 -23.3695" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150195" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/sage_bush_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2172.65 -6118 -23.3695" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150207" + "classname" "prop_static" + "angles" "0 173.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2591.07 -6234 -49.9449" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150211" + "classname" "prop_static" + "angles" "0 118 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2625 -6223 -49.9449" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150227" + "classname" "prop_static" + "angles" "0 118 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2740 -6480.58 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150243" + "classname" "prop_static" + "angles" "0 253 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2736 -6532 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150263" + "classname" "prop_static" + "angles" "0 252.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2188 -6201.48 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150279" + "classname" "prop_static" + "angles" "0 252.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2256 -6212 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150287" + "classname" "prop_static" + "angles" "0 253 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2748 -6810.37 -28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150295" + "classname" "prop_static" + "angles" "0 208 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2728 -6748 -28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150303" + "classname" "prop_static" + "angles" "0 208 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2724 -6664 -28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150318" + "classname" "prop_static" + "angles" "0 247 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2748 -6432 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3150326" + "classname" "prop_static" + "angles" "0 210.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2780 -6976 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3083987" + "classname" "prop_static" + "angles" "0 0 160" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lunar_orbiter.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1848 -4880 252" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 6000]" + } + } +} +entity +{ + "id" "3070385" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "630 -2464 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain003a" + "sides" "372796" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -38.0002 0" + "uv1" "-32 38.0002 0" + "uv2" "32 38.0002 0" + "uv3" "32 -38.0002 0" + "origin" "630 -2464 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "3070391" + "classname" "info_overlay" + "BasisNormal" "0 0 1" + "BasisOrigin" "627.885 -2880.85 -40" + "BasisU" "1 0 0" + "BasisV" "0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain003a" + "sides" "337100" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "627.885 -2880.85 -40" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "3070485" + "classname" "prop_dynamic" + "angles" "0 14.5 0" + "body" "0" + "DefaultAnim" "idle" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "2000" + "fademindist" "-1" + "fadescale" "3000" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "5" + "MinAnimTime" "2" + "model" "models/props_fairgrounds/fairgrounds_flagpole01.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "1" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "targetname" "flag4" + "origin" "-291 -6694 -24.6946" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3070497" + "classname" "prop_dynamic" + "angles" "0 350.5 0" + "body" "0" + "DefaultAnim" "idle" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "3000" + "fademindist" "1500" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_fairgrounds/fairgrounds_flagpole01.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "1" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "targetname" "flag1" + "origin" "1452.95 -1806.75 0.305389" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3070505" + "classname" "prop_dynamic" + "angles" "0 355.5 0" + "body" "0" + "DefaultAnim" "idle" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "3000" + "fademindist" "2000" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_fairgrounds/fairgrounds_flagpole01.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "1" + "solid" "0" + "spawnflags" "0" + "StartDisabled" "0" + "targetname" "flag2" + "origin" "1460 -2008 0.305389" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3070509" + "classname" "prop_dynamic" + "angles" "0 14.5 0" + "body" "0" + "DefaultAnim" "idle" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademaxdist" "3000" + "fademindist" "2000" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props_fairgrounds/fairgrounds_flagpole01.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "1" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "targetname" "flag3" + "origin" "60 -6701 -24.6946" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "3070525" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_urban/garbage_can002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2830 -2864 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "3070529" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_locker_bench/nuke_locker_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2902 -2865 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "3070533" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_urban/garbage_can002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2974 -2864 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "3070549" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_urban/garbage_can002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2002 -2040 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "3070553" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_locker_bench/nuke_locker_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2074 -2041 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "3070557" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_urban/garbage_can002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2146 -2040 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "3070581" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1941 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "3070605" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_64.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2157.3 -2876 201.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "3070609" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2163.3 -2872 410" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3070613" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-2163.3 -2880 426" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3056993" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-686 -6007 344" + editor + { + "color" "245 126 0" + "groupid" "3057043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "3057012" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-686 -6071 344" + editor + { + "color" "245 126 0" + "groupid" "3057043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "3057045" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-49 -6073 344" + editor + { + "color" "245 126 0" + "groupid" "3057044" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "3057049" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-49 -6009 344" + editor + { + "color" "245 126 0" + "groupid" "3057044" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "3057053" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-49 -5881 344" + editor + { + "color" "245 126 0" + "groupid" "3057044" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "3057135" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2 -4724 109" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "3057202" + "classname" "info_overlay" + "BasisNormal" "1 0 0" + "BasisOrigin" "-224 -5409.29 5.20098" + "BasisU" "0 1 0" + "BasisV" "0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_train/train_cement_stain_01" + "sides" "327675 327698" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-224 -5409.29 5.20098" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13000]" + } +} +entity +{ + "id" "3042599" + "classname" "func_detail" + solid + { + "id" "2446517" + side + { + "id" "327155" + "plane" "(-464 -6632 -48) (-464 -9248 -48) (-448 -9248 -48)" + "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" "327154" + "plane" "(-464 -9248 24) (-464 -9248 -48) (-464 -6632 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327153" + "plane" "(-448 -6632 24) (-448 -6632 -48) (-448 -9248 -48)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327152" + "plane" "(-448 -9248 24) (-448 -9248 -48) (-464 -9248 -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" "327151" + "plane" "(-464 -6632 24) (-464 -6632 -48) (-448 -6632 -48)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327150" + "plane" "(-464 -9248 24) (-464 -6632 24) (-448 -6632 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "3042617" + "classname" "func_detail" + solid + { + "id" "3042614" + side + { + "id" "327179" + "plane" "(-624 -6648 -48) (-464 -6648 -48) (-464 -6632 -48)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327178" + "plane" "(-464 -6632 24) (-464 -6632 -48) (-464 -6648 -48)" + "material" "TOOLS/TOOLSSKYBOX" + "uaxis" "[0 1 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327177" + "plane" "(-624 -6632 -48) (-464 -6632 -48) (-464 -6632 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327176" + "plane" "(-464 -6648 24) (-464 -6648 -48) (-624 -6648 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 -35] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327175" + "plane" "(-624 -6632 24) (-464 -6632 24) (-464 -6648 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327174" + "plane" "(-624 -6648 24) (-624 -6648 -48) (-624 -6632 -48)" + "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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "3042641" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-529.049 -6871.72 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3042645" + "classname" "prop_static" + "angles" "0 46.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-537.482 -7493.6 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3042649" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-574.859 -8334.22 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3042653" + "classname" "prop_static" + "angles" "0 340 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-557 -8069 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3042657" + "classname" "prop_static" + "angles" "0 59.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-546 -7759 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3042681" + "classname" "prop_static" + "angles" "0 34 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-552 -7300 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "3042699" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_bush01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-514.566 -6700 -9" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3042707" + "classname" "prop_static" + "angles" "0 177 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_bush01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-508 -6796 -9" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3042715" + "classname" "prop_static" + "angles" "0 8.49999 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_bush01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-499 -6891 -9" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3042818" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2495 -2828 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3042822" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2487 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "3042826" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2235.12 -2827.27 244.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "3042830" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-2235 -2819 248" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "3042833" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2235.12 -2818 251" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "3042838" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2043.42 -2818 251" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "3042843" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2043.42 -2827.27 244.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "3042847" + "classname" "func_detail" + solid + { + "id" "3042848" + side + { + "id" "327209" + "plane" "(-2486 -2830 245) (-2486 -2829 245) (-1942 -2829 245)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327208" + "plane" "(-2486 -2829 230) (-2486 -2830 230) (-1942 -2830 230)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327207" + "plane" "(-2486 -2830 230) (-2486 -2829 230) (-2486 -2829 245)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327206" + "plane" "(-1942 -2829 230) (-1942 -2830 230) (-1942 -2830 245)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327205" + "plane" "(-2486 -2829 230) (-1942 -2829 230) (-1942 -2829 245)" + "material" "DE_NUKE/HR_NUKE/HR_HANGING_WIRES_001" + "uaxis" "[1 0 0 85] 0.125" + "vaxis" "[0 0 -1 36] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327204" + "plane" "(-1942 -2830 230) (-2486 -2830 230) (-2486 -2830 245)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "3042850" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2256.12 -2850 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3042854" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2256.12 -2834 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "3043146" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-2042.52 -2819 248" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "3043163" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2488 -2849 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3043167" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2488 -2833 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3043197" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2239 -2828 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3043205" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1983 -2828 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3043228" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1925 -2849 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3043232" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1925 -2833 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "3043252" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2231 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "3043268" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_32.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1975 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +entity +{ + "id" "3043316" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2476 -2817.73 251" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "3043321" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2476 -2827 244.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "3043325" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-2475.88 -2818.73 248" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "3028697" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-656 -4022 142.465" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "3029230" + "classname" "func_detail" + solid + { + "id" "3029206" + side + { + "id" "326831" + "plane" "(840 -2120 16) (640 -2120 16) (648 -2112 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326830" + "plane" "(832 -2112 8) (648 -2112 8) (640 -2120 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" "326829" + "plane" "(640 -2120 8) (648 -2112 8) (648 -2112 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" "326828" + "plane" "(840 -2120 16) (832 -2112 16) (832 -2112 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" "326827" + "plane" "(648 -2112 8) (832 -2112 8) (832 -2112 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326826" + "plane" "(640 -2120 16) (840 -2120 16) (840 -2120 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029203" + side + { + "id" "326837" + "plane" "(648 -2112 16) (640 -2120 16) (640 -2032 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326836" + "plane" "(648 -2040 8) (640 -2032 8) (640 -2120 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" "326835" + "plane" "(640 -2120 8) (640 -2032 8) (640 -2032 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" "326834" + "plane" "(648 -2112 16) (648 -2040 16) (648 -2040 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326833" + "plane" "(640 -2032 8) (648 -2040 8) (648 -2040 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" "326832" + "plane" "(640 -2120 16) (648 -2112 16) (648 -2112 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029204" + side + { + "id" "326843" + "plane" "(832 -2040 16) (648 -2040 16) (640 -2032 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326842" + "plane" "(840 -2032 8) (640 -2032 8) (648 -2040 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" "326841" + "plane" "(648 -2040 8) (640 -2032 8) (640 -2032 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" "326840" + "plane" "(832 -2040 16) (840 -2032 16) (840 -2032 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" "326839" + "plane" "(640 -2032 8) (840 -2032 8) (840 -2032 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326838" + "plane" "(648 -2040 16) (832 -2040 16) (832 -2040 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3029205" + side + { + "id" "326849" + "plane" "(840 -2120 16) (832 -2112 16) (832 -2040 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326848" + "plane" "(840 -2032 8) (832 -2040 8) (832 -2112 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" "326847" + "plane" "(832 -2112 8) (832 -2040 8) (832 -2040 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326846" + "plane" "(840 -2120 16) (840 -2032 16) (840 -2032 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326845" + "plane" "(832 -2040 8) (840 -2032 8) (840 -2032 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" "326844" + "plane" "(832 -2112 16) (840 -2120 16) (840 -2120 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +hidden +{ + entity + { + "id" "3029790" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-141.774 -2934.45 0.31463" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3029794" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-255.104 -2941.85 0.78248" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3029798" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-338 -3054 1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "3029806" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-322 -2947 1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "3002136" + "classname" "func_detail" + solid + { + "id" "3002137" + side + { + "id" "325927" + "plane" "(-664 -2896 208) (-664 -2912 208) (-624 -2912 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" "325926" + "plane" "(-664 -2912 400) (-664 -2912 208) (-664 -2896 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" "325925" + "plane" "(-624 -2896 400) (-624 -2896 208) (-624 -2912 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" "325924" + "plane" "(-664 -2896 400) (-664 -2896 208) (-624 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325923" + "plane" "(-624 -2912 400) (-624 -2912 208) (-664 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325922" + "plane" "(-664 -2912 400) (-664 -2896 400) (-624 -2896 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002138" + side + { + "id" "325933" + "plane" "(-664 -2912 416) (-664 -2896 416) (-624 -2896 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" "325932" + "plane" "(-664 -2896 400) (-664 -2896 416) (-664 -2912 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" "325931" + "plane" "(-624 -2912 400) (-624 -2912 416) (-624 -2896 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" "325930" + "plane" "(-624 -2896 400) (-624 -2896 416) (-664 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325929" + "plane" "(-664 -2912 400) (-664 -2912 416) (-624 -2912 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325928" + "plane" "(-664 -2896 400) (-664 -2912 400) (-624 -2912 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "3002139" + "classname" "func_detail" + solid + { + "id" "3002140" + side + { + "id" "325939" + "plane" "(-664 -2896 416) (-664 -2896 210) (-664 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325938" + "plane" "(-666 -2896 210) (-664 -2896 210) (-664 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -16.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325937" + "plane" "(-664 -2912 416) (-664 -2912 210) (-666 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 14.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325936" + "plane" "(-666 -2896 416) (-664 -2896 416) (-664 -2912 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325935" + "plane" "(-666 -2912 210) (-664 -2912 210) (-664 -2896 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325934" + "plane" "(-666 -2912 416) (-666 -2912 210) (-666 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 62.9688] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002141" + side + { + "id" "325945" + "plane" "(-666 -2912 416) (-766 -2912 416) (-766 -2896 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" "325944" + "plane" "(-666 -2896 414) (-766 -2896 414) (-766 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325943" + "plane" "(-766 -2896 414) (-666 -2896 414) (-666 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325942" + "plane" "(-666 -2912 414) (-766 -2912 414) (-766 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325941" + "plane" "(-766 -2912 414) (-766 -2896 414) (-766 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325940" + "plane" "(-666 -2896 414) (-666 -2912 414) (-666 -2912 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002142" + side + { + "id" "325951" + "plane" "(-664 -2896 208) (-768 -2896 208) (-768 -2912 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325950" + "plane" "(-768 -2896 208) (-664 -2896 208) (-664 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325949" + "plane" "(-664 -2912 208) (-768 -2912 208) (-768 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325948" + "plane" "(-664 -2912 210) (-768 -2912 210) (-768 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325947" + "plane" "(-768 -2912 210) (-768 -2912 208) (-768 -2896 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325946" + "plane" "(-664 -2896 210) (-664 -2896 208) (-664 -2912 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002143" + side + { + "id" "325957" + "plane" "(-717 -2912 414) (-717 -2912 353) (-717 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325956" + "plane" "(-715 -2896 414) (-715 -2896 353) (-715 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325955" + "plane" "(-717 -2896 414) (-717 -2896 353) (-715 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9931] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325954" + "plane" "(-715 -2912 414) (-715 -2912 353) (-717 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325953" + "plane" "(-717 -2896 353) (-717 -2912 353) (-715 -2912 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325952" + "plane" "(-717 -2912 414) (-717 -2896 414) (-715 -2896 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002144" + side + { + "id" "325963" + "plane" "(-717 -2896 210) (-717 -2912 210) (-715 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325962" + "plane" "(-717 -2912 278) (-717 -2912 210) (-717 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325961" + "plane" "(-715 -2896 278) (-715 -2896 210) (-715 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325960" + "plane" "(-717 -2896 278) (-717 -2896 210) (-715 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9931] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325959" + "plane" "(-715 -2912 278) (-715 -2912 210) (-717 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325958" + "plane" "(-717 -2912 278) (-717 -2896 278) (-715 -2896 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002145" + side + { + "id" "325969" + "plane" "(-768 -2912 416) (-768 -2912 210) (-768 -2896 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325968" + "plane" "(-768 -2896 416) (-768 -2896 210) (-766 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -47.9893] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325967" + "plane" "(-766 -2912 210) (-768 -2912 210) (-768 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 47.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325966" + "plane" "(-766 -2912 416) (-768 -2912 416) (-768 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325965" + "plane" "(-766 -2896 210) (-768 -2896 210) (-768 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325964" + "plane" "(-766 -2896 416) (-766 -2896 210) (-766 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002146" + side + { + "id" "325975" + "plane" "(-666 -2912 353) (-766 -2912 353) (-766 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325974" + "plane" "(-666 -2896 351) (-766 -2896 351) (-766 -2912 351)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 -1 0 0.970703] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325973" + "plane" "(-766 -2896 351) (-666 -2896 351) (-666 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325972" + "plane" "(-666 -2912 351) (-766 -2912 351) (-766 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 1 -54.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325971" + "plane" "(-766 -2912 351) (-766 -2896 351) (-766 -2896 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325970" + "plane" "(-666 -2896 351) (-666 -2912 351) (-666 -2912 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002147" + side + { + "id" "325981" + "plane" "(-717 -2912 351) (-717 -2912 280) (-717 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325980" + "plane" "(-715 -2896 351) (-715 -2896 280) (-715 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325979" + "plane" "(-717 -2896 351) (-717 -2896 280) (-715 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9931] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325978" + "plane" "(-715 -2912 351) (-715 -2912 280) (-717 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325977" + "plane" "(-717 -2912 351) (-717 -2896 351) (-715 -2896 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325976" + "plane" "(-717 -2896 280) (-717 -2912 280) (-715 -2912 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002148" + side + { + "id" "325987" + "plane" "(-666 -2912 280) (-766 -2912 280) (-766 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325986" + "plane" "(-666 -2896 278) (-766 -2896 278) (-766 -2912 278)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325985" + "plane" "(-766 -2896 278) (-666 -2896 278) (-666 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325984" + "plane" "(-666 -2912 278) (-766 -2912 278) (-766 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325983" + "plane" "(-766 -2912 278) (-766 -2896 278) (-766 -2896 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325982" + "plane" "(-666 -2896 278) (-666 -2912 278) (-666 -2912 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163556" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "3002149" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-690.5 -2904 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "3002150" + side + { + "id" "325993" + "plane" "(-715 -2905 414) (-715 -2903 414) (-666 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325992" + "plane" "(-715 -2903 353) (-715 -2905 353) (-666 -2905 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325991" + "plane" "(-715 -2905 353) (-715 -2903 353) (-715 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325990" + "plane" "(-666 -2903 353) (-666 -2905 353) (-666 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325989" + "plane" "(-715 -2903 353) (-666 -2903 353) (-666 -2903 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -151.51] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325988" + "plane" "(-666 -2905 353) (-715 -2905 353) (-715 -2905 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 151.51] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163556" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "3002152" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-741.5 -2904 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "3002153" + side + { + "id" "325999" + "plane" "(-766 -2905 414) (-766 -2903 414) (-717 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325998" + "plane" "(-766 -2903 353) (-766 -2905 353) (-717 -2905 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325997" + "plane" "(-766 -2905 353) (-766 -2903 353) (-766 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325996" + "plane" "(-717 -2903 353) (-717 -2905 353) (-717 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325995" + "plane" "(-766 -2903 353) (-717 -2903 353) (-717 -2903 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -161.959] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325994" + "plane" "(-717 -2905 353) (-766 -2905 353) (-766 -2905 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 161.959] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163556" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "3002155" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-690.5 -2904 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "3002156" + side + { + "id" "326005" + "plane" "(-715 -2905 351) (-715 -2903 351) (-666 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326004" + "plane" "(-715 -2903 280) (-715 -2905 280) (-666 -2905 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326003" + "plane" "(-715 -2905 280) (-715 -2903 280) (-715 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326002" + "plane" "(-666 -2903 280) (-666 -2905 280) (-666 -2905 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326001" + "plane" "(-715 -2903 280) (-666 -2903 280) (-666 -2903 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -151.51] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326000" + "plane" "(-666 -2905 280) (-715 -2905 280) (-715 -2905 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 151.51] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163556" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "3002158" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-741.5 -2904 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "3002159" + side + { + "id" "326011" + "plane" "(-766 -2905 351) (-766 -2903 351) (-717 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326010" + "plane" "(-766 -2903 280) (-766 -2905 280) (-717 -2905 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326009" + "plane" "(-766 -2905 280) (-766 -2903 280) (-766 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326008" + "plane" "(-717 -2903 280) (-717 -2905 280) (-717 -2905 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326007" + "plane" "(-766 -2903 280) (-717 -2903 280) (-717 -2903 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -161.959] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326006" + "plane" "(-717 -2905 280) (-766 -2905 280) (-766 -2905 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 161.959] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163556" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "3002161" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-741.5 -2904 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "3002162" + side + { + "id" "326017" + "plane" "(-766 -2905 278) (-766 -2903 278) (-717 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326016" + "plane" "(-766 -2903 210) (-766 -2905 210) (-717 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326015" + "plane" "(-766 -2905 210) (-766 -2903 210) (-766 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326014" + "plane" "(-717 -2903 210) (-717 -2905 210) (-717 -2905 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326013" + "plane" "(-766 -2903 210) (-717 -2903 210) (-717 -2903 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 161.959] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326012" + "plane" "(-717 -2905 210) (-766 -2905 210) (-766 -2905 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 161.959] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163556" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "3002164" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-690.5 -2904 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "3002165" + side + { + "id" "326023" + "plane" "(-715 -2905 278) (-715 -2903 278) (-666 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326022" + "plane" "(-715 -2903 210) (-715 -2905 210) (-666 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326021" + "plane" "(-715 -2905 210) (-715 -2903 210) (-715 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326020" + "plane" "(-666 -2903 210) (-666 -2905 210) (-666 -2905 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326019" + "plane" "(-715 -2903 210) (-666 -2903 210) (-666 -2903 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -151.51] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326018" + "plane" "(-666 -2905 210) (-715 -2905 210) (-715 -2905 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 151.51] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "133 142 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "133 142 0" + "groupid" "7163556" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "3002618" + "classname" "func_detail" + solid + { + "id" "3002586" + side + { + "id" "326149" + "plane" "(-32 -5208 23) (-32 -5200 23) (176 -5200 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326148" + "plane" "(-32 -5200 16) (176 -5200 16) (176 -5200 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 694] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326147" + "plane" "(176 -5200 16) (-32 -5200 16) (-32 -5208 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" "326146" + "plane" "(-32 -5208 16) (-32 -5200 16) (-32 -5200 23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326145" + "plane" "(176 -5208 23) (176 -5200 23) (176 -5200 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" "326144" + "plane" "(176 -5208 16) (-32 -5208 16) (-32 -5208 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 262] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002542" + side + { + "id" "326155" + "plane" "(-32 -5272 23) (-40 -5272 23) (-40 -5200 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -194] 0.125" + "vaxis" "[0 -1 0 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326154" + "plane" "(-32 -5272 16) (-40 -5272 16) (-40 -5272 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -194] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326153" + "plane" "(-32 -5200 23) (-40 -5200 23) (-40 -5200 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 502] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326152" + "plane" "(-40 -5200 16) (-40 -5200 23) (-40 -5272 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 -2] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326151" + "plane" "(-32 -5200 16) (-40 -5200 16) (-40 -5272 16)" + "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" "326150" + "plane" "(-32 -5272 16) (-32 -5272 23) (-32 -5200 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 -2] 0.125" + "vaxis" "[0 0 -1 792.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002580" + side + { + "id" "326161" + "plane" "(176 -5272 23) (-32 -5272 23) (-32 -5264 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326160" + "plane" "(176 -5272 16) (-32 -5272 16) (-32 -5272 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -250] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326159" + "plane" "(-32 -5264 16) (-32 -5272 16) (176 -5272 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" "326158" + "plane" "(-32 -5264 23) (-32 -5272 23) (-32 -5272 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" "326157" + "plane" "(176 -5264 16) (176 -5272 16) (176 -5272 23)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326156" + "plane" "(-32 -5264 16) (176 -5264 16) (176 -5264 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 182] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002573" + side + { + "id" "326167" + "plane" "(184 -5272 23) (176 -5272 23) (176 -5200 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326166" + "plane" "(176 -5272 23) (184 -5272 23) (184 -5272 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -250] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326165" + "plane" "(176 -5200 16) (184 -5200 16) (184 -5200 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 694] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326164" + "plane" "(184 -5272 16) (184 -5272 23) (184 -5200 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 -2] 0.125" + "vaxis" "[0 0 -1 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326163" + "plane" "(176 -5272 16) (184 -5272 16) (184 -5200 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" "326162" + "plane" "(176 -5200 16) (176 -5200 23) (176 -5272 23)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 -2] 0.125" + "vaxis" "[0 0 -1 232.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3002534" + side + { + "id" "326173" + "plane" "(182 -5202 -1) (-38 -5202 -1) (-38 -5270 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326172" + "plane" "(182 -5270 16) (182 -5270 -1) (-38 -5270 -1)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326171" + "plane" "(-38 -5202 16) (-38 -5202 -1) (182 -5202 -1)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 815] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326170" + "plane" "(-38 -5270 16) (-38 -5270 -1) (-38 -5202 -1)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 815] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326169" + "plane" "(182 -5202 16) (182 -5202 -1) (182 -5270 -1)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 815] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326168" + "plane" "(182 -5270 16) (-38 -5270 16) (-38 -5202 16)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 -332] 0.25" + "vaxis" "[0 -1 0 -288] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 105 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 105 0" + "groupid" "3853900" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "2988731" + "classname" "func_detail" + solid + { + "id" "2988732" + side + { + "id" "325645" + "plane" "(-2848 -2896 414) (-2848 -2896 130) (-2848 -2912 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325644" + "plane" "(-2850 -2896 130) (-2848 -2896 130) (-2848 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -41.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325643" + "plane" "(-2848 -2912 414) (-2848 -2912 130) (-2850 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325642" + "plane" "(-2850 -2896 414) (-2848 -2896 414) (-2848 -2912 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325641" + "plane" "(-2850 -2912 130) (-2848 -2912 130) (-2848 -2896 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325640" + "plane" "(-2850 -2912 414) (-2850 -2912 130) (-2850 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -0.998047] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988733" + side + { + "id" "325651" + "plane" "(-2850 -2912 345) (-2950 -2912 345) (-2950 -2896 345)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325650" + "plane" "(-2850 -2896 343) (-2950 -2896 343) (-2950 -2912 343)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 0.00389862] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325649" + "plane" "(-2950 -2896 343) (-2850 -2896 343) (-2850 -2896 345)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325648" + "plane" "(-2850 -2912 343) (-2950 -2912 343) (-2950 -2912 345)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 -7.99414] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325647" + "plane" "(-2950 -2912 343) (-2950 -2896 343) (-2950 -2896 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325646" + "plane" "(-2850 -2896 343) (-2850 -2912 343) (-2850 -2912 345)" + "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" "2988734" + side + { + "id" "325657" + "plane" "(-2901 -2912 414) (-2901 -2896 414) (-2899 -2896 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325656" + "plane" "(-2901 -2896 345) (-2901 -2896 414) (-2901 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325655" + "plane" "(-2899 -2912 345) (-2899 -2912 414) (-2899 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325654" + "plane" "(-2899 -2896 345) (-2899 -2896 414) (-2901 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -47.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325653" + "plane" "(-2901 -2912 345) (-2901 -2912 414) (-2899 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325652" + "plane" "(-2901 -2896 345) (-2901 -2912 345) (-2899 -2912 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988735" + side + { + "id" "325663" + "plane" "(-2901 -2912 343) (-2901 -2912 273) (-2901 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325662" + "plane" "(-2899 -2896 343) (-2899 -2896 273) (-2899 -2912 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325661" + "plane" "(-2901 -2896 343) (-2901 -2896 273) (-2899 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -47.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325660" + "plane" "(-2899 -2912 343) (-2899 -2912 273) (-2901 -2912 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325659" + "plane" "(-2901 -2896 273) (-2901 -2912 273) (-2899 -2912 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325658" + "plane" "(-2901 -2912 343) (-2901 -2896 343) (-2899 -2896 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988736" + side + { + "id" "325669" + "plane" "(-2848 -2912 416) (-2952 -2912 416) (-2952 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325668" + "plane" "(-2952 -2896 414) (-2848 -2896 414) (-2848 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 47.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325667" + "plane" "(-2848 -2912 414) (-2952 -2912 414) (-2952 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 15.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325666" + "plane" "(-2848 -2896 414) (-2952 -2896 414) (-2952 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325665" + "plane" "(-2952 -2896 414) (-2952 -2896 416) (-2952 -2912 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" "325664" + "plane" "(-2848 -2912 414) (-2848 -2912 416) (-2848 -2896 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988737" + side + { + "id" "325675" + "plane" "(-2952 -2912 414) (-2952 -2912 130) (-2952 -2896 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325674" + "plane" "(-2952 -2896 414) (-2952 -2896 130) (-2950 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -7.99805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325673" + "plane" "(-2950 -2912 130) (-2952 -2912 130) (-2952 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 8.00391] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325672" + "plane" "(-2950 -2912 414) (-2952 -2912 414) (-2952 -2896 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325671" + "plane" "(-2950 -2896 130) (-2952 -2896 130) (-2952 -2912 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325670" + "plane" "(-2950 -2896 414) (-2950 -2896 130) (-2950 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988738" + side + { + "id" "325681" + "plane" "(-2850 -2912 273) (-2950 -2912 273) (-2950 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325680" + "plane" "(-2850 -2896 271) (-2950 -2896 271) (-2950 -2912 271)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 1.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325679" + "plane" "(-2950 -2896 271) (-2850 -2896 271) (-2850 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 -7] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325678" + "plane" "(-2850 -2912 271) (-2950 -2912 271) (-2950 -2912 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 9.00195] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325677" + "plane" "(-2950 -2912 271) (-2950 -2896 271) (-2950 -2896 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325676" + "plane" "(-2850 -2896 271) (-2850 -2912 271) (-2850 -2912 273)" + "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" "2988739" + side + { + "id" "325687" + "plane" "(-2901 -2912 271) (-2901 -2912 200) (-2901 -2896 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325686" + "plane" "(-2899 -2896 271) (-2899 -2896 200) (-2899 -2912 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325685" + "plane" "(-2901 -2896 271) (-2901 -2896 200) (-2899 -2896 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -47.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325684" + "plane" "(-2899 -2912 271) (-2899 -2912 200) (-2901 -2912 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325683" + "plane" "(-2901 -2912 271) (-2901 -2896 271) (-2899 -2896 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325682" + "plane" "(-2901 -2896 200) (-2901 -2912 200) (-2899 -2912 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988740" + side + { + "id" "325693" + "plane" "(-2850 -2912 200) (-2950 -2912 200) (-2950 -2896 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325692" + "plane" "(-2850 -2896 198) (-2950 -2896 198) (-2950 -2912 198)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 0.00389862] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325691" + "plane" "(-2950 -2896 198) (-2850 -2896 198) (-2850 -2896 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325690" + "plane" "(-2850 -2912 198) (-2950 -2912 198) (-2950 -2912 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325689" + "plane" "(-2950 -2912 198) (-2950 -2896 198) (-2950 -2896 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325688" + "plane" "(-2850 -2896 198) (-2850 -2912 198) (-2850 -2912 200)" + "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" "2988741" + side + { + "id" "325699" + "plane" "(-2901 -2896 130) (-2901 -2912 130) (-2899 -2912 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325698" + "plane" "(-2901 -2912 198) (-2901 -2912 130) (-2901 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325697" + "plane" "(-2899 -2896 198) (-2899 -2896 130) (-2899 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325696" + "plane" "(-2901 -2896 198) (-2901 -2896 130) (-2899 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -47.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325695" + "plane" "(-2899 -2912 198) (-2899 -2912 130) (-2901 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325694" + "plane" "(-2901 -2912 198) (-2901 -2896 198) (-2899 -2896 198)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2988742" + side + { + "id" "325705" + "plane" "(-2848 -2896 128) (-2952 -2896 128) (-2952 -2912 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325704" + "plane" "(-2952 -2896 128) (-2848 -2896 128) (-2848 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 47.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325703" + "plane" "(-2848 -2912 128) (-2952 -2912 128) (-2952 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325702" + "plane" "(-2848 -2912 130) (-2952 -2912 130) (-2952 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325701" + "plane" "(-2952 -2912 130) (-2952 -2912 128) (-2952 -2896 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" "325700" + "plane" "(-2848 -2896 130) (-2848 -2896 128) (-2848 -2912 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "2988743" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2874.5 -2904 164" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2988744" + side + { + "id" "325711" + "plane" "(-2899 -2905 198) (-2899 -2903 198) (-2850 -2903 198)" + "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" "325710" + "plane" "(-2899 -2903 130) (-2899 -2905 130) (-2850 -2905 130)" + "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" "325709" + "plane" "(-2899 -2905 130) (-2899 -2903 130) (-2899 -2903 198)" + "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" "325708" + "plane" "(-2850 -2903 130) (-2850 -2905 130) (-2850 -2905 198)" + "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" "325707" + "plane" "(-2899 -2903 130) (-2850 -2903 130) (-2850 -2903 198)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -177.647] 0.191406" + "vaxis" "[0 0 -1 233.412] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325706" + "plane" "(-2850 -2905 130) (-2899 -2905 130) (-2899 -2905 198)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 41.7959] 0.191406" + "vaxis" "[0 0 -1 233.412] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "2988746" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2925.5 -2904 164" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2988747" + side + { + "id" "325717" + "plane" "(-2950 -2905 198) (-2950 -2903 198) (-2901 -2903 198)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325716" + "plane" "(-2950 -2903 130) (-2950 -2905 130) (-2901 -2905 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325715" + "plane" "(-2950 -2905 130) (-2950 -2903 130) (-2950 -2903 198)" + "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" "325714" + "plane" "(-2901 -2903 130) (-2901 -2905 130) (-2901 -2905 198)" + "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" "325713" + "plane" "(-2950 -2903 130) (-2901 -2903 130) (-2901 -2903 198)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 188.096] 0.191406" + "vaxis" "[0 0 -1 233.412] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325712" + "plane" "(-2901 -2905 130) (-2950 -2905 130) (-2950 -2905 198)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 52.2451] 0.191406" + "vaxis" "[0 0 -1 233.412] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "2988749" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2925.5 -2904 235.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2988750" + side + { + "id" "325723" + "plane" "(-2950 -2905 271) (-2950 -2903 271) (-2901 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325722" + "plane" "(-2950 -2903 200) (-2950 -2905 200) (-2901 -2905 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325721" + "plane" "(-2950 -2905 200) (-2950 -2903 200) (-2950 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325720" + "plane" "(-2901 -2903 200) (-2901 -2905 200) (-2901 -2905 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325719" + "plane" "(-2950 -2903 200) (-2901 -2903 200) (-2901 -2903 271)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -188.096] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325718" + "plane" "(-2901 -2905 200) (-2950 -2905 200) (-2950 -2905 271)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 52.2451] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "2988752" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2874.5 -2904 235.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2988753" + side + { + "id" "325729" + "plane" "(-2899 -2905 271) (-2899 -2903 271) (-2850 -2903 271)" + "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" "325728" + "plane" "(-2899 -2903 200) (-2899 -2905 200) (-2850 -2905 200)" + "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" "325727" + "plane" "(-2899 -2905 200) (-2899 -2903 200) (-2899 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325726" + "plane" "(-2850 -2903 200) (-2850 -2905 200) (-2850 -2905 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325725" + "plane" "(-2899 -2903 200) (-2850 -2903 200) (-2850 -2903 271)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -177.647] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325724" + "plane" "(-2850 -2905 200) (-2899 -2905 200) (-2899 -2905 271)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 41.7959] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "2988755" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2874.5 -2904 308" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2988756" + side + { + "id" "325735" + "plane" "(-2899 -2905 343) (-2899 -2903 343) (-2850 -2903 343)" + "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" "325734" + "plane" "(-2899 -2903 273) (-2899 -2905 273) (-2850 -2905 273)" + "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" "325733" + "plane" "(-2899 -2905 273) (-2899 -2903 273) (-2899 -2903 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325732" + "plane" "(-2850 -2903 273) (-2850 -2905 273) (-2850 -2905 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325731" + "plane" "(-2899 -2903 273) (-2850 -2903 273) (-2850 -2903 343)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -177.647] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325730" + "plane" "(-2850 -2905 273) (-2899 -2905 273) (-2899 -2905 343)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 41.7959] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "2988758" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2925.5 -2904 308" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2988759" + side + { + "id" "325741" + "plane" "(-2950 -2905 343) (-2950 -2903 343) (-2901 -2903 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325740" + "plane" "(-2950 -2903 273) (-2950 -2905 273) (-2901 -2905 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325739" + "plane" "(-2950 -2905 273) (-2950 -2903 273) (-2950 -2903 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325738" + "plane" "(-2901 -2903 273) (-2901 -2905 273) (-2901 -2905 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325737" + "plane" "(-2950 -2903 273) (-2901 -2903 273) (-2901 -2903 343)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -188.096] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325736" + "plane" "(-2901 -2905 273) (-2950 -2905 273) (-2950 -2905 343)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 52.2451] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "2988761" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2925.5 -2904 379.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2988762" + side + { + "id" "325747" + "plane" "(-2950 -2905 414) (-2950 -2903 414) (-2901 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325746" + "plane" "(-2950 -2903 345) (-2950 -2905 345) (-2901 -2905 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325745" + "plane" "(-2950 -2905 345) (-2950 -2903 345) (-2950 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325744" + "plane" "(-2901 -2903 345) (-2901 -2905 345) (-2901 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325743" + "plane" "(-2950 -2903 345) (-2901 -2903 345) (-2901 -2903 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -188.096] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325742" + "plane" "(-2901 -2905 345) (-2950 -2905 345) (-2950 -2905 414)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 52.2451] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 11500]" + } +} +entity +{ + "id" "2988764" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2874.5 -2904 379.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2988765" + side + { + "id" "325753" + "plane" "(-2899 -2905 414) (-2899 -2903 414) (-2850 -2903 414)" + "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" "325752" + "plane" "(-2899 -2903 345) (-2899 -2905 345) (-2850 -2905 345)" + "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" "325751" + "plane" "(-2899 -2905 345) (-2899 -2903 345) (-2899 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325750" + "plane" "(-2850 -2903 345) (-2850 -2905 345) (-2850 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325749" + "plane" "(-2899 -2903 345) (-2850 -2903 345) (-2850 -2903 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -177.647] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325748" + "plane" "(-2850 -2905 345) (-2899 -2905 345) (-2899 -2905 414)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 41.7959] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12000]" + } +} +entity +{ + "id" "2988974" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "-2123.5 -2912 387.175" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "0.511719" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "325764 327082" + "StartU" "0" + "StartV" "1" + "uv0" "-65.5 -64 0" + "uv1" "-65.5 64 0" + "uv2" "65.5 64 0" + "uv3" "65.5 -64 0" + "origin" "-2123.5 -2912 387.175" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "2989004" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "-918.5 -2912 387.586" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "0.511719" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "380374 380386" + "StartU" "0" + "StartV" "1" + "uv0" "-65.5 -64 0" + "uv1" "-65.5 64 0" + "uv2" "65.5 64 0" + "uv3" "65.5 -64 0" + "origin" "-918.5 -2912 387.586" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "2989040" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "-131.5 -2912 399.28" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "0.511719" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/plaster_stain_6" + "sides" "244315 327106" + "StartU" "0" + "StartV" "0.957496" + "uv0" "-65.5 -61.2797 0" + "uv1" "-65.5 61.2797 0" + "uv2" "65.5 61.2797 0" + "uv3" "65.5 -61.2797 0" + "origin" "-131.5 -2912 399.28" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2989156" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "-623 -3185 80" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "243317" + "StartU" "0" + "StartV" "1" + "uv0" "-28.5 -23 0" + "uv1" "-28.5 23 0" + "uv2" "28.5 23 0" + "uv3" "28.5 -23 0" + "origin" "-623 -3185 80" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "2963162" + "classname" "func_detail" + solid + { + "id" "4748445" + side + { + "id" "346740" + "plane" "(-672 -4760 160) (-672 -4795 160) (432 -4795 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346739" + "plane" "(-672 -4795 164) (-672 -4795 160) (-672 -4760 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.497925 0.86722 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346738" + "plane" "(432 -4760 164) (432 -4760 160) (432 -4795 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -25] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346737" + "plane" "(-672 -4760 164) (-672 -4760 160) (432 -4760 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" "346736" + "plane" "(432 -4795 164) (432 -4795 160) (-672 -4795 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" "346735" + "plane" "(-672 -4795 164) (-672 -4760 164) (432 -4760 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748076" + side + { + "id" "346482" + "plane" "(-672 -4795 240) (-672 -4760 240) (432 -4760 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" "346481" + "plane" "(-672 -4760 236) (-672 -4760 240) (-672 -4795 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 54.2998] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346480" + "plane" "(432 -4795 236) (432 -4795 240) (432 -4760 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346479" + "plane" "(432 -4760 236) (432 -4760 240) (-672 -4760 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" "346478" + "plane" "(-672 -4795 236) (-672 -4795 240) (432 -4795 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" "346477" + "plane" "(-672 -4760 236) (-672 -4795 236) (432 -4795 236)" + "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" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748444" + side + { + "id" "346734" + "plane" "(-672 -4795 236) (-672 -4795 164) (-672 -4760 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.497925 0.86722 0 -760.756] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4" + } + side + { + "id" "346733" + "plane" "(432 -4760 236) (432 -4760 164) (432 -4795 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0 1 0 51.9302] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346732" + "plane" "(-672 -4760 236) (-672 -4760 164) (432 -4760 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" + } + side + { + "id" "346731" + "plane" "(432 -4795 236) (432 -4795 164) (-672 -4795 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" + } + side + { + "id" "346730" + "plane" "(-672 -4795 236) (-672 -4760 236) (432 -4760 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346729" + "plane" "(-672 -4760 164) (-672 -4795 164) (432 -4795 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "188 209 0" + "groupid" "2963216" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2963237" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-104 -4767 109" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "2963312" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-400 -4766 109" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "2936449" + "classname" "func_instance" + "angles" "-0 -148 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-577.895 -5968 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936455" + "classname" "func_instance" + "angles" "-0 107 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-501 -5967 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936461" + "classname" "func_instance" + "angles" "-0 -147.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-389 -5967 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936467" + "classname" "func_instance" + "angles" "-0 13.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-252 -5967 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936476" + "classname" "func_instance" + "angles" "-0 -148 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-142 -5969 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936485" + "classname" "func_instance" + "angles" "-0 -43.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-151 -5849 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936491" + "classname" "func_instance" + "angles" "-0 -155 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-280 -5848 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936500" + "classname" "func_instance" + "angles" "-0 149.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-404 -5848 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936506" + "classname" "func_instance" + "angles" "-0 -154.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-486 -5848 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936512" + "classname" "func_instance" + "angles" "-0 37 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-578 -5848 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936518" + "classname" "func_instance" + "angles" "-0 152.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-577 -6114 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936524" + "classname" "func_instance" + "angles" "-0 35.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-501 -6112 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936530" + "classname" "func_instance" + "angles" "-0 106.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-369 -6108 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936536" + "classname" "func_instance" + "angles" "-0 143 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-248 -6109 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2936542" + "classname" "func_instance" + "angles" "-0 -171.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-156 -6111 311" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "2923582" + "classname" "func_detail" + solid + { + "id" "2923593" + side + { + "id" "325403" + "plane" "(-1056 -2920 -32) (-1056 -2912 -32) (-616 -2912 -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" "325402" + "plane" "(-1056 -2912 -40) (-1056 -2916 -40) (-616 -2916 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325401" + "plane" "(-1056 -2916 -40) (-1056 -2912 -40) (-1056 -2912 -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" "325400" + "plane" "(-616 -2912 -40) (-616 -2916 -40) (-616 -2920 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325399" + "plane" "(-1056 -2912 -40) (-616 -2912 -40) (-616 -2912 -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" "325398" + "plane" "(-1056 -2920 -38) (-1056 -2920 -32) (-616 -2920 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325397" + "plane" "(-616 -2916 -40) (-1056 -2916 -40) (-1056 -2920 -38)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1772] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2923612" + "classname" "func_detail" + solid + { + "id" "2923607" + side + { + "id" "325423" + "plane" "(-1649 -3216 -32) (-1649 -3206 -32) (-616 -3206 -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" "325422" + "plane" "(-1649 -3210 -40) (-1649 -3216 -40) (-616 -3216 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325421" + "plane" "(-1649 -3216 -40) (-1649 -3210 -40) (-1649 -3206 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325420" + "plane" "(-616 -3210 -40) (-616 -3216 -40) (-616 -3216 -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" "325419" + "plane" "(-616 -3206 -38) (-616 -3206 -32) (-1649 -3206 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325418" + "plane" "(-616 -3216 -40) (-1649 -3216 -40) (-1649 -3216 -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" "325417" + "plane" "(-1649 -3206 -38) (-1649 -3210 -40) (-616 -3210 -40)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 1772] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "2923685" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_06.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-603 -6572 -40.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2923705" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2350.95 -1225.8 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2923709" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2343.16 -1320.52 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2923713" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2144.71 -6661.14 -28.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2923717" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1774 -7587 -28.9701" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2923721" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1776 -7965 -29.1423" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2923725" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "915 -7904 -29.2106" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2923733" + "classname" "prop_static" + "angles" "0 75 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "456 -7683 -26.9572" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2923737" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "461 -7891 -26.6823" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2923777" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1722 -6655 -28.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "2910851" + "classname" "func_detail" + solid + { + "id" "770723" + side + { + "id" "325303" + "plane" "(2112 -3584 112) (2112 -3712 112) (2128 -3712 112)" + "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" "325302" + "plane" "(2112 -3712 128) (2112 -3712 112) (2112 -3584 112)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325301" + "plane" "(2128 -3584 128) (2128 -3584 112) (2128 -3712 112)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_LIGHTGRAY" + "uaxis" "[0 1 0 400.008] 0.125" + "vaxis" "[0 0 -1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325300" + "plane" "(2112 -3584 128) (2112 -3584 112) (2128 -3584 112)" + "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" "325299" + "plane" "(2128 -3712 128) (2128 -3712 112) (2112 -3712 112)" + "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" "325298" + "plane" "(2112 -3712 128) (2112 -3584 128) (2128 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2910899" + "classname" "func_detail" + solid + { + "id" "2026184" + side + { + "id" "325339" + "plane" "(1792 -2406 16) (1792 -2385 16) (1824 -2385 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325338" + "plane" "(1792 -2385 -40) (1792 -2406 -40) (1824 -2406 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325337" + "plane" "(1792 -2406 -40) (1792 -2385 -40) (1792 -2385 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325336" + "plane" "(1824 -2385 -40) (1824 -2406 -40) (1824 -2406 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" "325335" + "plane" "(1792 -2385 -40) (1824 -2385 -40) (1824 -2385 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325334" + "plane" "(1824 -2406 -40) (1792 -2406 -40) (1792 -2406 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "2885508" + "classname" "func_detail" + solid + { + "id" "2337304" + side + { + "id" "325170" + "plane" "(1312 -3144 224) (1312 -3197 224) (1328 -3197 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" "325169" + "plane" "(1312 -3197 224) (1312 -3144 224) (1312 -3144 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325168" + "plane" "(1328 -3144 358) (1328 -3144 224) (1328 -3197 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325167" + "plane" "(1312 -3144 358) (1312 -3144 224) (1328 -3144 224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325166" + "plane" "(1312 -3197 358) (1312 -3144 358) (1328 -3144 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "325165" + "plane" "(1328 -3197 358) (1328 -3197 224) (1312 -3197 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2870993" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1278 -2927 -155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2871197" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_128.mdl" + "renderamt" "255" + "rendercolor" "155 155 155" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1278 -2929 -155" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2871604" + "classname" "func_detail" + solid + { + "id" "2871602" + side + { + "id" "324940" + "plane" "(-656 -4005 240) (-656 -4000 240) (-651 -4000 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" "324939" + "plane" "(-656 -4000 160) (-656 -4005 160) (-651 -4000 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[-1 0 0 -110] 0.25" + "vaxis" "[0 -1 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "324938" + "plane" "(-656 -4005 160) (-656 -4000 160) (-656 -4000 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" "324937" + "plane" "(-656 -4000 160) (-651 -4000 160) (-651 -4000 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" "324936" + "plane" "(-651 -4000 160) (-656 -4005 160) (-656 -4005 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12000]" + } +} +hidden +{ + entity + { + "id" "2871642" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1184 -2974 29.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2871673" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1120 -2974 29.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2871700" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1104 -2974 29.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2871727" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1168.92 -2938.79 41.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2871735" + "classname" "prop_static" + "angles" "0 335 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1337 -2939 41.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2871759" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1169 -2942 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2871779" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1269 -2941 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2871783" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1367 -2941 35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2871803" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1256 -2994 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2872475" + "classname" "prop_static" + "angles" "89 134 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "238.865 -4909 204" + editor + { + "color" "188 209 0" + "groupid" "2962966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2872503" + "classname" "prop_static" + "angles" "89 84 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "140 -4912 204" + editor + { + "color" "188 209 0" + "groupid" "2962966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2872511" + "classname" "prop_static" + "angles" "89 51 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "67 -4907 204" + editor + { + "color" "188 209 0" + "groupid" "2962966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2872523" + "classname" "prop_static" + "angles" "89 70.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-633 -4744.46 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2872531" + "classname" "prop_static" + "angles" "89 21 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-649 -4728 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2856290" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2477 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2856289" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2856294" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2805 -2479 11" + editor + { + "color" "200 253 0" + "groupid" "2856289" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2856297" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2793 -2479 11" + editor + { + "color" "200 253 0" + "groupid" "2856289" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2856302" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2477 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2856349" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2349 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2856354" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2349 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2856353" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2856358" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2805 -2351 11" + editor + { + "color" "200 253 0" + "groupid" "2856353" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2856361" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2793 -2351 11" + editor + { + "color" "200 253 0" + "groupid" "2856353" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2856427" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3065 -2350 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2856432" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3065 -2350 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2856431" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2856436" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3063 -2349 11.25" + editor + { + "color" "200 253 0" + "groupid" "2856431" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2856439" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3063 -2337 11.25" + editor + { + "color" "200 253 0" + "groupid" "2856431" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2856445" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2937 -2350 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2856444" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2856449" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2935 -2349 11.25" + editor + { + "color" "200 253 0" + "groupid" "2856444" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2856452" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2935 -2337 11.25" + editor + { + "color" "200 253 0" + "groupid" "2856444" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2856457" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2937 -2350 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2856835" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3321 -2350 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2856840" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3321 -2350 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2856839" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2856844" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3319 -2346 11.25" + editor + { + "color" "200 253 0" + "groupid" "2856839" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2856847" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3319 -2334 11.25" + editor + { + "color" "200 253 0" + "groupid" "2856839" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2856853" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3193 -2350 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2856852" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2856857" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3191 -2349 11.25" + editor + { + "color" "200 253 0" + "groupid" "2856852" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2856860" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3191 -2337 11.25" + editor + { + "color" "200 253 0" + "groupid" "2856852" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2856865" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3193 -2350 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857039" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2609 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857044" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2609 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857048" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3329 -2607 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857043" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857051" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -2607 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857043" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857057" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2737 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857056" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857061" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -2735 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857064" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -2735 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857070" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2865 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857069" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857074" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -2863 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857069" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857077" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -2863 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857069" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857082" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2865 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857086" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2737 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857090" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2481 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857095" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2481 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857094" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857099" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -2479 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857102" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -2479 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857448" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2993 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857447" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857452" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -2991 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857447" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857455" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -2991 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857447" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857461" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3121 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857460" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857465" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -3119 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857460" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857468" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -3119 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857460" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857474" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3249 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857473" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857478" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -3247 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857473" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857481" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -3247 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857473" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857487" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3377 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857486" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857491" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -3375 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857486" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857494" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -3375 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857486" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857499" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3377 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857503" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3249 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857507" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3121 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857511" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -2993 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857618" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3633 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857617" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857622" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -3631 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857617" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857625" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -3631 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857617" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857631" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3505 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2857630" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857635" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -3503 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857630" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857638" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -3503 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857630" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857643" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3505 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857647" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3633 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857737" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3761 -7.74999" + editor + { + "color" "200 253 0" + "groupid" "2857736" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2857741" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3323 -3759 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857736" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2857744" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3335 -3759 11.25" + editor + { + "color" "200 253 0" + "groupid" "2857736" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2857749" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3322 -3761 -7.74999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2857893" + "classname" "prop_static" + "angles" "-72.5 131.5 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2893 -2468.05 -198.937" + editor + { + "color" "130 139 0" + "groupid" "2857892" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -15268]" + } + } +} +entity +{ + "id" "2857897" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "254 255 206 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "68 311.5 60" + "pitch" "68" + "spawnflags" "0" + "style" "0" + "origin" "2898.14 -2468 -184.566" + editor + { + "color" "130 139 0" + "groupid" "2857892" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2857902" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2894.28 -2469.5 -190.093" + editor + { + "color" "130 139 0" + "groupid" "2857892" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2858024" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3324 -3780 11.25" + editor + { + "color" "200 253 0" + "groupid" "2858019" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2858027" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3324 -3792 11.25" + editor + { + "color" "200 253 0" + "groupid" "2858019" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2858036" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3194 -3781 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2858041" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3194 -3781 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2858040" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2858045" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3196 -3782 14" + editor + { + "color" "200 253 0" + "groupid" "2858040" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2858048" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3196 -3794 11.25" + editor + { + "color" "200 253 0" + "groupid" "2858040" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2858054" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3066 -3781 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2858053" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2858058" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "3068 -3782 11.25" + editor + { + "color" "200 253 0" + "groupid" "2858053" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2858061" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "3068 -3794 11.25" + editor + { + "color" "200 253 0" + "groupid" "2858053" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2858066" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3066 -3781 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2858070" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2938 -3781 -7.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2858075" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2938 -3781 -7.75" + editor + { + "color" "200 253 0" + "groupid" "2858074" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2858079" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2940 -3783 11.25" + editor + { + "color" "200 253 0" + "groupid" "2858074" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2858082" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2940 -3795 11.25" + editor + { + "color" "200 253 0" + "groupid" "2858074" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2858311" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_floor_hatch/nuke_floor_hatch_64.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1386.07 -2707.39 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2843630" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-632 -6631 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2843747" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-932 -6594 -46.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843751" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-846 -6598 -46.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843755" + "classname" "prop_static" + "angles" "0 313.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-884 -6597 -44.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843759" + "classname" "prop_static" + "angles" "0 199 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-796 -6595 -38.4656" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843763" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-750 -6600 -46.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843767" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-660 -6602 -46.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843771" + "classname" "prop_static" + "angles" "0 95.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-702.93 -6592 -45.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843831" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-530 -6588 -46.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843835" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-349 -6587 -46.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843839" + "classname" "prop_static" + "angles" "0 313.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-482 -6591 -44.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2843891" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-209 -6552 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2843914" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-208 -6671 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2843946" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-721 -6552 -47.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2829659" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-791.5 -3744.5 -220" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "2829622" + side + { + "id" "323394" + "plane" "(-816 -3745 -216) (-816 -3744 -216) (-775 -3744 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 1 0 6] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323393" + "plane" "(-816 -3744 -224) (-816 -3745 -224) (-775 -3745 -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" "323392" + "plane" "(-816 -3745 -224) (-816 -3744 -224) (-816 -3744 -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" "323391" + "plane" "(-775 -3744 -224) (-775 -3745 -224) (-775 -3745 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323390" + "plane" "(-816 -3744 -224) (-775 -3744 -224) (-775 -3744 -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" "323389" + "plane" "(-775 -3745 -224) (-816 -3745 -224) (-816 -3745 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "2829674" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-596.5 -3744.5 -220" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "2829666" + side + { + "id" "323406" + "plane" "(-609 -3744 -216) (-584 -3744 -216) (-584 -3745 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323405" + "plane" "(-609 -3745 -224) (-584 -3745 -224) (-584 -3744 -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" "323404" + "plane" "(-609 -3744 -216) (-609 -3745 -216) (-609 -3745 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "323403" + "plane" "(-584 -3744 -224) (-584 -3745 -224) (-584 -3745 -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" "323402" + "plane" "(-584 -3744 -216) (-609 -3744 -216) (-609 -3744 -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" "323401" + "plane" "(-584 -3745 -224) (-609 -3745 -224) (-609 -3745 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -7.99609] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +hidden +{ + entity + { + "id" "2791208" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-83 -6162 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2791220" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-60 -5739 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2791331" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-144 -6367 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2778531" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2378.87 -5566.31 34.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2778535" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2386.58 -5402.49 34.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2778539" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2385.79 -5240.15 34.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2778543" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2385.89 -5065.16 34.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2778547" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2389.64 -4984.15 34.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2778551" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2215 -3920 34.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2778555" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2227 -3790 34.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2779018" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -6160 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779030" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -5888 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779042" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_512.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-624 -5928 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779046" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -5928 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779050" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_512.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-624 -5848 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779054" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -5848 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779058" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_512.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-624 -5808 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779062" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -5808 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779082" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_512.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-624 -5968 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779086" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -5968 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779090" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_512.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-624 -6064 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779094" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -6064 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779098" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_512.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-624 -6111 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779102" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -6111 312" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779122" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-368 -6208 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779141" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-368 -6272 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779156" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-504 -6224 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779164" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-504 -6256 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779190" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-612 -6164 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2779220" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-612 -6196 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +entity +{ + "id" "2766581" + "classname" "func_detail" + solid + { + "id" "2766574" + side + { + "id" "322818" + "plane" "(-241 -5684 32) (-368 -5684 32) (-368 -5685 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" "322817" + "plane" "(-368 -5684 182) (-368 -5684 32) (-241 -5684 32)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0.0383467 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322816" + "plane" "(-241 -5685 32) (-368 -5685 32) (-368 -5685 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322815" + "plane" "(-368 -5685 182) (-368 -5685 32) (-368 -5684 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" "322814" + "plane" "(-241 -5685 182) (-368 -5685 182) (-368 -5684 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322813" + "plane" "(-241 -5684 182) (-241 -5684 32) (-241 -5685 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "2752967" + "classname" "prop_static" + "angles" "0 127.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1258.03 -5937.21 -25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2752986" + "classname" "prop_static" + "angles" "0 121.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1880 -5932 -25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2753002" + "classname" "prop_static" + "angles" "0 176 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2171.37 -6038.88 -22.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2753006" + "classname" "prop_static" + "angles" "0 60 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2181.45 -6120.25 -22.7328" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "2753178" + "classname" "func_detail" + solid + { + "id" "2753167" + side + { + "id" "322245" + "plane" "(-495 -5706.5 182) (-376 -5684 182) (-376 -5685 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322244" + "plane" "(-495 -5707.5 32) (-376 -5685 32) (-376 -5684 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" "322243" + "plane" "(-495 -5706.5 32) (-495 -5706.5 182) (-495 -5707.5 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" "322242" + "plane" "(-376 -5685 32) (-376 -5685 182) (-376 -5684 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" "322241" + "plane" "(-376 -5684 32) (-376 -5684 182) (-495 -5706.5 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322240" + "plane" "(-495 -5707.5 32) (-495 -5707.5 182) (-376 -5685 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2753283" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-40 -6156 32.0001" + editor + { + "color" "233 146 0" + "groupid" "2753282" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2753331" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-49 -6156 156.132" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "2753496" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-273 -6344 26" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2753512" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-177 -6346 26" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2753520" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-359 -6340 26" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2753524" + "classname" "prop_static" + "angles" "0 216 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-94 -6347 26" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2753532" + "classname" "prop_static" + "angles" "0 199 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-223 -6341 34.2672" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2753540" + "classname" "prop_static" + "angles" "0 95.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-129.93 -6338 27" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2753548" + "classname" "prop_static" + "angles" "0 313.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_small_palm01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-311 -6343 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2753572" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "51 -6013 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2753706" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-701.5 -5932.5 282.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2753699" + side + { + "id" "322460" + "plane" "(-720 -5992 351) (-690 -5881 351) (-689 -5881 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322459" + "plane" "(-690 -5881 214) (-720 -5992 214) (-718 -5992 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322458" + "plane" "(-720 -5992 214) (-720 -5992 351) (-718 -5992 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322457" + "plane" "(-689 -5881 214) (-689 -5881 351) (-690 -5881 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322456" + "plane" "(-690 -5881 214) (-690 -5881 351) (-720 -5992 351)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 0] 0.117188" + "vaxis" "[0 0 -1 143.883] 0.535156" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322455" + "plane" "(-718 -5992 214) (-718 -5992 351) (-689 -5881 351)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 41] 0.465" + "vaxis" "[0 0 -1 165] 0.508" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15768]" + } +} +hidden +{ + entity + { + "id" "2753741" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-55.0005 -5688 32.0001" + editor + { + "color" "233 146 0" + "groupid" "2753740" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2753957" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "39 -5993 147" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "351064" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -31 0" + "uv1" "-32 31 0" + "uv2" "32 31 0" + "uv3" "32 -31 0" + "origin" "39 -5993 147" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10268]" + } +} +hidden +{ + entity + { + "id" "2740951" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "124 -4680 -0.0585403" + editor + { + "color" "233 146 0" + "groupid" "2740950" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2723933" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-237 -6224 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2723941" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-237 -6256 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +entity +{ + "id" "2723986" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-623 -5699.5 312" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2723987" + side + { + "id" "321831" + "plane" "(-503 -5707.5 344) (-503 -5708.5 344) (-613 -5781 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321830" + "plane" "(-503 -5708.5 214) (-503 -5707.5 214) (-613 -5779 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321829" + "plane" "(-613 -5779 344) (-613 -5781 344) (-613 -5781 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321828" + "plane" "(-503 -5708.5 344) (-503 -5707.5 344) (-503 -5707.5 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321827" + "plane" "(-503 -5707.5 344) (-613 -5779 344) (-613 -5779 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 146.618] 0.429688" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321826" + "plane" "(-613 -5781 344) (-503 -5708.5 344) (-503 -5708.5 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 40.8739] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2723994" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-737 -5770.5 312" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2723995" + side + { + "id" "321843" + "plane" "(-617.5 -5785 344) (-616.5 -5785 344) (-688 -5873 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321842" + "plane" "(-690 -5873 214) (-688 -5873 214) (-616.5 -5785 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321841" + "plane" "(-690 -5873 344) (-688 -5873 344) (-688 -5873 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321840" + "plane" "(-616.5 -5785 344) (-617.5 -5785 344) (-617.5 -5785 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321839" + "plane" "(-617.5 -5785 344) (-690 -5873 344) (-690 -5873 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 132.414] 0.283203" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321838" + "plane" "(-688 -5873 344) (-616.5 -5785 344) (-616.5 -5785 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 40.8739] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2724020" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-824 -5986 312" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "2724021" + side + { + "id" "321879" + "plane" "(-721.5 -6000 344) (-720.5 -6000 344) (-681 -6111 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321878" + "plane" "(-683 -6111 214) (-681 -6111 214) (-720.5 -6000 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321877" + "plane" "(-683 -6111 344) (-681 -6111 344) (-681 -6111 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321876" + "plane" "(-720.5 -6000 344) (-721.5 -6000 344) (-721.5 -6000 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321875" + "plane" "(-721.5 -6000 344) (-683 -6111 344) (-683 -6111 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 189.506] 0.150391" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321874" + "plane" "(-681 -6111 344) (-720.5 -6000 344) (-720.5 -6000 214)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 40.8739] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2727309" + "classname" "func_detail" + solid + { + "id" "2727300" + side + { + "id" "322035" + "plane" "(-495 -6275 182) (-372 -6307 182) (-372 -6309 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322034" + "plane" "(-495 -6277 32) (-372 -6309 32) (-372 -6307 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" "322033" + "plane" "(-372 -6309 32) (-372 -6309 182) (-372 -6307 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" "322032" + "plane" "(-495 -6275 32) (-495 -6275 182) (-495 -6277 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" "322031" + "plane" "(-495 -6277 32) (-495 -6277 182) (-372 -6309 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322030" + "plane" "(-372 -6307 32) (-372 -6307 182) (-495 -6275 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +entity +{ + "id" "2727335" + "classname" "func_detail" + solid + { + "id" "2727330" + side + { + "id" "322089" + "plane" "(-503 -6275 182) (-503 -6277 182) (-609 -6210 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322088" + "plane" "(-503 -6277 32) (-503 -6275 32) (-609 -6208 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" "322087" + "plane" "(-503 -6277 182) (-503 -6275 182) (-503 -6275 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" "322086" + "plane" "(-609 -6208 182) (-609 -6210 182) (-609 -6210 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" "322085" + "plane" "(-609 -6210 182) (-503 -6277 182) (-503 -6277 32)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322084" + "plane" "(-503 -6275 182) (-609 -6208 182) (-609 -6208 32)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14000]" + } +} +entity +{ + "id" "2728595" + "classname" "func_detail" + solid + { + "id" "2728589" + side + { + "id" "322107" + "plane" "(-615 -6205 182) (-684 -6119 182) (-682 -6119 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322106" + "plane" "(-684 -6119 32) (-615 -6205 32) (-613 -6205 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" "322105" + "plane" "(-615 -6205 32) (-615 -6205 182) (-613 -6205 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" "322104" + "plane" "(-682 -6119 32) (-682 -6119 182) (-684 -6119 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" "322103" + "plane" "(-684 -6119 32) (-684 -6119 182) (-615 -6205 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322102" + "plane" "(-613 -6205 32) (-613 -6205 182) (-682 -6119 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "2728605" + "classname" "func_detail" + solid + { + "id" "2728602" + side + { + "id" "322125" + "plane" "(-721.5 -6000 182) (-720.5 -6000 182) (-681 -6111 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322124" + "plane" "(-683 -6111 32) (-681 -6111 32) (-720.5 -6000 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" "322123" + "plane" "(-683 -6111 182) (-681 -6111 182) (-681 -6111 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" "322122" + "plane" "(-720.5 -6000 182) (-721.5 -6000 182) (-721.5 -6000 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" "322121" + "plane" "(-721.5 -6000 182) (-683 -6111 182) (-683 -6111 32)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322120" + "plane" "(-681 -6111 182) (-720.5 -6000 182) (-720.5 -6000 32)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 16000]" + } +} +entity +{ + "id" "2728614" + "classname" "func_detail" + solid + { + "id" "2724012" + side + { + "id" "322131" + "plane" "(-720 -5992 182) (-690 -5881 182) (-689 -5881 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322130" + "plane" "(-690 -5881 32) (-720 -5992 32) (-718 -5992 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" "322129" + "plane" "(-720 -5992 32) (-720 -5992 182) (-718 -5992 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" "322128" + "plane" "(-689 -5881 32) (-689 -5881 182) (-690 -5881 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" "322127" + "plane" "(-690 -5881 32) (-690 -5881 182) (-720 -5992 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322126" + "plane" "(-718 -5992 32) (-718 -5992 182) (-689 -5881 182)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +entity +{ + "id" "2728628" + "classname" "func_detail" + solid + { + "id" "2728625" + side + { + "id" "322149" + "plane" "(-617.5 -5785 182) (-616.5 -5785 182) (-688 -5873 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322148" + "plane" "(-690 -5873 32) (-688 -5873 32) (-616.5 -5785 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" "322147" + "plane" "(-690 -5873 182) (-688 -5873 182) (-688 -5873 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" "322146" + "plane" "(-616.5 -5785 182) (-617.5 -5785 182) (-617.5 -5785 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" "322145" + "plane" "(-617.5 -5785 182) (-690 -5873 182) (-690 -5873 32)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322144" + "plane" "(-688 -5873 182) (-616.5 -5785 182) (-616.5 -5785 32)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15268]" + } +} +entity +{ + "id" "2728643" + "classname" "func_detail" + solid + { + "id" "2728639" + side + { + "id" "322167" + "plane" "(-503 -5707.5 182) (-503 -5708.5 182) (-613 -5781 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322166" + "plane" "(-503 -5708.5 32) (-503 -5707.5 32) (-613 -5779 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" "322165" + "plane" "(-613 -5779 182) (-613 -5781 182) (-613 -5781 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" "322164" + "plane" "(-503 -5708.5 182) (-503 -5707.5 182) (-503 -5707.5 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" "322163" + "plane" "(-503 -5707.5 182) (-613 -5779 182) (-613 -5779 32)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322162" + "plane" "(-613 -5781 182) (-503 -5708.5 182) (-503 -5708.5 32)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14268]" + } +} +hidden +{ + entity + { + "id" "2729119" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-686 -5879 344" + editor + { + "color" "245 126 0" + "groupid" "3057043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +entity +{ + "id" "2711260" + "classname" "func_detail" + solid + { + "id" "2711257" + side + { + "id" "321299" + "plane" "(-328 -5680 192) (-328 -5608 192) (-224 -5608 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" "321298" + "plane" "(-328 -5608 176) (-328 -5680 176) (-224 -5680 176)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321297" + "plane" "(-328 -5680 176) (-328 -5608 176) (-328 -5608 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" "321296" + "plane" "(-224 -5608 176) (-224 -5680 176) (-224 -5680 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" "321295" + "plane" "(-328 -5608 176) (-224 -5608 176) (-224 -5608 192)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[1 0 0 -71] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321294" + "plane" "(-224 -5680 176) (-328 -5680 176) (-328 -5680 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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "2711267" + "classname" "func_detail" + solid + { + "id" "2711265" + side + { + "id" "321311" + "plane" "(-608 -5584 192) (-328 -5584 192) (-328 -5680 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" "321310" + "plane" "(-608 -5680 176) (-328 -5680 176) (-328 -5584 176)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321309" + "plane" "(-608 -5584 176) (-608 -5584 192) (-608 -5680 192)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0 1 0 -71] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321308" + "plane" "(-328 -5680 176) (-328 -5680 192) (-328 -5584 192)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[0 1 0 -71] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321307" + "plane" "(-328 -5584 176) (-328 -5584 192) (-608 -5584 192)" + "material" "METAL/DRTRIME" + "uaxis" "[0 0 1 8] 0.25" + "vaxis" "[1 0 0 -71] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321306" + "plane" "(-608 -5680 176) (-608 -5680 192) (-328 -5680 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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "2711280" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-488 -5671.5 312" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1566781" + side + { + "id" "321317" + "plane" "(-495 -5706.5 344) (-376 -5684 344) (-376 -5685 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321316" + "plane" "(-495 -5707.5 214) (-376 -5685 214) (-376 -5684 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321315" + "plane" "(-495 -5706.5 214) (-495 -5706.5 344) (-495 -5707.5 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321314" + "plane" "(-376 -5685 214) (-376 -5685 344) (-376 -5684 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321313" + "plane" "(-376 -5684 214) (-376 -5684 344) (-495 -5706.5 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 40.8739] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321312" + "plane" "(-495 -5707.5 214) (-495 -5707.5 344) (-376 -5685 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 40.8739] 0.464844" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2711290" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-232 -5671.5 312" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1566782" + side + { + "id" "321323" + "plane" "(-368 -5684 344) (-241 -5704 344) (-241 -5705 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321322" + "plane" "(-368 -5685 214) (-241 -5705 214) (-241 -5704 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321321" + "plane" "(-368 -5684 214) (-368 -5684 344) (-368 -5685 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321320" + "plane" "(-241 -5705 214) (-241 -5705 344) (-241 -5704 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321319" + "plane" "(-241 -5704 214) (-241 -5704 344) (-368 -5684 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 229.795] 0.496094" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321318" + "plane" "(-368 -5685 214) (-368 -5685 344) (-241 -5705 344)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 229.795] 0.496094" + "vaxis" "[0 0 -1 165.415] 0.507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "2711863" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-125 -6163 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2711890" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-237 -5712 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2711913" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-237 -5968 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2711929" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-504 -5712 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2711937" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-504 -5968 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "2711966" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-125 -6195 344" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +entity +{ + "id" "2698456" + "classname" "func_detail" + solid + { + "id" "2421793" + side + { + "id" "321209" + "plane" "(1199 -5989 0) (1310 -5989 0) (1310 -6005 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -421] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321208" + "plane" "(1199 -6005 -48) (1310 -6005 -48) (1310 -5989 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321207" + "plane" "(1199 -5989 0) (1199 -6005 0) (1199 -6005 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321206" + "plane" "(1310 -5989 -48) (1310 -6005 -48) (1310 -6005 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321205" + "plane" "(1310 -5989 0) (1199 -5989 0) (1199 -5989 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -421] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321204" + "plane" "(1310 -6005 -48) (1199 -6005 -48) (1199 -6005 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -421] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2698398" + side + { + "id" "321215" + "plane" "(1200 -6176 0) (1200 -6160 0) (1311 -6160 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -421] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321214" + "plane" "(1200 -6160 -48) (1200 -6176 -48) (1311 -6176 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 4] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321213" + "plane" "(1200 -6176 -48) (1200 -6160 -48) (1200 -6160 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321212" + "plane" "(1311 -6160 -48) (1311 -6176 -48) (1311 -6176 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321211" + "plane" "(1200 -6160 -48) (1311 -6160 -48) (1311 -6160 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -421] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321210" + "plane" "(1311 -6176 -48) (1200 -6176 -48) (1200 -6176 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -421] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2421791" + side + { + "id" "321221" + "plane" "(1200 -6315 0) (1311 -6315 0) (1311 -6331 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -421] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321220" + "plane" "(1200 -6331 -48) (1311 -6331 -48) (1311 -6315 -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" "321219" + "plane" "(1200 -6315 0) (1200 -6331 0) (1200 -6331 -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" "321218" + "plane" "(1311 -6315 -48) (1311 -6331 -48) (1311 -6331 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" "321217" + "plane" "(1311 -6315 0) (1200 -6315 0) (1200 -6315 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -421] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "321216" + "plane" "(1311 -6331 -48) (1200 -6331 -48) (1200 -6331 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001" + "uaxis" "[1 0 0 -421] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "2698488" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1401 -5936.79 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698492" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1462 -5933.79 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698496" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1343 -5936.79 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698524" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1737 -5938 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698528" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1798 -5935 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698532" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/olive_hedge_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1679 -5938 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698536" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2100 -5935 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698540" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2161 -5932 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698544" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2042 -5935 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698565" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1251.03 -6377 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698569" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1254.03 -6438 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698589" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1251 -6523 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698593" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1254 -6584 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698605" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2689 -6281 -28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698609" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2746.81 -6395 -28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698621" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2741.94 -6884 -41.9999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698625" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2744.94 -6945 -41.9999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698641" + "classname" "prop_static" + "angles" "0 148.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1558.16 -5942.92 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698649" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/palmetto_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2717 -6252 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698665" + "classname" "prop_static" + "angles" "0 210.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_dust/hr_dust/foliage/palm_tree_small_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2749 -6653 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698685" + "classname" "prop_static" + "angles" "0 210.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/palmetto_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2749 -8183 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698701" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "64 -6761 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2698728" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "192 -6761 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2698775" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-385.075 -6692 -31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698779" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-327.075 -6692 -31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698783" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-266.075 -6689 -31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698803" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-29 -6687 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698807" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "87 -6693 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698851" + "classname" "prop_static" + "angles" "0 148.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/palmetto_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-58.1134 -6697.3 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698855" + "classname" "prop_static" + "angles" "0 148.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/palmetto_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-199 -6693 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698867" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-179 -6699 -29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2698879" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-384 -6737 -25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2698895" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-120.346 -6737 -25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2698907" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "128 -6737 -25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2698927" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-58 -6501 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2698947" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-141 -6501 -48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2698975" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-327 -3241 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2698979" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-455 -3241 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2699048" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-318 -3114 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2699088" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-584 -3178 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2699120" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-318 -2986 -4" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2699251" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1855 -3604 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2699285" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1854 -3357 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2674331" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1960 -3220 -0.090744" + editor + { + "color" "233 146 0" + "groupid" "2674404" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674335" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1960 -3220 -0.0906448" + editor + { + "color" "233 146 0" + "groupid" "2674404" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674451" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2204 -2904 -24.0906" + editor + { + "color" "233 146 0" + "groupid" "2674450" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674523" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3376 -2612 -24.0906" + editor + { + "color" "233 146 0" + "groupid" "2674522" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674581" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3376 -2268 -24.0907" + editor + { + "color" "233 146 0" + "groupid" "2674576" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674613" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1076 -1992 -23.3712" + editor + { + "color" "233 146 0" + "groupid" "2674612" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674667" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2432 -4596 32" + editor + { + "color" "233 146 0" + "groupid" "2674666" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674671" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2434 -4596 31.9999" + editor + { + "color" "233 146 0" + "groupid" "2674666" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674736" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2432 -4220 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674740" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2434 -4220 31.9999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2674787" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-260 -4760 -0.0585403" + editor + { + "color" "233 146 0" + "groupid" "2674786" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2649745" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-780 -3176 4.57764e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2649811" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "488 -2558 3.8147e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2649863" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1336 -3020 16.0001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2649899" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1932 -3432 16.0001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2649955" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1855 -4208 5.34058e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2650011" + "classname" "func_detail" + solid + { + "id" "4662617" + side + { + "id" "344188" + "plane" "(1979 -4200 0) (1979 -4216 0) (1987 -4216 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344187" + "plane" "(1979 -4216 48) (1979 -4216 0) (1979 -4200 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 935.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344186" + "plane" "(1987 -4200 48) (1987 -4200 0) (1987 -4216 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -1940] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344185" + "plane" "(1979 -4200 48) (1979 -4200 0) (1987 -4200 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 -215] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344184" + "plane" "(1987 -4216 48) (1987 -4216 0) (1979 -4216 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344183" + "plane" "(1979 -4216 48) (1979 -4200 48) (1987 -4200 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4662616" + side + { + "id" "344182" + "plane" "(1979 -4216 128) (1979 -4200 128) (1987 -4200 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344181" + "plane" "(1979 -4200 48) (1979 -4200 128) (1979 -4216 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 935.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344180" + "plane" "(1987 -4216 48) (1987 -4216 128) (1987 -4200 128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -1940] 0.15" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344179" + "plane" "(1987 -4200 48) (1987 -4200 128) (1979 -4200 128)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -344] 0.125" + "vaxis" "[0 0 -1 -134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344178" + "plane" "(1979 -4216 48) (1979 -4216 128) (1987 -4216 128)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY" + "uaxis" "[1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "344177" + "plane" "(1979 -4200 48) (1979 -4216 48) (1987 -4216 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2650046" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sliding_door_open.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1192 -5248 6.10352e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2650312" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1536 -2589 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2637233" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-761.761 -2271 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2637383" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1070 -2342 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2637457" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1280 -2616 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637461" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1280 -2615 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2637465" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1288 -2595 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2637496" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1408 -2616 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637500" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1408 -2615 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2637504" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1409 -2586 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2637522" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1536 -2616 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637526" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1536 -2615 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2637530" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1664 -2588 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2637548" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1664 -2616 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637552" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1664 -2615 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2637556" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1797 -2588 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2637593" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1952 -2743 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2637598" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1922 -2743 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637602" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1923 -2742 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2637632" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1952 -2617 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2637637" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1922 -2615 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637641" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1923 -2614 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637706" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-145 -4387 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637710" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-146 -4386 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2637714" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-144 -4402 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2637771" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-272 -4386 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2637775" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-271 -4406 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2637780" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-273 -4387 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637823" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-483 -4244 -1.52588e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637832" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-483 -4244 -1.52588e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637928" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-483 -4116 -1.52588e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2637932" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-483 -4116 -1.52588e-05" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2638047" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-401 -4386 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2638051" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-401 -4387 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2638055" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-399 -4406 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2625314" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "230 -2392 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2625318" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "229 -2392 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2625390" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "229 -2520 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2625394" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "230 -2520 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2625452" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "226 -2667 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2625456" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "226 -2666 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2625652" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "200 -2397 21.0023" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2625662" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "200 -2521.58 21" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2625672" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "97 -2637 21" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2625682" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "200 -2779.31 21" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2613745" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2605 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2613749" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2733 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2613753" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2861 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2613757" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2989 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2613761" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3117 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2613765" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3245 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2613769" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3373 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2613773" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3501 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2613777" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3629 -8.00001" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2589716" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "1616 -3264 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2589837" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "1616 -3384 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2589846" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "1776 -3264 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2589849" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "1776 -3384 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2589852" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "1928 -3264 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2589855" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "1928 -3384 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2589862" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "1456 -3384 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2589865" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "1464 -3168 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2589877" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_shuttle" + "fixup_style" "0" + "origin" "1400 -3168 192" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2590091" + "classname" "func_detail" + solid + { + "id" "2574819" + side + { + "id" "313298" + "plane" "(1504 -3160 208) (1504 -3233.33 208) (1488 -3248 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" "313297" + "plane" "(1504 -3160 192) (1488 -3160 192) (1488 -3248 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -244] 0.125" + "vaxis" "[1 0 0 275] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313296" + "plane" "(1504 -3233.33 192) (1504 -3233.33 208) (1504 -3160 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -244] 0.125" + "vaxis" "[0 0 1 531] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313295" + "plane" "(1504 -3160 192) (1504 -3160 208) (1488 -3160 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" "313294" + "plane" "(1488 -3248 192) (1488 -3248 208) (1504 -3233.33 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" "313293" + "plane" "(1488 -3160 192) (1488 -3160 208) (1488 -3248 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2561204" + side + { + "id" "313304" + "plane" "(1360 -3160 240) (1360 -3144 240) (1504 -3144 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" "313303" + "plane" "(1360 -3144 192) (1360 -3160 192) (1504 -3160 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 -1 0 -286] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313302" + "plane" "(1360 -3160 192) (1360 -3144 192) (1360 -3144 240)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 10] 0.125" + "vaxis" "[0 0 -1 -373] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313301" + "plane" "(1504 -3144 192) (1504 -3160 192) (1504 -3160 240)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -244] 0.125" + "vaxis" "[0 0 1 531] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313300" + "plane" "(1504 -3160 192) (1360 -3160 192) (1360 -3160 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" "313299" + "plane" "(1360 -3144 192) (1504 -3144 192) (1504 -3144 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2575313" + side + { + "id" "313310" + "plane" "(1376 -3248 208) (1360 -3248 208) (1360 -3160 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" "313309" + "plane" "(1376 -3160 192) (1360 -3160 192) (1360 -3248 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 -1 0 -286] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313308" + "plane" "(1360 -3160 192) (1376 -3160 192) (1376 -3160 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" "313307" + "plane" "(1360 -3248 192) (1360 -3160 192) (1360 -3160 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 -1 395.998] 0.125" + "vaxis" "[0 -1 0 -286] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313306" + "plane" "(1376 -3248 192) (1360 -3248 192) (1360 -3248 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" "313305" + "plane" "(1376 -3160 192) (1376 -3248 192) (1376 -3248 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2575312" + side + { + "id" "313316" + "plane" "(1488 -3248 208) (1376 -3248 208) (1376 -3160 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" "313315" + "plane" "(1488 -3160 192) (1376 -3160 192) (1376 -3248 192)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -255] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313314" + "plane" "(1376 -3160 192) (1488 -3160 192) (1488 -3160 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" "313313" + "plane" "(1488 -3248 192) (1376 -3248 192) (1376 -3248 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" "313312" + "plane" "(1488 -3160 192) (1488 -3248 192) (1488 -3248 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" "313311" + "plane" "(1376 -3248 192) (1376 -3160 192) (1376 -3160 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2561205" + side + { + "id" "313322" + "plane" "(1360 -3144 208) (1360 -3136 208) (1504 -3136 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" "313321" + "plane" "(1360 -3136 192) (1360 -3144 192) (1504 -3144 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313320" + "plane" "(1360 -3144 192) (1360 -3136 192) (1360 -3136 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 127.997] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313319" + "plane" "(1504 -3136 192) (1504 -3144 192) (1504 -3144 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -244] 0.125" + "vaxis" "[0 0 1 531] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313318" + "plane" "(1360 -3136 192) (1504 -3136 192) (1504 -3136 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_GREY_DARK" + "uaxis" "[1 0 0 499.049] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313317" + "plane" "(1504 -3144 192) (1360 -3144 192) (1360 -3144 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -437.996] 0.125" + "vaxis" "[0 0 -1 -373] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2575031" + side + { + "id" "313328" + "plane" "(1536 -3392 208) (1536 -3248 208) (2064 -3248 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" "313327" + "plane" "(2064 -3248 192) (1536 -3248 192) (1536 -3392 192)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -255] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313326" + "plane" "(1536 -3392 192) (1536 -3248 192) (1536 -3248 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" "313325" + "plane" "(1536 -3248 192) (2064 -3248 192) (2064 -3248 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" "313324" + "plane" "(2064 -3248 192) (2064 -3392 192) (2064 -3392 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" "313323" + "plane" "(2064 -3392 192) (1536 -3392 192) (1536 -3392 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2574812" + side + { + "id" "313334" + "plane" "(2080 -3232 208) (2080 -3248 208) (1488 -3248 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" "313333" + "plane" "(1488 -3248 192) (2080 -3248 192) (2080 -3232 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 -1 0 -273] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313332" + "plane" "(1504 -3232 208) (1488 -3248 208) (1488 -3248 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" "313331" + "plane" "(2080 -3232 208) (1504 -3232 208) (1504 -3232 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 0 -1 494.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313330" + "plane" "(2080 -3248 208) (2080 -3232 208) (2080 -3232 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 11.9971] 0.125" + "vaxis" "[0 -1 0 -273] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313329" + "plane" "(1488 -3248 208) (2080 -3248 208) (2080 -3248 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" + } + } + solid + { + "id" "2575310" + side + { + "id" "313340" + "plane" "(1376 -3248 208) (1536 -3248 208) (1536 -3392 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" "313339" + "plane" "(1376 -3392 192) (1536 -3392 192) (1536 -3248 192)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -255] 0.125" + "vaxis" "[0 -1 0 -129] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313338" + "plane" "(1536 -3248 192) (1536 -3392 192) (1536 -3392 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" "313337" + "plane" "(1376 -3248 192) (1536 -3248 192) (1536 -3248 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" "313336" + "plane" "(1536 -3392 192) (1376 -3392 192) (1376 -3392 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" "313335" + "plane" "(1376 -3392 192) (1376 -3248 192) (1376 -3248 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2575027" + side + { + "id" "313346" + "plane" "(2064 -3392 208) (2064 -3248 208) (2080 -3248 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" "313345" + "plane" "(2080 -3408 192) (2080 -3248 192) (2064 -3248 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 -1 0 -286] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313344" + "plane" "(2064 -3392 192) (2064 -3392 208) (2080 -3408 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" "313343" + "plane" "(2080 -3408 192) (2080 -3408 208) (2080 -3248 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 11.9971] 0.125" + "vaxis" "[0 -1 0 -286] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313342" + "plane" "(2080 -3248 192) (2080 -3248 208) (2064 -3248 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" "313341" + "plane" "(2064 -3248 192) (2064 -3248 208) (2064 -3392 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2575032" + side + { + "id" "313352" + "plane" "(1536 -3408 208) (1536 -3392 208) (2064 -3392 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" "313351" + "plane" "(1536 -3408 192) (2080 -3408 192) (2064 -3392 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 -1 0 -460] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313350" + "plane" "(1536 -3392 192) (1536 -3392 208) (1536 -3408 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" "313349" + "plane" "(1536 -3408 192) (1536 -3408 208) (2080 -3408 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 0 1 691.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "313348" + "plane" "(2080 -3408 192) (2080 -3408 208) (2064 -3392 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" "313347" + "plane" "(2064 -3392 192) (2064 -3392 208) (1536 -3392 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2575311" + side + { + "id" "310214" + "plane" "(1360 -3392 208) (1360 -3248 208) (1376 -3248 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" "310213" + "plane" "(1360 -3248 192) (1360 -3392 192) (1376 -3392 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 -1 0 -286] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310212" + "plane" "(1360 -3392 192) (1360 -3248 192) (1360 -3248 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 -1 395.998] 0.125" + "vaxis" "[0 -1 0 -286] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310211" + "plane" "(1360 -3248 192) (1376 -3248 192) (1376 -3248 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" "310210" + "plane" "(1376 -3392 192) (1360 -3392 192) (1360 -3392 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" "310209" + "plane" "(1376 -3248 192) (1376 -3392 192) (1376 -3392 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2575303" + side + { + "id" "310196" + "plane" "(1536 -3392 208) (1536 -3408 208) (1360 -3408 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" "310195" + "plane" "(1360 -3392 192) (1360 -3408 192) (1536 -3408 192)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 -1 0 -460] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310194" + "plane" "(1536 -3392 192) (1536 -3408 192) (1536 -3408 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" "310193" + "plane" "(1536 -3408 192) (1360 -3408 192) (1360 -3408 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 -244] 0.125" + "vaxis" "[0 0 1 691.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310192" + "plane" "(1360 -3408 192) (1360 -3392 192) (1360 -3392 208)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 -1 395.998] 0.125" + "vaxis" "[0 -1 0 -286] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "310191" + "plane" "(1360 -3392 192) (1536 -3392 192) (1536 -3392 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "2590464" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1792 -3424 68.4099" + editor + { + "color" "141 146 0" + "groupid" "2590463" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590468" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1792 -3424 68.4099" + editor + { + "color" "141 146 0" + "groupid" "2590463" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590472" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2091.96 -3409 56.4099" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590476" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2095.96 -3409 106.41" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590480" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1792 -3424 106.41" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590484" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2095.96 -3393 106.41" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2590488" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "2090.96 -3393 106.41" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2590491" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2069.96 -3393 106.41" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2590563" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1344 -3154 75.6603" + editor + { + "color" "141 146 0" + "groupid" "2590562" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590567" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1344 -3154 75.6603" + editor + { + "color" "141 146 0" + "groupid" "2590562" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590571" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1489 -2900.04 63.6603" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590575" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1489 -2896.04 113.66" + editor + { + "color" "163 136 0" + "groupid" "2590682" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590579" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1344 -3154 113.66" + editor + { + "color" "163 136 0" + "groupid" "2590682" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2590583" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1473 -2896.04 113.66" + editor + { + "color" "249 150 0" + "groupid" "2590673" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2590587" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "1473 -2901.04 113.66" + editor + { + "color" "249 150 0" + "groupid" "2590673" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2590590" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1473 -2922.04 113.66" + editor + { + "color" "249 150 0" + "groupid" "2590673" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2590718" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "123 118 117" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1520 -2992 184" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +entity +{ + "id" "2590860" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "500" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 253 204 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 180 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "1496 -2992 168" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "2590905" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 253 204" + "renderfx" "0" + "rendermode" "9" + "scale" "1" + "spawnflags" "0" + "origin" "1510 -2992 172" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +hidden +{ + entity + { + "id" "2591050" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1526 -3222 16" + editor + { + "color" "243 132 0" + "groupid" "2591291" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2591094" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1654 -3222 16" + editor + { + "color" "243 132 0" + "groupid" "2591291" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2591102" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1784 -3222 16" + editor + { + "color" "243 132 0" + "groupid" "2591309" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2591121" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1784 -3222 48" + editor + { + "color" "243 132 0" + "groupid" "2591291" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2591160" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2068 -3222 16" + editor + { + "color" "127 156 0" + "groupid" "2591278" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2591176" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1938 -3222 16" + editor + { + "color" "127 156 0" + "groupid" "2591278" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2591180" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1938 -3222 48" + editor + { + "color" "127 156 0" + "groupid" "2591278" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2591224" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_24.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2092 -3222 16" + editor + { + "color" "127 156 0" + "groupid" "2591278" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2591692" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_cap.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1526 -3222 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "2597853" + "classname" "prop_static" + "angles" "0 45 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2081 -3238 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 14500]" + } + } +} +hidden +{ + entity + { + "id" "2600127" + "classname" "prop_static" + "angles" "0 45 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/trashcan01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1358 -3409 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 14500]" + } + } +} +entity +{ + "id" "2600260" + "classname" "func_detail" + solid + { + "id" "2600261" + side + { + "id" "320012" + "plane" "(1329 -3386 22) (1326 -3386 22) (1326 -3167 22)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[1 0 0 23.0059] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320011" + "plane" "(1326 -3386 19) (1329 -3386 19) (1329 -3167 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320010" + "plane" "(1329 -3386 19) (1326 -3386 19) (1326 -3386 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320009" + "plane" "(1326 -3167 19) (1329 -3167 19) (1329 -3167 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320008" + "plane" "(1326 -3386 19) (1326 -3167 19) (1326 -3167 22)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[0 0 -1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320007" + "plane" "(1329 -3167 19) (1329 -3386 19) (1329 -3386 22)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[0 0 -1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600262" + side + { + "id" "320018" + "plane" "(1329 -3170 144) (1326 -3170 144) (1326 -3167 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320017" + "plane" "(1326 -3170 22) (1329 -3170 22) (1329 -3167 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320016" + "plane" "(1329 -3170 22) (1326 -3170 22) (1326 -3170 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320015" + "plane" "(1326 -3167 22) (1329 -3167 22) (1329 -3167 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320014" + "plane" "(1326 -3170 22) (1326 -3167 22) (1326 -3167 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 47] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320013" + "plane" "(1329 -3167 22) (1329 -3170 22) (1329 -3170 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 47] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600263" + side + { + "id" "320024" + "plane" "(1328 -3209 141) (1327 -3209 141) (1327 -3170 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320023" + "plane" "(1327 -3209 83) (1328 -3209 83) (1328 -3170 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320022" + "plane" "(1328 -3209 83) (1327 -3209 83) (1327 -3209 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320021" + "plane" "(1327 -3170 83) (1328 -3170 83) (1328 -3170 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320020" + "plane" "(1327 -3209 83) (1327 -3170 83) (1327 -3170 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320019" + "plane" "(1328 -3170 83) (1328 -3209 83) (1328 -3209 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600264" + side + { + "id" "320030" + "plane" "(1328 -3254 141) (1327 -3254 141) (1327 -3212 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320029" + "plane" "(1327 -3254 83) (1328 -3254 83) (1328 -3212 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320028" + "plane" "(1328 -3254 83) (1327 -3254 83) (1327 -3254 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320027" + "plane" "(1327 -3212 83) (1328 -3212 83) (1328 -3212 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320026" + "plane" "(1327 -3254 83) (1327 -3212 83) (1327 -3212 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320025" + "plane" "(1328 -3212 83) (1328 -3254 83) (1328 -3254 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 76] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600265" + side + { + "id" "320036" + "plane" "(1329 -3212 141) (1326 -3212 141) (1326 -3209 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320035" + "plane" "(1326 -3212 83) (1329 -3212 83) (1329 -3209 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320034" + "plane" "(1329 -3212 83) (1326 -3212 83) (1326 -3212 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320033" + "plane" "(1326 -3209 83) (1329 -3209 83) (1329 -3209 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320032" + "plane" "(1326 -3212 83) (1326 -3209 83) (1326 -3209 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320031" + "plane" "(1329 -3209 83) (1329 -3212 83) (1329 -3212 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600266" + side + { + "id" "320042" + "plane" "(1328 -3299 141) (1327 -3299 141) (1327 -3257 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320041" + "plane" "(1327 -3299 83) (1328 -3299 83) (1328 -3257 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320040" + "plane" "(1328 -3299 83) (1327 -3299 83) (1327 -3299 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320039" + "plane" "(1327 -3257 83) (1328 -3257 83) (1328 -3257 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320038" + "plane" "(1327 -3299 83) (1327 -3257 83) (1327 -3257 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320037" + "plane" "(1328 -3257 83) (1328 -3299 83) (1328 -3299 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600267" + side + { + "id" "320048" + "plane" "(1329 -3257 141) (1326 -3257 141) (1326 -3254 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320047" + "plane" "(1326 -3257 83) (1329 -3257 83) (1329 -3254 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320046" + "plane" "(1329 -3257 83) (1326 -3257 83) (1326 -3257 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320045" + "plane" "(1326 -3254 83) (1329 -3254 83) (1329 -3254 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320044" + "plane" "(1326 -3257 83) (1326 -3254 83) (1326 -3254 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320043" + "plane" "(1329 -3254 83) (1329 -3257 83) (1329 -3257 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600268" + side + { + "id" "320054" + "plane" "(1328 -3386 141) (1327 -3386 141) (1327 -3347 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320053" + "plane" "(1327 -3386 83) (1328 -3386 83) (1328 -3347 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320052" + "plane" "(1328 -3386 83) (1327 -3386 83) (1327 -3386 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320051" + "plane" "(1327 -3347 83) (1328 -3347 83) (1328 -3347 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320050" + "plane" "(1327 -3386 83) (1327 -3347 83) (1327 -3347 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320049" + "plane" "(1328 -3347 83) (1328 -3386 83) (1328 -3386 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 104] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600269" + side + { + "id" "320060" + "plane" "(1329 -3302 141) (1326 -3302 141) (1326 -3299 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320059" + "plane" "(1326 -3302 83) (1329 -3302 83) (1329 -3299 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320058" + "plane" "(1329 -3302 83) (1326 -3302 83) (1326 -3302 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320057" + "plane" "(1326 -3299 83) (1329 -3299 83) (1329 -3299 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320056" + "plane" "(1326 -3302 83) (1326 -3299 83) (1326 -3299 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 15] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320055" + "plane" "(1329 -3299 83) (1329 -3302 83) (1329 -3302 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 15] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600270" + side + { + "id" "320066" + "plane" "(1329 -3347 141) (1326 -3347 141) (1326 -3344 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320065" + "plane" "(1326 -3347 83) (1329 -3347 83) (1329 -3344 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320064" + "plane" "(1329 -3347 83) (1326 -3347 83) (1326 -3347 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320063" + "plane" "(1326 -3344 83) (1329 -3344 83) (1329 -3344 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320062" + "plane" "(1326 -3347 83) (1326 -3344 83) (1326 -3344 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 55] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320061" + "plane" "(1329 -3344 83) (1329 -3347 83) (1329 -3347 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 55] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600271" + side + { + "id" "320072" + "plane" "(1328 -3344 141) (1327 -3344 141) (1327 -3302 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320071" + "plane" "(1327 -3344 83) (1328 -3344 83) (1328 -3302 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320070" + "plane" "(1328 -3344 83) (1327 -3344 83) (1327 -3344 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320069" + "plane" "(1327 -3302 83) (1328 -3302 83) (1328 -3302 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320068" + "plane" "(1327 -3344 83) (1327 -3302 83) (1327 -3302 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320067" + "plane" "(1328 -3302 83) (1328 -3344 83) (1328 -3344 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600272" + side + { + "id" "320078" + "plane" "(1329 -3389 144) (1326 -3389 144) (1326 -3386 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320077" + "plane" "(1326 -3389 19) (1329 -3389 19) (1329 -3386 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320076" + "plane" "(1329 -3389 19) (1326 -3389 19) (1326 -3389 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320075" + "plane" "(1326 -3386 19) (1329 -3386 19) (1329 -3386 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320074" + "plane" "(1326 -3389 19) (1326 -3386 19) (1326 -3386 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320073" + "plane" "(1329 -3386 19) (1329 -3389 19) (1329 -3389 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600273" + side + { + "id" "320084" + "plane" "(1328 -3209 80) (1327 -3209 80) (1327 -3170 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320083" + "plane" "(1327 -3209 22) (1328 -3209 22) (1328 -3170 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320082" + "plane" "(1328 -3209 22) (1327 -3209 22) (1327 -3209 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320081" + "plane" "(1327 -3170 22) (1328 -3170 22) (1328 -3170 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320080" + "plane" "(1327 -3209 22) (1327 -3170 22) (1327 -3170 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320079" + "plane" "(1328 -3170 22) (1328 -3209 22) (1328 -3209 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600274" + side + { + "id" "320090" + "plane" "(1328 -3254 80) (1327 -3254 80) (1327 -3212 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320089" + "plane" "(1327 -3254 22) (1328 -3254 22) (1328 -3212 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320088" + "plane" "(1328 -3254 22) (1327 -3254 22) (1327 -3254 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320087" + "plane" "(1327 -3212 22) (1328 -3212 22) (1328 -3212 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320086" + "plane" "(1327 -3254 22) (1327 -3212 22) (1327 -3212 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320085" + "plane" "(1328 -3212 22) (1328 -3254 22) (1328 -3254 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 76] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600275" + side + { + "id" "320096" + "plane" "(1329 -3212 80) (1326 -3212 80) (1326 -3209 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320095" + "plane" "(1326 -3212 19) (1329 -3212 19) (1329 -3209 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 40] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320094" + "plane" "(1329 -3212 19) (1326 -3212 19) (1326 -3212 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320093" + "plane" "(1326 -3209 19) (1329 -3209 19) (1329 -3209 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 198.998] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320092" + "plane" "(1326 -3212 19) (1326 -3209 19) (1326 -3209 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320091" + "plane" "(1329 -3209 19) (1329 -3212 19) (1329 -3212 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 63] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600276" + side + { + "id" "320102" + "plane" "(1328 -3299 80) (1327 -3299 80) (1327 -3257 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320101" + "plane" "(1327 -3299 22) (1328 -3299 22) (1328 -3257 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320100" + "plane" "(1328 -3299 22) (1327 -3299 22) (1327 -3299 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320099" + "plane" "(1327 -3257 22) (1328 -3257 22) (1328 -3257 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320098" + "plane" "(1327 -3299 22) (1327 -3257 22) (1327 -3257 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320097" + "plane" "(1328 -3257 22) (1328 -3299 22) (1328 -3299 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600277" + side + { + "id" "320108" + "plane" "(1329 -3257 80) (1326 -3257 80) (1326 -3254 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320107" + "plane" "(1326 -3257 19) (1329 -3257 19) (1329 -3254 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320106" + "plane" "(1329 -3257 19) (1326 -3257 19) (1326 -3257 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320105" + "plane" "(1326 -3254 19) (1329 -3254 19) (1329 -3254 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 198.998] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320104" + "plane" "(1326 -3257 19) (1326 -3254 19) (1326 -3254 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320103" + "plane" "(1329 -3254 19) (1329 -3257 19) (1329 -3257 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600278" + side + { + "id" "320114" + "plane" "(1328 -3386 80) (1327 -3386 80) (1327 -3347 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320113" + "plane" "(1327 -3386 22) (1328 -3386 22) (1328 -3347 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320112" + "plane" "(1328 -3386 22) (1327 -3386 22) (1327 -3386 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320111" + "plane" "(1327 -3347 22) (1328 -3347 22) (1328 -3347 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320110" + "plane" "(1327 -3386 22) (1327 -3347 22) (1327 -3347 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320109" + "plane" "(1328 -3347 22) (1328 -3386 22) (1328 -3386 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 104] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600279" + side + { + "id" "320120" + "plane" "(1329 -3302 80) (1326 -3302 80) (1326 -3299 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320119" + "plane" "(1326 -3302 19) (1329 -3302 19) (1329 -3299 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320118" + "plane" "(1329 -3302 19) (1326 -3302 19) (1326 -3302 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320117" + "plane" "(1326 -3299 19) (1329 -3299 19) (1329 -3299 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 198.998] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320116" + "plane" "(1326 -3302 19) (1326 -3299 19) (1326 -3299 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 15] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320115" + "plane" "(1329 -3299 19) (1329 -3302 19) (1329 -3302 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 15] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600280" + side + { + "id" "320126" + "plane" "(1329 -3347 80) (1326 -3347 80) (1326 -3344 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320125" + "plane" "(1326 -3347 19) (1329 -3347 19) (1329 -3344 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320124" + "plane" "(1329 -3347 19) (1326 -3347 19) (1326 -3347 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[-1 0 0 -1.00195] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320123" + "plane" "(1326 -3344 19) (1329 -3344 19) (1329 -3344 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 198.998] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320122" + "plane" "(1326 -3347 19) (1326 -3344 19) (1326 -3344 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 55] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320121" + "plane" "(1329 -3344 19) (1329 -3347 19) (1329 -3347 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 55] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600281" + side + { + "id" "320132" + "plane" "(1328 -3344 80) (1327 -3344 80) (1327 -3302 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320131" + "plane" "(1327 -3344 22) (1328 -3344 22) (1328 -3302 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320130" + "plane" "(1328 -3344 22) (1327 -3344 22) (1327 -3344 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320129" + "plane" "(1327 -3302 22) (1328 -3302 22) (1328 -3302 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320128" + "plane" "(1327 -3344 22) (1327 -3302 22) (1327 -3302 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 500] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320127" + "plane" "(1328 -3302 22) (1328 -3344 22) (1328 -3344 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600282" + side + { + "id" "320138" + "plane" "(1329 -3389 83) (1326 -3389 83) (1326 -3167 83)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[1 0 0 23.0059] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320137" + "plane" "(1326 -3389 80) (1329 -3389 80) (1329 -3167 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[1 0 0 39.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320136" + "plane" "(1329 -3389 80) (1326 -3389 80) (1326 -3389 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320135" + "plane" "(1326 -3167 80) (1329 -3167 80) (1329 -3167 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320134" + "plane" "(1326 -3389 80) (1326 -3167 80) (1326 -3167 83)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[0 0 -1 55] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320133" + "plane" "(1329 -3167 80) (1329 -3389 80) (1329 -3389 83)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[0 0 -1 55] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600283" + side + { + "id" "320144" + "plane" "(1329 -3386 144) (1326 -3386 144) (1326 -3167 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 48] 0.25" + "vaxis" "[1 0 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320143" + "plane" "(1326 -3386 141) (1329 -3386 141) (1329 -3167 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[-1 0 0 -1.00586] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320142" + "plane" "(1329 -3386 141) (1326 -3386 141) (1326 -3386 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320141" + "plane" "(1326 -3167 141) (1329 -3167 141) (1329 -3167 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -56] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320140" + "plane" "(1326 -3386 141) (1326 -3167 141) (1326 -3167 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320139" + "plane" "(1329 -3167 141) (1329 -3386 141) (1329 -3386 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 39] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600284" + side + { + "id" "320150" + "plane" "(1344 -3164 147) (1344 -3392 147) (1312 -3392 147)" + "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" "320149" + "plane" "(1312 -3167 144) (1312 -3389 144) (1344 -3389 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 -1 0 -228.004] 0.15" + "vaxis" "[1 0 0 20.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320148" + "plane" "(1344 -3389 144) (1312 -3389 144) (1312 -3392 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320147" + "plane" "(1344 -3164 147) (1312 -3164 147) (1312 -3167 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" "320146" + "plane" "(1312 -3389 144) (1312 -3167 144) (1312 -3164 147)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 -1 0 -228.004] 0.15" + "vaxis" "[0 0 -1 147.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320145" + "plane" "(1344 -3392 147) (1344 -3164 147) (1344 -3167 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 -1 0 -228.004] 0.15" + "vaxis" "[0 0 1 147.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600285" + side + { + "id" "320156" + "plane" "(1344 -3167 144) (1312 -3167 144) (1312 -3164 147)" + "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" "320155" + "plane" "(1312 -3167 19) (1344 -3167 19) (1344 -3164 16)" + "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" "320154" + "plane" "(1312 -3167 19) (1312 -3167 144) (1344 -3167 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493.33] 0.15" + "vaxis" "[1 0 0 20.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320153" + "plane" "(1312 -3164 147) (1312 -3164 16) (1344 -3164 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" "320152" + "plane" "(1312 -3164 16) (1312 -3164 147) (1312 -3167 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493.33] 0.15" + "vaxis" "[0 -1 0 -228.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320151" + "plane" "(1344 -3164 147) (1344 -3164 16) (1344 -3167 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493.33] 0.15" + "vaxis" "[0 1 0 11.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600286" + side + { + "id" "320162" + "plane" "(1344 -3389 144) (1344 -3392 147) (1312 -3392 147)" + "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" "320161" + "plane" "(1312 -3389 19) (1312 -3392 16) (1344 -3392 16)" + "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" "320160" + "plane" "(1344 -3392 16) (1312 -3392 16) (1312 -3392 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320159" + "plane" "(1344 -3389 144) (1312 -3389 144) (1312 -3389 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -1250.67] 0.15" + "vaxis" "[1 0 0 20.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320158" + "plane" "(1312 -3392 16) (1312 -3389 19) (1312 -3389 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -1250.67] 0.15" + "vaxis" "[0 1 0 251.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320157" + "plane" "(1344 -3392 147) (1344 -3389 144) (1344 -3389 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -1250.67] 0.15" + "vaxis" "[0 -1 0 -212.008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2600287" + side + { + "id" "320168" + "plane" "(1344 -3167 19) (1344 -3389 19) (1312 -3389 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 735.998] 0.15" + "vaxis" "[1 0 0 20.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320167" + "plane" "(1312 -3164 16) (1312 -3392 16) (1344 -3392 16)" + "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" "320166" + "plane" "(1344 -3392 16) (1312 -3392 16) (1312 -3389 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320165" + "plane" "(1344 -3167 19) (1312 -3167 19) (1312 -3164 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" "320164" + "plane" "(1312 -3392 16) (1312 -3164 16) (1312 -3167 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 735.998] 0.15" + "vaxis" "[0 0 1 123.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "320163" + "plane" "(1344 -3389 19) (1344 -3167 19) (1344 -3164 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 735.998] 0.15" + "vaxis" "[0 0 -1 171.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +hidden +{ + entity + { + "id" "2573835" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1932 -3424 157.723" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2573839" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "50" + "rendercolor" "190 253 128" + "renderfx" "0" + "rendermode" "9" + "scale" "0.8" + "spawnflags" "0" + "origin" "1932 -3421 157.723" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2573842" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "190 253 128 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1932 -3386 157.723" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2573895" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1344 -3020 163.712" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2573899" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "50" + "rendercolor" "190 253 128" + "renderfx" "0" + "rendermode" "9" + "scale" "0.8" + "spawnflags" "0" + "origin" "1347 -3020 163.712" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2573902" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "190 253 128 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1382 -3020 163.712" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2577656" + "classname" "func_brush" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "InputFilter" "0" + "invert_exclusion" "0" + "origin" "1720 -3160 20" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "solidbsp" "0" + "Solidity" "1" + "spawnflags" "2" + "StartDisabled" "0" + "vrad_brush_cast_shadows" "0" + solid + { + "id" "2577473" + side + { + "id" "312248" + "plane" "(2096 -3216 24) (2095 -3217 24) (1926 -3217 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -23] 0.125" + "vaxis" "[0 -1 0 -7.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312247" + "plane" "(2095 -3217 16) (2096 -3216 16) (1926 -3216 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" "312246" + "plane" "(1926 -3217 24) (1926 -3217 16) (1926 -3216 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -111] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312245" + "plane" "(2095 -3217 16) (2095 -3217 24) (2096 -3216 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" "312244" + "plane" "(1926 -3216 24) (1926 -3216 16) (2096 -3216 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" "312243" + "plane" "(1926 -3217 16) (1926 -3217 24) (2095 -3217 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -23] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577479" + side + { + "id" "312254" + "plane" "(2096 -3424 24) (2095 -3423 24) (2095 -3217 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -39] 0.125" + "vaxis" "[-1 0 0 55.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312253" + "plane" "(2096 -3216 16) (2095 -3217 16) (2095 -3423 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" "312252" + "plane" "(2095 -3423 16) (2095 -3217 16) (2095 -3217 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -39] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312251" + "plane" "(2096 -3424 24) (2096 -3216 24) (2096 -3216 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" "312250" + "plane" "(2095 -3217 16) (2096 -3216 16) (2096 -3216 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" "312249" + "plane" "(2095 -3423 24) (2096 -3424 24) (2096 -3424 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" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577487" + side + { + "id" "312260" + "plane" "(1776 -3423 24) (1808 -3423 24) (1808 -3424 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 72.9921] 0.125" + "vaxis" "[0 1 0 55.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312259" + "plane" "(1776 -3424 16) (1808 -3424 16) (1808 -3423 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" "312258" + "plane" "(1776 -3423 24) (1776 -3424 24) (1776 -3424 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -47.0039] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312257" + "plane" "(1808 -3423 16) (1808 -3424 16) (1808 -3424 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 192.991] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312256" + "plane" "(1808 -3423 24) (1776 -3423 24) (1776 -3423 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 72.9922] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312255" + "plane" "(1808 -3424 16) (1776 -3424 16) (1776 -3424 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" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577485" + side + { + "id" "312266" + "plane" "(2095 -3423 24) (2096 -3424 24) (2052 -3424 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 72.9921] 0.125" + "vaxis" "[0 1 0 55.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312265" + "plane" "(2096 -3424 16) (2095 -3423 16) (2052 -3423 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" "312264" + "plane" "(2052 -3424 24) (2052 -3424 16) (2052 -3423 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -207.004] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312263" + "plane" "(2096 -3424 16) (2096 -3424 24) (2095 -3423 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" "312262" + "plane" "(2052 -3423 24) (2052 -3423 16) (2095 -3423 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 72.9922] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312261" + "plane" "(2052 -3424 16) (2052 -3424 24) (2096 -3424 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" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577430" + side + { + "id" "312272" + "plane" "(1520 -3216 24) (1796 -3216 24) (1796 -3217 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -23] 0.125" + "vaxis" "[0 -1 0 -7.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312271" + "plane" "(1519 -3217 16) (1796 -3217 16) (1796 -3216 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" "312270" + "plane" "(1520 -3216 24) (1519 -3217 24) (1519 -3217 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" "312269" + "plane" "(1796 -3216 16) (1796 -3217 16) (1796 -3217 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 144.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312268" + "plane" "(1796 -3216 24) (1520 -3216 24) (1520 -3216 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" "312267" + "plane" "(1796 -3217 16) (1519 -3217 16) (1519 -3217 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -23] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577432" + side + { + "id" "312278" + "plane" "(1519 -3057 24) (1520 -3057 24) (1520 -3216 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -38.998] 0.125" + "vaxis" "[-1 0 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312277" + "plane" "(1519 -3217 16) (1520 -3216 16) (1520 -3057 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" "312276" + "plane" "(1519 -3057 24) (1519 -3217 24) (1519 -3217 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -38.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312275" + "plane" "(1520 -3057 16) (1520 -3216 16) (1520 -3216 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" "312274" + "plane" "(1520 -3057 24) (1519 -3057 24) (1519 -3057 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 217] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312273" + "plane" "(1520 -3216 16) (1519 -3217 16) (1519 -3217 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" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577494" + side + { + "id" "312284" + "plane" "(1520 -2896 24) (1520 -2928 24) (1519 -2928 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -103.007] 0.125" + "vaxis" "[-1 0 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312283" + "plane" "(1520 -2928 16) (1520 -2896 16) (1519 -2897 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" "312282" + "plane" "(1519 -2928 24) (1519 -2928 16) (1519 -2897 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -103.007] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312281" + "plane" "(1520 -2928 16) (1520 -2928 24) (1520 -2896 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" "312280" + "plane" "(1519 -2897 24) (1519 -2897 16) (1520 -2896 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" "312279" + "plane" "(1519 -2928 16) (1519 -2928 24) (1520 -2928 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 160.992] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577496" + side + { + "id" "312290" + "plane" "(1520 -2896 24) (1519 -2897 24) (1344 -2897 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -87.0078] 0.125" + "vaxis" "[0 -1 0 -7.99609] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312289" + "plane" "(1519 -2897 16) (1520 -2896 16) (1344 -2896 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" "312288" + "plane" "(1344 -2897 24) (1344 -2897 16) (1344 -2896 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" "312287" + "plane" "(1519 -2897 16) (1519 -2897 24) (1520 -2896 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" "312286" + "plane" "(1344 -2896 24) (1344 -2896 16) (1520 -2896 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" "312285" + "plane" "(1344 -2897 16) (1344 -2897 24) (1519 -2897 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -87.0078] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577500" + side + { + "id" "312296" + "plane" "(1344 -3144 24) (1345 -3144 24) (1345 -3164 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 56.9902] 0.125" + "vaxis" "[1 0 0 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312295" + "plane" "(1344 -3164 16) (1345 -3164 16) (1345 -3144 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" "312294" + "plane" "(1344 -3144 24) (1344 -3164 24) (1344 -3164 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" "312293" + "plane" "(1345 -3144 16) (1345 -3164 16) (1345 -3164 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 56.9902] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312292" + "plane" "(1345 -3144 24) (1344 -3144 24) (1344 -3144 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -255.006] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312291" + "plane" "(1345 -3164 16) (1344 -3164 16) (1344 -3164 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -175.004] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577501" + side + { + "id" "312302" + "plane" "(1345 -3392 24) (1345 -3423 24) (1344 -3424 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 56.9902] 0.125" + "vaxis" "[1 0 0 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312301" + "plane" "(1345 -3423 16) (1345 -3392 16) (1344 -3392 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" "312300" + "plane" "(1344 -3424 24) (1344 -3424 16) (1344 -3392 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" "312299" + "plane" "(1345 -3423 16) (1345 -3423 24) (1345 -3392 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 56.9902] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312298" + "plane" "(1344 -3392 24) (1344 -3392 16) (1345 -3392 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.006] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312297" + "plane" "(1344 -3424 16) (1344 -3424 24) (1345 -3423 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" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2577502" + side + { + "id" "312308" + "plane" "(1548 -3423 24) (1548 -3424 24) (1344 -3424 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 72.9921] 0.125" + "vaxis" "[0 1 0 55.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312307" + "plane" "(1548 -3424 16) (1548 -3423 16) (1345 -3423 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" "312306" + "plane" "(1344 -3424 24) (1344 -3424 16) (1345 -3423 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" "312305" + "plane" "(1548 -3424 16) (1548 -3424 24) (1548 -3423 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 224.991] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312304" + "plane" "(1345 -3423 24) (1345 -3423 16) (1548 -3423 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 72.9922] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "312303" + "plane" "(1344 -3424 16) (1344 -3424 24) (1548 -3424 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" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11768]" + } +} +hidden +{ + entity + { + "id" "2549273" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3629 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2549272" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2549281" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2804 -3631 14" + editor + { + "color" "200 253 0" + "groupid" "2549272" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2549284" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2793 -3631 11" + editor + { + "color" "200 253 0" + "groupid" "2549272" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2549358" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3501 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2549357" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2549366" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2802 -3503 14" + editor + { + "color" "200 253 0" + "groupid" "2549357" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2549369" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2793 -3503 11" + editor + { + "color" "200 253 0" + "groupid" "2549357" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2549409" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3245 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2549408" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2549417" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2804 -3247 14" + editor + { + "color" "200 253 0" + "groupid" "2549408" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2549420" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2792 -3247 14" + editor + { + "color" "200 253 0" + "groupid" "2549408" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2549426" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3373 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2549425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2549434" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2804 -3375 14" + editor + { + "color" "200 253 0" + "groupid" "2549425" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2549437" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2796 -3375 14" + editor + { + "color" "200 253 0" + "groupid" "2549425" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2549511" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2989 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2549510" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2549519" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2805 -2991 11" + editor + { + "color" "200 253 0" + "groupid" "2549510" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2549522" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2793 -2991 11" + editor + { + "color" "200 253 0" + "groupid" "2549510" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2549528" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -3117 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2549527" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2549536" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2804 -3119 14" + editor + { + "color" "200 253 0" + "groupid" "2549527" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2549539" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2792 -3119 14" + editor + { + "color" "200 253 0" + "groupid" "2549527" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2549579" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2733 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2549578" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2549587" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2805 -2735 11" + editor + { + "color" "200 253 0" + "groupid" "2549578" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2549590" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2793 -2735 11" + editor + { + "color" "200 253 0" + "groupid" "2549578" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2549596" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2861 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2549595" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2549604" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2805 -2863 11" + editor + { + "color" "200 253 0" + "groupid" "2549595" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2549607" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2793 -2863 11" + editor + { + "color" "200 253 0" + "groupid" "2549595" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2549647" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/railings/shuttle_railing_001_glass.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2806 -2605 -8.00001" + editor + { + "color" "200 253 0" + "groupid" "2549646" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "2549655" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "150" + "rendercolor" "255 255 206" + "renderfx" "0" + "rendermode" "9" + "scale" ".8" + "spawnflags" "0" + "origin" "2804 -2607 14" + editor + { + "color" "200 253 0" + "groupid" "2549646" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2549658" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "255 255 206 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2796 -2607 14" + editor + { + "color" "200 253 0" + "groupid" "2549646" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2523986" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_exit_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1199 -2000 125.612" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2523998" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_exit_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-482 -2896 150.825" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2524006" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_exit_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2155 -2895.75 131.468" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2524011" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_exit_left_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-533 -2012 106" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524063" + "classname" "prop_static" + "angles" "45 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-3148 -2009 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524117" + "classname" "prop_static" + "angles" "45 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-2617 -2009 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524153" + "classname" "prop_static" + "angles" "45 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-700.282 -2009 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524161" + "classname" "prop_static" + "angles" "45 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-382 -1940 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524193" + "classname" "prop_static" + "angles" "45 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "25 -1940 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524209" + "classname" "prop_static" + "angles" "45 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "444 -1940 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524233" + "classname" "prop_static" + "angles" "45 270 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-91.3008 -2886 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524253" + "classname" "prop_static" + "angles" "45 270 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-529 -2886 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524273" + "classname" "prop_static" + "angles" "45 270 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-1211.26 -2886 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524281" + "classname" "prop_static" + "angles" "45 270 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-2200 -2886 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524313" + "classname" "prop_static" + "angles" "45 270 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-3184 -2889 188" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 5000]" + } + } +} +hidden +{ + entity + { + "id" "2524329" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1944 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524376" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1087 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524388" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-257 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524423" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1064 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524450" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-936 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524481" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-872 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524504" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-840 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524523" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "617 -2091 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524562" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "378 -2112 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524585" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "378 -2106 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524593" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_electric_panel/nuke_electric_panel01.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "81 -1930 66" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "2524649" + "classname" "prop_static" + "angles" "0 180 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "253 242 251" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1074 -7548 -31.8433" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524680" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "45 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524719" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "112 -2827 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524731" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-144 -2827 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524739" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-400 -2827 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524747" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-656 -2827 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524755" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-912 -2827 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524763" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1168 -2827 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524771" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1296 -2827 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524802" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1360 -2827 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524839" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1366 -2827 198.031" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524851" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1366 -2833 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524863" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1366 -2849 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524886" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1366 -2881 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524901" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1072 -2849 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524905" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1072 -2833 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524909" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1072 -2881 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524957" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2833 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524961" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2849 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2524965" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2881 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525006" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "35 -2849 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525010" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "35 -2833 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525014" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "35 -2881 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525030" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "310 -2849 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525034" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "310 -2833 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525038" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "310 -2881 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525054" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_wall_support_low.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "33 -2884 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525122" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_wall_support_low.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-245.529 -2883 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525138" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_wall_support_low.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1074.02 -2884 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525162" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_wall_support_low.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1366.28 -2884 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525206" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_wall_support_low.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "312.281 -2885 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525222" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "378 -2624 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525249" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "368 -2827 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2525276" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "109 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "2525288" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "367 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "2525296" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-147 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "2525320" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-403 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "2525340" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-659 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "2525368" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-915 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "2525392" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1171 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "2525412" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1299 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "2525443" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1363 -2827 204" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +entity +{ + "id" "2525472" + "classname" "func_detail" + solid + { + "id" "2525470" + side + { + "id" "307929" + "plane" "(-1361.88 -2828 245) (366.125 -2828 245) (366.125 -2829 245)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307928" + "plane" "(-1361.88 -2829 230) (366.125 -2829 230) (366.125 -2828 230)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307927" + "plane" "(-1361.88 -2828 245) (-1361.88 -2829 245) (-1361.88 -2829 230)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307926" + "plane" "(366.125 -2828 230) (366.125 -2829 230) (366.125 -2829 245)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307925" + "plane" "(366.125 -2828 245) (-1361.88 -2828 245) (-1361.88 -2828 230)" + "material" "DE_NUKE/HR_NUKE/HR_HANGING_WIRES_001" + "uaxis" "[1 0 0 85] 0.125" + "vaxis" "[0 0 -1 36] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307924" + "plane" "(366.125 -2829 230) (-1361.88 -2829 230) (-1361.88 -2829 245)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "2525492" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "46.3931 -2827 244.323" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2525496" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "46.3931 -2817.73 251.304" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525501" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "46.3431 -2816 251" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2525516" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "237.83 -2827 244.323" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2525520" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "237.83 -2817.73 251.304" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525525" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "237.78 -2816 251" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2525552" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-146.355 -2827 244.323" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2525556" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-146.355 -2817.73 251.304" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525561" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-146.405 -2816 251" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2525636" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-341.022 -2827 244.323" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2525640" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-341.022 -2817.73 251.304" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525645" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-341.072 -2816 251" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2525684" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-529.544 -2827 244.323" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2525688" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-529.544 -2817.73 251.304" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525693" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-529.594 -2816 251" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2525708" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-722.566 -2827 244.323" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2525712" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-722.566 -2817.73 251.304" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525717" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-722.616 -2816 251" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2525744" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-914.299 -2827 244.323" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2525748" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-914.299 -2817.73 251.304" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525753" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-914.349 -2816 251" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2525768" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1106 -2827 244.323" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2525772" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-1106 -2817.73 251.304" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525777" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-1106.05 -2816 251" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2525804" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1299.02 -2827 244.323" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2525808" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-1299.02 -2817.73 251.304" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525813" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "249 255 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-1299.07 -2816 251" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2525863" + "classname" "func_detail" + solid + { + "id" "2525890" + side + { + "id" "307995" + "plane" "(-568 -2014 80) (-568 -2046 80) (-572 -2046 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 27] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307994" + "plane" "(-568 -2046 -24) (-568 -2014 -24) (-572 -2014 -20)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307993" + "plane" "(-568 -2014 -24) (-568 -2046 -24) (-568 -2046 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307992" + "plane" "(-568 -2046 -24) (-572 -2046 -20) (-572 -2046 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -31.9971] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307991" + "plane" "(-572 -2046 -20) (-572 -2014 -20) (-572 -2014 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -31.9951] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307990" + "plane" "(-568 -2014 80) (-572 -2014 76) (-572 -2014 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2525891" + side + { + "id" "308001" + "plane" "(-568 -2046 80) (-776 -2046 80) (-776 -2014 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 150] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308000" + "plane" "(-776 -2046 80) (-568 -2046 80) (-572 -2046 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -415.996] 0.125" + "vaxis" "[0 0 -1 150] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307999" + "plane" "(-572 -2014 76) (-572 -2046 76) (-568 -2046 80)" + "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" "307998" + "plane" "(-776 -2014 80) (-776 -2046 80) (-772 -2046 76)" + "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" "307997" + "plane" "(-772 -2014 76) (-772 -2046 76) (-572 -2046 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -416] 0.125" + "vaxis" "[0 -1 0 150] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307996" + "plane" "(-572 -2014 76) (-568 -2014 80) (-776 -2014 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2525892" + side + { + "id" "308007" + "plane" "(-572 -2044 76) (-572 -2044 -20) (-772 -2044 -20)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[1 0 0 880.64] 0.195313" + "vaxis" "[0 0 -1 405.333] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308006" + "plane" "(-572 -2030 -20) (-572 -2044 -20) (-572 -2044 76)" + "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" "308005" + "plane" "(-772 -2044 76) (-772 -2044 -20) (-772 -2030 -20)" + "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" "308004" + "plane" "(-572 -2044 76) (-772 -2044 76) (-772 -2030 76)" + "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" "308003" + "plane" "(-772 -2030 -20) (-772 -2044 -20) (-572 -2044 -20)" + "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" "308002" + "plane" "(-772 -2030 76) (-772 -2030 -20) (-572 -2030 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2525893" + side + { + "id" "308013" + "plane" "(-776 -2014 -24) (-776 -2046 -24) (-568 -2046 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308012" + "plane" "(-568 -2046 -24) (-776 -2046 -24) (-772 -2046 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -416] 0.125" + "vaxis" "[0 0 -1 150] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308011" + "plane" "(-568 -2014 -24) (-568 -2046 -24) (-572 -2046 -20)" + "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" "308010" + "plane" "(-772 -2046 -20) (-776 -2046 -24) (-776 -2014 -24)" + "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" "308009" + "plane" "(-572 -2046 -20) (-772 -2046 -20) (-772 -2014 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -416] 0.125" + "vaxis" "[0 -1 0 -457.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308008" + "plane" "(-776 -2014 -24) (-568 -2014 -24) (-572 -2014 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -416] 0.125" + "vaxis" "[0 0 1 454] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2525894" + side + { + "id" "308019" + "plane" "(-772 -2014 76) (-772 -2046 76) (-776 -2046 80)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 27] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308018" + "plane" "(-776 -2014 -24) (-776 -2046 -24) (-772 -2046 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308017" + "plane" "(-776 -2046 -24) (-776 -2014 -24) (-776 -2014 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308016" + "plane" "(-776 -2046 80) (-772 -2046 76) (-772 -2046 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -159.994] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308015" + "plane" "(-772 -2014 -20) (-772 -2046 -20) (-772 -2046 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "308014" + "plane" "(-776 -2014 -24) (-772 -2014 -20) (-772 -2014 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "2525982" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-674 -2035 36.2223" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2526002" + "classname" "prop_static" + "angles" "0 269.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-623 -2041.99 21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "2526006" + "classname" "prop_physics_multiplayer" + "angles" "0 269.5 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "4373" + "origin" "-623.437 -2044.99 21" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "2526010" + "classname" "prop_physics_multiplayer" + "angles" "0 270.5 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "4373" + "origin" "-723.821 -2045 21" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "2526014" + "classname" "prop_static" + "angles" "0 270.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-723.437 -2041.99 21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "2526110" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_64.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-175 -2877 201.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "2526126" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_64.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-97 -2877 201.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "2526166" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-103 -2873 409.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526170" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-103 -2881 425.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526190" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-175 -2872 409.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526194" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-175 -2880 425.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526222" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_64.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-956 -2877 201.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "2526226" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01_64.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-878 -2877 201.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "2526230" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-884 -2873 410" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526234" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-956 -2872 410" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526238" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-884 -2881 426" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526242" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-956 -2880 426" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526374" + "classname" "prop_static" + "angles" "0 0 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-881 -2912 435" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526398" + "classname" "prop_static" + "angles" "0 0 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-956 -2912 435" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526418" + "classname" "prop_static" + "angles" "0 0 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-169.274 -2912 435" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526422" + "classname" "prop_static" + "angles" "0 0 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-94.274 -2912 435" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526458" + "classname" "prop_static" + "angles" "0 0 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2160.92 -2912 435" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2526462" + "classname" "prop_static" + "angles" "0 0 90" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "195 195 195" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2085.92 -2912 435" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2511772" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2052 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2511803" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2715 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2511819" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2843 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2511850" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2020 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2511874" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2511890" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2889 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2511918" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2875 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2511957" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3324 -2889 197.497" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2511993" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3324 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512013" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2012 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512030" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3356 -2896 503.659" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512058" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3356 -2384 503.659" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512085" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3356 -2128 503.659" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512120" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "372 -2872 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512140" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "372 -2360 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512167" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "372 -2104 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512194" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "372 -2040 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512232" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "422 -2106 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512304" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-520 -1937 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512308" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001b_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-520 -1921 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512328" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-7 -1937 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512332" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001b_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-7 -1921 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512344" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_curve_long.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "557 -1885 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512408" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_curve_short_outer.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "531 -1895 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512428" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "505 -1937 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512468" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001b_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "505 -1922.82 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512492" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001b_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "531 -1872 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512496" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_frame.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "558 -1873 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512552" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001b_32_noframe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "531 -1895 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2512568" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_001a_16_noframe.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "557 -1885 458" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2512590" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-487 -2341 -24" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "2512605" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-1264 -2344 -24" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "2512746" + "classname" "func_detail" + solid + { + "id" "1252860" + side + { + "id" "307809" + "plane" "(-3384 -2736 -24) (-3384 -2896 -24) (-3368 -2896 -24)" + "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" "307808" + "plane" "(-3384 -2896 -16) (-3384 -2896 -24) (-3384 -2736 -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" "307807" + "plane" "(-3368 -2736 -24) (-3368 -2896 -24) (-3368 -2896 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307806" + "plane" "(-3368 -2896 -16) (-3368 -2896 -24) (-3384 -2896 -24)" + "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" "307805" + "plane" "(-3384 -2896 -16) (-3384 -2736 -16) (-3368 -2736 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307804" + "plane" "(-3384 -2736 -16) (-3384 -2736 -24) (-3368 -2736 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2511659" + side + { + "id" "307815" + "plane" "(-3374 -2740 -16) (-3374 -2892 -16) (-3374 -2892 104)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 6.73682] 0.59375" + "vaxis" "[0 0 -1 221.867] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307814" + "plane" "(-3376 -2740 -16) (-3376 -2892 -16) (-3374 -2892 -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" "307813" + "plane" "(-3376 -2892 104) (-3376 -2892 -16) (-3376 -2740 -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" "307812" + "plane" "(-3374 -2892 104) (-3374 -2892 -16) (-3376 -2892 -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" "307811" + "plane" "(-3376 -2892 104) (-3376 -2740 104) (-3374 -2740 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" + } + side + { + "id" "307810" + "plane" "(-3376 -2740 104) (-3376 -2740 -16) (-3374 -2740 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "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" "2511660" + side + { + "id" "307821" + "plane" "(-3368 -2736 104) (-3368 -2736 -16) (-3368 -2740 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307820" + "plane" "(-3384 -2736 -16) (-3384 -2740 -16) (-3368 -2740 -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" "307819" + "plane" "(-3384 -2740 -16) (-3384 -2736 -16) (-3384 -2736 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307818" + "plane" "(-3384 -2736 104) (-3384 -2736 -16) (-3368 -2736 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307817" + "plane" "(-3384 -2740 104) (-3384 -2736 104) (-3368 -2736 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" + } + side + { + "id" "307816" + "plane" "(-3368 -2740 104) (-3368 -2740 -16) (-3384 -2740 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2511669" + side + { + "id" "307827" + "plane" "(-3374 -2740 108) (-3374 -2892 108) (-3374 -2892 187)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 6.73682] 0.59375" + "vaxis" "[0 0 -1 93.9747] 0.308594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307826" + "plane" "(-3376 -2892 187) (-3376 -2892 108) (-3376 -2740 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307825" + "plane" "(-3374 -2892 187) (-3374 -2892 108) (-3376 -2892 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307824" + "plane" "(-3376 -2740 108) (-3376 -2892 108) (-3374 -2892 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307823" + "plane" "(-3376 -2892 187) (-3376 -2740 187) (-3374 -2740 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307822" + "plane" "(-3376 -2740 187) (-3376 -2740 108) (-3374 -2740 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "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" "2511654" + side + { + "id" "307833" + "plane" "(-3368 -2892 104) (-3368 -2892 108) (-3368 -2005 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307832" + "plane" "(-3384 -2005 104) (-3384 -2005 108) (-3384 -2892 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307831" + "plane" "(-3368 -2005 104) (-3368 -2005 108) (-3384 -2005 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307830" + "plane" "(-3384 -2892 104) (-3384 -2892 108) (-3368 -2892 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307829" + "plane" "(-3384 -2005 104) (-3384 -2892 104) (-3368 -2892 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307828" + "plane" "(-3384 -2892 108) (-3384 -2005 108) (-3368 -2005 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2511670" + side + { + "id" "307839" + "plane" "(-3368 -2736 187) (-3368 -2736 108) (-3368 -2740 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307838" + "plane" "(-3384 -2740 108) (-3384 -2736 108) (-3384 -2736 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307837" + "plane" "(-3384 -2736 187) (-3384 -2736 108) (-3368 -2736 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307836" + "plane" "(-3384 -2736 108) (-3384 -2740 108) (-3368 -2740 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307835" + "plane" "(-3384 -2740 187) (-3384 -2736 187) (-3368 -2736 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307834" + "plane" "(-3368 -2740 187) (-3368 -2740 108) (-3384 -2740 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2511707" + side + { + "id" "307845" + "plane" "(-3368 -2140 -16) (-3368 -2144 -16) (-3368 -2144 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307844" + "plane" "(-3384 -2140 -16) (-3384 -2144 -16) (-3368 -2144 -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" "307843" + "plane" "(-3384 -2144 -16) (-3384 -2140 -16) (-3384 -2140 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307842" + "plane" "(-3384 -2144 104) (-3384 -2140 104) (-3368 -2140 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" + } + side + { + "id" "307841" + "plane" "(-3368 -2144 104) (-3368 -2144 -16) (-3384 -2144 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307840" + "plane" "(-3384 -2140 104) (-3384 -2140 -16) (-3368 -2140 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1252964" + side + { + "id" "307851" + "plane" "(-3384 -2000 -24) (-3384 -2144 -24) (-3368 -2144 -24)" + "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" "307850" + "plane" "(-3384 -2144 -24) (-3384 -2000 -24) (-3384 -2000 -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" "307849" + "plane" "(-3368 -2000 -16) (-3368 -2000 -24) (-3368 -2144 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307848" + "plane" "(-3384 -2000 -16) (-3384 -2000 -24) (-3368 -2000 -24)" + "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" "307847" + "plane" "(-3384 -2144 -16) (-3384 -2000 -16) (-3368 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307846" + "plane" "(-3368 -2144 -16) (-3368 -2144 -24) (-3384 -2144 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2511705" + side + { + "id" "307857" + "plane" "(-3368 -2140 108) (-3368 -2144 108) (-3368 -2144 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307856" + "plane" "(-3384 -2140 187) (-3384 -2144 187) (-3384 -2144 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307855" + "plane" "(-3384 -2144 187) (-3384 -2140 187) (-3368 -2140 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307854" + "plane" "(-3368 -2144 187) (-3368 -2144 108) (-3384 -2144 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307853" + "plane" "(-3368 -2144 108) (-3368 -2140 108) (-3384 -2140 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307852" + "plane" "(-3384 -2140 187) (-3384 -2140 108) (-3368 -2140 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2511711" + side + { + "id" "307863" + "plane" "(-3374 -2005 108) (-3374 -2140 108) (-3374 -2140 187)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 218.074] 0.527344" + "vaxis" "[0 0 -1 93.9747] 0.308594" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307862" + "plane" "(-3376 -2140 108) (-3376 -2005 108) (-3376 -2005 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307861" + "plane" "(-3376 -2140 187) (-3376 -2005 187) (-3374 -2005 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307860" + "plane" "(-3374 -2140 108) (-3374 -2005 108) (-3376 -2005 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307859" + "plane" "(-3374 -2140 187) (-3374 -2140 108) (-3376 -2140 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307858" + "plane" "(-3376 -2005 187) (-3376 -2005 108) (-3374 -2005 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "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" "2511708" + side + { + "id" "307869" + "plane" "(-3374 -2005 -16) (-3374 -2140 -16) (-3374 -2140 104)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 218.074] 0.527344" + "vaxis" "[0 0 -1 221.867] 0.46875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307868" + "plane" "(-3376 -2005 -16) (-3376 -2140 -16) (-3374 -2140 -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" "307867" + "plane" "(-3376 -2140 -16) (-3376 -2005 -16) (-3376 -2005 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307866" + "plane" "(-3376 -2140 104) (-3376 -2005 104) (-3374 -2005 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" + } + side + { + "id" "307865" + "plane" "(-3376 -2005 104) (-3376 -2005 -16) (-3374 -2005 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307864" + "plane" "(-3374 -2140 104) (-3374 -2140 -16) (-3376 -2140 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "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" "2511685" + side + { + "id" "307875" + "plane" "(-3374 -2144 108) (-3374 -2736 108) (-3374 -2736 187)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 159.135] 2.3125" + "vaxis" "[0 0 -1 64.7711] 0.324219" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307874" + "plane" "(-3376 -2736 187) (-3376 -2736 108) (-3376 -2144 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307873" + "plane" "(-3374 -2736 187) (-3374 -2736 108) (-3376 -2736 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307872" + "plane" "(-3374 -2736 108) (-3374 -2144 108) (-3376 -2144 108)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307871" + "plane" "(-3376 -2736 187) (-3376 -2144 187) (-3374 -2144 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307870" + "plane" "(-3376 -2144 187) (-3376 -2144 108) (-3374 -2144 108)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13768]" + } +} +entity +{ + "id" "2512776" + "classname" "func_detail" + solid + { + "id" "2511632" + side + { + "id" "307881" + "plane" "(-3368 -2892 192) (-3368 -2896 192) (-3384 -2896 192)" + "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" "307880" + "plane" "(-3368 -2892 -16) (-3368 -2896 -16) (-3368 -2896 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307879" + "plane" "(-3384 -2896 192) (-3368 -2896 192) (-3368 -2896 -16)" + "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" "307878" + "plane" "(-3384 -2892 -16) (-3384 -2896 -16) (-3368 -2896 -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" "307877" + "plane" "(-3384 -2892 192) (-3384 -2896 192) (-3384 -2896 -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" "307876" + "plane" "(-3384 -2892 -16) (-3368 -2892 -16) (-3368 -2892 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13268]" + } +} +entity +{ + "id" "2512782" + "classname" "func_detail" + solid + { + "id" "2511712" + side + { + "id" "307887" + "plane" "(-3368 -2000 187) (-3368 -2000 -16) (-3368 -2005 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307886" + "plane" "(-3384 -2000 187) (-3384 -2000 -16) (-3368 -2000 -16)" + "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" "307885" + "plane" "(-3384 -2005 -16) (-3384 -2000 -16) (-3384 -2000 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307884" + "plane" "(-3384 -2005 187) (-3384 -2000 187) (-3368 -2000 187)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307883" + "plane" "(-3368 -2005 -16) (-3368 -2000 -16) (-3384 -2000 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307882" + "plane" "(-3368 -2005 187) (-3368 -2005 -16) (-3384 -2005 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" + } +} +entity +{ + "id" "2512790" + "classname" "func_detail" + solid + { + "id" "2511679" + side + { + "id" "307893" + "plane" "(-3384 -2892 192) (-3384 -2000 192) (-3368 -2000 192)" + "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" "307892" + "plane" "(-3368 -2892 187) (-3368 -2892 192) (-3368 -2000 192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "307891" + "plane" "(-3368 -2000 187) (-3368 -2000 192) (-3384 -2000 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" "307890" + "plane" "(-3384 -2000 187) (-3384 -2000 192) (-3384 -2892 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" "307889" + "plane" "(-3384 -2892 187) (-3384 -2892 192) (-3368 -2892 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" "307888" + "plane" "(-3368 -2892 187) (-3368 -2000 187) (-3384 -2000 187)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +hidden +{ + entity + { + "id" "2512812" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "449 -2603 0.249998" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2512835" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "448 -2515 0.249998" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2512855" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1031 -2024 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2512859" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1119 -2025 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2512895" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2162 -2867 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2512899" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2250 -2868 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2512919" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-568 -2870 -1.90735e-06" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2512923" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-480 -2869 -1.90735e-06" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2512943" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-825 -3145 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2512947" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_train/hr_t/blue_floor_mat/blue_floor_mat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-737 -3144 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2498668" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2216 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2500066" + "classname" "prop_static" + "angles" "0 135 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-282.346 -1888.14 -23.75" + editor + { + "color" "166 191 0" + "groupid" "4631742" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2500487" + "classname" "prop_static" + "angles" "0 135 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_8.mdl" + "renderamt" "255" + "rendercolor" "65 65 65" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-259 -1869 -23.75" + editor + { + "color" "166 191 0" + "groupid" "4631725" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "2500535" + "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/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "216 33 65" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-814 -2016 34.9246" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "2500539" + "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/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-814 -2012 62.0643" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "2500607" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/rollup_door_001/rollup_door_001_frame_176x192x8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2896 -1996 -21.4444" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +hidden +{ + entity + { + "id" "2500659" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/rollup_door_001/rollup_door_001_mechanism_192.mdl" + "renderamt" "255" + "rendercolor" "185 185 185" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2897 -2003 168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 -14268]" + } + } +} +hidden +{ + entity + { + "id" "2483219" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1660 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483235" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1939 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483251" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2218 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483267" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2494 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483287" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2774 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483299" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3052 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483315" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2448 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483339" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-545 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483359" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-253 -1941 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483375" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3 -1941 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483399" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "259 -1941 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483467" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "515 -1941 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2483550" + "classname" "prop_static" + "angles" "0 270 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-382 -1926 210.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2483554" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-382 -1935 217" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2483586" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-254 -1926 210.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2483590" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-254 -1935 217" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2483631" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-127 -1926 210.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2483635" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-127 -1935 217" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2483649" + "classname" "prop_static" + "angles" "0 270 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "0 -1926 210.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2483653" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "0 -1935 217" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2483667" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "130 -1926 210.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2483671" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "130 -1935 217" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2483685" + "classname" "prop_static" + "angles" "0 270 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "259 -1926 210.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2483689" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "259 -1935 217" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2483703" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "386 -1926 210.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2483707" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "386 -1935 217" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2483721" + "classname" "prop_static" + "angles" "0 270 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "518 -1926 210.019" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2483725" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "518 -1935 217" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2483901" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-76.2357 -1936 154.065" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2483905" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-40 270 0" + "pitch" "-38.4983" + "spawnflags" "0" + "style" "0" + "origin" "-76.1747 -1945 147.084" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2483964" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-38.4983 270 0" + "pitch" "-38.4983" + "spawnflags" "0" + "style" "0" + "origin" "100 -1945 147.019" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2483969" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "99.9391 -1936 154" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +hidden +{ + entity + { + "id" "2484004" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-515 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2484044" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-515 -1941 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2484316" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-825 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2484352" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1081 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2484622" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-515 -1947 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2484685" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-515 -1979 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2484708" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-515 -1995 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2484779" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1353 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2484815" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1357 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2484966" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "515 -1941 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485020" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "579 -1941 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485091" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "617 -1941 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485127" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "617 -1947 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485162" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "617 -2105 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485186" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "617 -2075 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485244" + "classname" "prop_static" + "angles" "0 90 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "483 -2105 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485269" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-394 -1867 208" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485302" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac01.mdl" + "renderamt" "255" + "rendercolor" "196 196 196" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "43 -1867 208" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485390" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_ridged_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-513 -1876 496" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485426" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-517 -1876 484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485454" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-517 -1885 484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485458" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_ridged_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-513.173 -1885 496" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485490" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-517 -1876 228" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485533" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-517 -1885 228" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485537" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_512.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "11 -1876 500" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485569" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_512.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "11 -1885 500" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485601" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_512.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "523 -1876 500" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485609" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_512.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "523 -1885 500" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485633" + "classname" "prop_static" + "angles" "0 0 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_small.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "527 -1876 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485673" + "classname" "prop_static" + "angles" "0 0 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "527 -1885 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485689" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-419 -1882 359" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485739" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-419 -1874 375" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485763" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-385 -1874 375" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485767" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-385 -1882 359" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485807" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "95 -1882 359" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485811" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_straight_128.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "61 -1882 359" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485815" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "61 -1874 375" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485819" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001d_corner_ridged_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "95 -1874 375" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485871" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-517 -1894 484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485875" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_ridged_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-513.173 -1894 496" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485879" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-517 -1894 228" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485883" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_512.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "11 -1894 500" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485887" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_512.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "523 -1894 500" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485891" + "classname" "prop_static" + "angles" "0 0 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "527 -1894 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485895" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_256.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-517 -1904 484" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485899" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_ridged_large.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-513.173 -1904 496" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485903" + "classname" "prop_static" + "angles" "90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_32.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-517 -1904 228" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485907" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_512.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "11 -1904 500" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485911" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_straight_512.mdl" + "renderamt" "255" + "rendercolor" "201 201 201" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "523 -1904 500" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485915" + "classname" "prop_static" + "angles" "0 0 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_corner_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "527 -1904 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485947" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2180 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2485983" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3362 -2459 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2486019" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3307 -2892 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2486043" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2751 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2486059" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2472 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2486079" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1637 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2486095" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1359 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2486135" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-801 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2486147" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-545 -2890 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2486163" + "classname" "prop_static" + "angles" "0 270 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-233 -2891 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2486189" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-1575 -2012 137" + editor + { + "color" "175 136 0" + "groupid" "2486972" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2486194" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1575 -2003 130.157" + editor + { + "color" "175 136 0" + "groupid" "2486972" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2486538" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1551.92 -2074 40" + editor + { + "color" "175 136 0" + "groupid" "2486628" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2486543" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 30" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1459 -2074 40" + editor + { + "color" "175 136 0" + "groupid" "2486628" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2486593" + "classname" "func_detail" + solid + { + "id" "2486405" + side + { + "id" "306766" + "plane" "(-1400 -2002 -24) (-1616 -2002 -24) (-1616 -2074 -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" + } + side + { + "id" "306765" + "plane" "(-1616 -2002 -8) (-1616 -2002 -24) (-1400 -2002 -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" "306764" + "plane" "(-1400 -2074 -8) (-1400 -2074 -24) (-1616 -2074 -24)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306763" + "plane" "(-1400 -2002 -8) (-1400 -2002 -24) (-1400 -2074 -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" "306762" + "plane" "(-1616 -2074 -8) (-1616 -2074 -24) (-1616 -2002 -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" "306761" + "plane" "(-1400 -2074 -8) (-1616 -2074 -8) (-1616 -2002 -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" + } + editor + { + "color" "175 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486488" + side + { + "id" "306772" + "plane" "(-1616 -2002 91) (-1616 -2002 -8) (-1400 -2002 -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" "306771" + "plane" "(-1400 -2002 91) (-1400 -2002 -8) (-1400 -2074 -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" "306770" + "plane" "(-1616 -2074 -8) (-1616 -2002 -8) (-1616 -2002 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306769" + "plane" "(-1616 -2024 91) (-1616 -2002 91) (-1400 -2002 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306768" + "plane" "(-1400 -2002 -8) (-1616 -2002 -8) (-1616 -2074 -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" "306767" + "plane" "(-1400 -2074 -8) (-1616 -2074 -8) (-1616 -2024 91)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[1 0 0 493.037] 0.210938" + "vaxis" "[0 0 -1 470.626] 0.193359" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "175 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486319" + side + { + "id" "306778" + "plane" "(-1400 -2074 128) (-1616 -2074 128) (-1616 -2002 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" "306777" + "plane" "(-1400 -2002 91) (-1400 -2002 128) (-1616 -2002 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" "306776" + "plane" "(-1616 -2074 91) (-1616 -2074 128) (-1400 -2074 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306775" + "plane" "(-1400 -2074 91) (-1400 -2074 128) (-1400 -2002 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" "306774" + "plane" "(-1616 -2002 91) (-1616 -2002 128) (-1616 -2074 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" "306773" + "plane" "(-1400 -2002 91) (-1616 -2002 91) (-1616 -2074 91)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 -163] 0.125" + "vaxis" "[0 -1 0 -429] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "175 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486243" + side + { + "id" "306784" + "plane" "(-1616 -2074 128) (-1624 -2074 128) (-1624 -2002 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" "306783" + "plane" "(-1616 -2002 -24) (-1624 -2002 -24) (-1624 -2074 -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" + } + side + { + "id" "306782" + "plane" "(-1624 -2074 -24) (-1624 -2002 -24) (-1624 -2002 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" "306781" + "plane" "(-1624 -2002 -24) (-1616 -2002 -24) (-1616 -2002 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" "306780" + "plane" "(-1616 -2074 -24) (-1624 -2074 -24) (-1624 -2074 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306779" + "plane" "(-1616 -2002 -24) (-1616 -2074 -24) (-1616 -2074 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "175 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486229" + side + { + "id" "306790" + "plane" "(-1400 -2002 128) (-1392 -2002 128) (-1392 -2074 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" "306789" + "plane" "(-1400 -2074 -24) (-1392 -2074 -24) (-1392 -2002 -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" + } + side + { + "id" "306788" + "plane" "(-1392 -2002 -24) (-1392 -2074 -24) (-1392 -2074 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306787" + "plane" "(-1400 -2002 -24) (-1392 -2002 -24) (-1392 -2002 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" "306786" + "plane" "(-1392 -2074 -24) (-1400 -2074 -24) (-1400 -2074 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306785" + "plane" "(-1400 -2074 -24) (-1400 -2002 -24) (-1400 -2002 128)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "175 136 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "175 136 0" + "groupid" "2486628" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +hidden +{ + entity + { + "id" "2486669" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1.19434 -2896 159" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2486673" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "-1.19434 -2890.75 160.39" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2486676" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1.19434 -2869.75 160.39" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2486681" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-25.4493 -2896 159" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2486685" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "-25.4493 -2891 159" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2486688" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-25.4493 -2870 159" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2487051" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1784.16 -1999 -22" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2487055" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-1784.16 -2009.24 -15.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2487109" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "903 -8129 -39" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2487117" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1767 -8006 -35" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2487133" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2750 -8295.56 -28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2487141" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2747 -8083 -27" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2471318" + "classname" "func_detail" + solid + { + "id" "2471319" + side + { + "id" "306629" + "plane" "(-2520 -2429.82 152) (-2520 -2252.82 152) (-2512 -2252.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -43.4214] 0.25" + "vaxis" "[0 -1 0 20.71] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306628" + "plane" "(-2520 -2252.82 -24) (-2520 -2429.82 -24) (-2512 -2429.82 -24)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -27.4214] 0.25" + "vaxis" "[0 -1 0 4.70999] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306627" + "plane" "(-2520 -2429.82 -24) (-2520 -2252.82 -24) (-2520 -2252.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306626" + "plane" "(-2512 -2252.82 -24) (-2512 -2429.82 -24) (-2512 -2429.82 152)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 750.74] 0.172855" + "vaxis" "[0 0 -1 442.182] 0.34375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306625" + "plane" "(-2520 -2252.82 -24) (-2512 -2252.82 -24) (-2512 -2252.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -27.4214] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306624" + "plane" "(-2512 -2429.82 -24) (-2520 -2429.82 -24) (-2520 -2429.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -27.4214] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2471320" + side + { + "id" "306638" + "plane" "(-2527.14 -2243.81 -24) (-2523.14 -2252.82 -24) (-2507.14 -2252.82 -24)" + "material" "CONCRETE/CONCRETEWALL_HANDLING01A_BLUE" + "uaxis" "[0 -1 0 -67.272] 0.25" + "vaxis" "[-1 0 0 475.594] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306637" + "plane" "(-2503.14 -2243.82 152) (-2507.14 -2252.82 152) (-2523.14 -2252.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20.71] 0.25" + "vaxis" "[-1 0 0 11.4209] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306636" + "plane" "(-2503.14 -2243.82 -24) (-2507.14 -2252.82 -24) (-2507.14 -2252.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306635" + "plane" "(-2523.14 -2252.82 -24) (-2527.15 -2243.81 -24) (-2527.14 -2243.81 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306634" + "plane" "(-2527.14 -2243.8 -24) (-2523.15 -2235.82 -24) (-2523.16 -2235.83 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306633" + "plane" "(-2523.15 -2235.82 -24) (-2515.15 -2232.82 -24) (-2515.15 -2232.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306632" + "plane" "(-2515.15 -2232.82 -24) (-2507.14 -2235.82 -24) (-2507.14 -2235.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306631" + "plane" "(-2507.14 -2235.82 -24) (-2503.14 -2243.82 -24) (-2503.14 -2243.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306630" + "plane" "(-2507.14 -2252.82 -24) (-2523.14 -2252.82 -24) (-2523.14 -2252.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2471321" + side + { + "id" "306647" + "plane" "(-2523.14 -2429.82 -24) (-2527.14 -2438.82 -24) (-2523.14 -2446.82 -24)" + "material" "CONCRETE/CONCRETEWALL_HANDLING01A_BLUE" + "uaxis" "[0 1 0 239.303] 0.25" + "vaxis" "[1 0 0 -211.267] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306646" + "plane" "(-2527.14 -2438.82 152) (-2523.14 -2429.82 152) (-2507.14 -2429.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52.71] 0.25" + "vaxis" "[1 0 0 -43.4209] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306645" + "plane" "(-2527.14 -2438.82 -24) (-2523.14 -2429.82 -24) (-2523.14 -2429.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306644" + "plane" "(-2507.14 -2429.82 -24) (-2503.14 -2438.82 -24) (-2503.14 -2438.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306643" + "plane" "(-2503.14 -2438.82 -24) (-2507.14 -2446.82 -24) (-2507.14 -2446.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306642" + "plane" "(-2507.14 -2446.81 -24) (-2515.14 -2449.82 -24) (-2515.14 -2449.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306641" + "plane" "(-2515.14 -2449.82 -24) (-2523.14 -2446.82 -24) (-2523.14 -2446.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306640" + "plane" "(-2523.14 -2446.83 -24) (-2527.14 -2438.82 -24) (-2527.14 -2438.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306639" + "plane" "(-2523.14 -2429.82 -24) (-2507.14 -2429.82 -24) (-2507.14 -2429.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "225 174 0" + "groupid" "2471295" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "2471794" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2762 -2006 -24" + editor + { + "color" "100 213 0" + "groupid" "2471793" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2471799" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2616.43 -2004 -21.4444" + editor + { + "color" "100 213 0" + "groupid" "2471793" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2471803" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2616.43 -2013 -14.4635" + editor + { + "color" "100 213 0" + "groupid" "2471793" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2471854" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3040 -2006 -24" + editor + { + "color" "100 213 0" + "groupid" "2471853" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2471929" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3318 -2006 -24" + editor + { + "color" "100 213 0" + "groupid" "2471928" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2471934" + "classname" "prop_static" + "angles" "0 270 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-3172.43 -2004 -21.4444" + editor + { + "color" "100 213 0" + "groupid" "2471928" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2471938" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-3172.43 -2013 -14.4635" + editor + { + "color" "100 213 0" + "groupid" "2471928" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2471973" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2496 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2471989" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2496 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472001" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2763 -2128 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472005" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2763 -2640 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472009" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2763 -2384 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472013" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2763 -2000 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472113" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3040 -2128 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472117" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3040 -2640 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472121" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3040 -2384 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472125" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3040 -2000 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472161" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3319 -2128 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472165" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3319 -2640 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472169" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3319 -2384 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472173" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3319 -2000 523" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472213" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2762 -2890 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472249" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3040 -2890 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472277" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3318 -2890 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2472314" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2638 -2885 -13.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2472319" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2638 -2895.24 -20" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2472350" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2900.04 -2885.76 -14.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2472355" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2900.04 -2896 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2472368" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-3189.49 -2885.76 -14.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2472373" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-3189.49 -2896 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +hidden +{ + entity + { + "id" "2472386" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3008 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472405" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3008 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472421" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3264 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2472464" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3264 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2472485" + "classname" "light_environment" + "_ambient" "101 139 182 350" + "_ambientHDR" "-1 -1 -1 1" + "_AmbientScaleHDR" "1" + "_light" "255 240 206 510" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "angles" "-41 129 0" + "pitch" "-41" + "SunSpreadAngle" "0.5" + "origin" "2215.13 -3896 329.356" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[7000 16000]" + } +} +entity +{ + "id" "2472487" + "classname" "env_cascade_light" + "angles" "-41 129 0" + "color" "157 169 172" + "maxshadowdistance" "400" + "StartDisabled" "0" + "uselightenvangles" "1" + "origin" "2211.7 -3912 334.178" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[7000 -9768]" + } +} +entity +{ + "id" "2472489" + "classname" "env_fog_controller" + "angles" "0 0 0" + "farz" "-1" + "fogblend" "0" + "fogcolor" "97 142 191" + "fogcolor2" "255 255 255" + "fogdir" "1 0 0" + "fogenable" "1" + "fogend" "9000" + "fogmaxdensity" ".8" + "fogstart" "100" + "use_angles" "0" + "ZoomFogScale" "1" + "origin" "2214.97 -3928 340.793" + editor + { + "color" "255 255 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[7000 -6768]" + } +} +entity +{ + "id" "2472493" + "classname" "env_sun" + "angles" "-41 129 0" + "glowDistanceScale" "0.99" + "HDRColorScale" "1.0" + "material" "sprites/nuke_sunflare_001" + "overlaycolor" "214 170 69" + "overlaymaterial" "sprites/nuke_sunflare_001" + "overlaysize" "-1" + "pitch" "-41" + "rendercolor" "255 238 170" + "size" "32" + "use_angles" "1" + "origin" "2184.19 -3896 349.733" + editor + { + "color" "255 0 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[7000 -10268]" + } +} +entity +{ + "id" "2472503" + "classname" "env_wind" + "angles" "0 0 0" + "gustdirchange" "20" + "gustduration" "5" + "maxgust" "30" + "maxgustdelay" "10" + "maxwind" "25" + "mingust" "25" + "mingustdelay" "10" + "minwind" "20" + "origin" "2209.52 -3928 338.521" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[3500 14500]" + } +} +entity +{ + "id" "2472505" + "classname" "env_tonemap_controller" + "targetname" "tonemap_global" + "origin" "2182.9 -3912 348.992" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[7000 6500]" + } +} +entity +{ + "id" "2458199" + "classname" "func_detail" + solid + { + "id" "2458197" + side + { + "id" "306245" + "plane" "(-2496 -2000 560) (-520 -2000 560) (-520 -2056 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306244" + "plane" "(-2496 -2056 542) (-520 -2056 542) (-520 -2000 542)" + "material" "CEILING/HR_C/HR_CEILING_TILE_002B_COLOR" + "uaxis" "[1 0 0 -887.998] 0.125" + "vaxis" "[0 1 0 255] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306243" + "plane" "(-2496 -2000 560) (-2496 -2056 560) (-2496 -2056 542)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306242" + "plane" "(-520 -2000 542) (-520 -2056 542) (-520 -2056 560)" + "material" "CEILING/HR_C/HR_CEILING_TILE_002B_COLOR" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -81] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306241" + "plane" "(-520 -2000 560) (-2496 -2000 560) (-2496 -2000 542)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306240" + "plane" "(-520 -2056 542) (-2496 -2056 542) (-2496 -2056 560)" + "material" "CEILING/HR_C/HR_CEILING_TILE_002B_COLOR" + "uaxis" "[1 0 0 -887.998] 0.125" + "vaxis" "[0 0 -1 -81] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2458311" + "classname" "func_detail" + solid + { + "id" "2458312" + side + { + "id" "306257" + "plane" "(-2512 -2840 560) (-0.000127792 -2840 560) (-0.000127792 -2896 560)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306256" + "plane" "(-2512 -2896 542) (-0.000127792 -2896 542) (-0.000127792 -2840 542)" + "material" "CEILING/HR_C/HR_CEILING_TILE_002B_COLOR" + "uaxis" "[1 0 0 -887.998] 0.125" + "vaxis" "[0 1 0 255] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306255" + "plane" "(-2512 -2840 560) (-2512 -2896 560) (-2512 -2896 542)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306254" + "plane" "(-0.000127792 -2840 542) (-0.000127792 -2896 542) (-0.000127792 -2896 560)" + "material" "CEILING/HR_C/HR_CEILING_TILE_002B_COLOR" + "uaxis" "[0 -1 0 -1007] 0.125" + "vaxis" "[0 0 1 -185] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306253" + "plane" "(-0.000127792 -2840 560) (-2512 -2840 560) (-2512 -2840 542)" + "material" "CEILING/HR_C/HR_CEILING_TILE_002B_COLOR" + "uaxis" "[1 0 0 -887.998] 0.125" + "vaxis" "[0 0 1 -176.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306252" + "plane" "(-0.000127792 -2896 542) (-2512 -2896 542) (-2512 -2896 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2458556" + "classname" "func_detail" + solid + { + "id" "1301931" + side + { + "id" "306263" + "plane" "(-820 -2262 76) (-816 -2262 80) (-816 -2410 80)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 27] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306262" + "plane" "(-816 -2410 -24) (-816 -2262 -24) (-820 -2262 -20)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306261" + "plane" "(-816 -2262 -24) (-816 -2410 -24) (-816 -2410 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306260" + "plane" "(-816 -2262 80) (-820 -2262 76) (-820 -2262 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -287.996] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306259" + "plane" "(-816 -2410 -24) (-820 -2410 -20) (-820 -2410 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306258" + "plane" "(-820 -2410 -20) (-820 -2262 -20) (-820 -2262 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -31.9951] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "217 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1301949" + side + { + "id" "306269" + "plane" "(-816 -2440 80) (-1024 -2440 80) (-1024 -2262 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 150] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306268" + "plane" "(-820 -2262 76) (-816 -2262 80) (-1024 -2262 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -415.996] 0.125" + "vaxis" "[0 0 -1 150] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306267" + "plane" "(-1024 -2440 80) (-816 -2440 80) (-820 -2440 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306266" + "plane" "(-820 -2440 76) (-816 -2440 80) (-816 -2262 80)" + "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" "306265" + "plane" "(-1020 -2262 76) (-1024 -2262 80) (-1024 -2440 80)" + "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" "306264" + "plane" "(-820 -2262 76) (-1020 -2262 76) (-1020 -2440 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -416] 0.125" + "vaxis" "[0 -1 0 150] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "217 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1301932" + side + { + "id" "306275" + "plane" "(-1020 -2267 76) (-1020 -2267 -20) (-820 -2267 -20)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[1 0 0 102.4] 0.195313" + "vaxis" "[0 0 -1 405.333] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306274" + "plane" "(-820 -2408 76) (-820 -2408 -20) (-1020 -2408 -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" "306273" + "plane" "(-820 -2267 76) (-820 -2267 -20) (-820 -2408 -20)" + "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" "306272" + "plane" "(-1020 -2408 76) (-1020 -2408 -20) (-1020 -2267 -20)" + "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" "306271" + "plane" "(-820 -2408 76) (-1020 -2408 76) (-1020 -2267 76)" + "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" "306270" + "plane" "(-820 -2267 -20) (-1020 -2267 -20) (-1020 -2408 -20)" + "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" "217 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1301930" + side + { + "id" "306281" + "plane" "(-816 -2262 -24) (-1024 -2262 -24) (-1024 -2410 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306280" + "plane" "(-1024 -2262 -24) (-816 -2262 -24) (-820 -2262 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -416] 0.125" + "vaxis" "[0 0 -1 213.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306279" + "plane" "(-816 -2410 -24) (-1024 -2410 -24) (-1020 -2410 -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" "306278" + "plane" "(-820 -2262 -20) (-816 -2262 -24) (-816 -2410 -24)" + "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" "306277" + "plane" "(-1020 -2410 -20) (-1024 -2410 -24) (-1024 -2262 -24)" + "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" "306276" + "plane" "(-820 -2410 -20) (-1020 -2410 -20) (-1020 -2262 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -416] 0.125" + "vaxis" "[0 1 0 37.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "217 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1301950" + side + { + "id" "306287" + "plane" "(-1020 -2410 76) (-1024 -2410 80) (-1024 -2262 80)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 27] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306286" + "plane" "(-1024 -2262 -24) (-1024 -2410 -24) (-1020 -2410 -20)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306285" + "plane" "(-1024 -2410 -24) (-1024 -2262 -24) (-1024 -2262 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306284" + "plane" "(-1024 -2262 -24) (-1020 -2262 -20) (-1020 -2262 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -159.998] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306283" + "plane" "(-1024 -2410 80) (-1020 -2410 76) (-1020 -2410 -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" "306282" + "plane" "(-1020 -2262 -20) (-1020 -2410 -20) (-1020 -2410 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -303.994] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "217 214 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "217 214 0" + "groupid" "3468695" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "2458684" + "classname" "prop_static" + "angles" "0 270 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2067.42 -1999 -22" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2458688" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2067.42 -2007.86 -14.4635" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2458698" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 40" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "39 -2341 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2458743" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 40" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-78 -2340 65" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2458758" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-64 -2394 25.9925" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2458773" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-64 -2303 25.9925" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2458798" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-906 -2245 29.7353" + editor + { + "color" "217 214 0" + "groupid" "3468640" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2458821" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 40" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1356 -2341 55.422" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2458831" + "classname" "light" + "_constant_attn" "30" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "147 221 225 10" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-1444 -2340 56.5322" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2459033" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-556 -2568 -13.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2459038" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-556 -2578.24 -20" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2459119" + "classname" "func_detail" + solid + { + "id" "2459117" + side + { + "id" "306542" + "plane" "(-144 -2744 118) (-144 -2854 118) (-149 -2854 118)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[0 -1 0 -484.041] 0.214844" + "vaxis" "[-1 0 0 -181.526] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306541" + "plane" "(-144 -2854 8) (-144 -2744 8) (-149 -2744 8)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[0 -1 0 -484.041] 0.214844" + "vaxis" "[1 0 0 181.526] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306540" + "plane" "(-144 -2744 8) (-144 -2854 8) (-144 -2854 118)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -56] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306539" + "plane" "(-149 -2854 8) (-149 -2744 8) (-149 -2744 118)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[0 -1 0 -484.042] 0.214844" + "vaxis" "[0 0 -1 37.236] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306538" + "plane" "(-144 -2854 8) (-149 -2854 8) (-149 -2854 118)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[1 0 0 181.54] 0.214844" + "vaxis" "[0 0 -1 37.236] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306537" + "plane" "(-149 -2744 8) (-144 -2744 8) (-144 -2744 118)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON4" + "uaxis" "[-1 0 0 330.488] 0.214844" + "vaxis" "[0 0 -1 37.236] 0.214844" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 13500]" + } +} +hidden +{ + entity + { + "id" "2459269" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-312 -2896 157" + editor + { + "color" "155 192 0" + "groupid" "6104537" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2459273" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "-312 -2891 157" + editor + { + "color" "155 192 0" + "groupid" "6104537" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2459276" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-312 -2870 157" + editor + { + "color" "155 192 0" + "groupid" "6104537" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2459372" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2338.43 -2004 -22" + editor + { + "color" "100 213 0" + "groupid" "2471777" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2459376" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2338.43 -2013 -15.0191" + editor + { + "color" "100 213 0" + "groupid" "2471777" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2459413" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2399.56 -2896.24 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2459417" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2399.56 -2886 -14.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2459440" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-2001.18 -2896.24 -21" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2459444" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-2001.18 -2886 -14.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2459540" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2377 -2896 138.631" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2459544" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "-2377 -2891 138.631" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2459547" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "-2377 -2870 138.631" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2459576" + "classname" "prop_static" + "angles" "0 90 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-340.905 -2897 3" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "2459580" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-340.905 -2887.73 9.9809" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2459585" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-340.955 -2881.31 13.6771" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2459616" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "474.625 -2630.17 0.239845" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2459620" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "408.185 -2664.1 0.239845" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2459624" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "329.799 -2666.94 0.239841" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2459628" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "275.264 -2604.27 0.239845" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2459632" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "270 -2481 0.239845" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2446214" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "902 -7364 -30.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2446226" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-353.643 -8349.72 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446298" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2446234" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-324 -8374 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446298" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446246" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-324 -8325 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446298" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446258" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-381 -8374 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446298" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446270" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-380 -8326 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446298" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446321" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-328 -7109.64 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446320" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446325" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-385 -7109.64 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446320" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446329" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-384 -7061.64 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446320" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446333" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-328 -7060.64 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446320" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446337" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-357.643 -7085.35 -31.75" + editor + { + "color" "102 159 0" + "groupid" "2446320" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2446366" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "515 -8042 -27.0265" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446378" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "399 -8042 -27.0054" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446386" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "399 -7542 -28.0666" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446398" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "515 -7542 -27.4568" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446410" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "923 -7214 -28.813" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446422" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "923 -8463 -28.6959" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446434" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "461 -8003 -28" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2446450" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "461 -7580 -28" + editor + { + "color" "102 119 0" + "groupid" "5682228" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2446568" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1218 -6994.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2446641" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1215 -6965 -29.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2446653" + "classname" "prop_static" + "angles" "0 273 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "177 177 177" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1324 -6828 -31.8433" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "2446694" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_8.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2373 -6994.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2446698" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2373 -6986.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2446702" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2389 -6970.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2446707" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2349 -6970.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2446711" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2341 -6970.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2446715" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2370 -6965 -29.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +entity +{ + "id" "2447249" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1381 -6835 -34.753" + "BasisU" "1 -1.74846e-07 0" + "BasisV" "1.74846e-07 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1381 -6835 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2447554" + "classname" "func_detail" + solid + { + "id" "2447286" + side + { + "id" "306180" + "plane" "(1248 -6315 -31) (1248 -6176 -31) (1264 -6176 -31)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 220] 0.125" + "vaxis" "[1 0 0 -440] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306179" + "plane" "(1248 -6176 -32) (1248 -6315 -32) (1264 -6315 -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" "306178" + "plane" "(1248 -6315 -32) (1248 -6176 -32) (1248 -6176 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306177" + "plane" "(1264 -6176 -32) (1264 -6315 -32) (1264 -6315 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306176" + "plane" "(1248 -6176 -32) (1264 -6176 -32) (1264 -6176 -31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306175" + "plane" "(1264 -6315 -32) (1248 -6315 -32) (1248 -6315 -31)" + "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" "2447284" + side + { + "id" "306186" + "plane" "(1232 -6315 -24) (1232 -6176 -24) (1248 -6176 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 220] 0.125" + "vaxis" "[1 0 0 -586] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306185" + "plane" "(1232 -6176 -48) (1232 -6315 -48) (1248 -6315 -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" "306184" + "plane" "(1232 -6315 -48) (1232 -6176 -48) (1232 -6176 -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" "306183" + "plane" "(1248 -6176 -48) (1248 -6315 -48) (1248 -6315 -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" "306182" + "plane" "(1232 -6176 -48) (1248 -6176 -48) (1248 -6176 -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" "306181" + "plane" "(1248 -6315 -48) (1232 -6315 -48) (1232 -6315 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2447276" + side + { + "id" "306192" + "plane" "(1216 -6315 -16) (1216 -6176 -16) (1232 -6176 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 340] 0.125" + "vaxis" "[1 0 0 -500] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306191" + "plane" "(1216 -6176 -48) (1216 -6315 -48) (1232 -6315 -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" "306190" + "plane" "(1216 -6315 -48) (1216 -6176 -48) (1216 -6176 -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" "306189" + "plane" "(1232 -6176 -48) (1232 -6315 -48) (1232 -6315 -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" "306188" + "plane" "(1216 -6176 -48) (1232 -6176 -48) (1232 -6176 -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" "306187" + "plane" "(1232 -6315 -48) (1216 -6315 -48) (1216 -6315 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2447273" + side + { + "id" "306198" + "plane" "(1200 -6315 -9) (1200 -6176 -9) (1216 -6176 -9)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 420] 0.125" + "vaxis" "[1 0 0 -620] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306197" + "plane" "(1200 -6176 -48) (1200 -6315 -48) (1216 -6315 -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" "306196" + "plane" "(1200 -6315 -48) (1200 -6176 -48) (1200 -6176 -9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306195" + "plane" "(1216 -6176 -48) (1216 -6315 -48) (1216 -6315 -9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306194" + "plane" "(1200 -6176 -48) (1216 -6176 -48) (1216 -6176 -9)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306193" + "plane" "(1216 -6315 -48) (1200 -6315 -48) (1200 -6315 -9)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +hidden +{ + entity + { + "id" "2447583" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1162 -6218 0.250031" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2447587" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1162 -6106 0.250031" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2447825" + "classname" "prop_static" + "angles" "0 356 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1182 -5979 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +entity +{ + "id" "2435625" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1075 -7868 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1075 -7868 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2435641" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1069 -7470 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1069 -7470 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2435647" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1067 -7349 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1067 -7349 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "2435667" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1194 -6970.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2435671" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1186 -6970.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2435691" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1218 -6986.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2435766" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1234 -6970.78 -36.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2420318" + "classname" "prop_static" + "angles" "0 273 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2070 -6803 -31.8433" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "2420372" + "classname" "prop_static" + "angles" "0 94 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_station_wagon01.mdl" + "renderamt" "255" + "rendercolor" "6 26 12" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1874 -6816 -32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "2420486" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1455 -5987 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2420502" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1711 -5987 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2420518" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1967 -5987 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2420534" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2095 -5987 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2420569" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2112 -6003 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2420581" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2112 -6259 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421082" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1295 -6586 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421126" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1878 -6665 -30.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2421134" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2342 -6659 -31.7501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2421150" + "classname" "prop_static" + "angles" "0 165 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/foliage/tall_weeds_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2091 -6661 -29.819" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2421154" + "classname" "prop_static" + "angles" "0 165 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/foliage/tall_weeds_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2229 -6664 -29.819" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2421170" + "classname" "prop_static" + "angles" "0 161 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1447 -6650 -31.753" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2421184" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1287 -6586 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2421242" + "classname" "func_detail" + solid + { + "id" "2421240" + side + { + "id" "305958" + "plane" "(1288 -6609 -29) (1288 -6589 -29) (1308 -6609 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305957" + "plane" "(1288 -6589 -30) (1288 -6609 -30) (1308 -6609 -30)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305956" + "plane" "(1288 -6609 -30) (1288 -6589 -30) (1288 -6589 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305955" + "plane" "(1308 -6609 -30) (1288 -6609 -30) (1288 -6609 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305954" + "plane" "(1288 -6589 -30) (1308 -6609 -30) (1308 -6609 -29)" + "material" "GRASS/HR_GRASS/GRASS_B" + "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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +hidden +{ + entity + { + "id" "2421251" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2120 -6260 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421271" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2393 -6284 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421283" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2649 -6284 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421303" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2666 -6300 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421307" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2666 -6556 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421335" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2394 -6685 -28.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2421339" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2394 -6630 -28.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2421351" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1190 -6682 -28.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2421363" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2666 -6813 -31.7501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421379" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2666 -6941 -31.7501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421391" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2674 -7005 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421403" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "3202 -7029 -31.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2421438" + "classname" "prop_static" + "angles" "0 140.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_vehicles/bus01_2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-205 -6995 -31.3363" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 9500]" + } + } +} +hidden +{ + entity + { + "id" "2421454" + "classname" "prop_static" + "angles" "0 140.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_vehicles/bus01_2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-110 -7384 -31.3363" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 9500]" + } + } +} +hidden +{ + entity + { + "id" "2421466" + "classname" "prop_static" + "angles" "0 140.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_vehicles/bus01_2.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-27 -8005 -31.3363" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 9500]" + } + } +} +entity +{ + "id" "2421480" + "classname" "info_overlay" + "angles" "0 318.797 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-172 -7210 -32" + "BasisU" "0.777146 -0.62932 0" + "BasisV" "0.62932 0.777146 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_noparking_tiled" + "sides" "218418" + "StartU" "0" + "StartV" "1" + "uv0" "-82.5589 -83.9632 0" + "uv1" "-89.1659 90.5703 0" + "uv2" "82.5589 83.9632 0" + "uv3" "89.1659 -90.5703 0" + "origin" "-172 -7210 -32" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "2421534" + "classname" "info_overlay" + "angles" "0 317.949 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-40 -7319.63 -32" + "BasisU" "0.754709 -0.656059 0" + "BasisV" "0.656059 0.754709 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_noparking_tiled" + "sides" "218418" + "StartU" "0" + "StartV" "1" + "uv0" "-82.0243 -82.4551 0" + "uv1" "-85.0894 85.5201 0" + "uv2" "82.0243 82.4551 0" + "uv3" "85.0894 -85.5201 0" + "origin" "-40 -7319.63 -32.0001" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +hidden +{ + entity + { + "id" "2423475" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2694 -7002 -24.7501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2424118" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2694 -7972 -24.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2424251" + "classname" "prop_static" + "angles" "0 2 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1179 -6251 0.249985" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "2424275" + "classname" "prop_static" + "angles" "0 2 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1180 -6103 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "2424352" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1776 -7489 -29.1459" + editor + { + "color" "255 108 0" + "groupid" "5749968" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2424420" + "classname" "prop_static" + "angles" "0 3 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "12 9 45" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1938 -7398 -31.8433" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "2424675" + "classname" "prop_static" + "angles" "0 185 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "172 187 238" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1584 -8088 -34.753" + editor + { + "color" "125 238 0" + "groupid" "2424530" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "2424691" + "classname" "prop_static" + "angles" "0 182 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "11 40 27" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1961 -8030 -34.753" + editor + { + "color" "125 238 0" + "groupid" "2424530" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "2424695" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_station_wagon01.mdl" + "renderamt" "255" + "rendercolor" "152 183 151" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1578 -8204 -34.753" + editor + { + "color" "125 238 0" + "groupid" "2424530" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "2424710" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1768 -8135 -32.753" + editor + { + "color" "125 238 0" + "groupid" "2424709" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2409625" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1312 -3412 124" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "2409684" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1742 -1889 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "2409696" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1733 -2146 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "2409716" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1743 -1634 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "2409728" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1742 -1633 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "2409763" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1806 -1899 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "2409767" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1806 -1643 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "2409800" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1771 -2089 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2409820" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1769 -1984 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2409828" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1766 -1891 -33" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2409848" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1767 -1797 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2409883" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1764 -1736 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2409887" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1764 -1678 -34" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2409965" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "962 -4640 0.250114" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +entity +{ + "id" "2410312" + "classname" "func_detail" + solid + { + "id" "2302918" + side + { + "id" "305810" + "plane" "(528 -5091 10) (462 -5091 10) (462 -5043 10)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 -39.4668] 0.25" + "vaxis" "[0 1 0 183.996] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305809" + "plane" "(528 -5043 0) (462 -5043 0) (462 -5091 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[1 0 0 -23.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305808" + "plane" "(528 -5091 0) (462 -5091 0) (462 -5091 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -23.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305807" + "plane" "(462 -5043 0) (528 -5043 0) (528 -5043 10)" + "material" "CONCRETE/CONCRETE_INT_01" + "uaxis" "[1 0 0 -39.4668] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305806" + "plane" "(462 -5091 0) (462 -5043 0) (462 -5043 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305805" + "plane" "(528 -5043 0) (528 -5091 0) (528 -5091 10)" + "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" "121 254 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "121 254 0" + "groupid" "3536106" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2397613" + "classname" "func_detail" + solid + { + "id" "1633370" + side + { + "id" "305486" + "plane" "(-100 -6368 -16) (-88 -6368 -16) (-88 -6624 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 -40] 0.125" + "vaxis" "[1 0 0 -160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305485" + "plane" "(-100 -6624 -48) (-88 -6624 -48) (-88 -6368 -48)" + "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" "305484" + "plane" "(-100 -6368 -16) (-100 -6624 -16) (-100 -6624 -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" "305483" + "plane" "(-88 -6368 -48) (-88 -6624 -48) (-88 -6624 -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" "305482" + "plane" "(-88 -6368 -16) (-100 -6368 -16) (-100 -6368 -48)" + "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" "305481" + "plane" "(-88 -6624 -48) (-100 -6624 -48) (-100 -6624 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 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" "1633368" + side + { + "id" "305492" + "plane" "(-88 -6368 -8) (-76 -6368 -8) (-76 -6624 -8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 120] 0.125" + "vaxis" "[1 0 0 -240] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305491" + "plane" "(-88 -6624 -48) (-76 -6624 -48) (-76 -6368 -48)" + "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" "305490" + "plane" "(-88 -6368 -8) (-88 -6624 -8) (-88 -6624 -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" "305489" + "plane" "(-76 -6368 -48) (-76 -6624 -48) (-76 -6624 -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" "305488" + "plane" "(-76 -6368 -8) (-88 -6368 -8) (-88 -6368 -48)" + "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" "305487" + "plane" "(-76 -6624 -48) (-88 -6624 -48) (-88 -6624 -8)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1633372" + side + { + "id" "305498" + "plane" "(-112 -6368 -24) (-100 -6368 -24) (-100 -6624 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 -140] 0.125" + "vaxis" "[1 0 0 -50] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305497" + "plane" "(-112 -6624 -48) (-100 -6624 -48) (-100 -6368 -48)" + "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" "305496" + "plane" "(-112 -6368 -24) (-112 -6624 -24) (-112 -6624 -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" "305495" + "plane" "(-100 -6368 -48) (-100 -6624 -48) (-100 -6624 -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" "305494" + "plane" "(-100 -6368 -24) (-112 -6368 -24) (-112 -6368 -48)" + "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" "305493" + "plane" "(-100 -6624 -48) (-112 -6624 -48) (-112 -6624 -24)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1633374" + side + { + "id" "305504" + "plane" "(-124 -6368 -32) (-112 -6368 -32) (-112 -6624 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305503" + "plane" "(-124 -6624 -48) (-112 -6624 -48) (-112 -6368 -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" "305502" + "plane" "(-124 -6368 -32) (-124 -6624 -32) (-124 -6624 -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" "305501" + "plane" "(-112 -6368 -48) (-112 -6624 -48) (-112 -6624 -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" "305500" + "plane" "(-112 -6368 -32) (-124 -6368 -32) (-124 -6368 -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" "305499" + "plane" "(-112 -6624 -48) (-124 -6624 -48) (-124 -6624 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2397630" + "classname" "func_detail" + solid + { + "id" "2045440" + side + { + "id" "305510" + "plane" "(1416 -1744 8) (1532 -1744 8) (1532 -1768 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305509" + "plane" "(1416 -1768 0) (1532 -1768 0) (1532 -1744 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" "305508" + "plane" "(1416 -1744 8) (1416 -1768 8) (1416 -1768 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305507" + "plane" "(1532 -1744 0) (1532 -1768 0) (1532 -1768 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" "305506" + "plane" "(1532 -1744 8) (1416 -1744 8) (1416 -1744 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" "305505" + "plane" "(1532 -1768 0) (1416 -1768 0) (1416 -1768 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2397636" + "classname" "func_detail" + solid + { + "id" "2045404" + side + { + "id" "305516" + "plane" "(1532 -1410 0) (1548 -1410 0) (1548 -1744 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" "305515" + "plane" "(1532 -1744 -40) (1548 -1744 -40) (1548 -1410 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305514" + "plane" "(1532 -1410 0) (1532 -1744 0) (1532 -1744 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305513" + "plane" "(1548 -1410 -40) (1548 -1744 -40) (1548 -1744 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" "305512" + "plane" "(1548 -1410 0) (1532 -1410 0) (1532 -1410 -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" "305511" + "plane" "(1548 -1744 -40) (1532 -1744 -40) (1532 -1744 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "2397649" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1802 -1419 -15.9999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397653" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1803.17 -1415.05 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397702" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2058.17 -1413.05 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397706" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2057 -1417 -15.9999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397762" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2313 -1417 -15.9999" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397766" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2314.17 -1413.05 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397786" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2311 -1161 -15.7499" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397790" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2307.05 -1159.83 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397838" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2311 -1129 -15.7499" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397842" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2311 -1065 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397846" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/signs/sign_no_entry_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -1099 63.7643" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2397850" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2311 -1129 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397874" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2311 -1002 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2397901" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2311 -970 -15.5696" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +entity +{ + "id" "2397938" + "classname" "func_detail" + solid + { + "id" "298755" + side + { + "id" "305522" + "plane" "(312 -4688 160) (344 -4688 160) (318 -4654 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305521" + "plane" "(298 -4664 240) (318 -4654 240) (344 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00390625] 0.25" + "vaxis" "[-1 0 0 -0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305520" + "plane" "(298 -4664 160) (298 -4664 240) (312 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.393919 -0.919145 0 -7.03813] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305519" + "plane" "(344 -4688 160) (344 -4688 240) (318 -4654 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.640184 0.768221 0 -24.1017] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305518" + "plane" "(312 -4688 160) (312 -4688 240) (344 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 0.447213 0 12.9574] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305517" + "plane" "(318 -4654 160) (318 -4654 240) (298 -4664 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 -0.447214 0 -12.9574] 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" "298756" + side + { + "id" "305528" + "plane" "(344 -4688 160) (384 -4688 160) (336 -4640 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305527" + "plane" "(318 -4654 240) (336 -4640 240) (384 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00390625] 0.25" + "vaxis" "[-1 0 0 -0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305526" + "plane" "(318 -4654 160) (318 -4654 240) (344 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.640184 -0.768221 0 24.1017] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305525" + "plane" "(384 -4688 160) (384 -4688 240) (336 -4640 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 22.7749] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305524" + "plane" "(344 -4688 160) (344 -4688 240) (384 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.747409 0.664364 0 -2.22286] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305523" + "plane" "(336 -4640 160) (336 -4640 240) (318 -4654 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.789352 -0.613941 0 4.06804] 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" "298757" + side + { + "id" "305534" + "plane" "(350 -4622 160) (336 -4640 160) (384 -4688 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305533" + "plane" "(336 -4640 240) (350 -4622 240) (384 -4648 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00390625] 0.25" + "vaxis" "[-1 0 0 -0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305532" + "plane" "(336 -4640 160) (336 -4640 240) (384 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -22.7749] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305531" + "plane" "(384 -4648 160) (384 -4648 240) (350 -4622 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.768221 0.640184 0 -35.4047] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305530" + "plane" "(384 -4688 160) (384 -4688 240) (384 -4648 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.664364 0.747409 0 2.22662] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305529" + "plane" "(350 -4622 160) (350 -4622 240) (336 -4640 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.613941 -0.789352 0 5.15294] 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" "298754" + side + { + "id" "305540" + "plane" "(280 -4688 160) (312 -4688 160) (298 -4664 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305539" + "plane" "(278 -4670 240) (298 -4664 240) (312 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00390625] 0.25" + "vaxis" "[-1 0 0 -0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305538" + "plane" "(278 -4670 160) (278 -4670 240) (280 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.124035 -0.992278 0 -22.0181] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305537" + "plane" "(312 -4688 160) (312 -4688 240) (298 -4664 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.393919 0.919145 0 7.03813] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305536" + "plane" "(280 -4688 160) (280 -4688 240) (312 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948683 0.316228 0 30.5205] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305535" + "plane" "(298 -4664 160) (298 -4664 240) (278 -4670 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.957826 -0.287348 0 -24.8979] 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" "298753" + side + { + "id" "305546" + "plane" "(256 -4688 160) (280 -4688 160) (278 -4670 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305545" + "plane" "(256 -4672 240) (278 -4670 240) (280 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00390625] 0.25" + "vaxis" "[-1 0 0 -0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305544" + "plane" "(256 -4672 160) (256 -4672 240) (256 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305543" + "plane" "(280 -4688 160) (280 -4688 240) (278 -4670 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.124035 0.992278 0 22.0181] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305542" + "plane" "(256 -4688 160) (256 -4688 240) (280 -4688 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.996546 0.0830454 0 50.8287] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305541" + "plane" "(278 -4670 160) (278 -4670 240) (256 -4672 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.995893 -0.0905357 0 -25.9249] 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" "298759" + side + { + "id" "305552" + "plane" "(366 -4582 160) (360 -4602 160) (384 -4624 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305551" + "plane" "(360 -4602 240) (366 -4582 240) (384 -4584 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00390625] 0.25" + "vaxis" "[-1 0 0 -0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305550" + "plane" "(360 -4602 160) (360 -4602 240) (384 -4624 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.919145 -0.393919 0 52.4008] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305549" + "plane" "(384 -4584 160) (384 -4584 240) (366 -4582 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992278 0.124035 0 -26.6285] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305548" + "plane" "(384 -4624 160) (384 -4624 240) (384 -4584 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.316228 0.948683 0 1.69621] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305547" + "plane" "(366 -4582 160) (366 -4582 240) (360 -4602 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.287348 -0.957826 0 14.1512] 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" "298758" + side + { + "id" "305558" + "plane" "(384 -4648 160) (384 -4624 160) (360 -4602 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305557" + "plane" "(350 -4622 240) (360 -4602 240) (384 -4624 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00390625] 0.25" + "vaxis" "[-1 0 0 -0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305556" + "plane" "(350 -4622 160) (350 -4622 240) (384 -4648 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.768221 -0.640184 0 35.4047] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305555" + "plane" "(384 -4624 160) (384 -4624 240) (360 -4602 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.919145 0.393919 0 -52.4008] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305554" + "plane" "(384 -4648 160) (384 -4648 240) (384 -4624 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.447214 0.894427 0 -25.2584] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305553" + "plane" "(360 -4602 160) (360 -4602 240) (350 -4622 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 -0.894427 0 25.2584] 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" "298760" + side + { + "id" "305564" + "plane" "(368 -4560 160) (366 -4582 160) (384 -4584 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305563" + "plane" "(366 -4582 240) (368 -4560 240) (384 -4560 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00390625] 0.25" + "vaxis" "[-1 0 0 -0.00390625] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305562" + "plane" "(366 -4582 160) (366 -4582 240) (384 -4584 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992278 -0.124035 0 26.6285] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305561" + "plane" "(384 -4560 160) (384 -4560 240) (368 -4560 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305560" + "plane" "(384 -4584 160) (384 -4584 240) (384 -4560 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.0830455 0.996546 0 -28.2348] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305559" + "plane" "(368 -4560 160) (368 -4560 240) (366 -4582 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.0905358 -0.995893 0 -4.10639] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2399028" + "classname" "func_detail" + solid + { + "id" "2397993" + side + { + "id" "305601" + "plane" "(816 -1040 -14) (2064 -1040 -14) (2064 -1396 -14)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305600" + "plane" "(816 -1396 -16) (2064 -1396 -16) (2064 -1040 -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" "305599" + "plane" "(816 -1040 -14) (816 -1396 -14) (816 -1396 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305598" + "plane" "(2064 -1040 -16) (2064 -1396 -16) (2064 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305597" + "plane" "(2064 -1040 -14) (816 -1040 -14) (816 -1040 -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" "305596" + "plane" "(2064 -1396 -16) (816 -1396 -16) (816 -1396 -14)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "2399392" + "classname" "func_detail" + solid + { + "id" "1549283" + side + { + "id" "305607" + "plane" "(1152 -2880 -40) (1152 -3176 -40) (1168 -3192 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305606" + "plane" "(1152 -3176 24) (1152 -3176 -40) (1152 -2880 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305605" + "plane" "(1168 -2880 24) (1168 -2880 -40) (1168 -3192 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305604" + "plane" "(1152 -2880 24) (1152 -2880 -40) (1168 -2880 -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" "305603" + "plane" "(1168 -3192 24) (1168 -3192 -40) (1152 -3176 -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" "305602" + "plane" "(1152 -3176 24) (1152 -2880 24) (1168 -2880 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1549284" + side + { + "id" "305613" + "plane" "(1152 -3176 32) (1152 -2880 32) (1168 -2880 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305612" + "plane" "(1152 -2880 24) (1152 -2880 32) (1152 -3176 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305611" + "plane" "(1168 -3192 24) (1168 -3192 32) (1168 -2880 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305610" + "plane" "(1168 -2880 24) (1168 -2880 32) (1152 -2880 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" "305609" + "plane" "(1152 -3176 24) (1152 -3176 32) (1168 -3192 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" "305608" + "plane" "(1152 -2880 24) (1152 -3176 24) (1168 -3192 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "2399437" + "classname" "func_detail" + solid + { + "id" "1380021" + side + { + "id" "305619" + "plane" "(1808 -3456 16) (1808 -3440 16) (2056 -3440 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 67] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305618" + "plane" "(1808 -3440 0) (1808 -3456 0) (2056 -3456 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" "305617" + "plane" "(1808 -3456 0) (1808 -3440 0) (1808 -3440 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 41] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305616" + "plane" "(2056 -3440 0) (2056 -3456 0) (2056 -3456 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 41] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305615" + "plane" "(2056 -3456 0) (1808 -3456 0) (1808 -3456 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 41] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305614" + "plane" "(1808 -3440 0) (2056 -3440 0) (2056 -3440 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "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" "1380022" + side + { + "id" "305625" + "plane" "(1808 -3440 16) (1808 -3424 16) (2056 -3424 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[1 0 0 832] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305624" + "plane" "(1808 -3424 0) (1808 -3440 0) (2056 -3440 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" "305623" + "plane" "(1808 -3440 0) (1808 -3424 0) (1808 -3424 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 41] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305622" + "plane" "(2056 -3424 0) (2056 -3440 0) (2056 -3440 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 41] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305621" + "plane" "(1808 -3424 0) (2056 -3424 0) (2056 -3424 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" "305620" + "plane" "(2056 -3440 0) (1808 -3440 0) (1808 -3440 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "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 + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "2399442" + "classname" "func_detail" + solid + { + "id" "1379901" + side + { + "id" "305631" + "plane" "(1776 -3504 8) (1776 -3456 8) (2056 -3456 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 67] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305630" + "plane" "(1776 -3456 0) (1776 -3504 0) (2056 -3504 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" "305629" + "plane" "(1776 -3504 0) (1776 -3456 0) (1776 -3456 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 41] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305628" + "plane" "(2056 -3456 0) (2056 -3504 0) (2056 -3504 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 41] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305627" + "plane" "(2056 -3504 0) (1776 -3504 0) (1776 -3504 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 41] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305626" + "plane" "(1776 -3456 0) (2056 -3456 0) (2056 -3456 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_001" + "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 + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "2399487" + "classname" "func_detail" + solid + { + "id" "2190486" + side + { + "id" "305649" + "plane" "(-144 -5536 32) (-144 -5488 32) (-128 -5488 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305648" + "plane" "(-144 -5488 0) (-144 -5536 0) (-128 -5536 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" "305647" + "plane" "(-144 -5536 0) (-144 -5488 0) (-144 -5488 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305646" + "plane" "(-128 -5488 0) (-128 -5536 0) (-128 -5536 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305645" + "plane" "(-144 -5488 0) (-128 -5488 0) (-128 -5488 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305644" + "plane" "(-128 -5536 0) (-144 -5536 0) (-144 -5536 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" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190488" + side + { + "id" "305655" + "plane" "(-224 -5552 0) (-224 -5568 0) (-144 -5568 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" "305654" + "plane" "(-224 -5568 32) (-224 -5568 0) (-224 -5552 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" "305653" + "plane" "(-144 -5552 0) (-144 -5568 0) (-144 -5568 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" "305652" + "plane" "(-144 -5568 32) (-144 -5568 0) (-224 -5568 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" "305651" + "plane" "(-224 -5568 32) (-224 -5552 25.6018) (-144 -5552 25.6012)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[0 0.928477 -0.371391 486] 0.125" + "vaxis" "[1 0 0 5] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305650" + "plane" "(-224 -5552 25.6016) (-224 -5552 0) (-144 -5552 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" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190494" + side + { + "id" "305661" + "plane" "(-224 -5536 0) (-224 -5552 0) (-144 -5552 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" "305660" + "plane" "(-224 -5552 0) (-224 -5536 0) (-224 -5536 19.2001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305659" + "plane" "(-144 -5536 0) (-144 -5552 0) (-144 -5552 25.5997)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305658" + "plane" "(-224 -5552 25.6018) (-224 -5536 19.2016) (-144 -5536 19.2013)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -0.928479 0.371392 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305657" + "plane" "(-224 -5536 19.2031) (-224 -5536 0) (-144 -5536 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" "305656" + "plane" "(-144 -5552 25.6016) (-144 -5552 0) (-224 -5552 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" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190493" + side + { + "id" "305666" + "plane" "(-224 -5488 0) (-224 -5504 0) (-144 -5504 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" "305665" + "plane" "(-224 -5504 0) (-224 -5488 0) (-224 -5504 6.40003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305664" + "plane" "(-144 -5488 0) (-144 -5504 0) (-144 -5504 6.40039)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305663" + "plane" "(-224 -5504 6.39857) (-224 -5488 -0) (-144 -5488 -0)" + "material" "CONCRETE/HR_C/HR_SIDEWALK_B" + "uaxis" "[0 0.928477 -0.371391 963] 0.125" + "vaxis" "[1 0 0 5] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305662" + "plane" "(-144 -5504 6.40234) (-144 -5504 0) (-224 -5504 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" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2190492" + side + { + "id" "305672" + "plane" "(-224 -5504 0) (-224 -5536 0) (-144 -5536 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" "305671" + "plane" "(-224 -5536 0) (-224 -5504 0) (-224 -5504 6.40003)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305670" + "plane" "(-144 -5504 0) (-144 -5536 0) (-144 -5536 19.2012)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305669" + "plane" "(-224 -5536 19.1992) (-224 -5504 6.39857) (-144 -5504 6.39827)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -0.928477 0.371391 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305668" + "plane" "(-144 -5536 19.2031) (-144 -5536 0) (-224 -5536 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" "305667" + "plane" "(-224 -5504 6.40234) (-224 -5504 0) (-144 -5504 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" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "223 152 0" + "groupid" "8436125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "2386703" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -3144 16.25" + editor + { + "color" "101 202 0" + "groupid" "2387017" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2386829" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1804 -3138 16.2457" + editor + { + "color" "101 202 0" + "groupid" "2387017" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2386869" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1924 -3140 16.2457" + editor + { + "color" "101 202 0" + "groupid" "2387017" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2387036" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1801 -3213 16.25" + editor + { + "color" "101 202 0" + "groupid" "2387035" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2387040" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1921 -3215 16.25" + editor + { + "color" "101 202 0" + "groupid" "2387035" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2387044" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1861 -3208 16.5" + editor + { + "color" "101 202 0" + "groupid" "2387035" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2387286" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2264 -3776 69.6394" + editor + { + "color" "102 103 0" + "groupid" "3977066" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2387294" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2171 -3750 108" + editor + { + "color" "102 103 0" + "groupid" "3977066" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2387303" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2171 -3772 39" + editor + { + "color" "102 103 0" + "groupid" "3977066" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2387307" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2171 -3776 108" + editor + { + "color" "102 103 0" + "groupid" "3977066" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2387311" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "2171 -3771 108" + editor + { + "color" "102 103 0" + "groupid" "3977066" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2387370" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1259 -5504 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2387378" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "1243 -5478 112" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2387391" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1243 -5504 112" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "2387395" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "1243 -5498.04 112" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "2387514" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2264 -3776 70" + editor + { + "color" "102 103 0" + "groupid" "3977066" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2387526" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1259 -5504 56" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "2387542" + "classname" "prop_static" + "angles" "0 122.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "621 -5097 -7.62943e-06" + editor + { + "color" "121 254 0" + "groupid" "3536257" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "2387688" + "classname" "func_detail" + solid + { + "id" "4749305" + side + { + "id" "346762" + "plane" "(-672 -4000 160) (400 -4000 160) (400 -3984 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[-1 0 0 -110] 0.25" + "vaxis" "[0 -1 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346761" + "plane" "(400 -3984 164) (400 -3984 160) (400 -4000 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" "346760" + "plane" "(-656 -3984 164) (-656 -3984 160) (400 -3984 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -120.65] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346759" + "plane" "(400 -4000 164) (400 -4000 160) (-672 -4000 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" "346758" + "plane" "(-672 -4000 164) (-672 -4000 160) (-656 -3984 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.261131 0.965303 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346757" + "plane" "(-656 -3984 164) (400 -3984 164) (400 -4000 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748133" + side + { + "id" "346592" + "plane" "(-656 -3984 240) (400 -3984 240) (400 -4000 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" "346591" + "plane" "(400 -4000 236) (400 -4000 240) (400 -3984 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" "346590" + "plane" "(400 -3984 236) (400 -3984 240) (-656 -3984 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -404.674] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346589" + "plane" "(-672 -4000 236) (-672 -4000 240) (400 -4000 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" "346588" + "plane" "(-656 -3984 236) (-656 -3984 240) (-672 -4000 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.707107 0.707107 0 -396.872] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346587" + "plane" "(-672 -4000 236) (400 -4000 236) (400 -3984 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749304" + side + { + "id" "346756" + "plane" "(400 -3984 236) (400 -3984 164) (400 -4000 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" + } + side + { + "id" "346755" + "plane" "(-656 -3984 236) (-656 -3984 164) (400 -3984 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-0.86722 0.497925 0 -967.854] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "-2147483648" + } + side + { + "id" "346754" + "plane" "(400 -4000 236) (400 -4000 164) (-672 -4000 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" + } + side + { + "id" "346753" + "plane" "(-672 -4000 236) (-672 -4000 164) (-656 -3984 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-0.261131 0.965303 0 471.292] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "-2147483648" + } + side + { + "id" "346752" + "plane" "(-656 -3984 236) (400 -3984 236) (400 -4000 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346751" + "plane" "(-672 -4000 164) (400 -4000 164) (400 -3984 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +hidden +{ + entity + { + "id" "2376708" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1792 -3328 191.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2376720" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1440 -3328 191.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2376740" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_vent_001_64x32.mdl" + "renderamt" "255" + "rendercolor" "240 236 232" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1440 -3200 191.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2376764" + "classname" "func_detail" + solid + { + "id" "2347172" + side + { + "id" "305147" + "plane" "(1606 -3197 224) (1312 -3197 224) (1326 -3236 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" "305146" + "plane" "(1326 -3236 224) (1312 -3197 224) (1312 -3197 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305145" + "plane" "(1326 -3236 358) (1312 -3197 358) (1606 -3197 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305144" + "plane" "(1312 -3197 358) (1312 -3197 224) (1606 -3197 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" "305143" + "plane" "(1606 -3197 224) (1606 -3236 224) (1606 -3236 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305142" + "plane" "(1606 -3236 224) (1326 -3236 224) (1326 -3236 358)" + "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" "2356976" + side + { + "id" "305153" + "plane" "(1326 -3236 224) (1368 -3313 224) (1606 -3313 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" "305152" + "plane" "(1368 -3313 224) (1326 -3236 224) (1326 -3236 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305151" + "plane" "(1368 -3313 358) (1326 -3236 358) (1606 -3236 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305150" + "plane" "(1606 -3236 224) (1606 -3313 224) (1606 -3313 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305149" + "plane" "(1326 -3236 358) (1326 -3236 224) (1606 -3236 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" "305148" + "plane" "(1606 -3313 224) (1368 -3313 224) (1368 -3313 358)" + "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" "2366790" + side + { + "id" "305161" + "plane" "(1368 -3313 224) (1368.13 -3313.2 224) (1418.93 -3373.94 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" "305160" + "plane" "(1368.13 -3313.2 358) (1368.13 -3313.2 224) (1368 -3313 224)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305159" + "plane" "(1418.92 -3373.93 358) (1418.92 -3373.93 224) (1368.12 -3313.18 224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 1 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305158" + "plane" "(1478 -3420 224) (1418.93 -3373.94 224) (1418.93 -3373.94 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305157" + "plane" "(1478 -3420 358) (1418.93 -3373.94 358) (1368.12 -3313.18 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305156" + "plane" "(1606 -3313 224) (1606 -3420 224) (1606 -3420 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305155" + "plane" "(1368 -3313 358) (1368 -3313 224) (1606 -3313 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" "305154" + "plane" "(1606 -3420 224) (1478 -3420 224) (1478 -3420 358)" + "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" "2376647" + side + { + "id" "305167" + "plane" "(1608 -3446 224) (1608 -3420 224) (1478 -3420 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" "305166" + "plane" "(1608 -3420 358) (1608 -3446 358) (1540 -3446 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305165" + "plane" "(1608 -3446 224) (1608 -3446 358) (1608 -3420 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305164" + "plane" "(1608 -3420 224) (1608 -3420 358) (1478 -3420 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305163" + "plane" "(1540 -3446 224) (1540 -3446 358) (1608 -3446 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305162" + "plane" "(1478 -3420 224) (1478 -3420 358) (1540 -3446 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2366781" + side + { + "id" "305172" + "plane" "(1608 -3456 224) (1608 -3446 224) (1539.99 -3446 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" "305171" + "plane" "(1539.99 -3446 224) (1540 -3446 358) (1608 -3456 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305170" + "plane" "(1540 -3446 358) (1608 -3446 358) (1608 -3456 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305169" + "plane" "(1608 -3456 224) (1608 -3456 358) (1608 -3446 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "305168" + "plane" "(1539.99 -3446 224) (1608 -3446 224) (1608 -3446 358)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "2376778" + "classname" "func_detail" + solid + { + "id" "4892884" + side + { + "id" "349337" + "plane" "(1648 -3416 358) (1648 -3456 358) (1808 -3456 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349336" + "plane" "(1648 -3456 358) (1648 -3416 358) (1648 -3416 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349335" + "plane" "(1808 -3416 358) (1808 -3456 358) (1808 -3456 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349334" + "plane" "(1648 -3416 358) (1808 -3416 358) (1808 -3416 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349333" + "plane" "(1808 -3456 358) (1648 -3456 358) (1648 -3456 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349332" + "plane" "(1648 -3456 377) (1648 -3416 377) (1808 -3416 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892883" + side + { + "id" "349331" + "plane" "(1648 -3456 382) (1648 -3416 382) (1808 -3416 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349330" + "plane" "(1648 -3416 377) (1648 -3416 382) (1648 -3456 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349329" + "plane" "(1808 -3456 377) (1808 -3456 382) (1808 -3416 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349328" + "plane" "(1808 -3416 377) (1808 -3416 382) (1648 -3416 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349327" + "plane" "(1648 -3456 377) (1648 -3456 382) (1808 -3456 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349326" + "plane" "(1648 -3416 377) (1648 -3456 377) (1808 -3456 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "2337284" + "classname" "func_detail" + solid + { + "id" "4892916" + side + { + "id" "349393" + "plane" "(1312 -3197 358) (1312 -3144 358) (1312 -3144 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349392" + "plane" "(1648 -3144 377) (1648 -3144 358) (1648 -3197 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349391" + "plane" "(1648 -3144 358) (1648 -3144 377) (1312 -3144 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349390" + "plane" "(1312 -3144 358) (1312 -3197 358) (1648 -3197 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349389" + "plane" "(1312 -3197 358) (1312 -3197 377) (1648 -3197 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349388" + "plane" "(1312 -3197 377) (1312 -3144 377) (1648 -3144 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892902" + side + { + "id" "349381" + "plane" "(1648 -3197 358) (1648 -3456 358) (1648 -3456 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349380" + "plane" "(1605.98 -3456 358) (1605.97 -3456 377) (1648 -3456 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349379" + "plane" "(1326 -3236 377) (1326 -3236 358) (1312 -3197 358)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349378" + "plane" "(1326 -3236 358) (1326 -3236 377) (1368.05 -3313.07 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349377" + "plane" "(1368.06 -3313.1 358) (1368.06 -3313.1 377) (1418.93 -3373.94 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349376" + "plane" "(1418.96 -3373.97 358) (1418.94 -3373.95 377) (1478 -3420 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349375" + "plane" "(1478 -3420 358) (1478 -3420 377) (1540.03 -3446 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349374" + "plane" "(1540 -3446 358) (1540.03 -3446 377) (1605.97 -3456 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349373" + "plane" "(1312 -3197 358) (1326 -3236.01 358) (1368.05 -3313.07 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349372" + "plane" "(1648 -3197 358) (1648 -3197 377) (1312 -3197 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349371" + "plane" "(1648 -3197 377) (1648 -3456 377) (1606 -3456 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892901" + side + { + "id" "349370" + "plane" "(1648 -3197 382) (1648 -3456 382) (1606 -3456 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349369" + "plane" "(1648 -3456 377) (1648 -3456 382) (1648 -3197 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349368" + "plane" "(1605.97 -3456 377) (1605.97 -3456 382) (1648 -3456 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349367" + "plane" "(1312 -3197 382) (1326 -3236 382) (1326 -3236 377)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349366" + "plane" "(1326 -3236 377) (1326 -3236 382) (1368.05 -3313.07 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349365" + "plane" "(1368.06 -3313.1 377) (1368.06 -3313.1 382) (1418.92 -3373.93 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349364" + "plane" "(1418.94 -3373.95 377) (1418.94 -3373.94 382) (1478 -3420 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349363" + "plane" "(1478 -3420 377) (1478 -3420 382) (1540.03 -3446 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349362" + "plane" "(1540.03 -3446 377) (1540.04 -3446 382) (1605.97 -3456 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349361" + "plane" "(1648 -3197 377) (1648 -3197 382) (1312 -3197 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349360" + "plane" "(1312 -3197 377) (1326 -3236.01 377) (1368.05 -3313.07 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892915" + side + { + "id" "349387" + "plane" "(1312 -3197 382) (1312 -3144 382) (1648 -3144 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349386" + "plane" "(1312 -3144 377) (1312 -3144 382) (1312 -3197 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349385" + "plane" "(1648 -3197 382) (1648 -3144 382) (1648 -3144 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349384" + "plane" "(1648 -3144 377) (1648 -3144 382) (1312 -3144 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349383" + "plane" "(1312 -3197 377) (1312 -3197 382) (1648 -3197 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349382" + "plane" "(1312 -3144 377) (1312 -3197 377) (1648 -3197 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +hidden +{ + entity + { + "id" "2337359" + "classname" "prop_static" + "angles" "0 171 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1317 -2861 127" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2337363" + "classname" "prop_static" + "angles" "0 259 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1316.02 -2860 201" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2337367" + "classname" "prop_static" + "angles" "90 169 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1315 -2860 133" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2326804" + "classname" "func_detail" + solid + { + "id" "4892998" + side + { + "id" "349477" + "plane" "(1356 -2754 358) (1348 -2752 358) (1322 -2814 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349476" + "plane" "(1330 -2816 358) (1322 -2814 358) (1322 -2814 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349475" + "plane" "(1348 -2752 358) (1356 -2754 358) (1356 -2754 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349474" + "plane" "(1322 -2814 358) (1348 -2752 358) (1348 -2752 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0.386726 0.922194 0 781.192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349473" + "plane" "(1356 -2754 358) (1330 -2816 358) (1330 -2816 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349472" + "plane" "(1330 -2816 377) (1322 -2814 377) (1348 -2752 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548304" + side + { + "id" "265351" + "plane" "(1312 -2880 -40) (1320 -2880 -40) (1330 -2816 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00195313] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265350" + "plane" "(1320 -2880 -40) (1312 -2880 -40) (1312 -2880 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265349" + "plane" "(1322 -2814 -40) (1330 -2816 -40) (1330 -2816 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265348" + "plane" "(1312 -2880 -40) (1322 -2814 -40) (1322 -2814 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.149841 0.98871 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265347" + "plane" "(1330 -2816 -40) (1320 -2880 -40) (1320 -2880 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.145211 0.989401 0 36.5505] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265346" + "plane" "(1320 -2880 16) (1312 -2880 16) (1322 -2814 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548306" + side + { + "id" "265363" + "plane" "(1356 -2754 -40) (1348 -2752 -40) (1322 -2814 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00195313] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265362" + "plane" "(1330 -2816 -40) (1322 -2814 -40) (1322 -2814 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265361" + "plane" "(1348 -2752 -40) (1356 -2754 -40) (1356 -2754 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265360" + "plane" "(1322 -2814 -40) (1348 -2752 -40) (1348 -2752 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.386732 0.922192 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265359" + "plane" "(1356 -2754 -40) (1330 -2816 -40) (1330 -2816 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.386727 0.922194 0 -469.33] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265358" + "plane" "(1330 -2816 16) (1322 -2814 16) (1348 -2752 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548308" + side + { + "id" "265375" + "plane" "(1348 -2752 -40) (1356 -2754 -40) (1400 -2698 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00195313] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265374" + "plane" "(1356 -2754 -40) (1348 -2752 -40) (1348 -2752 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265373" + "plane" "(1392 -2694 -40) (1400 -2698 -40) (1400 -2698 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 -0.447214 0 -40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265372" + "plane" "(1348 -2752 -40) (1392 -2694 -40) (1392 -2694 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.604387 0.796691 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265371" + "plane" "(1400 -2698 -40) (1356 -2754 -40) (1356 -2754 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.617822 0.786318 0 -147.595] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265370" + "plane" "(1356 -2754 16) (1348 -2752 16) (1392 -2694 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548310" + side + { + "id" "265387" + "plane" "(1392 -2694 -40) (1400 -2698 -40) (1458 -2648 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00195313] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265386" + "plane" "(1400 -2698 -40) (1392 -2694 -40) (1392 -2694 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0.447214 0 40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265385" + "plane" "(1452 -2642 -40) (1458 -2648 -40) (1458 -2648 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265384" + "plane" "(1392 -2694 -40) (1452 -2642 -40) (1452 -2642 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.755689 0.65493 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265383" + "plane" "(1458 -2648 -40) (1400 -2698 -40) (1400 -2698 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.75741 0.652939 0 -320.716] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265382" + "plane" "(1400 -2698 16) (1392 -2694 16) (1452 -2642 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548312" + side + { + "id" "265399" + "plane" "(1452 -2642 -40) (1458 -2648 -40) (1530 -2608 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00195313] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265398" + "plane" "(1458 -2648 -40) (1452 -2642 -40) (1452 -2642 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265397" + "plane" "(1526 -2600 -40) (1530 -2608 -40) (1530 -2608 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.447214 -0.894427 0 -54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265396" + "plane" "(1452 -2642 -40) (1526 -2600 -40) (1526 -2600 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.869686 0.493605 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265395" + "plane" "(1530 -2608 -40) (1458 -2648 -40) (1458 -2648 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.874157 0.485642 0 -213.593] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265394" + "plane" "(1458 -2648 16) (1452 -2642 16) (1526 -2600 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548314" + side + { + "id" "265411" + "plane" "(1526 -2600 -48) (1530 -2608 -48) (1612 -2576 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00195313] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265410" + "plane" "(1530 -2608 16) (1530 -2608 -48) (1526 -2600 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 0.894427 0 54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265409" + "plane" "(1608 -2570 16) (1608 -2570 -48) (1612 -2576 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5547 -0.83205 0 -42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265408" + "plane" "(1526 -2600 16) (1526 -2600 -48) (1608 -2570 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.939123 0.34358 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265407" + "plane" "(1612 -2576 16) (1612 -2576 -48) (1530 -2608 -48)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.931578 0.363541 0 -302.769] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265406" + "plane" "(1530 -2608 16) (1526 -2600 16) (1608 -2570 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548316" + side + { + "id" "265423" + "plane" "(1608 -2570 -48) (1612 -2576 -48) (1700 -2558 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00195313] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265422" + "plane" "(1612 -2576 16) (1612 -2576 -48) (1608 -2570 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.5547 0.83205 0 42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265421" + "plane" "(1698 -2550 16) (1698 -2550 -48) (1700 -2558 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265420" + "plane" "(1608 -2570 16) (1608 -2570 -48) (1698 -2550 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.976187 0.216929 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265419" + "plane" "(1700 -2558 16) (1700 -2558 -48) (1612 -2576 -48)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.979715 0.200396 0 -246.198] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265418" + "plane" "(1612 -2576 16) (1608 -2570 16) (1698 -2550 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548318" + side + { + "id" "265435" + "plane" "(1698 -2550 -48) (1700 -2558 -48) (1792 -2552 -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" "265434" + "plane" "(1700 -2558 16) (1700 -2558 -48) (1698 -2550 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 0.970142 0 56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265433" + "plane" "(1792 -2544 16) (1792 -2544 -48) (1792 -2552 -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" "265432" + "plane" "(1698 -2550 16) (1698 -2550 -48) (1792 -2544 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0.997969 0.0636987 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265431" + "plane" "(1792 -2552 16) (1792 -2552 -48) (1700 -2558 -48)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.99788 0.0650777 0 -218.296] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265430" + "plane" "(1700 -2558 16) (1698 -2550 16) (1792 -2544 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548317" + side + { + "id" "265429" + "plane" "(1700 -2558 358) (1698 -2550 358) (1792 -2544 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265428" + "plane" "(1698 -2550 16) (1698 -2550 358) (1700 -2558 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 0.970142 0 56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265427" + "plane" "(1792 -2552 16) (1792 -2552 358) (1792 -2544 358)" + "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" "265426" + "plane" "(1792 -2544 16) (1792 -2544 358) (1698 -2550 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.997969 0.0637002 0 -32] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265425" + "plane" "(1700 -2558 16) (1700 -2558 358) (1792 -2552 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.99788 0.0650777 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265424" + "plane" "(1698 -2550 16) (1700 -2558 16) (1792 -2552 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548303" + side + { + "id" "265345" + "plane" "(1320 -2880 358) (1312 -2880 358) (1322 -2814 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.149805 0.988713 0 44] 0.25" + "vaxis" "[-0.988714 0.149805 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265344" + "plane" "(1312 -2880 16) (1312 -2880 358) (1320 -2880 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265343" + "plane" "(1330 -2816 16) (1330 -2816 358) (1322 -2814 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265342" + "plane" "(1322 -2814 16) (1322 -2814 358) (1312 -2880 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.149841 0.98871 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265341" + "plane" "(1320 -2880 16) (1320 -2880 358) (1330 -2816 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.145211 0.989401 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265340" + "plane" "(1312 -2880 16) (1320 -2880 16) (1330 -2816 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316043" + side + { + "id" "304210" + "plane" "(1330 -2816 116) (1330 -2816 114) (1322 -2814 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304209" + "plane" "(1348 -2752 116) (1348 -2752 114) (1356 -2754 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304208" + "plane" "(1322 -2814 116) (1322 -2814 114) (1348 -2752 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.386732 0.922192 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304207" + "plane" "(1356 -2754 116) (1356 -2754 114) (1330 -2816 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.386727 0.922194 0 -469.33] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304206" + "plane" "(1330 -2816 116) (1322 -2814 116) (1348 -2752 116)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304205" + "plane" "(1356 -2754 114) (1348 -2752 114) (1322 -2814 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.386726 0.922194 0 47.1035] 0.125" + "vaxis" "[0.922194 -0.386727 0 -11.1172] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316041" + side + { + "id" "304198" + "plane" "(1356 -2754 116) (1356 -2754 114) (1348 -2752 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304197" + "plane" "(1392 -2694 116) (1392 -2694 114) (1400 -2698 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 -0.447214 0 -40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304196" + "plane" "(1348 -2752 116) (1348 -2752 114) (1392 -2694 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.604387 0.796691 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304195" + "plane" "(1400 -2698 116) (1400 -2698 114) (1356 -2754 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.617822 0.786318 0 -147.595] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304194" + "plane" "(1356 -2754 116) (1348 -2752 116) (1392 -2694 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304193" + "plane" "(1348 -2752 114) (1356 -2754 114) (1400 -2698 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.604386 0.796691 0 47.0129] 0.125" + "vaxis" "[0.796691 -0.604386 0 -57.6914] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316039" + side + { + "id" "304186" + "plane" "(1400 -2698 116) (1400 -2698 114) (1392 -2694 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0.447214 0 40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304185" + "plane" "(1452 -2642 116) (1452 -2642 114) (1458 -2648 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304184" + "plane" "(1392 -2694 116) (1392 -2694 114) (1452 -2642 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.755689 0.65493 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304183" + "plane" "(1458 -2648 116) (1458 -2648 114) (1400 -2698 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.75741 0.652939 0 -320.716] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304182" + "plane" "(1400 -2698 116) (1392 -2694 116) (1452 -2642 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304181" + "plane" "(1392 -2694 114) (1400 -2698 114) (1458 -2648 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.755689 0.65493 0 47.0071] 0.125" + "vaxis" "[0.65493 -0.755689 0 -11.916] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316037" + side + { + "id" "304174" + "plane" "(1458 -2648 116) (1458 -2648 114) (1452 -2642 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304173" + "plane" "(1526 -2600 116) (1526 -2600 114) (1530 -2608 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.447214 -0.894427 0 -54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304172" + "plane" "(1452 -2642 116) (1452 -2642 114) (1526 -2600 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.869686 0.493605 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304171" + "plane" "(1530 -2608 116) (1530 -2608 114) (1458 -2648 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.874157 0.485642 0 -213.593] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304170" + "plane" "(1458 -2648 116) (1452 -2642 116) (1526 -2600 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304169" + "plane" "(1452 -2642 114) (1458 -2648 114) (1530 -2608 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.869685 0.493605 0 47.0134] 0.125" + "vaxis" "[0.493605 -0.869686 0 -35.4004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316035" + side + { + "id" "304162" + "plane" "(1530 -2608 116) (1530 -2608 114) (1526 -2600 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 0.894427 0 54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304161" + "plane" "(1608 -2570 116) (1608 -2570 114) (1612 -2576 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5547 -0.83205 0 -42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304160" + "plane" "(1526 -2600 116) (1526 -2600 114) (1608 -2570 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.939123 0.34358 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304159" + "plane" "(1612 -2576 116) (1612 -2576 114) (1530 -2608 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.931578 0.363541 0 -302.769] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304158" + "plane" "(1530 -2608 116) (1526 -2600 116) (1608 -2570 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304157" + "plane" "(1526 -2600 114) (1530 -2608 114) (1612 -2576 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.939122 0.343581 0 47.034] 0.125" + "vaxis" "[0.343581 -0.939123 0 -32.1953] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316033" + side + { + "id" "304150" + "plane" "(1612 -2576 116) (1612 -2576 114) (1608 -2570 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.5547 0.83205 0 42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304149" + "plane" "(1698 -2550 116) (1698 -2550 114) (1700 -2558 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304148" + "plane" "(1608 -2570 116) (1608 -2570 114) (1698 -2550 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.976187 0.216929 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304147" + "plane" "(1700 -2558 116) (1700 -2558 114) (1612 -2576 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.979715 0.200396 0 -246.198] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304146" + "plane" "(1612 -2576 116) (1608 -2570 116) (1698 -2550 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304145" + "plane" "(1608 -2570 114) (1612 -2576 114) (1700 -2558 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.976187 0.21693 0 47.0303] 0.125" + "vaxis" "[0.21693 -0.976187 0 -60.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315326" + side + { + "id" "303802" + "plane" "(1322 -2814 116) (1322 -2814 212) (1330 -2816 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303801" + "plane" "(1356 -2754 116) (1356 -2754 212) (1348 -2752 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303800" + "plane" "(1348 -2752 116) (1348 -2752 212) (1322 -2814 212)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.386732 0.922192 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303799" + "plane" "(1330 -2816 116) (1330 -2816 212) (1356 -2754 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.386727 0.922194 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303798" + "plane" "(1356 -2754 116) (1348 -2752 116) (1322 -2814 116)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303797" + "plane" "(1330 -2816 212) (1322 -2814 212) (1348 -2752 212)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315324" + side + { + "id" "303790" + "plane" "(1348 -2752 116) (1348 -2752 212) (1356 -2754 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303789" + "plane" "(1400 -2698 116) (1400 -2698 212) (1392 -2694 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 -0.447214 0 -40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303788" + "plane" "(1392 -2694 116) (1392 -2694 212) (1348 -2752 212)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.604387 0.796691 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303787" + "plane" "(1356 -2754 116) (1356 -2754 212) (1400 -2698 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.617822 0.786318 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303786" + "plane" "(1348 -2752 116) (1356 -2754 116) (1400 -2698 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303785" + "plane" "(1356 -2754 212) (1348 -2752 212) (1392 -2694 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315322" + side + { + "id" "303778" + "plane" "(1392 -2694 116) (1392 -2694 212) (1400 -2698 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0.447214 0 40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303777" + "plane" "(1458 -2648 116) (1458 -2648 212) (1452 -2642 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303776" + "plane" "(1452 -2642 116) (1452 -2642 212) (1392 -2694 212)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.755689 0.65493 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303775" + "plane" "(1400 -2698 116) (1400 -2698 212) (1458 -2648 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.75741 0.652939 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303774" + "plane" "(1392 -2694 116) (1400 -2698 116) (1458 -2648 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303773" + "plane" "(1400 -2698 212) (1392 -2694 212) (1452 -2642 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315320" + side + { + "id" "303766" + "plane" "(1452 -2642 116) (1452 -2642 212) (1458 -2648 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303765" + "plane" "(1530 -2608 116) (1530 -2608 212) (1526 -2600 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.447214 -0.894427 0 -54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303764" + "plane" "(1526 -2600 116) (1526 -2600 212) (1452 -2642 212)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.869686 0.493605 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303763" + "plane" "(1458 -2648 116) (1458 -2648 212) (1530 -2608 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.874157 0.485642 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303762" + "plane" "(1452 -2642 116) (1458 -2648 116) (1530 -2608 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303761" + "plane" "(1458 -2648 212) (1452 -2642 212) (1526 -2600 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315318" + side + { + "id" "303754" + "plane" "(1526 -2600 116) (1526 -2600 212) (1530 -2608 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 0.894427 0 54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303753" + "plane" "(1612 -2576 116) (1612 -2576 212) (1608 -2570 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5547 -0.83205 0 -42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303752" + "plane" "(1608 -2570 116) (1608 -2570 212) (1526 -2600 212)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.939123 0.34358 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303751" + "plane" "(1530 -2608 116) (1530 -2608 212) (1612 -2576 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.931578 0.363541 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303750" + "plane" "(1526 -2600 116) (1530 -2608 116) (1612 -2576 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303749" + "plane" "(1530 -2608 212) (1526 -2600 212) (1608 -2570 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315316" + side + { + "id" "303742" + "plane" "(1608 -2570 116) (1608 -2570 212) (1612 -2576 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.5547 0.83205 0 42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303741" + "plane" "(1700 -2558 116) (1700 -2558 212) (1698 -2550 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303740" + "plane" "(1698 -2550 116) (1698 -2550 212) (1608 -2570 212)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.976187 0.216929 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303739" + "plane" "(1612 -2576 116) (1612 -2576 212) (1700 -2558 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.979715 0.200396 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303738" + "plane" "(1608 -2570 116) (1612 -2576 116) (1700 -2558 116)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303737" + "plane" "(1612 -2576 212) (1608 -2570 212) (1698 -2550 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315427" + side + { + "id" "303886" + "plane" "(1612 -2576 214) (1612 -2576 212) (1608 -2570 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.5547 0.83205 0 42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303885" + "plane" "(1698 -2550 214) (1698 -2550 212) (1700 -2558 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303884" + "plane" "(1608 -2570 214) (1608 -2570 212) (1698 -2550 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.976187 0.216929 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303883" + "plane" "(1700 -2558 214) (1700 -2558 212) (1612 -2576 212)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.979715 0.200396 0 -246.198] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303882" + "plane" "(1608 -2570 212) (1612 -2576 212) (1700 -2558 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303881" + "plane" "(1612 -2576 214) (1608 -2570 214) (1698 -2550 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315429" + side + { + "id" "303898" + "plane" "(1530 -2608 214) (1530 -2608 212) (1526 -2600 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 0.894427 0 54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303897" + "plane" "(1608 -2570 214) (1608 -2570 212) (1612 -2576 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5547 -0.83205 0 -42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303896" + "plane" "(1526 -2600 214) (1526 -2600 212) (1608 -2570 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.939123 0.34358 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303895" + "plane" "(1612 -2576 214) (1612 -2576 212) (1530 -2608 212)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.931578 0.363541 0 -302.769] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303894" + "plane" "(1526 -2600 212) (1530 -2608 212) (1612 -2576 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303893" + "plane" "(1530 -2608 214) (1526 -2600 214) (1608 -2570 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315431" + side + { + "id" "303910" + "plane" "(1458 -2648 214) (1458 -2648 212) (1452 -2642 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303909" + "plane" "(1526 -2600 214) (1526 -2600 212) (1530 -2608 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.447214 -0.894427 0 -54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303908" + "plane" "(1452 -2642 214) (1452 -2642 212) (1526 -2600 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.869686 0.493605 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303907" + "plane" "(1530 -2608 214) (1530 -2608 212) (1458 -2648 212)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.874157 0.485642 0 -213.593] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303906" + "plane" "(1452 -2642 212) (1458 -2648 212) (1530 -2608 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303905" + "plane" "(1458 -2648 214) (1452 -2642 214) (1526 -2600 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315433" + side + { + "id" "303922" + "plane" "(1400 -2698 214) (1400 -2698 212) (1392 -2694 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0.447214 0 40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303921" + "plane" "(1452 -2642 214) (1452 -2642 212) (1458 -2648 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303920" + "plane" "(1392 -2694 214) (1392 -2694 212) (1452 -2642 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.755689 0.65493 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303919" + "plane" "(1458 -2648 214) (1458 -2648 212) (1400 -2698 212)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.75741 0.652939 0 -320.716] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303918" + "plane" "(1392 -2694 212) (1400 -2698 212) (1458 -2648 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303917" + "plane" "(1400 -2698 214) (1392 -2694 214) (1452 -2642 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315435" + side + { + "id" "303934" + "plane" "(1356 -2754 214) (1356 -2754 212) (1348 -2752 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303933" + "plane" "(1392 -2694 214) (1392 -2694 212) (1400 -2698 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 -0.447214 0 -40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303932" + "plane" "(1348 -2752 214) (1348 -2752 212) (1392 -2694 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.604387 0.796691 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303931" + "plane" "(1400 -2698 214) (1400 -2698 212) (1356 -2754 212)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.617822 0.786318 0 -147.595] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303930" + "plane" "(1348 -2752 212) (1356 -2754 212) (1400 -2698 212)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303929" + "plane" "(1356 -2754 214) (1348 -2752 214) (1392 -2694 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315437" + side + { + "id" "303946" + "plane" "(1330 -2816 214) (1330 -2816 212) (1322 -2814 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303945" + "plane" "(1348 -2752 214) (1348 -2752 212) (1356 -2754 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303944" + "plane" "(1322 -2814 214) (1322 -2814 212) (1348 -2752 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.386732 0.922192 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303943" + "plane" "(1356 -2754 214) (1356 -2754 212) (1330 -2816 212)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.386727 0.922194 0 -469.33] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303942" + "plane" "(1356 -2754 212) (1348 -2752 212) (1322 -2814 212)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303941" + "plane" "(1330 -2816 214) (1322 -2814 214) (1348 -2752 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315379" + side + { + "id" "303808" + "plane" "(1612 -2576 358) (1608 -2570 358) (1698 -2550 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303807" + "plane" "(1608 -2570 356) (1608 -2570 358) (1612 -2576 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.5547 0.83205 0 42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303806" + "plane" "(1700 -2558 356) (1700 -2558 358) (1698 -2550 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303805" + "plane" "(1698 -2550 356) (1698 -2550 358) (1608 -2570 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.976187 0.216929 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303804" + "plane" "(1612 -2576 356) (1612 -2576 358) (1700 -2558 358)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.979715 0.200396 0 -246.198] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303803" + "plane" "(1608 -2570 356) (1612 -2576 356) (1700 -2558 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.976187 0.21693 0 47.0275] 0.125" + "vaxis" "[0.21693 -0.976187 0 -12.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315381" + side + { + "id" "303820" + "plane" "(1530 -2608 358) (1526 -2600 358) (1608 -2570 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303819" + "plane" "(1526 -2600 356) (1526 -2600 358) (1530 -2608 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 0.894427 0 54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303818" + "plane" "(1612 -2576 356) (1612 -2576 358) (1608 -2570 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5547 -0.83205 0 -42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303817" + "plane" "(1608 -2570 356) (1608 -2570 358) (1526 -2600 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.939123 0.34358 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303816" + "plane" "(1530 -2608 356) (1530 -2608 358) (1612 -2576 358)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.931578 0.363541 0 -302.769] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303815" + "plane" "(1526 -2600 356) (1530 -2608 356) (1612 -2576 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.939122 0.343581 0 47.0311] 0.125" + "vaxis" "[0.343581 -0.939123 0 -48.1973] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315383" + side + { + "id" "303832" + "plane" "(1458 -2648 358) (1452 -2642 358) (1526 -2600 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303831" + "plane" "(1452 -2642 356) (1452 -2642 358) (1458 -2648 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303830" + "plane" "(1530 -2608 356) (1530 -2608 358) (1526 -2600 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.447214 -0.894427 0 -54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303829" + "plane" "(1526 -2600 356) (1526 -2600 358) (1452 -2642 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.869686 0.493605 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303828" + "plane" "(1458 -2648 356) (1458 -2648 358) (1530 -2608 358)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.874157 0.485642 0 -213.593] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303827" + "plane" "(1452 -2642 356) (1458 -2648 356) (1530 -2608 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.869685 0.493605 0 47.0134] 0.125" + "vaxis" "[0.493605 -0.869686 0 -51.4023] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315385" + side + { + "id" "303844" + "plane" "(1400 -2698 358) (1392 -2694 358) (1452 -2642 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303843" + "plane" "(1392 -2694 356) (1392 -2694 358) (1400 -2698 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0.447214 0 40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303842" + "plane" "(1458 -2648 356) (1458 -2648 358) (1452 -2642 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303841" + "plane" "(1452 -2642 356) (1452 -2642 358) (1392 -2694 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.755689 0.65493 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303840" + "plane" "(1400 -2698 356) (1400 -2698 358) (1458 -2648 358)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.75741 0.652939 0 -320.716] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303839" + "plane" "(1392 -2694 356) (1400 -2698 356) (1458 -2648 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.755689 0.65493 0 47.0064] 0.125" + "vaxis" "[0.65493 -0.755689 0 -27.918] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315387" + side + { + "id" "303856" + "plane" "(1356 -2754 358) (1348 -2752 358) (1392 -2694 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303855" + "plane" "(1348 -2752 356) (1348 -2752 358) (1356 -2754 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303854" + "plane" "(1400 -2698 356) (1400 -2698 358) (1392 -2694 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 -0.447214 0 -40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303853" + "plane" "(1392 -2694 356) (1392 -2694 358) (1348 -2752 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.604387 0.796691 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303852" + "plane" "(1356 -2754 356) (1356 -2754 358) (1400 -2698 358)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.617822 0.786318 0 -147.595] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303851" + "plane" "(1348 -2752 356) (1356 -2754 356) (1400 -2698 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.604386 0.796691 0 47.0108] 0.125" + "vaxis" "[0.796691 -0.604386 0 -9.69336] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315389" + side + { + "id" "303868" + "plane" "(1330 -2816 358) (1322 -2814 358) (1348 -2752 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.386726 0.922194 0 44] 0.25" + "vaxis" "[-0.922194 0.386727 0 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303867" + "plane" "(1322 -2814 356) (1322 -2814 358) (1330 -2816 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303866" + "plane" "(1356 -2754 356) (1356 -2754 358) (1348 -2752 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303865" + "plane" "(1348 -2752 356) (1348 -2752 358) (1322 -2814 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.386732 0.922192 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303864" + "plane" "(1330 -2816 356) (1330 -2816 358) (1356 -2754 358)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.386727 0.922194 0 -469.33] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303863" + "plane" "(1356 -2754 356) (1348 -2752 356) (1322 -2814 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.386726 0.922194 0 47.0926] 0.125" + "vaxis" "[0.922194 -0.386727 0 -27.1172] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315499" + side + { + "id" "303958" + "plane" "(1698 -2550 356) (1698 -2550 214) (1700 -2558 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303957" + "plane" "(1696.58 -2550.32 214) (1698 -2550 214) (1698 -2550 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.976187 0.216929 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303956" + "plane" "(1700 -2558 356) (1700 -2558 214) (1698.57 -2558.29 214)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.979715 0.200396 0 -246.198] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303955" + "plane" "(1696.58 -2550.32 356) (1698 -2550 356) (1700 -2558 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303954" + "plane" "(1698.57 -2558.29 214) (1700 -2558 214) (1698 -2550 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303953" + "plane" "(1698.57 -2558.29 356) (1698.57 -2558.29 214) (1696.58 -2550.31 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 150.998] 0.125" + "vaxis" "[-0.191165 0.981557 0 20.3867] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315579" + side + { + "id" "303994" + "plane" "(1608 -2570 356) (1608 -2570 214) (1612 -2576 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5547 -0.83205 0 -42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303993" + "plane" "(1606.41 -2570.58 214) (1608 -2570 214) (1608 -2570 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.939123 0.34358 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303992" + "plane" "(1612 -2576 356) (1612 -2576 214) (1610.66 -2576.52 214)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.931578 0.363541 0 -302.769] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303991" + "plane" "(1606.41 -2570.58 356) (1608 -2570 356) (1612 -2576 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303990" + "plane" "(1610.66 -2576.52 214) (1612 -2576 214) (1608 -2570 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303989" + "plane" "(1610.66 -2576.52 356) (1610.66 -2576.52 214) (1606.41 -2570.58 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315685" + side + { + "id" "304030" + "plane" "(1526 -2600 356) (1526 -2600 214) (1530 -2608 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.447214 -0.894427 0 -54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304029" + "plane" "(1524.17 -2601.04 214) (1526 -2600 214) (1526 -2600 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.869686 0.493605 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304028" + "plane" "(1530 -2608 356) (1530 -2608 214) (1528.4 -2608.89 214)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.874157 0.485642 0 -213.593] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304027" + "plane" "(1524.17 -2601.04 356) (1526 -2600 356) (1530 -2608 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304026" + "plane" "(1528.4 -2608.89 214) (1530 -2608 214) (1526 -2600 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304025" + "plane" "(1528.4 -2608.89 356) (1528.4 -2608.89 214) (1524.17 -2601.04 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315798" + side + { + "id" "304066" + "plane" "(1452 -2642 356) (1452 -2642 214) (1458 -2648 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304065" + "plane" "(1450.39 -2643.39 214) (1452 -2642 214) (1452 -2642 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[0.755223 0.655468 0 46.748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304064" + "plane" "(1458 -2648 356) (1458 -2648 214) (1456.39 -2649.39 214)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.75741 0.652939 0 -320.716] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304063" + "plane" "(1450.39 -2643.39 356) (1452 -2642 356) (1458 -2648 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304062" + "plane" "(1456.39 -2649.39 214) (1458 -2648 214) (1452 -2642 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304061" + "plane" "(1456.39 -2649.39 356) (1456.39 -2649.39 214) (1450.39 -2643.39 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[-0.600573 0.79957 0 9.58984] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315934" + side + { + "id" "304114" + "plane" "(1396.56 -2696.28 214) (1400 -2698 214) (1400 -2698 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 -0.447214 0 -40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304113" + "plane" "(1400 -2698 356) (1400 -2698 214) (1357.56 -2752.02 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.617822 0.786318 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304112" + "plane" "(1396.56 -2696.28 356) (1400 -2698 356) (1357.56 -2752.02 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304111" + "plane" "(1400 -2698 214) (1396.56 -2696.28 214) (1354 -2751 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304110" + "plane" "(1357.56 -2752.02 356) (1357.56 -2752.02 214) (1354 -2751 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304109" + "plane" "(1354 -2751 214) (1396.56 -2696.28 214) (1396.56 -2696.28 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0.613968 0.789331 0 104.54] 0.25" + "vaxis" "[0 0 -1 -79.994] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315980" + side + { + "id" "304138" + "plane" "(1352 -2753 214) (1356 -2754 214) (1356 -2754 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304137" + "plane" "(1356 -2754 356) (1356 -2754 214) (1330.75 -2814.21 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.386727 0.922194 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304136" + "plane" "(1352 -2753 356) (1356 -2754 356) (1330.75 -2814.21 356)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304135" + "plane" "(1356 -2754 214) (1352 -2753 214) (1327.21 -2813.21 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304134" + "plane" "(1330.75 -2814.21 356) (1330.75 -2814.21 214) (1327.21 -2813.2 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304133" + "plane" "(1327.21 -2813.2 214) (1352 -2753 214) (1352 -2753 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 105] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315553" + side + { + "id" "303982" + "plane" "(1698.57 -2558.29 214) (1613.53 -2575.69 214) (1613.53 -2575.69 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.979715 0.200396 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303981" + "plane" "(1698.57 -2558.29 356) (1613.53 -2575.69 356) (1611.28 -2572.16 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303980" + "plane" "(1611.28 -2572.16 214) (1613.53 -2575.69 214) (1698.57 -2558.29 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303979" + "plane" "(1697.24 -2552.95 214) (1698.57 -2558.29 214) (1698.57 -2558.29 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303978" + "plane" "(1613.53 -2575.69 356) (1613.53 -2575.69 214) (1611.28 -2572.16 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303977" + "plane" "(1611.28 -2572.16 214) (1697.24 -2552.95 214) (1697.24 -2552.95 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315519" + side + { + "id" "303964" + "plane" "(1612 -2576 356) (1612 -2576 214) (1608 -2570 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.5547 0.83205 0 42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303963" + "plane" "(1608 -2570 356) (1608 -2570 214) (1609.67 -2569.63 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.976182 0.216928 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303962" + "plane" "(1613.53 -2575.69 214) (1612 -2576 214) (1612 -2576 356)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.979715 0.200396 0 -246.198] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303961" + "plane" "(1613.53 -2575.69 356) (1612 -2576 356) (1608 -2570 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303960" + "plane" "(1609.67 -2569.62 214) (1608 -2570 214) (1612 -2576 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303959" + "plane" "(1609.67 -2569.63 356) (1609.67 -2569.63 214) (1613.53 -2575.69 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 150.998] 0.125" + "vaxis" "[0.536866 -0.843661 0 -17.3193] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315640" + side + { + "id" "304018" + "plane" "(1610.66 -2576.52 214) (1531.67 -2607.35 214) (1531.67 -2607.34 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.931578 0.363541 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304017" + "plane" "(1608.11 -2572.96 356) (1610.66 -2576.52 356) (1531.67 -2607.35 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304016" + "plane" "(1529.74 -2603.49 214) (1531.67 -2607.35 214) (1610.66 -2576.52 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304015" + "plane" "(1608.11 -2572.96 214) (1610.66 -2576.52 214) (1610.66 -2576.52 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304014" + "plane" "(1531.67 -2607.35 356) (1531.67 -2607.35 214) (1529.74 -2603.49 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304013" + "plane" "(1529.75 -2603.48 214) (1608.11 -2572.96 214) (1608.11 -2572.96 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315597" + side + { + "id" "304000" + "plane" "(1530 -2608 356) (1530 -2608 214) (1526 -2600 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 0.894427 0 54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303999" + "plane" "(1526 -2600 356) (1526 -2600 214) (1527.69 -2599.38 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.939123 0.34358 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303998" + "plane" "(1531.67 -2607.35 214) (1530 -2608 214) (1530 -2608 356)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.931578 0.363541 0 -302.769] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303997" + "plane" "(1530 -2608 356) (1526 -2600 356) (1527.69 -2599.38 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303996" + "plane" "(1527.69 -2599.38 214) (1526 -2600 214) (1530 -2608 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303995" + "plane" "(1527.69 -2599.38 356) (1527.69 -2599.38 214) (1531.67 -2607.35 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.447213 -0.894427 0 -20.5313] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315774" + side + { + "id" "304054" + "plane" "(1528.4 -2608.89 214) (1459.93 -2646.93 214) (1459.93 -2646.93 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.874157 0.485642 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304053" + "plane" "(1528.4 -2608.89 356) (1459.93 -2646.93 356) (1457.09 -2644.09 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304052" + "plane" "(1457.09 -2644.09 214) (1459.93 -2646.93 214) (1528.4 -2608.89 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304051" + "plane" "(1526.24 -2604.87 214) (1528.4 -2608.89 214) (1528.4 -2608.89 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304050" + "plane" "(1459.93 -2646.93 356) (1459.93 -2646.93 214) (1457.09 -2644.09 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304049" + "plane" "(1457.09 -2644.09 214) (1526.24 -2604.87 214) (1526.23 -2604.87 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315733" + side + { + "id" "304036" + "plane" "(1458 -2648 356) (1458 -2648 214) (1452 -2642 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304035" + "plane" "(1452 -2642 356) (1452 -2642 214) (1453.91 -2640.91 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[0.869686 0.493605 0 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304034" + "plane" "(1459.93 -2646.93 214) (1458 -2648 214) (1458 -2648 356)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.874157 0.485642 0 -213.593] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304033" + "plane" "(1459.93 -2646.93 356) (1458 -2648 356) (1452 -2642 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304032" + "plane" "(1453.91 -2640.91 214) (1452 -2642 214) (1458 -2648 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304031" + "plane" "(1453.91 -2640.91 356) (1453.91 -2640.91 214) (1459.93 -2646.93 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[0.707099 -0.707114 0 -20.8535] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315865" + side + { + "id" "304090" + "plane" "(1456.39 -2649.39 214) (1401.84 -2696.42 214) (1401.84 -2696.42 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.75741 0.652939 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304089" + "plane" "(1456.39 -2649.39 356) (1401.84 -2696.42 356) (1398.27 -2694.64 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304088" + "plane" "(1398.27 -2694.64 214) (1401.84 -2696.42 214) (1456.39 -2649.39 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304087" + "plane" "(1453.53 -2646.53 214) (1456.39 -2649.39 214) (1456.39 -2649.39 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304086" + "plane" "(1401.84 -2696.42 356) (1401.84 -2696.42 214) (1398.27 -2694.64 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304085" + "plane" "(1398.27 -2694.64 214) (1453.53 -2646.54 214) (1453.53 -2646.54 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315824" + side + { + "id" "304072" + "plane" "(1400 -2698 356) (1400 -2698 214) (1392 -2694 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[-0.315475 0.948933 0 54.8008] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304071" + "plane" "(1392 -2694 356) (1392 -2694 214) (1393.83 -2692.41 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[0.755714 0.654902 0 29.0776] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304070" + "plane" "(1401.84 -2696.42 214) (1400 -2698 214) (1400 -2698 356)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.75741 0.652939 0 -320.716] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304069" + "plane" "(1401.84 -2696.42 356) (1400 -2698 356) (1392 -2694 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304068" + "plane" "(1393.83 -2692.41 214) (1392 -2694 214) (1400 -2698 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304067" + "plane" "(1393.83 -2692.41 356) (1393.83 -2692.41 214) (1401.84 -2696.42 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[0.894424 -0.447219 0 -40.5625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315883" + side + { + "id" "304096" + "plane" "(1356 -2754 356) (1356 -2754 214) (1348 -2752 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[-0.495444 0.868639 0 38.6699] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304095" + "plane" "(1348 -2752 356) (1348 -2752 214) (1349.69 -2749.77 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[0.604162 0.796861 0 40.2324] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304094" + "plane" "(1357.56 -2752.02 214) (1356 -2754 214) (1356 -2754 356)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.617822 0.786318 0 -147.595] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304093" + "plane" "(1356 -2754 356) (1348 -2752 356) (1349.69 -2749.77 356)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304092" + "plane" "(1348 -2752 214) (1356 -2754 214) (1357.56 -2752.02 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304091" + "plane" "(1349.69 -2749.77 356) (1349.69 -2749.77 214) (1357.56 -2752.02 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[0.96153 -0.274697 0 -46] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2315965" + side + { + "id" "304120" + "plane" "(1330 -2816 356) (1330 -2816 214) (1322 -2814 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304119" + "plane" "(1322 -2814 356) (1322 -2814 214) (1322.86 -2811.96 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[0.386423 0.922321 0 30.4424] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304118" + "plane" "(1330.75 -2814.21 214) (1330 -2816 214) (1330 -2816 356)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.386727 0.922194 0 -469.33] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304117" + "plane" "(1330 -2816 356) (1322 -2814 356) (1322.85 -2811.96 356)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304116" + "plane" "(1322.86 -2811.96 214) (1322 -2814 214) (1330 -2816 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304115" + "plane" "(1322.86 -2811.96 356) (1322.86 -2811.96 214) (1330.75 -2814.21 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47] 0.125" + "vaxis" "[0.961524 -0.274721 0 -46.9746] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316193" + side + { + "id" "304294" + "plane" "(1698 -2550 114) (1698 -2550 18) (1700 -2558 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304293" + "plane" "(1696.58 -2550.31 18) (1698 -2550 18) (1698 -2550 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.976187 0.216929 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304292" + "plane" "(1700 -2558 114) (1700 -2558 18) (1698.57 -2558.29 18)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.979715 0.200396 0 -246.198] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304291" + "plane" "(1696.58 -2550.32 114) (1698 -2550 114) (1700 -2558 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304290" + "plane" "(1698.57 -2558.29 18) (1700 -2558 18) (1698 -2550 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304289" + "plane" "(1698.57 -2558.29 114) (1698.57 -2558.29 18) (1696.58 -2550.31 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 150.998] 0.125" + "vaxis" "[-0.191165 0.981557 0 20.3809] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316388" + side + { + "id" "304330" + "plane" "(1608 -2570 114) (1608 -2570 18) (1612 -2576 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5547 -0.83205 0 -42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304329" + "plane" "(1606.41 -2570.58 18) (1608 -2570 18) (1608 -2570 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.939306 0.343078 0 60.0647] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304328" + "plane" "(1612 -2576 114) (1612 -2576 18) (1610.66 -2576.52 18)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.931578 0.363541 0 -302.769] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304327" + "plane" "(1606.41 -2570.58 114) (1608 -2570 114) (1612 -2576 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304326" + "plane" "(1610.66 -2576.52 18) (1612 -2576 18) (1608 -2570 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304325" + "plane" "(1610.66 -2576.52 114) (1610.66 -2576.52 18) (1606.41 -2570.58 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[-0.0800515 0.99679 0 43.4824] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316565" + side + { + "id" "304366" + "plane" "(1526 -2600 114) (1526 -2600 18) (1530 -2608 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.447214 -0.894427 0 -54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304365" + "plane" "(1524.23 -2601 18) (1526 -2600 18) (1526 -2600 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.870394 0.492355 0 25.5718] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304364" + "plane" "(1530 -2608 114) (1530 -2608 18) (1528.46 -2608.85 18)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.874157 0.485642 0 -213.593] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304363" + "plane" "(1524.23 -2601 114) (1526 -2600 114) (1530 -2608 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304362" + "plane" "(1528.46 -2608.86 18) (1530 -2608 18) (1526 -2600 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304361" + "plane" "(1528.46 -2608.85 114) (1528.46 -2608.85 18) (1524.23 -2601 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[-0.473942 0.880555 0 47.8867] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316734" + side + { + "id" "304414" + "plane" "(1452 -2642 114) (1452 -2642 18) (1458 -2648 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304413" + "plane" "(1450.39 -2643.39 18) (1452 -2642 18) (1452 -2642 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.756152 0.654396 0 41.2852] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304412" + "plane" "(1458 -2648 114) (1458 -2648 18) (1456.39 -2649.39 18)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.75741 0.652939 0 -320.716] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304411" + "plane" "(1450.39 -2643.39 114) (1452 -2642 114) (1458 -2648 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304410" + "plane" "(1458 -2648 18) (1452 -2642 18) (1450.39 -2643.39 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304409" + "plane" "(1456.39 -2649.39 114) (1456.39 -2649.39 18) (1450.39 -2643.39 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 150.999] 0.125" + "vaxis" "[-0.244566 0.969632 0 11.543] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316826" + side + { + "id" "304450" + "plane" "(1396.56 -2696.28 18) (1400 -2698 18) (1400 -2698 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 -0.447214 0 -40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304449" + "plane" "(1400 -2698 114) (1400 -2698 18) (1357.56 -2752.02 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.617822 0.786318 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304448" + "plane" "(1396.56 -2696.28 114) (1400 -2698 114) (1357.56 -2752.02 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304447" + "plane" "(1400 -2698 18) (1396.56 -2696.28 18) (1354 -2751 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304446" + "plane" "(1357.56 -2752.02 114) (1357.56 -2752.02 18) (1354 -2751 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304445" + "plane" "(1354 -2751 18) (1396.56 -2696.29 18) (1396.56 -2696.29 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 87] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316902" + side + { + "id" "304462" + "plane" "(1330 -2816 114) (1330 -2816 18) (1322 -2814 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304461" + "plane" "(1322 -2814 114) (1322 -2814 18) (1322.89 -2811.88 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.386732 0.922192 0 60] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304460" + "plane" "(1330.76 -2814.18 18) (1330 -2816 18) (1330 -2816 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.386727 0.922194 0 -469.33] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304459" + "plane" "(1330 -2816 114) (1322 -2814 114) (1322.89 -2811.88 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304458" + "plane" "(1322.89 -2811.88 18) (1322 -2814 18) (1330 -2816 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304457" + "plane" "(1322.89 -2811.88 114) (1322.89 -2811.88 18) (1330.76 -2814.18 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.960003 -0.279988 0 -26.0977] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316088" + side + { + "id" "304216" + "plane" "(1330 -2816 18) (1330 -2816 16) (1322 -2814 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304215" + "plane" "(1348 -2752 18) (1348 -2752 16) (1356 -2754 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304214" + "plane" "(1322 -2814 18) (1322 -2814 16) (1348 -2752 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.386732 0.922192 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304213" + "plane" "(1356 -2754 18) (1356 -2754 16) (1330 -2816 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.386727 0.922194 0 -469.33] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304212" + "plane" "(1356 -2754 16) (1348 -2752 16) (1322 -2814 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" "304211" + "plane" "(1330 -2816 18) (1322 -2814 18) (1348 -2752 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.386726 0.922194 0 47.1092] 0.125" + "vaxis" "[-0.922194 0.386727 0 43.1172] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316090" + side + { + "id" "304228" + "plane" "(1356 -2754 18) (1356 -2754 16) (1348 -2752 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 0.242536 0 -44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304227" + "plane" "(1392 -2694 18) (1392 -2694 16) (1400 -2698 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.894427 -0.447214 0 -40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304226" + "plane" "(1348 -2752 18) (1348 -2752 16) (1392 -2694 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.604387 0.796691 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304225" + "plane" "(1400 -2698 18) (1400 -2698 16) (1356 -2754 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.617822 0.786318 0 -147.595] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304224" + "plane" "(1348 -2752 16) (1356 -2754 16) (1400 -2698 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" "304223" + "plane" "(1356 -2754 18) (1348 -2752 18) (1392 -2694 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.604386 0.796691 0 47.0125] 0.125" + "vaxis" "[-0.796691 0.604386 0 25.6934] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316092" + side + { + "id" "304240" + "plane" "(1400 -2698 18) (1400 -2698 16) (1392 -2694 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 0.447214 0 40.3852] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304239" + "plane" "(1452 -2642 18) (1452 -2642 16) (1458 -2648 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304238" + "plane" "(1392 -2694 18) (1392 -2694 16) (1452 -2642 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.755689 0.65493 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304237" + "plane" "(1458 -2648 18) (1458 -2648 16) (1400 -2698 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.75741 0.652939 0 -320.716] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304236" + "plane" "(1392 -2694 16) (1400 -2698 16) (1458 -2648 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" "304235" + "plane" "(1400 -2698 18) (1392 -2694 18) (1452 -2642 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.755689 0.65493 0 47.0088] 0.125" + "vaxis" "[-0.65493 0.755689 0 43.916] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316094" + side + { + "id" "304252" + "plane" "(1458 -2648 18) (1458 -2648 16) (1452 -2642 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304251" + "plane" "(1526 -2600 18) (1526 -2600 16) (1530 -2608 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.447214 -0.894427 0 -54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304250" + "plane" "(1452 -2642 18) (1452 -2642 16) (1526 -2600 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.869686 0.493605 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304249" + "plane" "(1530 -2608 18) (1530 -2608 16) (1458 -2648 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.874157 0.485642 0 -213.593] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304248" + "plane" "(1452 -2642 16) (1458 -2648 16) (1530 -2608 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" "304247" + "plane" "(1458 -2648 18) (1452 -2642 18) (1526 -2600 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.869685 0.493605 0 47.013] 0.125" + "vaxis" "[-0.493605 0.869686 0 3.40039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316096" + side + { + "id" "304264" + "plane" "(1530 -2608 18) (1530 -2608 16) (1526 -2600 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 0.894427 0 54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304263" + "plane" "(1608 -2570 18) (1608 -2570 16) (1612 -2576 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.5547 -0.83205 0 -42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304262" + "plane" "(1526 -2600 18) (1526 -2600 16) (1608 -2570 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.939123 0.34358 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304261" + "plane" "(1612 -2576 18) (1612 -2576 16) (1530 -2608 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.931578 0.363541 0 -302.769] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304260" + "plane" "(1526 -2600 16) (1530 -2608 16) (1612 -2576 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" "304259" + "plane" "(1530 -2608 18) (1526 -2600 18) (1608 -2570 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.939122 0.343581 0 47.0349] 0.125" + "vaxis" "[-0.343581 0.939123 0 0.195313] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316098" + side + { + "id" "304276" + "plane" "(1612 -2576 18) (1612 -2576 16) (1608 -2570 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.5547 0.83205 0 42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304275" + "plane" "(1698 -2550 18) (1698 -2550 16) (1700 -2558 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -56.0923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304274" + "plane" "(1608 -2570 18) (1608 -2570 16) (1698 -2550 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.976187 0.216929 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304273" + "plane" "(1700 -2558 18) (1700 -2558 16) (1612 -2576 16)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.979715 0.200396 0 -246.198] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304272" + "plane" "(1608 -2570 16) (1612 -2576 16) (1700 -2558 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" "304271" + "plane" "(1612 -2576 18) (1608 -2570 18) (1698 -2550 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0.976187 0.21693 0 47.0312] 0.125" + "vaxis" "[-0.21693 0.976187 0 28.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316312" + side + { + "id" "304318" + "plane" "(1698.57 -2558.29 18) (1613.44 -2575.7 18) (1613.44 -2575.7 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.979715 0.200396 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304317" + "plane" "(1698.57 -2558.29 114) (1613.44 -2575.71 114) (1611.23 -2572.17 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304316" + "plane" "(1611.23 -2572.17 18) (1613.44 -2575.71 18) (1698.57 -2558.29 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304315" + "plane" "(1697.23 -2552.93 18) (1698.57 -2558.29 18) (1698.57 -2558.29 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304314" + "plane" "(1613.44 -2575.71 114) (1613.44 -2575.71 18) (1611.23 -2572.17 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304313" + "plane" "(1611.23 -2572.17 18) (1697.23 -2552.94 18) (1697.23 -2552.94 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316235" + side + { + "id" "304300" + "plane" "(1612 -2576 114) (1612 -2576 18) (1608 -2570 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.5547 0.83205 0 42.8067] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304299" + "plane" "(1608 -2570 114) (1608 -2570 18) (1609.65 -2569.63 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.976187 0.216929 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304298" + "plane" "(1613.44 -2575.71 18) (1612 -2576 18) (1612 -2576 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.979715 0.200396 0 -246.198] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304297" + "plane" "(1613.44 -2575.71 114) (1612 -2576 114) (1608 -2570 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304296" + "plane" "(1609.64 -2569.63 18) (1608 -2570 18) (1612 -2576 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304295" + "plane" "(1609.65 -2569.63 114) (1609.65 -2569.63 18) (1613.44 -2575.71 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.529992 -0.848002 0 -18.1396] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316467" + side + { + "id" "304354" + "plane" "(1610.66 -2576.52 18) (1531.67 -2607.35 18) (1531.67 -2607.35 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.931578 0.363541 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304353" + "plane" "(1608.11 -2572.96 114) (1610.66 -2576.52 114) (1531.67 -2607.35 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304352" + "plane" "(1529.76 -2603.53 18) (1531.67 -2607.35 18) (1610.66 -2576.52 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304351" + "plane" "(1608.11 -2572.96 18) (1610.66 -2576.52 18) (1610.66 -2576.52 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304350" + "plane" "(1531.67 -2607.35 114) (1531.67 -2607.35 18) (1529.77 -2603.53 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304349" + "plane" "(1529.76 -2603.53 18) (1608.11 -2572.96 18) (1608.11 -2572.96 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 60] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316418" + side + { + "id" "304336" + "plane" "(1530 -2608 114) (1530 -2608 18) (1526 -2600 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 0.894427 0 54.9839] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304335" + "plane" "(1526 -2600 114) (1526 -2600 18) (1527.69 -2599.38 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.939123 0.34358 0 60] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304334" + "plane" "(1531.67 -2607.35 18) (1530 -2608 18) (1530 -2608 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.931578 0.363541 0 -302.769] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304333" + "plane" "(1530 -2608 114) (1526 -2600 114) (1527.69 -2599.38 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304332" + "plane" "(1527.69 -2599.38 18) (1526 -2600 18) (1530 -2608 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304331" + "plane" "(1527.69 -2599.38 114) (1527.69 -2599.38 18) (1531.67 -2607.35 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.447213 -0.894427 0 -24.5156] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316661" + side + { + "id" "304390" + "plane" "(1528.46 -2608.86 18) (1459.93 -2646.93 18) (1459.93 -2646.93 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.874157 0.485642 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304389" + "plane" "(1528.46 -2608.86 114) (1459.93 -2646.93 114) (1457.04 -2644.04 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304388" + "plane" "(1457.04 -2644.04 18) (1459.93 -2646.93 18) (1528.46 -2608.86 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304387" + "plane" "(1526.3 -2604.83 18) (1528.46 -2608.85 18) (1528.46 -2608.85 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304386" + "plane" "(1459.93 -2646.93 114) (1459.93 -2646.93 18) (1457.04 -2644.04 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304385" + "plane" "(1457.04 -2644.04 18) (1526.3 -2604.83 18) (1526.3 -2604.83 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0.870257 0.492598 0 96.8125] 0.25" + "vaxis" "[0 0 -1 -79.5987] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316590" + side + { + "id" "304372" + "plane" "(1458 -2648 114) (1458 -2648 18) (1452 -2642 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 13.4353] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304371" + "plane" "(1452 -2642 114) (1452 -2642 18) (1453.91 -2640.91 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.869686 0.493605 0 60] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304370" + "plane" "(1459.93 -2646.93 18) (1458 -2648 18) (1458 -2648 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.874157 0.485642 0 -213.593] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304369" + "plane" "(1459.93 -2646.93 114) (1458 -2648 114) (1452 -2642 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304368" + "plane" "(1453.91 -2640.91 18) (1452 -2642 18) (1458 -2648 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304367" + "plane" "(1453.91 -2640.91 114) (1453.91 -2640.91 18) (1459.93 -2646.93 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.707099 -0.707114 0 -56.8594] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316679" + side + { + "id" "304396" + "plane" "(1400 -2698 114) (1400 -2698 18) (1392 -2694 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[-0.315546 0.94891 0 21.123] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304395" + "plane" "(1392 -2694 114) (1392 -2694 18) (1393.83 -2692.41 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.755689 0.65493 0 60] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304394" + "plane" "(1401.84 -2696.42 18) (1400 -2698 18) (1400 -2698 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.75741 0.652939 0 -320.716] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304393" + "plane" "(1400 -2698 114) (1392 -2694 114) (1393.83 -2692.41 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304392" + "plane" "(1392 -2694 18) (1400 -2698 18) (1401.84 -2696.42 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304391" + "plane" "(1393.83 -2692.41 114) (1393.83 -2692.41 18) (1401.84 -2696.42 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.894424 -0.447219 0 -10.5117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316768" + side + { + "id" "304426" + "plane" "(1456.39 -2649.39 18) (1401.83 -2696.42 18) (1401.83 -2696.42 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.75741 0.652939 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304425" + "plane" "(1456.39 -2649.39 114) (1401.83 -2696.42 114) (1398.35 -2694.68 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304424" + "plane" "(1398.35 -2694.67 18) (1401.83 -2696.42 18) (1456.39 -2649.39 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304423" + "plane" "(1401.83 -2696.42 114) (1401.83 -2696.42 18) (1398.35 -2694.67 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304422" + "plane" "(1453.53 -2646.53 18) (1456.39 -2649.39 18) (1456.39 -2649.39 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304421" + "plane" "(1398.35 -2694.67 18) (1453.53 -2646.53 18) (1453.53 -2646.53 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0.753568 0.657369 0 87.3682] 0.25" + "vaxis" "[0 0 -1 -79.7553] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316809" + side + { + "id" "304432" + "plane" "(1356 -2754 114) (1356 -2754 18) (1348 -2752 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[-0.494955 0.868919 0 1.46777] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304431" + "plane" "(1348 -2752 114) (1348 -2752 18) (1349.69 -2749.77 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.604387 0.796691 0 60] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304430" + "plane" "(1357.56 -2752.02 18) (1356 -2754 18) (1356 -2754 114)" + "material" "DEV/REFLECTIVITY_80" + "uaxis" "[0.617822 0.786318 0 -147.595] 0.25" + "vaxis" "[0 0 -1 224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304429" + "plane" "(1356 -2754 114) (1348 -2752 114) (1349.69 -2749.77 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304428" + "plane" "(1348 -2752 18) (1356 -2754 18) (1357.56 -2752.02 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304427" + "plane" "(1349.69 -2749.77 114) (1349.69 -2749.77 18) (1357.56 -2752.02 18)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0.96153 -0.274701 0 -36.9023] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2316930" + side + { + "id" "304474" + "plane" "(1352 -2753 18) (1356 -2754 18) (1356 -2754 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 -0.242536 0 44.3899] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304473" + "plane" "(1356 -2754 114) (1356 -2754 18) (1330.76 -2814.18 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.386727 0.922194 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304472" + "plane" "(1352 -2753 114) (1356 -2754 114) (1330.76 -2814.18 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304471" + "plane" "(1356 -2754 18) (1352 -2753 18) (1327.43 -2813.21 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304470" + "plane" "(1330.76 -2814.18 114) (1330.76 -2814.18 18) (1327.43 -2813.21 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304469" + "plane" "(1327.43 -2813.21 18) (1352 -2753 18) (1352 -2753 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 87] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892977" + side + { + "id" "349465" + "plane" "(1312 -2880 358) (1320 -2880 358) (1330 -2816 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349464" + "plane" "(1320 -2880 358) (1312 -2880 358) (1312 -2880 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349463" + "plane" "(1322 -2814 358) (1330 -2816 358) (1330 -2816 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349462" + "plane" "(1312 -2880 358) (1322 -2814 358) (1322 -2814 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0.149805 0.988715 0 688.391] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349461" + "plane" "(1330 -2816 358) (1320 -2880 358) (1320 -2880 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349460" + "plane" "(1320 -2880 377) (1312 -2880 377) (1322 -2814 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893008" + side + { + "id" "349489" + "plane" "(1348 -2752 358) (1356 -2754 358) (1400 -2698 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349488" + "plane" "(1356 -2754 358) (1348 -2752 358) (1348 -2752 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349487" + "plane" "(1392 -2694 358) (1400 -2698 358) (1400 -2698 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349486" + "plane" "(1348 -2752 358) (1392 -2694 358) (1392 -2694 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0.604386 0.796691 0 790.869] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349485" + "plane" "(1400 -2698 358) (1356 -2754 358) (1356 -2754 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349484" + "plane" "(1356 -2754 377) (1348 -2752 377) (1392 -2694 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893027" + side + { + "id" "349501" + "plane" "(1392 -2694 358) (1400 -2698 358) (1458 -2648 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349500" + "plane" "(1400 -2698 358) (1392 -2694 358) (1392 -2694 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349499" + "plane" "(1452 -2642 358) (1458 -2648 358) (1458 -2648 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349498" + "plane" "(1392 -2694 358) (1452 -2642 358) (1452 -2642 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0.755689 0.654931 0 146.75] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349497" + "plane" "(1458 -2648 358) (1400 -2698 358) (1400 -2698 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349496" + "plane" "(1400 -2698 377) (1392 -2694 377) (1452 -2642 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893029" + side + { + "id" "349513" + "plane" "(1452 -2642 358) (1458 -2648 358) (1530 -2608 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349512" + "plane" "(1458 -2648 358) (1452 -2642 358) (1452 -2642 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349511" + "plane" "(1526 -2600 358) (1530 -2608 358) (1530 -2608 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349510" + "plane" "(1452 -2642 358) (1526 -2600 358) (1526 -2600 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0.869685 0.493606 0 532.803] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349509" + "plane" "(1530 -2608 358) (1458 -2648 358) (1458 -2648 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349508" + "plane" "(1458 -2648 377) (1452 -2642 377) (1526 -2600 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893046" + side + { + "id" "349525" + "plane" "(1526 -2600 358) (1530 -2608 358) (1612 -2576 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349524" + "plane" "(1530 -2608 358) (1526 -2600 358) (1526 -2600 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349523" + "plane" "(1608 -2570 358) (1612 -2576 358) (1612 -2576 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349522" + "plane" "(1526 -2600 358) (1608 -2570 358) (1608 -2570 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0.939122 0.343582 0 660.617] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349521" + "plane" "(1612 -2576 358) (1530 -2608 358) (1530 -2608 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349520" + "plane" "(1530 -2608 377) (1526 -2600 377) (1608 -2570 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893048" + side + { + "id" "349537" + "plane" "(1608 -2570 358) (1612 -2576 358) (1700 -2558 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349536" + "plane" "(1612 -2576 358) (1608 -2570 358) (1608 -2570 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349535" + "plane" "(1698 -2550 358) (1700 -2558 358) (1700 -2558 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349534" + "plane" "(1608 -2570 358) (1698 -2550 358) (1698 -2550 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0.976187 0.216931 0 651.872] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349533" + "plane" "(1700 -2558 358) (1612 -2576 358) (1612 -2576 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349532" + "plane" "(1612 -2576 377) (1608 -2570 377) (1698 -2550 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893057" + side + { + "id" "349549" + "plane" "(1698 -2550 358) (1700 -2558 358) (1792 -2552 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349548" + "plane" "(1700 -2558 358) (1698 -2550 358) (1698 -2550 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349547" + "plane" "(1792 -2544 358) (1792 -2552 358) (1792 -2552 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349546" + "plane" "(1698 -2550 358) (1792 -2544 358) (1792 -2544 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[1 0 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349545" + "plane" "(1792 -2552 358) (1700 -2558 358) (1700 -2558 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349544" + "plane" "(1700 -2558 377) (1698 -2550 377) (1792 -2544 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892976" + side + { + "id" "349459" + "plane" "(1320 -2880 382) (1312 -2880 382) (1322 -2814 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349458" + "plane" "(1312 -2880 377) (1312 -2880 382) (1320 -2880 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349457" + "plane" "(1330 -2816 377) (1330 -2816 382) (1322 -2814 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349456" + "plane" "(1322 -2814 377) (1322 -2814 382) (1312 -2880 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.149806 -0.988715 0 218.369] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349455" + "plane" "(1320 -2880 377) (1320 -2880 382) (1330 -2816 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349454" + "plane" "(1312 -2880 377) (1320 -2880 377) (1330 -2816 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892997" + side + { + "id" "349471" + "plane" "(1330 -2816 382) (1322 -2814 382) (1348 -2752 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349470" + "plane" "(1322 -2814 377) (1322 -2814 382) (1330 -2816 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349469" + "plane" "(1356 -2754 377) (1356 -2754 382) (1348 -2752 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349468" + "plane" "(1348 -2752 377) (1348 -2752 382) (1322 -2814 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.386727 -0.922194 0 125.569] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349467" + "plane" "(1330 -2816 377) (1330 -2816 382) (1356 -2754 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349466" + "plane" "(1356 -2754 377) (1348 -2752 377) (1322 -2814 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893007" + side + { + "id" "349483" + "plane" "(1356 -2754 382) (1348 -2752 382) (1392 -2694 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349482" + "plane" "(1348 -2752 377) (1348 -2752 382) (1356 -2754 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349481" + "plane" "(1400 -2698 377) (1400 -2698 382) (1392 -2694 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349480" + "plane" "(1392 -2694 377) (1392 -2694 382) (1348 -2752 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.604387 -0.796691 0 115.895] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349479" + "plane" "(1356 -2754 377) (1356 -2754 382) (1400 -2698 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349478" + "plane" "(1348 -2752 377) (1356 -2754 377) (1400 -2698 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893026" + side + { + "id" "349495" + "plane" "(1400 -2698 382) (1392 -2694 382) (1452 -2642 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349494" + "plane" "(1392 -2694 377) (1392 -2694 382) (1400 -2698 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349493" + "plane" "(1458 -2648 377) (1458 -2648 382) (1452 -2642 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349492" + "plane" "(1452 -2642 377) (1452 -2642 382) (1392 -2694 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.75569 -0.65493 0 248.035] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349491" + "plane" "(1400 -2698 377) (1400 -2698 382) (1458 -2648 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349490" + "plane" "(1392 -2694 377) (1400 -2698 377) (1458 -2648 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893028" + side + { + "id" "349507" + "plane" "(1458 -2648 382) (1452 -2642 382) (1526 -2600 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349506" + "plane" "(1452 -2642 377) (1452 -2642 382) (1458 -2648 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349505" + "plane" "(1530 -2608 377) (1530 -2608 382) (1526 -2600 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349504" + "plane" "(1526 -2600 377) (1526 -2600 382) (1452 -2642 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.869686 -0.493605 0 373.977] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349503" + "plane" "(1458 -2648 377) (1458 -2648 382) (1530 -2608 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349502" + "plane" "(1452 -2642 377) (1458 -2648 377) (1530 -2608 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893045" + side + { + "id" "349519" + "plane" "(1530 -2608 382) (1526 -2600 382) (1608 -2570 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349518" + "plane" "(1526 -2600 377) (1526 -2600 382) (1530 -2608 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349517" + "plane" "(1612 -2576 377) (1612 -2576 382) (1608 -2570 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349516" + "plane" "(1608 -2570 377) (1608 -2570 382) (1526 -2600 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.939123 -0.34358 0 246.178] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349515" + "plane" "(1530 -2608 377) (1530 -2608 382) (1612 -2576 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349514" + "plane" "(1526 -2600 377) (1530 -2608 377) (1612 -2576 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893047" + side + { + "id" "349531" + "plane" "(1612 -2576 382) (1608 -2570 382) (1698 -2550 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349530" + "plane" "(1608 -2570 377) (1608 -2570 382) (1612 -2576 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349529" + "plane" "(1700 -2558 377) (1700 -2558 382) (1698 -2550 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349528" + "plane" "(1698 -2550 377) (1698 -2550 382) (1608 -2570 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.976187 -0.216929 0 254.92] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349527" + "plane" "(1612 -2576 377) (1612 -2576 382) (1700 -2558 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349526" + "plane" "(1608 -2570 377) (1612 -2576 377) (1700 -2558 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4893056" + side + { + "id" "349543" + "plane" "(1700 -2558 382) (1698 -2550 382) (1792 -2544 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349542" + "plane" "(1698 -2550 377) (1698 -2550 382) (1700 -2558 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349541" + "plane" "(1792 -2552 377) (1792 -2552 382) (1792 -2544 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349540" + "plane" "(1792 -2544 377) (1792 -2544 382) (1698 -2550 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.997969 -0.0636995 0 92.688] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349539" + "plane" "(1700 -2558 377) (1700 -2558 382) (1792 -2552 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349538" + "plane" "(1698 -2550 377) (1700 -2558 377) (1792 -2552 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "2326841" + "classname" "func_detail" + solid + { + "id" "4892973" + side + { + "id" "349435" + "plane" "(1312 -2880 358) (1312 -2896 358) (1432 -2896 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349434" + "plane" "(1312 -2896 358) (1312 -2880 358) (1312 -2880 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[0 1 0 472.745] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349433" + "plane" "(1432 -2880 358) (1432 -2896 358) (1432 -2896 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349432" + "plane" "(1312 -2880 358) (1432 -2880 358) (1432 -2880 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349431" + "plane" "(1432 -2896 358) (1312 -2896 358) (1312 -2896 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[-1 0 0 -974.714] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349430" + "plane" "(1312 -2896 377) (1312 -2880 377) (1432 -2880 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892972" + side + { + "id" "349429" + "plane" "(1312 -2896 382) (1312 -2880 382) (1432 -2880 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349428" + "plane" "(1312 -2880 377) (1312 -2880 382) (1312 -2896 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 434.004] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349427" + "plane" "(1432 -2896 377) (1432 -2896 382) (1432 -2880 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349426" + "plane" "(1432 -2880 377) (1432 -2880 382) (1312 -2880 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349425" + "plane" "(1312 -2896 377) (1312 -2896 382) (1432 -2896 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 306] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349424" + "plane" "(1312 -2880 377) (1312 -2896 377) (1432 -2896 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2327067" + "classname" "func_detail" + solid + { + "id" "4892946" + side + { + "id" "349423" + "plane" "(1520 -3136 377) (1520 -3136 358) (1520 -3144 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349422" + "plane" "(1344 -3144 358) (1344 -3136 358) (1344 -3136 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349421" + "plane" "(1520 -3136 358) (1520 -3136 377) (1344 -3136 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -431.915] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349420" + "plane" "(1344 -3136 358) (1344 -3144 358) (1520 -3144 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349419" + "plane" "(1344 -3144 358) (1344 -3144 377) (1520 -3144 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349418" + "plane" "(1344 -3144 377) (1344 -3136 377) (1520 -3136 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892945" + side + { + "id" "349417" + "plane" "(1344 -3144 382) (1344 -3136 382) (1520 -3136 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349416" + "plane" "(1520 -3144 382) (1520 -3136 382) (1520 -3136 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349415" + "plane" "(1344 -3136 377) (1344 -3136 382) (1344 -3144 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349414" + "plane" "(1520 -3136 377) (1520 -3136 382) (1344 -3136 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349413" + "plane" "(1344 -3144 377) (1344 -3144 382) (1520 -3144 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349412" + "plane" "(1344 -3136 377) (1344 -3144 377) (1520 -3144 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "2281023" + "classname" "func_detail" + solid + { + "id" "4892432" + side + { + "id" "349027" + "plane" "(1280 -4136 144) (1280 -4208 144) (2176 -4208 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[0 1 0 60] 0.125" + "vaxis" "[1 0 0 -332] 0.125" + "rotation" "90" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "349026" + "plane" "(1280 -4208 148) (1280 -4208 144) (1280 -4136 144)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -398] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349025" + "plane" "(2176 -4136 148) (2176 -4136 144) (2176 -4208 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349024" + "plane" "(1280 -4136 148) (1280 -4136 144) (2176 -4136 144)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.931968 -0.362542 0 -398] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349023" + "plane" "(2176 -4208 148) (2176 -4208 144) (1280 -4208 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" "349022" + "plane" "(1280 -4208 148) (1280 -4136 148) (2176 -4136 148)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892424" + side + { + "id" "349009" + "plane" "(1280 -4208 208) (1280 -4136 208) (2176 -4136 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" "349008" + "plane" "(1280 -4136 205) (1280 -4136 208) (1280 -4208 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 -398] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349007" + "plane" "(2176 -4208 205) (2176 -4208 208) (2176 -4136 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" "349006" + "plane" "(2176 -4136 205) (2176 -4136 208) (1280 -4136 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.931968 -0.362542 0 -398] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349005" + "plane" "(1280 -4208 205) (1280 -4208 208) (2176 -4208 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" "349004" + "plane" "(1280 -4136 205) (1280 -4208 205) (2176 -4208 205)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892431" + side + { + "id" "349021" + "plane" "(1280 -4208 205) (1280 -4208 148) (1280 -4136 148)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 336] 0.063" + "vaxis" "[0 0 -1 -55] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349020" + "plane" "(2176 -4136 205) (2176 -4136 148) (2176 -4208 148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349019" + "plane" "(1280 -4136 205) (1280 -4136 148) (2176 -4136 148)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.931968 -0.362542 0 336.141] 0.063" + "vaxis" "[0 0 -1 -55] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349018" + "plane" "(2176 -4208 205) (2176 -4208 148) (1280 -4208 148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349017" + "plane" "(1280 -4208 205) (1280 -4136 205) (2176 -4136 205)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349016" + "plane" "(1280 -4136 148) (1280 -4208 148) (2176 -4208 148)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "2282081" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "465 -5049 0.250015" + editor + { + "color" "121 254 0" + "groupid" "3536106" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "2282085" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_8.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "495 -5047 0.250015" + editor + { + "color" "121 254 0" + "groupid" "3536106" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "2240721" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/saturn_ib.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "104 -2345 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228442" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2380 -4998 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228482" + "classname" "prop_static" + "angles" "0 90 180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2386 -4916 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228562" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_corner_c.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2306 -4730 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228602" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2306 -4468 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228638" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2306 -4404 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228690" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_corner_c.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2306 -4374 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228814" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_corner_c.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2054 -4374 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228838" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2172 -4374 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228866" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_corner_c.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2054 -4730 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228894" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2172 -4374 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228922" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2108 -4374 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228962" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2076 -4374 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2228998" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2076 -4730 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229002" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2172 -4730 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229006" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2108 -4730 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229010" + "classname" "prop_static" + "angles" "0 180 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2172 -4730 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229030" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2054 -4468 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229034" + "classname" "prop_static" + "angles" "0 90 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2054 -4404 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229078" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2386 -4884 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229098" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2386 -4876 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229162" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_endcap.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2386 -4998 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229278" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2042 -4480 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229318" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2042 -4352 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229594" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1612 -4742 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229614" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_endcap.mdl" + "renderamt" "255" + "rendercolor" "187 187 187" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1436 -4742 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229674" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1436 -4742 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229690" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1484 -4742 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229722" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2380 -5498 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229842" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1647 -4742 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229886" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2137 -4742 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2229926" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_endcap.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2042 -4736 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230078" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2036 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230106" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1780 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230130" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1524 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230186" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1460 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230198" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1444 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230296" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1985 -4481 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230332" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1694 -4481 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230356" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1985 -4417 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230376" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1985 -4385 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230440" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_endcap.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2042 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230456" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_endcap.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1436 -4380 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230468" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1694 -4385 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230472" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1694 -4417 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230484" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1601 -4481 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230488" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1601 -4417 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230492" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1601 -4385 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230532" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1470 -4481 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230536" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1470 -4417 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230540" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1470 -4385 307" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230711" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_endcap_flat.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1718 -4901 283" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230715" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_002b_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1652 -4901 290" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230859" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "187 187 187" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1581 -4652 292" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2230879" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "187 187 187" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1581 -4647 292" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2215334" + "classname" "func_detail" + solid + { + "id" "2215246" + side + { + "id" "300991" + "plane" "(543.538 -5049.75 160) (548.105 -5042 160) (555 -5046.07 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300990" + "plane" "(548.105 -5042 -2.1923) (543.538 -5049.75 -2.1923) (550.43 -5053.81 -2.1923)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24.7964] 0.25" + "vaxis" "[0 -1 0 -26.9838] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300989" + "plane" "(554.996 -5046.06 -2.1919) (550.428 -5053.81 -2.1919) (550.43 -5053.81 160)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 1 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300988" + "plane" "(543.538 -5049.75 -2.19196) (548.105 -5042 -2.19196) (548.105 -5042 160)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[0 1 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300987" + "plane" "(550.432 -5053.81 -2.19195) (543.538 -5049.75 -2.19195) (543.538 -5049.75 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24.7964] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300986" + "plane" "(548.105 -5042 -2.19191) (554.996 -5046.06 -2.19191) (555 -5046.06 160)" + "material" "VEHICLE/RUBBERTRAINFLOOR001A" + "uaxis" "[1 0 0 12] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "121 254 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "121 254 0" + "groupid" "3536106" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +entity +{ + "id" "2218815" + "classname" "func_detail" + solid + { + "id" "2292511" + side + { + "id" "303298" + "plane" "(554 -5271 32) (554 -5271 10) (550 -5264 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 -0.868243 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303297" + "plane" "(606 -5200 32) (606 -5200 10) (613 -5204 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 0.496139 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303296" + "plane" "(613 -5204 32) (613 -5204 10) (554 -5271 10)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0.66088 0.750491 0 34] 0.125" + "vaxis" "[0 0 -1 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303295" + "plane" "(550 -5264 32) (550 -5264 10) (606 -5200 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.658505 -0.752577 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303294" + "plane" "(613 -5204 10) (606 -5200 10) (550 -5264 10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "303293" + "plane" "(554 -5271 32) (550 -5264 32) (606 -5200 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" "121 254 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "121 254 0" + "groupid" "3536106" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 16000]" + } +} +entity +{ + "id" "2199994" + "classname" "func_detail" + solid + { + "id" "2199991" + side + { + "id" "300088" + "plane" "(1640 -5040 284) (2113 -5040 284) (2113 -5472 284)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300087" + "plane" "(1640 -5472 280) (2113 -5472 280) (2113 -5040 280)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300086" + "plane" "(1640 -5040 284) (1640 -5472 284) (1640 -5472 280)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[0 1 0 4] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300085" + "plane" "(2113 -5040 280) (2113 -5472 280) (2113 -5472 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[0 1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300084" + "plane" "(2113 -5040 284) (1640 -5040 284) (1640 -5040 280)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19.0012] 0.25" + "vaxis" "[1 0 0 -91.9941] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300083" + "plane" "(2113 -5472 280) (1640 -5472 280) (1640 -5472 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[-1 0 0 -91.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "2200029" + "classname" "func_detail" + solid + { + "id" "2200026" + side + { + "id" "300100" + "plane" "(1649 -4960 284) (1649 -4792 284) (2136 -4792 284)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300099" + "plane" "(1649 -4792 280) (1649 -4960 280) (2136 -4960 280)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300098" + "plane" "(1649 -4960 280) (1649 -4792 280) (1649 -4792 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[0 1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300097" + "plane" "(2136 -4792 280) (2136 -4960 280) (2136 -4960 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[0 1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300096" + "plane" "(1649 -4792 280) (2136 -4792 280) (2136 -4792 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19.0011] 0.25" + "vaxis" "[1 0 0 -27.9941] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300095" + "plane" "(2136 -4960 280) (1649 -4960 280) (1649 -4960 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[-1 0 0 -59.9971] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "2200230" + "classname" "func_detail" + solid + { + "id" "2200228" + side + { + "id" "300112" + "plane" "(1472 -4696 284) (1472 -4408 284) (1600 -4408 284)" + "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" "300111" + "plane" "(1472 -4408 280) (1472 -4696 280) (1600 -4696 280)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300110" + "plane" "(1472 -4696 280) (1472 -4408 280) (1472 -4408 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[0 -1 0 -91.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300109" + "plane" "(1600 -4408 280) (1600 -4696 280) (1600 -4696 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 18.9989] 0.25" + "vaxis" "[0 1 0 99.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300108" + "plane" "(1472 -4408 280) (1600 -4408 280) (1600 -4408 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[1 0 0 4] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300107" + "plane" "(1600 -4696 280) (1472 -4696 280) (1472 -4696 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[1 0 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "2200239" + "classname" "func_detail" + solid + { + "id" "2200236" + side + { + "id" "300124" + "plane" "(1696 -4696 284) (1696 -4408 284) (1984 -4408 284)" + "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" "300123" + "plane" "(1696 -4408 280) (1696 -4696 280) (1984 -4696 280)" + "material" "CS_APOLLO/CEILING/HR_CEILING_TILE_001_COLOR_DARK" + "uaxis" "[1 0 0 -164] 0.125" + "vaxis" "[0 -1 0 -576] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300122" + "plane" "(1696 -4696 280) (1696 -4408 280) (1696 -4408 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[0 -1 0 -59.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300121" + "plane" "(1984 -4408 280) (1984 -4696 280) (1984 -4696 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[0 1 0 36] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300120" + "plane" "(1696 -4408 280) (1984 -4408 280) (1984 -4408 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[1 0 0 4] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "300119" + "plane" "(1984 -4696 280) (1696 -4696 280) (1696 -4696 284)" + "material" "DE_NUKE/NUKE_FLOOR_TRIM_01" + "uaxis" "[0 0 1 19] 0.25" + "vaxis" "[1 0 0 4] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +hidden +{ + entity + { + "id" "2202768" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "187 187 187" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1643 -5111.6 298" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2202772" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "187 187 187" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1679 -5111.6 298" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2202776" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "187 187 187" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1807 -5111.6 298" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2202908" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1980 -5498 287.983" + editor + { + "color" "118 159 0" + "groupid" "6539407" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203216" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2108 -5498 288" + editor + { + "color" "118 159 0" + "groupid" "6539407" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203480" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_512.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1638 -5000 306" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203484" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_512.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2113 -5000 306" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203496" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1596 -4998 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203516" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1852 -4998 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203871" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2236 -5498 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203887" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2364 -5498 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203903" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2108 -4998 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203919" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_corner_c.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2386 -5498 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203935" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2386 -5236 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2203987" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2386 -4980 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2204012" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_corner_c.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2386 -4742 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2204076" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2386 -4748 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2204147" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2124 -4742 288" + editor + { + "color" "204 113 0" + "groupid" "6539346" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2204467" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1868 -4742 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2204479" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1612 -4742 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2204529" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1430 -4480 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2204578" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1430 -4352 288" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2186461" + "classname" "func_detail" + solid + { + "id" "2189439" + side + { + "id" "299788" + "plane" "(-352 -5144 32) (-398 -5098 32) (-390 -5090 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.707896 -0.706315 0 475.55] 0.125" + "vaxis" "[0.707107 0.707107 0 195.055] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299787" + "plane" "(-352 -5144 24) (-344 -5136 24) (-390 -5090 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" + } + side + { + "id" "299786" + "plane" "(-352 -5144 24) (-352 -5144 32) (-344 -5136 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" "299785" + "plane" "(-344 -5136 24) (-344 -5136 32) (-390 -5090 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.707106 -0.707105 -0.00111816 441] 0.125" + "vaxis" "[0 0 -1 171] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299784" + "plane" "(-398 -5098 24) (-398 -5098 32) (-352 -5144 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" "299783" + "plane" "(-390 -5090 24) (-390 -5090 32) (-398 -5098 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2189440" + side + { + "id" "299794" + "plane" "(-324.567 -5195.95 32) (-352 -5144 32) (-344 -5136 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.483169 -0.875526 0 -439.263] 0.125" + "vaxis" "[0.876067 0.48219 0 634.125] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299793" + "plane" "(-344 -5136 24) (-352 -5144 24) (-324.564 -5195.94 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" + } + side + { + "id" "299792" + "plane" "(-352 -5144 24) (-344 -5136 24) (-344 -5136 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" "299791" + "plane" "(-344 -5136 24) (-314.119 -5190.29 24) (-314.119 -5190.29 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.482197 -0.876061 -0.00111816 -463.815] 0.125" + "vaxis" "[0 0 -1 171.493] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299790" + "plane" "(-324.564 -5195.94 24) (-352 -5144 24) (-352 -5144 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" "299789" + "plane" "(-314.117 -5190.29 24) (-324.564 -5195.94 24) (-324.564 -5195.94 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2189441" + side + { + "id" "299800" + "plane" "(-344 -5136 24) (-336 -5128 24) (-304.082 -5184.86 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.490554 -0.87141 0 -236.868] 0.125" + "vaxis" "[0.871369 0.490614 -0.00458256 881.172] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299799" + "plane" "(-344 -5136 16) (-315.628 -5191.11 16) (-304.078 -5184.86 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" "299798" + "plane" "(-336 -5128 16) (-336 -5128 24) (-344 -5136 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" "299797" + "plane" "(-304.078 -5184.86 16) (-304.082 -5184.86 24) (-336 -5128 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.489489 -0.872008 -0.00121381 -264.007] 0.125" + "vaxis" "[-0.00262761 0 -1 100.02] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299796" + "plane" "(-344 -5136 16) (-344 -5136 24) (-315.625 -5191.11 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" "299795" + "plane" "(-315.628 -5191.11 16) (-315.625 -5191.11 24) (-304.082 -5184.86 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2189442" + side + { + "id" "299806" + "plane" "(-344 -5136 24) (-390 -5090 24) (-382 -5082 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.70792 -0.706291 0 466.014] 0.125" + "vaxis" "[0.706284 0.707913 -0.00556195 136.869] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299805" + "plane" "(-344 -5136 16) (-336 -5128 16) (-382 -5082 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" "299804" + "plane" "(-344 -5136 16) (-344 -5136 24) (-336 -5128 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" "299803" + "plane" "(-336 -5128 16) (-336 -5128 24) (-382 -5082 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.707112 -0.7071 -0.00115193 430.9] 0.125" + "vaxis" "[-0.00278096 -0.00115193 -1 53.1499] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299802" + "plane" "(-390 -5090 16) (-390 -5090 24) (-344 -5136 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" "299801" + "plane" "(-382 -5082 16) (-382 -5082 24) (-390 -5090 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2189443" + side + { + "id" "299812" + "plane" "(-336 -5128 16) (-382 -5082 16) (-374 -5074 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.707107 -0.707107 0 421.071] 0.125" + "vaxis" "[0.707107 0.707107 0 14.541] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299811" + "plane" "(-336 -5128 8) (-328 -5120 8) (-374 -5074 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" "299810" + "plane" "(-336 -5128 8) (-336 -5128 16) (-328 -5120 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" "299809" + "plane" "(-328 -5120 8) (-328 -5120 16) (-374 -5074 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.707105 -0.707108 0 421] 0.125" + "vaxis" "[0 0 -1 44] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299808" + "plane" "(-382 -5082 8) (-382 -5082 16) (-336 -5128 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" "299807" + "plane" "(-374 -5074 8) (-374 -5074 16) (-382 -5082 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2189444" + side + { + "id" "299818" + "plane" "(-336 -5128 16) (-328 -5120 16) (-294.046 -5179.43 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.496066 -0.868284 0 -78.5439] 0.125" + "vaxis" "[0.868285 0.496066 0 1013.89] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299817" + "plane" "(-336 -5128 8) (-305.668 -5185.72 8) (-294.043 -5179.43 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" "299816" + "plane" "(-328 -5120 8) (-328 -5120 16) (-336 -5128 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" "299815" + "plane" "(-294.043 -5179.43 8) (-294.046 -5179.43 16) (-328 -5120 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.496066 -0.868285 0 -78.5547] 0.125" + "vaxis" "[0 0 -1 48.6318] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299814" + "plane" "(-336 -5128 8) (-336 -5128 16) (-305.668 -5185.71 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" "299813" + "plane" "(-305.668 -5185.72 8) (-305.668 -5185.71 16) (-294.046 -5179.43 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2189445" + side + { + "id" "299824" + "plane" "(-328 -5120 8) (-320 -5112 8) (-283.995 -5173.99 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.502216 -0.864742 0 -415.989] 0.125" + "vaxis" "[0.864742 0.502216 0 142.381] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299823" + "plane" "(-328 -5120 0) (-295.709 -5180.33 0) (-284 -5174 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" "299822" + "plane" "(-320 -5112 0) (-320 -5112 8) (-328 -5120 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" "299821" + "plane" "(-284 -5174 0) (-283.995 -5173.99 8) (-320 -5112 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.502216 -0.864742 0 -416] 0.125" + "vaxis" "[0 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299820" + "plane" "(-328 -5120 0) (-328 -5120 8) (-295.711 -5180.34 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" "299819" + "plane" "(-295.709 -5180.33 0) (-295.711 -5180.34 8) (-283.995 -5173.99 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2189446" + side + { + "id" "299830" + "plane" "(-320 -5112 8) (-328 -5120 8) (-374 -5074 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.721387 -0.692531 0 19.3458] 0.125" + "vaxis" "[0.692532 0.721388 0 474.744] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299829" + "plane" "(-328 -5120 0) (-320 -5112 0) (-366.939 -5066.94 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" "299828" + "plane" "(-328 -5120 0) (-328 -5120 8) (-320 -5112 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" "299827" + "plane" "(-320 -5112 0) (-320 -5112 8) (-366.939 -5066.94 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.721358 -0.692563 0 18] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299826" + "plane" "(-374 -5074 0) (-374 -5074 8) (-328 -5120 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" "299825" + "plane" "(-366.939 -5066.94 0) (-366.939 -5066.94 8) (-374 -5074 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "2190262" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-578 -5266 32.4988" + editor + { + "color" "232 121 0" + "groupid" "2190326" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2190617" + "classname" "prop_static" + "angles" "0 185.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_256.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1016 -4458 -19" + editor + { + "color" "250 147 0" + "groupid" "3400656" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2166981" + "classname" "prop_static" + "angles" "0 122.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1230.47 -4997.21 32.4877" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -2768]" + } + } +} +hidden +{ + entity + { + "id" "2166985" + "classname" "prop_static" + "angles" "0 99 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1310 -5012.84 32.2488" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2167005" + "classname" "prop_static" + "angles" "0 279.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1453.21 -5035.52 32.2488" + editor + { + "color" "249 130 0" + "groupid" "6017945" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2167273" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/palmetto_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1406.4 -3676.69 32.4988" + editor + { + "color" "116 197 0" + "groupid" "2190555" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2157491" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2519 -3903 352.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "2157525" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac04.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2519 -3969 352.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "2144250" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-368 -6152 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "2144274" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-368 -5808 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "2144510" + "classname" "prop_static" + "angles" "0 165 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/props_interiors/cashregister01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-292 -6024 72" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "2144530" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_64.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-360 -6248 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5500]" + } + } +} +entity +{ + "id" "2144568" + "classname" "func_detail" + solid + { + "id" "4616133" + side + { + "id" "343432" + "plane" "(-307 -5904 32.0762) (-307 -6056 32.0762) (-280 -6048 32.0762)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343431" + "plane" "(-307 -6056 35) (-307 -6056 32.0823) (-307 -5904 32.0823)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 -95.994] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343430" + "plane" "(-280 -5912 35) (-280 -5912 32.0823) (-280 -6048 32.0823)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343429" + "plane" "(-307 -5904 35) (-307 -5904 32.0823) (-280 -5912 32.0823)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 -111.996] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343428" + "plane" "(-280 -6048 35) (-280 -6048 32.0823) (-307 -6056 32.0823)" + "material" "STONE/COUNTER01" + "uaxis" "[1 0 0 -111.998] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343427" + "plane" "(-307 -6056 35) (-307 -5904 35) (-280 -5912 35)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4616114" + side + { + "id" "343414" + "plane" "(-310 -5900 72) (-279 -5910 72) (-278 -6050 72)" + "material" "TILE/URBAN_COUNTERTOP01B" + "uaxis" "[1 0 0 -16] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343413" + "plane" "(-310 -5900 72) (-309 -6059 72) (-309 -6059 68)" + "material" "TILE/URBAN_COUNTERTOP01B" + "uaxis" "[0 1 0 -16] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343412" + "plane" "(-278 -6050 72) (-279 -5910 72) (-279 -5910 68)" + "material" "TILE/URBAN_COUNTERTOP01B" + "uaxis" "[0 1 0 -16] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343411" + "plane" "(-279 -5910 72) (-310 -5900 72) (-310 -5900 68)" + "material" "TILE/URBAN_COUNTERTOP01B" + "uaxis" "[-1 0 0 -16] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343410" + "plane" "(-309 -6059 72) (-278 -6050 72) (-278 -6050 68)" + "material" "TILE/URBAN_COUNTERTOP01B" + "uaxis" "[1 0 0 -16] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343409" + "plane" "(-309 -6059 68) (-278 -6050 68) (-279 -5910 68)" + "material" "TILE/URBAN_COUNTERTOP01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4616132" + side + { + "id" "343426" + "plane" "(-307 -6056 68) (-307 -6056 35) (-307 -5904 35)" + "material" "WOOD/OFFDESKTOP" + "uaxis" "[0 1 0 -95.994] 0.25" + "vaxis" "[0 0 -1 288] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343425" + "plane" "(-280 -5912 68) (-280 -5912 35) (-280 -6048 35)" + "material" "WOOD/OFFDESKTOP" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 288] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343424" + "plane" "(-307 -5904 68) (-307 -5904 35) (-280 -5912 35)" + "material" "WOOD/OFFDESKTOP" + "uaxis" "[1 0 0 -111.996] 0.25" + "vaxis" "[0 0 -1 288] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343423" + "plane" "(-280 -6048 68) (-280 -6048 35) (-307 -6056 35)" + "material" "WOOD/OFFDESKTOP" + "uaxis" "[1 0 0 -111.998] 0.25" + "vaxis" "[0 0 -1 288] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343422" + "plane" "(-307 -6056 68) (-307 -5904 68) (-280 -5912 68)" + "material" "TILE/URBAN_COUNTERTOP01B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "343421" + "plane" "(-307 -5904 35) (-307 -6056 35) (-280 -6048 35)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +hidden +{ + entity + { + "id" "2123338" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_64.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1468 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "2124271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "2123376" + "classname" "prop_static" + "angles" "0 180 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_corner_large.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1458 -2994 312" + editor + { + "color" "240 197 0" + "groupid" "2124271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "2123407" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1534 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "2124271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "2123431" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1466 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "2124271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "2123443" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_64.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3004 312" + editor + { + "color" "240 197 0" + "groupid" "2124271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "2123455" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3002 312" + editor + { + "color" "240 197 0" + "groupid" "2124271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "2123487" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3070 312" + editor + { + "color" "240 197 0" + "groupid" "2124271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "2124105" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_64.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3072 312" + editor + { + "color" "240 197 0" + "groupid" "2124271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "2124333" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2992 309" + editor + { + "color" "130 187 0" + "groupid" "2124894" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124337" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2992 309" + editor + { + "color" "104 157 0" + "groupid" "2124873" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124341" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2992 309" + editor + { + "color" "158 111 0" + "groupid" "2124852" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124345" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2992 309" + editor + { + "color" "212 233 0" + "groupid" "2124831" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124349" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2992 309" + editor + { + "color" "178 103 0" + "groupid" "2124788" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124353" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2992 309" + editor + { + "color" "134 147 0" + "groupid" "2124771" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124917" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1489 -2992 351" + editor + { + "color" "134 147 0" + "groupid" "2124916" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124921" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1489 -2992 319" + editor + { + "color" "134 147 0" + "groupid" "2124916" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124925" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1489 -2992 311" + editor + { + "color" "134 147 0" + "groupid" "2124916" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124929" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1489 -2992 309" + editor + { + "color" "134 147 0" + "groupid" "2124916" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124933" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1489 -2992 309" + editor + { + "color" "134 147 0" + "groupid" "2124916" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124938" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3058 351" + editor + { + "color" "134 147 0" + "groupid" "2124937" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124942" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3058 319" + editor + { + "color" "134 147 0" + "groupid" "2124937" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124946" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3058 311" + editor + { + "color" "134 147 0" + "groupid" "2124937" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124950" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3058 309" + editor + { + "color" "134 147 0" + "groupid" "2124937" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2124954" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3058 309" + editor + { + "color" "134 147 0" + "groupid" "2124937" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "2113274" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1038.21 -5058 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113278" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1113 -4914 156.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113282" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1113 -5192 156.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113286" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1178 -5058 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113290" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1178 -5326 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113294" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1038 -5326 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113298" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1038 -4790 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113302" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1178 -4790 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113306" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1172 -4790 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113310" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1172 -5058 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113314" + "classname" "prop_static" + "angles" "0 90 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1172 -5326 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113318" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1038 -5064 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113322" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1178 -5064 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113326" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1178 -4796 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113273" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2113330" + "classname" "prop_static" + "angles" "0 180 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1038 -4796 153.75" + editor + { + "color" "147 132 0" + "groupid" "2113272" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2114110" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_ceiling_light.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1111 -4915 154" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "2103884" + "classname" "prop_static" + "angles" "0 82.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "401 -4111 4.54747e-12" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "2103900" + "classname" "prop_static" + "angles" "0 95.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "400 -4420 4.54747e-12" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +entity +{ + "id" "2104134" + "classname" "func_detail" + solid + { + "id" "4612930" + side + { + "id" "342529" + "plane" "(1162 -5014 0) (1184 -5014 0) (1184 -5002 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" "342528" + "plane" "(1184 -5002 88) (1184 -5002 0) (1184 -5014 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" "342527" + "plane" "(1162 -5002 0) (1184 -5002 0) (1184 -5002 88)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342526" + "plane" "(1184 -5014 88) (1184 -5014 0) (1162 -5014 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342525" + "plane" "(1162 -5002 88) (1184 -5002 88) (1184 -5014 88)" + "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" "342524" + "plane" "(1162 -5014 88) (1162 -5014 0) (1162 -5002 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3854180" + side + { + "id" "338005" + "plane" "(1042 -4784 0) (1042 -5014 0) (1054 -5014 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" "338004" + "plane" "(1042 -5014 88) (1042 -5014 0) (1042 -4784 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338003" + "plane" "(1054 -4784 88) (1054 -4784 0) (1054 -5014 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338002" + "plane" "(1042 -4784 88) (1042 -4784 0) (1054 -4784 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" "338001" + "plane" "(1054 -5014 88) (1054 -5014 0) (1042 -5014 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "338000" + "plane" "(1042 -5014 88) (1042 -4784 88) (1054 -4784 88)" + "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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4612923" + side + { + "id" "342517" + "plane" "(1160 -5000 96) (1184 -5000 96) (1184 -5016 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 -1 0 -281.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342516" + "plane" "(1184 -5016 88) (1184 -5016 96) (1184 -5000 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" "342515" + "plane" "(1184 -5000 88) (1184 -5000 96) (1160 -5000 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342514" + "plane" "(1160 -5016 96) (1184 -5016 96) (1184 -5016 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 0 -1 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342513" + "plane" "(1160 -5016 88) (1184 -5016 88) (1184 -5000 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 -1 0 -282] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342512" + "plane" "(1160 -5000 88) (1160 -5000 96) (1160 -5016 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "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" "3854179" + side + { + "id" "337999" + "plane" "(1040 -5016 96) (1040 -4784 96) (1056 -4784 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -1 0 -449.998] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337998" + "plane" "(1040 -4784 88) (1040 -4784 96) (1040 -5016 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -1 0 -449.998] 0.125" + "vaxis" "[0 0 -1 -383.999] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337997" + "plane" "(1056 -5016 88) (1056 -5016 96) (1056 -4784 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -1 0 -449.998] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337996" + "plane" "(1056 -4784 88) (1056 -4784 96) (1040 -4784 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" "337995" + "plane" "(1040 -5016 88) (1040 -5016 96) (1056 -5016 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 0 -1 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337994" + "plane" "(1040 -4784 88) (1040 -5016 88) (1056 -5016 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 -1 0 -282] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4612922" + side + { + "id" "342511" + "plane" "(1056 -5016 96) (1056 -5000 96) (1093 -5000 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 -1 0 -281.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342510" + "plane" "(1056 -5000 88) (1056 -5000 96) (1056 -5016 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" "342509" + "plane" "(1093 -5000 96) (1056 -5000 96) (1056 -5000 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342508" + "plane" "(1056 -5016 88) (1056 -5016 96) (1093 -5016 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 0 -1 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342507" + "plane" "(1056 -5000 88) (1056 -5016 88) (1093 -5016 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 382] 0.125" + "vaxis" "[0 -1 0 -282] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342506" + "plane" "(1093 -5016 88) (1093 -5016 96) (1093 -5000 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "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" "4612929" + side + { + "id" "342523" + "plane" "(1091 -5002 0) (1054 -5002 0) (1054 -5014 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" "342522" + "plane" "(1054 -5014 88) (1054 -5014 0) (1054 -5002 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" "342521" + "plane" "(1054 -5002 88) (1054 -5002 0) (1091 -5002 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342520" + "plane" "(1091 -5014 0) (1054 -5014 0) (1054 -5014 88)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "342519" + "plane" "(1091 -5014 88) (1054 -5014 88) (1054 -5002 88)" + "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" "342518" + "plane" "(1091 -5002 88) (1091 -5002 0) (1091 -5014 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "2104198" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1004 -4564 0.248841" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2104238" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1004 -4240 0.238857" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "2093409" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "179 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4066 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093429" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "696 -4038.21 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093469" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "840 -4111 156" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093537" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "562 -4111 156" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093573" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "696 -4178 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093613" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "428 -4178 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093625" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "428 -4038 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093637" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "964 -4038 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093657" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "964 -4178 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093673" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "964 -4172 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093793" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "696 -4172 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2093813" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "428 -4172 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094044" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "696 -4503.21 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094048" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "840 -4571 156" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094052" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "958 -4643 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094056" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "696 -4643 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094060" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "696 -4637 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094064" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "964 -4503 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094068" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "964 -4637 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094072" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "964 -4643 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094076" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "690 -4503 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094080" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "690 -4643 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094084" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "562 -4571 156" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094088" + "classname" "prop_static" + "angles" "0 0 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "428 -4637 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094092" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "428 -4503 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094096" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "428 -4643 153" + editor + { + "color" "100 177 0" + "groupid" "2094043" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094100" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "958 -4503 153" + editor + { + "color" "100 177 0" + "groupid" "2094042" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094728" + "classname" "prop_static" + "angles" "0 0 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "964 -4497 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094776" + "classname" "prop_static" + "angles" "0 0 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "428 -4497 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094824" + "classname" "prop_static" + "angles" "0 0 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "964 -4248 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094855" + "classname" "prop_static" + "angles" "0 0 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "428 -4248 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094879" + "classname" "prop_static" + "angles" "0 0 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "854 -4497 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094883" + "classname" "prop_static" + "angles" "0 0 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "854 -4248 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094919" + "classname" "prop_static" + "angles" "0 0 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "554 -4497 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2094923" + "classname" "prop_static" + "angles" "0 0 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "554 -4248 153" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2083732" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "958 -4038 153" + editor + { + "color" "100 177 0" + "groupid" "2093979" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2083804" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "690 -4038 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2083912" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "690 -4178 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2083916" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "958 -4178 153" + editor + { + "color" "100 177 0" + "groupid" "2093917" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2083947" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "555 -5899 176" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2083963" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "356.688 -5899 176" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "2083977" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "88 88 88" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1991 -3483.39 208" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2083993" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_caps/nuke_roof_cap_02_small.mdl" + "renderamt" "255" + "rendercolor" "88 88 88" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1991 -3393.14 208" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2084356" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-248 -6631 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2084400" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-376 -6631 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2084418" + "classname" "func_detail" + solid + { + "id" "2084013" + side + { + "id" "298227" + "plane" "(-888 -6632 0) (-888 -6624 0) (536 -6624 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" "298226" + "plane" "(-888 -6624 -48) (-888 -6632 -48) (536 -6632 -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" "298225" + "plane" "(-888 -6632 -48) (-888 -6624 -48) (-888 -6624 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" "298224" + "plane" "(536 -6624 -48) (536 -6632 -48) (536 -6632 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" "298223" + "plane" "(-888 -6624 -48) (536 -6624 -48) (536 -6624 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298222" + "plane" "(536 -6632 -48) (-888 -6632 -48) (-888 -6632 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "2084436" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-504 -6631 0.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2084541" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_floor_hatch/nuke_floor_hatch_64.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3075 -2415 -200" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2084553" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_floor_hatch/nuke_floor_hatch_64.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3169.26 -2415 -200" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2073942" + "classname" "func_detail" + solid + { + "id" "2073952" + side + { + "id" "298011" + "plane" "(-2448 -3584 32) (-2448 -3800 32) (-2432 -3800 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" + } + side + { + "id" "298010" + "plane" "(-2448 -3800 88) (-2448 -3800 32) (-2448 -3584 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" "298009" + "plane" "(-2432 -3584 88) (-2432 -3584 32) (-2432 -3800 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298008" + "plane" "(-2448 -3584 88) (-2448 -3584 32) (-2432 -3584 32)" + "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" "298007" + "plane" "(-2432 -3800 88) (-2432 -3800 32) (-2448 -3800 32)" + "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" "298006" + "plane" "(-2448 -3800 88) (-2448 -3584 88) (-2432 -3584 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2073951" + side + { + "id" "298005" + "plane" "(-2448 -3800 104) (-2448 -3584 104) (-2432 -3584 104)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 64] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298004" + "plane" "(-2448 -3584 88) (-2448 -3584 104) (-2448 -3800 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298003" + "plane" "(-2432 -3800 88) (-2432 -3800 104) (-2432 -3584 104)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298002" + "plane" "(-2432 -3584 88) (-2432 -3584 104) (-2448 -3584 104)" + "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" "298001" + "plane" "(-2448 -3800 88) (-2448 -3800 104) (-2432 -3800 104)" + "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" "298000" + "plane" "(-2448 -3584 88) (-2448 -3800 88) (-2432 -3800 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "2073960" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_bush01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2473 -3756 78" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2073988" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_bush01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2472 -3647 78" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2074078" + "classname" "prop_static" + "angles" "0 266.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2400 -3742 34.3903" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2074102" + "classname" "prop_static" + "angles" "0 266.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2404 -3643 34.3903" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2074147" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2332 -5667 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2074155" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2332 -5411 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2074239" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2332 -5283 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2074255" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2323 -4770 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2074296" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2330 -5666 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2074356" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2180 -3709 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2074360" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2180 -3837 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2074364" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2180 -3965 28" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2074438" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2424 -3938 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "2074470" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2424 -4896 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "2074490" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2424 -5188 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "2074506" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2424 -5545 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "2074522" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2352 -4698.3 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "2074534" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2352 -4120 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "2074586" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_wall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2454 -3800 126" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "2074618" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2416 -567 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +hidden +{ + entity + { + "id" "2063186" + "classname" "prop_static" + "angles" "0 257 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2643.29 -3790.22 -15.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "2063190" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2764 -3791 -15.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +entity +{ + "id" "2063194" + "classname" "func_detail" + solid + { + "id" "2063250" + side + { + "id" "296583" + "plane" "(2694.18 -3800.94 87) (2651.31 -3791.04 87) (2651.53 -3790.07 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.224951 0.97437 0 -18.1333] 0.25" + "vaxis" "[0.97437 -0.224951 0 27.391] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296582" + "plane" "(2694.4 -3799.97 -1) (2651.53 -3790.07 -1) (2651.31 -3791.04 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.224951 0.97437 0 -18.1333] 0.25" + "vaxis" "[0.97437 -0.224951 0 27.391] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296581" + "plane" "(2694.18 -3800.94 -1) (2651.31 -3791.04 -1) (2651.31 -3791.04 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.97437 -0.224951 0 -0.603099] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296580" + "plane" "(2651.53 -3790.07 -1) (2694.4 -3799.97 -1) (2694.4 -3799.97 87)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0.97437 -0.224951 0 43.393] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296579" + "plane" "(2651.31 -3791.04 -1) (2651.53 -3790.07 -1) (2651.53 -3790.07 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.224951 0.97437 0 -18.1333] 0.25" + "vaxis" "[0 0 -1 33] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296578" + "plane" "(2694.4 -3799.97 -1) (2694.18 -3800.94 -1) (2694.18 -3800.94 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.224951 0.97437 0 -18.1333] 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" "2063249" + side + { + "id" "296577" + "plane" "(2756 -3790 87) (2712 -3790 87) (2712 -3789 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296576" + "plane" "(2756 -3789 5.24521e-06) (2712 -3789 5.24521e-06) (2712 -3790 5.24521e-06)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296575" + "plane" "(2756 -3790 5.24521e-06) (2712 -3790 5.24521e-06) (2712 -3790 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296574" + "plane" "(2712 -3789 5.24521e-06) (2756 -3789 5.24521e-06) (2756 -3789 87)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -19.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296573" + "plane" "(2756 -3789 5.24521e-06) (2756 -3790 5.24521e-06) (2756 -3790 87)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 33] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296572" + "plane" "(2712 -3790 5.24521e-06) (2712 -3789 5.24521e-06) (2712 -3789 87)" + "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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "2063398" + "classname" "prop_static" + "angles" "0 258 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1578 -5534 32.2389" + editor + { + "color" "150 143 0" + "groupid" "2843311" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "2063402" + "classname" "prop_static" + "angles" "0 112.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1552 -5509 32.2389" + editor + { + "color" "150 143 0" + "groupid" "2843311" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "2063470" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2378.16 -5336.35 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2063474" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2403.17 -5477 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2063478" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2379 -5150 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "2064758" + "classname" "func_detail" + solid + { + "id" "2064825" + side + { + "id" "297552" + "plane" "(-2424 -4720 184) (-2424 -4096 184) (-2354 -4096 184)" + "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" "297551" + "plane" "(-2424 -4096 160) (-2424 -4720 160) (-2354 -4720 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_C" + "uaxis" "[1 0 0 -123] 0.125" + "vaxis" "[0 -1 0 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297550" + "plane" "(-2424 -4720 160) (-2424 -4096 160) (-2424 -4096 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" "297549" + "plane" "(-2352 -4098 160) (-2352 -4718 160) (-2352 -4718 184)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297548" + "plane" "(-2424 -4096 160) (-2354 -4096 160) (-2354 -4096 184)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[1 0 0 192] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297547" + "plane" "(-2354 -4720 160) (-2424 -4720 160) (-2424 -4720 184)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[1 0 0 192] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297546" + "plane" "(-2354 -4096 160) (-2352 -4098 160) (-2352 -4098 184)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297545" + "plane" "(-2352 -4718 160) (-2354 -4720 160) (-2354 -4720 184)" + "material" "CS_APOLLO/METAL/HR_METAL_CORRUGATED_005_BLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 775] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "2064830" + "classname" "func_detail" + solid + { + "id" "2065076" + side + { + "id" "297973" + "plane" "(-2368 -4432 160) (-2368 -4384 160) (-2354 -4384 160)" + "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" "297972" + "plane" "(-2368 -4384 32) (-2368 -4432 32) (-2354 -4432 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" + } + side + { + "id" "297971" + "plane" "(-2368 -4432 32) (-2368 -4384 32) (-2368 -4384 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" "297970" + "plane" "(-2352 -4386 32) (-2352 -4430 32) (-2352 -4430 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -29] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297969" + "plane" "(-2368 -4384 32) (-2354 -4384 32) (-2354 -4384 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 67] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297968" + "plane" "(-2354 -4432 32) (-2368 -4432 32) (-2368 -4432 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 67] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297967" + "plane" "(-2352 -4430 32) (-2354 -4432 32) (-2354 -4432 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -29] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297966" + "plane" "(-2354 -4384 32) (-2352 -4386 32) (-2352 -4386 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -29] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8768]" + } +} +entity +{ + "id" "2064840" + "classname" "func_detail" + solid + { + "id" "2065093" + side + { + "id" "297981" + "plane" "(-2368 -4144 160) (-2368 -4096 160) (-2354 -4096 160)" + "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" "297980" + "plane" "(-2368 -4096 32) (-2368 -4144 32) (-2354 -4144 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" + } + side + { + "id" "297979" + "plane" "(-2368 -4144 32) (-2368 -4096 32) (-2368 -4096 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" "297978" + "plane" "(-2352 -4098 32) (-2352 -4142 32) (-2352 -4142 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -157] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297977" + "plane" "(-2368 -4096 32) (-2354 -4096 32) (-2354 -4096 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 67] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297976" + "plane" "(-2354 -4144 32) (-2368 -4144 32) (-2368 -4144 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 67] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297975" + "plane" "(-2354 -4096 32) (-2352 -4098 32) (-2352 -4098 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -157] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297974" + "plane" "(-2352 -4142 32) (-2354 -4144 32) (-2354 -4144 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -157] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8768]" + } +} +entity +{ + "id" "2064880" + "classname" "func_detail" + solid + { + "id" "2065044" + side + { + "id" "297958" + "plane" "(-2368 -4720 160) (-2368 -4672 160) (-2354 -4672 160)" + "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" "297957" + "plane" "(-2368 -4672 32) (-2368 -4720 32) (-2354 -4720 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" + } + side + { + "id" "297956" + "plane" "(-2368 -4720 32) (-2368 -4672 32) (-2368 -4672 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" "297955" + "plane" "(-2352 -4674 32) (-2352 -4718 32) (-2352 -4718 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 99] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297954" + "plane" "(-2368 -4672 32) (-2354 -4672 32) (-2354 -4672 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 67] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297953" + "plane" "(-2354 -4720 32) (-2368 -4720 32) (-2368 -4720 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 195] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297952" + "plane" "(-2352 -4718 32) (-2354 -4720 32) (-2354 -4720 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 99] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "297951" + "plane" "(-2354 -4672 32) (-2352 -4674 32) (-2352 -4674 160)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 99] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8768]" + } +} +entity +{ + "id" "2064982" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 -0 0" + "BasisOrigin" "-2419 -4181 276" + "BasisU" "0 1 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "297494 297506" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-2419 -4181 276" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8268]" + } +} +hidden +{ + entity + { + "id" "2065112" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-2335 -4411 31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -2768]" + } + } +} +hidden +{ + entity + { + "id" "2054439" + "classname" "prop_static" + "angles" "0 43 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "660 -1387 -15.7611" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "2044186" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1792 -2409 -8.55995" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "2044288" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1542 -1861 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "2045408" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1542 -1610 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +entity +{ + "id" "2045457" + "classname" "func_detail" + solid + { + "id" "2045449" + side + { + "id" "296535" + "plane" "(1440 -2096 8) (1532 -2096 8) (1532 -2120 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296534" + "plane" "(1440 -2120 0) (1532 -2120 0) (1532 -2096 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" "296533" + "plane" "(1440 -2096 8) (1440 -2120 8) (1440 -2120 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" "296532" + "plane" "(1532 -2096 0) (1532 -2120 0) (1532 -2120 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" "296531" + "plane" "(1532 -2096 8) (1440 -2096 8) (1440 -2096 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296530" + "plane" "(1532 -2120 0) (1440 -2120 0) (1440 -2120 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2045444" + side + { + "id" "296541" + "plane" "(1416 -1768 8) (1440 -1768 8) (1440 -2120 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296540" + "plane" "(1416 -2120 0) (1440 -2120 0) (1440 -1768 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" "296539" + "plane" "(1416 -1768 8) (1416 -2120 8) (1416 -2120 0)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296538" + "plane" "(1440 -1768 0) (1440 -2120 0) (1440 -2120 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 1 -320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296537" + "plane" "(1440 -1768 8) (1416 -1768 8) (1416 -1768 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" "296536" + "plane" "(1440 -2120 0) (1416 -2120 0) (1416 -2120 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +hidden +{ + entity + { + "id" "2045468" + "classname" "prop_static" + "angles" "0 294 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1514.42 -1599 -18" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "2045472" + "classname" "prop_static" + "angles" "0 269.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1513 -1555.99 -18" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "2045504" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1508.15 -1409.92 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045508" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1511.62 -1505.48 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045512" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1405.41 -1508.14 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045516" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1322.35 -1508.26 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045520" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1223.22 -1508.31 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045524" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1138.22 -1505.46 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045528" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1034.43 -1506.93 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045532" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "923.88 -1506.85 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045536" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "827.998 -1506.5 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045540" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "682 -1600 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045544" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "765.578 -1600.5 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045548" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "865.173 -1600.05 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045552" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "963.927 -1600.72 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045556" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1060.87 -1600.1 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045560" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1156.8 -1598.99 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045564" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1253.4 -1598.79 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2045568" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1341.31 -1597.8 -15.7601" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2045589" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "barrier2" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "barrier1" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "766 -1601 20" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045622" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/rope" + "Slack" "45" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "barrier1" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "682 -1600 21" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045651" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "barrier3" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "barrier2" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "866 -1601 20" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045660" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "barrier4" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "barrier3" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "964 -1601 20" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045663" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "barrier5" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "barrier4" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1061 -1600 20" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045666" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "barrier6" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "barrier5" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1157 -1599 20" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045673" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "barrier7" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "barrier6" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1254 -1599 20" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045676" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "RopeMaterial" "cable/cable.vmt" + "Slack" "25" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "barrier7" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1342 -1598 20" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045682" + "classname" "move_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "PositionInterpolator" "2" + "RopeMaterial" "cable/rope" + "Slack" "45" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "1barrier" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "828 -1506.55 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045694" + "classname" "keyframe_rope" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "1barrier1" + "RopeMaterial" "cable/rope" + "Slack" "45" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "1barrier" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "924 -1507 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045713" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "1barrier2" + "RopeMaterial" "cable/rope" + "Slack" "45" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "1barrier1" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1034 -1507 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045719" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "1barrier3" + "RopeMaterial" "cable/rope" + "Slack" "45" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "1barrier2" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1138 -1506 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045722" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "1barrier4" + "RopeMaterial" "cable/rope" + "Slack" "45" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "1barrier3" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1223 -1508 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045725" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "1barrier5" + "RopeMaterial" "cable/rope" + "Slack" "45" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "1barrier4" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1323 -1508 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045728" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "NextKey" "1barrier6" + "RopeMaterial" "cable/rope" + "Slack" "45" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "1barrier5" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1405 -1508 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "2045731" + "classname" "keyframe_rope" + "angles" "0 0 0" + "Barbed" "0" + "Breakable" "0" + "Collide" "0" + "Dangling" "0" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "MoveSpeed" "64" + "RopeMaterial" "cable/rope" + "Slack" "45" + "spawnflags" "0" + "Subdiv" "2" + "targetname" "1barrier6" + "TextureScale" "1" + "Type" "0" + "Width" "2" + "origin" "1512 -1506 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +hidden +{ + entity + { + "id" "2035381" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2704 -3784 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2035447" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_exit_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2720 -3776 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "2035512" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2688 -3773 128.587" + editor + { + "color" "128 105 0" + "groupid" "2035511" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2035516" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "50" + "rendercolor" "190 253 128" + "renderfx" "0" + "rendermode" "9" + "scale" "0.8" + "spawnflags" "0" + "origin" "2688 -3770 128.587" + editor + { + "color" "128 105 0" + "groupid" "2035511" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "2035519" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "190 253 128 5" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2688 -3735 128.587" + editor + { + "color" "128 105 0" + "groupid" "2035511" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "2016041" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1791 -2473 87" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2016045" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1790 -2473 93" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2016049" + "classname" "prop_static" + "angles" "0 270 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1791 -2472.81 161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2016613" + "classname" "func_detail" + solid + { + "id" "2016606" + side + { + "id" "295408" + "plane" "(1808 -1628 358) (1808 -1628 -40) (1808 -1724 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295407" + "plane" "(1792 -1628 -40) (1808 -1628 -40) (1808 -1628 358)" + "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" "295406" + "plane" "(1792 -1628 358) (1808 -1628 358) (1808 -1723.99 358)" + "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" "295405" + "plane" "(1808 -1723.99 -40) (1808 -1628 -40) (1792 -1628 -40)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295404" + "plane" "(1808 -1724 358) (1808 -1724 -40) (1792 -1628 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.1644 0.986394 0 110.228] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -1768]" + } +} +entity +{ + "id" "2016782" + "classname" "func_detail" + solid + { + "id" "2016770" + side + { + "id" "295720" + "plane" "(1808 -1858 356) (1808 -1856 356) (1824 -1856 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295719" + "plane" "(1808 -1856 214) (1808 -1858 214) (1824 -1858 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295718" + "plane" "(1808 -1858 214) (1808 -1856 214) (1808 -1856 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151.48] 0.125" + "vaxis" "[0 -1 0 -16.8427] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295717" + "plane" "(1824 -1856 214) (1824 -1858 214) (1824 -1858 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295716" + "plane" "(1808 -1856 214) (1824 -1856 214) (1824 -1856 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295715" + "plane" "(1824 -1858 214) (1808 -1858 214) (1808 -1858 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 14000]" + } +} +entity +{ + "id" "2016795" + "classname" "func_detail" + solid + { + "id" "2016789" + side + { + "id" "295732" + "plane" "(1808 -1924 356) (1808 -1922 356) (1824 -1922 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295731" + "plane" "(1808 -1922 214) (1808 -1924 214) (1824 -1924 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295730" + "plane" "(1808 -1924 214) (1808 -1922 214) (1808 -1922 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151.48] 0.125" + "vaxis" "[0 -1 0 -31.4579] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295729" + "plane" "(1824 -1922 214) (1824 -1924 214) (1824 -1924 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295728" + "plane" "(1808 -1922 214) (1824 -1922 214) (1824 -1922 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295727" + "plane" "(1824 -1924 214) (1808 -1924 214) (1808 -1924 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 15000]" + } +} +entity +{ + "id" "2016809" + "classname" "func_detail" + solid + { + "id" "2016804" + side + { + "id" "295744" + "plane" "(1808 -1990 356) (1808 -1988 356) (1824 -1988 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295743" + "plane" "(1808 -1988 214) (1808 -1990 214) (1824 -1990 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295742" + "plane" "(1808 -1990 214) (1808 -1988 214) (1808 -1988 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151.48] 0.125" + "vaxis" "[0 -1 0 -31.4579] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295741" + "plane" "(1824 -1988 214) (1824 -1990 214) (1824 -1990 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295740" + "plane" "(1808 -1988 214) (1824 -1988 214) (1824 -1988 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295739" + "plane" "(1824 -1990 214) (1808 -1990 214) (1808 -1990 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 16000]" + } +} +entity +{ + "id" "2016816" + "classname" "func_detail" + solid + { + "id" "2016814" + side + { + "id" "295756" + "plane" "(1808 -2055 356) (1808 -2053 356) (1824 -2053 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295755" + "plane" "(1808 -2053 214) (1808 -2055 214) (1824 -2055 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295754" + "plane" "(1808 -2055 214) (1808 -2053 214) (1808 -2053 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151.48] 0.125" + "vaxis" "[0 -1 0 -31.4579] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295753" + "plane" "(1824 -2053 214) (1824 -2055 214) (1824 -2055 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295752" + "plane" "(1808 -2053 214) (1824 -2053 214) (1824 -2053 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295751" + "plane" "(1824 -2055 214) (1808 -2055 214) (1808 -2055 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -15768]" + } +} +entity +{ + "id" "2016835" + "classname" "func_detail" + solid + { + "id" "2016827" + side + { + "id" "295768" + "plane" "(1808 -2121 356) (1808 -2119 356) (1824 -2119 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295767" + "plane" "(1808 -2119 214) (1808 -2121 214) (1824 -2121 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295766" + "plane" "(1808 -2121 214) (1808 -2119 214) (1808 -2119 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0 1 0 -11] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295765" + "plane" "(1824 -2119 214) (1824 -2121 214) (1824 -2121 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295764" + "plane" "(1808 -2119 214) (1824 -2119 214) (1824 -2119 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295763" + "plane" "(1824 -2121 214) (1808 -2121 214) (1808 -2121 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -14768]" + } +} +entity +{ + "id" "2016849" + "classname" "func_detail" + solid + { + "id" "2016844" + side + { + "id" "295780" + "plane" "(1808 -2187 356) (1808 -2185 356) (1824 -2185 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295779" + "plane" "(1808 -2185 214) (1808 -2187 214) (1824 -2187 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295778" + "plane" "(1808 -2187 214) (1808 -2185 214) (1808 -2185 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0 1 0 -11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295777" + "plane" "(1824 -2185 214) (1824 -2187 214) (1824 -2187 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295776" + "plane" "(1808 -2185 214) (1824 -2185 214) (1824 -2185 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295775" + "plane" "(1824 -2187 214) (1808 -2187 214) (1808 -2187 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -13768]" + } +} +entity +{ + "id" "2016862" + "classname" "func_detail" + solid + { + "id" "2016857" + side + { + "id" "295792" + "plane" "(1808 -2253 356) (1808 -2251 356) (1824 -2251 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295791" + "plane" "(1808 -2251 214) (1808 -2253 214) (1824 -2253 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295790" + "plane" "(1808 -2253 214) (1808 -2251 214) (1808 -2251 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0 -1 0 -24.0012] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295789" + "plane" "(1824 -2251 214) (1824 -2253 214) (1824 -2253 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295788" + "plane" "(1808 -2251 214) (1824 -2251 214) (1824 -2251 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295787" + "plane" "(1824 -2253 214) (1808 -2253 214) (1808 -2253 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -12768]" + } +} +entity +{ + "id" "2016875" + "classname" "func_detail" + solid + { + "id" "2016870" + side + { + "id" "295804" + "plane" "(1808 -2319 356) (1808 -2317 356) (1824 -2317 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295803" + "plane" "(1808 -2317 214) (1808 -2319 214) (1824 -2319 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295802" + "plane" "(1808 -2319 214) (1808 -2317 214) (1808 -2317 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295801" + "plane" "(1824 -2317 214) (1824 -2319 214) (1824 -2319 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295800" + "plane" "(1808 -2317 214) (1824 -2317 214) (1824 -2317 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295799" + "plane" "(1824 -2319 214) (1808 -2319 214) (1808 -2319 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -11768]" + } +} +entity +{ + "id" "2016887" + "classname" "func_detail" + solid + { + "id" "2016883" + side + { + "id" "295816" + "plane" "(1808 -2385 358) (1808 -2383 358) (1824 -2383 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295815" + "plane" "(1808 -2383 212) (1808 -2385 212) (1824 -2385 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295814" + "plane" "(1808 -2385 212) (1808 -2383 212) (1808 -2383 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295813" + "plane" "(1824 -2383 212) (1824 -2385 212) (1824 -2385 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295812" + "plane" "(1808 -2383 212) (1824 -2383 212) (1824 -2383 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295811" + "plane" "(1824 -2385 212) (1808 -2385 212) (1808 -2385 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -10768]" + } +} +entity +{ + "id" "2016899" + "classname" "func_detail" + solid + { + "id" "2016755" + side + { + "id" "295822" + "plane" "(1808 -2383 358) (1808 -1726 358) (1824 -1726 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295821" + "plane" "(1808 -1726 356) (1808 -2383 356) (1824 -2383 356)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 46.998] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295820" + "plane" "(1808 -2383 356) (1808 -1726 356) (1808 -1726 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 46.998] 0.125" + "vaxis" "[0 0 -1 -32.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295819" + "plane" "(1824 -1726 356) (1824 -2383 356) (1824 -2383 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295818" + "plane" "(1808 -1726 356) (1824 -1726 356) (1824 -1726 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295817" + "plane" "(1824 -2383 356) (1808 -2383 356) (1808 -2383 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -10268]" + } +} +entity +{ + "id" "2016910" + "classname" "func_detail" + solid + { + "id" "2016906" + side + { + "id" "295834" + "plane" "(1808 -2383 214) (1808 -1726 214) (1824 -1726 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 47] 0.125" + "vaxis" "[-1 0 0 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295833" + "plane" "(1808 -1726 212) (1808 -2383 212) (1824 -2383 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295832" + "plane" "(1808 -2383 212) (1808 -1726 212) (1808 -1726 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 47] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295831" + "plane" "(1824 -1726 212) (1824 -2383 212) (1824 -2383 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295830" + "plane" "(1808 -1726 212) (1824 -1726 212) (1824 -1726 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295829" + "plane" "(1824 -2383 212) (1808 -2383 212) (1808 -2383 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 152 0" + "groupid" "2017056" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -9268]" + } +} +entity +{ + "id" "2016982" + "classname" "func_detail" + solid + { + "id" "2016977" + side + { + "id" "295875" + "plane" "(1808 -2385 358) (1824 -2385 358) (1824 -2406 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295874" + "plane" "(1792 -2406 16) (1824 -2406 16) (1824 -2385 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" "295873" + "plane" "(1824 -2385 16) (1824 -2406 16) (1824 -2406 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295872" + "plane" "(1808 -2385 16) (1824 -2385 16) (1824 -2385 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295871" + "plane" "(1824 -2406 16) (1792 -2406 16) (1792 -2406 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "295870" + "plane" "(1792 -2406 16) (1808 -2385 16) (1808 -2385 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.606043 0.795431 0 -412.976] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -5768]" + } +} +entity +{ + "id" "2017095" + "classname" "func_detail" + solid + { + "id" "2017096" + side + { + "id" "296043" + "plane" "(1808 -2319 114) (1808 -2317 114) (1824 -2317 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296042" + "plane" "(1808 -2317 -38) (1808 -2319 -38) (1824 -2319 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296041" + "plane" "(1808 -2319 -38) (1808 -2317 -38) (1808 -2317 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296040" + "plane" "(1824 -2317 -38) (1824 -2319 -38) (1824 -2319 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296039" + "plane" "(1808 -2317 -38) (1824 -2317 -38) (1824 -2317 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296038" + "plane" "(1824 -2319 -38) (1808 -2319 -38) (1808 -2319 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -11768]" + } +} +entity +{ + "id" "2017100" + "classname" "func_detail" + solid + { + "id" "2017101" + side + { + "id" "296067" + "plane" "(1808 -2385 114) (1808 -2383 114) (1824 -2383 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296066" + "plane" "(1808 -2383 -40) (1808 -2385 -40) (1824 -2385 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296065" + "plane" "(1808 -2385 -40) (1808 -2383 -40) (1808 -2383 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296064" + "plane" "(1824 -2383 -40) (1824 -2385 -40) (1824 -2385 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296063" + "plane" "(1808 -2383 -40) (1824 -2383 -40) (1824 -2383 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296062" + "plane" "(1824 -2385 -40) (1808 -2385 -40) (1808 -2385 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -10768]" + } +} +entity +{ + "id" "2017102" + "classname" "func_detail" + solid + { + "id" "2017103" + side + { + "id" "296073" + "plane" "(1808 -2121 114) (1808 -2119 114) (1824 -2119 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296072" + "plane" "(1808 -2119 -38) (1808 -2121 -38) (1824 -2121 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296071" + "plane" "(1808 -2121 -38) (1808 -2119 -38) (1808 -2119 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[0 1 0 53] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296070" + "plane" "(1824 -2119 -38) (1824 -2121 -38) (1824 -2121 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296069" + "plane" "(1808 -2119 -38) (1824 -2119 -38) (1824 -2119 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296068" + "plane" "(1824 -2121 -38) (1808 -2121 -38) (1808 -2121 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -14768]" + } +} +entity +{ + "id" "2017104" + "classname" "func_detail" + solid + { + "id" "2017105" + side + { + "id" "296079" + "plane" "(1808 -2187 114) (1808 -2185 114) (1824 -2185 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296078" + "plane" "(1808 -2185 72) (1808 -2187 72) (1824 -2187 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" "296077" + "plane" "(1808 -2187 72) (1808 -2185 72) (1808 -2185 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[0 1 0 53] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296076" + "plane" "(1824 -2185 72) (1824 -2187 72) (1824 -2187 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296075" + "plane" "(1808 -2185 72) (1824 -2185 72) (1824 -2185 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296074" + "plane" "(1824 -2187 72) (1808 -2187 72) (1808 -2187 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -13768]" + } +} +entity +{ + "id" "2017106" + "classname" "func_detail" + solid + { + "id" "2017107" + side + { + "id" "296085" + "plane" "(1808 -2253 114) (1808 -2251 114) (1824 -2251 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296084" + "plane" "(1808 -2251 72) (1808 -2253 72) (1824 -2253 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" "296083" + "plane" "(1808 -2253 72) (1808 -2251 72) (1808 -2251 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[0 -1 0 -24.0012] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296082" + "plane" "(1824 -2251 72) (1824 -2253 72) (1824 -2253 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296081" + "plane" "(1808 -2251 72) (1824 -2251 72) (1824 -2251 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296080" + "plane" "(1824 -2253 72) (1808 -2253 72) (1808 -2253 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -12768]" + } +} +entity +{ + "id" "2017111" + "classname" "func_detail" + solid + { + "id" "2017112" + side + { + "id" "296109" + "plane" "(1808 -2055 114) (1808 -2053 114) (1824 -2053 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296108" + "plane" "(1808 -2053 -38) (1808 -2055 -38) (1824 -2055 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296107" + "plane" "(1808 -2055 -38) (1808 -2053 -38) (1808 -2053 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119.48] 0.125" + "vaxis" "[0 -1 0 -31.4579] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296106" + "plane" "(1824 -2053 -38) (1824 -2055 -38) (1824 -2055 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296105" + "plane" "(1808 -2053 -38) (1824 -2053 -38) (1824 -2053 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296104" + "plane" "(1824 -2055 -38) (1808 -2055 -38) (1808 -2055 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -15768]" + } +} +entity +{ + "id" "2017113" + "classname" "func_detail" + solid + { + "id" "2017114" + side + { + "id" "296115" + "plane" "(1808 -1990 114) (1808 -1988 114) (1824 -1988 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296114" + "plane" "(1808 -1988 -38) (1808 -1990 -38) (1824 -1990 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296113" + "plane" "(1808 -1990 -38) (1808 -1988 -38) (1808 -1988 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119.48] 0.125" + "vaxis" "[0 -1 0 -31.4579] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296112" + "plane" "(1824 -1988 -38) (1824 -1990 -38) (1824 -1990 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296111" + "plane" "(1808 -1988 -38) (1824 -1988 -38) (1824 -1988 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296110" + "plane" "(1824 -1990 -38) (1808 -1990 -38) (1808 -1990 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 16000]" + } +} +entity +{ + "id" "2017119" + "classname" "func_detail" + solid + { + "id" "2017120" + side + { + "id" "296139" + "plane" "(1808 -1858 114) (1808 -1856 114) (1824 -1856 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296138" + "plane" "(1808 -1856 -38) (1808 -1858 -38) (1824 -1858 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296137" + "plane" "(1808 -1858 -38) (1808 -1856 -38) (1808 -1856 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119.48] 0.125" + "vaxis" "[0 -1 0 -16.8427] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296136" + "plane" "(1824 -1856 -38) (1824 -1858 -38) (1824 -1858 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296135" + "plane" "(1808 -1856 -38) (1824 -1856 -38) (1824 -1856 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296134" + "plane" "(1824 -1858 -38) (1808 -1858 -38) (1808 -1858 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 14000]" + } +} +entity +{ + "id" "2017125" + "classname" "func_detail" + solid + { + "id" "2017309" + side + { + "id" "296187" + "plane" "(1808 -1858 -38) (1808 -1726 -38) (1824 -1726 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 47] 0.125" + "vaxis" "[-1 0 0 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296186" + "plane" "(1808 -1726 -40) (1808 -1858 -40) (1824 -1858 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296185" + "plane" "(1808 -1858 -40) (1808 -1726 -40) (1808 -1726 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 47] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296184" + "plane" "(1824 -1726 -40) (1824 -1858 -40) (1824 -1858 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296183" + "plane" "(1808 -1726 -40) (1824 -1726 -40) (1824 -1726 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296182" + "plane" "(1824 -1858 -40) (1808 -1858 -40) (1808 -1858 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017308" + side + { + "id" "296181" + "plane" "(1808 -2383 -38) (1808 -1988 -38) (1824 -1988 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 47] 0.125" + "vaxis" "[-1 0 0 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296180" + "plane" "(1808 -1988 -40) (1808 -2383 -40) (1824 -2383 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296179" + "plane" "(1808 -2383 -40) (1808 -1988 -40) (1808 -1988 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 47] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296178" + "plane" "(1824 -1988 -40) (1824 -2383 -40) (1824 -2383 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296177" + "plane" "(1824 -2383 -40) (1808 -2383 -40) (1808 -2383 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296176" + "plane" "(1808 -1988 -40) (1824 -1988 -40) (1824 -1988 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -9268]" + } +} +entity +{ + "id" "2017127" + "classname" "func_detail" + solid + { + "id" "2017319" + side + { + "id" "296199" + "plane" "(1808 -1858 116) (1808 -1724 116) (1824 -1724 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296198" + "plane" "(1808 -1724 114) (1808 -1858 114) (1824 -1858 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 46.998] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296197" + "plane" "(1808 -1858 114) (1808 -1724 114) (1808 -1724 116)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 46.998] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296196" + "plane" "(1824 -1724 114) (1824 -1858 114) (1824 -1858 116)" + "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" "296195" + "plane" "(1808 -1724 114) (1824 -1724 114) (1824 -1724 116)" + "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" "296194" + "plane" "(1824 -1858 114) (1808 -1858 114) (1808 -1858 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017318" + side + { + "id" "296193" + "plane" "(1808 -2385 116) (1808 -1988 116) (1824 -1988 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296192" + "plane" "(1808 -1988 114) (1808 -2385 114) (1824 -2385 114)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 46.998] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296191" + "plane" "(1808 -2385 114) (1808 -1988 114) (1808 -1988 116)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 46.998] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296190" + "plane" "(1824 -1988 114) (1824 -2385 114) (1824 -2385 116)" + "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" "296189" + "plane" "(1824 -2385 114) (1808 -2385 114) (1808 -2385 116)" + "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" "296188" + "plane" "(1808 -1988 114) (1824 -1988 114) (1824 -1988 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2017094" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -10268]" + } +} +hidden +{ + entity + { + "id" "2017341" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1808 -1923 87" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "2017345" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1807 -1923 93" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2017349" + "classname" "prop_static" + "angles" "0 270 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1808 -1922.81 161" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "2017463" + "classname" "func_detail" + solid + { + "id" "2016680" + side + { + "id" "296211" + "plane" "(1817 -1790 356) (1815 -1790 356) (1815 -1726 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 51.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296210" + "plane" "(1817 -1726 214) (1815 -1726 214) (1815 -1790 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -51.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296209" + "plane" "(1817 -1790 214) (1815 -1790 214) (1815 -1790 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296208" + "plane" "(1815 -1726 214) (1817 -1726 214) (1817 -1726 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296207" + "plane" "(1815 -1790 214) (1815 -1726 214) (1815 -1726 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 120] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296206" + "plane" "(1817 -1726 214) (1817 -1790 214) (1817 -1790 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 101.75] 0.246088" + "vaxis" "[0 0 -1 -19.8395] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016692" + side + { + "id" "296217" + "plane" "(1817 -1856 356) (1815 -1856 356) (1815 -1792 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 59.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296216" + "plane" "(1817 -1792 214) (1815 -1792 214) (1815 -1856 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -59.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296215" + "plane" "(1817 -1856 214) (1815 -1856 214) (1815 -1856 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296214" + "plane" "(1815 -1792 214) (1817 -1792 214) (1817 -1792 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296213" + "plane" "(1815 -1856 214) (1815 -1792 214) (1815 -1792 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296212" + "plane" "(1817 -1792 214) (1817 -1856 214) (1817 -1856 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 113.947] 0.246088" + "vaxis" "[0 0 -1 -19.8397] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016696" + side + { + "id" "296223" + "plane" "(1817 -1922 356) (1815 -1922 356) (1815 -1858 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 3.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296222" + "plane" "(1817 -1858 214) (1815 -1858 214) (1815 -1922 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -3.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296221" + "plane" "(1817 -1922 214) (1815 -1922 214) (1815 -1922 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296220" + "plane" "(1815 -1858 214) (1817 -1858 214) (1817 -1858 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296219" + "plane" "(1815 -1922 214) (1815 -1858 214) (1815 -1858 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296218" + "plane" "(1817 -1858 214) (1817 -1922 214) (1817 -1922 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 126.143] 0.246088" + "vaxis" "[0 0 -1 -19.8395] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016700" + side + { + "id" "296229" + "plane" "(1817 -1988 356) (1815 -1988 356) (1815 -1924 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 11.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296228" + "plane" "(1817 -1924 214) (1815 -1924 214) (1815 -1988 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -11.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296227" + "plane" "(1817 -1988 214) (1815 -1988 214) (1815 -1988 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296226" + "plane" "(1815 -1924 214) (1817 -1924 214) (1817 -1924 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296225" + "plane" "(1815 -1988 214) (1815 -1924 214) (1815 -1924 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296224" + "plane" "(1817 -1924 214) (1817 -1988 214) (1817 -1988 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 138.34] 0.246088" + "vaxis" "[0 0 -1 -19.8397] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016704" + side + { + "id" "296235" + "plane" "(1817 -2053 356) (1815 -2053 356) (1815 -1990 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 19.9976] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296234" + "plane" "(1817 -1990 214) (1815 -1990 214) (1815 -2053 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -19.9976] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296233" + "plane" "(1817 -2053 214) (1815 -2053 214) (1815 -2053 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296232" + "plane" "(1815 -1990 214) (1817 -1990 214) (1817 -1990 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296231" + "plane" "(1815 -2053 214) (1815 -1990 214) (1815 -1990 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296230" + "plane" "(1817 -1990 214) (1817 -2053 214) (1817 -2053 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 150.537] 0.246088" + "vaxis" "[0 0 -1 -19.8395] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016710" + side + { + "id" "296241" + "plane" "(1817 -2119 356) (1815 -2119 356) (1815 -2055 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 23.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296240" + "plane" "(1817 -2055 214) (1815 -2055 214) (1815 -2119 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -23.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296239" + "plane" "(1817 -2119 214) (1815 -2119 214) (1815 -2119 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296238" + "plane" "(1815 -2055 214) (1817 -2055 214) (1817 -2055 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296237" + "plane" "(1815 -2119 214) (1815 -2055 214) (1815 -2055 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296236" + "plane" "(1817 -2055 214) (1817 -2119 214) (1817 -2119 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 158.671] 0.246088" + "vaxis" "[0 0 -1 -19.8395] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016714" + side + { + "id" "296247" + "plane" "(1817 -2185 356) (1815 -2185 356) (1815 -2121 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 31.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296246" + "plane" "(1817 -2121 214) (1815 -2121 214) (1815 -2185 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -31.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296245" + "plane" "(1817 -2185 214) (1815 -2185 214) (1815 -2185 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296244" + "plane" "(1815 -2121 214) (1817 -2121 214) (1817 -2121 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296243" + "plane" "(1815 -2185 214) (1815 -2121 214) (1815 -2121 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296242" + "plane" "(1817 -2121 214) (1817 -2185 214) (1817 -2185 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 170.867] 0.246088" + "vaxis" "[0 0 -1 -19.8395] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016718" + side + { + "id" "296253" + "plane" "(1817 -2251 356) (1815 -2251 356) (1815 -2187 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 39.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296252" + "plane" "(1817 -2187 214) (1815 -2187 214) (1815 -2251 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -39.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296251" + "plane" "(1817 -2251 214) (1815 -2251 214) (1815 -2251 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296250" + "plane" "(1815 -2187 214) (1817 -2187 214) (1817 -2187 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296249" + "plane" "(1815 -2251 214) (1815 -2187 214) (1815 -2187 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296248" + "plane" "(1817 -2187 214) (1817 -2251 214) (1817 -2251 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 183.064] 0.246088" + "vaxis" "[0 0 -1 -19.8397] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017098" + side + { + "id" "296259" + "plane" "(1817 -2251 114) (1815 -2251 114) (1815 -2187 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 39.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296258" + "plane" "(1817 -2187 -38) (1815 -2187 -38) (1815 -2251 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -39.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296257" + "plane" "(1817 -2251 -38) (1815 -2251 -38) (1815 -2251 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296256" + "plane" "(1815 -2187 -38) (1817 -2187 -38) (1817 -2187 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296255" + "plane" "(1815 -2251 -38) (1815 -2187 -38) (1815 -2187 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296254" + "plane" "(1817 -2187 -38) (1817 -2251 -38) (1817 -2251 114)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 183.064] 0.246088" + "vaxis" "[0 0 -1 -143.872] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017099" + side + { + "id" "296265" + "plane" "(1817 -2185 114) (1815 -2185 114) (1815 -2121 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 31.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296264" + "plane" "(1817 -2121 -38) (1815 -2121 -38) (1815 -2185 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -31.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296263" + "plane" "(1817 -2185 -38) (1815 -2185 -38) (1815 -2185 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296262" + "plane" "(1815 -2121 -38) (1817 -2121 -38) (1817 -2121 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296261" + "plane" "(1815 -2185 -38) (1815 -2121 -38) (1815 -2121 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 36] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296260" + "plane" "(1817 -2121 -38) (1817 -2185 -38) (1817 -2185 114)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 170.867] 0.246088" + "vaxis" "[0 0 -1 -143.872] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017109" + side + { + "id" "296271" + "plane" "(1817 -2119 114) (1815 -2119 114) (1815 -2055 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 23.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296270" + "plane" "(1817 -2055 -38) (1815 -2055 -38) (1815 -2119 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -23.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296269" + "plane" "(1817 -2119 -38) (1815 -2119 -38) (1815 -2119 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296268" + "plane" "(1815 -2055 -38) (1817 -2055 -38) (1817 -2055 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296267" + "plane" "(1815 -2119 -38) (1815 -2055 -38) (1815 -2055 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296266" + "plane" "(1817 -2055 -38) (1817 -2119 -38) (1817 -2119 114)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 158.671] 0.246088" + "vaxis" "[0 0 -1 -143.872] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017110" + side + { + "id" "296277" + "plane" "(1817 -2053 114) (1815 -2053 114) (1815 -1990 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 19.9976] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296276" + "plane" "(1817 -1990 -38) (1815 -1990 -38) (1815 -2053 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -19.9976] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296275" + "plane" "(1817 -2053 -38) (1815 -2053 -38) (1815 -2053 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296274" + "plane" "(1815 -1990 -38) (1817 -1990 -38) (1817 -1990 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296273" + "plane" "(1815 -2053 -38) (1815 -1990 -38) (1815 -1990 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296272" + "plane" "(1817 -1990 -38) (1817 -2053 -38) (1817 -2053 114)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 150.537] 0.246088" + "vaxis" "[0 0 -1 -143.872] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017121" + side + { + "id" "296283" + "plane" "(1817 -1856 114) (1815 -1856 114) (1815 -1792 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 59.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296282" + "plane" "(1817 -1792 -38) (1815 -1792 -38) (1815 -1856 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -59.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296281" + "plane" "(1817 -1856 -38) (1815 -1856 -38) (1815 -1856 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296280" + "plane" "(1815 -1792 -38) (1817 -1792 -38) (1817 -1792 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296279" + "plane" "(1815 -1856 -38) (1815 -1792 -38) (1815 -1792 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296278" + "plane" "(1817 -1792 -38) (1817 -1856 -38) (1817 -1856 114)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 113.947] 0.246088" + "vaxis" "[0 0 -1 -143.872] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017123" + side + { + "id" "296289" + "plane" "(1817 -1790 114) (1815 -1790 114) (1815 -1726 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 51.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296288" + "plane" "(1817 -1726 -38) (1815 -1726 -38) (1815 -1790 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -51.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296287" + "plane" "(1817 -1790 -38) (1815 -1790 -38) (1815 -1790 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296286" + "plane" "(1815 -1726 -38) (1817 -1726 -38) (1817 -1726 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296285" + "plane" "(1815 -1790 -38) (1815 -1726 -38) (1815 -1726 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 120] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296284" + "plane" "(1817 -1726 -38) (1817 -1790 -38) (1817 -1790 114)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 101.75] 0.246088" + "vaxis" "[0 0 -1 -143.872] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017108" + side + { + "id" "296295" + "plane" "(1817 -2383 114) (1815 -2383 114) (1815 -2319 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 55.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296294" + "plane" "(1817 -2319 -38) (1815 -2319 -38) (1815 -2383 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -55.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296293" + "plane" "(1817 -2383 -38) (1815 -2383 -38) (1815 -2383 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296292" + "plane" "(1815 -2319 -38) (1817 -2319 -38) (1817 -2319 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296291" + "plane" "(1815 -2383 -38) (1815 -2319 -38) (1815 -2319 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296290" + "plane" "(1817 -2319 -38) (1817 -2383 -38) (1817 -2383 114)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 207.458] 0.246088" + "vaxis" "[0 0 -1 -143.872] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017097" + side + { + "id" "296301" + "plane" "(1817 -2317 114) (1815 -2317 114) (1815 -2253 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 47.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296300" + "plane" "(1817 -2253 -38) (1815 -2253 -38) (1815 -2317 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -47.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296299" + "plane" "(1817 -2317 -38) (1815 -2317 -38) (1815 -2317 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296298" + "plane" "(1815 -2253 -38) (1817 -2253 -38) (1817 -2253 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296297" + "plane" "(1815 -2317 -38) (1815 -2253 -38) (1815 -2253 114)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 -64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296296" + "plane" "(1817 -2253 -38) (1817 -2317 -38) (1817 -2317 114)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 195.261] 0.246088" + "vaxis" "[0 0 -1 -143.872] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016722" + side + { + "id" "296307" + "plane" "(1817 -2317 356) (1815 -2317 356) (1815 -2253 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 47.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296306" + "plane" "(1817 -2253 214) (1815 -2253 214) (1815 -2317 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -47.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296305" + "plane" "(1817 -2317 214) (1815 -2317 214) (1815 -2317 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296304" + "plane" "(1815 -2253 214) (1817 -2253 214) (1817 -2253 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296303" + "plane" "(1815 -2317 214) (1815 -2253 214) (1815 -2253 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296302" + "plane" "(1817 -2253 214) (1817 -2317 214) (1817 -2317 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 195.261] 0.246088" + "vaxis" "[0 0 -1 -19.8397] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016726" + side + { + "id" "296313" + "plane" "(1817 -2383 356) (1815 -2383 356) (1815 -2319 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 55.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296312" + "plane" "(1817 -2319 214) (1815 -2319 214) (1815 -2383 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -55.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296311" + "plane" "(1817 -2383 214) (1815 -2383 214) (1815 -2383 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296310" + "plane" "(1815 -2319 214) (1817 -2319 214) (1817 -2319 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296309" + "plane" "(1815 -2383 214) (1815 -2319 214) (1815 -2319 356)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 60] 0.25" + "vaxis" "[0 0 -1 -80] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296308" + "plane" "(1817 -2319 214) (1817 -2383 214) (1817 -2383 356)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 207.458] 0.246088" + "vaxis" "[0 0 -1 -19.8397] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -1268]" + } +} +entity +{ + "id" "2017525" + "classname" "func_detail" + solid + { + "id" "2016673" + side + { + "id" "296319" + "plane" "(1824 -1726 358) (1824 -1726 212) (1808 -1726 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47.48] 0.125" + "vaxis" "[1 0 0 0.00149536] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296318" + "plane" "(1808 -1724 358) (1808 -1724 212) (1824 -1724 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -24] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296317" + "plane" "(1808 -1726 358) (1808 -1726 212) (1808 -1724 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47.48] 0.125" + "vaxis" "[0 -1 0 -36.997] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296316" + "plane" "(1824 -1724 358) (1824 -1724 212) (1824 -1726 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 47.48] 0.125" + "vaxis" "[0 1 0 38.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296315" + "plane" "(1824 -1726 358) (1808 -1726 358) (1808 -1724 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 6.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296314" + "plane" "(1824 -1724 212) (1808 -1724 212) (1808 -1726 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -6.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2016686" + side + { + "id" "296325" + "plane" "(1824 -1792 356) (1824 -1792 214) (1808 -1792 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151.48] 0.125" + "vaxis" "[1 0 0 -63.9985] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296324" + "plane" "(1808 -1789.97 356) (1808 -1789.97 214) (1824 -1789.97 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151.48] 0.125" + "vaxis" "[-1 0 0 0.994629] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296323" + "plane" "(1808 -1792 356) (1808 -1792 214) (1808 -1789.97 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151.48] 0.125" + "vaxis" "[0 -1 0 -52.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296322" + "plane" "(1824 -1789.97 356) (1824 -1789.97 214) (1824 -1792 214)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 151.48] 0.125" + "vaxis" "[0 1 0 54.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296321" + "plane" "(1824 -1789.97 214) (1808 -1789.97 214) (1808 -1792 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -14.9981] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296320" + "plane" "(1824 -1792 356) (1808 -1792 356) (1808 -1789.97 356)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 14.9981] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017122" + side + { + "id" "296331" + "plane" "(1824 -1792 114) (1824 -1792 -38) (1808 -1792 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119.48] 0.125" + "vaxis" "[1 0 0 -63.9985] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296330" + "plane" "(1808 -1789.97 114) (1808 -1789.97 -38) (1824 -1789.97 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119.48] 0.125" + "vaxis" "[-1 0 0 0.994629] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296329" + "plane" "(1808 -1792 114) (1808 -1792 -38) (1808 -1789.97 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119.48] 0.125" + "vaxis" "[0 -1 0 -52.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296328" + "plane" "(1824 -1789.97 114) (1824 -1789.97 -38) (1824 -1792 -38)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 119.48] 0.125" + "vaxis" "[0 1 0 54.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296327" + "plane" "(1824 -1789.97 -38) (1808 -1789.97 -38) (1808 -1792 -38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -14.9981] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296326" + "plane" "(1824 -1792 114) (1808 -1792 114) (1808 -1789.97 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 14.9981] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2017124" + side + { + "id" "296337" + "plane" "(1824 -1726 114) (1824 -1726 -40) (1808 -1726 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 15.48] 0.125" + "vaxis" "[1 0 0 -63.9985] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296336" + "plane" "(1808 -1724 114) (1808 -1724 -40) (1824 -1724 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 24] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296335" + "plane" "(1808 -1726 114) (1808 -1726 -40) (1808 -1724 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 15.48] 0.125" + "vaxis" "[0 -1 0 -36.9969] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296334" + "plane" "(1824 -1724 114) (1824 -1724 -40) (1824 -1726 -40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 15.48] 0.125" + "vaxis" "[0 1 0 38.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296333" + "plane" "(1824 -1726 114) (1808 -1726 114) (1808 -1724 114)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 6.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296332" + "plane" "(1824 -1724 -40) (1808 -1724 -40) (1808 -1726 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -6.9975] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "161 170 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "161 170 0" + "groupid" "2026273" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -768]" + } +} +entity +{ + "id" "2017537" + "classname" "func_detail" + solid + { + "id" "2016915" + side + { + "id" "296343" + "plane" "(1808 -2385 212) (1808 -1724 212) (1824 -1724 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296342" + "plane" "(1808 -1724 116) (1808 -2385 116) (1824 -2385 116)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296341" + "plane" "(1808 -2385 116) (1808 -1724 116) (1808 -1724 212)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 -29] 0.125" + "vaxis" "[0 0 -1 -350] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296340" + "plane" "(1824 -1724 116) (1824 -2385 116) (1824 -2385 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296339" + "plane" "(1808 -1724 116) (1824 -1724 116) (1824 -1724 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296338" + "plane" "(1824 -2385 116) (1808 -2385 116) (1808 -2385 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 0]" + } +} +entity +{ + "id" "2005913" + "classname" "func_detail" + solid + { + "id" "2005914" + side + { + "id" "294519" + "plane" "(2240 -3792 296) (2240 -3792 208.002) (2240 -3776 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00976563] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294518" + "plane" "(2242 -3792 296) (2242 -3792 208) (2240 -3792 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 63.0059] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294517" + "plane" "(2240 -3776 296) (2240 -3776 208.002) (2242 -3776 208.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -1.00977] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294516" + "plane" "(2242 -3776 208.001) (2240 -3776 208.001) (2240 -3792 208.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40.0049] 0.25" + "vaxis" "[0 1 0 -0.00976563] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294515" + "plane" "(2242 -3776 296) (2242 -3776 208.002) (2242 -3792 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -1.01563] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294514" + "plane" "(2242 -3792 296) (2240 -3792 296) (2240 -3776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2005915" + side + { + "id" "294525" + "plane" "(2344 -3792 296) (2242 -3792 296) (2242 -3776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -0.0078125] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294524" + "plane" "(2344 -3776 294) (2242 -3776 294) (2242 -3792 294)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 152.01] 0.125" + "vaxis" "[0 1 0 -0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294523" + "plane" "(2344 -3792 294) (2242 -3792 294) (2242 -3792 296)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 152.01] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294522" + "plane" "(2242 -3776 294) (2344 -3776 294) (2344 -3776 296)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 152.01] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294521" + "plane" "(2344 -3776 294) (2344 -3792 294) (2344 -3792 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00976563] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294520" + "plane" "(2242 -3792 294) (2242 -3776 294) (2242 -3776 296)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00976563] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2005919" + side + { + "id" "294549" + "plane" "(2344 -3776 294) (2344 -3776 208.002) (2344 -3792 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 -1 48.0059] 0.125" + "vaxis" "[0 -1 0 0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294548" + "plane" "(2344 -3792 294) (2344 -3792 208.002) (2342 -3792 208.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -48] 0.125" + "vaxis" "[1 0 0 32.0117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294547" + "plane" "(2342 -3776 294) (2342 -3776 208) (2344 -3776 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -48] 0.125" + "vaxis" "[-1 0 0 -32.0059] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294546" + "plane" "(2342 -3792 208.001) (2344 -3792 208.001) (2344 -3776 208.001)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40.0049] 0.25" + "vaxis" "[0 1 0 -0.00976563] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294545" + "plane" "(2342 -3792 294) (2342 -3792 208.002) (2342 -3776 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -48] 0.125" + "vaxis" "[0 -1 0 0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294544" + "plane" "(2342 -3776 294) (2344 -3776 294) (2344 -3792 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2005917" + side + { + "id" "294537" + "plane" "(2342 -3792 210) (2242 -3792 210) (2242 -3776 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 144.01] 0.125" + "vaxis" "[0 -1 0 0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294536" + "plane" "(2342 -3776 208) (2242 -3776 208) (2242 -3792 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 144.01] 0.125" + "vaxis" "[0 1 0 -0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294535" + "plane" "(2342 -3792 208.001) (2242 -3792 208.001) (2242 -3792 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 144.01] 0.125" + "vaxis" "[0 0 -1 -2.04797] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294534" + "plane" "(2242 -3776 208.001) (2342 -3776 208.001) (2342 -3776 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 144.01] 0.125" + "vaxis" "[0 0 1 50.0539] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294533" + "plane" "(2342 -3776 208.001) (2342 -3792 208.001) (2342 -3792 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00976563] 0.25" + "vaxis" "[0 0 -1 -25.024] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294532" + "plane" "(2242 -3792 208.001) (2242 -3776 208.001) (2242 -3776 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0.00976563] 0.25" + "vaxis" "[0 0 -1 -25.024] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2005920" + side + { + "id" "294555" + "plane" "(2293 -3776 294) (2293 -3776 210) (2293 -3792 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[0 1 0 -0.015625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294554" + "plane" "(2291 -3792 294) (2291 -3792 210) (2291 -3776 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[0 -1 0 1.01563] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294553" + "plane" "(2293 -3792 294) (2293 -3792 210) (2291 -3792 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[1 0 0 57.0078] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294552" + "plane" "(2291 -3776 294) (2291 -3776 210) (2293 -3776 210.002)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -64] 0.125" + "vaxis" "[-1 0 0 -55.0098] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294551" + "plane" "(2291 -3792 294) (2291 -3776 294) (2293 -3776 294)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 39.9961] 0.25" + "vaxis" "[1 0 0 47.9912] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "294550" + "plane" "(2291 -3776 210) (2291 -3792 210) (2293 -3792 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24.0039] 0.25" + "vaxis" "[1 0 0 47.9912] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "2006097" + "classname" "func_detail" + solid + { + "id" "4892440" + side + { + "id" "349039" + "plane" "(2560 -4136 144) (2176 -4136 144) (2176 -4208 144)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[0 1 0 60] 0.125" + "vaxis" "[-1 0 0 -332] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "349038" + "plane" "(2176 -4136 148) (2176 -4136 144) (2560 -4136 144)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -398] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349037" + "plane" "(2560 -4208 148) (2560 -4208 144) (2176 -4208 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349036" + "plane" "(2560 -4136 148) (2560 -4136 144) (2560 -4208 144)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -206] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349035" + "plane" "(2176 -4208 148) (2176 -4208 144) (2176 -4136 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349034" + "plane" "(2560 -4208 148) (2176 -4208 148) (2176 -4136 148)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892422" + side + { + "id" "348997" + "plane" "(2560 -4208 208) (2176 -4208 208) (2176 -4136 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.00195313] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348996" + "plane" "(2560 -4136 205) (2560 -4136 208) (2176 -4136 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -398] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348995" + "plane" "(2176 -4208 205) (2176 -4208 208) (2560 -4208 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348994" + "plane" "(2560 -4208 205) (2560 -4208 208) (2560 -4136 208)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -206] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348993" + "plane" "(2176 -4136 205) (2176 -4136 208) (2176 -4208 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348992" + "plane" "(2560 -4136 205) (2176 -4136 205) (2176 -4208 205)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892439" + side + { + "id" "349033" + "plane" "(2176 -4136 205) (2176 -4136 148) (2560 -4136 148)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 120] 0.063" + "vaxis" "[0 0 -1 -55] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349032" + "plane" "(2560 -4208 205) (2560 -4208 148) (2176 -4208 148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349031" + "plane" "(2560 -4136 205) (2560 -4136 148) (2560 -4208 148)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -319.871] 0.063" + "vaxis" "[0 0 -1 -55] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349030" + "plane" "(2176 -4208 205) (2176 -4208 148) (2176 -4136 148)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349029" + "plane" "(2560 -4208 205) (2176 -4208 205) (2176 -4136 205)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349028" + "plane" "(2560 -4136 148) (2176 -4136 148) (2176 -4208 148)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 0]" + } +} +hidden +{ + entity + { + "id" "2006413" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1479 -3738 27" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "2006617" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/walllight001a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2503 -3766 181" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "2006657" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_lab/walllight001a.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2711.25 -3766 181" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1987827" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2793.16 -3008.79 299.98" + editor + { + "color" "148 153 0" + "groupid" "1987826" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1987830" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 600" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 208.887 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2791.83 -3008.71 298.269" + editor + { + "color" "148 153 0" + "groupid" "1987826" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1987835" + "classname" "prop_static" + "angles" "0 299.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2798.95 -3004.56 315.875" + editor + { + "color" "148 153 0" + "groupid" "1987826" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "1987957" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2790.43 -3422.96 299.98" + editor + { + "color" "148 153 0" + "groupid" "1987956" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1987960" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 600" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 162.387 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2789.58 -3421.94 298.269" + editor + { + "color" "148 153 0" + "groupid" "1987956" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1987965" + "classname" "prop_static" + "angles" "0 253 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2797.48 -3424.25 315.875" + editor + { + "color" "148 153 0" + "groupid" "1987956" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "1988035" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2807.18 -3398.2 300.105" + editor + { + "color" "148 153 0" + "groupid" "1988034" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1988038" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 12.387 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2808.43 -3398.65 298.394" + editor + { + "color" "148 153 0" + "groupid" "1988034" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1988043" + "classname" "prop_static" + "angles" "0 103 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800.43 -3400.6 316" + editor + { + "color" "148 153 0" + "groupid" "1988034" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "1988178" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2805.81 -3033.26 300.105" + editor + { + "color" "148 153 0" + "groupid" "1988177" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1988181" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 13.387 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2807.06 -3033.69 298.394" + editor + { + "color" "148 153 0" + "groupid" "1988177" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1988186" + "classname" "prop_static" + "angles" "0 104 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2799.1 -3035.78 316" + editor + { + "color" "148 153 0" + "groupid" "1988177" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "1988256" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2808.39 -2795.42 300.105" + editor + { + "color" "148 153 0" + "groupid" "1988255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1988259" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 351.387 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2809.4 -2796.29 298.394" + editor + { + "color" "148 153 0" + "groupid" "1988255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1988264" + "classname" "prop_static" + "angles" "0 82 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2801.23 -2795.25 316" + editor + { + "color" "148 153 0" + "groupid" "1988255" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "1988355" + "classname" "prop_static" + "angles" "0 0 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_vent_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3256 -2645.24 -200" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1988378" + "classname" "prop_static" + "angles" "0 0 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_vent_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3256 -2608 -200" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "1988689" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 350" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "1" + "_quadratic_attn" "0" + "_zero_percent_distance" "0" + "angles" "-60.3604 36.1626 -57.2081" + "pitch" "-60.3604" + "spawnflags" "0" + "style" "0" + "origin" "2198.99 -2814.47 297.269" + editor + { + "color" "148 153 0" + "groupid" "1988688" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1988694" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2197.68 -2814.24 298.98" + editor + { + "color" "148 153 0" + "groupid" "1988688" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1988697" + "classname" "prop_static" + "angles" "0 112 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2191.39 -2817.66 314.875" + editor + { + "color" "148 153 0" + "groupid" "1988688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "1974427" + "classname" "prop_static" + "angles" "0 258.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2074.82 -2845.38 340.22" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +entity +{ + "id" "1974431" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2069.24 -2844.57 324.517" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1974434" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 600" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 166.387 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2068.31 -2843.63 322.806" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1974525" + "classname" "prop_static" + "angles" "0 277.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2098.23 -2847.37 340.22" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +entity +{ + "id" "1974529" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2092.69 -2848.43 324.517" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1974532" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 600" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 185.387 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2091.5 -2847.84 322.806" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1975157" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1856 -3135 178.587" + editor + { + "color" "128 105 0" + "groupid" "1979135" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1975206" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "50" + "rendercolor" "190 253 128" + "renderfx" "0" + "rendermode" "9" + "scale" "0.8" + "spawnflags" "0" + "origin" "1856 -3132 178.587" + editor + { + "color" "128 105 0" + "groupid" "1979135" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "1975463" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_emergency/nuke_fire_alert_light.mdl" + "renderamt" "255" + "rendercolor" "239 239 239" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2152 -3056 117" + editor + { + "color" "105 138 0" + "groupid" "3580049" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "1975490" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "237 50 54" + "renderfx" "0" + "rendermode" "9" + "scale" ".2" + "spawnflags" "0" + "origin" "2152 -3051 117" + editor + { + "color" "105 138 0" + "groupid" "3580049" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "1975618" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "237 50 54 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "2152 -3030 117" + editor + { + "color" "105 138 0" + "groupid" "3580049" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "1975847" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2412.81 -3146.25 299.105" + editor + { + "color" "148 153 0" + "groupid" "1975911" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1975850" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 600" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 31.887 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2414.14 -3146.26 297.394" + editor + { + "color" "148 153 0" + "groupid" "1975911" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1975952" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 600" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 352.887 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2412.05 -3215.77 297.394" + editor + { + "color" "148 153 0" + "groupid" "1975951" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1975957" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2411.03 -3214.93 299.105" + editor + { + "color" "148 153 0" + "groupid" "1975951" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1975960" + "classname" "prop_static" + "angles" "0 83.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2403.86 -3214.94 315" + editor + { + "color" "148 153 0" + "groupid" "1975951" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "1975978" + "classname" "light_spot" + "_cone" "55" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 600" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-36.8472 310.387 -37.999" + "pitch" "-36.8472" + "spawnflags" "0" + "style" "0" + "origin" "2409.66 -3308.53 297.394" + editor + { + "color" "148 153 0" + "groupid" "1975977" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1975983" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2409.46 -3307.22 299.105" + editor + { + "color" "148 153 0" + "groupid" "1975977" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1975986" + "classname" "prop_static" + "angles" "0 41 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2404.18 -3302.39 315" + editor + { + "color" "148 153 0" + "groupid" "1975977" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +entity +{ + "id" "1976578" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -0 1" + "BasisOrigin" "2496 -3578 16" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke/hazard_stripe_001_trim" + "sides" "215076" + "StartU" "0" + "StartV" "0.308" + "uv0" "-63.9998 -1.848 0" + "uv1" "-63.9998 1.848 0" + "uv2" "63.9998 1.848 0" + "uv3" "63.9998 -1.848 0" + "origin" "2496 -3578 16" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "1976730" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -0 1" + "BasisOrigin" "2496 -3590 8" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke/hazard_stripe_001_trim" + "sides" "292187" + "StartU" "0" + "StartV" "0.308" + "uv0" "-63.9998 -1.848 0" + "uv1" "-63.9998 1.848 0" + "uv2" "63.9998 1.848 0" + "uv3" "63.9998 -1.848 0" + "origin" "2496 -3590 8" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "1976772" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -0 1" + "BasisOrigin" "2496 -3602 0" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke/hazard_stripe_001_trim" + "sides" "292199" + "StartU" "0" + "StartV" "0.308" + "uv0" "-63.9998 -1.848 0" + "uv1" "-63.9998 1.848 0" + "uv2" "63.9998 1.848 0" + "uv3" "63.9998 -1.848 0" + "origin" "2496 -3602 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "1976778" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -0 1" + "BasisOrigin" "2496 -3614 -8" + "BasisU" "1 0 0" + "BasisV" "-0 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke/hazard_stripe_001_trim" + "sides" "292211" + "StartU" "0" + "StartV" "0.308" + "uv0" "-63.9998 -1.848 0" + "uv1" "-63.9998 1.848 0" + "uv2" "63.9998 1.848 0" + "uv3" "63.9998 -1.848 0" + "origin" "2496 -3614 -8" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "1977546" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2120.01 -3673.5 164.26" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1977547" + side + { + "id" "293075" + "plane" "(2121 -3698 198.256) (2119 -3698 198.256) (2119 -3649 198.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293074" + "plane" "(2121 -3649 130.256) (2119 -3649 130.256) (2119 -3698 130.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293073" + "plane" "(2121 -3698 130.256) (2119 -3698 130.256) (2119 -3698 198.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293072" + "plane" "(2119 -3649 130.256) (2121 -3649 130.256) (2121 -3649 198.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293071" + "plane" "(2119 -3698 130.256) (2119 -3649 130.256) (2119 -3649 198.256)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 120.164] 0.191406" + "vaxis" "[0 0 -1 234.374] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293070" + "plane" "(2121 -3649 130.256) (2121 -3698 130.256) (2121 -3698 198.256)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 120.164] 0.191406" + "vaxis" "[0 0 -1 234.374] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "1977549" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2120.01 -3622.5 164.26" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1977550" + side + { + "id" "293081" + "plane" "(2121 -3647 198.256) (2119 -3647 198.256) (2119 -3598 198.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293080" + "plane" "(2121 -3598 130.256) (2119 -3598 130.256) (2119 -3647 130.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293079" + "plane" "(2121 -3647 130.256) (2119 -3647 130.256) (2119 -3647 198.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293078" + "plane" "(2119 -3598 130.256) (2121 -3598 130.256) (2121 -3598 198.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293077" + "plane" "(2119 -3647 130.256) (2119 -3598 130.256) (2119 -3598 198.256)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 -109.715] 0.191406" + "vaxis" "[0 0 -1 234.374] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293076" + "plane" "(2121 -3598 130.256) (2121 -3647 130.256) (2121 -3647 198.256)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 109.715] 0.191406" + "vaxis" "[0 0 -1 234.374] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "1977552" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2120.01 -3673.5 235.76" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1977553" + side + { + "id" "293087" + "plane" "(2121 -3698 270) (2119 -3698 270) (2119 -3649 270)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293086" + "plane" "(2121 -3649 200.256) (2119 -3649 200.256) (2119 -3698 200.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293085" + "plane" "(2121 -3698 200.256) (2119 -3698 200.256) (2119 -3698 270)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293084" + "plane" "(2119 -3649 200.256) (2121 -3649 200.256) (2121 -3649 270)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293083" + "plane" "(2119 -3698 200.256) (2119 -3649 200.256) (2119 -3649 270)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 -120.164] 0.191406" + "vaxis" "[0 0 -1 223.047] 0.272439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293082" + "plane" "(2121 -3649 200.256) (2121 -3698 200.256) (2121 -3698 270)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 120.164] 0.191406" + "vaxis" "[0 0 -1 223.047] 0.272439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "1977555" + "classname" "func_detail" + solid + { + "id" "1977674" + side + { + "id" "293153" + "plane" "(2112 -3596 272) (2112 -3596 130.256) (2128 -3596 130.254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293152" + "plane" "(2112 -3598 130.254) (2112 -3596 130.254) (2112 -3596 272)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 31.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293151" + "plane" "(2128 -3596 272) (2128 -3596 130.256) (2128 -3598 130.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -33.0078] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293150" + "plane" "(2128 -3596 130.256) (2112 -3596 130.256) (2112 -3598 130.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293149" + "plane" "(2128 -3598 272) (2128 -3598 130.256) (2112 -3598 130.254)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 62.9824] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293148" + "plane" "(2112 -3598 272) (2112 -3596 272) (2128 -3596 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1977557" + side + { + "id" "293099" + "plane" "(2112 -3698 272) (2112 -3598 272) (2128 -3598 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56] 0.25" + "vaxis" "[-1 0 0 -0.00585938] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293098" + "plane" "(2112 -3598 270) (2112 -3698 270) (2128 -3698 270)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293097" + "plane" "(2112 -3698 270) (2112 -3598 270) (2112 -3598 272)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293096" + "plane" "(2128 -3598 270) (2128 -3698 270) (2128 -3698 272)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293095" + "plane" "(2128 -3698 270) (2112 -3698 270) (2112 -3698 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293094" + "plane" "(2112 -3598 270) (2128 -3598 270) (2128 -3598 272)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1977558" + side + { + "id" "293105" + "plane" "(2112 -3596 128) (2112 -3700 128) (2128 -3700 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24.0039] 0.25" + "vaxis" "[0 -1 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293104" + "plane" "(2112 -3700 128) (2112 -3596 128) (2112 -3596 130.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293103" + "plane" "(2128 -3596 128) (2128 -3700 128) (2128 -3700 130.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293102" + "plane" "(2112 -3700 130.256) (2112 -3596 130.256) (2128 -3596 130.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293101" + "plane" "(2128 -3700 130.256) (2128 -3700 128) (2112 -3700 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293100" + "plane" "(2112 -3596 130.256) (2112 -3596 128) (2128 -3596 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 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" "1977564" + side + { + "id" "293141" + "plane" "(2112 -3698 200.256) (2112 -3598 200.256) (2128 -3598 200.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[-1 0 0 -63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293140" + "plane" "(2112 -3598 198.256) (2112 -3698 198.256) (2128 -3698 198.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293139" + "plane" "(2112 -3698 198.256) (2112 -3598 198.256) (2112 -3598 200.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293138" + "plane" "(2128 -3598 198.256) (2128 -3698 198.256) (2128 -3698 200.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293137" + "plane" "(2128 -3698 198.256) (2112 -3698 198.256) (2112 -3698 200.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293136" + "plane" "(2112 -3598 198.256) (2128 -3598 198.256) (2128 -3598 200.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 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" "1977560" + side + { + "id" "293117" + "plane" "(2128 -3647 130.256) (2112 -3647 130.256) (2112 -3649 130.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293116" + "plane" "(2128 -3649 198.256) (2128 -3649 130.256) (2112 -3649 130.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293115" + "plane" "(2112 -3647 198.256) (2112 -3647 130.256) (2128 -3647 130.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -62.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293114" + "plane" "(2112 -3649 198.256) (2112 -3649 130.256) (2112 -3647 130.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 25.0059] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293113" + "plane" "(2128 -3647 198.256) (2128 -3647 130.256) (2128 -3649 130.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -23.0078] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293112" + "plane" "(2128 -3649 198.256) (2112 -3649 198.256) (2112 -3647 198.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1977675" + side + { + "id" "293159" + "plane" "(2128 -3700 272) (2128 -3700 130.256) (2112 -3700 130.254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293158" + "plane" "(2112 -3700 272) (2112 -3700 130.256) (2112 -3698 130.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 0.00976563] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293157" + "plane" "(2128 -3698 130.254) (2128 -3700 130.254) (2128 -3700 272)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -0.00390625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293156" + "plane" "(2112 -3698 130.256) (2112 -3700 130.256) (2128 -3700 130.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293155" + "plane" "(2112 -3698 272) (2112 -3698 130.256) (2128 -3698 130.254)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293154" + "plane" "(2128 -3700 272) (2112 -3700 272) (2112 -3698 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1977563" + side + { + "id" "293135" + "plane" "(2128 -3649 270) (2128 -3649 200.256) (2112 -3649 200.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293134" + "plane" "(2112 -3647 270) (2112 -3647 200.256) (2128 -3647 200.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -62.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293133" + "plane" "(2112 -3649 270) (2112 -3649 200.256) (2112 -3647 200.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 25.0059] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293132" + "plane" "(2128 -3647 270) (2128 -3647 200.256) (2128 -3649 200.256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -23.0078] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293131" + "plane" "(2128 -3649 270) (2112 -3649 270) (2112 -3647 270)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24.0039] 0.25" + "vaxis" "[0 -1 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293130" + "plane" "(2128 -3647 200.256) (2112 -3647 200.256) (2112 -3649 200.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24.0039] 0.25" + "vaxis" "[0 -1 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "1977565" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "2120.01 -3622.5 235.76" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1977566" + side + { + "id" "293147" + "plane" "(2121 -3647 270) (2119 -3647 270) (2119 -3598 270)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -36.0039] 0.25" + "vaxis" "[0 -1 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293146" + "plane" "(2121 -3598 200.256) (2119 -3598 200.256) (2119 -3647 200.256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36.0039] 0.25" + "vaxis" "[0 -1 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293145" + "plane" "(2121 -3647 200.256) (2119 -3647 200.256) (2119 -3647 270)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293144" + "plane" "(2119 -3598 200.256) (2121 -3598 200.256) (2121 -3598 270)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293143" + "plane" "(2119 -3647 200.256) (2119 -3598 200.256) (2119 -3598 270)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 -109.715] 0.191406" + "vaxis" "[0 0 -1 223.047] 0.272439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "293142" + "plane" "(2121 -3598 200.256) (2121 -3647 200.256) (2121 -3647 270)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 109.715] 0.191406" + "vaxis" "[0 0 -1 223.047] 0.272439" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +hidden +{ + entity + { + "id" "1979137" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1536 -2992 151.587" + editor + { + "color" "128 105 0" + "groupid" "1979136" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1979141" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "50" + "rendercolor" "190 253 128" + "renderfx" "0" + "rendermode" "9" + "scale" "0.8" + "spawnflags" "0" + "origin" "1539 -2992 151.587" + editor + { + "color" "128 105 0" + "groupid" "1979136" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "1979332" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2132 -3648 120.587" + editor + { + "color" "216 113 0" + "groupid" "1979331" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1979336" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "50" + "rendercolor" "190 253 128" + "renderfx" "0" + "rendermode" "9" + "scale" "0.8" + "spawnflags" "0" + "origin" "2135 -3648 120.587" + editor + { + "color" "216 113 0" + "groupid" "1979331" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "1965408" + "classname" "prop_static" + "angles" "0 155.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2199.31 -2951.33 315.305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +entity +{ + "id" "1965460" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow06.vmt" + "renderamt" "255" + "rendercolor" "255 240 187" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2201.35 -2946.07 299.602" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1965484" + "classname" "light_spot" + "_cone" "30" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "25" + "_light" "255 240 187 350" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "1" + "_quadratic_attn" "0" + "_zero_percent_distance" "0" + "angles" "-51.5996 58.7597 -31.4985" + "pitch" "-51.5996" + "spawnflags" "0" + "style" "0" + "origin" "2202.48 -2945.38 297.891" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1956096" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "193 252 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "0 180 180" + "pitch" "0" + "spawnflags" "0" + "style" "0" + "origin" "3743 -3016 248" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1956157" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "193 252 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "0 180 -180" + "pitch" "0" + "spawnflags" "0" + "style" "0" + "origin" "3743 -2792 248" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1956162" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "193 252 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "0 180 180" + "pitch" "0" + "spawnflags" "0" + "style" "0" + "origin" "3743 -3200 248" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1956167" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "193 252 255 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "0 180 -180" + "pitch" "0" + "spawnflags" "0" + "style" "0" + "origin" "3743 -3424 248" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1956172" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 253 170 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "0 180 180" + "pitch" "0" + "spawnflags" "0" + "style" "0" + "origin" "3743 -2912 392" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1936861" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1073 -2715 -43" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "1937463" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1081 -2851 -43" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "1937471" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1081 -2723 -43" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "1937519" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1081 -3046 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "1937672" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1082 -3120 -43" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "1937801" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1017 -3120 -43" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "1937817" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "952 -3120 -43" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "1937831" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "889 -3185 -43" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "1925973" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2738 -2190 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1925977" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2544 -2186 296" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1925981" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2688 -2190 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1925985" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2818 -2186 296" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1925989" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2994 -2190 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1925993" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2958 -2190 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1925997" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3250 -2190 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926001" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -2190 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926005" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3506 -2190 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926009" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3358 -2186 296" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926013" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -2190 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926017" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3762 -2190 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926021" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3628 -2186 296" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926025" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2190 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926029" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2190 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926097" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3093 -2186 296" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926380" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2452 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926384" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2324 292" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926388" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2678.13 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926392" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2584 292" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926396" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2718 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926400" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2934.13 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926404" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2848 292" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926408" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2988 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926412" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3190.13 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926416" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3118 292" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926420" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3446.13 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926424" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3258 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926428" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3388 292" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926432" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3532 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926436" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3702.13 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926440" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3662 292" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926444" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3802 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926448" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3958.13 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926452" + "classname" "prop_static" + "angles" "-90 268.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4062 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926456" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3958 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926460" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4022 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926464" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3932 292" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926468" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4072 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926472" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4072 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926576" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3769.75 -2454 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926827" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3506 -4072 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926831" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3638 -4074 294" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926835" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -4072 232.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926839" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3250 -4072 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926843" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3374 -4074 296" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926847" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2994 -4072 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926851" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -4072 232.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926855" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3090 -4072 296" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926859" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2994 -4072 226" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1926863" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -4072 232" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1927671" + "classname" "func_detail" + solid + { + "id" "1927669" + side + { + "id" "289973" + "plane" "(3752 -2714 480) (3762 -2714 480) (3762 -3539 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289972" + "plane" "(3752 -3539 200) (3762 -3539 200) (3762 -2714 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" "289971" + "plane" "(3752 -2714 480) (3752 -3539 480) (3752 -3539 200)" + "material" "CS_APOLLO/OUTSIDE/HUBBLE2" + "uaxis" "[0 -1 0 -296.65] 0.805664" + "vaxis" "[0 0 -1 365.714] 0.546875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289970" + "plane" "(3762 -2714 200) (3762 -3539 200) (3762 -3539 480)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289969" + "plane" "(3762 -2714 480) (3752 -2714 480) (3752 -2714 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "289968" + "plane" "(3762 -3539 200) (3752 -3539 200) (3752 -3539 480)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9000]" + } +} +hidden +{ + entity + { + "id" "1906096" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2688 -2708 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1906100" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2687 -2452 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1906421" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3040.99 469" + editor + { + "color" "179 132 0" + "groupid" "1906420" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1906425" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3040.99 453" + editor + { + "color" "179 132 0" + "groupid" "1906420" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1906429" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3040.99 453" + editor + { + "color" "179 132 0" + "groupid" "1906420" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1906433" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02_add.vmt" + "renderamt" "255" + "rendercolor" "255 242 204" + "renderfx" "0" + "rendermode" "9" + "scale" "0.5" + "spawnflags" "0" + "origin" "3500 -3040.99 411" + editor + { + "color" "179 132 0" + "groupid" "1906419" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1906436" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 242 204 400" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "3500 -3040.99 390" + editor + { + "color" "179 132 0" + "groupid" "1906419" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "1906789" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -2505.99 469" + editor + { + "color" "179 132 0" + "groupid" "1906788" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1906793" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -2505.99 453" + editor + { + "color" "179 132 0" + "groupid" "1906788" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1906797" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -2505.99 453" + editor + { + "color" "179 132 0" + "groupid" "1906788" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1906801" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02_add.vmt" + "renderamt" "255" + "rendercolor" "255 242 204" + "renderfx" "0" + "rendermode" "9" + "scale" "0.5" + "spawnflags" "0" + "origin" "3500 -2505.99 411" + editor + { + "color" "179 132 0" + "groupid" "1906787" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1906804" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 242 204 400" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "3500 -2505.99 390" + editor + { + "color" "179 132 0" + "groupid" "1906787" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "1908212" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3575.99 469" + editor + { + "color" "179 132 0" + "groupid" "1908211" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1908216" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3575.99 453" + editor + { + "color" "179 132 0" + "groupid" "1908211" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1908220" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3575.99 453" + editor + { + "color" "179 132 0" + "groupid" "1908211" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1908224" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02_add.vmt" + "renderamt" "255" + "rendercolor" "255 242 204" + "renderfx" "0" + "rendermode" "9" + "scale" "0.5" + "spawnflags" "0" + "origin" "3229 -3575.99 411" + editor + { + "color" "179 132 0" + "groupid" "1908210" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1908227" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 242 204 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "3229 -3575.99 390" + editor + { + "color" "179 132 0" + "groupid" "1908210" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "1908256" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3040.99 469" + editor + { + "color" "179 132 0" + "groupid" "1908255" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1908260" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3040.99 453" + editor + { + "color" "179 132 0" + "groupid" "1908255" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1908264" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3040.99 453" + editor + { + "color" "179 132 0" + "groupid" "1908255" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1908268" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02_add.vmt" + "renderamt" "255" + "rendercolor" "255 242 204" + "renderfx" "0" + "rendermode" "9" + "scale" "0.5" + "spawnflags" "0" + "origin" "3229 -3040.99 411" + editor + { + "color" "179 132 0" + "groupid" "1908254" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1908271" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 242 204 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "3229 -3040.99 390" + editor + { + "color" "179 132 0" + "groupid" "1908254" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "1908300" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -2505.99 469" + editor + { + "color" "179 132 0" + "groupid" "1908299" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1908304" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -2505.99 453" + editor + { + "color" "179 132 0" + "groupid" "1908299" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1908308" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -2505.99 453" + editor + { + "color" "179 132 0" + "groupid" "1908299" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1908312" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02_add.vmt" + "renderamt" "255" + "rendercolor" "255 242 204" + "renderfx" "0" + "rendermode" "9" + "scale" "0.5" + "spawnflags" "0" + "origin" "3229 -2505.99 411" + editor + { + "color" "179 132 0" + "groupid" "1908298" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1908315" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 242 204 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "3229 -2505.99 390" + editor + { + "color" "179 132 0" + "groupid" "1908298" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "1867036" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3766 346" + editor + { + "color" "160 225 0" + "groupid" "1867398" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1867244" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3766 346" + editor + { + "color" "162 139 0" + "groupid" "1867325" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1868949" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1683 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1873688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1868984" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1549 -2848 16" + editor + { + "color" "212 213 0" + "groupid" "1873688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1869190" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1555 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1873688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1869254" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3766 320" + editor + { + "color" "159 224 0" + "groupid" "1896271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1869368" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3766 336" + editor + { + "color" "159 224 0" + "groupid" "1896271" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1869605" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3766 320" + editor + { + "color" "162 139 0" + "groupid" "1870728" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1869616" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3766 336" + editor + { + "color" "162 139 0" + "groupid" "1870728" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1869627" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3766 336" + editor + { + "color" "160 225 0" + "groupid" "1870841" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1869631" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3766 320" + editor + { + "color" "160 225 0" + "groupid" "1870841" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870029" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -2570 84" + editor + { + "color" "160 225 0" + "groupid" "1870511" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870033" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2570 84" + editor + { + "color" "162 139 0" + "groupid" "1870615" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870091" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2570 20" + editor + { + "color" "162 139 0" + "groupid" "1870615" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870095" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -2570 20" + editor + { + "color" "160 225 0" + "groupid" "1870511" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870175" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2570 -16" + editor + { + "color" "162 139 0" + "groupid" "1870615" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870179" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -2570 -16" + editor + { + "color" "160 225 0" + "groupid" "1870511" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870213" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -2570 4" + editor + { + "color" "160 225 0" + "groupid" "1870511" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870217" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2570 4" + editor + { + "color" "162 139 0" + "groupid" "1870615" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870243" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -2570 0" + editor + { + "color" "160 225 0" + "groupid" "1870511" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1870247" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2570 0" + editor + { + "color" "162 139 0" + "groupid" "1870615" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871040" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1549 -2848 212" + editor + { + "color" "212 213 0" + "groupid" "1873688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871072" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1549 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1873688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871103" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1549 -2848 84" + editor + { + "color" "212 213 0" + "groupid" "1873688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871111" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1549 -2848 52" + editor + { + "color" "212 213 0" + "groupid" "1873688" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871271" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2201 -3050 346" + editor + { + "color" "181 154 0" + "groupid" "1896167" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871309" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2201 -3050 84" + editor + { + "color" "181 154 0" + "groupid" "1896036" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871333" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2201 -3050 16" + editor + { + "color" "181 154 0" + "groupid" "1896036" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871387" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2201 -3050 52" + editor + { + "color" "181 154 0" + "groupid" "1896036" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871414" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2201 -3050 36" + editor + { + "color" "181 154 0" + "groupid" "1896036" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871433" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2201 -3050 32" + editor + { + "color" "181 154 0" + "groupid" "1896036" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1871576" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_alarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2169 -3056.04 117" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "1871595" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2136 -3056 117" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "1871701" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "208 34 38" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2136 -3052 60" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "1873324" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -2570 84" + editor + { + "color" "159 224 0" + "groupid" "1873560" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1873371" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -2570 16" + editor + { + "color" "159 224 0" + "groupid" "1873560" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1873390" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -2570 52" + editor + { + "color" "159 224 0" + "groupid" "1873560" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1873412" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -2570 36" + editor + { + "color" "159 224 0" + "groupid" "1873560" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1873443" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -2570 32" + editor + { + "color" "159 224 0" + "groupid" "1873560" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1873946" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -3126 346" + editor + { + "color" "187 164 0" + "groupid" "1874112" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1873993" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -3126 320" + editor + { + "color" "187 164 0" + "groupid" "1874112" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1874004" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -3126 336" + editor + { + "color" "187 164 0" + "groupid" "1874112" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1874222" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -2576 346" + editor + { + "color" "187 164 0" + "groupid" "1896095" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1874250" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1953 -2560 345" + editor + { + "color" "187 164 0" + "groupid" "1896095" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1874789" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -3126 346" + editor + { + "color" "188 105 0" + "groupid" "1875282" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1874816" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -2570 346" + editor + { + "color" "188 105 0" + "groupid" "1875207" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1874840" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -2570 336" + editor + { + "color" "188 105 0" + "groupid" "1875207" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1874859" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -2570 320" + editor + { + "color" "188 105 0" + "groupid" "1875207" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1874934" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -3126 336" + editor + { + "color" "188 105 0" + "groupid" "1875282" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1874938" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -3126 320" + editor + { + "color" "188 105 0" + "groupid" "1875282" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1875338" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1549 -2848 36" + editor + { + "color" "212 213 0" + "groupid" "1875421" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1875365" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1549 -2848 32" + editor + { + "color" "212 213 0" + "groupid" "1875421" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1875636" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1747 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1875899" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1875670" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1757 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1875899" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876032" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1777 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876048" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1905 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876089" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1937 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876104" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1940 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876211" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1960 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876227" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2088 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876250" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2152 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876280" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2184 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876295" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2187 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876307" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2207 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876327" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2335 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876346" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2397 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876377" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2413 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876400" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2541 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876426" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2573 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876449" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2589 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876464" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2592 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876476" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2612 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876492" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2740 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876515" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2772 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876530" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2786 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876584" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2848 346" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876642" + "classname" "prop_static" + "angles" "0 0 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2848 340" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876679" + "classname" "prop_static" + "angles" "0 0 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2848 84" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876706" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2848 -16" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876741" + "classname" "prop_static" + "angles" "0 0 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2848 20" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1876780" + "classname" "prop_static" + "angles" "0 0 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2848 4" + editor + { + "color" "212 213 0" + "groupid" "1876966" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877382" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3537 346" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877386" + "classname" "prop_static" + "angles" "0 0 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3537 340" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877390" + "classname" "prop_static" + "angles" "0 0 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3537 84" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877394" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3537 -16" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877398" + "classname" "prop_static" + "angles" "0 0 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3537 4" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877402" + "classname" "prop_static" + "angles" "0 0 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3537 20" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877502" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2616 -3537 346" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877533" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2360 -3537 346" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877541" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2246 -3537 16" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877545" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2246 -3537 52" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877549" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2246 -3537 84" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877553" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2246 -3537 212" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877557" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2246 -3537 346" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877561" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2246 -3537 32" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877565" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2246 -3537 36" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877737" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2360 -3537 346" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877767" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2296 -3537 346" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877786" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2264 -3537 346" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1877808" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2256 -3537 346" + editor + { + "color" "186 115 0" + "groupid" "1877959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1878492" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1666 -2992 309" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1878610" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1536 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1878685" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1456 -3136 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1878722" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1666 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1878766" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1668 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879059" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1798 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879063" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1800 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879067" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1798 -2992 309" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879083" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1930 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879087" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1932 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879091" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1930 -2992 309" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879107" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2062 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879111" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2064 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879115" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2062 -2992 309" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879131" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2194 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879135" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2196 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879155" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2326 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879159" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2328 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879163" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2326 -2992 309" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879179" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2458 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879183" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2460 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879187" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2458 -2992 309" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879203" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2590 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879207" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2592 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879211" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2590 -2992 309" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879227" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2722 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879231" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_32.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2724 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879235" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2722 -2992 309" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879251" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_32.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2756 -2992 312" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879262" + "classname" "prop_static" + "angles" "0 0 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_corner_large.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2810 -2992 314" + editor + { + "color" "240 197 0" + "groupid" "1879425" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1879771" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2992 351" + editor + { + "color" "178 103 0" + "groupid" "2124810" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1879955" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2992 319" + editor + { + "color" "178 103 0" + "groupid" "2124788" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1879991" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2992 309" + editor + { + "color" "178 103 0" + "groupid" "2124788" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880247" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2992 351" + editor + { + "color" "134 147 0" + "groupid" "2124771" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880251" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2992 319" + editor + { + "color" "134 147 0" + "groupid" "2124771" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880255" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2992 309" + editor + { + "color" "134 147 0" + "groupid" "2124771" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880273" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2992 351" + editor + { + "color" "212 233 0" + "groupid" "2124831" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880277" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2992 319" + editor + { + "color" "212 233 0" + "groupid" "2124831" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880281" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2992 309" + editor + { + "color" "212 233 0" + "groupid" "2124831" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880299" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2992 351" + editor + { + "color" "158 111 0" + "groupid" "2124852" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880303" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2992 319" + editor + { + "color" "158 111 0" + "groupid" "2124852" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880307" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2992 309" + editor + { + "color" "158 111 0" + "groupid" "2124852" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880325" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2992 351" + editor + { + "color" "104 157 0" + "groupid" "2124873" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880329" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2992 319" + editor + { + "color" "104 157 0" + "groupid" "2124873" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880333" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2992 309" + editor + { + "color" "104 157 0" + "groupid" "2124873" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880364" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2992 351" + editor + { + "color" "130 187 0" + "groupid" "2124894" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880368" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2992 319" + editor + { + "color" "130 187 0" + "groupid" "2124894" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880372" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2992 309" + editor + { + "color" "130 187 0" + "groupid" "2124894" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880605" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2812 -2992 320" + editor + { + "color" "240 197 0" + "groupid" "1880860" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880880" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2722 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880884" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2722 -2714 309" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880888" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2592 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880892" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2590 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880896" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2590 -2714 309" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880900" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2460 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880904" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2458 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880908" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2458 -2714 309" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880912" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2328 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880916" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2326 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880920" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2326 -2714 309" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880924" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2196 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880928" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2194 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880932" + "classname" "prop_static" + "angles" "0 330 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1581.16 -2713.98 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880936" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2064 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880940" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2062 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880944" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2062 -2714 309" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880948" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1932 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880952" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1930 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880956" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1930 -2714 309" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880960" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1800 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880964" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1798 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880968" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1798 -2714 309" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880972" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1668 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880976" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1666 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880980" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1666 -2714 309" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880984" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_64.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1600 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1880867" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1880993" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2714 351" + editor + { + "color" "127 156 0" + "groupid" "1880992" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1880997" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2714 319" + editor + { + "color" "127 156 0" + "groupid" "1880992" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881001" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2714 309" + editor + { + "color" "127 156 0" + "groupid" "1880992" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881006" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2714 351" + editor + { + "color" "127 156 0" + "groupid" "1881005" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881010" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2714 319" + editor + { + "color" "127 156 0" + "groupid" "1881005" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881014" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2714 309" + editor + { + "color" "127 156 0" + "groupid" "1881005" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881019" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2714 351" + editor + { + "color" "127 156 0" + "groupid" "1881018" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881023" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2714 319" + editor + { + "color" "127 156 0" + "groupid" "1881018" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881027" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2714 309" + editor + { + "color" "127 156 0" + "groupid" "1881018" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881032" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2714 351" + editor + { + "color" "127 156 0" + "groupid" "1881031" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881036" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2714 319" + editor + { + "color" "127 156 0" + "groupid" "1881031" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881040" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2714 309" + editor + { + "color" "127 156 0" + "groupid" "1881031" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881045" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2714 351" + editor + { + "color" "127 156 0" + "groupid" "1881044" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881049" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2714 319" + editor + { + "color" "127 156 0" + "groupid" "1881044" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881053" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2714 309" + editor + { + "color" "127 156 0" + "groupid" "1881044" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881058" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2714 351" + editor + { + "color" "127 156 0" + "groupid" "1881057" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881062" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2714 319" + editor + { + "color" "127 156 0" + "groupid" "1881057" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881066" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2714 309" + editor + { + "color" "127 156 0" + "groupid" "1881057" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881409" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2722 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881413" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2722 -3264 309" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881417" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2592 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881421" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2590 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881425" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2590 -3264 309" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881429" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2460 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881433" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2458 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881437" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2458 -3264 309" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881441" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2328 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881445" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2326 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881449" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2326 -3264 309" + editor + { + "color" "239 220 0" + "groupid" "1881396" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1881535" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -3264 351" + editor + { + "color" "111 248 0" + "groupid" "1881534" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881539" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -3264 319" + editor + { + "color" "111 248 0" + "groupid" "1881534" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881543" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -3264 309" + editor + { + "color" "111 248 0" + "groupid" "1881534" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881548" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -3264 351" + editor + { + "color" "111 248 0" + "groupid" "1881547" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881552" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -3264 319" + editor + { + "color" "111 248 0" + "groupid" "1881547" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881556" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -3264 309" + editor + { + "color" "111 248 0" + "groupid" "1881547" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881561" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -3264 351" + editor + { + "color" "111 248 0" + "groupid" "1881560" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881565" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -3264 319" + editor + { + "color" "111 248 0" + "groupid" "1881560" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1881569" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -3264 309" + editor + { + "color" "111 248 0" + "groupid" "1881560" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1882107" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_64.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2260 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1882265" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882130" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2240 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1882265" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882149" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_16.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2244 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1882265" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882168" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_4.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2240 -3264 312" + editor + { + "color" "239 220 0" + "groupid" "1882265" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882281" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2722 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882285" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2722 -3626 309" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882289" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2592 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882293" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2590 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882297" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2590 -3626 309" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882301" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2460 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882305" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2458 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882309" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2458 -3626 309" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882313" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_128.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2328 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882317" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2326 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882321" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2326 -3626 309" + editor + { + "color" "233 230 0" + "groupid" "1882268" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882329" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_64.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2260 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882266" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882341" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882266" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882843" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_64.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2196 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882981" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882866" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_section_short.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2194 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882981" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882870" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/sprinkler_001/sprinkler_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2194 -3626 309" + editor + { + "color" "233 230 0" + "groupid" "1882981" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1882882" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_64.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3626 312" + editor + { + "color" "233 230 0" + "groupid" "1882981" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1883092" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_32.mdl" + "renderamt" "255" + "rendercolor" "216 48 52" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1568 -2714 312" + editor + { + "color" "251 216 0" + "groupid" "1883277" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -13768]" + } + } +} +hidden +{ + entity + { + "id" "1883922" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1667 -2888 305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1885791" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2308 -3626 351" + editor + { + "color" "149 206 0" + "groupid" "1885790" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885795" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2308 -3626 319" + editor + { + "color" "149 206 0" + "groupid" "1885790" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885799" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2308 -3626 309" + editor + { + "color" "149 206 0" + "groupid" "1885790" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885804" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2506 -3626 351" + editor + { + "color" "149 206 0" + "groupid" "1885803" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885808" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2506 -3626 319" + editor + { + "color" "149 206 0" + "groupid" "1885803" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885812" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2506 -3626 309" + editor + { + "color" "149 206 0" + "groupid" "1885803" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885817" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2700 -3626 351" + editor + { + "color" "149 206 0" + "groupid" "1885816" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885821" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2700 -3626 319" + editor + { + "color" "149 206 0" + "groupid" "1885816" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885825" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2700 -3626 309" + editor + { + "color" "149 206 0" + "groupid" "1885816" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885895" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_frame.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2169 -3626 309" + editor + { + "color" "149 206 0" + "groupid" "1885931" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885899" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2169 -3626 319" + editor + { + "color" "149 206 0" + "groupid" "1885931" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1885903" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_feet.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2169 -3626 351" + editor + { + "color" "149 206 0" + "groupid" "1885931" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889457" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2714 311" + editor + { + "color" "127 156 0" + "groupid" "1892196" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889461" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2308 -3626 311" + editor + { + "color" "149 206 0" + "groupid" "1891372" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889465" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2506 -3626 311" + editor + { + "color" "149 206 0" + "groupid" "1891372" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889469" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2700 -3626 311" + editor + { + "color" "149 206 0" + "groupid" "1891372" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889477" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2169 -3626 311" + editor + { + "color" "149 206 0" + "groupid" "1891372" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889481" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -3264 311" + editor + { + "color" "111 248 0" + "groupid" "1891602" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889485" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -3264 311" + editor + { + "color" "111 248 0" + "groupid" "1891602" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889489" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -3264 311" + editor + { + "color" "111 248 0" + "groupid" "1891602" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889497" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2714 311" + editor + { + "color" "127 156 0" + "groupid" "1892196" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889501" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2714 311" + editor + { + "color" "127 156 0" + "groupid" "1892196" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889505" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2992 311" + editor + { + "color" "134 147 0" + "groupid" "2124771" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889509" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2992 311" + editor + { + "color" "178 103 0" + "groupid" "2124788" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889513" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2992 311" + editor + { + "color" "212 233 0" + "groupid" "2124831" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889517" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2992 311" + editor + { + "color" "158 111 0" + "groupid" "2124852" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889521" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2992 311" + editor + { + "color" "104 157 0" + "groupid" "2124873" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889525" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2992 311" + editor + { + "color" "130 187 0" + "groupid" "2124894" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889537" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2714 311" + editor + { + "color" "127 156 0" + "groupid" "1892196" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889541" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2714 311" + editor + { + "color" "127 156 0" + "groupid" "1892196" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1889545" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2714 311" + editor + { + "color" "127 156 0" + "groupid" "1892196" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890572" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2714 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890576" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2308 -3626 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890580" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2506 -3626 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890584" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2700 -3626 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890592" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2169 -3626 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890596" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -3264 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890600" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -3264 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890604" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -3264 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890612" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2714 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890616" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2714 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890620" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1652 -2992 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890624" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1864 -2992 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890628" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2079 -2992 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890632" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2992 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890636" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2992 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890640" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2992 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890652" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2702 -2714 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890656" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2508 -2714 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1890660" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_support_2.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2310 -2714 309" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "1893437" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_split_horizontal.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1827 -2888 305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893551" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1698 -2888 296" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893665" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1539 -2888 305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893693" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_endcap.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1538 -2888 305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893748" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_32.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1795 -2888 305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893783" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_32.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1869 -2930 305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893821" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1869 -2846 305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893848" + "classname" "prop_static" + "angles" "0 180 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_curve_u_short.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1869 -2970 297" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893871" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_curve_u_short.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1869 -2978 289" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893891" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_128.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1870 -2978 289" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893902" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_c.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1870 -3073 280" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893944" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_32.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1870 -3106 289" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1893974" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_endcap.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1869 -3135 289" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894127" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_sidevent_b.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1634 -2876 305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894348" + "classname" "prop_static" + "angles" "0 0 90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_curve_u_short.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1869 -2742 297" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894352" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_curve_u_short.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1869 -2734 289" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894388" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_32.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "1869 -2782 305" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894479" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_supports_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1870 -3042 289" + editor + { + "color" "251 136 0" + "groupid" "1894834" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894605" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_support_feet.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1870 -3042 352" + editor + { + "color" "251 136 0" + "groupid" "1894834" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894836" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_support_feet.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1870 -3106 352" + editor + { + "color" "251 136 0" + "groupid" "1894835" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894840" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_supports_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1870 -3106 289" + editor + { + "color" "251 136 0" + "groupid" "1894835" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894863" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_support_feet.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1870 -2978 352" + editor + { + "color" "251 136 0" + "groupid" "1894862" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +hidden +{ + entity + { + "id" "1894867" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/airduct_hvac_001/airduct_hvac_001_supports_64.mdl" + "renderamt" "255" + "rendercolor" "170 170 170" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "1870 -2978 289" + editor + { + "color" "251 136 0" + "groupid" "1894862" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9268]" + } + } +} +entity +{ + "id" "1895769" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "1770 -2704 315" + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896096" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "1771 -2959 315" + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896105" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "1953 -2704 315" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896108" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "1954 -2959 315" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896117" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2200 -2703 315" + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896120" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2201 -2958 315" + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896272" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2408 -2956 315" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896275" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2407 -2701 315" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896300" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2407 -3534 315" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896303" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2406 -3279 315" + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896324" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2800 -3643 315" + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896327" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2799 -3282 315" + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896330" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2801 -2959 315" + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +entity +{ + "id" "1896333" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/bell_light_space_shuttle" + "fixup_style" "0" + "origin" "2800 -2704 315" + editor + { + "color" "220 30 220" + "visgroupid" "23" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -2768]" + } +} +hidden +{ + entity + { + "id" "1859583" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3575.99 469" + editor + { + "color" "179 132 0" + "groupid" "1859582" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1859587" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3575.99 453" + editor + { + "color" "179 132 0" + "groupid" "1859582" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1859591" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3575.99 453" + editor + { + "color" "179 132 0" + "groupid" "1859582" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1859595" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02_add.vmt" + "renderamt" "255" + "rendercolor" "255 242 204" + "renderfx" "0" + "rendermode" "9" + "scale" "0.5" + "spawnflags" "0" + "origin" "3500 -3575.99 411" + editor + { + "color" "179 132 0" + "groupid" "1859581" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1859598" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 242 204 400" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "3500 -3575.99 390" + editor + { + "color" "179 132 0" + "groupid" "1859581" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "1851225" + "classname" "prop_static" + "angles" "0 98 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1011 -4369 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "1851257" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "539 -5899 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "1851273" + "classname" "prop_static" + "angles" "0 354.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "411 -5899 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "1851285" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1034 -5899 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "1851297" + "classname" "prop_static" + "angles" "0 359.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "602 -4662 -7.62939e-06" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "1852134" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1680 -952 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +hidden +{ + entity + { + "id" "1852158" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2192 -952 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1852230" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2256 -952 -15.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1852321" + "classname" "prop_static" + "angles" "0 193 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/sign_01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "667 -973 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "1843833" + "classname" "prop_static" + "angles" "0 122.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407.25 -3150.77 315" + editor + { + "color" "148 153 0" + "groupid" "1975911" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "1843860" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2169 -3056.04 72" + editor + { + "color" "141 146 0" + "groupid" "1843914" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "1843887" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_firealarm_001_cover.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2169 -3056.04 72" + editor + { + "color" "141 146 0" + "groupid" "1843914" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "1834443" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3766 1" + editor + { + "color" "160 225 0" + "groupid" "1867959" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1834447" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3766 1" + editor + { + "color" "162 139 0" + "groupid" "1869899" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1834505" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3766 -2" + editor + { + "color" "160 225 0" + "groupid" "1868615" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1834509" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3766 -2" + editor + { + "color" "162 139 0" + "groupid" "1869899" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835673" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1856 -2985 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835731" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1854 -2791 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835743" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1856 -2729 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835774" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1854 -2759 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835793" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1854 -2743 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835816" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2729 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835828" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_corner.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2985 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835851" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1854 -2735 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835870" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1854 -2731 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835885" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2731 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835889" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2735 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835893" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2759 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835897" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2743 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835901" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_64.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2791 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835905" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2855 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835909" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1886 -2727 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835942" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1870 -2727 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835953" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1862 -2727 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835968" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_4.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1862 -2985 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835972" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_8.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1870 -2985 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1835976" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_16.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1886 -2985 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1826951" + "classname" "prop_static" + "angles" "-90 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4072 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827035" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3976 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827075" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3958 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827099" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4072 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827135" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4022 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827175" + "classname" "prop_static" + "angles" "-90 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4034 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827191" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2994 -4072 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827219" + "classname" "prop_static" + "angles" "-90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2994 -4072 506.052" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827231" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -4072 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827243" + "classname" "prop_static" + "angles" "-90 268.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_8.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4062 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827275" + "classname" "prop_static" + "angles" "-90 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_4.mdl" + "renderamt" "255" + "rendercolor" "179 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4066 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1827311" + "classname" "prop_static" + "angles" "-90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2190 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1818649" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2544 -2186 436" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1818682" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2958 -2190 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1818762" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2688 -2190 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1818782" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -2190 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1818802" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -2190 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1818830" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2190 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819098" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2454 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819150" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2718 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819202" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2988 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819254" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3258 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819294" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3532 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819342" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3802 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819370" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3932 432" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819410" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -4072 372" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819434" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3506 -4072 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819502" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3506 -4072 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819518" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3250 -4072 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819538" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2994 -4072 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819562" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3250 -4072 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819582" + "classname" "prop_static" + "angles" "90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2994 -4072 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819616" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3638 -4074 434" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819660" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -4072 372.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819672" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3374 -4074 436" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819700" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -4072 372.5" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819712" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3090 -4072 436" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819736" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_16.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3720 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819748" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_16.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3736 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1819760" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_16.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3752 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1810779" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2688 -2452 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1810783" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2687 -2196 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1810913" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3358 -2186 436" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1810956" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3628 -2186 436" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1810972" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3088 -2186 436" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1810992" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2818 -2186 436" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811008" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2324 432" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811040" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2584 432" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811056" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2848 432" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811080" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3118 432" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811104" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3388 432" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811124" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_cross_bracing_beams/nuke_cross_bracing_beams_06.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3662 432" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811136" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3958.13 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811156" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3702.13 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811184" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3446.13 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811204" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3190.13 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811224" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2934.13 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811240" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2678.13 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811260" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2452 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811272" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3762 -2190 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811292" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3506 -2190 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811316" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3250 -2190 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811332" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2994 -2190 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811368" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2738 -2190 366" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811384" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2738 -2190 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811404" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2994 -2190 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811424" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3250 -2190 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811440" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3506 -2190 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1811460" + "classname" "prop_static" + "angles" "90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3762 -2190.25 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1801949" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2952 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1801965" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -2952 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1801969" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3499 -2696 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1801973" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -2952 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1801977" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -2696 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1801989" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2957 -2952 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1801993" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -2696 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802093" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2696 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802109" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -2696 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802113" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3499 -2440 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802117" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -2696 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802121" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -2440 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802133" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2957 -2696 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802137" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -2440 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802237" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -2184 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802241" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2957 -2440 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802253" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -2440 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802257" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -2184 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802261" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -2440 502" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802265" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3499 -2184 501" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1802277" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -2440 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1802455" + "classname" "func_detail" + solid + { + "id" "1802433" + side + { + "id" "285742" + "plane" "(2478 -2579 42) (2478 -2577 42) (2615 -2577 42)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 1684] 0.25" + "vaxis" "[0 1 0 -108] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285741" + "plane" "(2478 -2630 -2) (2478 -2630 2) (2615 -2630 2)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 1684] 0.25" + "vaxis" "[0 0 -1 -88] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285740" + "plane" "(2615 -2577 39) (2615 -2577 42) (2478 -2577 42)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 -934] 0.25" + "vaxis" "[0 0 -1 163] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285739" + "plane" "(2478 -2577 39) (2478 -2577 42) (2478 -2579 42)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0.406991 0.718736 0.563715 -931.095] 0.25" + "vaxis" "[0 -0.617139 0.786852 160.408] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285738" + "plane" "(2615 -2630 -2) (2615 -2630 2) (2615 -2579 42)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-0.406991 0.718735 0.563714 50.3447] 0.25" + "vaxis" "[0 0.617139 -0.786852 -160.408] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285737" + "plane" "(2615 -2630 2) (2478 -2630 2) (2478 -2579 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[1 0 0 -19.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285736" + "plane" "(2615 -2577 39) (2478 -2577 39) (2478 -2630 -2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[1 0 0 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1802434" + side + { + "id" "285748" + "plane" "(2592 -2606 18) (2504 -2606 18) (2504 -2600 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[1 0 0 -19.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285747" + "plane" "(2592 -2600 -16) (2504 -2600 -16) (2504 -2606 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[1 0 0 -19.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285746" + "plane" "(2592 -2606 -16) (2504 -2606 -16) (2504 -2606 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 19.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285745" + "plane" "(2504 -2600 -16) (2592 -2600 -16) (2592 -2600 22)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285744" + "plane" "(2504 -2600 22) (2504 -2606 18) (2504 -2606 -16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 28] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "285743" + "plane" "(2592 -2600 -16) (2592 -2606 -16) (2592 -2606 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 28] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "1793230" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3208 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793238" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3464 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793246" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3720 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793254" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3768 -3976 506" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793617" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3208 502" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793621" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3499 -2952 501" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793625" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3464 502" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793629" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3499 -3208 501" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793633" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3499 -3464 501" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793637" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3720 502" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793641" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -3976 502" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793645" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3499 -3720 501" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793649" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3500 -4104 502" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793653" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3499 -3976 501" + editor + { + "color" "174 243 0" + "groupid" "1793616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793930" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3208 502" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793934" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -2952 501" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793938" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3464 502" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793942" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -3208 501" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793946" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -3464 501" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793950" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3720 502" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793954" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -3976 502" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793958" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -3720 501" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793962" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3229 -4104 502" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1793966" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3228 -3976 501" + editor + { + "color" "174 243 0" + "groupid" "1793929" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794429" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2957 -3208 502" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794433" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -2952 501" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794437" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2957 -3464 502" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794441" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -3208 501" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794445" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -3464 501" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794449" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2957 -3720 502" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794453" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2957 -3976 502" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794457" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -3720 501" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794461" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2957 -4104 502" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1794465" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "178 178 178" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2956 -3976 501" + editor + { + "color" "174 243 0" + "groupid" "1794428" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1785194" + "classname" "prop_static" + "angles" "-69.5 180 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2870 -3265 -201.225" + editor + { + "color" "130 139 0" + "groupid" "1785193" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -15268]" + } + } +} +entity +{ + "id" "1785198" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "254 255 206 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "71 0 60" + "pitch" "71" + "spawnflags" "0" + "style" "0" + "origin" "2872.62 -3261.12 -186.697" + editor + { + "color" "130 139 0" + "groupid" "1785193" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1785203" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2871.47 -3265 -192.292" + editor + { + "color" "130 139 0" + "groupid" "1785193" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1770809" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2429 -3571 16" + editor + { + "color" "146 143 0" + "groupid" "1835409" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1770865" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2429 -3621 -16" + editor + { + "color" "146 143 0" + "groupid" "1835474" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "1763081" + "classname" "func_detail" + solid + { + "id" "760560" + side + { + "id" "284645" + "plane" "(2432 -3568 16) (2432 -3580 16) (2424 -3580 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -1 0 -128.002] 0.125" + "vaxis" "[-1 0 0 32.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284644" + "plane" "(2432 -3616 -16) (2432 -3568 -16) (2424 -3568 -16)" + "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" "284643" + "plane" "(2432 -3568 -16) (2432 -3616 -16) (2432 -3616 -8)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_GREENBLUE" + "uaxis" "[0 0 1 335.996] 0.25" + "vaxis" "[0 1 0 128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284642" + "plane" "(2424 -3616 -16) (2424 -3568 -16) (2424 -3568 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -240.014] 0.125" + "vaxis" "[0 0 -1 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284641" + "plane" "(2432 -3616 -16) (2424 -3616 -16) (2424 -3616 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[-1 0 0 32.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "284640" + "plane" "(2424 -3568 -16) (2432 -3568 -16) (2432 -3568 16)" + "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" "284639" + "plane" "(2424 -3580 16) (2432 -3580 16) (2432 -3616 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 -0.83205 -0.5547 -857.584] 0.125" + "vaxis" "[-1 0 0 32.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "1755831" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2538 -2563 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1755847" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2602 -2563 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1740841" + "classname" "prop_static" + "angles" "-72.5 180 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2880 -2850 -200.974" + editor + { + "color" "130 139 0" + "groupid" "1740840" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -15268]" + } + } +} +entity +{ + "id" "1740845" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "254 255 206 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "68 0 60" + "pitch" "68" + "spawnflags" "0" + "style" "0" + "origin" "2883.37 -2846.12 -186.603" + editor + { + "color" "130 139 0" + "groupid" "1740840" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1740850" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "2881.93 -2850 -192.13" + editor + { + "color" "130 139 0" + "groupid" "1740840" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1740868" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "164 164 247 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-50.5 183.5 -120" + "pitch" "-50.5" + "spawnflags" "0" + "style" "0" + "origin" "3389 -3043 344.64" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1741146" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2121 -2564 16" + editor + { + "color" "184 177 0" + "groupid" "3745805" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1741150" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2377 -2564 16" + editor + { + "color" "184 177 0" + "groupid" "3745805" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1741154" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2249 -2564 16" + editor + { + "color" "184 177 0" + "groupid" "3745805" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1722830" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_64.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2248 -3092 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1722976" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_corner_out.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2248 -3060 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723090" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_128.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2180 -3056 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723121" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_corner_out.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2092 -3056 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723133" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_16.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2108 -3056 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723152" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_8.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2096 -3056 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723167" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_corner_out.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2244 -3168 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723468" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_32.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2248 -3140 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723487" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_8.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2248 -3160 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723506" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_8.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2241 -3168 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723518" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_4.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2235 -3168 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723624" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_4.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2234 -3504 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723628" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_corner_out.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2240 -3508 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723712" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_32.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2240 -3524 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723731" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_corner_out.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2236 -3552 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723743" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_8.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2240 -3544 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723928" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_corner_in.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3552 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1723958" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_64.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2164 -3552 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724015" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_16.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3564 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724063" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_8.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3576 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724078" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_4.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2128 -3582 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1724450" + "classname" "func_detail" + solid + { + "id" "1724468" + side + { + "id" "283375" + "plane" "(2144 -3504 184) (2144 -3168 184) (2152 -3168 184)" + "material" "CEILING/HR_C/HR_CEILING_001_COLOR" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "283374" + "plane" "(2144 -3168 160) (2144 -3504 160) (2152 -3504 160)" + "material" "CEILING/HR_C/HR_CEILING_001_COLOR" + "uaxis" "[0 -1 0 -960.002] 0.125" + "vaxis" "[-1 0 0 -235.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "283373" + "plane" "(2152 -3168 160) (2152 -3504 160) (2152 -3504 184)" + "material" "CEILING/HR_C/HR_CEILING_001_COLOR" + "uaxis" "[0 -1 0 -960.002] 0.125" + "vaxis" "[0 0 -1 -37] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "283372" + "plane" "(2144 -3504 160) (2144 -3168 160) (2144 -3168 184)" + "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" "283371" + "plane" "(2152 -3504 160) (2144 -3504 160) (2144 -3504 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" "283370" + "plane" "(2144 -3168 160) (2152 -3168 160) (2152 -3168 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1724557" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_64.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2088 -3092 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724584" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_corner_in.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2088 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724603" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_8.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2088 -3128 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724701" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_64.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2052 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724717" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_64.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1988 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724721" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_32.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1944 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724729" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_32.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1784 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724733" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_64.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1732 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724737" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_64.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1668 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724741" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_64.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1604 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724745" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_corner_in.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1536 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724760" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_32.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1556 -3136 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724776" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_32.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1536 -3116 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724788" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_32.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1536 -3084 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724792" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_8.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1536 -3064 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1724807" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_inferno/hr_i/apartment_trims/apartment_trim_02_4.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1536 -3058 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1725231" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3766 346" + editor + { + "color" "159 224 0" + "groupid" "1843659" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1713476" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1812 -1424 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "1713508" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64_door.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1812 -1612 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "1713516" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_gate_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1812 -1548 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "1713520" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1812 -1612 -39.7499" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "1716258" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "965 -1740 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "1706620" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1816 -2219 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "1706678" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1809 -2159 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "1706727" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1809 -2279 -39.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +entity +{ + "id" "1706741" + "classname" "func_detail" + solid + { + "id" "1706739" + side + { + "id" "281977" + "plane" "(1810 -2273 70.75) (1810 -2158 70.75) (1811 -2158 70.75)" + "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" "281976" + "plane" "(1810 -2158 -40.25) (1810 -2273 -40.25) (1811 -2273 -40.25)" + "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" "281975" + "plane" "(1810 -2273 -40.25) (1810 -2158 -40.25) (1810 -2158 70.75)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "281974" + "plane" "(1811 -2158 -40.25) (1811 -2273 -40.25) (1811 -2273 70.75)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "281973" + "plane" "(1810 -2158 -40.25) (1811 -2158 -40.25) (1811 -2158 70.75)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "281972" + "plane" "(1811 -2273 -40.25) (1810 -2273 -40.25) (1810 -2273 70.75)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "1683756" + "classname" "prop_static" + "angles" "2.95736 97.919 -32.6467" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/space_shuttle.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "3159 -3155.73 -26" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1675314" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2236 -3479 16.25" + editor + { + "color" "234 111 0" + "groupid" "3759914" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1675326" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2236 -3351 16.25" + editor + { + "color" "234 111 0" + "groupid" "3759914" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1675358" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2236 -3189 16.25" + editor + { + "color" "234 111 0" + "groupid" "3759914" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1675362" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_32.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2236 -3223 16.25" + editor + { + "color" "234 111 0" + "groupid" "3759914" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "1675451" + "classname" "prop_static" + "angles" "0 0 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "2216 -3192 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "1675455" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "105 214 233 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 180 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "2216 -3192 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -5268]" + } +} +hidden +{ + entity + { + "id" "1675470" + "classname" "prop_static" + "angles" "0 0 -180" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "2216 -3288 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "1675474" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "105 214 233 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "90 180 0" + "pitch" "90" + "spawnflags" "0" + "style" "0" + "origin" "2216 -3288 22" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -5268]" + } +} +hidden +{ + entity + { + "id" "1668624" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac05.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2823 -1121 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "1668632" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/nuke_roof_ac05.mdl" + "renderamt" "255" + "rendercolor" "100 100 100" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2823 -944 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "1668691" + "classname" "func_detail" + solid + { + "id" "1668684" + side + { + "id" "279449" + "plane" "(1336 -2528 16) (1536 -2528 16) (1536 -2552 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279448" + "plane" "(1336 -2552 8) (1536 -2552 8) (1536 -2528 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" "279447" + "plane" "(1336 -2528 16) (1336 -2552 16) (1336 -2552 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" "279446" + "plane" "(1536 -2528 8) (1536 -2552 8) (1536 -2552 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" "279445" + "plane" "(1536 -2528 16) (1336 -2528 16) (1336 -2528 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279444" + "plane" "(1536 -2552 8) (1336 -2552 8) (1336 -2552 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1668674" + side + { + "id" "279455" + "plane" "(1312 -2528 16) (1336 -2528 16) (1336 -2880 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279454" + "plane" "(1312 -2880 8) (1336 -2880 8) (1336 -2528 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" "279453" + "plane" "(1312 -2528 16) (1312 -2880 16) (1312 -2880 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279452" + "plane" "(1336 -2528 8) (1336 -2880 8) (1336 -2880 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279451" + "plane" "(1336 -2528 16) (1312 -2528 16) (1312 -2528 8)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279450" + "plane" "(1336 -2880 8) (1312 -2880 8) (1312 -2880 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "1661278" + "classname" "func_detail" + solid + { + "id" "2045387" + side + { + "id" "296505" + "plane" "(1532 -1410 0) (1532 -2120 0) (1548 -2120 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" "296504" + "plane" "(1532 -2120 0) (1532 -1410 0) (1532 -1410 42)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296503" + "plane" "(1548 -1410 0) (1548 -2120 0) (1548 -2120 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296502" + "plane" "(1532 -1410 0) (1548 -1410 0) (1548 -1410 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296501" + "plane" "(1548 -2120 0) (1532 -2120 0) (1532 -2120 42)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296500" + "plane" "(1532 -2120 42) (1532 -1410 42) (1548 -1410 42)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2045386" + side + { + "id" "296499" + "plane" "(1532 -2120 50) (1532 -1410 50) (1548 -1410 50)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296498" + "plane" "(1532 -1410 42) (1532 -1410 50) (1532 -2120 50)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296497" + "plane" "(1548 -2120 42) (1548 -2120 50) (1548 -1410 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296496" + "plane" "(1548 -1410 42) (1548 -1410 50) (1532 -1410 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296495" + "plane" "(1532 -2120 42) (1532 -2120 50) (1548 -2120 50)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "296494" + "plane" "(1532 -1410 42) (1532 -2120 42) (1548 -2120 42)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +entity +{ + "id" "1661286" + "classname" "func_detail" + solid + { + "id" "1647172" + side + { + "id" "279317" + "plane" "(920 -1744 32) (920 -1732 32) (1532 -1732 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279316" + "plane" "(920 -1732 -17) (920 -1744 -17) (1532 -1744 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279315" + "plane" "(920 -1744 -17) (920 -1732 -17) (920 -1732 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279314" + "plane" "(1532 -1732 -17) (1532 -1744 -17) (1532 -1744 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279313" + "plane" "(920 -1732 -17) (1532 -1732 -17) (1532 -1732 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" "279312" + "plane" "(1532 -1744 -17) (920 -1744 -17) (920 -1744 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10500]" + } +} +hidden +{ + entity + { + "id" "1661302" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1540 -1740 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "1661322" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1284 -1740 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "1661346" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1029 -1740 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +hidden +{ + entity + { + "id" "1661375" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1542 -2527 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 13000]" + } + } +} +entity +{ + "id" "1661405" + "classname" "func_detail" + solid + { + "id" "1661401" + side + { + "id" "279329" + "plane" "(2912 -1288 96) (2912 -1280 96) (3544 -1280 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" "279328" + "plane" "(2912 -1280 -16) (2912 -1288 -16) (3544 -1288 -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" "279327" + "plane" "(2912 -1288 -16) (2912 -1280 -16) (2912 -1280 96)" + "material" "TARPS/HR_TARPS/HR_TARP_A1" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279326" + "plane" "(3544 -1280 -16) (3544 -1288 -16) (3544 -1288 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" "279325" + "plane" "(2912 -1280 -16) (3544 -1280 -16) (3544 -1280 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" "279324" + "plane" "(3544 -1288 -16) (2912 -1288 -16) (2912 -1288 96)" + "material" "TARPS/HR_TARPS/HR_TARP_A1" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +entity +{ + "id" "1661543" + "classname" "func_detail" + solid + { + "id" "1647082" + side + { + "id" "279389" + "plane" "(1536 -2603 32) (1536 -2528 32) (1544 -2528 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279388" + "plane" "(1536 -2528 -40) (1536 -2603 -40) (1544 -2603 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279387" + "plane" "(1536 -2603 -40) (1536 -2528 -40) (1536 -2528 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279386" + "plane" "(1544 -2528 -40) (1544 -2603 -40) (1544 -2603 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" "279385" + "plane" "(1536 -2528 -40) (1544 -2528 -40) (1544 -2528 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "279384" + "plane" "(1544 -2603 -40) (1536 -2603 -40) (1536 -2603 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -16268]" + } +} +hidden +{ + entity + { + "id" "1646564" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "944 -3160 -42" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "1647059" + "classname" "func_detail" + solid + { + "id" "1646125" + side + { + "id" "278922" + "plane" "(856 -3192 24) (856 -3176 24) (1152 -3176 24)" + "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" "278921" + "plane" "(856 -3176 -40) (856 -3192 -40) (1168 -3192 -40)" + "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" "278920" + "plane" "(856 -3176 -40) (856 -3176 24) (856 -3192 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -344] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278919" + "plane" "(1152 -3176 24) (1152 -3176 -40) (1168 -3192 -40)" + "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" "278918" + "plane" "(1152 -3176 -40) (1152 -3176 24) (856 -3176 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278917" + "plane" "(1168 -3192 24) (1168 -3192 -40) (856 -3192 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1646136" + side + { + "id" "278928" + "plane" "(856 -3192 24) (872 -3192 24) (872 -3280 24)" + "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" "278927" + "plane" "(856 -3280 -1) (872 -3280 -1) (872 -3192 -1)" + "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" "278926" + "plane" "(856 -3192 24) (856 -3280 24) (856 -3280 -1)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -344] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278925" + "plane" "(872 -3192 -1) (872 -3280 -1) (872 -3280 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -344] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278924" + "plane" "(872 -3192 24) (856 -3192 24) (856 -3192 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278923" + "plane" "(872 -3280 -1) (856 -3280 -1) (856 -3280 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1646146" + side + { + "id" "278934" + "plane" "(856 -3280 32) (856 -3176 32) (872 -3192 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278933" + "plane" "(856 -3176 24) (856 -3280 24) (872 -3280 24)" + "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" "278932" + "plane" "(856 -3176 24) (856 -3176 32) (856 -3280 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -320] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278931" + "plane" "(872 -3192 32) (872 -3192 24) (872 -3280 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -320] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278930" + "plane" "(872 -3192 24) (872 -3192 32) (856 -3176 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" "278929" + "plane" "(872 -3280 32) (872 -3280 24) (856 -3280 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1646126" + side + { + "id" "278940" + "plane" "(872 -3192 32) (856 -3176 32) (1152 -3176 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278939" + "plane" "(856 -3176 24) (872 -3192 24) (1168 -3192 24)" + "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" "278938" + "plane" "(856 -3176 24) (856 -3176 32) (872 -3192 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" + } + side + { + "id" "278937" + "plane" "(1152 -3176 32) (1152 -3176 24) (1168 -3192 24)" + "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" "278936" + "plane" "(1152 -3176 24) (1152 -3176 32) (856 -3176 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278935" + "plane" "(1168 -3192 32) (1168 -3192 24) (872 -3192 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12000]" + } +} +entity +{ + "id" "1647211" + "classname" "func_detail" + solid + { + "id" "1647209" + side + { + "id" "278988" + "plane" "(3544 -1414 96) (3544 -1280 96) (3552 -1280 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" "278987" + "plane" "(3544 -1280 -16) (3544 -1414 -16) (3552 -1414 -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" "278986" + "plane" "(3544 -1414 -16) (3544 -1280 -16) (3544 -1280 96)" + "material" "TARPS/HR_TARPS/HR_TARP_A1" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -768] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278985" + "plane" "(3552 -1280 -16) (3552 -1414 -16) (3552 -1414 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" "278984" + "plane" "(3544 -1280 -16) (3552 -1280 -16) (3552 -1280 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" "278983" + "plane" "(3552 -1414 -16) (3544 -1414 -16) (3544 -1414 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15000]" + } +} +entity +{ + "id" "1647227" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "9000.69 8758 5139" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "1620243" + "classname" "prop_static" + "angles" "-89.5 270 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/csm_119.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1594 -2761 89" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1620413" + "classname" "func_detail" + solid + { + "id" "4239198" + side + { + "id" "340293" + "plane" "(1104 -2672 -40) (1128 -2784 -40) (1144 -2784 -40)" + "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" "340292" + "plane" "(1128 -2784 24) (1128 -2784 -40) (1104 -2672 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340291" + "plane" "(1120 -2672 -9.73912) (1120 -2672 -40) (1144 -2784 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340290" + "plane" "(1104 -2672 -9.73912) (1104 -2672 -40) (1120 -2672 -40)" + "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" "340289" + "plane" "(1144 -2784 24) (1144 -2784 -40) (1128 -2784 -40)" + "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" "340288" + "plane" "(1128 -2784 24) (1124.79 -2769 24) (1140.79 -2769 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" + } + side + { + "id" "340287" + "plane" "(1124.79 -2769 24) (1104 -2672 -9.73828) (1120 -2672 -9.73777)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4239200" + side + { + "id" "340305" + "plane" "(1088 -2608 -40) (1104 -2672 -40) (1120 -2672 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340304" + "plane" "(1104 -2672 -9.7391) (1104 -2672 -40) (1088 -2608 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340303" + "plane" "(1104 -2608 -32) (1104 -2608 -40) (1120 -2672 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340302" + "plane" "(1088 -2608 -32) (1088 -2608 -40) (1104 -2608 -40)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340301" + "plane" "(1120 -2672 -9.7391) (1120 -2672 -40) (1104 -2672 -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" "340300" + "plane" "(1104 -2672 -9.73828) (1088 -2608 -32) (1104 -2608 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4239197" + side + { + "id" "340286" + "plane" "(1104 -2672 -9.73912) (1104 -2672 -1.72659) (1119.16 -2742.75 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0.20902 0.977802 0 -514.797] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340285" + "plane" "(1120 -2672 -1.72659) (1120 -2672 -9.73912) (1140.79 -2769 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-0.209111 0.9778 0 396.432] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340284" + "plane" "(1104 -2672 -1.72659) (1104 -2672 -9.73912) (1120 -2672 -9.73912)" + "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" "340283" + "plane" "(1124.79 -2769 24) (1119.16 -2742.75 24) (1135.16 -2742.75 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" + } + side + { + "id" "340282" + "plane" "(1119.16 -2742.74 24) (1104 -2672 -1.72461) (1120 -2672 -1.72483)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340281" + "plane" "(1104 -2672 -9.73777) (1124.79 -2769 24) (1140.78 -2769 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4238901" + side + { + "id" "340280" + "plane" "(1128 -2784 32) (1123.88 -2764.75 32) (1139.88 -2764.75 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340279" + "plane" "(1123.88 -2764.76 32) (1128 -2784 32) (1128 -2784 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340278" + "plane" "(1144 -2784 24) (1144 -2784 32) (1139.88 -2764.76 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340277" + "plane" "(1128 -2784 24) (1128 -2784 32) (1144 -2784 32)" + "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" "340276" + "plane" "(1119.17 -2742.75 24) (1128 -2784 24) (1144 -2784 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" + } + side + { + "id" "340275" + "plane" "(1139.88 -2764.75 32) (1123.88 -2764.75 32) (1119.16 -2742.75 24)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1620375" + side + { + "id" "278386" + "plane" "(1128 -2784 -40) (1152 -2880 -40) (1168 -2880 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278385" + "plane" "(1152 -2880 -40) (1128 -2784 -40) (1128 -2784 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278384" + "plane" "(1144 -2784 -40) (1168 -2880 -40) (1168 -2880 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278383" + "plane" "(1128 -2784 -40) (1144 -2784 -40) (1144 -2784 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" "278382" + "plane" "(1168 -2880 -40) (1152 -2880 -40) (1152 -2880 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" "278381" + "plane" "(1152 -2880 24) (1128 -2784 24) (1144 -2784 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1620376" + side + { + "id" "278392" + "plane" "(1152 -2880 32) (1128 -2784 32) (1144 -2784 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278391" + "plane" "(1128 -2784 24) (1128 -2784 32) (1152 -2880 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278390" + "plane" "(1168 -2880 24) (1168 -2880 32) (1144 -2784 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278389" + "plane" "(1144 -2784 24) (1144 -2784 32) (1128 -2784 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" "278388" + "plane" "(1152 -2880 24) (1152 -2880 32) (1168 -2880 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" "278387" + "plane" "(1128 -2784 24) (1152 -2880 24) (1168 -2880 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1620309" + side + { + "id" "278398" + "plane" "(1312 -2880 -40) (1312 -2784 -40) (1144 -2784 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278397" + "plane" "(1144 -2784 -40) (1144 -2784 -3.76218) (1168 -2880 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278396" + "plane" "(1312 -2880 16) (1312 -2784 -3.7647) (1312 -2784 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278395" + "plane" "(1168 -2880 -40) (1168 -2880 16) (1312 -2880 16)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278394" + "plane" "(1312 -2784 -3.7647) (1312 -2880 16) (1168 -2880 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278393" + "plane" "(1312 -2784 -40) (1312 -2784 -3.7647) (1144 -2784 -3.76218)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "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" "3812707" + side + { + "id" "337129" + "plane" "(1104 -2608 -40) (1108 -2624 -40) (1312 -2624 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337128" + "plane" "(1108 -2624 -40) (1104 -2608 -40) (1108 -2624 -36.7057)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337127" + "plane" "(1312 -2608 -40) (1312 -2624 -40) (1312 -2624 -36.7057)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337126" + "plane" "(1108 -2624 -36.7056) (1104 -2608 -40) (1312 -2608 -40)" + "material" "CS_APOLLO/OUTSIDE/OUTSIDE_TILES" + "uaxis" "[1 0 0 66] 0.125" + "vaxis" "[0 -0.979454 0.201667 -921] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337125" + "plane" "(1312 -2624 -36.707) (1312 -2624 -40) (1108 -2624 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "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" "1620335" + side + { + "id" "278409" + "plane" "(1312 -2672 -40) (1120 -2672 -40) (1144 -2784 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278408" + "plane" "(1144 -2784 -3.76391) (1144 -2784 -40) (1120 -2672 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278407" + "plane" "(1312 -2672 -26.8226) (1312 -2672 -40) (1312 -2784 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278406" + "plane" "(1312 -2784 -3.76367) (1144 -2784 -3.76391) (1120 -2672 -26.8227)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 160] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278405" + "plane" "(1144 -2784 -3.76391) (1312 -2784 -3.76367) (1312 -2784 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 96] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278404" + "plane" "(1312 -2672 -26.8226) (1120 -2672 -26.8227) (1120 -2672 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "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" "1620346" + side + { + "id" "278415" + "plane" "(1312 -2880 8) (1312 -2640 8) (1480 -2640 8)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278414" + "plane" "(1312 -2640 -40) (1312 -2880 -40) (1480 -2880 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278413" + "plane" "(1312 -2880 -40) (1312 -2640 -40) (1312 -2640 8)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278412" + "plane" "(1480 -2640 -40) (1480 -2880 -40) (1480 -2880 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" "278411" + "plane" "(1312 -2640 -40) (1480 -2640 -40) (1480 -2640 8)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278410" + "plane" "(1480 -2880 -40) (1312 -2880 -40) (1312 -2880 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1549250" + side + { + "id" "278421" + "plane" "(1312 -2640 8) (1312 -2528 8) (1536 -2528 8)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278420" + "plane" "(1312 -2528 -40) (1312 -2640 -40) (1536 -2640 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278419" + "plane" "(1312 -2640 -40) (1312 -2528 -40) (1312 -2528 8)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278418" + "plane" "(1536 -2528 -40) (1536 -2640 -40) (1536 -2640 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" "278417" + "plane" "(1312 -2528 -40) (1536 -2528 -40) (1536 -2528 8)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278416" + "plane" "(1536 -2640 -40) (1312 -2640 -40) (1312 -2640 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1548899" + side + { + "id" "278433" + "plane" "(1416 -2120 -1.43051e-06) (1416 -1744 -1.43051e-06) (1548 -1744 -1.43051e-06)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278432" + "plane" "(1416 -1744 -40) (1416 -2120 -40) (1548 -2120 -40)" + "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" "278431" + "plane" "(1416 -2120 -40) (1416 -1744 -40) (1416 -1744 -1.43051e-06)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278430" + "plane" "(1548 -1744 -40) (1548 -2120 -40) (1548 -2120 -1.43051e-06)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278429" + "plane" "(1416 -1744 -40) (1548 -1744 -40) (1548 -1744 -1.43051e-06)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278428" + "plane" "(1548 -2120 -40) (1416 -2120 -40) (1416 -2120 -1.43051e-06)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3812706" + side + { + "id" "337124" + "plane" "(1108 -2624 -40) (1120 -2672 -40) (1312 -2672 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 320] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337123" + "plane" "(1120 -2672 -40) (1108 -2624 -40) (1108 -2624 -36.7057)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337122" + "plane" "(1312 -2624 -40) (1312 -2672 -40) (1312 -2672 -26.8226)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337121" + "plane" "(1120 -2672 -26.8226) (1108 -2624 -36.7056) (1312 -2624 -36.7056)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 608] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337120" + "plane" "(1312 -2672 -26.8242) (1312 -2672 -40) (1120 -2672 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 224] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337119" + "plane" "(1108 -2624 -36.707) (1108 -2624 -40) (1312 -2624 -40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "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" "4239199" + side + { + "id" "340299" + "plane" "(1104 -2672 -1.72656) (1104 -2672 -9.7391) (1088 -2608 -32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0.242535 0.970142 0 -32.2683] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340298" + "plane" "(1104 -2608 -25) (1104 -2608 -32) (1120 -2672 -9.7391)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-0.242535 0.970142 0 510.929] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340297" + "plane" "(1088 -2608 -25) (1088 -2608 -32) (1104 -2608 -32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-1 0 0 -749.64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340296" + "plane" "(1120 -2672 -1.72656) (1120 -2672 -9.7391) (1104 -2672 -9.7391)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340295" + "plane" "(1104 -2672 -1.72656) (1088 -2608 -25) (1104 -2608 -25)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-0.516871 0.848798 -0.111289 373.57] 0.125" + "vaxis" "[0.855176 0.506038 -0.112245 94.9063] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "340294" + "plane" "(1088 -2608 -32) (1104 -2672 -9.73777) (1120 -2672 -9.73828)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1620443" + "classname" "func_detail" + solid + { + "id" "1548898" + side + { + "id" "278439" + "plane" "(640 -2120 8) (640 -2032 8) (840 -2032 8)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278438" + "plane" "(640 -2032 -40) (640 -2120 -40) (840 -2120 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278437" + "plane" "(640 -2120 -40) (640 -2032 -40) (640 -2032 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" "278436" + "plane" "(840 -2032 -40) (840 -2120 -40) (840 -2120 8)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278435" + "plane" "(640 -2032 -40) (840 -2032 -40) (840 -2032 8)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278434" + "plane" "(840 -2120 -40) (640 -2120 -40) (640 -2120 8)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "1620453" + "classname" "func_detail" + solid + { + "id" "1555373" + side + { + "id" "278445" + "plane" "(464 -3296 0) (464 -3280 0) (856 -3280 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278444" + "plane" "(464 -3280 -40) (464 -3296 -40) (856 -3296 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278443" + "plane" "(464 -3296 -40) (464 -3280 -40) (464 -3280 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" "278442" + "plane" "(856 -3280 -40) (856 -3296 -40) (856 -3296 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" "278441" + "plane" "(464 -3280 -40) (856 -3280 -40) (856 -3280 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 375] 0.125" + "vaxis" "[0 0 -1 279] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278440" + "plane" "(856 -3296 -40) (464 -3296 -40) (464 -3296 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1555374" + side + { + "id" "278451" + "plane" "(464 -3280 -8) (464 -3264 -8) (856 -3264 -8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -38] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278450" + "plane" "(464 -3264 -40) (464 -3280 -40) (856 -3280 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278449" + "plane" "(464 -3280 -40) (464 -3264 -40) (464 -3264 -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" "278448" + "plane" "(856 -3264 -40) (856 -3280 -40) (856 -3280 -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" "278447" + "plane" "(464 -3264 -40) (856 -3264 -40) (856 -3264 -8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 375] 0.125" + "vaxis" "[0 0 -1 100] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278446" + "plane" "(856 -3280 -40) (464 -3280 -40) (464 -3280 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1555375" + side + { + "id" "278457" + "plane" "(464 -3264 -16) (464 -3248 -16) (856 -3248 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -23] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278456" + "plane" "(464 -3248 -40) (464 -3264 -40) (856 -3264 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278455" + "plane" "(464 -3264 -40) (464 -3248 -40) (464 -3248 -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" "278454" + "plane" "(856 -3248 -40) (856 -3264 -40) (856 -3264 -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" "278453" + "plane" "(464 -3248 -40) (856 -3248 -40) (856 -3248 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 375] 0.125" + "vaxis" "[0 0 -1 134] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278452" + "plane" "(856 -3264 -40) (464 -3264 -40) (464 -3264 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1555381" + side + { + "id" "278463" + "plane" "(464 -3248 -24) (464 -3232 -24) (856 -3232 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -90] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278462" + "plane" "(464 -3232 -40) (464 -3248 -40) (856 -3248 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278461" + "plane" "(464 -3248 -40) (464 -3232 -40) (464 -3232 -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" "278460" + "plane" "(856 -3232 -40) (856 -3248 -40) (856 -3248 -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" "278459" + "plane" "(464 -3232 -40) (856 -3232 -40) (856 -3232 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 375] 0.125" + "vaxis" "[0 0 -1 237] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278458" + "plane" "(856 -3248 -40) (464 -3248 -40) (464 -3248 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1555378" + side + { + "id" "278469" + "plane" "(464 -3232 -32) (464 -3216 -32) (856 -3216 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 45] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278468" + "plane" "(464 -3216 -40) (464 -3232 -40) (856 -3232 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278467" + "plane" "(464 -3232 -40) (464 -3216 -40) (464 -3216 -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" "278466" + "plane" "(856 -3216 -40) (856 -3232 -40) (856 -3232 -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" "278465" + "plane" "(464 -3216 -40) (856 -3216 -40) (856 -3216 -32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 375] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278464" + "plane" "(856 -3232 -40) (464 -3232 -40) (464 -3232 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +hidden +{ + entity + { + "id" "1613875" + "classname" "prop_static" + "angles" "0 353 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-61 -6430 -1" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "1613879" + "classname" "prop_static" + "angles" "0 6 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-60 -6572 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "1607110" + "classname" "prop_static" + "angles" "1.53685 270.972 -162.375" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/lunar_orbiter.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-336 -5996 280" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1599419" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-125 -6035 344" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1599423" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-125 -5779 344" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1599523" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_endcap.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-112 -6016 312" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1591954" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "571.617 -2888 -41" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +entity +{ + "id" "1581125" + "classname" "func_detail" + solid + { + "id" "1564877" + side + { + "id" "274471" + "plane" "(-144 -5712 184) (-144 -5696 184) (32 -5696 184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "274470" + "plane" "(-144 -5696 160) (-144 -5712 160) (32 -5712 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 469.855] 0.125" + "vaxis" "[0 1 0 53.3867] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "274469" + "plane" "(-144 -5712 160) (-144 -5696 160) (-144 -5696 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 -1 0 -490.141] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "274468" + "plane" "(32 -5696 160) (32 -5712 160) (32 -5712 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[0 1 0 469.848] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "274467" + "plane" "(-144 -5696 160) (32 -5696 160) (32 -5696 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" "274466" + "plane" "(32 -5712 160) (-144 -5712 160) (-144 -5712 184)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 469.855] 0.125" + "vaxis" "[0 0 -1 117.389] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "1585330" + "classname" "prop_static" + "angles" "0 195 0" + "disableshadows" "1" + "fademaxdist" "1228" + "fademindist" "772" + "fadescale" "1" + "model" "models/props_interiors/cashregister01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-292 -5952 72" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 10000]" + } + } +} +hidden +{ + entity + { + "id" "1564937" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-56 -5715 172" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "1565411" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-612 -5780 344" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +entity +{ + "id" "1565630" + "classname" "func_detail" + solid + { + "id" "5080122" + side + { + "id" "350897" + "plane" "(-376 -5688 344) (-376 -5680 344) (-368 -5680 344)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350896" + "plane" "(-376 -5680 214) (-376 -5680 344) (-376 -5688 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -0.00185476] 0.125" + "vaxis" "[0 1 0 191.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350895" + "plane" "(-368 -5688 214) (-368 -5688 344) (-368 -5680 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00211213] 0.125" + "vaxis" "[0 -1 0 -191.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350894" + "plane" "(-368 -5680 214) (-368 -5680 344) (-376 -5680 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350893" + "plane" "(-376 -5688 214) (-376 -5688 344) (-368 -5688 344)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350892" + "plane" "(-376 -5680 214) (-376 -5688 214) (-368 -5688 214)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080132" + side + { + "id" "350957" + "plane" "(-376 -5688 214) (-376 -5688 182) (-376 -5680 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -0.00185476] 0.125" + "vaxis" "[0 1 0 191.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350956" + "plane" "(-368 -5680 214) (-368 -5680 182) (-368 -5688 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00211213] 0.125" + "vaxis" "[0 -1 0 -191.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350955" + "plane" "(-376 -5680 214) (-376 -5680 182) (-368 -5680 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350954" + "plane" "(-368 -5688 214) (-368 -5688 182) (-376 -5688 182)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350953" + "plane" "(-376 -5688 214) (-376 -5680 214) (-368 -5680 214)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350952" + "plane" "(-376 -5680 182) (-376 -5688 182) (-368 -5688 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5080131" + side + { + "id" "350951" + "plane" "(-376 -5680 32) (-376 -5688 32) (-368 -5688 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" "350950" + "plane" "(-376 -5688 182) (-376 -5688 32) (-376 -5680 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -0.00185476] 0.125" + "vaxis" "[0 1 0 191.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350949" + "plane" "(-368 -5680 182) (-368 -5680 32) (-368 -5688 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0.00211213] 0.125" + "vaxis" "[0 -1 0 -191.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350948" + "plane" "(-376 -5680 182) (-376 -5680 32) (-368 -5680 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350947" + "plane" "(-368 -5688 182) (-368 -5688 32) (-376 -5688 32)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350946" + "plane" "(-376 -5688 182) (-376 -5680 182) (-368 -5680 182)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -14268]" + } +} +hidden +{ + entity + { + "id" "1565892" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-612 -6036 344" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1567104" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_vending_machine/nuke_vending_machine.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-518 -5637 30.25" + editor + { + "color" "159 172 0" + "groupid" "1567103" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1567108" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_vending_machine/nuke_snack_machine.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-468 -5653 30.25" + editor + { + "color" "159 172 0" + "groupid" "1567103" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1567112" + "classname" "func_detail" + solid + { + "id" "1567357" + side + { + "id" "272119" + "plane" "(-412 -5633 134.25) (-408 -5633 134.25) (-408 -5664 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 19.9961] 0.25" + "vaxis" "[-1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272118" + "plane" "(-408 -5664 30.25) (-408 -5633 30.25) (-412 -5633 30.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272117" + "plane" "(-408 -5633 30.25) (-408 -5664 30.25) (-408 -5664 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -379] 0.125" + "vaxis" "[0 1 0 742] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272116" + "plane" "(-412 -5633 30.25) (-408 -5633 30.25) (-408 -5633 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272115" + "plane" "(-412 -5664 30.25) (-412 -5633 30.25) (-412 -5633 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -379] 0.125" + "vaxis" "[0 -1 0 -746] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272114" + "plane" "(-408 -5664 30.25) (-412 -5664 30.25) (-412 -5664 134.25)" + "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" "159 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567355" + side + { + "id" "272107" + "plane" "(-584 -5664 134.25) (-584 -5633 134.25) (-580 -5633 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 19.9961] 0.25" + "vaxis" "[-1 0 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272106" + "plane" "(-580 -5633 30.25) (-584 -5633 30.25) (-584 -5664 30.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272105" + "plane" "(-584 -5664 30.25) (-584 -5633 30.25) (-584 -5633 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -379] 0.125" + "vaxis" "[0 -1 0 -746] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272104" + "plane" "(-584 -5633 30.25) (-580 -5633 30.25) (-580 -5633 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272103" + "plane" "(-580 -5633 30.25) (-580 -5664 30.25) (-580 -5664 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -379] 0.125" + "vaxis" "[0 -1 0 -746] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272102" + "plane" "(-580 -5664 30.25) (-584 -5664 30.25) (-584 -5664 134.25)" + "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" "159 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567356" + side + { + "id" "272113" + "plane" "(-592 -5664 142.25) (-592 -5617 142.25) (-400 -5617 142.25)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-1 0 0 -704] 0.125" + "vaxis" "[0 1 0 7.99805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272112" + "plane" "(-592 -5617 134.25) (-592 -5664 134.25) (-400 -5664 134.25)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-1 0 0 -704] 0.125" + "vaxis" "[0 -1 0 -711.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272111" + "plane" "(-592 -5664 134.25) (-592 -5617 134.25) (-592 -5617 142.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_B" + "uaxis" "[0 -1 0 -897] 0.125" + "vaxis" "[0 0 -1 224] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272110" + "plane" "(-400 -5617 134.25) (-400 -5664 134.25) (-400 -5664 142.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_B" + "uaxis" "[0 1 0 591] 0.125" + "vaxis" "[0 0 -1 224] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272109" + "plane" "(-592 -5617 134.25) (-400 -5617 134.25) (-400 -5617 142.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_B" + "uaxis" "[-1 0 0 167] 0.125" + "vaxis" "[0 0 -1 224] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272108" + "plane" "(-400 -5664 134.25) (-592 -5664 134.25) (-592 -5664 142.25)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "159 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567116" + side + { + "id" "272047" + "plane" "(-576 -5629 134.25) (-576 -5625 134.25) (-544 -5625 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272046" + "plane" "(-576 -5625 30.25) (-576 -5629 30.25) (-544 -5629 30.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272045" + "plane" "(-576 -5629 30.25) (-576 -5625 30.25) (-576 -5625 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -52] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272044" + "plane" "(-544 -5625 30.25) (-544 -5629 30.25) (-544 -5629 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -379] 0.125" + "vaxis" "[0 1 0 518] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272043" + "plane" "(-576 -5625 30.25) (-544 -5625 30.25) (-544 -5625 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -379] 0.125" + "vaxis" "[-1 0 0 -706] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272042" + "plane" "(-544 -5629 30.25) (-576 -5629 30.25) (-576 -5629 134.25)" + "material" "WOOD/HR_W/INFERNO/HR_WOOD_PLANKS_A" + "uaxis" "[0 0 1 -242] 0.125" + "vaxis" "[-1 0 0 -511.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "159 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567117" + side + { + "id" "272053" + "plane" "(-588 -5633 134.25) (-588 -5621 134.25) (-576 -5621 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272052" + "plane" "(-588 -5621 30.25) (-588 -5633 30.25) (-576 -5633 30.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272051" + "plane" "(-588 -5633 30.25) (-588 -5621 30.25) (-588 -5621 134.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 0 -1 73] 0.125" + "vaxis" "[0 -1 0 -746] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272050" + "plane" "(-576 -5621 30.25) (-576 -5633 30.25) (-576 -5633 134.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 0 -1 73.002] 0.125" + "vaxis" "[0 1 0 5.99414] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272049" + "plane" "(-588 -5621 30.25) (-576 -5621 30.25) (-576 -5621 134.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 0 -1 73.002] 0.125" + "vaxis" "[-1 0 0 -418.006] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272048" + "plane" "(-576 -5633 30.25) (-588 -5633 30.25) (-588 -5633 134.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 0 -1 73] 0.125" + "vaxis" "[1 0 0 -130.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "159 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567118" + side + { + "id" "272059" + "plane" "(-436 -5629 134.25) (-436 -5625 134.25) (-416 -5625 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272058" + "plane" "(-436 -5625 30.25) (-436 -5629 30.25) (-416 -5629 30.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272057" + "plane" "(-436 -5629 30.25) (-436 -5625 30.25) (-436 -5625 134.25)" + "material" "WOOD/HR_W/INFERNO/HR_WOOD_PLANKS_A" + "uaxis" "[0 0 1 -242] 0.125" + "vaxis" "[0 -1 0 -231.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272056" + "plane" "(-416 -5625 30.25) (-416 -5629 30.25) (-416 -5629 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 -7] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272055" + "plane" "(-436 -5625 30.25) (-416 -5625 30.25) (-416 -5625 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 -379] 0.125" + "vaxis" "[-1 0 0 -706] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272054" + "plane" "(-416 -5629 30.25) (-436 -5629 30.25) (-436 -5629 134.25)" + "material" "WOOD/HR_W/INFERNO/HR_WOOD_PLANKS_A" + "uaxis" "[0 0 1 -242] 0.125" + "vaxis" "[1 0 0 160.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "159 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567119" + side + { + "id" "272065" + "plane" "(-416 -5633 134.25) (-416 -5621 134.25) (-404 -5621 134.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272064" + "plane" "(-416 -5621 30.25) (-416 -5633 30.25) (-404 -5633 30.25)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272063" + "plane" "(-416 -5633 30.25) (-416 -5621 30.25) (-416 -5621 134.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 0 -1 73] 0.125" + "vaxis" "[0 -1 0 -788] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272062" + "plane" "(-404 -5621 30.25) (-404 -5633 30.25) (-404 -5633 134.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 0 -1 73] 0.125" + "vaxis" "[0 -1 0 -788] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272061" + "plane" "(-416 -5621 30.25) (-404 -5621 30.25) (-404 -5621 134.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 0 -1 73] 0.125" + "vaxis" "[1 0 0 307.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272060" + "plane" "(-404 -5633 30.25) (-416 -5633 30.25) (-416 -5633 134.25)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 0 -1 73] 0.125" + "vaxis" "[-1 0 0 83.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "159 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "159 172 0" + "groupid" "1567020" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +entity +{ + "id" "1567125" + "classname" "func_detail" + solid + { + "id" "1567363" + side + { + "id" "272125" + "plane" "(-580 -5664 134.25) (-580 -5654 134.25) (-412 -5654 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 -1 0 -372] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272124" + "plane" "(-580 -5654 30.25) (-580 -5664 30.25) (-412 -5664 30.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 -1 0 -372] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272123" + "plane" "(-580 -5664 30.25) (-580 -5654 30.25) (-580 -5654 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 372] 0.25" + "vaxis" "[0 0 -1 113] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272122" + "plane" "(-412 -5654 30.25) (-412 -5664 30.25) (-412 -5664 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 372] 0.25" + "vaxis" "[0 0 -1 113] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272121" + "plane" "(-580 -5654 30.25) (-412 -5654 30.25) (-412 -5654 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 352] 0.25" + "vaxis" "[0 0 -1 113] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272120" + "plane" "(-412 -5664 30.25) (-580 -5664 30.25) (-580 -5664 134.25)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "159 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "159 172 0" + "groupid" "1567017" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "1568168" + "classname" "func_detail" + solid + { + "id" "1567897" + side + { + "id" "272725" + "plane" "(-398 -5586 24) (-383.172 -5586 24) (-379.466 -5586 57)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272724" + "plane" "(-383.172 -5602 24) (-398 -5602 24) (-394.293 -5602 58.5005)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272723" + "plane" "(-383.172 -5586 24) (-398 -5586 24) (-398 -5602 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272722" + "plane" "(-379.466 -5602 57) (-394.292 -5602 58.4999) (-394.293 -5586 58.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272721" + "plane" "(-394.292 -5602 58.5) (-398 -5602 24) (-398 -5586 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272720" + "plane" "(-379.466 -5586 57) (-383.172 -5586 24) (-383.172 -5602 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567898" + side + { + "id" "272731" + "plane" "(-394.289 -5586 58.499) (-379.467 -5586 57) (-368.348 -5586 88.5004)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272730" + "plane" "(-379.468 -5602 57) (-394.294 -5602 58.4972) (-383.176 -5602 93)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272729" + "plane" "(-379.467 -5586 57) (-394.293 -5586 58.5) (-394.293 -5602 58.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272728" + "plane" "(-368.347 -5602 88.5017) (-383.172 -5602 93) (-383.172 -5586 93)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272727" + "plane" "(-383.172 -5602 93) (-394.293 -5602 58.5) (-394.293 -5586 58.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272726" + "plane" "(-368.348 -5586 88.5) (-379.469 -5586 57) (-379.469 -5602 57)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567899" + side + { + "id" "272737" + "plane" "(-383.176 -5586 93) (-368.345 -5586 88.4979) (-349.813 -5586 120)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272736" + "plane" "(-368.348 -5602 88.4961) (-383.176 -5602 93) (-364.645 -5602 124.498)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272735" + "plane" "(-368.344 -5586 88.498) (-383.168 -5586 93) (-383.18 -5602 93)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272734" + "plane" "(-349.813 -5602 120) (-364.645 -5602 124.5) (-364.637 -5586 124.499)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272733" + "plane" "(-364.637 -5602 124.5) (-383.172 -5602 93) (-383.174 -5586 93)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272732" + "plane" "(-349.813 -5586 120) (-368.344 -5586 88.5) (-368.348 -5602 88.4961)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567900" + side + { + "id" "272743" + "plane" "(-364.641 -5586 124.5) (-349.816 -5586 120) (-325.721 -5586 150)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272742" + "plane" "(-349.812 -5602 120) (-364.641 -5602 124.501) (-338.691 -5602 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272741" + "plane" "(-349.815 -5586 120) (-364.64 -5586 124.501) (-364.641 -5602 124.501)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272740" + "plane" "(-325.717 -5602 150) (-338.694 -5602 156) (-338.695 -5586 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272739" + "plane" "(-338.695 -5602 156) (-364.637 -5602 124.504) (-364.637 -5586 124.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272738" + "plane" "(-325.719 -5586 150) (-349.813 -5586 120) (-349.813 -5602 120)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567901" + side + { + "id" "272749" + "plane" "(-338.691 -5586 156) (-325.718 -5586 150) (-294.213 -5586 177)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272748" + "plane" "(-325.72 -5602 150) (-338.692 -5602 156) (-305.34 -5602 184.496)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272747" + "plane" "(-325.716 -5586 150) (-338.691 -5586 156) (-338.691 -5602 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272746" + "plane" "(-294.215 -5602 177) (-305.334 -5602 184.498) (-305.332 -5586 184.494)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272745" + "plane" "(-305.336 -5602 184.496) (-338.691 -5602 156) (-338.691 -5586 156)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272744" + "plane" "(-294.215 -5586 177) (-325.719 -5586 150) (-325.719 -5602 150)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567902" + side + { + "id" "272755" + "plane" "(-305.332 -5586 184.5) (-294.212 -5586 177) (-257.148 -5586 202.496)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272754" + "plane" "(-294.215 -5602 177) (-305.336 -5602 184.504) (-268.266 -5602 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272753" + "plane" "(-294.215 -5586 177) (-305.336 -5586 184.5) (-305.336 -5602 184.498)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272752" + "plane" "(-257.152 -5602 202.498) (-268.27 -5602 210) (-268.27 -5586 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272751" + "plane" "(-268.266 -5602 210) (-305.332 -5602 184.5) (-305.328 -5586 184.502)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272750" + "plane" "(-257.145 -5586 202.498) (-294.215 -5586 177) (-294.215 -5602 177)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567903" + side + { + "id" "272761" + "plane" "(-268.266 -5586 210) (-257.147 -5586 202.501) (-214.52 -5586 223.502)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272760" + "plane" "(-223.789 -5602 234) (-214.524 -5602 223.502) (-257.148 -5602 202.502)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272759" + "plane" "(-257.149 -5586 202.499) (-268.27 -5586 210) (-268.266 -5602 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272758" + "plane" "(-223.789 -5586 234) (-214.52 -5586 223.502) (-214.522 -5602 223.503)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272757" + "plane" "(-223.789 -5602 234) (-268.27 -5602 210) (-268.27 -5586 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272756" + "plane" "(-214.52 -5586 223.502) (-257.148 -5586 202.5) (-257.152 -5602 202.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 13] 0.25" + "vaxis" "[0 1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567904" + side + { + "id" "272767" + "plane" "(-223.785 -5586 234) (-214.517 -5586 223.501) (-168.189 -5586 241.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272766" + "plane" "(-175.598 -5602 252) (-168.188 -5602 241.5) (-214.517 -5602 223.501)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272765" + "plane" "(-223.781 -5602 234) (-214.514 -5602 223.502) (-214.52 -5586 223.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272764" + "plane" "(-175.598 -5586 252) (-168.185 -5586 241.501) (-168.188 -5602 241.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272763" + "plane" "(-175.602 -5602 252) (-223.785 -5602 234) (-223.785 -5586 234)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272762" + "plane" "(-168.184 -5586 241.502) (-214.516 -5586 223.502) (-214.516 -5602 223.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567905" + side + { + "id" "272773" + "plane" "(-175.602 -5586 252) (-168.187 -5586 241.503) (-118.147 -5586 256.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272772" + "plane" "(-123.705 -5602 268.496) (-118.147 -5602 256.5) (-168.186 -5602 241.503)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272771" + "plane" "(-175.6 -5602 252) (-168.185 -5602 241.503) (-168.184 -5586 241.503)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272770" + "plane" "(-123.707 -5586 268.5) (-118.147 -5586 256.5) (-118.145 -5602 256.501)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272769" + "plane" "(-123.703 -5602 268.498) (-175.602 -5602 252) (-175.598 -5586 252)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272768" + "plane" "(-118.145 -5586 256.5) (-168.184 -5586 241.502) (-168.184 -5602 241.503)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567906" + side + { + "id" "272779" + "plane" "(-123.707 -5586 268.5) (-118.147 -5586 256.499) (-64.3991 -5586 267)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272778" + "plane" "(-68.1074 -5602 279) (-64.4008 -5602 267) (-118.143 -5602 256.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272777" + "plane" "(-123.703 -5602 268.5) (-118.143 -5602 256.5) (-118.146 -5586 256.499)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272776" + "plane" "(-68.1074 -5586 279) (-64.4007 -5586 267) (-64.4009 -5602 267)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272775" + "plane" "(-68.1055 -5602 279) (-123.703 -5602 268.501) (-123.707 -5586 268.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272774" + "plane" "(-64.4023 -5586 267) (-118.145 -5586 256.499) (-118.141 -5602 256.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567907" + side + { + "id" "272785" + "plane" "(-68.1113 -5586 279) (-64.4046 -5586 267) (-8.79869 -5586 274.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272784" + "plane" "(-10.6514 -5602 285) (-8.79805 -5602 274.5) (-64.3947 -5602 267)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272783" + "plane" "(-68.1074 -5602 279) (-64.3996 -5602 267) (-64.3992 -5586 267)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272782" + "plane" "(-10.6514 -5586 285) (-8.79881 -5586 274.5) (-8.79904 -5602 274.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272781" + "plane" "(-10.6523 -5602 285) (-68.1055 -5602 279) (-68.1016 -5586 279)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272780" + "plane" "(-8.80078 -5586 274.5) (-64.3984 -5586 267) (-64.3984 -5602 267)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1567908" + side + { + "id" "272791" + "plane" "(-10.6553 -5586 285) (-8.80124 -5586 274.5) (46.8018 -5586 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272790" + "plane" "(46.8008 -5602 288) (46.8008 -5602 276) (-8.79746 -5602 274.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272789" + "plane" "(-10.6533 -5602 285) (-8.79928 -5602 274.5) (-8.79886 -5586 274.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272788" + "plane" "(46.8008 -5586 288) (46.8008 -5586 276) (46.8008 -5602 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[0 0 1 32] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272787" + "plane" "(46.8008 -5602 288) (-10.6523 -5602 285) (-10.6523 -5586 285)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "272786" + "plane" "(46.8008 -5586 276) (-8.79297 -5586 274.5) (-8.79688 -5602 274.5)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_RED" + "uaxis" "[-1 0 0 12.802] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -15768]" + } +} +hidden +{ + entity + { + "id" "1568994" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-368 -5952 344" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1568998" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-368 -5696 344" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1569002" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_512.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-624 -5888 312" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1569006" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_512.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-624 -6016 312" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1569010" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001c_straight_512.mdl" + "renderamt" "255" + "rendercolor" "208 117 119" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-624 -6160 312" + editor + { + "color" "212 189 0" + "groupid" "2711588" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +entity +{ + "id" "1555336" + "classname" "func_detail" + solid + { + "id" "1633393" + side + { + "id" "278679" + "plane" "(856 -3424 0) (384 -3424 0) (384 -3296 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278678" + "plane" "(856 -3296 -40) (384 -3296 -40) (384 -3424 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278677" + "plane" "(384 -3424 -40) (384 -3296 -40) (384 -3296 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" "278676" + "plane" "(384 -3296 -40) (856 -3296 -40) (856 -3296 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" "278675" + "plane" "(856 -3424 -40) (384 -3424 -40) (384 -3424 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" "278674" + "plane" "(856 -3296 -40) (856 -3424 -40) (856 -3424 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "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" "1633394" + side + { + "id" "278685" + "plane" "(856 -3192 0) (1168 -3192 0) (1168 -3424 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -32] 0.125" + "vaxis" "[0 -1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278684" + "plane" "(856 -3424 -40) (1168 -3424 -40) (1168 -3192 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "278683" + "plane" "(1168 -3192 -40) (1168 -3424 -40) (1168 -3424 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" "278682" + "plane" "(856 -3192 -40) (1168 -3192 -40) (1168 -3192 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" "278681" + "plane" "(1168 -3424 -40) (856 -3424 -40) (856 -3424 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" "278680" + "plane" "(856 -3424 -40) (856 -3192 -40) (856 -3192 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -344] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "1555766" + "classname" "prop_static" + "angles" "0 92 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/weeds_joe_pye_weed_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1119 -2866 -38" + editor + { + "color" "151 232 0" + "groupid" "1555765" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "1555770" + "classname" "prop_static" + "angles" "0 197.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1127 -2868 -39.75" + editor + { + "color" "151 232 0" + "groupid" "1555765" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +entity +{ + "id" "1548363" + "classname" "func_detail" + solid + { + "id" "1386797" + side + { + "id" "265554" + "plane" "(1312 -3144 16) (1312 -3164 16) (1344 -3164 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 62.5121] 0.255952" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265553" + "plane" "(1312 -3164 16) (1312 -3144 16) (1312 -3144 147)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0 -1 0 -906.996] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265552" + "plane" "(1344 -3144 147) (1344 -3144 16) (1344 -3164 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_ORANGE" + "uaxis" "[-0.898877 0.438202 0 -6.53467] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265551" + "plane" "(1312 -3144 147) (1312 -3144 16) (1344 -3144 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-1 0 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265550" + "plane" "(1312 -3164 147) (1312 -3144 147) (1344 -3144 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265549" + "plane" "(1344 -3164 147) (1344 -3164 16) (1312 -3164 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -15.994] 0.15" + "vaxis" "[1 0 0 19.9989] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15268]" + } +} +entity +{ + "id" "1542112" + "classname" "func_detail" + solid + { + "id" "1542113" + side + { + "id" "265322" + "plane" "(-1280 -2592 -176) (-1280 -2820 -176) (-1272 -2820 -176)" + "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" "265321" + "plane" "(-1280 -2820 -176) (-1280 -2592 -176) (-1280 -2592 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265320" + "plane" "(-1272 -2592 -144) (-1272 -2592 -176) (-1272 -2820 -176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265319" + "plane" "(-1280 -2592 -144) (-1280 -2592 -176) (-1272 -2592 -176)" + "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" "265318" + "plane" "(-1272 -2820 -176) (-1280 -2820 -176) (-1280 -2772 -144)" + "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" "265317" + "plane" "(-1280 -2772 -144) (-1280 -2592 -144) (-1272 -2592 -144)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1542114" + side + { + "id" "265328" + "plane" "(-1280 -2604 -24) (-1280 -2592 -24) (-1272 -2592 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 224] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265327" + "plane" "(-1280 -2592 -24) (-1280 -2604 -24) (-1280 -2820 -168)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265326" + "plane" "(-1272 -2820 -176) (-1272 -2820 -168) (-1272 -2604 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265325" + "plane" "(-1280 -2820 -176) (-1280 -2820 -168) (-1272 -2820 -168)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 224] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265324" + "plane" "(-1280 -2820 -168) (-1280 -2604 -24) (-1272 -2604 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 224] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265323" + "plane" "(-1272 -2592 -24) (-1280 -2592 -24) (-1280 -2820 -176)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1542115" + side + { + "id" "265333" + "plane" "(-1280 -2592 -144) (-1280 -2592 -24) (-1280 -2772 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265332" + "plane" "(-1272 -2592 -24) (-1272 -2592 -144) (-1272 -2772 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 52] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265331" + "plane" "(-1280 -2592 -24) (-1280 -2592 -144) (-1272 -2592 -144)" + "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" "265330" + "plane" "(-1280 -2772 -144) (-1280 -2592 -24) (-1272 -2592 -24)" + "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" "265329" + "plane" "(-1280 -2592 -144) (-1280 -2772 -144) (-1272 -2772 -144)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +hidden +{ + entity + { + "id" "1542118" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_cap.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1061 -2814 -136" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "1542122" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_72.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1061 -2814 -168" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1542126" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_144.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1061 -2742 -120" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +entity +{ + "id" "1535322" + "classname" "func_illusionary" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "origin" "-692 -3564 -220" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + solid + { + "id" "7562432" + side + { + "id" "386670" + "plane" "(-609 -3306 -216) (-609 -3252 -216) (-608 -3252 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386669" + "plane" "(-609 -3252 -224) (-609 -3306 -224) (-608 -3306 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386668" + "plane" "(-609 -3306 -224) (-609 -3252 -224) (-609 -3252 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386667" + "plane" "(-608 -3252 -224) (-608 -3306 -224) (-608 -3306 -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" "386666" + "plane" "(-609 -3252 -224) (-608 -3252 -224) (-608 -3252 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -91.998] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386665" + "plane" "(-608 -3306 -224) (-609 -3306 -224) (-609 -3306 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560196" + side + { + "id" "386031" + "plane" "(-776 -3545 -216) (-776 -3252 -216) (-775 -3252 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386030" + "plane" "(-776 -3252 -224) (-776 -3545 -224) (-775 -3545 -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" "386029" + "plane" "(-776 -3545 -224) (-776 -3252 -224) (-776 -3252 -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" "386028" + "plane" "(-775 -3252 -224) (-775 -3545 -224) (-775 -3545 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386027" + "plane" "(-776 -3252 -224) (-775 -3252 -224) (-775 -3252 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -251.998] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386026" + "plane" "(-775 -3545 -224) (-776 -3545 -224) (-776 -3545 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -72] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7560195" + side + { + "id" "386025" + "plane" "(-776 -3744 -216) (-776 -3629 -216) (-775 -3629 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386024" + "plane" "(-776 -3629 -224) (-776 -3744 -224) (-775 -3744 -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" "386023" + "plane" "(-776 -3744 -224) (-776 -3629 -224) (-776 -3629 -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" "386022" + "plane" "(-775 -3629 -224) (-775 -3744 -224) (-775 -3744 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386021" + "plane" "(-775 -3744 -224) (-776 -3744 -224) (-776 -3744 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -99.998] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386020" + "plane" "(-776 -3629 -224) (-775 -3629 -224) (-775 -3629 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -211.996] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "7562431" + side + { + "id" "386664" + "plane" "(-609 -3744 -216) (-609 -3691 -216) (-608 -3691 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386663" + "plane" "(-609 -3691 -224) (-609 -3744 -224) (-608 -3744 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -28] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386662" + "plane" "(-609 -3744 -224) (-609 -3691 -224) (-609 -3691 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386661" + "plane" "(-608 -3691 -224) (-608 -3744 -224) (-608 -3744 -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" "386660" + "plane" "(-608 -3744 -224) (-609 -3744 -224) (-609 -3744 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -3.99414] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "386659" + "plane" "(-609 -3691 -224) (-608 -3691 -224) (-608 -3691 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "1535470" + "classname" "func_detail" + solid + { + "id" "1535397" + side + { + "id" "265130" + "plane" "(-814 -4268 -180) (-816 -4240 -180) (-808 -4240 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.071247 -0.997459 0 -206] 0.063" + "vaxis" "[0.997459 0.071247 0 440] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265129" + "plane" "(-816 -4240 -224) (-814 -4268 -224) (-806 -4268 -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" "265128" + "plane" "(-814 -4268 -224) (-816 -4240 -224) (-816 -4240 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265127" + "plane" "(-808 -4240 -224) (-806 -4268 -224) (-806 -4268 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.0712464 -0.997459 0 -205.529] 0.063" + "vaxis" "[0 0 -1 -840.941] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265126" + "plane" "(-816 -4240 -224) (-808 -4240 -224) (-808 -4240 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265125" + "plane" "(-806 -4268 -224) (-814 -4268 -224) (-814 -4268 -180)" + "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" "1535396" + side + { + "id" "265136" + "plane" "(-816 -4240 -180) (-816 -4232 -180) (-808 -4232 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.071247 -0.997459 0 -206] 0.063" + "vaxis" "[0.997459 0.071247 0 440] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265135" + "plane" "(-816 -4232 -224) (-816 -4240 -224) (-808 -4240 -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" "265134" + "plane" "(-816 -4240 -224) (-816 -4232 -224) (-816 -4232 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265133" + "plane" "(-808 -4232 -224) (-808 -4240 -224) (-808 -4240 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 -269.64] 0.063" + "vaxis" "[0 0 -1 -840.941] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265132" + "plane" "(-816 -4232 -224) (-808 -4232 -224) (-808 -4232 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -206] 0.063" + "vaxis" "[0 0 -1 440] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265131" + "plane" "(-808 -4240 -224) (-816 -4240 -224) (-816 -4240 -180)" + "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" "1535399" + side + { + "id" "265142" + "plane" "(-806 -4296 -180) (-814 -4268 -180) (-806 -4268 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.274721 -0.961524 0 -288] 0.063" + "vaxis" "[0.961524 0.274721 0 475] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265141" + "plane" "(-814 -4268 -224) (-806 -4296 -224) (-798 -4296 -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" "265140" + "plane" "(-806 -4296 -224) (-814 -4268 -224) (-814 -4268 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265139" + "plane" "(-806 -4268 -224) (-798 -4296 -224) (-798 -4296 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.274721 -0.961524 0 -287.91] 0.063" + "vaxis" "[0 0 -1 -840.941] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265138" + "plane" "(-814 -4268 -224) (-806 -4268 -224) (-806 -4268 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265137" + "plane" "(-798 -4296 -224) (-806 -4296 -224) (-806 -4296 -180)" + "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" "1535401" + side + { + "id" "265148" + "plane" "(-792 -4320 -180) (-806 -4296 -180) (-798 -4296 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.503871 -0.863779 0 -386] 0.063" + "vaxis" "[0.863779 0.503871 0 135] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265147" + "plane" "(-806 -4296 -224) (-792 -4320 -224) (-784 -4320 -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" "265146" + "plane" "(-792 -4320 -224) (-806 -4296 -224) (-806 -4296 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265145" + "plane" "(-798 -4296 -224) (-784 -4320 -224) (-784 -4320 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.503871 -0.863779 0 -386.203] 0.063" + "vaxis" "[0 0 -1 -840.941] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265144" + "plane" "(-806 -4296 -224) (-798 -4296 -224) (-798 -4296 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265143" + "plane" "(-784 -4320 -224) (-792 -4320 -224) (-792 -4320 -180)" + "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" "1535406" + side + { + "id" "265154" + "plane" "(-752 -4360 -180) (-774 -4342 -180) (-766 -4342 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.773957 -0.633238 0 -125.577] 0.063" + "vaxis" "[0.633238 0.773957 0 624.293] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265153" + "plane" "(-744 -4360 -224) (-766 -4342 -224) (-774 -4342 -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" "265152" + "plane" "(-752 -4360 -224) (-774 -4342 -224) (-774 -4342 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265151" + "plane" "(-766 -4342 -224) (-744 -4360 -224) (-744 -4360 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.773957 -0.633239 0 -125.639] 0.063" + "vaxis" "[0 0 -1 -840.941] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265150" + "plane" "(-774 -4342 -224) (-766 -4342 -224) (-766 -4342 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265149" + "plane" "(-744 -4360 -224) (-752 -4360 -224) (-752 -4360 -180)" + "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" "1535404" + side + { + "id" "265160" + "plane" "(-774 -4342 -180) (-792 -4320 -180) (-784 -4320 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.633238 -0.773957 0 -278] 0.063" + "vaxis" "[0.773957 0.633238 0 821] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265159" + "plane" "(-792 -4320 -224) (-774 -4342 -224) (-766 -4342 -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" "265158" + "plane" "(-774 -4342 -224) (-792 -4320 -224) (-792 -4320 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265157" + "plane" "(-784 -4320 -224) (-766 -4342 -224) (-766 -4342 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.633238 -0.773957 0 -278.211] 0.063" + "vaxis" "[0 0 -1 -840.941] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265156" + "plane" "(-792 -4320 -224) (-784 -4320 -224) (-784 -4320 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265155" + "plane" "(-766 -4342 -224) (-774 -4342 -224) (-774 -4342 -180)" + "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" "1535408" + side + { + "id" "265166" + "plane" "(-752 -4360 -180) (-744 -4360 -180) (-720 -4374 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.863779 -0.503871 0 -351.838] 0.063" + "vaxis" "[0.503871 0.863779 0 448.125] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265165" + "plane" "(-744 -4360 -224) (-752 -4360 -224) (-720 -4377 -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" "265164" + "plane" "(-752 -4360 -224) (-752 -4360 -180) (-720 -4377 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265163" + "plane" "(-720 -4374 -224) (-720 -4374 -180) (-744 -4360 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.863779 -0.503871 0 -351.832] 0.063" + "vaxis" "[0 0 -1 -840.941] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265162" + "plane" "(-744 -4360 -224) (-744 -4360 -180) (-752 -4360 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265161" + "plane" "(-720 -4377 -224) (-720 -4377 -180) (-720 -4374 -180)" + "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" "1535446" + side + { + "id" "265172" + "plane" "(-720 -4377 -180) (-720 -4374 -180) (-700 -4376 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.995037 -0.0995037 0 -459.084] 0.063" + "vaxis" "[0.0995037 0.995037 0 150.43] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265171" + "plane" "(-720 -4374 -224) (-720 -4377 -224) (-700 -4382 -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" "265170" + "plane" "(-720 -4377 -224) (-720 -4374 -224) (-720 -4374 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265169" + "plane" "(-700 -4376 -224) (-700 -4382 -224) (-700 -4382 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265168" + "plane" "(-720 -4374 -224) (-700 -4376 -224) (-700 -4376 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.995037 -0.0995053 0 -459.192] 0.063" + "vaxis" "[0 0 -1 -840.941] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265167" + "plane" "(-700 -4382 -224) (-720 -4377 -224) (-720 -4377 -180)" + "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" "1535394" + side + { + "id" "265178" + "plane" "(-700 -4382 -180) (-700 -4376 -180) (-672 -4378 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.997458 -0.071247 0 -5.00855] 0.063" + "vaxis" "[0.071247 0.997459 0 60.3906] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265177" + "plane" "(-700 -4376 -224) (-700 -4382 -224) (-672 -4384 -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" "265176" + "plane" "(-700 -4382 -224) (-700 -4376 -224) (-700 -4376 -180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265175" + "plane" "(-672 -4378 -224) (-672 -4384 -224) (-672 -4384 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 -5] 0.063" + "vaxis" "[0 0 -1 -841] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265174" + "plane" "(-700 -4376 -224) (-672 -4378 -224) (-672 -4378 -180)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.997458 -0.0712503 0 -5.23584] 0.063" + "vaxis" "[0 0 -1 -840.941] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "265173" + "plane" "(-672 -4384 -224) (-700 -4382 -224) (-700 -4382 -180)" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +hidden +{ + entity + { + "id" "1535791" + "classname" "prop_static" + "angles" "0 58.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-138 -3326.3 -29" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "1535795" + "classname" "prop_static" + "angles" "0 58.5 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-136 -3323 -31" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "1536011" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/wall_bumper_001/wall_bumper_001_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1854 -2855 22.25" + editor + { + "color" "192 197 0" + "groupid" "1836080" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1523258" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-773.035 -3754.91 -223.76" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1523266" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-608 -3752 -223.76" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1523270" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-582 -3802 -223.76" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1510006" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-720 -4213 28" + editor + { + "color" "250 199 0" + "groupid" "1510005" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +entity +{ + "id" "1500437" + "classname" "info_player_counterterrorist" + "angles" "0 75 0" + "enabled" "1" + "origin" "232 -6392 4" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1500439" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "312 -6408 4" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1500441" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "408 -6408 4" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1500443" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "488 -6408 4" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1500445" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "912 -2014.13 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1500447" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "995.187 -2016 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1500449" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "1070.5 -2012.96 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1500451" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "1147.66 -2014.99 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1500453" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "1211.53 -2003.4 8" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1487277" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "260.572 -5826.51 160" + editor + { + "color" "210 175 0" + "groupid" "1487276" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "1487280" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "260.572 -5826.51 160" + editor + { + "color" "210 175 0" + "groupid" "1487276" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "1487283" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 251 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "260.572 -5826.51 155" + editor + { + "color" "210 175 0" + "groupid" "1487276" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +hidden +{ + entity + { + "id" "1487288" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "260.572 -5826.51 160" + editor + { + "color" "210 175 0" + "groupid" "1487275" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -3768]" + } + } +} +entity +{ + "id" "1487292" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "260.572 -5826.51 160" + editor + { + "color" "210 175 0" + "groupid" "1487275" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "1487297" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "260.572 -5666.51 160" + editor + { + "color" "210 175 0" + "groupid" "1487296" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "1487300" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "260.572 -5666.51 160" + editor + { + "color" "210 175 0" + "groupid" "1487296" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "1487303" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 251 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "260.572 -5666.51 155" + editor + { + "color" "210 175 0" + "groupid" "1487296" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +hidden +{ + entity + { + "id" "1487308" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "260.572 -5666.51 160" + editor + { + "color" "210 175 0" + "groupid" "1487295" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -3768]" + } + } +} +entity +{ + "id" "1487312" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "260.572 -5666.51 160" + editor + { + "color" "210 175 0" + "groupid" "1487295" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +hidden +{ + entity + { + "id" "1487343" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "272 -5864 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1487349" + "classname" "func_detail" + solid + { + "id" "1481137" + side + { + "id" "263779" + "plane" "(376 -5864 46.1685) (173 -5864 46.1685) (173 -5863.26 46.1685)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 -1 0 -310.514] 0.25" + "vaxis" "[-1 0 0 679.555] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263778" + "plane" "(376 -5863.26 43.1685) (173 -5863.26 43.1685) (173 -5864 43.1685)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 310.514] 0.25" + "vaxis" "[-1 0 0 679.555] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263777" + "plane" "(173 -5863.26 43.1682) (376 -5863.26 43.1682) (376 -5863.26 46.1699)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[-1 0 0 679.555] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263776" + "plane" "(376 -5864 43.1682) (173 -5864 43.1682) (173 -5864 46.1699)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 -679.555] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263775" + "plane" "(376 -5863.26 43.1682) (376 -5864 43.1682) (376 -5864 46.1701)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 310.514] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263774" + "plane" "(173 -5864 43.1683) (173 -5863.26 43.1683) (173 -5863.25 46.1697)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 -310.514] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "1487527" + "classname" "func_detail" + solid + { + "id" "1481158" + side + { + "id" "263995" + "plane" "(350 -5738 56) (350 -5694 56) (384 -5694 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 -1 0 -420.563] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263994" + "plane" "(350 -5694 52) (350 -5694 56) (350 -5738 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[0 1 0 164] 0.125" + "vaxis" "[0 0 -1 -128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263993" + "plane" "(384 -5738 52) (384 -5738 56) (384 -5694 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" "263992" + "plane" "(384 -5694 52) (384 -5694 56) (350 -5694 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 0 1 143.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263991" + "plane" "(350 -5738 52) (350 -5738 56) (384 -5738 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 0 -1 367.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263990" + "plane" "(350 -5694 52) (350 -5738 52) (384 -5738 52)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 1 0 36.543] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481159" + side + { + "id" "264001" + "plane" "(352 -5696 8) (352 -5736 8) (384 -5736 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -26.2813] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264000" + "plane" "(352 -5736 52) (352 -5736 8) (352 -5696 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263999" + "plane" "(384 -5696 52) (384 -5696 8) (384 -5736 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" "263998" + "plane" "(352 -5696 52) (352 -5696 8) (384 -5696 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263997" + "plane" "(384 -5736 52) (384 -5736 8) (352 -5736 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "263996" + "plane" "(352 -5736 52) (352 -5696 52) (384 -5696 52)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -26.2813] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481153" + side + { + "id" "264007" + "plane" "(261 -5738 56) (261 -5694 56) (284 -5694 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 -1 0 -421] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264006" + "plane" "(261 -5694 52) (261 -5694 56) (261 -5738 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[0 0 1 115] 0.125" + "vaxis" "[0 -1 0 -415] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264005" + "plane" "(284 -5738 52) (284 -5738 56) (284 -5694 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[0 0 -1 128] 0.125" + "vaxis" "[0 -1 0 -421] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264004" + "plane" "(284 -5694 52) (284 -5694 56) (261 -5694 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 0 -1 -421] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264003" + "plane" "(261 -5738 52) (261 -5738 56) (284 -5738 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 0 -1 -421] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264002" + "plane" "(261 -5694 52) (261 -5738 52) (284 -5738 52)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 -1 0 -316.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481146" + side + { + "id" "264013" + "plane" "(263 -5696 8) (263 -5736 8) (282 -5736 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -26.2813] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264012" + "plane" "(263 -5736 52) (263 -5736 8) (263 -5696 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264011" + "plane" "(282 -5696 52) (282 -5696 8) (282 -5736 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264010" + "plane" "(263 -5696 52) (263 -5696 8) (282 -5696 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264009" + "plane" "(282 -5736 52) (282 -5736 8) (263 -5736 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264008" + "plane" "(263 -5736 52) (263 -5696 52) (282 -5696 52)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -26.2813] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481147" + side + { + "id" "264019" + "plane" "(170 -5738 56) (170 -5694 56) (195 -5694 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 -1 0 144] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264018" + "plane" "(170 -5694 52) (170 -5694 56) (170 -5738 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[0 0 1 192] 0.125" + "vaxis" "[0 -1 0 144] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264017" + "plane" "(195 -5738 52) (195 -5738 56) (195 -5694 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[0 1 0 91] 0.125" + "vaxis" "[0 0 -1 140] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264016" + "plane" "(195 -5694 52) (195 -5694 56) (170 -5694 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 0 -1 144] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264015" + "plane" "(170 -5738 52) (170 -5738 56) (195 -5738 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 0 -1 144] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264014" + "plane" "(170 -5694 52) (170 -5738 52) (195 -5738 52)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -208] 0.125" + "vaxis" "[0 1 0 36.543] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1481148" + side + { + "id" "264025" + "plane" "(170 -5696 8) (170 -5736 8) (193 -5736 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -26.2813] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264024" + "plane" "(170 -5736 52) (170 -5736 8) (170 -5696 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264023" + "plane" "(193 -5696 52) (193 -5696 8) (193 -5736 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 67.9883] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264022" + "plane" "(170 -5696 52) (170 -5696 8) (193 -5696 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264021" + "plane" "(193 -5736 52) (193 -5736 8) (170 -5736 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "264020" + "plane" "(170 -5736 52) (170 -5696 52) (193 -5696 52)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -26.2813] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "1487687" + "classname" "prop_static" + "angles" "0 90 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_aztec/aztec_tarp_04.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "263 -5598 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "1487765" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "919 -5608 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1487769" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "949 -5601 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1487977" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/signs/sign_authorised_personel_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "920 -5600 128" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1481138" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "174 -5864 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1481142" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "376 -5864 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1481149" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/metal_detector001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "317 -5718 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1481154" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/metal_detector001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "228 -5718 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1473946" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "196 206 208 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-688.016 -3249.15 -85.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "1473951" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "234 193 138 570" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "-688.016 -3249.15 -70.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "1473956" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "-688.016 -3249.15 -54.25" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +hidden +{ + entity + { + "id" "1473959" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-688.016 -3249.15 -48.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "1473963" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "105 214 233 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "146.437 -4172.9 122.75" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "1473968" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "2000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "252 242 190 570" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "146.437 -4172.9 137.75" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "1473973" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "146.437 -4172.9 153.75" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +hidden +{ + entity + { + "id" "1473976" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "146.437 -4172.9 159.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +hidden +{ + entity + { + "id" "1467534" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-816.375 -3055.75 -32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "1467538" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "-816.375 -3055.75 -38.25" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +entity +{ + "id" "1467541" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "234 193 138 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "-816.375 -3055.75 -54.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "1467546" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "105 214 233 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-816.375 -3055.75 -69.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +hidden +{ + entity + { + "id" "1467551" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1071.77 -3055.46 -32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "1467555" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "-1071.77 -3055.46 -38.25" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +entity +{ + "id" "1467558" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "234 193 138 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "-1071.77 -3055.46 -54.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "1467563" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "105 214 233 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-1071.77 -3055.46 -69.25" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +hidden +{ + entity + { + "id" "1467676" + "classname" "prop_static" + "angles" "0 61 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1421.5 -3448.86 32.2389" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -2768]" + } + } +} +hidden +{ + entity + { + "id" "1467727" + "classname" "prop_static" + "angles" "0 181 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1031 -2341.82 -20" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "1467731" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 181 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-1041.24 -2342 -13.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1467808" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 1 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-791.761 -2271 -13.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1467813" + "classname" "prop_static" + "angles" "0 1 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-802 -2271.18 -20" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "1467853" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 90 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-303 -2518 -13.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1467858" + "classname" "prop_static" + "angles" "0 90 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-303 -2528.24 -20" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "1467874" + "classname" "func_instance" + "angles" "-0 154.5 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-1088 -3049 -30" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "1461730" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/exploresign001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "528 -5872 179" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1437281" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-752 -3723 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1437301" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-602 -3723 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1437353" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "662 -1960 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1437369" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "662 -1822 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1437397" + "classname" "prop_static" + "angles" "0 180 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1476 -3539 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1437413" + "classname" "prop_static" + "angles" "0 0 0" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "959 -5475 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1437473" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1423 -3278 32" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1418586" + "classname" "prop_static" + "angles" "0 258 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_256.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-858 -4940 -19" + editor + { + "color" "250 147 0" + "groupid" "3400656" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +entity +{ + "id" "1418670" + "classname" "func_detail" + solid + { + "id" "6280319" + side + { + "id" "373840" + "plane" "(-174 -3328 32) (-64 -3328 32) (-64 -3550 32)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373839" + "plane" "(-176 -3550 -2) (-64 -3550 -2) (-64 -3328 -2)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373838" + "plane" "(-64 -3328 -2) (-64 -3550 -2) (-64 -3550 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373837" + "plane" "(-174 -3328 -2) (-64 -3328 -2) (-64 -3328 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373836" + "plane" "(-64 -3550 -2) (-176 -3550 -2) (-176 -3550 32)" + "material" "ASPHALT/HR_C/HR_ASPHALT_001" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373835" + "plane" "(-176 -3550 -2) (-176 -3330 -2) (-176 -3330 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373834" + "plane" "(-176 -3330 -2) (-174 -3328 -2) (-174 -3328 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.707107 0.707107 0 -687.066] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "1401264" + "classname" "prop_static" + "angles" "0 109.5 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props_rooftop/roof_dish001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "848 -3435 224.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1401280" + "classname" "prop_static" + "angles" "0 33 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props_rooftop/roof_dish001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "892 -3453 224.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1394860" + "classname" "func_detail" + solid + { + "id" "6280240" + side + { + "id" "373786" + "plane" "(-880 -3706 127) (-880 -3506 127) (-879 -3505 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 -1 0 -385] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373785" + "plane" "(-880 -3706 119) (-880 -3506 119) (-880 -3506 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 0 1 -738] 0.125" + "vaxis" "[0 -1 0 -385] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373784" + "plane" "(-880 -3506 119) (-880 -3706 119) (-879 -3707 119)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-1 0 0 -682] 0.125" + "vaxis" "[0 -1 0 -385] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373783" + "plane" "(-864 -3520 127) (-879 -3505 127) (-879 -3505 119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373782" + "plane" "(-864 -3692 119) (-879 -3707 119) (-879 -3707 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373781" + "plane" "(-864 -3520 119) (-864 -3692 119) (-864 -3692 127)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -774] 0.125" + "vaxis" "[0 -1 0 634] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373780" + "plane" "(-879 -3707 119) (-880 -3706 119) (-880 -3706 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0.707107 -0.707107 0 -994.643] 0.125" + "vaxis" "[0 0 -1 598.518] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373779" + "plane" "(-879 -3505 127) (-880 -3506 127) (-880 -3506 119)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -490] 0.125" + "vaxis" "[0 0 -1 -137] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280230" + side + { + "id" "373770" + "plane" "(-879 -3707 127) (-864 -3692 127) (-504 -3692 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 -1 0 -385] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373769" + "plane" "(-864 -3692 127) (-879 -3707 127) (-879 -3707 119)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 -633] 0.125" + "vaxis" "[0 -1 0 641] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373768" + "plane" "(-489 -3707 127) (-504.018 -3692 127) (-504 -3692 119)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 287] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373767" + "plane" "(-878 -3708 127) (-490 -3708 127) (-490 -3708 119)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -489.752] 0.125" + "vaxis" "[0 0 -1 598.518] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373766" + "plane" "(-864 -3692 119) (-879 -3707 119) (-878 -3708 119)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -489.752] 0.125" + "vaxis" "[0 1 0 638.516] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373765" + "plane" "(-504 -3692 119) (-504.012 -3692 127) (-864 -3692 127)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 63] 0.125" + "vaxis" "[0 0 1 357.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373764" + "plane" "(-490 -3708 119) (-490 -3708 127) (-489 -3707 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0.5 0.5 -0.707107 812.667] 0.125" + "vaxis" "[-0.5 -0.5 -0.707107 916.943] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373763" + "plane" "(-879 -3707 119) (-879 -3707 127) (-878 -3708 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0.707107 -0.707107 0 -994.643] 0.125" + "vaxis" "[0 0 -1 598.518] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280239" + side + { + "id" "373778" + "plane" "(-489 -3505 127) (-504 -3520 127) (-864 -3520 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373777" + "plane" "(-879 -3505 127) (-864 -3520 127) (-864 -3520 119)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 -633] 0.125" + "vaxis" "[0 -1 0 641] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373776" + "plane" "(-504 -3520 127) (-489 -3505 127) (-489 -3505 119)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 567] 0.125" + "vaxis" "[0 -1 0 641] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373775" + "plane" "(-490 -3504 127) (-878 -3504 127) (-878 -3504 119)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 711.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373774" + "plane" "(-879 -3505 119) (-864 -3520 119) (-504 -3520 119)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373773" + "plane" "(-864 -3520 119) (-864 -3520 127) (-504 -3520 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 823.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373772" + "plane" "(-489 -3505 119) (-489 -3505 127) (-490 -3504 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0.707107 -0.707107 0 -489.75] 0.125" + "vaxis" "[0 0 1 711.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373771" + "plane" "(-878 -3504 119) (-878 -3504 127) (-879 -3505 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 -490] 0.125" + "vaxis" "[0 0 -1 -137] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280529" + side + { + "id" "373895" + "plane" "(-504 -3706 16) (-492 -3706 16) (-490 -3704 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" "373894" + "plane" "(-490 -3508 16) (-490 -3704 16) (-490 -3704 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 103.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373893" + "plane" "(-504 -3506 16) (-492 -3506 16) (-492 -3506 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -119.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373892" + "plane" "(-492 -3706 16) (-504 -3706 16) (-504 -3706 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373891" + "plane" "(-504 -3506 119) (-492 -3506 119) (-490 -3508 119)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373890" + "plane" "(-492 -3506 119) (-492 -3506 16) (-490 -3508 16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.707107 0.707107 0 -647.618] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373889" + "plane" "(-490 -3704 119) (-490 -3704 16) (-492 -3706 16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.707107 0.707107 0 331.475] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373888" + "plane" "(-504 -3706 119) (-504 -3706 16) (-504 -3506 16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -935.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280215" + side + { + "id" "373748" + "plane" "(-504 -3520 127) (-489 -3505 127) (-488 -3506 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -489.752] 0.125" + "vaxis" "[0 -1 0 -385.477] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373747" + "plane" "(-488 -3506 119) (-488 -3706 119) (-488 -3706 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 0 -1 -305.751] 0.125" + "vaxis" "[0 -1 0 -385.476] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373746" + "plane" "(-488 -3706 119) (-488 -3506 119) (-489 -3505 119)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-1 0 0 -41.7505] 0.125" + "vaxis" "[0 -1 0 -385.476] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373745" + "plane" "(-504 -3520 119) (-489 -3505 119) (-489 -3505 127)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373744" + "plane" "(-504 -3692 127) (-489 -3707 127) (-489 -3707 119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373743" + "plane" "(-504 -3692 119) (-504 -3520 119) (-504 -3520 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 0 1 -417.75] 0.125" + "vaxis" "[0 -1 0 -385.476] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373742" + "plane" "(-489 -3505 119) (-488 -3506 119) (-488 -3506 127)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0.707107 -0.707107 0 -489.75] 0.125" + "vaxis" "[0 0 1 711.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373741" + "plane" "(-489 -3707 127) (-488 -3706 127) (-488 -3706 119)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0.5 0.5 -0.707107 812.67] 0.125" + "vaxis" "[-0.5 -0.5 -0.707107 916.944] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280545" + side + { + "id" "373921" + "plane" "(-504 -3506 16) (-864 -3506 16) (-864 -3520 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" "373920" + "plane" "(-864 -3506 16) (-504 -3506 16) (-504 -3506 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -119.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373919" + "plane" "(-864 -3520 119) (-864 -3506 119) (-504 -3506 119)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373918" + "plane" "(-504 -3506 119) (-504 -3506 16) (-504 -3520 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" "373917" + "plane" "(-864 -3520 16) (-864 -3506 16) (-864 -3506 119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373916" + "plane" "(-504 -3520 16) (-864 -3520 16) (-864 -3520 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280536" + side + { + "id" "373903" + "plane" "(-864 -3506 16) (-876 -3506 16) (-878 -3508 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" "373902" + "plane" "(-878 -3704 16) (-878 -3508 16) (-878 -3508 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -663.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373901" + "plane" "(-876 -3506 16) (-864 -3506 16) (-864 -3506 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -119.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373900" + "plane" "(-864 -3706 16) (-876 -3706 16) (-876 -3706 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373899" + "plane" "(-864 -3706 119) (-876 -3706 119) (-878 -3704 119)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373898" + "plane" "(-878 -3508 119) (-878 -3508 16) (-876 -3506 16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.707107 -0.707107 0 -492.336] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373897" + "plane" "(-876 -3706 119) (-876 -3706 16) (-878 -3704 16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.707107 -0.707107 0 -512.898] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373896" + "plane" "(-864 -3506 119) (-864 -3506 16) (-864 -3706 16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 183.998] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280578" + side + { + "id" "373927" + "plane" "(-864 -3692 16) (-864 -3706 16) (-504 -3706 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" "373926" + "plane" "(-504 -3706 16) (-864 -3706 16) (-864 -3706 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373925" + "plane" "(-504 -3706 119) (-864 -3706 119) (-864 -3692 119)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373924" + "plane" "(-504 -3692 16) (-504 -3706 16) (-504 -3706 119)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373923" + "plane" "(-864 -3706 119) (-864 -3706 16) (-864 -3692 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" "373922" + "plane" "(-864 -3692 16) (-504 -3692 16) (-504 -3692 119)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +entity +{ + "id" "1394895" + "classname" "func_detail" + solid + { + "id" "1394878" + side + { + "id" "260372" + "plane" "(-176 -3336 40) (-168 -3336 40) (-168 -3550 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 -1 0 -385] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260371" + "plane" "(-176 -3550 32) (-168 -3550 32) (-168 -3336 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" "260370" + "plane" "(-176 -3336 40) (-176 -3550 40) (-176 -3550 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 0 1 -618] 0.125" + "vaxis" "[0 -1 0 -385] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260369" + "plane" "(-168 -3336 32) (-168 -3550 32) (-168 -3550 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 -1 0 -473.996] 0.125" + "vaxis" "[0 0 1 1006.99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260368" + "plane" "(-168 -3336 40) (-176 -3336 40) (-176 -3336 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" "260367" + "plane" "(-168 -3550 32) (-176 -3550 32) (-176 -3550 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 0 -1 686.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1394879" + side + { + "id" "260378" + "plane" "(-168 -3542 40) (-64 -3542 40) (-64 -3550 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 -1 0 -385] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260377" + "plane" "(-168 -3550 32) (-64 -3550 32) (-64 -3542 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" "260376" + "plane" "(-168 -3542 40) (-168 -3550 40) (-168 -3550 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" "260375" + "plane" "(-64 -3542 32) (-64 -3550 32) (-64 -3550 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" "260374" + "plane" "(-64 -3542 40) (-168 -3542 40) (-168 -3542 32)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 0 1 1006.99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260373" + "plane" "(-64 -3550 32) (-168 -3550 32) (-168 -3550 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 0 -1 110.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6280318" + side + { + "id" "373833" + "plane" "(-176 -3336 40) (-176 -3330 40) (-174 -3328 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 -1 0 -385.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373832" + "plane" "(-176 -3330 32) (-176 -3336 32) (-48 -3336 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" "373831" + "plane" "(-176 -3336 32) (-176 -3330 32) (-176 -3330 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0 1 0 837.996] 0.125" + "vaxis" "[0 0 1 1006.99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373830" + "plane" "(-48 -3328 32) (-48 -3336 32) (-48 -3336 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" "373829" + "plane" "(-174 -3328 32) (-48 -3328 32) (-48 -3328 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 0 1 1006.99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373828" + "plane" "(-48 -3336 32) (-176 -3336 32) (-176 -3336 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 -490] 0.125" + "vaxis" "[0 0 1 1006.99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "373827" + "plane" "(-176 -3330 32) (-174 -3328 32) (-174 -3328 40)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[0.707107 0.707107 0 205.434] 0.125" + "vaxis" "[0 0 1 1006.99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "1395438" + "classname" "func_detail" + solid + { + "id" "4749350" + side + { + "id" "346786" + "plane" "(-640 -4560 160) (-672 -4560 160) (-672 -4582 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346785" + "plane" "(-672 -4582 164) (-672 -4582 160) (-672 -4560 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.497925 0.86722 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346784" + "plane" "(-672 -4560 164) (-672 -4560 160) (-640 -4560 160)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346783" + "plane" "(-638 -4582 164) (-638 -4582 160) (-672 -4582 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" "346782" + "plane" "(-640 -4560 164) (-640 -4560 160) (-638 -4582 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346781" + "plane" "(-638 -4582 164) (-672 -4582 164) (-672 -4560 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749311" + side + { + "id" "346774" + "plane" "(-672 -4000 160) (-672 -4560 160) (-656 -4560 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346773" + "plane" "(-672 -4560 164) (-672 -4560 160) (-672 -4000 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.497925 0.86722 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346772" + "plane" "(-656 -4000 164) (-656 -4000 160) (-656 -4560 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" "346771" + "plane" "(-672 -4000 164) (-672 -4000 160) (-656 -4000 160)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346770" + "plane" "(-656 -4560 164) (-656 -4560 160) (-672 -4560 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" "346769" + "plane" "(-672 -4560 164) (-672 -4000 164) (-656 -4000 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749356" + side + { + "id" "346822" + "plane" "(-632 -4602 160) (-672 -4602 160) (-672 -4622 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346821" + "plane" "(-672 -4622 164) (-672 -4622 160) (-672 -4602 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.497925 0.86722 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346820" + "plane" "(-622 -4622 164) (-622 -4622 160) (-672 -4622 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" "346819" + "plane" "(-672 -4602 164) (-672 -4602 160) (-632 -4602 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" "346818" + "plane" "(-632 -4602 164) (-632 -4602 160) (-622 -4622 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346817" + "plane" "(-622 -4622 164) (-672 -4622 164) (-672 -4602 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749360" + side + { + "id" "346848" + "plane" "(-608 -4640 160) (-672 -4640 160) (-672 -4654 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346847" + "plane" "(-672 -4654 164) (-672 -4654 160) (-672 -4640 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.497925 0.86722 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346846" + "plane" "(-672 -4640 164) (-672 -4640 160) (-608 -4640 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" "346845" + "plane" "(-590 -4654 164) (-590 -4654 160) (-672 -4654 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" "346844" + "plane" "(-608 -4640 164) (-608 -4640 160) (-590 -4654 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346843" + "plane" "(-590 -4654 164) (-672 -4654 164) (-672 -4640 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749354" + side + { + "id" "346810" + "plane" "(-622 -4622 160) (-672 -4622 160) (-672 -4640 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346809" + "plane" "(-672 -4640 164) (-672 -4640 160) (-672 -4622 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.497925 0.86722 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346808" + "plane" "(-608 -4640 164) (-608 -4640 160) (-672 -4640 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" "346807" + "plane" "(-672 -4622 164) (-672 -4622 160) (-622 -4622 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" "346806" + "plane" "(-622 -4622 164) (-622 -4622 160) (-608 -4640 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346805" + "plane" "(-608 -4640 164) (-672 -4640 164) (-672 -4622 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749358" + side + { + "id" "346836" + "plane" "(-672 -4654 160) (-672 -4688 160) (-576 -4688 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346835" + "plane" "(-672 -4688 164) (-672 -4688 160) (-672 -4654 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.497925 0.86722 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346834" + "plane" "(-576 -4661.89 164) (-576 -4661.89 160) (-576 -4688 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346833" + "plane" "(-576 -4688 164) (-576 -4688 160) (-672 -4688 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" "346832" + "plane" "(-672 -4654 164) (-672 -4654 160) (-590 -4654 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" "346831" + "plane" "(-590 -4654 160) (-576 -4661.89 160) (-576 -4661.89 164)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346830" + "plane" "(-672 -4688 164) (-672 -4654 164) (-590 -4654 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749352" + side + { + "id" "346798" + "plane" "(-638 -4582 160) (-672 -4582 160) (-672 -4602 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346797" + "plane" "(-672 -4602 164) (-672 -4602 160) (-672 -4582 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.497925 0.86722 0 -121] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346796" + "plane" "(-672 -4582 164) (-672 -4582 160) (-638 -4582 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" "346795" + "plane" "(-632 -4602 164) (-632 -4602 160) (-672 -4602 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" "346794" + "plane" "(-638 -4582 164) (-638 -4582 160) (-632 -4602 160)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346793" + "plane" "(-632 -4602 164) (-672 -4602 164) (-672 -4582 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748102" + side + { + "id" "346507" + "plane" "(-672 -4688 240) (-672 -4654 240) (-589.982 -4654 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" "346506" + "plane" "(-672 -4654 236) (-672 -4654 240) (-672 -4688 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 54.2998] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346505" + "plane" "(-576 -4688 236) (-576 -4688 240) (-576 -4661.88 240)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346504" + "plane" "(-672 -4688 236) (-672 -4688 240) (-576 -4688 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" "346503" + "plane" "(-589.983 -4654 236) (-589.982 -4654 240) (-672 -4654 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" "346502" + "plane" "(-576 -4661.88 236) (-576 -4661.88 240) (-589.982 -4654 240)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346501" + "plane" "(-672 -4654 236) (-672 -4688 236) (-576 -4688 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748104" + side + { + "id" "346520" + "plane" "(-632 -4602 240) (-672 -4602 240) (-672 -4582 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" "346519" + "plane" "(-672 -4582 236) (-672 -4582 240) (-672 -4602 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 54.2998] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346518" + "plane" "(-638 -4582 236) (-638 -4582 240) (-672 -4582 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" "346517" + "plane" "(-672 -4602 236) (-672 -4602 240) (-632 -4602 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" "346516" + "plane" "(-632 -4602 236) (-632 -4602 240) (-638 -4582 240)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346515" + "plane" "(-638 -4582 236) (-672 -4582 236) (-672 -4602 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748106" + side + { + "id" "346532" + "plane" "(-622 -4622 240) (-672 -4622 240) (-672 -4602 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" "346531" + "plane" "(-672 -4602 236) (-672 -4602 240) (-672 -4622 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 54.2998] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346530" + "plane" "(-672 -4622 236) (-672 -4622 240) (-622 -4622 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" "346529" + "plane" "(-632 -4602 236) (-632 -4602 240) (-672 -4602 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" "346528" + "plane" "(-622 -4622 236) (-622 -4622 240) (-632 -4602 240)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346527" + "plane" "(-632 -4602 236) (-672 -4602 236) (-672 -4622 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748108" + side + { + "id" "346544" + "plane" "(-608 -4640 240) (-672 -4640 240) (-672 -4622 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" "346543" + "plane" "(-672 -4622 236) (-672 -4622 240) (-672 -4640 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 54.2998] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346542" + "plane" "(-672 -4640 236) (-672 -4640 240) (-608 -4640 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" "346541" + "plane" "(-622 -4622 236) (-622 -4622 240) (-672 -4622 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" "346540" + "plane" "(-608 -4640 236) (-608 -4640 240) (-622 -4622 240)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346539" + "plane" "(-622 -4622 236) (-672 -4622 236) (-672 -4640 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748110" + side + { + "id" "346556" + "plane" "(-590 -4654 240) (-672 -4654 240) (-672 -4640 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" "346555" + "plane" "(-672 -4640 236) (-672 -4640 240) (-672 -4654 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 54.2998] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346554" + "plane" "(-608 -4640 236) (-608 -4640 240) (-672 -4640 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" "346553" + "plane" "(-672 -4654 236) (-672 -4654 240) (-590 -4654 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" "346552" + "plane" "(-590 -4654 236) (-590 -4654 240) (-608 -4640 240)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346551" + "plane" "(-608 -4640 236) (-672 -4640 236) (-672 -4654 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748125" + side + { + "id" "346568" + "plane" "(-638 -4582 240) (-672 -4582 240) (-672 -4560 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" "346567" + "plane" "(-672 -4560 236) (-672 -4560 240) (-672 -4582 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 54.2998] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346566" + "plane" "(-640 -4560 236) (-640 -4560 240) (-672 -4560 240)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346565" + "plane" "(-672 -4582 236) (-672 -4582 240) (-638 -4582 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" "346564" + "plane" "(-638 -4582 236) (-638 -4582 240) (-640 -4560 240)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346563" + "plane" "(-640 -4560 236) (-672 -4560 236) (-672 -4582 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748127" + side + { + "id" "346580" + "plane" "(-672 -4560 240) (-672 -4000 240) (-656 -4000 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" "346579" + "plane" "(-672 -4000 236) (-672 -4000 240) (-672 -4560 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 1 0 54.2998] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346578" + "plane" "(-656 -4560 236) (-656 -4560 240) (-656 -4000 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" "346577" + "plane" "(-656 -4000 236) (-656 -4000 240) (-672 -4000 240)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346576" + "plane" "(-672 -4560 236) (-672 -4560 240) (-656 -4560 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" "346575" + "plane" "(-672 -4000 236) (-672 -4560 236) (-656 -4560 236)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749310" + side + { + "id" "346768" + "plane" "(-672 -4560 236) (-672 -4560 164) (-672 -4000 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.497925 0.86722 0 -760.756] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "-2147483648" + } + side + { + "id" "346767" + "plane" "(-656 -4000 236) (-656 -4000 164) (-656 -4560 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" + } + side + { + "id" "346766" + "plane" "(-672 -4000 236) (-672 -4000 164) (-656 -4000 164)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -9] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346765" + "plane" "(-656 -4560 236) (-656 -4560 164) (-672 -4560 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" + } + side + { + "id" "346764" + "plane" "(-672 -4560 236) (-672 -4000 236) (-656 -4000 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346763" + "plane" "(-672 -4000 164) (-672 -4560 164) (-656 -4560 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749349" + side + { + "id" "346780" + "plane" "(-672 -4582 236) (-672 -4582 164) (-672 -4560 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.497925 0.86722 0 -760.751] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346779" + "plane" "(-672 -4560 236) (-672 -4560 164) (-640 -4560 164)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346778" + "plane" "(-638 -4582 236) (-638 -4582 164) (-672 -4582 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" + } + side + { + "id" "346777" + "plane" "(-640 -4560 236) (-640 -4560 164) (-638 -4582 164)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346776" + "plane" "(-638 -4582 236) (-672 -4582 236) (-672 -4560 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346775" + "plane" "(-640 -4560 164) (-672 -4560 164) (-672 -4582 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749351" + side + { + "id" "346792" + "plane" "(-672 -4602 236) (-672 -4602 164) (-672 -4582 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.497925 0.86722 0 -760.756] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346791" + "plane" "(-672 -4582 236) (-672 -4582 164) (-638 -4582 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" + } + side + { + "id" "346790" + "plane" "(-632 -4602 236) (-632 -4602 164) (-672 -4602 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" + } + side + { + "id" "346789" + "plane" "(-638 -4582 236) (-638 -4582 164) (-632 -4602 164)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346788" + "plane" "(-632 -4602 236) (-672 -4602 236) (-672 -4582 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346787" + "plane" "(-638 -4582 164) (-672 -4582 164) (-672 -4602 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749353" + side + { + "id" "346804" + "plane" "(-672 -4640 236) (-672 -4640 164) (-672 -4622 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.497925 0.86722 0 -760.756] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346803" + "plane" "(-608 -4640 236) (-608 -4640 164) (-672 -4640 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" + } + side + { + "id" "346802" + "plane" "(-672 -4622 236) (-672 -4622 164) (-622 -4622 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" + } + side + { + "id" "346801" + "plane" "(-622 -4622 236) (-622 -4622 164) (-608 -4640 164)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346800" + "plane" "(-608 -4640 236) (-672 -4640 236) (-672 -4622 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346799" + "plane" "(-622 -4622 164) (-672 -4622 164) (-672 -4640 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749355" + side + { + "id" "346816" + "plane" "(-672 -4622 236) (-672 -4622 164) (-672 -4602 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.497925 0.86722 0 -760.756] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346815" + "plane" "(-622 -4622 236) (-622 -4622 164) (-672 -4622 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" + } + side + { + "id" "346814" + "plane" "(-672 -4602 236) (-672 -4602 164) (-632 -4602 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" + } + side + { + "id" "346813" + "plane" "(-632 -4602 236) (-632 -4602 164) (-622 -4622 164)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346812" + "plane" "(-622 -4622 236) (-672 -4622 236) (-672 -4602 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346811" + "plane" "(-632 -4602 164) (-672 -4602 164) (-672 -4622 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749357" + side + { + "id" "346829" + "plane" "(-672 -4688 236) (-672 -4688 164) (-672 -4654 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.497925 0.86722 0 -760.756] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346828" + "plane" "(-576 -4661.88 236) (-576 -4661.89 164) (-576 -4688 164)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346827" + "plane" "(-576 -4688 236) (-576 -4688 164) (-672 -4688 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" + } + side + { + "id" "346826" + "plane" "(-672 -4654 236) (-672 -4654 164) (-590 -4654 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" + } + side + { + "id" "346825" + "plane" "(-576 -4661.89 164) (-576 -4661.88 236) (-589.977 -4654 236)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346824" + "plane" "(-672 -4688 236) (-672 -4654 236) (-589.978 -4654 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346823" + "plane" "(-672 -4654 164) (-672 -4688 164) (-576 -4688 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749359" + side + { + "id" "346842" + "plane" "(-672 -4654 236) (-672 -4654 164) (-672 -4640 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.497925 0.86722 0 -760.756] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346841" + "plane" "(-672 -4640 236) (-672 -4640 164) (-608 -4640 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" + } + side + { + "id" "346840" + "plane" "(-590 -4654 236) (-590 -4654 164) (-672 -4654 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" + } + side + { + "id" "346839" + "plane" "(-608 -4640 236) (-608 -4640 164) (-590 -4654 164)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346838" + "plane" "(-590 -4654 236) (-672 -4654 236) (-672 -4640 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346837" + "plane" "(-608 -4640 164) (-672 -4640 164) (-672 -4654 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15500]" + } +} +entity +{ + "id" "1386428" + "classname" "func_detail" + solid + { + "id" "1386429" + side + { + "id" "258615" + "plane" "(1554 -3441 22) (1554 -3438 22) (1773 -3438 22)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 -1 0 -40.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258614" + "plane" "(1554 -3438 19) (1554 -3441 19) (1773 -3441 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258613" + "plane" "(1554 -3441 19) (1554 -3438 19) (1554 -3438 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258612" + "plane" "(1773 -3438 19) (1773 -3441 19) (1773 -3441 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258611" + "plane" "(1554 -3438 19) (1773 -3438 19) (1773 -3438 22)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258610" + "plane" "(1773 -3441 19) (1554 -3441 19) (1554 -3441 22)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1380156" + side + { + "id" "258507" + "plane" "(1770 -3441 144) (1770 -3438 144) (1773 -3438 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258506" + "plane" "(1770 -3438 22) (1770 -3441 22) (1773 -3441 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258505" + "plane" "(1770 -3441 22) (1770 -3438 22) (1770 -3438 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258504" + "plane" "(1773 -3438 22) (1773 -3441 22) (1773 -3441 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258503" + "plane" "(1770 -3438 22) (1773 -3438 22) (1773 -3438 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 15] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258502" + "plane" "(1773 -3441 22) (1770 -3441 22) (1770 -3441 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 15] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1380389" + side + { + "id" "258513" + "plane" "(1731 -3440 141) (1731 -3439 141) (1770 -3439 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258512" + "plane" "(1731 -3439 83) (1731 -3440 83) (1770 -3440 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258511" + "plane" "(1731 -3440 83) (1731 -3439 83) (1731 -3439 141)" + "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" "258510" + "plane" "(1770 -3439 83) (1770 -3440 83) (1770 -3440 141)" + "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" "258509" + "plane" "(1731 -3439 83) (1770 -3439 83) (1770 -3439 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258508" + "plane" "(1770 -3440 83) (1731 -3440 83) (1731 -3440 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386325" + side + { + "id" "258501" + "plane" "(1686 -3440 141) (1686 -3439 141) (1728 -3439 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258500" + "plane" "(1686 -3439 83) (1686 -3440 83) (1728 -3440 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258499" + "plane" "(1686 -3440 83) (1686 -3439 83) (1686 -3439 141)" + "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" "258498" + "plane" "(1728 -3439 83) (1728 -3440 83) (1728 -3440 141)" + "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" "258497" + "plane" "(1686 -3439 83) (1728 -3439 83) (1728 -3439 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258496" + "plane" "(1728 -3440 83) (1686 -3440 83) (1686 -3440 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386324" + side + { + "id" "258489" + "plane" "(1728 -3441 141) (1728 -3438 141) (1731 -3438 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258488" + "plane" "(1728 -3438 83) (1728 -3441 83) (1731 -3441 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258487" + "plane" "(1728 -3441 83) (1728 -3438 83) (1728 -3438 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258486" + "plane" "(1731 -3438 83) (1731 -3441 83) (1731 -3441 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258485" + "plane" "(1728 -3438 83) (1731 -3438 83) (1731 -3438 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258484" + "plane" "(1731 -3441 83) (1728 -3441 83) (1728 -3441 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386337" + side + { + "id" "258549" + "plane" "(1641 -3440 141) (1641 -3439 141) (1683 -3439 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258548" + "plane" "(1641 -3439 83) (1641 -3440 83) (1683 -3440 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258547" + "plane" "(1641 -3440 83) (1641 -3439 83) (1641 -3439 141)" + "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" "258546" + "plane" "(1683 -3439 83) (1683 -3440 83) (1683 -3440 141)" + "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" "258545" + "plane" "(1641 -3439 83) (1683 -3439 83) (1683 -3439 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258544" + "plane" "(1683 -3440 83) (1641 -3440 83) (1641 -3440 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386336" + side + { + "id" "258543" + "plane" "(1683 -3441 141) (1683 -3438 141) (1686 -3438 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258542" + "plane" "(1683 -3438 83) (1683 -3441 83) (1686 -3441 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258541" + "plane" "(1683 -3441 83) (1683 -3438 83) (1683 -3438 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258540" + "plane" "(1686 -3438 83) (1686 -3441 83) (1686 -3441 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258539" + "plane" "(1683 -3438 83) (1686 -3438 83) (1686 -3438 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258538" + "plane" "(1686 -3441 83) (1683 -3441 83) (1683 -3441 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386349" + side + { + "id" "258585" + "plane" "(1554 -3440 141) (1554 -3439 141) (1593 -3439 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258584" + "plane" "(1554 -3439 83) (1554 -3440 83) (1593 -3440 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258583" + "plane" "(1554 -3440 83) (1554 -3439 83) (1554 -3439 141)" + "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" "258582" + "plane" "(1593 -3439 83) (1593 -3440 83) (1593 -3440 141)" + "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" "258581" + "plane" "(1554 -3439 83) (1593 -3439 83) (1593 -3439 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258580" + "plane" "(1593 -3440 83) (1554 -3440 83) (1554 -3440 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386338" + side + { + "id" "258555" + "plane" "(1638 -3441 141) (1638 -3438 141) (1641 -3438 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258554" + "plane" "(1638 -3438 83) (1638 -3441 83) (1641 -3441 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258553" + "plane" "(1638 -3441 83) (1638 -3438 83) (1638 -3438 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258552" + "plane" "(1641 -3438 83) (1641 -3441 83) (1641 -3441 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258551" + "plane" "(1638 -3438 83) (1641 -3438 83) (1641 -3438 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 47] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258550" + "plane" "(1641 -3441 83) (1638 -3441 83) (1638 -3441 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 47] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386348" + side + { + "id" "258579" + "plane" "(1593 -3441 141) (1593 -3438 141) (1596 -3438 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258578" + "plane" "(1593 -3438 83) (1593 -3441 83) (1596 -3441 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258577" + "plane" "(1593 -3441 83) (1593 -3438 83) (1593 -3438 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258576" + "plane" "(1596 -3438 83) (1596 -3441 83) (1596 -3441 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258575" + "plane" "(1593 -3438 83) (1596 -3438 83) (1596 -3438 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 23] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258574" + "plane" "(1596 -3441 83) (1593 -3441 83) (1593 -3441 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 23] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386339" + side + { + "id" "258561" + "plane" "(1596 -3440 141) (1596 -3439 141) (1638 -3439 141)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258560" + "plane" "(1596 -3439 83) (1596 -3440 83) (1638 -3440 83)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258559" + "plane" "(1596 -3440 83) (1596 -3439 83) (1596 -3439 141)" + "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" "258558" + "plane" "(1638 -3439 83) (1638 -3440 83) (1638 -3440 141)" + "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" "258557" + "plane" "(1596 -3439 83) (1638 -3439 83) (1638 -3439 141)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258556" + "plane" "(1638 -3440 83) (1596 -3440 83) (1596 -3440 141)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1380152" + side + { + "id" "258591" + "plane" "(1551 -3441 144) (1551 -3438 144) (1554 -3438 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258590" + "plane" "(1551 -3438 19) (1551 -3441 19) (1554 -3441 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258589" + "plane" "(1551 -3441 19) (1551 -3438 19) (1551 -3438 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258588" + "plane" "(1554 -3438 19) (1554 -3441 19) (1554 -3441 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57.0017] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258587" + "plane" "(1551 -3438 19) (1554 -3438 19) (1554 -3438 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 -25] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258586" + "plane" "(1554 -3441 19) (1551 -3441 19) (1551 -3441 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -57] 0.125" + "vaxis" "[1 0 0 -25] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386489" + side + { + "id" "258699" + "plane" "(1731 -3440 80) (1731 -3439 80) (1770 -3439 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258698" + "plane" "(1731 -3439 22) (1731 -3440 22) (1770 -3440 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258697" + "plane" "(1731 -3440 22) (1731 -3439 22) (1731 -3439 80)" + "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" "258696" + "plane" "(1770 -3439 22) (1770 -3440 22) (1770 -3440 80)" + "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" "258695" + "plane" "(1731 -3439 22) (1770 -3439 22) (1770 -3439 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258694" + "plane" "(1770 -3440 22) (1731 -3440 22) (1731 -3440 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386490" + side + { + "id" "258705" + "plane" "(1686 -3440 80) (1686 -3439 80) (1728 -3439 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258704" + "plane" "(1686 -3439 22) (1686 -3440 22) (1728 -3440 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 52] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258703" + "plane" "(1686 -3440 22) (1686 -3439 22) (1686 -3439 80)" + "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" "258702" + "plane" "(1728 -3439 22) (1728 -3440 22) (1728 -3440 80)" + "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" "258701" + "plane" "(1686 -3439 22) (1728 -3439 22) (1728 -3439 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258700" + "plane" "(1728 -3440 22) (1686 -3440 22) (1686 -3440 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386491" + side + { + "id" "258711" + "plane" "(1728 -3441 80) (1728 -3438 80) (1731 -3438 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258710" + "plane" "(1728 -3438 19) (1728 -3441 19) (1731 -3441 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258709" + "plane" "(1728 -3441 19) (1728 -3438 19) (1728 -3438 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258708" + "plane" "(1731 -3438 19) (1731 -3441 19) (1731 -3441 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 198.998] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258707" + "plane" "(1728 -3438 19) (1731 -3438 19) (1731 -3438 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[1 0 0 31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258706" + "plane" "(1731 -3441 19) (1728 -3441 19) (1728 -3441 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[1 0 0 31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386492" + side + { + "id" "258717" + "plane" "(1641 -3440 80) (1641 -3439 80) (1683 -3439 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258716" + "plane" "(1641 -3439 22) (1641 -3440 22) (1683 -3440 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258715" + "plane" "(1641 -3440 22) (1641 -3439 22) (1641 -3439 80)" + "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" "258714" + "plane" "(1683 -3439 22) (1683 -3440 22) (1683 -3440 80)" + "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" "258713" + "plane" "(1641 -3439 22) (1683 -3439 22) (1683 -3439 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258712" + "plane" "(1683 -3440 22) (1641 -3440 22) (1641 -3440 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386493" + side + { + "id" "258723" + "plane" "(1683 -3441 80) (1683 -3438 80) (1686 -3438 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258722" + "plane" "(1683 -3438 19) (1683 -3441 19) (1686 -3441 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258721" + "plane" "(1683 -3441 19) (1683 -3438 19) (1683 -3438 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258720" + "plane" "(1686 -3438 19) (1686 -3441 19) (1686 -3441 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 198.998] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258719" + "plane" "(1683 -3438 19) (1686 -3438 19) (1686 -3438 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[1 0 0 7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258718" + "plane" "(1686 -3441 19) (1683 -3441 19) (1683 -3441 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[1 0 0 7] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386494" + side + { + "id" "258729" + "plane" "(1554 -3440 80) (1554 -3439 80) (1593 -3439 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258728" + "plane" "(1554 -3439 22) (1554 -3440 22) (1593 -3440 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258727" + "plane" "(1554 -3440 22) (1554 -3439 22) (1554 -3439 80)" + "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" "258726" + "plane" "(1593 -3439 22) (1593 -3440 22) (1593 -3440 80)" + "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" "258725" + "plane" "(1554 -3439 22) (1593 -3439 22) (1593 -3439 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258724" + "plane" "(1593 -3440 22) (1554 -3440 22) (1554 -3440 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386495" + side + { + "id" "258735" + "plane" "(1638 -3441 80) (1638 -3438 80) (1641 -3438 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258734" + "plane" "(1638 -3438 19) (1638 -3441 19) (1641 -3441 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258733" + "plane" "(1638 -3441 19) (1638 -3438 19) (1638 -3438 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258732" + "plane" "(1641 -3438 19) (1641 -3441 19) (1641 -3441 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 198.998] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258731" + "plane" "(1638 -3438 19) (1641 -3438 19) (1641 -3438 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[1 0 0 47] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258730" + "plane" "(1641 -3441 19) (1638 -3441 19) (1638 -3441 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[1 0 0 47] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386496" + side + { + "id" "258741" + "plane" "(1593 -3441 80) (1593 -3438 80) (1596 -3438 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258740" + "plane" "(1593 -3438 19) (1593 -3441 19) (1596 -3441 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258739" + "plane" "(1593 -3441 19) (1593 -3438 19) (1593 -3438 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[0 1 0 -1] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258738" + "plane" "(1596 -3438 19) (1596 -3441 19) (1596 -3441 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 198.998] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258737" + "plane" "(1593 -3438 19) (1596 -3438 19) (1596 -3438 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[1 0 0 23] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258736" + "plane" "(1596 -3441 19) (1593 -3441 19) (1593 -3441 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 199] 0.125" + "vaxis" "[1 0 0 23] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386497" + side + { + "id" "258747" + "plane" "(1596 -3440 80) (1596 -3439 80) (1638 -3439 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258746" + "plane" "(1596 -3439 22) (1596 -3440 22) (1638 -3440 22)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258745" + "plane" "(1596 -3440 22) (1596 -3439 22) (1596 -3439 80)" + "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" "258744" + "plane" "(1638 -3439 22) (1638 -3440 22) (1638 -3440 80)" + "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" "258743" + "plane" "(1596 -3439 22) (1638 -3439 22) (1638 -3439 80)" + "material" "CS_APOLLO/GLASS/BLACK_GLASS" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258742" + "plane" "(1638 -3440 22) (1596 -3440 22) (1596 -3440 80)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -12] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386472" + side + { + "id" "258627" + "plane" "(1551 -3441 83) (1551 -3438 83) (1773 -3438 83)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 -1 0 -40.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258626" + "plane" "(1551 -3438 80) (1551 -3441 80) (1773 -3441 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 -1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258625" + "plane" "(1551 -3441 80) (1551 -3438 80) (1551 -3438 83)" + "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" "258624" + "plane" "(1773 -3438 80) (1773 -3441 80) (1773 -3441 83)" + "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" "258623" + "plane" "(1551 -3438 80) (1773 -3438 80) (1773 -3438 83)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 55] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258622" + "plane" "(1773 -3441 80) (1551 -3441 80) (1551 -3441 83)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 55] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1386408" + side + { + "id" "258603" + "plane" "(1554 -3441 144) (1554 -3438 144) (1773 -3438 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258602" + "plane" "(1554 -3438 141) (1554 -3441 141) (1773 -3441 141)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 1 0 62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258601" + "plane" "(1554 -3441 141) (1554 -3438 141) (1554 -3438 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258600" + "plane" "(1773 -3438 141) (1773 -3441 141) (1773 -3441 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258599" + "plane" "(1554 -3438 141) (1773 -3438 141) (1773 -3438 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258598" + "plane" "(1773 -3441 141) (1554 -3441 141) (1554 -3441 144)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 -57] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2598269" + side + { + "id" "318507" + "plane" "(1776 -3456 147) (1548 -3456 147) (1548 -3424 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318508" + "plane" "(1773 -3424 144) (1551 -3424 144) (1551 -3456 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 1985.33] 0.15" + "vaxis" "[0 -1 0 20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318509" + "plane" "(1551 -3456 144) (1551 -3424 144) (1548 -3424 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318510" + "plane" "(1776 -3456 147) (1776 -3424 147) (1773 -3424 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318511" + "plane" "(1551 -3424 144) (1773 -3424 144) (1776 -3424 147)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 1985.33] 0.15" + "vaxis" "[0 0 -1 147.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318512" + "plane" "(1548 -3456 147) (1776 -3456 147) (1773 -3456 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 1985.33] 0.15" + "vaxis" "[0 0 1 147.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2598258" + side + { + "id" "318501" + "plane" "(1773 -3456 144) (1773 -3424 144) (1776 -3424 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318502" + "plane" "(1773 -3424 19) (1773 -3456 19) (1776 -3456 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" "318503" + "plane" "(1773 -3424 19) (1773 -3424 144) (1773 -3456 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493.33] 0.15" + "vaxis" "[0 -1 0 20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318504" + "plane" "(1776 -3424 147) (1776 -3424 16) (1776 -3456 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" "318505" + "plane" "(1776 -3424 16) (1776 -3424 147) (1773 -3424 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493.33] 0.15" + "vaxis" "[-1 0 0 123.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318506" + "plane" "(1776 -3456 147) (1776 -3456 16) (1773 -3456 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 1493.33] 0.15" + "vaxis" "[1 0 0 171.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2598635" + side + { + "id" "318873" + "plane" "(1551 -3456 144) (1548 -3456 147) (1548 -3424 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318874" + "plane" "(1551 -3424 19) (1548 -3424 16) (1548 -3456 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" "318875" + "plane" "(1548 -3456 16) (1548 -3424 16) (1548 -3424 147)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318876" + "plane" "(1551 -3456 144) (1551 -3424 144) (1551 -3424 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -1250.67] 0.15" + "vaxis" "[0 -1 0 20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318877" + "plane" "(1548 -3424 16) (1551 -3424 19) (1551 -3424 144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -1250.67] 0.15" + "vaxis" "[1 0 0 155.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "318878" + "plane" "(1548 -3456 147) (1551 -3456 144) (1551 -3456 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 -1250.67] 0.15" + "vaxis" "[-1 0 0 139.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2598751" + side + { + "id" "318999" + "plane" "(1773 -3456 19) (1551 -3456 19) (1551 -3424 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 -1477.33] 0.15" + "vaxis" "[0 -1 0 20] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "319000" + "plane" "(1776 -3424 16) (1548 -3424 16) (1548 -3456 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" "319001" + "plane" "(1548 -3456 16) (1548 -3424 16) (1551 -3424 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "319002" + "plane" "(1773 -3456 19) (1773 -3424 19) (1776 -3424 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" "319003" + "plane" "(1548 -3424 16) (1776 -3424 16) (1773 -3424 19)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 -1477.33] 0.15" + "vaxis" "[0 0 1 123.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "319004" + "plane" "(1551 -3456 19) (1773 -3456 19) (1776 -3456 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 -1477.33] 0.15" + "vaxis" "[0 0 -1 171.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +hidden +{ + entity + { + "id" "1386882" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_192.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1995 -3452 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1386906" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_64.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2059 -3452 192" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1386972" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_192.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2052 -3429 350.767" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1386984" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_64.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1860 -3429 351" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1387016" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_192.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1315 -3084 191" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1387020" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_64.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1315 -3148 191" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1387088" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_64.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1348 -3164.37 351" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1387092" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_trim_001/metal_roof_trim_001_192.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1348 -3100.37 351" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1388059" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2036.33 -5487.72 48.2399" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1388063" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/belt_barrier_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1899.48 -5495.09 48.2398" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1388083" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1060 -3112 10" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +hidden +{ + entity + { + "id" "1388095" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1064 -3014 14" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "1388229" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "794 -5718 8" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/decalstain006a" + "sides" "262687" + "StartU" "0" + "StartV" "1" + "uv0" "-32 -32 0" + "uv1" "-32 32 0" + "uv2" "32 32 0" + "uv3" "32 -32 0" + "origin" "794 -5718 8" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 5000]" + } +} +entity +{ + "id" "1388259" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "618 -5744 8" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/hr_decals/large_stain_a" + "sides" "262687" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "618 -5744 8" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 6000]" + } +} +hidden +{ + entity + { + "id" "1388509" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_locker_bench/nuke_locker_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1641 -3412 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "1388569" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "maxdxlevel" "0" + "mindxlevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_locker_bench/nuke_locker_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1352 -3284 16.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "1379072" + "classname" "func_detail" + solid + { + "id" "1151810" + side + { + "id" "256548" + "plane" "(383.999 -2578 208) (399.999 -2578 208) (399.999 -2538 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[1 0 0 0.00585938] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256547" + "plane" "(399.999 -2578 208) (383.999 -2578 208) (383.999 -2578 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00585938] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256546" + "plane" "(383.999 -2538 208) (399.999 -2538 208) (399.999 -2538 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00585938] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256545" + "plane" "(383.999 -2578 208) (383.999 -2538 208) (383.999 -2538 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[0 1 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256544" + "plane" "(399.999 -2538 208) (399.999 -2578 208) (399.999 -2578 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[0 1 0 599] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256543" + "plane" "(399.999 -2578 400) (383.999 -2578 400) (383.999 -2538 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[1 0 0 0.00585938] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151820" + side + { + "id" "256554" + "plane" "(399.999 -2578 416) (383.999 -2578 416) (383.999 -2538 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[1 0 0 0.00585938] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256553" + "plane" "(383.999 -2578 400) (383.999 -2578 416) (399.999 -2578 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00585938] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256552" + "plane" "(399.999 -2538 400) (399.999 -2538 416) (383.999 -2538 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00585938] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256551" + "plane" "(383.999 -2538 400) (383.999 -2538 416) (383.999 -2578 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256550" + "plane" "(399.999 -2578 400) (399.999 -2578 416) (399.999 -2538 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[0 1 0 599] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256549" + "plane" "(383.999 -2578 400) (399.999 -2578 400) (399.999 -2538 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[1 0 0 0.00585938] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "1379081" + "classname" "func_detail" + solid + { + "id" "1186971" + side + { + "id" "256560" + "plane" "(-1056 -2000 400) (-1096 -2000 400) (-1096 -1984 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" "256559" + "plane" "(-1096 -1984 208) (-1056 -1984 208) (-1056 -1984 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256558" + "plane" "(-1056 -2000 208) (-1096 -2000 208) (-1096 -2000 400)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256557" + "plane" "(-1056 -1984 208) (-1096 -1984 208) (-1096 -2000 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" "256556" + "plane" "(-1056 -2000 208) (-1056 -2000 400) (-1056 -1984 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256555" + "plane" "(-1096 -1984 208) (-1096 -1984 400) (-1096 -2000 400)" + "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" "1186978" + side + { + "id" "256566" + "plane" "(-1056 -2000 416) (-1096 -2000 416) (-1096 -1984 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" "256565" + "plane" "(-1056 -1984 400) (-1096 -1984 400) (-1096 -2000 400)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 1 0 256] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256564" + "plane" "(-1096 -1984 400) (-1056 -1984 400) (-1056 -1984 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" "256563" + "plane" "(-1056 -2000 400) (-1096 -2000 400) (-1096 -2000 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256562" + "plane" "(-1056 -1984 400) (-1056 -2000 400) (-1056 -2000 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" "256561" + "plane" "(-1096 -2000 400) (-1096 -1984 400) (-1096 -1984 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "1379231" + "classname" "func_detail" + solid + { + "id" "1380409" + side + { + "id" "258033" + "plane" "(1526 -3631 0) (1440 -3631 0) (1440 -3835 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258032" + "plane" "(1440 -3631 40) (1440 -3631 0) (1526 -3631 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258031" + "plane" "(1526 -3835 40) (1526 -3835 0) (1440 -3835 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258030" + "plane" "(1526 -3631 40) (1526 -3631 0) (1526 -3835 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258029" + "plane" "(1440 -3835 40) (1440 -3835 0) (1440 -3631 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "258028" + "plane" "(1526 -3835 40) (1440 -3835 40) (1440 -3631 40)" + "material" "GRASS/HR_GRASS/GRASS_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6000002" + side + { + "id" "371434" + "plane" "(1528 -3837 48) (1515 -3824 48) (1515 -3642 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 -1 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371433" + "plane" "(1528 -3629 40) (1528 -3629 48) (1515 -3642 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371432" + "plane" "(1515 -3824 48) (1528 -3837 48) (1528 -3837 40)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371431" + "plane" "(1528 -3837 40) (1528 -3837 48) (1528 -3629 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 -889.994] 0.125" + "vaxis" "[0 0 -1 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371430" + "plane" "(1528 -3629 40) (1515 -3642 40) (1515 -3824 40)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 -889.994] 0.125" + "vaxis" "[-1 0 0 22.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371429" + "plane" "(1515 -3642 40) (1515 -3642 48) (1515 -3824 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "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" "5999996" + side + { + "id" "371428" + "plane" "(1528 -3837 48) (1440 -3837 48) (1453 -3824 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 -1 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371427" + "plane" "(1528 -3837 40) (1440 -3837 40) (1440 -3837 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 0 -1 -377] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371426" + "plane" "(1453 -3824 48) (1440 -3837 48) (1440 -3837 40)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371425" + "plane" "(1453 -3824 40) (1440 -3837 40) (1528 -3837 40)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 1 0 302.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371424" + "plane" "(1528 -3837 40) (1528 -3837 48) (1515 -3824 48)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371423" + "plane" "(1515 -3824 48) (1453 -3824 48) (1453 -3824 40)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "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" "6000008" + side + { + "id" "371440" + "plane" "(1440 -3642 48) (1440 -3629 48) (1528 -3629 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 -1 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371439" + "plane" "(1528 -3629 48) (1440 -3629 48) (1440 -3629 40)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371438" + "plane" "(1440 -3642 40) (1440 -3629 40) (1440 -3629 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 54] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371437" + "plane" "(1528 -3629 40) (1440 -3629 40) (1440 -3642 40)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 -1 0 -0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371436" + "plane" "(1515 -3642 48) (1528 -3629 48) (1528 -3629 40)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371435" + "plane" "(1515 -3642 40) (1440 -3642 40) (1440 -3642 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "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" "6000013" + side + { + "id" "371446" + "plane" "(1440 -3837 48) (1441 -3642 48) (1453 -3642 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 54] 0.125" + "vaxis" "[0 -1 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371445" + "plane" "(1440 -3837 40) (1441 -3642 40) (1441 -3642 48)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 -281.994] 0.125" + "vaxis" "[0 0 -1 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371444" + "plane" "(1441 -3642 40) (1440 -3837 40) (1453 -3824 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371443" + "plane" "(1453 -3642 48) (1441 -3642 48) (1441 -3642 40)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371442" + "plane" "(1453 -3824 40) (1440 -3837 40) (1440 -3837 48)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371441" + "plane" "(1453 -3824 48) (1453 -3642 48) (1453 -3642 40)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 798] 0.125" + "vaxis" "[0 -1 0 406.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "1379256" + "classname" "func_detail" + solid + { + "id" "4731218" + side + { + "id" "345585" + "plane" "(-964 -5616 176) (-964 -5616 40) (-948 -5616 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" "345584" + "plane" "(-964 -6128 176) (-964 -6128 40) (-964 -5616 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345583" + "plane" "(-948 -5616 176) (-948 -5616 40) (-948 -6128 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[0 1 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345582" + "plane" "(-948 -6128 176) (-948 -6128 40) (-964 -6128 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" "345581" + "plane" "(-948 -5616 40) (-964 -5616 40) (-964 -6128 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345580" + "plane" "(-964 -6128 176) (-964 -5616 176) (-948 -5616 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747535" + side + { + "id" "346320" + "plane" "(-964 -5504 323) (-964 -5504 256) (-948 -5504 256)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -600] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346319" + "plane" "(-964 -6128 323) (-964 -6128 256) (-964 -5504 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346318" + "plane" "(-948 -5504 323) (-948 -5504 256) (-948 -6128 256)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 1 0 287.992] 0.125" + "vaxis" "[0 0 -1 -600] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346317" + "plane" "(-948 -6128 323) (-948 -6128 256) (-964 -6128 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" "346316" + "plane" "(-948 -5504 256) (-964 -5504 256) (-964 -6128 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346315" + "plane" "(-964 -6128 323) (-964 -5504 323) (-948 -5504 323)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747537" + side + { + "id" "346332" + "plane" "(-1550 -5520 256) (-1550 -5520 323) (-964 -5520 323)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346331" + "plane" "(-964 -5504 256) (-964 -5504 323) (-1550 -5504 323)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -600] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346330" + "plane" "(-964 -5520 256) (-964 -5520 323) (-964 -5504 323)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346329" + "plane" "(-1550 -5504 256) (-1550 -5504 323) (-1550 -5520 323)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346328" + "plane" "(-964 -5504 256) (-1550 -5504 256) (-1550 -5520 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346327" + "plane" "(-964 -5520 323) (-1550 -5520 323) (-1550 -5504 323)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731240" + side + { + "id" "345717" + "plane" "(-1166 -5504 132) (-1452 -5504 132) (-1452 -5520 132)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 -1157] 0.125" + "vaxis" "[0 -1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345716" + "plane" "(-1166 -5520 132) (-1452 -5520 132) (-1452 -5520 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345715" + "plane" "(-1452 -5504 132) (-1166 -5504 132) (-1166 -5504 176)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-1 0 0 843] 0.125" + "vaxis" "[0 0 -1 259] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345714" + "plane" "(-1166 -5504 176) (-1166 -5504 132) (-1166 -5520 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345713" + "plane" "(-1452 -5520 176) (-1452 -5520 132) (-1452 -5504 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345712" + "plane" "(-1166 -5520 176) (-1452 -5520 176) (-1452 -5504 176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811893" + side + { + "id" "336680" + "plane" "(-1161 -5504 80) (-1300 -5504 80) (-1290 -5490 80)" + "material" "STONE/COUNTER01" + "uaxis" "[0 -1 0 -82] 0.125" + "vaxis" "[1 0 0 -73.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336679" + "plane" "(-1170 -5490 78) (-1290 -5490 78) (-1300 -5504 78)" + "material" "STONE/COUNTER01" + "uaxis" "[-0.966098 -0.258174 0 206.626] 0.125" + "vaxis" "[-0.258175 0.966098 0 129.142] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336678" + "plane" "(-1161 -5504 78) (-1300 -5504 78) (-1300 -5504 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.789352 0 -0.613941 -28.4082] 0.25" + "vaxis" "[0.61394 0 0.789352 -44.4939] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336677" + "plane" "(-1290 -5490 78) (-1170 -5490 78) (-1170 -5490 80)" + "material" "STONE/COUNTER01" + "uaxis" "[-1 0 0 14] 0.125" + "vaxis" "[0 0 -1 59.6413] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336676" + "plane" "(-1300 -5504 78) (-1290 -5490 78) (-1290 -5490 80)" + "material" "STONE/COUNTER01" + "uaxis" "[0 -1 0 -82] 0.125" + "vaxis" "[0 0 -1 59.6413] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336675" + "plane" "(-1170 -5490 78) (-1161 -5504 78) (-1161 -5504 80)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 -82] 0.125" + "vaxis" "[0 0 -1 59.6413] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811894" + side + { + "id" "336686" + "plane" "(-1318 -5504 80) (-1457 -5504 80) (-1447 -5490 80)" + "material" "STONE/COUNTER01" + "uaxis" "[0 -1 0 -82] 0.125" + "vaxis" "[1 0 0 158.004] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336685" + "plane" "(-1327 -5490 78) (-1447 -5490 78) (-1457 -5504 78)" + "material" "STONE/COUNTER01" + "uaxis" "[-0.966098 -0.258174 0 -238.793] 0.125" + "vaxis" "[-0.258175 0.966098 0 -195.126] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336684" + "plane" "(-1318 -5504 78) (-1457 -5504 78) (-1457 -5504 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.789352 0 -0.613941 19.3048] 0.25" + "vaxis" "[0.61394 0 0.789352 21.0604] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336683" + "plane" "(-1447 -5490 78) (-1327 -5490 78) (-1327 -5490 80)" + "material" "STONE/COUNTER01" + "uaxis" "[-1 0 0 -218] 0.125" + "vaxis" "[0 0 -1 59.6413] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336682" + "plane" "(-1457 -5504 78) (-1447 -5490 78) (-1447 -5490 80)" + "material" "STONE/COUNTER01" + "uaxis" "[0 -1 0 -82] 0.125" + "vaxis" "[0 0 -1 59.6413] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336681" + "plane" "(-1327 -5490 78) (-1318 -5504 78) (-1318 -5504 80)" + "material" "STONE/COUNTER01" + "uaxis" "[0 1 0 -82] 0.125" + "vaxis" "[0 0 -1 59.6413] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731238" + side + { + "id" "345705" + "plane" "(-1060 -5520 176) (-1060 -5520 40) (-1084 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345704" + "plane" "(-1060 -5504 40) (-1060 -5504 176) (-1084 -5504 176)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-1 0 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345703" + "plane" "(-1060 -5504 176) (-1060 -5504 40) (-1060 -5520 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" "345702" + "plane" "(-1084 -5520 176) (-1084 -5520 40) (-1084 -5504 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" "345701" + "plane" "(-1060 -5504 40) (-1084 -5504 40) (-1084 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345700" + "plane" "(-1060 -5520 176) (-1084 -5520 176) (-1084 -5504 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731236" + side + { + "id" "345693" + "plane" "(-1150 -5520 144) (-1150 -5520 176) (-1084 -5520 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345692" + "plane" "(-1084 -5504 144) (-1084 -5504 176) (-1150 -5504 176)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-1 0 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345691" + "plane" "(-1084 -5504 176) (-1084 -5504 144) (-1084 -5520 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345690" + "plane" "(-1150 -5520 176) (-1150 -5520 144) (-1150 -5504 144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345689" + "plane" "(-1084 -5504 144) (-1150 -5504 144) (-1150 -5520 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" "345688" + "plane" "(-1084 -5520 176) (-1150 -5520 176) (-1150 -5504 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764624" + side + { + "id" "346977" + "plane" "(-1150 -5520 176) (-1150 -5520 40) (-1158 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346976" + "plane" "(-1158 -5504 40) (-1150 -5504 40) (-1150 -5504 176)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-1 0 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346975" + "plane" "(-1150 -5504 176) (-1150 -5504 40) (-1150 -5520 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" "346974" + "plane" "(-1150 -5504 40) (-1158 -5504 40) (-1158 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346973" + "plane" "(-1150 -5520 176) (-1158 -5520 176) (-1158 -5504 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" "346972" + "plane" "(-1158 -5520 176) (-1158 -5520 40) (-1158 -5504 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" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811900" + side + { + "id" "336722" + "plane" "(-1292 -5514 132) (-1292 -5512 132) (-1166 -5512 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336721" + "plane" "(-1292 -5512 80) (-1292 -5514 80) (-1166 -5514 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336720" + "plane" "(-1292 -5514 80) (-1292 -5512 80) (-1292 -5512 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336719" + "plane" "(-1166 -5512 80) (-1166 -5514 80) (-1166 -5514 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336718" + "plane" "(-1292 -5512 80) (-1166 -5512 80) (-1166 -5512 132)" + "material" "METAL/HR_METAL/HR_METAL_SHUTTERS_01" + "uaxis" "[1 0 0 260.063] 0.123047" + "vaxis" "[0 0 -1 551.385] 0.0507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336717" + "plane" "(-1166 -5514 80) (-1292 -5514 80) (-1292 -5514 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811901" + side + { + "id" "336728" + "plane" "(-1452 -5514 132) (-1452 -5512 132) (-1324 -5512 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336727" + "plane" "(-1452 -5512 80) (-1452 -5514 80) (-1324 -5514 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336726" + "plane" "(-1452 -5514 80) (-1452 -5512 80) (-1452 -5512 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336725" + "plane" "(-1324 -5512 80) (-1324 -5514 80) (-1324 -5514 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336724" + "plane" "(-1452 -5512 80) (-1324 -5512 80) (-1324 -5512 132)" + "material" "METAL/HR_METAL/HR_METAL_SHUTTERS_01" + "uaxis" "[1 0 0 352] 0.125" + "vaxis" "[0 0 -1 551.385] 0.0507813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336723" + "plane" "(-1324 -5514 80) (-1452 -5514 80) (-1452 -5514 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811902" + side + { + "id" "336734" + "plane" "(-1324 -5520 132) (-1324 -5504 132) (-1292 -5504 132)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336733" + "plane" "(-1324 -5504 80) (-1324 -5520 80) (-1292 -5520 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" "336732" + "plane" "(-1324 -5520 80) (-1324 -5504 80) (-1324 -5504 132)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 314.993] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336731" + "plane" "(-1292 -5504 80) (-1292 -5520 80) (-1292 -5520 132)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 826.994] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336730" + "plane" "(-1324 -5504 80) (-1292 -5504 80) (-1292 -5504 132)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-1 0 0 843] 0.125" + "vaxis" "[0 0 -1 259] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336729" + "plane" "(-1292 -5520 80) (-1324 -5520 80) (-1324 -5520 132)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811904" + side + { + "id" "336746" + "plane" "(-1166 -5520 80) (-1166 -5520 40) (-1452 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336745" + "plane" "(-1452 -5504 80) (-1452 -5504 40) (-1166 -5504 40)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-1 0 0 843] 0.125" + "vaxis" "[0 0 -1 259] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336744" + "plane" "(-1166 -5504 80) (-1166 -5504 40) (-1166 -5520 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" "336743" + "plane" "(-1452 -5520 80) (-1452 -5520 40) (-1452 -5504 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" "336742" + "plane" "(-1166 -5520 80) (-1452 -5520 80) (-1452 -5504 80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[-1 0 0 -1157] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336741" + "plane" "(-1166 -5504 40) (-1452 -5504 40) (-1452 -5520 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764630" + side + { + "id" "346989" + "plane" "(-1452 -5520 176) (-1452 -5520 40) (-1459 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346988" + "plane" "(-1459 -5504 40) (-1452 -5504 40) (-1452 -5504 176)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-1 0 0 843] 0.125" + "vaxis" "[0 0 -1 259] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346987" + "plane" "(-1452 -5504 176) (-1452 -5504 40) (-1452 -5520 40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 58.9932] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346986" + "plane" "(-1452 -5504 40) (-1459 -5504 40) (-1459 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346985" + "plane" "(-1452 -5520 176) (-1459 -5520 176) (-1459 -5504 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" "346984" + "plane" "(-1459 -5520 176) (-1459 -5520 40) (-1459 -5504 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" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811888" + side + { + "id" "336650" + "plane" "(-948 -5616 32) (-964 -5616 32) (-964 -6128 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336649" + "plane" "(-964 -5616 40) (-964 -5616 32) (-948 -5616 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" "336648" + "plane" "(-964 -6128 40) (-964 -6128 32) (-964 -5616 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336647" + "plane" "(-948 -5616 40) (-948 -5616 32) (-948 -6128 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[0 1 0 -929] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336646" + "plane" "(-948 -6128 40) (-948 -6128 32) (-964 -6128 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" "336645" + "plane" "(-964 -6128 40) (-964 -5616 40) (-948 -5616 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811895" + side + { + "id" "336692" + "plane" "(-1060 -5504 32) (-1084 -5504 32) (-1084 -5520 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00195313] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336691" + "plane" "(-1060 -5520 40) (-1060 -5520 32) (-1084 -5520 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336690" + "plane" "(-1084 -5504 32) (-1060 -5504 32) (-1060 -5504 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-1 0 0 -540.988] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336689" + "plane" "(-1060 -5504 40) (-1060 -5504 32) (-1060 -5520 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" "336688" + "plane" "(-1084 -5520 40) (-1084 -5520 32) (-1084 -5504 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" "336687" + "plane" "(-1060 -5520 40) (-1084 -5520 40) (-1084 -5504 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811898" + side + { + "id" "336710" + "plane" "(-1150 -5504 32) (-1166 -5504 32) (-1166 -5520 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00195313] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336709" + "plane" "(-1150 -5520 32) (-1166 -5520 32) (-1166 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336708" + "plane" "(-1166 -5504 32) (-1150 -5504 32) (-1150 -5504 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-1 0 0 -540.988] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336707" + "plane" "(-1150 -5504 40) (-1150 -5504 32) (-1150 -5520 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" "336706" + "plane" "(-1166 -5520 40) (-1166 -5520 32) (-1166 -5504 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 1098.99] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336705" + "plane" "(-1150 -5520 40) (-1166 -5520 40) (-1166 -5504 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811903" + side + { + "id" "336740" + "plane" "(-1166 -5504 32) (-1452 -5504 32) (-1452 -5520 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32.002] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336739" + "plane" "(-1166 -5520 40) (-1166 -5520 32) (-1452 -5520 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336738" + "plane" "(-1452 -5504 40) (-1452 -5504 32) (-1166 -5504 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-1 0 0 -540.988] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336737" + "plane" "(-1166 -5504 40) (-1166 -5504 32) (-1166 -5520 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" "336736" + "plane" "(-1452 -5520 40) (-1452 -5520 32) (-1452 -5504 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" "336735" + "plane" "(-1166 -5520 40) (-1452 -5520 40) (-1452 -5504 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811905" + side + { + "id" "336752" + "plane" "(-1452 -5504 32) (-1476 -5504 32) (-1476 -5520 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00195313] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336751" + "plane" "(-1452 -5520 32) (-1476 -5520 32) (-1476 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336750" + "plane" "(-1476 -5504 40) (-1476 -5504 32) (-1452 -5504 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-1 0 0 -540.988] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336749" + "plane" "(-1476 -5520 40) (-1476 -5520 32) (-1476 -5504 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" "336748" + "plane" "(-1452 -5504 40) (-1452 -5504 32) (-1452 -5520 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 58.9932] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336747" + "plane" "(-1452 -5520 40) (-1476 -5520 40) (-1476 -5504 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731217" + side + { + "id" "345579" + "plane" "(-964 -5616 256) (-964 -5616 176) (-948 -5616 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" "345578" + "plane" "(-964 -6128 256) (-964 -6128 176) (-964 -5616 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345577" + "plane" "(-948 -5616 256) (-948 -5616 176) (-948 -6128 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[0 1 0 303.992] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345576" + "plane" "(-948 -6128 256) (-948 -6128 176) (-964 -6128 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" "345575" + "plane" "(-964 -6128 256) (-964 -5616 256) (-948 -5616 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345574" + "plane" "(-948 -5616 176) (-964 -5616 176) (-964 -6128 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731235" + side + { + "id" "345687" + "plane" "(-1150 -5520 176) (-1150 -5520 186) (-1084 -5520 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345686" + "plane" "(-1084 -5504 176) (-1084 -5504 186) (-1150 -5504 186)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-1 0 0 400] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345685" + "plane" "(-1084 -5520 186) (-1150 -5520 186) (-1150 -5504 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345684" + "plane" "(-1084 -5504 186) (-1084 -5504 176) (-1084 -5520 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" "345683" + "plane" "(-1150 -5520 186) (-1150 -5520 176) (-1150 -5504 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" "345682" + "plane" "(-1084 -5504 176) (-1150 -5504 176) (-1150 -5520 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731237" + side + { + "id" "345699" + "plane" "(-1060 -5520 186) (-1060 -5520 176) (-1084 -5520 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345698" + "plane" "(-1060 -5504 176) (-1060 -5504 186) (-1084 -5504 186)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-1 0 0 400] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345697" + "plane" "(-1060 -5504 186) (-1060 -5504 176) (-1060 -5520 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" "345696" + "plane" "(-1060 -5520 186) (-1084 -5520 186) (-1084 -5504 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345695" + "plane" "(-1084 -5520 186) (-1084 -5520 176) (-1084 -5504 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" "345694" + "plane" "(-1060 -5504 176) (-1084 -5504 176) (-1084 -5520 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731239" + side + { + "id" "345711" + "plane" "(-1452 -5520 176) (-1452 -5520 186) (-1166 -5520 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345710" + "plane" "(-1166 -5504 176) (-1166 -5504 186) (-1452 -5504 186)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-1 0 0 400] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345709" + "plane" "(-1166 -5520 186) (-1452 -5520 186) (-1452 -5504 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345708" + "plane" "(-1166 -5504 186) (-1166 -5504 176) (-1166 -5520 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" "345707" + "plane" "(-1452 -5520 186) (-1452 -5520 176) (-1452 -5504 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" "345706" + "plane" "(-1166 -5504 176) (-1452 -5504 176) (-1452 -5520 176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731241" + side + { + "id" "345723" + "plane" "(-1166 -5520 176) (-1166 -5520 186) (-1150 -5520 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345722" + "plane" "(-1150 -5504 176) (-1150 -5504 186) (-1166 -5504 186)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-1 0 0 400] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345721" + "plane" "(-1150 -5520 186) (-1166 -5520 186) (-1166 -5504 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345720" + "plane" "(-1150 -5504 186) (-1150 -5504 176) (-1150 -5520 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" "345719" + "plane" "(-1166 -5520 186) (-1166 -5520 176) (-1166 -5504 176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 1098.99] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345718" + "plane" "(-1150 -5504 176) (-1166 -5504 176) (-1166 -5520 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731243" + side + { + "id" "345735" + "plane" "(-1476 -5520 176) (-1476 -5520 186) (-1452 -5520 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345734" + "plane" "(-1476 -5504 186) (-1476 -5504 176) (-1452 -5504 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-1 0 0 400] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345733" + "plane" "(-1476 -5520 186) (-1476 -5520 176) (-1476 -5504 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" "345732" + "plane" "(-1452 -5520 186) (-1476 -5520 186) (-1476 -5504 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345731" + "plane" "(-1452 -5504 186) (-1452 -5504 176) (-1452 -5520 176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 58.9932] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345730" + "plane" "(-1452 -5504 176) (-1476 -5504 176) (-1476 -5520 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747534" + side + { + "id" "346314" + "plane" "(-964 -5504 328) (-964 -5504 323) (-948 -5504 323)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 395] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346313" + "plane" "(-964 -6128 328) (-964 -6128 323) (-964 -5504 323)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346312" + "plane" "(-948 -5504 328) (-948 -5504 323) (-948 -6128 323)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -277.004] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346311" + "plane" "(-948 -6128 328) (-948 -6128 323) (-964 -6128 323)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346310" + "plane" "(-964 -6128 328) (-964 -5504 328) (-948 -5504 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346309" + "plane" "(-948 -5504 323) (-964 -5504 323) (-964 -6128 323)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747536" + side + { + "id" "346326" + "plane" "(-964 -5520 328) (-1550 -5520 328) (-1550 -5504 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346325" + "plane" "(-1550 -5520 323) (-1550 -5520 328) (-964 -5520 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346324" + "plane" "(-964 -5504 323) (-964 -5504 328) (-1550 -5504 328)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 395] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346323" + "plane" "(-964 -5520 323) (-964 -5520 328) (-964 -5504 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346322" + "plane" "(-1550 -5504 323) (-1550 -5504 328) (-1550 -5520 328)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346321" + "plane" "(-964 -5504 323) (-1550 -5504 323) (-1550 -5520 323)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764623" + side + { + "id" "346971" + "plane" "(-1158 -5520 40) (-1166 -5520 40) (-1166 -5520 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346970" + "plane" "(-1166 -5504 176) (-1166 -5504 40) (-1158 -5504 40)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-1 0 0 843] 0.125" + "vaxis" "[0 0 -1 259] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346969" + "plane" "(-1166 -5520 176) (-1166 -5520 40) (-1166 -5504 40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 -1 1098.99] 0.125" + "vaxis" "[0 1 0 251] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346968" + "plane" "(-1158 -5504 40) (-1166 -5504 40) (-1166 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346967" + "plane" "(-1158 -5520 176) (-1166 -5520 176) (-1166 -5504 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" "346966" + "plane" "(-1158 -5504 176) (-1158 -5504 40) (-1158 -5520 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" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4764629" + side + { + "id" "346983" + "plane" "(-1459 -5520 40) (-1476 -5520 40) (-1476 -5520 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 33] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346982" + "plane" "(-1476 -5504 176) (-1476 -5504 40) (-1459 -5504 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-1 0 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346981" + "plane" "(-1476 -5520 176) (-1476 -5520 40) (-1476 -5504 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" "346980" + "plane" "(-1459 -5504 40) (-1476 -5504 40) (-1476 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346979" + "plane" "(-1459 -5520 176) (-1476 -5520 176) (-1476 -5504 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" "346978" + "plane" "(-1459 -5504 176) (-1459 -5504 40) (-1459 -5520 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" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "150 143 0" + "groupid" "2778641" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 9500]" + } +} +entity +{ + "id" "1380365" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "1932 -3424 282.262" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "257496" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "1932 -3424 282.262" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 11000]" + } +} +hidden +{ + entity + { + "id" "1367616" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/metal_detector001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "793 -5714 8" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1361246" + "classname" "func_detail" + solid + { + "id" "1361234" + side + { + "id" "256241" + "plane" "(-808 -3784 -82) (-816 -3784 -74) (-816 -3744 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256240" + "plane" "(-816 -3784 -224) (-808 -3784 -224) (-808 -3744 -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" "256239" + "plane" "(-816 -3744 -224) (-816 -3744 -74) (-816 -3784 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256238" + "plane" "(-808 -3784 -224) (-808 -3784 -82) (-808 -3744 -82)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 98.0313] 0.063" + "vaxis" "[0 0 -1 -32.6274] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256237" + "plane" "(-808 -3744 -224) (-808 -3744 -82) (-816 -3744 -74)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256236" + "plane" "(-808 -3784 -82) (-808 -3784 -224) (-816 -3784 -224)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 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" "1361236" + side + { + "id" "256247" + "plane" "(-584 -3744 -82) (-576 -3744 -74) (-576 -3784 -74)" + "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" "256246" + "plane" "(-584 -3784 -224) (-576 -3784 -224) (-576 -3744 -224)" + "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" "256245" + "plane" "(-584 -3744 -224) (-584 -3744 -82) (-584 -3784 -82)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 98.0313] 0.063" + "vaxis" "[0 0 -1 -32.6274] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256244" + "plane" "(-576 -3784 -224) (-576 -3784 -74) (-576 -3744 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256243" + "plane" "(-584 -3744 -82) (-584 -3744 -224) (-576 -3744 -224)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256242" + "plane" "(-584 -3784 -224) (-584 -3784 -82) (-576 -3784 -74)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "1361279" + "classname" "func_detail" + solid + { + "id" "1361266" + side + { + "id" "256283" + "plane" "(-808 -3744 -82) (-808 -3784 -82) (-584 -3784 -82)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 98.0312] 0.063" + "vaxis" "[-1 0 0 -869.019] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256282" + "plane" "(-816 -3784 -74) (-808 -3784 -82) (-808 -3744 -82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256281" + "plane" "(-576 -3744 -74) (-584 -3744 -82) (-584 -3784 -82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256280" + "plane" "(-816 -3744 -74) (-808 -3744 -82) (-584 -3744 -82)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256279" + "plane" "(-576 -3784 -74) (-584 -3784 -82) (-808 -3784 -82)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[1 0 0 64] 0.25" + "vaxis" "[0 0 -1 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "256278" + "plane" "(-816 -3784 -74) (-816 -3744 -74) (-576 -3744 -74)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "1361304" + "classname" "func_detail" + solid + { + "id" "4908808" + side + { + "id" "349640" + "plane" "(-816 -3744 -74) (-816 -3744 -56) (-816 -3784 -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" "349639" + "plane" "(-576 -3784 -74) (-576 -3784 -56) (-576 -3744 -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" "349638" + "plane" "(-576 -3744 -74) (-576 -3744 -56) (-816 -3744 -56)" + "material" "CS_APOLLO/WALLS/BLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 10] 0.125" + "vaxis" "[0 0 -1 42] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349637" + "plane" "(-816 -3784 -74) (-816 -3784 -56) (-576 -3784 -56)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 46] 0.125" + "vaxis" "[0 0 -1 14] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349636" + "plane" "(-816 -3744 -74) (-816 -3784 -74) (-576 -3784 -74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349635" + "plane" "(-816 -3784 -56) (-816 -3744 -56) (-576 -3744 -56)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4908807" + side + { + "id" "349634" + "plane" "(-816 -3784 -48) (-816 -3744 -48) (-576 -3744 -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" "349633" + "plane" "(-816 -3744 -56) (-816 -3744 -48) (-816 -3784 -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" "349632" + "plane" "(-576 -3784 -56) (-576 -3784 -48) (-576 -3744 -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" "349631" + "plane" "(-576 -3744 -56) (-576 -3744 -48) (-816 -3744 -48)" + "material" "CS_APOLLO/WALLS/BLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 10] 0.125" + "vaxis" "[0 0 -1 42] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349630" + "plane" "(-816 -3784 -56) (-816 -3784 -48) (-576 -3784 -48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[1 0 0 59.9922] 0.125" + "vaxis" "[0 0 -1 2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349629" + "plane" "(-816 -3744 -56) (-816 -3784 -56) (-576 -3784 -56)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4500]" + } +} +hidden +{ + entity + { + "id" "1349619" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_36.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-55 -4121 -128" + editor + { + "color" "139 192 0" + "groupid" "1349618" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "1349623" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-5 -4121 -96" + editor + { + "color" "139 192 0" + "groupid" "1349618" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "1349627" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_12.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-19 -4121 -104" + editor + { + "color" "139 192 0" + "groupid" "1349618" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "1349631" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_144.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-199 -4121 -224" + editor + { + "color" "139 192 0" + "groupid" "1349618" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "1349856" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_36.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-55 -4375 -128" + editor + { + "color" "139 192 0" + "groupid" "1349855" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "1349860" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-5 -4375 -96" + editor + { + "color" "139 192 0" + "groupid" "1349855" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "1349864" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_12.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-19 -4375 -104" + editor + { + "color" "139 192 0" + "groupid" "1349855" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "1349868" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_144.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-199 -4375 -224" + editor + { + "color" "139 192 0" + "groupid" "1349855" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +entity +{ + "id" "1343899" + "classname" "func_detail" + solid + { + "id" "1343900" + side + { + "id" "255941" + "plane" "(-712 -2923 0) (-864 -2923 0) (-864 -2975 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0127] 0.25" + "vaxis" "[1 0 0 -63.963] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255940" + "plane" "(-712 -2975 8) (-712 -2975 0) (-864 -2975 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -239.106] 0.09" + "vaxis" "[0 0 -1 -266] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255939" + "plane" "(-864 -2923 8) (-864 -2923 0) (-712 -2923 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.0370026] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255938" + "plane" "(-864 -2975 8) (-864 -2975 0) (-864 -2923 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 155] 0.09" + "vaxis" "[0 0 -1 -897] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255937" + "plane" "(-712 -2923 8) (-712 -2923 0) (-712 -2975 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 478.222] 0.09" + "vaxis" "[0 0 -1 -266] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255936" + "plane" "(-712 -2975 8) (-864 -2975 8) (-864 -2923 8)" + "material" "METAL/HR_METAL/HR_METAL_FLOOR_001_GREY" + "uaxis" "[0 1 0 -104.013] 0.25" + "vaxis" "[1 0 0 -95.963] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3190433" + side + { + "id" "327931" + "plane" "(-720 -2973 96) (-863 -2973 96) (-863 -2924 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 154.667] 0.09" + "vaxis" "[1 0 0 -702.694] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327930" + "plane" "(-863 -2973 92) (-720 -2973 92) (-720 -2924 92)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_004" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 -1 0 -480] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327929" + "plane" "(-720 -2973 92) (-863 -2973 92) (-863 -2973 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 -28.4385] 0.09" + "vaxis" "[0 0 -1 -131.426] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327928" + "plane" "(-720 -2924 92) (-720 -2973 92) (-720 -2973 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 154.667] 0.09" + "vaxis" "[0 0 -1 -131.426] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327927" + "plane" "(-863 -2924 92) (-720 -2924 92) (-720 -2924 96)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327926" + "plane" "(-863 -2973 92) (-863 -2924 92) (-863 -2924 96)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3190420" + side + { + "id" "327889" + "plane" "(-712 -2975 96) (-864 -2975 96) (-864 -2974 96)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -28.0127] 0.25" + "vaxis" "[1 0 0 -63.963] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327888" + "plane" "(-864 -2975 8) (-864 -2975 96) (-712 -2975 96)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[1 0 0 -4.037] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327887" + "plane" "(-864 -2974 96) (-864 -2975 96) (-864 -2975 8)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 155] 0.09" + "vaxis" "[0 0 -1 -897] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327886" + "plane" "(-712 -2974 8) (-712 -2975 8) (-712 -2975 96)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -28.0127] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327885" + "plane" "(-864 -2974 8) (-864 -2975 8) (-712 -2975 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0127] 0.25" + "vaxis" "[1 0 0 -63.963] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327884" + "plane" "(-712 -2974 8) (-712 -2974 96) (-864 -2974 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" + } + editor + { + "color" "135 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3190432" + side + { + "id" "327925" + "plane" "(-863 -2974 96) (-864 -2974 96) (-864 -2924 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 154.667] 0.09" + "vaxis" "[1 0 0 -702.694] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327924" + "plane" "(-864 -2974 8) (-864 -2924 8) (-864 -2924 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 155] 0.09" + "vaxis" "[0 0 -1 -897] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327923" + "plane" "(-863 -2924 8) (-864 -2924 8) (-864 -2974 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0127] 0.25" + "vaxis" "[1 0 0 -63.963] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327922" + "plane" "(-863 -2974 8) (-864 -2974 8) (-864 -2974 96)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 180] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327921" + "plane" "(-863 -2924 96) (-864 -2924 96) (-864 -2924 8)" + "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" "327920" + "plane" "(-863 -2924 8) (-863 -2974 8) (-863 -2974 96)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 516.002] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3190428" + side + { + "id" "327913" + "plane" "(-864 -2924 96) (-864 -2923 96) (-712 -2923 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 154.667] 0.09" + "vaxis" "[1 0 0 -702.694] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327912" + "plane" "(-712 -2923 96) (-864 -2923 96) (-864 -2923 8)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 155] 0.09" + "vaxis" "[0 0 -1 -897] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327911" + "plane" "(-864 -2924 8) (-864 -2923 8) (-864 -2923 96)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 155] 0.09" + "vaxis" "[0 0 -1 -897] 0.049" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327910" + "plane" "(-712 -2923 8) (-864 -2923 8) (-864 -2924 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0127] 0.25" + "vaxis" "[1 0 0 -63.963] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327909" + "plane" "(-712 -2924 96) (-712 -2923 96) (-712 -2923 8)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[0 1 0 -396] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327908" + "plane" "(-712 -2924 8) (-864 -2924 8) (-864 -2924 96)" + "material" "CS_APOLLO/EXHIBITS/SPACE1" + "uaxis" "[1 0 0 -731.997] 0.125" + "vaxis" "[0 0 -1 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "135 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "135 180 0" + "groupid" "3190617" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "1338272" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/metal_detector001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "633 -5714 8" + editor + { + "color" "115 240 0" + "groupid" "1425646" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1332256" + "classname" "func_detail" + solid + { + "id" "1332249" + side + { + "id" "255639" + "plane" "(-12 -4376 -96) (0 -4376 -96) (0 -4384 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255638" + "plane" "(-192 -4376 -224) (-192 -4384 -224) (0 -4384 -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" "255637" + "plane" "(-192 -4384 -224) (-192 -4376 -224) (-192 -4376 -216)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 192] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255636" + "plane" "(0 -4376 -224) (0 -4384 -224) (0 -4384 -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" "255635" + "plane" "(-192 -4376 -224) (0 -4376 -224) (0 -4376 -96)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 57] 0.125" + "vaxis" "[0 0 -1 25] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255634" + "plane" "(0 -4384 -224) (-192 -4384 -224) (-192 -4384 -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" "255633" + "plane" "(-192 -4384 -216) (-192 -4376 -216) (-12 -4376 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +entity +{ + "id" "1332263" + "classname" "func_detail" + solid + { + "id" "1332264" + side + { + "id" "255653" + "plane" "(-12 -4112 -96) (0 -4112 -96) (0 -4120 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255652" + "plane" "(-192 -4112 -224) (-192 -4120 -224) (0 -4120 -224)" + "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" "255651" + "plane" "(-192 -4120 -224) (-192 -4112 -224) (-192 -4112 -216)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 192] 0.125" + "vaxis" "[0 -1 0 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255650" + "plane" "(0 -4112 -224) (0 -4120 -224) (0 -4120 -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" "255649" + "plane" "(-192 -4112 -224) (0 -4112 -224) (0 -4112 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.9286] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255648" + "plane" "(0 -4120 -224) (-192 -4120 -224) (-192 -4120 -216)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[1 0 0 57] 0.125" + "vaxis" "[0 0 -1 25] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255647" + "plane" "(-192 -4120 -216) (-192 -4112 -216) (-12 -4112 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 31] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +entity +{ + "id" "1332471" + "classname" "func_detail" + solid + { + "id" "1332377" + side + { + "id" "255692" + "plane" "(0 -4608 0) (0 -4592 0) (8 -4592 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255691" + "plane" "(0 -4416 -96) (0 -4608 -96) (8 -4608 -96)" + "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" "255690" + "plane" "(0 -4608 -96) (0 -4416 -96) (0 -4416 -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" "255689" + "plane" "(8 -4416 -96) (8 -4608 -96) (8 -4608 0)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 57] 0.125" + "vaxis" "[0 0 -1 25] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255688" + "plane" "(0 -4416 -96) (8 -4416 -96) (8 -4416 -88)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255687" + "plane" "(8 -4608 -96) (0 -4608 -96) (0 -4608 0)" + "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" "255686" + "plane" "(8 -4592 0) (0 -4592 0) (0 -4416 -88)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332428" + side + { + "id" "255699" + "plane" "(240 -4608 0) (240 -4592 0) (248 -4592 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255698" + "plane" "(240 -4416 -96) (240 -4608 -96) (248 -4608 -96)" + "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" "255697" + "plane" "(240 -4608 -96) (240 -4416 -96) (240 -4416 -88)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 57] 0.125" + "vaxis" "[0 0 -1 25] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255696" + "plane" "(248 -4416 -96) (248 -4608 -96) (248 -4608 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" "255695" + "plane" "(240 -4416 -96) (248 -4416 -96) (248 -4416 -88)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255694" + "plane" "(248 -4608 -96) (240 -4608 -96) (240 -4608 0)" + "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" "255693" + "plane" "(248 -4592 0) (240 -4592 0) (240 -4416 -88)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 2500]" + } +} +entity +{ + "id" "1326305" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "-891 -1998 65" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "369977" + "StartU" "0" + "StartV" "1" + "uv0" "-38 -38 0" + "uv1" "-38 38 0" + "uv2" "38 38 0" + "uv3" "38 -38 0" + "origin" "-891 -1998 65" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "1301933" + "classname" "prop_physics_multiplayer" + "angles" "0 90.5 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "4373" + "origin" "-873 -2265 30" + editor + { + "color" "217 214 0" + "groupid" "1302081" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1301937" + "classname" "prop_static" + "angles" "0 90.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-873.38 -2268.01 30" + editor + { + "color" "217 214 0" + "groupid" "1302081" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1301941" + "classname" "prop_physics_multiplayer" + "angles" "0 89.5 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "4373" + "origin" "-973.38 -2265.01 30" + editor + { + "color" "217 214 0" + "groupid" "1302081" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1301945" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-973.82 -2268.01 30" + editor + { + "color" "217 214 0" + "groupid" "1302081" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1296169" + "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/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "216 33 65" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "476 -2064 15.4717" + editor + { + "color" "108 197 0" + "groupid" "1296168" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "1296173" + "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/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "480 -2064 42.6114" + editor + { + "color" "108 197 0" + "groupid" "1296168" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "1289197" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".3" + "spawnflags" "1" + "origin" "1854.91 -4220 136" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +hidden +{ + entity + { + "id" "1283421" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2206 -2884 466.755" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1283425" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_converter.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2206 -2889.99 434.755" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1283663" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2205 -2893 134.809" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +entity +{ + "id" "1283667" + "classname" "light" + "_light" "125 255 125 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "-2205.09 -2881 135.179" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "1283672" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".5" + "spawnflags" "1" + "origin" "-2205 -2890 135.179" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +hidden +{ + entity + { + "id" "1265477" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-478 -1934 208.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "1265505" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-222 -1934 208.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "1265521" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "34 -1934 208.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "1265537" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_256.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "290 -1934 208.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 12000]" + } + } +} +hidden +{ + entity + { + "id" "1265553" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "548 -1934 208.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +entity +{ + "id" "1259541" + "classname" "func_instance" + "angles" "-0 40 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-313 -4204 161" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "1251669" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_converter.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245.202 -2006 460" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1251729" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_converter.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "35 -2006 460" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1251777" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_converter.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "311 -2006 460" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1251834" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "35 -1872 476" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1251881" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -1872 476" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1251901" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "311 -1872 476" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1252085" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-526 -2893 152" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +hidden +{ + entity + { + "id" "1252105" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1077.09 -2000 116" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +entity +{ + "id" "1252126" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".5" + "spawnflags" "1" + "origin" "-1076.09 -2003 114.717" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +entity +{ + "id" "1252129" + "classname" "light" + "_light" "125 255 125 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "-1076 -2012 114.717" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "1252150" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".5" + "spawnflags" "1" + "origin" "-527 -2889 152.804" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +entity +{ + "id" "1252153" + "classname" "light" + "_light" "125 255 125 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "-527.09 -2880 152.804" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "1252182" + "classname" "light" + "_light" "125 255 125 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "-780.09 -3154 142.37" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "1252187" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".5" + "spawnflags" "1" + "origin" "-780 -3163 142.37" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +hidden +{ + entity + { + "id" "1252482" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_urban/garbage_can002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2089 -2532 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "1252486" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_locker_bench/nuke_locker_bench.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2017 -2533 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +hidden +{ + entity + { + "id" "1252490" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props_urban/garbage_can002.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1945 -2532 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[10000 -9768]" + } + } +} +entity +{ + "id" "1252983" + "classname" "func_detail" + solid + { + "id" "1252977" + side + { + "id" "252539" + "plane" "(-3368 -2392 -16) (-3368 -2488 -16) (-3368 -2488 104)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252538" + "plane" "(-3384 -2392 -16) (-3384 -2488 -16) (-3368 -2488 -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" "252537" + "plane" "(-3384 -2488 104) (-3384 -2488 -16) (-3384 -2392 -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" "252536" + "plane" "(-3368 -2488 104) (-3368 -2488 -16) (-3384 -2488 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252535" + "plane" "(-3384 -2488 104) (-3384 -2392 104) (-3368 -2392 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" + } + side + { + "id" "252534" + "plane" "(-3384 -2392 104) (-3384 -2392 -16) (-3368 -2392 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1252963" + side + { + "id" "252545" + "plane" "(-3384 -2392 -24) (-3384 -2488 -24) (-3368 -2488 -24)" + "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" "252544" + "plane" "(-3384 -2488 -24) (-3384 -2392 -24) (-3384 -2392 -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" "252543" + "plane" "(-3368 -2392 -24) (-3368 -2488 -24) (-3368 -2488 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 1 0 -179] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252542" + "plane" "(-3384 -2488 -16) (-3384 -2392 -16) (-3368 -2392 -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" "252541" + "plane" "(-3368 -2488 -16) (-3368 -2488 -24) (-3384 -2488 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "252540" + "plane" "(-3384 -2392 -16) (-3384 -2392 -24) (-3368 -2392 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 1 832] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10000]" + } +} +hidden +{ + entity + { + "id" "1253003" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3369 -2269.09 116" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +entity +{ + "id" "1253007" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".5" + "spawnflags" "1" + "origin" "-3366 -2268.09 114.717" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +entity +{ + "id" "1253010" + "classname" "light" + "_light" "125 255 125 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "-3357 -2268 114.717" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +hidden +{ + entity + { + "id" "1253063" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-3369 -2611.87 116" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +entity +{ + "id" "1253067" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "1" + "HDRColorScale" "1.0" + "model" "materials/sprites/glow.vmt" + "renderamt" "150" + "rendercolor" "69 255 43" + "renderfx" "14" + "rendermode" "3" + "scale" ".5" + "spawnflags" "1" + "origin" "-3366 -2610.87 114.717" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 0]" + } +} +entity +{ + "id" "1253070" + "classname" "light" + "_light" "125 255 125 3" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "origin" "-3357 -2610.78 114.717" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +entity +{ + "id" "1253111" + "classname" "func_detail" + solid + { + "id" "1301784" + side + { + "id" "254086" + "plane" "(-24 -2327 76) (-20 -2327 80) (-20 -2359 80)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -5] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254085" + "plane" "(-20 -2359 -24) (-20 -2327 -24) (-24 -2327 -20)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254084" + "plane" "(-20 -2327 -24) (-20 -2359 -24) (-20 -2359 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254083" + "plane" "(-20 -2327 80) (-24 -2327 76) (-24 -2327 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254082" + "plane" "(-20 -2359 -24) (-24 -2359 -20) (-24 -2359 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254081" + "plane" "(-24 -2359 -20) (-24 -2327 -20) (-24 -2327 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 191.998] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "194 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1301812" + side + { + "id" "254122" + "plane" "(-224 -2329 76) (-224 -2329 -20) (-24 -2329 -20)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[1 0 0 122.88] 0.195313" + "vaxis" "[0 0 -1 405.333] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254121" + "plane" "(-24 -2357 76) (-24 -2357 -20) (-224 -2357 -20)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[1 0 0 123] 0.195" + "vaxis" "[0 0 -1 405] 0.188" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254120" + "plane" "(-24 -2329 76) (-24 -2329 -20) (-24 -2357 -20)" + "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" "254119" + "plane" "(-224 -2357 76) (-224 -2357 -20) (-224 -2329 -20)" + "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" "254118" + "plane" "(-24 -2357 76) (-224 -2357 76) (-224 -2329 76)" + "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" "254117" + "plane" "(-24 -2329 -20) (-224 -2329 -20) (-224 -2357 -20)" + "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" "194 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1301787" + side + { + "id" "254104" + "plane" "(-224 -2359 76) (-228 -2359 80) (-228 -2327 80)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -5] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254103" + "plane" "(-228 -2327 -24) (-228 -2359 -24) (-224 -2359 -20)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254102" + "plane" "(-228 -2359 -24) (-228 -2327 -24) (-228 -2327 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254101" + "plane" "(-228 -2327 -24) (-224 -2327 -20) (-224 -2327 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254100" + "plane" "(-228 -2359 80) (-224 -2359 76) (-224 -2359 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254099" + "plane" "(-224 -2327 -20) (-224 -2359 -20) (-224 -2359 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 383.998] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "194 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1301813" + side + { + "id" "254128" + "plane" "(-20 -2327 -24) (-228 -2327 -24) (-228 -2359 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254127" + "plane" "(-228 -2327 -24) (-20 -2327 -24) (-24 -2327 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254126" + "plane" "(-20 -2359 -24) (-228 -2359 -24) (-224 -2359 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254125" + "plane" "(-24 -2327 -20) (-20 -2327 -24) (-20 -2359 -24)" + "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" "254124" + "plane" "(-224 -2359 -20) (-228 -2359 -24) (-228 -2327 -24)" + "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" "254123" + "plane" "(-24 -2359 -20) (-224 -2359 -20) (-224 -2327 -20)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 149.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "194 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1301790" + side + { + "id" "254110" + "plane" "(-20 -2359 80) (-228 -2359 80) (-228 -2327 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254109" + "plane" "(-24 -2327 76) (-20 -2327 80) (-228 -2327 80)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254108" + "plane" "(-228 -2359 80) (-20 -2359 80) (-24 -2359 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "254107" + "plane" "(-24 -2359 76) (-20 -2359 80) (-20 -2327 80)" + "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" "254106" + "plane" "(-224 -2327 76) (-228 -2327 80) (-228 -2359 80)" + "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" "254105" + "plane" "(-24 -2327 76) (-224 -2327 76) (-224 -2359 76)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 1 0 661.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "194 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +hidden +{ + entity + { + "id" "1253398" + "classname" "prop_physics_multiplayer" + "angles" "0 270.5 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "277" + "origin" "-169 -2360.02 30" + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1253402" + "classname" "prop_physics_multiplayer" + "angles" "0 269.5 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "277" + "origin" "-68.616 -2360.01 30" + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1253406" + "classname" "prop_static" + "angles" "0 270.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-168.616 -2357.01 30" + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1253410" + "classname" "prop_static" + "angles" "0 269.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-68.179 -2357.01 30" + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1253414" + "classname" "prop_physics_multiplayer" + "angles" "0 89.5 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "277" + "origin" "-170.563 -2326 30" + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1253418" + "classname" "prop_physics_multiplayer" + "angles" "0 90.5 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "277" + "origin" "-70.179 -2325.99 30" + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1253422" + "classname" "prop_static" + "angles" "0 90.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-70.563 -2329 30" + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "1253426" + "classname" "prop_static" + "angles" "0 89.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-171 -2329 30" + editor + { + "color" "194 255 0" + "groupid" "1302123" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +entity +{ + "id" "1253817" + "classname" "func_detail" + solid + { + "id" "2084537" + side + { + "id" "298281" + "plane" "(-1456 -3641 80) (-1456 -2912 80) (-1440 -2912 80)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298280" + "plane" "(-1456 -2912 72) (-1456 -2912 80) (-1456 -3641 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" "298279" + "plane" "(-1440 -3641 72) (-1440 -3641 80) (-1440 -2912 80)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -642] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298278" + "plane" "(-1440 -2912 72) (-1440 -2912 80) (-1456 -2912 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" "298277" + "plane" "(-1456 -3641 72) (-1456 -3641 80) (-1440 -3641 80)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 0 -1 421.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298276" + "plane" "(-1456 -2912 72) (-1456 -3641 72) (-1440 -3641 72)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2084536" + side + { + "id" "298275" + "plane" "(-1456 -2912 32) (-1456 -3639 32) (-1442 -3639 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" "298274" + "plane" "(-1456 -3639 72) (-1456 -3639 32) (-1456 -2912 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" "298273" + "plane" "(-1442 -2912 72) (-1442 -2912 32) (-1442 -3639 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298272" + "plane" "(-1456 -2912 72) (-1456 -2912 32) (-1442 -2912 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" "298271" + "plane" "(-1442 -3639 72) (-1442 -3639 32) (-1456 -3639 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "298270" + "plane" "(-1456 -3639 72) (-1456 -2912 72) (-1442 -2912 72)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -11268]" + } +} +hidden +{ + entity + { + "id" "1253831" + "classname" "prop_static" + "angles" "0 288 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/palmetto_03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1399 -3047 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "1253839" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/palmetto_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1404.21 -3542.7 32.25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "1254023" + "classname" "prop_static" + "angles" "0 26.5 0" + "disableselfshadowing" "1" + "disableshadows" "1" + "fademaxdist" "2700" + "fademindist" "2600" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props/de_nuke/hr_nuke/foliage/bushes_barberry_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1892 -3419 7.98291" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1500]" + } + } +} +entity +{ + "id" "1242111" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-695 -3481.43 -223" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "1242120" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-944 -3065.99 -200" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "1242186" + "classname" "func_detail" + solid + { + "id" "1242184" + side + { + "id" "250950" + "plane" "(-1064 -2872 -176) (-1064 -2860 -176) (-1056 -2860 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250949" + "plane" "(-1064 -2860 -200) (-1064 -2896 -200) (-1056 -2896 -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" "250948" + "plane" "(-1064 -2896 -200) (-1064 -2860 -200) (-1064 -2860 -176)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250947" + "plane" "(-1056 -2860 -200) (-1056 -2896 -200) (-1056 -2896 -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" "250946" + "plane" "(-1064 -2860 -200) (-1056 -2860 -200) (-1056 -2860 -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" "250945" + "plane" "(-1056 -2896 -200) (-1064 -2896 -200) (-1064 -2896 -192)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 -63.998] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250944" + "plane" "(-1064 -2896 -192) (-1064 -2872 -176) (-1056 -2872 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0.83205 0.5547 -971.663] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "1242199" + "classname" "func_detail" + solid + { + "id" "1242200" + side + { + "id" "250964" + "plane" "(-1280 -2872 -176) (-1280 -2860 -176) (-1272 -2860 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250963" + "plane" "(-1280 -2860 -200) (-1280 -2896 -200) (-1272 -2896 -200)" + "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" "250962" + "plane" "(-1280 -2896 -200) (-1280 -2860 -200) (-1280 -2860 -176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.378906] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250961" + "plane" "(-1272 -2860 -200) (-1272 -2896 -200) (-1272 -2896 -192)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250960" + "plane" "(-1280 -2860 -200) (-1272 -2860 -200) (-1272 -2860 -176)" + "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" "250959" + "plane" "(-1272 -2896 -200) (-1280 -2896 -200) (-1280 -2896 -192)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 -63.998] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250958" + "plane" "(-1280 -2896 -192) (-1280 -2872 -176) (-1272 -2872 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0.83205 0.5547 -971.663] 0.125" + "vaxis" "[1 0 0 -93] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "1242295" + "classname" "func_detail" + solid + { + "id" "1242313" + side + { + "id" "251024" + "plane" "(-624 -3228 -200) (-624 -3216 -200) (-616 -3216 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -160] 0.125" + "vaxis" "[1 0 0 35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251023" + "plane" "(-624 -3216 -224) (-624 -3228 -224) (-616 -3228 -224)" + "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" "251022" + "plane" "(-624 -3228 -224) (-624 -3216 -224) (-624 -3216 -200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 432] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251021" + "plane" "(-616 -3216 -224) (-616 -3228 -224) (-616 -3228 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251020" + "plane" "(-624 -3216 -224) (-616 -3216 -224) (-616 -3216 -200)" + "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" "251019" + "plane" "(-616 -3228 -224) (-624 -3228 -224) (-624 -3228 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 160] 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" "1242312" + side + { + "id" "251018" + "plane" "(-624 -3228 -224) (-624 -3252 -224) (-616 -3252 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251017" + "plane" "(-624 -3252 -216) (-624 -3252 -224) (-624 -3228 -224)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 400] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251016" + "plane" "(-616 -3228 -224) (-616 -3252 -224) (-616 -3252 -216)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 -353.873] 0.063" + "vaxis" "[0 0 -1 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251015" + "plane" "(-616 -3252 -216) (-616 -3252 -224) (-624 -3252 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 128.002] 0.125" + "vaxis" "[1 0 0 35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251014" + "plane" "(-624 -3252 -216) (-624 -3228 -200) (-616 -3228 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0.83205 0.5547 480.518] 0.125" + "vaxis" "[1 0 0 35] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251013" + "plane" "(-624 -3228 -200) (-624 -3228 -224) (-616 -3228 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 160] 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" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "1242414" + "classname" "func_detail" + solid + { + "id" "1242318" + side + { + "id" "251054" + "plane" "(-776 -3228 -200) (-776 -3216 -200) (-768 -3216 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 -160] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251053" + "plane" "(-776 -3216 -224) (-776 -3228 -224) (-768 -3228 -224)" + "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" "251052" + "plane" "(-776 -3228 -224) (-776 -3216 -224) (-776 -3216 -200)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 -338] 0.063" + "vaxis" "[0 0 -1 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251051" + "plane" "(-768 -3216 -224) (-768 -3228 -224) (-768 -3228 -200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 159.3] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251050" + "plane" "(-776 -3216 -224) (-768 -3216 -224) (-768 -3216 -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" "251049" + "plane" "(-768 -3228 -224) (-776 -3228 -224) (-776 -3228 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 768] 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" "1242317" + side + { + "id" "251060" + "plane" "(-776 -3228 -224) (-776 -3252 -224) (-768 -3252 -224)" + "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" "251059" + "plane" "(-776 -3252 -216) (-776 -3252 -224) (-776 -3228 -224)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 -338] 0.063" + "vaxis" "[0 0 -1 -33] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251058" + "plane" "(-768 -3228 -224) (-768 -3252 -224) (-768 -3252 -216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 127.3] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251057" + "plane" "(-768 -3252 -216) (-768 -3252 -224) (-776 -3252 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0 1 128.002] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251056" + "plane" "(-776 -3252 -216) (-776 -3228 -200) (-768 -3228 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 0.83205 0.5547 480.518] 0.125" + "vaxis" "[1 0 0 -29] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251055" + "plane" "(-776 -3228 -200) (-776 -3228 -224) (-768 -3228 -224)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 768] 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" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +entity +{ + "id" "1242446" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-721.025 -3056 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1242452" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-1344 -3136 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1242458" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-976.159 -3056 -32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1242473" + "classname" "func_instance" + "angles" "-0 -148 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-661 -3059 -31" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "1242485" + "classname" "func_instance" + "angles" "-0 -180 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-879 -3042 -30" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "1242823" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_converter.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2889.99 316" + editor + { + "color" "163 224 0" + "groupid" "1243052" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1242827" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2884 348" + editor + { + "color" "163 224 0" + "groupid" "1243052" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1242878" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_vertical_16.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2883.75 476" + editor + { + "color" "163 224 0" + "groupid" "1243052" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1242913" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2890 60" + editor + { + "color" "163 224 0" + "groupid" "1243052" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1242949" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2890 -4" + editor + { + "color" "163 224 0" + "groupid" "1243052" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1242977" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_base.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2890 -32" + editor + { + "color" "163 224 0" + "groupid" "1243052" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1243259" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "311 -2890 -22" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1245035" + "classname" "func_detail" + solid + { + "id" "1245029" + side + { + "id" "251447" + "plane" "(-1312 -2643 0) (-1280 -2611 0) (-1280 -2896 0)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0 1 0 -392] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251446" + "plane" "(-1312 -2896 -24) (-1280 -2896 -24) (-1280 -2611 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251445" + "plane" "(-1312 -2643 -24) (-1312 -2643 0) (-1312 -2896 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251444" + "plane" "(-1280 -2896 -24) (-1280 -2896 0) (-1280 -2611 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251443" + "plane" "(-1280 -2611 -24) (-1280 -2611 0) (-1312 -2643 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -315] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251442" + "plane" "(-1312 -2896 -24) (-1312 -2896 0) (-1280 -2896 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -4] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 1000]" + } +} +entity +{ + "id" "1245045" + "classname" "func_detail" + solid + { + "id" "1245040" + side + { + "id" "251459" + "plane" "(-1312 -2643 0) (-1892 -2643 0) (-1924 -2611 0)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[1 0 0 -392] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251458" + "plane" "(-1280 -2611 -24) (-1924 -2611 -24) (-1892 -2643 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251457" + "plane" "(-1892 -2643 0) (-1892 -2643 -24) (-1924 -2611 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251456" + "plane" "(-1280 -2611 0) (-1280 -2611 -24) (-1312 -2643 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251455" + "plane" "(-1924 -2611 0) (-1924 -2611 -24) (-1280 -2611 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251454" + "plane" "(-1312 -2643 0) (-1312 -2643 -24) (-1892 -2643 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 2000]" + } +} +entity +{ + "id" "1245086" + "classname" "func_detail" + solid + { + "id" "1245050" + side + { + "id" "251507" + "plane" "(-1924 -2611 0) (-1892 -2643 0) (-1892 -2896 0)" + "material" "CONCRETE/CONCRETE_FLOOR_10" + "uaxis" "[0 1 0 -392] 0.125" + "vaxis" "[1 0 0 288] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251506" + "plane" "(-1924 -2896 -24) (-1892 -2896 -24) (-1892 -2643 -24)" + "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" "251505" + "plane" "(-1924 -2611 -24) (-1924 -2611 0) (-1924 -2896 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" "251504" + "plane" "(-1892 -2896 -24) (-1892 -2896 0) (-1892 -2643 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251503" + "plane" "(-1892 -2643 -24) (-1892 -2643 0) (-1924 -2611 0)" + "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" "251502" + "plane" "(-1924 -2896 -24) (-1924 -2896 0) (-1892 -2896 0)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 5000]" + } +} +entity +{ + "id" "1245092" + "classname" "func_detail" + solid + { + "id" "1245063" + side + { + "id" "251513" + "plane" "(-1280 -2896 47) (-1283 -2896 47) (-1283 -2617 47)" + "material" "METAL/METAL_IBEAM01" + "uaxis" "[-1 0 0 66] 0.25" + "vaxis" "[0 1 0 55] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251512" + "plane" "(-1280 -2617 44) (-1283 -2617 44) (-1283 -2896 44)" + "material" "METAL/METAL_IBEAM01" + "uaxis" "[-1 0 0 102] 0.25" + "vaxis" "[0 1 0 55.0391] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251511" + "plane" "(-1283 -2617 44) (-1280 -2617 44) (-1280 -2617 47)" + "material" "METAL/METAL_IBEAM01" + "uaxis" "[1 0 0 6] 0.25" + "vaxis" "[0 0 -1 55] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251510" + "plane" "(-1280 -2896 44) (-1283 -2896 44) (-1283 -2896 47)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251509" + "plane" "(-1283 -2896 44) (-1283 -2617 44) (-1283 -2617 47)" + "material" "METAL/METAL_IBEAM01" + "uaxis" "[0 0 1 -62] 0.25" + "vaxis" "[0 1 0 55.0391] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251508" + "plane" "(-1280 -2617 44) (-1280 -2896 44) (-1280 -2896 47)" + "material" "METAL/METAL_IBEAM01" + "uaxis" "[0 0 1 -62] 0.25" + "vaxis" "[0 1 0 55] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 5500]" + } +} +entity +{ + "id" "1245098" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1280.5 -2753.5 22" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1245062" + side + { + "id" "251519" + "plane" "(-1280 -2896 44) (-1281 -2896 44) (-1281 -2617 44)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -5] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251518" + "plane" "(-1280 -2617 0) (-1281 -2617 0) (-1281 -2896 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" "251517" + "plane" "(-1281 -2617 0) (-1280 -2617 0) (-1280 -2617 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" "251516" + "plane" "(-1280 -2896 0) (-1281 -2896 0) (-1281 -2896 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" "251515" + "plane" "(-1281 -2896 0) (-1281 -2617 0) (-1281 -2617 44)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "251514" + "plane" "(-1280 -2617 0) (-1280 -2896 0) (-1280 -2896 44)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 -3.62207] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 6000]" + } +} +hidden +{ + entity + { + "id" "1245186" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1853.44 -2771 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -15268]" + } + } +} +entity +{ + "id" "1245190" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "300" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 228 179 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "50.5 0 -180" + "pitch" "50.5" + "spawnflags" "0" + "style" "0" + "origin" "-1847.52 -2771 -12.8776" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1245195" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-1848.94 -2771 -16.1453" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1245210" + "classname" "prop_static" + "angles" "-90 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1315.08 -2770 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -15268]" + } + } +} +entity +{ + "id" "1245214" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "300" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 228 179 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "50.5 180 180" + "pitch" "50.5" + "spawnflags" "0" + "style" "0" + "origin" "-1321 -2770 -12.8776" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1245219" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-1322 -2770 -16.1453" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1245258" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "300" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 228 179 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "50.5 270.5 -180" + "pitch" "50.5" + "spawnflags" "0" + "style" "0" + "origin" "-1647 -2652 -12.5686" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1245263" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-1647.01 -2650.58 -15.8363" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1245266" + "classname" "prop_static" + "angles" "-90 270.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1647.05 -2646.08 -23.691" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -15268]" + } + } +} +hidden +{ + entity + { + "id" "1245283" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1245282" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245287" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1245282" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245291" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1245282" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245295" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-245 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1245282" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245334" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "35 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1245333" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245338" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "35 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1245333" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245342" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "35 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1245333" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245346" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "35 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1245333" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245368" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "310 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1245367" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245372" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "310 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1245367" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245376" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "310 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1245367" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245380" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "310 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1245367" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245384" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "384 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245428" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_64.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "384 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1245525" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "36 -2746.12 460.75" + editor + { + "color" "222 171 0" + "groupid" "1245524" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "1246291" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-812.696 -2085 460.75" + editor + { + "color" "234 211 0" + "groupid" "1246281" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "1246347" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-244.862 -2085 460.75" + editor + { + "color" "234 211 0" + "groupid" "1246337" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "1230470" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-533 -2006 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1230674" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_003_vertical_converter.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-525 -2889.74 428" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1230690" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-525 -2883.75 460" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1230755" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-535 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1230754" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1230759" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-535 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1230754" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1230763" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-535 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1230754" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1230767" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-535 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1230754" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1230974" + "classname" "func_detail" + solid + { + "id" "1236710" + side + { + "id" "250821" + "plane" "(-1064 -2592 -176) (-1064 -2820 -176) (-1056 -2820 -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" "250820" + "plane" "(-1064 -2820 -176) (-1064 -2592 -176) (-1064 -2592 -144)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 -19] 0.125" + "vaxis" "[0 0 -1 -51] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250819" + "plane" "(-1056 -2592 -144) (-1056 -2592 -176) (-1056 -2820 -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" "250818" + "plane" "(-1064 -2592 -144) (-1064 -2592 -176) (-1056 -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" + } + side + { + "id" "250817" + "plane" "(-1056 -2820 -176) (-1064 -2820 -176) (-1064 -2772 -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" "250816" + "plane" "(-1064 -2772 -144) (-1064 -2592 -144) (-1056 -2592 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1230967" + side + { + "id" "250384" + "plane" "(-1064 -2604 -24) (-1064 -2592 -24) (-1056 -2592 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250383" + "plane" "(-1064 -2592 -24) (-1064 -2604 -24) (-1064 -2820 -168)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250382" + "plane" "(-1056 -2820 -176) (-1056 -2820 -168) (-1056 -2604 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250381" + "plane" "(-1064 -2820 -176) (-1064 -2820 -168) (-1056 -2820 -168)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250380" + "plane" "(-1064 -2820 -168) (-1064 -2604 -24) (-1056 -2604 -24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_001" + "uaxis" "[1 0 0 -320] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250379" + "plane" "(-1056 -2592 -24) (-1064 -2592 -24) (-1064 -2820 -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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1236709" + side + { + "id" "250815" + "plane" "(-1064 -2592 -144) (-1064 -2592 -24) (-1064 -2772 -144)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[0 1 0 -19] 0.125" + "vaxis" "[0 0 -1 -51] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250814" + "plane" "(-1056 -2592 -24) (-1056 -2592 -144) (-1056 -2772 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250813" + "plane" "(-1064 -2592 -24) (-1064 -2592 -144) (-1056 -2592 -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" "250812" + "plane" "(-1064 -2772 -144) (-1064 -2592 -24) (-1056 -2592 -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" + } + side + { + "id" "250811" + "plane" "(-1064 -2592 -144) (-1064 -2772 -144) (-1056 -2772 -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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5000]" + } +} +hidden +{ + entity + { + "id" "1224860" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-813 -2890 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1224888" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1075 -2890 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219048" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2484 -2890 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219107" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1927 -2890 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219115" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1648 -2890 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219134" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1370 -2890 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219334" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "320 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219376" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "320 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219389" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-814 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1219388" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219393" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-814 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1219388" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219397" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-814 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1219388" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1219401" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-814 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1219388" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1219540" + "classname" "func_detail" + solid + { + "id" "1150788" + side + { + "id" "250023" + "plane" "(-520 -2896 208) (-520 -2912 208) (-480 -2912 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" "250022" + "plane" "(-520 -2912 400) (-520 -2912 208) (-520 -2896 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" "250021" + "plane" "(-480 -2896 400) (-480 -2896 208) (-480 -2912 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" "250020" + "plane" "(-520 -2896 400) (-520 -2896 208) (-480 -2896 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_002" + "uaxis" "[0 0 1 -956] 0.125" + "vaxis" "[1 0 0 64] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250019" + "plane" "(-480 -2912 400) (-480 -2912 208) (-520 -2912 208)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250018" + "plane" "(-520 -2912 400) (-520 -2896 400) (-480 -2896 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150787" + side + { + "id" "250029" + "plane" "(-520 -2912 416) (-520 -2896 416) (-480 -2896 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" "250028" + "plane" "(-520 -2896 400) (-520 -2896 416) (-520 -2912 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" "250027" + "plane" "(-480 -2912 400) (-480 -2912 416) (-480 -2896 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" "250026" + "plane" "(-480 -2896 400) (-480 -2896 416) (-520 -2896 416)" + "material" "CONCRETE/CONCRETEWALL007A" + "uaxis" "[1 0 0 -448] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250025" + "plane" "(-520 -2912 400) (-520 -2912 416) (-480 -2912 416)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_001B" + "uaxis" "[1 0 0 711] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250024" + "plane" "(-520 -2896 400) (-520 -2912 400) (-480 -2912 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +hidden +{ + entity + { + "id" "1219593" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1285.03 -2000 -22" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "1219597" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-1285.03 -2010.24 -15.0191" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1219794" + "classname" "func_detail" + solid + { + "id" "1219650" + side + { + "id" "250124" + "plane" "(224 -2392 0) (224 -2360 0) (272 -2360 0)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250123" + "plane" "(224 -2360 -32) (224 -2392 -32) (272 -2392 -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" "250122" + "plane" "(224 -2392 -32) (224 -2360 -32) (224 -2360 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250121" + "plane" "(272 -2360 -32) (272 -2392 -32) (272 -2392 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250120" + "plane" "(224 -2360 -32) (272 -2360 -32) (272 -2360 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250119" + "plane" "(272 -2392 -32) (224 -2392 -32) (224 -2392 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11500]" + } +} +entity +{ + "id" "1219802" + "classname" "func_detail" + solid + { + "id" "1219635" + side + { + "id" "250129" + "plane" "(480 -2220 -16) (480 -2232 -16) (272 -2385 -16)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250128" + "plane" "(480 -2220 -16) (272 -2373 -16) (272 -2373 -24)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250127" + "plane" "(272 -2373 -16) (272 -2385 -16) (272 -2373 -24)" + "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" "250126" + "plane" "(480 -2220 -16) (480 -2220 -24) (480 -2232 -16)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 224.002] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250125" + "plane" "(480 -2232 -16) (480 -2220 -24) (272 -2373 -24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.83205 -0.5547 13.7226] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219634" + side + { + "id" "250134" + "plane" "(480 -2232 -8.00002) (480 -2244 -8.00002) (272 -2397 -8.00002)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250133" + "plane" "(480 -2232 -8.00002) (272 -2385 -8.00002) (272 -2385 -16)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250132" + "plane" "(272 -2385 -8.00002) (272 -2397 -8.00002) (272 -2385 -16)" + "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" "250131" + "plane" "(480 -2232 -8.00002) (480 -2232 -16) (480 -2244 -8.00002)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 224.002] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250130" + "plane" "(480 -2244 -8.00002) (480 -2232 -16) (272 -2385 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.83205 -0.5547 13.7226] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219633" + side + { + "id" "250139" + "plane" "(480 -2244 -1.52588e-05) (480 -2256 -1.52588e-05) (272 -2409 -1.52588e-05)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250138" + "plane" "(480 -2244 -1.52588e-05) (272 -2397 -1.52588e-05) (272 -2397 -8.00002)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250137" + "plane" "(272 -2397 -1.52588e-05) (272 -2409 -1.52588e-05) (272 -2397 -8.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250136" + "plane" "(480 -2244 -1.52588e-05) (480 -2244 -8.00002) (480 -2256 -1.52588e-05)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 224.002] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250135" + "plane" "(480 -2256 -1.52588e-05) (480 -2244 -8.00002) (272 -2397 -8.00002)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0.83205 -0.5547 13.7226] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 12000]" + } +} +entity +{ + "id" "1219833" + "classname" "func_detail" + solid + { + "id" "1219828" + side + { + "id" "250186" + "plane" "(-624 -3252 -216) (-768 -3252 -216) (-768 -3240 -216)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250185" + "plane" "(-768 -3252 -224) (-768 -3252 -216) (-624 -3252 -216)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250184" + "plane" "(-624 -3252 -224) (-624 -3252 -216) (-624 -3240 -216)" + "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" "250183" + "plane" "(-768 -3240 -216) (-768 -3252 -216) (-768 -3252 -224)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 -1 0 -544] 0.125" + "vaxis" "[0 0 -1 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250182" + "plane" "(-624 -3240 -216) (-768 -3240 -216) (-768 -3252 -224)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -17.9498] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219827" + side + { + "id" "250191" + "plane" "(-624 -3240 -208) (-768 -3240 -208) (-768 -3228 -208)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250190" + "plane" "(-768 -3240 -216) (-768 -3240 -208) (-624 -3240 -208)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250189" + "plane" "(-624 -3240 -216) (-624 -3240 -208) (-624 -3228 -208)" + "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" "250188" + "plane" "(-768 -3228 -208) (-768 -3240 -208) (-768 -3240 -216)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 -1 0 -544] 0.125" + "vaxis" "[0 0 -1 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250187" + "plane" "(-624 -3228 -208) (-768 -3228 -208) (-768 -3240 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -17.9498] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219829" + side + { + "id" "250196" + "plane" "(-624 -3228 -200) (-768 -3228 -200) (-768 -3216 -200)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250195" + "plane" "(-768 -3228 -208) (-768 -3228 -200) (-624 -3228 -200)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250194" + "plane" "(-624 -3228 -208) (-624 -3228 -200) (-624 -3216 -200)" + "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" "250193" + "plane" "(-768 -3216 -200) (-768 -3228 -200) (-768 -3228 -208)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 -1 0 -544] 0.125" + "vaxis" "[0 0 -1 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250192" + "plane" "(-624 -3216 -200) (-768 -3216 -200) (-768 -3228 -208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -17.9498] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +entity +{ + "id" "1219868" + "classname" "func_detail" + solid + { + "id" "1219869" + side + { + "id" "250222" + "plane" "(-1064 -2896 -192) (-1272 -2896 -192) (-1272 -2884 -192)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 -30] 0.125" + "vaxis" "[0 -1 0 11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250221" + "plane" "(-1272 -2896 -200) (-1272 -2896 -192) (-1064 -2896 -192)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250220" + "plane" "(-1064 -2896 -200) (-1064 -2896 -192) (-1064 -2884 -192)" + "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" "250219" + "plane" "(-1272 -2884 -192) (-1272 -2896 -192) (-1272 -2896 -200)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 256] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250218" + "plane" "(-1064 -2884 -192) (-1272 -2884 -192) (-1272 -2896 -200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -59.8594] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219870" + side + { + "id" "250227" + "plane" "(-1064 -2884 -184) (-1272 -2884 -184) (-1272 -2872 -184)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 6] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250226" + "plane" "(-1272 -2884 -192) (-1272 -2884 -184) (-1064 -2884 -184)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250225" + "plane" "(-1064 -2884 -192) (-1064 -2884 -184) (-1064 -2872 -184)" + "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" "250224" + "plane" "(-1272 -2872 -184) (-1272 -2884 -184) (-1272 -2884 -192)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 256] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250223" + "plane" "(-1064 -2872 -184) (-1272 -2872 -184) (-1272 -2884 -192)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -59.8594] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1219871" + side + { + "id" "250232" + "plane" "(-1064 -2872 -176) (-1272 -2872 -176) (-1272 -2860 -176)" + "material" "CS_APOLLO/CARPET/CARPET_SANDSTONE" + "uaxis" "[1 0 0 -30] 0.125" + "vaxis" "[0 -1 0 11] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250231" + "plane" "(-1272 -2872 -184) (-1272 -2872 -176) (-1064 -2872 -176)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250230" + "plane" "(-1064 -2872 -184) (-1064 -2872 -176) (-1064 -2860 -176)" + "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" "250229" + "plane" "(-1272 -2860 -176) (-1272 -2872 -176) (-1272 -2872 -184)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 256] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "250228" + "plane" "(-1064 -2860 -176) (-1272 -2860 -176) (-1272 -2872 -184)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -36] 0.25" + "vaxis" "[0 -0.83205 -0.5547 -59.8594] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 14500]" + } +} +hidden +{ + entity + { + "id" "1213846" + "classname" "prop_static" + "angles" "30 240 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/exhibits/sputnik.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-205 -4263 80" + editor + { + "color" "106 119 0" + "groupid" "1213938" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "1213874" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-203 -4262 96" + editor + { + "color" "106 119 0" + "groupid" "1213938" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "1214081" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-136.854 -4502 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "1214090" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "85.9943 -4258 -96" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "1208031" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2484 -2006 -24" + editor + { + "color" "100 213 0" + "groupid" "2471777" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208091" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2206 -2006 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208174" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1984 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208226" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1472 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208304" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1927 -2006 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208393" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1648 -2006 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208429" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1370 -2006 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208446" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2208 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1208445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208450" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2208 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1208445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208454" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2208 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1208445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208458" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2208 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1208445" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208573" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1648 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1208572" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208577" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1648 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1208572" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208581" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1648 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1208572" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208585" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1648 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1208572" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208640" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-960 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208808" + "classname" "prop_static" + "angles" "0 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_004b.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-813 -2006 -24" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208839" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-448 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208851" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "64 -2012 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208863" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-448 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208867" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "64 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208871" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-960 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208875" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1472 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1208879" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_002_horizontal_512.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1984 -2884 508" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1197767" + "classname" "prop_static" + "angles" "0 90 -90" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1381 -2006 198" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184164" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2490 -2007 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184272" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2490 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1184516" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184276" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2490 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1184516" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184280" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2490 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1184516" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184284" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-2490 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1184516" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184580" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1928 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1184579" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184584" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1928 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1184579" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184588" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1928 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1184579" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184592" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1928 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1184579" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184614" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1370 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1184613" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184618" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1370 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1184613" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184622" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1370 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1184613" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1184626" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1370 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1184613" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1185015" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1075 -2640 523" + editor + { + "color" "100 221 0" + "groupid" "1185014" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1185019" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1075 -2384 523" + editor + { + "color" "100 221 0" + "groupid" "1185014" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1185023" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1075 -2128 523" + editor + { + "color" "100 221 0" + "groupid" "1185014" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1185027" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1075 -2000 523" + editor + { + "color" "100 221 0" + "groupid" "1185014" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1185301" + "classname" "prop_static" + "angles" "0 270 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-401 -1936 -22" + editor + { + "color" "118 223 0" + "groupid" "1185300" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +hidden +{ + entity + { + "id" "1185309" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "405.72 -1936 -22" + editor + { + "color" "118 223 0" + "groupid" "1185300" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "1185314" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-401 -1945 -15.0191" + editor + { + "color" "118 223 0" + "groupid" "1185313" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1185324" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "405.72 -1945.27 -15.0191" + editor + { + "color" "118 223 0" + "groupid" "1185313" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1185572" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "170 -2668 -22.005" + editor + { + "color" "156 217 0" + "groupid" "1185571" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "1185576" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "170 -2677.27 -15.0241" + editor + { + "color" "156 217 0" + "groupid" "1185571" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1185581" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "170.05 -2683.69 -11.3279" + editor + { + "color" "156 217 0" + "groupid" "1185571" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1185637" + "classname" "prop_static" + "angles" "0 270 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-78.05 -2667 -22.005" + editor + { + "color" "156 217 0" + "groupid" "1185636" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "1185641" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-78.05 -2676.27 -15.0241" + editor + { + "color" "156 217 0" + "groupid" "1185636" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1185646" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-78 -2682.69 -11.3279" + editor + { + "color" "156 217 0" + "groupid" "1185636" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1185694" + "classname" "prop_static" + "angles" "0 270 -180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-1456 -2004 130.157" + editor + { + "color" "175 136 0" + "groupid" "1185693" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +hidden +{ + entity + { + "id" "1185698" + "classname" "prop_static" + "angles" "0 270 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-893 -1998.76 -21.8431" + editor + { + "color" "175 136 0" + "groupid" "1185693" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7000]" + } + } +} +entity +{ + "id" "1185707" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 -180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-1456 -2013 137" + editor + { + "color" "175 136 0" + "groupid" "1185706" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +entity +{ + "id" "1185712" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 234 210 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "38.5 270 180" + "pitch" "38.5" + "spawnflags" "0" + "style" "0" + "origin" "-893 -2009 -14.8622" + editor + { + "color" "175 136 0" + "groupid" "1185706" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "1185797" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "409.298 -2177 144" + editor + { + "color" "252 169 0" + "groupid" "1185796" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "1185801" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow04.vmt" + "renderamt" "255" + "rendercolor" "215 252 255" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "409.298 -2177 144" + editor + { + "color" "252 169 0" + "groupid" "1185796" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "1185804" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "215 252 255 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "409.298 -2177 139" + editor + { + "color" "252 169 0" + "groupid" "1185796" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "1185863" + "classname" "func_detail" + solid + { + "id" "1185864" + side + { + "id" "247297" + "plane" "(-2032 -1984 416) (-2032 -1984 210) (-2032 -2000 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247296" + "plane" "(-2034 -1984 210) (-2032 -1984 210) (-2032 -1984 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -16.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247295" + "plane" "(-2032 -2000 416) (-2032 -2000 210) (-2034 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 14.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247294" + "plane" "(-2034 -1984 416) (-2032 -1984 416) (-2032 -2000 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247293" + "plane" "(-2034 -2000 210) (-2032 -2000 210) (-2032 -1984 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247292" + "plane" "(-2034 -2000 416) (-2034 -2000 210) (-2034 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 -1.0312] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185865" + side + { + "id" "247303" + "plane" "(-2034 -2000 416) (-2134 -2000 416) (-2134 -1984 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" "247302" + "plane" "(-2034 -1984 414) (-2134 -1984 414) (-2134 -2000 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 -1 0 -0.0292969] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247301" + "plane" "(-2134 -1984 414) (-2034 -1984 414) (-2034 -1984 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247300" + "plane" "(-2034 -2000 414) (-2134 -2000 414) (-2134 -2000 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247299" + "plane" "(-2134 -2000 414) (-2134 -1984 414) (-2134 -1984 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247298" + "plane" "(-2034 -1984 414) (-2034 -2000 414) (-2034 -2000 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185866" + side + { + "id" "247309" + "plane" "(-2032 -1984 208) (-2136 -1984 208) (-2136 -2000 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247308" + "plane" "(-2136 -1984 208) (-2032 -1984 208) (-2032 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247307" + "plane" "(-2032 -2000 208) (-2136 -2000 208) (-2136 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247306" + "plane" "(-2032 -2000 210) (-2136 -2000 210) (-2136 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 -1 0 -0.0332031] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247305" + "plane" "(-2136 -2000 210) (-2136 -2000 208) (-2136 -1984 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247304" + "plane" "(-2032 -1984 210) (-2032 -1984 208) (-2032 -2000 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185867" + side + { + "id" "247315" + "plane" "(-2085 -2000 414) (-2085 -2000 353) (-2085 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 -0.0332031] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247314" + "plane" "(-2083 -1984 414) (-2083 -1984 353) (-2083 -2000 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 1.0293] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247313" + "plane" "(-2085 -1984 414) (-2085 -1984 353) (-2083 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247312" + "plane" "(-2083 -2000 414) (-2083 -2000 353) (-2085 -2000 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247311" + "plane" "(-2085 -1984 353) (-2085 -2000 353) (-2083 -2000 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247310" + "plane" "(-2085 -2000 414) (-2085 -1984 414) (-2083 -1984 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185868" + side + { + "id" "247321" + "plane" "(-2085 -1984 210) (-2085 -2000 210) (-2083 -2000 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247320" + "plane" "(-2085 -2000 278) (-2085 -2000 210) (-2085 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 -0.0332031] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247319" + "plane" "(-2083 -1984 278) (-2083 -1984 210) (-2083 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 1.0293] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247318" + "plane" "(-2085 -1984 278) (-2085 -1984 210) (-2083 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247317" + "plane" "(-2083 -2000 278) (-2083 -2000 210) (-2085 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247316" + "plane" "(-2085 -2000 278) (-2085 -1984 278) (-2083 -1984 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185869" + side + { + "id" "247327" + "plane" "(-2136 -2000 416) (-2136 -2000 210) (-2136 -1984 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247326" + "plane" "(-2136 -1984 416) (-2136 -1984 210) (-2134 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -47.9893] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247325" + "plane" "(-2134 -2000 210) (-2136 -2000 210) (-2136 -2000 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 47.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247324" + "plane" "(-2134 -2000 416) (-2136 -2000 416) (-2136 -1984 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247323" + "plane" "(-2134 -1984 210) (-2136 -1984 210) (-2136 -2000 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247322" + "plane" "(-2134 -1984 416) (-2134 -1984 210) (-2134 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 0.0332031] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185870" + side + { + "id" "247333" + "plane" "(-2034 -2000 353) (-2134 -2000 353) (-2134 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 1 0 0.0332031] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247332" + "plane" "(-2034 -1984 351) (-2134 -1984 351) (-2134 -2000 351)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 -1 0 0.970703] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247331" + "plane" "(-2134 -1984 351) (-2034 -1984 351) (-2034 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247330" + "plane" "(-2034 -2000 351) (-2134 -2000 351) (-2134 -2000 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 0 1 -54.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247329" + "plane" "(-2134 -2000 351) (-2134 -1984 351) (-2134 -1984 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247328" + "plane" "(-2034 -1984 351) (-2034 -2000 351) (-2034 -2000 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185871" + side + { + "id" "247339" + "plane" "(-2085 -2000 351) (-2085 -2000 280) (-2085 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 -0.0332031] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247338" + "plane" "(-2083 -1984 351) (-2083 -1984 280) (-2083 -2000 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 1.0293] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247337" + "plane" "(-2085 -1984 351) (-2085 -1984 280) (-2083 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247336" + "plane" "(-2083 -2000 351) (-2083 -2000 280) (-2085 -2000 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247335" + "plane" "(-2085 -2000 351) (-2085 -1984 351) (-2083 -1984 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247334" + "plane" "(-2085 -1984 280) (-2085 -2000 280) (-2083 -2000 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1185872" + side + { + "id" "247345" + "plane" "(-2034 -2000 280) (-2134 -2000 280) (-2134 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 1 0 0.0332031] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247344" + "plane" "(-2034 -1984 278) (-2134 -1984 278) (-2134 -2000 278)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 -1 0 -0.0292969] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247343" + "plane" "(-2134 -1984 278) (-2034 -1984 278) (-2034 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247342" + "plane" "(-2034 -2000 278) (-2134 -2000 278) (-2134 -2000 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -191.991] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247341" + "plane" "(-2134 -2000 278) (-2134 -1984 278) (-2134 -1984 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247340" + "plane" "(-2034 -1984 278) (-2034 -2000 278) (-2034 -2000 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "120 237 0" + "groupid" "1185965" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "1185873" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2058.5 -1992 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1185874" + side + { + "id" "247351" + "plane" "(-2083 -1993 351) (-2083 -1991 351) (-2034 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 19.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247350" + "plane" "(-2083 -1991 280) (-2083 -1993 280) (-2034 -1993 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247349" + "plane" "(-2083 -1993 280) (-2083 -1991 280) (-2083 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247348" + "plane" "(-2034 -1991 280) (-2034 -1993 280) (-2034 -1993 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247347" + "plane" "(-2083 -1991 280) (-2034 -1991 280) (-2034 -1991 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -130.622] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247346" + "plane" "(-2034 -1993 280) (-2083 -1993 280) (-2083 -1993 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 130.622] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "120 237 0" + "groupid" "1185965" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "1185876" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2058.5 -1992 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1185877" + side + { + "id" "247357" + "plane" "(-2083 -1993 278) (-2083 -1991 278) (-2034 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 19.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247356" + "plane" "(-2083 -1991 210) (-2083 -1993 210) (-2034 -1993 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247355" + "plane" "(-2083 -1993 210) (-2083 -1991 210) (-2083 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247354" + "plane" "(-2034 -1991 210) (-2034 -1993 210) (-2034 -1993 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247353" + "plane" "(-2083 -1991 210) (-2034 -1991 210) (-2034 -1991 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -130.622] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247352" + "plane" "(-2034 -1993 210) (-2083 -1993 210) (-2083 -1993 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 130.622] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "120 237 0" + "groupid" "1185965" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "1185879" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2109.5 -1992 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1185880" + side + { + "id" "247363" + "plane" "(-2134 -1993 278) (-2134 -1991 278) (-2085 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247362" + "plane" "(-2134 -1991 210) (-2134 -1993 210) (-2085 -1993 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247361" + "plane" "(-2134 -1993 210) (-2134 -1991 210) (-2134 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247360" + "plane" "(-2085 -1991 210) (-2085 -1993 210) (-2085 -1993 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247359" + "plane" "(-2134 -1991 210) (-2085 -1991 210) (-2085 -1991 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 141.071] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247358" + "plane" "(-2085 -1993 210) (-2134 -1993 210) (-2134 -1993 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 141.071] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "120 237 0" + "groupid" "1185965" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "1185882" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2109.5 -1992 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1185883" + side + { + "id" "247369" + "plane" "(-2134 -1993 351) (-2134 -1991 351) (-2085 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247368" + "plane" "(-2134 -1991 280) (-2134 -1993 280) (-2085 -1993 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247367" + "plane" "(-2134 -1993 280) (-2134 -1991 280) (-2134 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247366" + "plane" "(-2085 -1991 280) (-2085 -1993 280) (-2085 -1993 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247365" + "plane" "(-2134 -1991 280) (-2085 -1991 280) (-2085 -1991 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -141.071] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247364" + "plane" "(-2085 -1993 280) (-2134 -1993 280) (-2134 -1993 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 141.071] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "120 237 0" + "groupid" "1185965" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "1185885" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2109.5 -1992 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1185886" + side + { + "id" "247375" + "plane" "(-2134 -1993 414) (-2134 -1991 414) (-2085 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247374" + "plane" "(-2134 -1991 353) (-2134 -1993 353) (-2085 -1993 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247373" + "plane" "(-2134 -1993 353) (-2134 -1991 353) (-2134 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247372" + "plane" "(-2085 -1991 353) (-2085 -1993 353) (-2085 -1993 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247371" + "plane" "(-2134 -1991 353) (-2085 -1991 353) (-2085 -1991 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -141.071] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247370" + "plane" "(-2085 -1993 353) (-2134 -1993 353) (-2134 -1993 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 141.071] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "120 237 0" + "groupid" "1185965" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "1185888" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-2058.5 -1992 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1185889" + side + { + "id" "247381" + "plane" "(-2083 -1993 414) (-2083 -1991 414) (-2034 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 19.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247380" + "plane" "(-2083 -1991 353) (-2083 -1993 353) (-2034 -1993 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.9956] 0.25" + "vaxis" "[0 -1 0 -0.0166016] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247379" + "plane" "(-2083 -1993 353) (-2083 -1991 353) (-2083 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -0.0166016] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247378" + "plane" "(-2034 -1991 353) (-2034 -1993 353) (-2034 -1993 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0.0166016] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247377" + "plane" "(-2083 -1991 353) (-2034 -1991 353) (-2034 -1991 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -130.622] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247376" + "plane" "(-2034 -1993 353) (-2083 -1993 353) (-2083 -1993 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 130.622] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "120 237 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "120 237 0" + "groupid" "1185965" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "1185998" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1029.5 -1992 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1185999" + side + { + "id" "247519" + "plane" "(-1054 -1993 414) (-1054 -1991 414) (-1005 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247518" + "plane" "(-1054 -1991 353) (-1054 -1993 353) (-1005 -1993 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247517" + "plane" "(-1054 -1993 353) (-1054 -1991 353) (-1054 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247516" + "plane" "(-1005 -1991 353) (-1005 -1993 353) (-1005 -1993 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247515" + "plane" "(-1054 -1991 353) (-1005 -1991 353) (-1005 -1991 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 125.385] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247514" + "plane" "(-1005 -1993 353) (-1054 -1993 353) (-1054 -1993 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -125.385] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1185996" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "1186001" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-978.5 -1992 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186002" + side + { + "id" "247525" + "plane" "(-1003 -1993 414) (-1003 -1991 414) (-954 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247524" + "plane" "(-1003 -1991 353) (-1003 -1993 353) (-954 -1993 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247523" + "plane" "(-1003 -1993 353) (-1003 -1991 353) (-1003 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247522" + "plane" "(-954 -1991 353) (-954 -1993 353) (-954 -1993 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247521" + "plane" "(-1003 -1991 353) (-954 -1991 353) (-954 -1991 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 135.835] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247520" + "plane" "(-954 -1993 353) (-1003 -1993 353) (-1003 -1993 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -135.835] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1185996" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "1186004" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-978.5 -1992 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186005" + side + { + "id" "247531" + "plane" "(-1003 -1993 351) (-1003 -1991 351) (-954 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247530" + "plane" "(-1003 -1991 280) (-1003 -1993 280) (-954 -1993 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247529" + "plane" "(-1003 -1993 280) (-1003 -1991 280) (-1003 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247528" + "plane" "(-954 -1991 280) (-954 -1993 280) (-954 -1993 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247527" + "plane" "(-1003 -1991 280) (-954 -1991 280) (-954 -1991 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 135.835] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247526" + "plane" "(-954 -1993 280) (-1003 -1993 280) (-1003 -1993 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -135.835] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1185996" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "1186007" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1029.5 -1992 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186008" + side + { + "id" "247537" + "plane" "(-1054 -1993 351) (-1054 -1991 351) (-1005 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247536" + "plane" "(-1054 -1991 280) (-1054 -1993 280) (-1005 -1993 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247535" + "plane" "(-1054 -1993 280) (-1054 -1991 280) (-1054 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247534" + "plane" "(-1005 -1991 280) (-1005 -1993 280) (-1005 -1993 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247533" + "plane" "(-1054 -1991 280) (-1005 -1991 280) (-1005 -1991 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 125.385] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247532" + "plane" "(-1005 -1993 280) (-1054 -1993 280) (-1054 -1993 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -125.385] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1185996" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "1186010" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1029.5 -1992 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186011" + side + { + "id" "247543" + "plane" "(-1054 -1993 278) (-1054 -1991 278) (-1005 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247542" + "plane" "(-1054 -1991 210) (-1054 -1993 210) (-1005 -1993 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247541" + "plane" "(-1054 -1993 210) (-1054 -1991 210) (-1054 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247540" + "plane" "(-1005 -1991 210) (-1005 -1993 210) (-1005 -1993 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247539" + "plane" "(-1054 -1991 210) (-1005 -1991 210) (-1005 -1991 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -125.385] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247538" + "plane" "(-1005 -1993 210) (-1054 -1993 210) (-1054 -1993 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -125.385] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1185996" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "1186013" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-978.5 -1992 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186014" + side + { + "id" "247549" + "plane" "(-1003 -1993 278) (-1003 -1991 278) (-954 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247548" + "plane" "(-1003 -1991 210) (-1003 -1993 210) (-954 -1993 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247547" + "plane" "(-1003 -1993 210) (-1003 -1991 210) (-1003 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247546" + "plane" "(-954 -1991 210) (-954 -1993 210) (-954 -1993 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247545" + "plane" "(-1003 -1991 210) (-954 -1991 210) (-954 -1991 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 135.835] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247544" + "plane" "(-954 -1993 210) (-1003 -1993 210) (-1003 -1993 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -135.835] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1185996" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "1186016" + "classname" "func_detail" + solid + { + "id" "1186017" + side + { + "id" "247555" + "plane" "(-952 -1984 416) (-952 -1984 210) (-952 -2000 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247554" + "plane" "(-954 -1984 210) (-952 -1984 210) (-952 -1984 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 47.0049] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247553" + "plane" "(-952 -2000 416) (-952 -2000 210) (-954 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -49.0088] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247552" + "plane" "(-954 -1984 416) (-952 -1984 416) (-952 -2000 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247551" + "plane" "(-954 -2000 210) (-952 -2000 210) (-952 -1984 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247550" + "plane" "(-954 -2000 416) (-954 -2000 210) (-954 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 62.9688] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186018" + side + { + "id" "247561" + "plane" "(-954 -2000 416) (-1054 -2000 416) (-1054 -1984 416)" + "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" "247560" + "plane" "(-954 -1984 414) (-1054 -1984 414) (-1054 -2000 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247559" + "plane" "(-1054 -1984 414) (-954 -1984 414) (-954 -1984 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247558" + "plane" "(-954 -2000 414) (-1054 -2000 414) (-1054 -2000 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247557" + "plane" "(-1054 -2000 414) (-1054 -1984 414) (-1054 -1984 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247556" + "plane" "(-954 -1984 414) (-954 -2000 414) (-954 -2000 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186019" + side + { + "id" "247567" + "plane" "(-952 -1984 208) (-1056 -1984 208) (-1056 -2000 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247566" + "plane" "(-1056 -1984 208) (-952 -1984 208) (-952 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247565" + "plane" "(-952 -2000 208) (-1056 -2000 208) (-1056 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247564" + "plane" "(-952 -2000 210) (-1056 -2000 210) (-1056 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247563" + "plane" "(-1056 -2000 210) (-1056 -2000 208) (-1056 -1984 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247562" + "plane" "(-952 -1984 210) (-952 -1984 208) (-952 -2000 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186020" + side + { + "id" "247573" + "plane" "(-1005 -2000 414) (-1005 -2000 353) (-1005 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247572" + "plane" "(-1003 -1984 414) (-1003 -1984 353) (-1003 -2000 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247571" + "plane" "(-1005 -1984 414) (-1005 -1984 353) (-1003 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 41.0068] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247570" + "plane" "(-1003 -2000 414) (-1003 -2000 353) (-1005 -2000 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -39.0088] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247569" + "plane" "(-1005 -1984 353) (-1005 -2000 353) (-1003 -2000 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247568" + "plane" "(-1005 -2000 414) (-1005 -1984 414) (-1003 -1984 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186021" + side + { + "id" "247579" + "plane" "(-1005 -1984 210) (-1005 -2000 210) (-1003 -2000 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247578" + "plane" "(-1005 -2000 278) (-1005 -2000 210) (-1005 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247577" + "plane" "(-1003 -1984 278) (-1003 -1984 210) (-1003 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247576" + "plane" "(-1005 -1984 278) (-1005 -1984 210) (-1003 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 41.0068] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247575" + "plane" "(-1003 -2000 278) (-1003 -2000 210) (-1005 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -39.0088] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247574" + "plane" "(-1005 -2000 278) (-1005 -1984 278) (-1003 -1984 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186022" + side + { + "id" "247585" + "plane" "(-1056 -2000 416) (-1056 -2000 210) (-1056 -1984 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247584" + "plane" "(-1056 -1984 416) (-1056 -1984 210) (-1054 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 16.0107] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247583" + "plane" "(-1054 -2000 210) (-1056 -2000 210) (-1056 -2000 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -16.0049] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247582" + "plane" "(-1054 -2000 416) (-1056 -2000 416) (-1056 -1984 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247581" + "plane" "(-1054 -1984 210) (-1056 -1984 210) (-1056 -2000 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32.0044] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247580" + "plane" "(-1054 -1984 416) (-1054 -1984 210) (-1054 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186023" + side + { + "id" "247591" + "plane" "(-954 -2000 353) (-1054 -2000 353) (-1054 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247590" + "plane" "(-954 -1984 351) (-1054 -1984 351) (-1054 -2000 351)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 -1 0 0.970703] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247589" + "plane" "(-1054 -1984 351) (-954 -1984 351) (-954 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247588" + "plane" "(-954 -2000 351) (-1054 -2000 351) (-1054 -2000 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 0 1 -54.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247587" + "plane" "(-1054 -2000 351) (-1054 -1984 351) (-1054 -1984 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247586" + "plane" "(-954 -1984 351) (-954 -2000 351) (-954 -2000 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186024" + side + { + "id" "247597" + "plane" "(-1005 -2000 351) (-1005 -2000 280) (-1005 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247596" + "plane" "(-1003 -1984 351) (-1003 -1984 280) (-1003 -2000 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247595" + "plane" "(-1005 -1984 351) (-1005 -1984 280) (-1003 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 41.0068] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247594" + "plane" "(-1003 -2000 351) (-1003 -2000 280) (-1005 -2000 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -39.0088] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247593" + "plane" "(-1005 -2000 351) (-1005 -1984 351) (-1003 -1984 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247592" + "plane" "(-1005 -1984 280) (-1005 -2000 280) (-1003 -2000 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0.00439453] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186025" + side + { + "id" "247603" + "plane" "(-954 -2000 280) (-1054 -2000 280) (-1054 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247602" + "plane" "(-954 -1984 278) (-1054 -1984 278) (-1054 -2000 278)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247601" + "plane" "(-1054 -1984 278) (-954 -1984 278) (-954 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247600" + "plane" "(-954 -2000 278) (-1054 -2000 278) (-1054 -2000 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0.00878906] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247599" + "plane" "(-1054 -2000 278) (-1054 -1984 278) (-1054 -1984 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "247598" + "plane" "(-954 -1984 278) (-954 -2000 278) (-954 -2000 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1185996" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "1186904" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1173.5 -1992 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186905" + side + { + "id" "248899" + "plane" "(-1198 -1993 414) (-1198 -1991 414) (-1149 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248898" + "plane" "(-1198 -1991 353) (-1198 -1993 353) (-1149 -1993 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248897" + "plane" "(-1198 -1993 353) (-1198 -1991 353) (-1198 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248896" + "plane" "(-1149 -1991 353) (-1149 -1993 353) (-1149 -1993 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248895" + "plane" "(-1198 -1991 353) (-1149 -1991 353) (-1149 -1991 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -114.942] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248894" + "plane" "(-1149 -1993 353) (-1198 -1993 353) (-1198 -1993 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 114.942] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1186902" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "1186907" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1122.5 -1992 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186908" + side + { + "id" "248905" + "plane" "(-1147 -1993 414) (-1147 -1991 414) (-1098 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248904" + "plane" "(-1147 -1991 353) (-1147 -1993 353) (-1098 -1993 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248903" + "plane" "(-1147 -1993 353) (-1147 -1991 353) (-1147 -1991 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248902" + "plane" "(-1098 -1991 353) (-1098 -1993 353) (-1098 -1993 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248901" + "plane" "(-1147 -1991 353) (-1098 -1991 353) (-1098 -1991 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -104.493] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248900" + "plane" "(-1098 -1993 353) (-1147 -1993 353) (-1147 -1993 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 104.493] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1186902" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "1186910" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1122.5 -1992 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186911" + side + { + "id" "248911" + "plane" "(-1147 -1993 351) (-1147 -1991 351) (-1098 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248910" + "plane" "(-1147 -1991 280) (-1147 -1993 280) (-1098 -1993 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248909" + "plane" "(-1147 -1993 280) (-1147 -1991 280) (-1147 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248908" + "plane" "(-1098 -1991 280) (-1098 -1993 280) (-1098 -1993 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248907" + "plane" "(-1147 -1991 280) (-1098 -1991 280) (-1098 -1991 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -104.493] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248906" + "plane" "(-1098 -1993 280) (-1147 -1993 280) (-1147 -1993 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 104.493] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1186902" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "1186913" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1173.5 -1992 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186914" + side + { + "id" "248917" + "plane" "(-1198 -1993 351) (-1198 -1991 351) (-1149 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248916" + "plane" "(-1198 -1991 280) (-1198 -1993 280) (-1149 -1993 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248915" + "plane" "(-1198 -1993 280) (-1198 -1991 280) (-1198 -1991 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248914" + "plane" "(-1149 -1991 280) (-1149 -1993 280) (-1149 -1993 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248913" + "plane" "(-1198 -1991 280) (-1149 -1991 280) (-1149 -1991 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -114.942] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248912" + "plane" "(-1149 -1993 280) (-1198 -1993 280) (-1198 -1993 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 114.942] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1186902" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "1186916" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1173.5 -1992 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186917" + side + { + "id" "248923" + "plane" "(-1198 -1993 278) (-1198 -1991 278) (-1149 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248922" + "plane" "(-1198 -1991 210) (-1198 -1993 210) (-1149 -1993 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248921" + "plane" "(-1198 -1993 210) (-1198 -1991 210) (-1198 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248920" + "plane" "(-1149 -1991 210) (-1149 -1993 210) (-1149 -1993 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248919" + "plane" "(-1198 -1991 210) (-1149 -1991 210) (-1149 -1991 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 114.942] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248918" + "plane" "(-1149 -1993 210) (-1198 -1993 210) (-1198 -1993 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 114.942] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1186902" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "1186919" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1122.5 -1992 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1186920" + side + { + "id" "248929" + "plane" "(-1147 -1993 278) (-1147 -1991 278) (-1098 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248928" + "plane" "(-1147 -1991 210) (-1147 -1993 210) (-1098 -1993 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -51.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248927" + "plane" "(-1147 -1993 210) (-1147 -1991 210) (-1147 -1991 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248926" + "plane" "(-1098 -1991 210) (-1098 -1993 210) (-1098 -1993 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248925" + "plane" "(-1147 -1991 210) (-1098 -1991 210) (-1098 -1991 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -104.493] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248924" + "plane" "(-1098 -1993 210) (-1147 -1993 210) (-1147 -1993 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 104.493] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1186902" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "1186922" + "classname" "func_detail" + solid + { + "id" "1186923" + side + { + "id" "248935" + "plane" "(-1096 -1984 416) (-1096 -1984 210) (-1096 -2000 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248934" + "plane" "(-1098 -1984 210) (-1096 -1984 210) (-1096 -1984 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -16.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248933" + "plane" "(-1096 -2000 416) (-1096 -2000 210) (-1098 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 14.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248932" + "plane" "(-1098 -1984 416) (-1096 -1984 416) (-1096 -2000 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248931" + "plane" "(-1098 -2000 210) (-1096 -2000 210) (-1096 -1984 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248930" + "plane" "(-1098 -2000 416) (-1098 -2000 210) (-1098 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 62.9688] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186924" + side + { + "id" "248941" + "plane" "(-1098 -2000 416) (-1198 -2000 416) (-1198 -1984 416)" + "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" "248940" + "plane" "(-1098 -1984 414) (-1198 -1984 414) (-1198 -2000 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248939" + "plane" "(-1198 -1984 414) (-1098 -1984 414) (-1098 -1984 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248938" + "plane" "(-1098 -2000 414) (-1198 -2000 414) (-1198 -2000 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248937" + "plane" "(-1198 -2000 414) (-1198 -1984 414) (-1198 -1984 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248936" + "plane" "(-1098 -1984 414) (-1098 -2000 414) (-1098 -2000 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186925" + side + { + "id" "248947" + "plane" "(-1096 -1984 208) (-1200 -1984 208) (-1200 -2000 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248946" + "plane" "(-1200 -1984 208) (-1096 -1984 208) (-1096 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248945" + "plane" "(-1096 -2000 208) (-1200 -2000 208) (-1200 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248944" + "plane" "(-1096 -2000 210) (-1200 -2000 210) (-1200 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248943" + "plane" "(-1200 -2000 210) (-1200 -2000 208) (-1200 -1984 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248942" + "plane" "(-1096 -1984 210) (-1096 -1984 208) (-1096 -2000 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186926" + side + { + "id" "248953" + "plane" "(-1149 -2000 414) (-1149 -2000 353) (-1149 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248952" + "plane" "(-1147 -1984 414) (-1147 -1984 353) (-1147 -2000 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248951" + "plane" "(-1149 -1984 414) (-1149 -1984 353) (-1147 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248950" + "plane" "(-1147 -2000 414) (-1147 -2000 353) (-1149 -2000 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248949" + "plane" "(-1149 -1984 353) (-1149 -2000 353) (-1147 -2000 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248948" + "plane" "(-1149 -2000 414) (-1149 -1984 414) (-1147 -1984 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186927" + side + { + "id" "248959" + "plane" "(-1149 -1984 210) (-1149 -2000 210) (-1147 -2000 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248958" + "plane" "(-1149 -2000 278) (-1149 -2000 210) (-1149 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248957" + "plane" "(-1147 -1984 278) (-1147 -1984 210) (-1147 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248956" + "plane" "(-1149 -1984 278) (-1149 -1984 210) (-1147 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248955" + "plane" "(-1147 -2000 278) (-1147 -2000 210) (-1149 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248954" + "plane" "(-1149 -2000 278) (-1149 -1984 278) (-1147 -1984 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186928" + side + { + "id" "248965" + "plane" "(-1200 -2000 416) (-1200 -2000 210) (-1200 -1984 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248964" + "plane" "(-1200 -1984 416) (-1200 -1984 210) (-1198 -1984 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -47.9893] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248963" + "plane" "(-1198 -2000 210) (-1200 -2000 210) (-1200 -2000 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 47.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248962" + "plane" "(-1198 -2000 416) (-1200 -2000 416) (-1200 -1984 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248961" + "plane" "(-1198 -1984 210) (-1200 -1984 210) (-1200 -2000 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248960" + "plane" "(-1198 -1984 416) (-1198 -1984 210) (-1198 -2000 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186929" + side + { + "id" "248971" + "plane" "(-1098 -2000 353) (-1198 -2000 353) (-1198 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248970" + "plane" "(-1098 -1984 351) (-1198 -1984 351) (-1198 -2000 351)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 -1 0 0.970703] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248969" + "plane" "(-1198 -1984 351) (-1098 -1984 351) (-1098 -1984 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248968" + "plane" "(-1098 -2000 351) (-1198 -2000 351) (-1198 -2000 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 1 -54.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248967" + "plane" "(-1198 -2000 351) (-1198 -1984 351) (-1198 -1984 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248966" + "plane" "(-1098 -1984 351) (-1098 -2000 351) (-1098 -2000 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186930" + side + { + "id" "248977" + "plane" "(-1149 -2000 351) (-1149 -2000 280) (-1149 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248976" + "plane" "(-1147 -1984 351) (-1147 -1984 280) (-1147 -2000 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248975" + "plane" "(-1149 -1984 351) (-1149 -1984 280) (-1147 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9932] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248974" + "plane" "(-1147 -2000 351) (-1147 -2000 280) (-1149 -2000 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248973" + "plane" "(-1149 -2000 351) (-1149 -1984 351) (-1147 -1984 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248972" + "plane" "(-1149 -1984 280) (-1149 -2000 280) (-1147 -2000 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1186931" + side + { + "id" "248983" + "plane" "(-1098 -2000 280) (-1198 -2000 280) (-1198 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248982" + "plane" "(-1098 -1984 278) (-1198 -1984 278) (-1198 -2000 278)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248981" + "plane" "(-1198 -1984 278) (-1098 -1984 278) (-1098 -1984 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248980" + "plane" "(-1098 -2000 278) (-1198 -2000 278) (-1198 -2000 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -127.991] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248979" + "plane" "(-1198 -2000 278) (-1198 -1984 278) (-1198 -1984 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "248978" + "plane" "(-1098 -1984 278) (-1098 -2000 278) (-1098 -2000 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 209 0" + "groupid" "1186902" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "1172561" + "classname" "func_detail" + solid + { + "id" "1172562" + side + { + "id" "246628" + "plane" "(-1408.91 -2430.82 152) (-1408.91 -2253.82 152) (-1400.91 -2253.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28.2378] 0.25" + "vaxis" "[0 -1 0 20.71] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246627" + "plane" "(-1408.91 -2253.82 -24) (-1408.91 -2430.82 -24) (-1400.91 -2430.82 -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" + } + side + { + "id" "246626" + "plane" "(-1408.91 -2430.82 -24) (-1408.91 -2253.82 -24) (-1408.91 -2253.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246625" + "plane" "(-1400.91 -2253.82 -24) (-1400.91 -2430.82 -24) (-1400.91 -2430.82 152)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 750.74] 0.172855" + "vaxis" "[0 0 -1 442.182] 0.34375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246624" + "plane" "(-1408.91 -2253.82 -24) (-1400.92 -2253.82 -24) (-1400.91 -2253.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 12.2378] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246623" + "plane" "(-1400.91 -2430.82 -24) (-1408.91 -2430.82 -24) (-1408.91 -2430.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 12.2378] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1172563" + side + { + "id" "246637" + "plane" "(-1416.06 -2244.82 -24) (-1412.06 -2253.82 -24) (-1396.06 -2253.82 -24)" + "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" "246636" + "plane" "(-1392.06 -2244.82 152) (-1396.06 -2253.82 152) (-1412.06 -2253.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20.71] 0.25" + "vaxis" "[-1 0 0 -60.2383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246635" + "plane" "(-1392.06 -2244.82 -24) (-1396.06 -2253.82 -24) (-1396.06 -2253.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246634" + "plane" "(-1412.06 -2253.82 -24) (-1416.06 -2244.82 -24) (-1416.06 -2244.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246633" + "plane" "(-1416.06 -2244.82 -24) (-1412.06 -2236.82 -24) (-1412.06 -2236.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246632" + "plane" "(-1412.06 -2236.82 -24) (-1404.06 -2233.82 -24) (-1404.06 -2233.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246631" + "plane" "(-1404.06 -2233.82 -24) (-1396.06 -2236.82 -24) (-1396.06 -2236.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246630" + "plane" "(-1396.06 -2236.82 -24) (-1392.06 -2244.82 -24) (-1392.06 -2244.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246629" + "plane" "(-1396.06 -2253.82 -24) (-1412.06 -2253.82 -24) (-1412.06 -2253.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1172564" + side + { + "id" "246646" + "plane" "(-1412.06 -2430.82 -24) (-1416.06 -2439.82 -24) (-1412.06 -2447.82 -24)" + "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" "246645" + "plane" "(-1416.06 -2439.82 152) (-1412.06 -2430.82 152) (-1396.06 -2430.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52.71] 0.25" + "vaxis" "[1 0 0 28.2383] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246644" + "plane" "(-1416.06 -2439.82 -24) (-1412.06 -2430.82 -24) (-1412.06 -2430.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246643" + "plane" "(-1396.06 -2430.82 -24) (-1392.06 -2439.82 -24) (-1392.06 -2439.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246642" + "plane" "(-1392.06 -2439.82 -24) (-1396.06 -2447.82 -24) (-1396.06 -2447.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246641" + "plane" "(-1396.06 -2447.82 -24) (-1404.06 -2450.82 -24) (-1404.06 -2450.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246640" + "plane" "(-1404.06 -2450.82 -24) (-1412.06 -2447.82 -24) (-1412.06 -2447.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246639" + "plane" "(-1412.06 -2447.82 -24) (-1416.06 -2439.82 -24) (-1416.06 -2439.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246638" + "plane" "(-1412.06 -2430.82 -24) (-1396.06 -2430.82 -24) (-1396.06 -2430.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "225 174 0" + "groupid" "1172547" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "1172654" + "classname" "func_detail" + solid + { + "id" "1172655" + side + { + "id" "246676" + "plane" "(-2223 -2430.82 152) (-2223 -2253.82 152) (-2215 -2253.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -43.4214] 0.25" + "vaxis" "[0 -1 0 20.71] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246675" + "plane" "(-2223 -2253.82 -24) (-2223 -2430.82 -24) (-2215 -2430.82 -24)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -27.4214] 0.25" + "vaxis" "[0 -1 0 4.70999] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246674" + "plane" "(-2223 -2430.82 -24) (-2223 -2253.82 -24) (-2223 -2253.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246673" + "plane" "(-2215 -2253.82 -24) (-2215 -2430.82 -24) (-2215 -2430.82 152)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 750.74] 0.172855" + "vaxis" "[0 0 -1 442.182] 0.34375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246672" + "plane" "(-2223 -2253.82 -24) (-2215 -2253.82 -24) (-2215 -2253.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -27.4214] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246671" + "plane" "(-2215 -2430.82 -24) (-2223 -2430.82 -24) (-2223 -2430.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -27.4214] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1172656" + side + { + "id" "246685" + "plane" "(-2230.15 -2244.82 -24) (-2226.15 -2253.82 -24) (-2210.15 -2253.82 -24)" + "material" "CONCRETE/CONCRETEWALL_HANDLING01A_BLUE" + "uaxis" "[0 -1 0 -67.272] 0.25" + "vaxis" "[-1 0 0 475.594] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246684" + "plane" "(-2206.15 -2244.82 152) (-2210.15 -2253.82 152) (-2226.14 -2253.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20.71] 0.25" + "vaxis" "[-1 0 0 11.4209] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246683" + "plane" "(-2206.14 -2244.82 -24) (-2210.14 -2253.82 -24) (-2210.14 -2253.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246682" + "plane" "(-2226.14 -2253.82 -24) (-2230.14 -2244.82 -24) (-2230.14 -2244.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246681" + "plane" "(-2230.15 -2244.82 -24) (-2226.15 -2236.82 -24) (-2226.15 -2236.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246680" + "plane" "(-2226.14 -2236.82 -24) (-2218.15 -2233.82 -24) (-2218.14 -2233.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246679" + "plane" "(-2218.15 -2233.82 -24) (-2210.14 -2236.82 -24) (-2210.14 -2236.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246678" + "plane" "(-2210.14 -2236.82 -24) (-2206.14 -2244.82 -24) (-2206.14 -2244.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246677" + "plane" "(-2210.14 -2253.82 -24) (-2226.15 -2253.82 -24) (-2226.14 -2253.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1172657" + side + { + "id" "246694" + "plane" "(-2226.14 -2430.82 -24) (-2230.14 -2439.82 -24) (-2226.15 -2447.82 -24)" + "material" "CONCRETE/CONCRETEWALL_HANDLING01A_BLUE" + "uaxis" "[0 1 0 239.303] 0.25" + "vaxis" "[1 0 0 -211.267] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246693" + "plane" "(-2230.14 -2439.82 152) (-2226.14 -2430.82 152) (-2210.15 -2430.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52.71] 0.25" + "vaxis" "[1 0 0 -43.4209] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246692" + "plane" "(-2230.14 -2439.82 -24) (-2226.14 -2430.82 -24) (-2226.14 -2430.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246691" + "plane" "(-2210.14 -2430.82 -24) (-2206.14 -2439.82 -24) (-2206.14 -2439.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246690" + "plane" "(-2206.14 -2439.82 -24) (-2210.14 -2447.82 -24) (-2210.14 -2447.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246689" + "plane" "(-2210.15 -2447.82 -24) (-2218.14 -2450.82 -24) (-2218.14 -2450.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246688" + "plane" "(-2218.14 -2450.82 -24) (-2226.15 -2447.82 -24) (-2226.15 -2447.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246687" + "plane" "(-2226.14 -2447.82 -24) (-2230.14 -2439.82 -24) (-2230.14 -2439.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 -23] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246686" + "plane" "(-2226.14 -2430.82 -24) (-2210.15 -2430.82 -24) (-2210.14 -2430.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "225 174 0" + "groupid" "1172640" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "1172767" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-256 -2361.74 -24" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "1173062" + "classname" "prop_static" + "angles" "0 90 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_scissor_gate/nuke_scissor_gate01.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1404 -2154 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "1173086" + "classname" "prop_static" + "angles" "0 122.5 0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_scissor_gate/nuke_scissor_gate01.mdl" + "renderamt" "255" + "rendercolor" "218 230 77" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1344 -2509 -23.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1173394" + "classname" "hostage_entity" + "angles" "0 180 0" + "HostageSpawnExclusionGroup1" "1" + "HostageSpawnExclusionGroup10" "0" + "HostageSpawnExclusionGroup11" "0" + "HostageSpawnExclusionGroup12" "0" + "HostageSpawnExclusionGroup13" "0" + "HostageSpawnExclusionGroup14" "0" + "HostageSpawnExclusionGroup15" "0" + "HostageSpawnExclusionGroup16" "0" + "HostageSpawnExclusionGroup17" "0" + "HostageSpawnExclusionGroup18" "0" + "HostageSpawnExclusionGroup19" "0" + "HostageSpawnExclusionGroup2" "0" + "HostageSpawnExclusionGroup20" "0" + "HostageSpawnExclusionGroup21" "0" + "HostageSpawnExclusionGroup22" "0" + "HostageSpawnExclusionGroup23" "0" + "HostageSpawnExclusionGroup24" "0" + "HostageSpawnExclusionGroup25" "0" + "HostageSpawnExclusionGroup26" "0" + "HostageSpawnExclusionGroup27" "0" + "HostageSpawnExclusionGroup28" "0" + "HostageSpawnExclusionGroup29" "0" + "HostageSpawnExclusionGroup3" "0" + "HostageSpawnExclusionGroup30" "0" + "HostageSpawnExclusionGroup4" "0" + "HostageSpawnExclusionGroup5" "0" + "HostageSpawnExclusionGroup6" "0" + "HostageSpawnExclusionGroup7" "0" + "HostageSpawnExclusionGroup8" "0" + "HostageSpawnExclusionGroup9" "0" + "HostageSpawnRandomFactor" "1" + "HostageType" "0" + "origin" "-66 -2402 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1166104" + "classname" "func_detail" + solid + { + "id" "1166105" + side + { + "id" "246401" + "plane" "(-19.9998 -2430.82 152) (-19.9998 -2253.82 152) (-12.0001 -2253.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -23.4209] 0.25" + "vaxis" "[0 -1 0 20.71] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246400" + "plane" "(-19.9998 -2253.82 -24) (-19.9998 -2430.82 -24) (-12.0001 -2430.82 -24)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -7.4209] 0.25" + "vaxis" "[0 -1 0 4.71] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246399" + "plane" "(-20 -2430.82 -24) (-20 -2253.82 -24) (-20 -2253.82 152)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 750.74] 0.172855" + "vaxis" "[0 0 -1 442.182] 0.34375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246398" + "plane" "(-12.0002 -2253.82 -24) (-12.0002 -2430.82 -24) (-12.0002 -2430.82 152)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 751] 0.173" + "vaxis" "[0 0 -1 442] 0.344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246397" + "plane" "(-19.9998 -2253.82 -24) (-12.0002 -2253.82 -24) (-12 -2253.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -7.4209] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246396" + "plane" "(-12 -2430.82 -24) (-19.9998 -2430.82 -24) (-19.9998 -2430.82 152)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -7.4209] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166106" + side + { + "id" "246410" + "plane" "(-27.1465 -2244.82 -24) (-23.1466 -2253.82 -24) (-7.14642 -2253.82 -24)" + "material" "CONCRETE/CONCRETEWALL_HANDLING01A_BLUE" + "uaxis" "[0 -1 0 -67.272] 0.25" + "vaxis" "[-1 0 0 71.594] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246409" + "plane" "(-3.14661 -2244.82 152) (-7.14807 -2253.82 152) (-23.1448 -2253.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20.71] 0.25" + "vaxis" "[-1 0 0 55.4209] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246408" + "plane" "(-3.14471 -2244.82 -24) (-7.14441 -2253.82 -24) (-7.14441 -2253.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246407" + "plane" "(-23.1431 -2253.82 -24) (-27.144 -2244.82 -24) (-27.1445 -2244.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246406" + "plane" "(-27.1465 -2244.82 -24) (-23.1467 -2236.82 -24) (-23.1466 -2236.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246405" + "plane" "(-23.1436 -2236.82 -24) (-15.1479 -2233.82 -24) (-15.1447 -2233.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246404" + "plane" "(-15.1453 -2233.82 -24) (-7.14471 -2236.82 -24) (-7.14435 -2236.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246403" + "plane" "(-7.14447 -2236.82 -24) (-3.14453 -2244.82 -24) (-3.14453 -2244.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246402" + "plane" "(-7.14063 -2253.82 -24) (-23.145 -2253.82 -24) (-23.1445 -2253.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1166107" + side + { + "id" "246419" + "plane" "(-23.1447 -2430.82 -24) (-27.1448 -2439.82 -24) (-23.145 -2447.82 -24)" + "material" "CONCRETE/CONCRETEWALL_HANDLING01A_BLUE" + "uaxis" "[0 1 0 239.303] 0.25" + "vaxis" "[1 0 0 -319.267] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246418" + "plane" "(-27.1439 -2439.82 152) (-23.1428 -2430.82 152) (-7.15009 -2430.82 152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52.71] 0.25" + "vaxis" "[1 0 0 -23.4209] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246417" + "plane" "(-27.1447 -2439.82 -24) (-23.1444 -2430.82 -24) (-23.1426 -2430.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246416" + "plane" "(-7.14447 -2430.82 -24) (-3.14478 -2439.82 -24) (-3.14258 -2439.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246415" + "plane" "(-3.14453 -2439.82 -24) (-7.14423 -2447.82 -24) (-7.1441 -2447.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246414" + "plane" "(-7.146 -2447.82 -24) (-15.1432 -2450.82 -24) (-15.1443 -2450.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246413" + "plane" "(-15.1442 -2450.82 -24) (-23.1453 -2447.82 -24) (-23.1459 -2447.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246412" + "plane" "(-23.1447 -2447.82 -24) (-27.1426 -2439.82 -24) (-27.1445 -2439.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "246411" + "plane" "(-23.1445 -2430.82 -24) (-7.14496 -2430.82 -24) (-7.14453 -2430.82 152)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "225 174 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "225 174 0" + "groupid" "1172425" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "1166672" + "classname" "hostage_entity" + "angles" "0 0 0" + "HostageSpawnExclusionGroup1" "1" + "HostageSpawnExclusionGroup10" "0" + "HostageSpawnExclusionGroup11" "0" + "HostageSpawnExclusionGroup12" "0" + "HostageSpawnExclusionGroup13" "0" + "HostageSpawnExclusionGroup14" "0" + "HostageSpawnExclusionGroup15" "0" + "HostageSpawnExclusionGroup16" "0" + "HostageSpawnExclusionGroup17" "0" + "HostageSpawnExclusionGroup18" "0" + "HostageSpawnExclusionGroup19" "0" + "HostageSpawnExclusionGroup2" "0" + "HostageSpawnExclusionGroup20" "0" + "HostageSpawnExclusionGroup21" "0" + "HostageSpawnExclusionGroup22" "0" + "HostageSpawnExclusionGroup23" "0" + "HostageSpawnExclusionGroup24" "0" + "HostageSpawnExclusionGroup25" "0" + "HostageSpawnExclusionGroup26" "0" + "HostageSpawnExclusionGroup27" "0" + "HostageSpawnExclusionGroup28" "0" + "HostageSpawnExclusionGroup29" "0" + "HostageSpawnExclusionGroup3" "0" + "HostageSpawnExclusionGroup30" "0" + "HostageSpawnExclusionGroup4" "0" + "HostageSpawnExclusionGroup5" "0" + "HostageSpawnExclusionGroup6" "0" + "HostageSpawnExclusionGroup7" "0" + "HostageSpawnExclusionGroup8" "0" + "HostageSpawnExclusionGroup9" "0" + "HostageSpawnRandomFactor" "1" + "HostageType" "0" + "origin" "-1363 -2342 -21" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "1160259" + "classname" "func_detail" + solid + { + "id" "2486780" + side + { + "id" "306802" + "plane" "(232 -2422 144) (232 -2392 144) (264 -2392 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -746] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306801" + "plane" "(232 -2392 0) (232 -2422 0) (264 -2422 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" "306800" + "plane" "(232 -2422 0) (232 -2392 0) (232 -2392 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306799" + "plane" "(264 -2392 0) (264 -2422 0) (264 -2422 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306798" + "plane" "(232 -2392 0) (264 -2392 0) (264 -2392 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306797" + "plane" "(264 -2422 0) (232 -2422 0) (232 -2422 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486796" + side + { + "id" "306838" + "plane" "(232 -2422 0) (232 -2670 0) (264 -2670 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" "306837" + "plane" "(232 -2670 24) (232 -2670 0) (232 -2422 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306836" + "plane" "(264 -2422 24) (264 -2422 0) (264 -2670 0)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306835" + "plane" "(232 -2422 24) (232 -2422 0) (264 -2422 0)" + "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" "306834" + "plane" "(264 -2670 24) (264 -2670 0) (232 -2670 0)" + "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" "306833" + "plane" "(232 -2670 24) (232 -2422 24) (264 -2422 24)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486783" + side + { + "id" "306808" + "plane" "(232 -2700 144) (232 -2670 144) (264 -2670 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -746] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306807" + "plane" "(232 -2670 0) (232 -2700 0) (264 -2700 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" "306806" + "plane" "(232 -2700 0) (232 -2670 0) (232 -2670 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306805" + "plane" "(264 -2670 0) (264 -2700 0) (264 -2700 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306804" + "plane" "(264 -2700 0) (232 -2700 0) (232 -2700 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" "306803" + "plane" "(232 -2670 0) (264 -2670 0) (264 -2670 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[-1 0 0 -303.998] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486789" + side + { + "id" "306820" + "plane" "(232 -2670 144) (232 -2422 144) (264 -2422 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -746] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306819" + "plane" "(232 -2422 120) (232 -2422 144) (232 -2670 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306818" + "plane" "(264 -2670 120) (264 -2670 144) (264 -2422 144)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306817" + "plane" "(264 -2422 120) (264 -2422 144) (232 -2422 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" "306816" + "plane" "(232 -2670 120) (232 -2670 144) (264 -2670 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" "306815" + "plane" "(232 -2422 120) (232 -2670 120) (264 -2670 120)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[-1 0 0 598] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2486795" + side + { + "id" "306832" + "plane" "(232 -2670 120) (232 -2670 24) (232 -2422 24)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 470] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306831" + "plane" "(260 -2422 120) (260 -2422 24) (260 -2670 24)" + "material" "CS_APOLLO/EXHIBITS/EXHIBIT_INFO_PLACEHOLDER_BLUE" + "uaxis" "[0 1 0 784.517] 0.242188" + "vaxis" "[0 0 -1 128] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "306830" + "plane" "(232 -2422 120) (232 -2422 24) (260 -2422 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" + } + side + { + "id" "306829" + "plane" "(260 -2670 120) (260 -2670 24) (232 -2670 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" + } + side + { + "id" "306828" + "plane" "(232 -2670 120) (232 -2422 120) (260 -2422 120)" + "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" "306827" + "plane" "(232 -2422 24) (232 -2670 24) (260 -2670 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" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12768]" + } +} +entity +{ + "id" "1150237" + "classname" "func_detail" + solid + { + "id" "5933921" + side + { + "id" "371260" + "plane" "(-1088 -3152 0) (-1088 -3168 0) (-1024 -3168 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" "371259" + "plane" "(-1088 -3168 0) (-1088 -3152 0) (-1088 -3152 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371258" + "plane" "(-1024 -3152 0) (-1024 -3168 0) (-1024 -3168 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371257" + "plane" "(-1088 -3152 0) (-1024 -3152 0) (-1024 -3152 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371256" + "plane" "(-1024 -3168 0) (-1088 -3168 0) (-1088 -3168 84)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371255" + "plane" "(-1088 -3168 84) (-1088 -3152 84) (-1024 -3152 84)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5933920" + side + { + "id" "371254" + "plane" "(-1086 -3171 88) (-1086 -3152 88) (-1024 -3152 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371253" + "plane" "(-1086 -3152 84) (-1086 -3152 88) (-1086 -3171 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" "371252" + "plane" "(-1024 -3171 84) (-1024 -3171 88) (-1024 -3152 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" "371251" + "plane" "(-1024 -3152 84) (-1024 -3152 88) (-1086 -3152 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" + } + side + { + "id" "371250" + "plane" "(-1086 -3171 84) (-1086 -3171 88) (-1024 -3171 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 0 -1 125.994] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371249" + "plane" "(-1086 -3152 84) (-1086 -3171 84) (-1024 -3171 84)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 1 0 245.99] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 4000]" + } +} +entity +{ + "id" "1150688" + "classname" "func_detail" + solid + { + "id" "1150689" + side + { + "id" "244418" + "plane" "(-376 -2896 416) (-376 -2896 210) (-376 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244417" + "plane" "(-378 -2896 210) (-376 -2896 210) (-376 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 46.9922] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244416" + "plane" "(-376 -2912 416) (-376 -2912 210) (-378 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -48.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244415" + "plane" "(-378 -2896 416) (-376 -2896 416) (-376 -2912 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244414" + "plane" "(-378 -2912 210) (-376 -2912 210) (-376 -2896 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244413" + "plane" "(-378 -2912 416) (-378 -2912 210) (-378 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 62.9688] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150690" + side + { + "id" "244424" + "plane" "(-378 -2912 416) (-478 -2912 416) (-478 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.9937] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244423" + "plane" "(-378 -2896 414) (-478 -2896 414) (-478 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244422" + "plane" "(-478 -2896 414) (-378 -2896 414) (-378 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244421" + "plane" "(-378 -2912 414) (-478 -2912 414) (-478 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244420" + "plane" "(-478 -2912 414) (-478 -2896 414) (-478 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244419" + "plane" "(-378 -2896 414) (-378 -2912 414) (-378 -2912 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150691" + side + { + "id" "244430" + "plane" "(-376 -2896 208) (-480 -2896 208) (-480 -2912 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244429" + "plane" "(-480 -2896 208) (-376 -2896 208) (-376 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244428" + "plane" "(-376 -2912 208) (-480 -2912 208) (-480 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244427" + "plane" "(-376 -2912 210) (-480 -2912 210) (-480 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244426" + "plane" "(-480 -2912 210) (-480 -2912 208) (-480 -2896 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244425" + "plane" "(-376 -2896 210) (-376 -2896 208) (-376 -2912 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 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" "1150692" + side + { + "id" "244436" + "plane" "(-429 -2912 414) (-429 -2912 353) (-429 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244435" + "plane" "(-427 -2896 414) (-427 -2896 353) (-427 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244434" + "plane" "(-429 -2896 414) (-429 -2896 353) (-427 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 40.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244433" + "plane" "(-427 -2912 414) (-427 -2912 353) (-429 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -38.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244432" + "plane" "(-429 -2896 353) (-429 -2912 353) (-427 -2912 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244431" + "plane" "(-429 -2912 414) (-429 -2896 414) (-427 -2896 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150693" + side + { + "id" "244442" + "plane" "(-429 -2896 210) (-429 -2912 210) (-427 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244441" + "plane" "(-429 -2912 278) (-429 -2912 210) (-429 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244440" + "plane" "(-427 -2896 278) (-427 -2896 210) (-427 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244439" + "plane" "(-429 -2896 278) (-429 -2896 210) (-427 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 40.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244438" + "plane" "(-427 -2912 278) (-427 -2912 210) (-429 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -38.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244437" + "plane" "(-429 -2912 278) (-429 -2896 278) (-427 -2896 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150694" + side + { + "id" "244448" + "plane" "(-480 -2912 416) (-480 -2912 210) (-480 -2896 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244447" + "plane" "(-480 -2896 416) (-480 -2896 210) (-478 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 15.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244446" + "plane" "(-478 -2912 210) (-480 -2912 210) (-480 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -15.9922] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244445" + "plane" "(-478 -2912 416) (-480 -2912 416) (-480 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -63.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244444" + "plane" "(-478 -2896 210) (-480 -2896 210) (-480 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244443" + "plane" "(-478 -2896 416) (-478 -2896 210) (-478 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150695" + side + { + "id" "244454" + "plane" "(-378 -2912 353) (-478 -2912 353) (-478 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244453" + "plane" "(-378 -2896 351) (-478 -2896 351) (-478 -2912 351)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 -1 0 0.970703] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244452" + "plane" "(-478 -2896 351) (-378 -2896 351) (-378 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244451" + "plane" "(-378 -2912 351) (-478 -2912 351) (-478 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 0 1 -54.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244450" + "plane" "(-478 -2912 351) (-478 -2896 351) (-478 -2896 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244449" + "plane" "(-378 -2896 351) (-378 -2912 351) (-378 -2912 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 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" "1150696" + side + { + "id" "244460" + "plane" "(-429 -2912 351) (-429 -2912 280) (-429 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244459" + "plane" "(-427 -2896 351) (-427 -2896 280) (-427 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244458" + "plane" "(-429 -2896 351) (-429 -2896 280) (-427 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 40.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244457" + "plane" "(-427 -2912 351) (-427 -2912 280) (-429 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 -38.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244456" + "plane" "(-429 -2912 351) (-429 -2896 351) (-427 -2896 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244455" + "plane" "(-429 -2896 280) (-429 -2912 280) (-427 -2912 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1150697" + side + { + "id" "244466" + "plane" "(-378 -2912 280) (-478 -2912 280) (-478 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244465" + "plane" "(-378 -2896 278) (-478 -2896 278) (-478 -2912 278)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244464" + "plane" "(-478 -2896 278) (-378 -2896 278) (-378 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244463" + "plane" "(-378 -2912 278) (-478 -2912 278) (-478 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 63.996] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244462" + "plane" "(-478 -2912 278) (-478 -2896 278) (-478 -2896 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244461" + "plane" "(-378 -2896 278) (-378 -2912 278) (-378 -2912 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "1150698" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-402.5 -2903.99 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1150699" + side + { + "id" "244472" + "plane" "(-427 -2905 414) (-427 -2903 414) (-378 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -43.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244471" + "plane" "(-427 -2903 353) (-427 -2905 353) (-378 -2905 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 43.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244470" + "plane" "(-427 -2905 353) (-427 -2903 353) (-427 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244469" + "plane" "(-378 -2903 353) (-378 -2905 353) (-378 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244468" + "plane" "(-427 -2903 353) (-378 -2903 353) (-378 -2903 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -182.857] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244467" + "plane" "(-378 -2905 353) (-427 -2905 353) (-427 -2905 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 182.857] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "1150701" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-453.5 -2903.99 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1150702" + side + { + "id" "244478" + "plane" "(-478 -2905 414) (-478 -2903 414) (-429 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244477" + "plane" "(-478 -2903 353) (-478 -2905 353) (-429 -2905 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244476" + "plane" "(-478 -2905 353) (-478 -2903 353) (-478 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244475" + "plane" "(-429 -2903 353) (-429 -2905 353) (-429 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244474" + "plane" "(-478 -2903 353) (-429 -2903 353) (-429 -2903 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -193.306] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244473" + "plane" "(-429 -2905 353) (-478 -2905 353) (-478 -2905 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 193.306] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "1150704" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-453.5 -2903.99 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1150705" + side + { + "id" "244484" + "plane" "(-478 -2905 351) (-478 -2903 351) (-429 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244483" + "plane" "(-478 -2903 280) (-478 -2905 280) (-429 -2905 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244482" + "plane" "(-478 -2905 280) (-478 -2903 280) (-478 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244481" + "plane" "(-429 -2903 280) (-429 -2905 280) (-429 -2905 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244480" + "plane" "(-478 -2903 280) (-429 -2903 280) (-429 -2903 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -193.306] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244479" + "plane" "(-429 -2905 280) (-478 -2905 280) (-478 -2905 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 193.306] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "1150707" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-402.5 -2903.99 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1150708" + side + { + "id" "244490" + "plane" "(-427 -2905 351) (-427 -2903 351) (-378 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -43.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244489" + "plane" "(-427 -2903 280) (-427 -2905 280) (-378 -2905 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 43.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244488" + "plane" "(-427 -2905 280) (-427 -2903 280) (-427 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244487" + "plane" "(-378 -2903 280) (-378 -2905 280) (-378 -2905 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244486" + "plane" "(-427 -2903 280) (-378 -2903 280) (-378 -2903 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -182.857] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244485" + "plane" "(-378 -2905 280) (-427 -2905 280) (-427 -2905 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 182.857] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "1150710" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-402.5 -2903.99 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1150711" + side + { + "id" "244496" + "plane" "(-427 -2905 278) (-427 -2903 278) (-378 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -43.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244495" + "plane" "(-427 -2903 210) (-427 -2905 210) (-378 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 43.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244494" + "plane" "(-427 -2905 210) (-427 -2903 210) (-427 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244493" + "plane" "(-378 -2903 210) (-378 -2905 210) (-378 -2905 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244492" + "plane" "(-427 -2903 210) (-378 -2903 210) (-378 -2903 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -182.857] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244491" + "plane" "(-378 -2905 210) (-427 -2905 210) (-427 -2905 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 182.857] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "1150713" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-453.5 -2903.99 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1150714" + side + { + "id" "244502" + "plane" "(-478 -2905 278) (-478 -2903 278) (-429 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244501" + "plane" "(-478 -2903 210) (-478 -2905 210) (-429 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 31.998] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244500" + "plane" "(-478 -2905 210) (-478 -2903 210) (-478 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244499" + "plane" "(-429 -2903 210) (-429 -2905 210) (-429 -2905 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244498" + "plane" "(-478 -2903 210) (-429 -2903 210) (-429 -2903 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 193.306] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244497" + "plane" "(-429 -2905 210) (-478 -2905 210) (-478 -2905 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 193.306] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "1150796" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-710 -3048.05 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "1150993" + "classname" "prop_static" + "angles" "90 176.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_twin_spot_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-861 -3039.95 191.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -5268]" + } + } +} +entity +{ + "id" "1150997" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-54.1872 316.693 -145.949" + "pitch" "-54.1872" + "spawnflags" "0" + "style" "0" + "origin" "-855.903 -3049.33 173.496" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "1151002" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-54.1872 46.693 -145.949" + "pitch" "-54.1872" + "spawnflags" "0" + "style" "0" + "origin" "-854.872 -3031 173.496" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +hidden +{ + entity + { + "id" "1151049" + "classname" "prop_static" + "angles" "90 357.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_twin_spot_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-430 -3038.29 191.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -5268]" + } + } +} +entity +{ + "id" "1151053" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-54.1872 137.693 -145.949" + "pitch" "-54.1872" + "spawnflags" "0" + "style" "0" + "origin" "-435.26 -3029 173.496" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "1151058" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-54.1872 227.693 -145.949" + "pitch" "-54.1872" + "spawnflags" "0" + "style" "0" + "origin" "-435.971 -3047.35 173.496" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "1151095" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-54.1872 230.193 -145.949" + "pitch" "-54.1872" + "spawnflags" "0" + "style" "0" + "origin" "-705 -3045 173.496" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "1151100" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-54.1872 320.193 -145.949" + "pitch" "-54.1872" + "spawnflags" "0" + "style" "0" + "origin" "-686.64 -3044.91 173.496" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +hidden +{ + entity + { + "id" "1151119" + "classname" "prop_static" + "angles" "90 267 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_twin_spot_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "6" + "uniformscale" "1" + "origin" "-696.334 -3038 191.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -5268]" + } + } +} +entity +{ + "id" "1151123" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-54.1872 47.193 -145.949" + "pitch" "-54.1872" + "spawnflags" "0" + "style" "0" + "origin" "-687 -3032.82 173.496" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "1151128" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "1000" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "252 255 230 200" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-54.1872 137.193 -145.949" + "pitch" "-54.1872" + "spawnflags" "0" + "style" "0" + "origin" "-705.339 -3031.95 173.496" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "1151213" + "classname" "func_detail" + solid + { + "id" "1151214" + side + { + "id" "244820" + "plane" "(-1747 -2896 414) (-1747 -2896 130) (-1747 -2912 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244819" + "plane" "(-1749 -2896 130) (-1747 -2896 130) (-1747 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -41.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244818" + "plane" "(-1747 -2912 414) (-1747 -2912 130) (-1749 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244817" + "plane" "(-1749 -2896 414) (-1747 -2896 414) (-1747 -2912 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244816" + "plane" "(-1749 -2912 130) (-1747 -2912 130) (-1747 -2896 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244815" + "plane" "(-1749 -2912 414) (-1749 -2912 130) (-1749 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -0.998047] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151215" + side + { + "id" "244826" + "plane" "(-1749 -2912 345) (-1849 -2912 345) (-1849 -2896 345)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244825" + "plane" "(-1749 -2896 343) (-1849 -2896 343) (-1849 -2912 343)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 0.00389862] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244824" + "plane" "(-1849 -2896 343) (-1749 -2896 343) (-1749 -2896 345)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244823" + "plane" "(-1749 -2912 343) (-1849 -2912 343) (-1849 -2912 345)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 -7.99414] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244822" + "plane" "(-1849 -2912 343) (-1849 -2896 343) (-1849 -2896 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244821" + "plane" "(-1749 -2896 343) (-1749 -2912 343) (-1749 -2912 345)" + "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" "1151216" + side + { + "id" "244832" + "plane" "(-1800 -2912 414) (-1800 -2896 414) (-1798 -2896 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244831" + "plane" "(-1800 -2896 345) (-1800 -2896 414) (-1800 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244830" + "plane" "(-1798 -2912 345) (-1798 -2912 414) (-1798 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244829" + "plane" "(-1798 -2896 345) (-1798 -2896 414) (-1800 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -47.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244828" + "plane" "(-1800 -2912 345) (-1800 -2912 414) (-1798 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244827" + "plane" "(-1800 -2896 345) (-1800 -2912 345) (-1798 -2912 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151217" + side + { + "id" "244838" + "plane" "(-1800 -2912 343) (-1800 -2912 273) (-1800 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244837" + "plane" "(-1798 -2896 343) (-1798 -2896 273) (-1798 -2912 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244836" + "plane" "(-1800 -2896 343) (-1800 -2896 273) (-1798 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -47.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244835" + "plane" "(-1798 -2912 343) (-1798 -2912 273) (-1800 -2912 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244834" + "plane" "(-1800 -2896 273) (-1800 -2912 273) (-1798 -2912 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244833" + "plane" "(-1800 -2912 343) (-1800 -2896 343) (-1798 -2896 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151218" + side + { + "id" "244844" + "plane" "(-1747 -2912 416) (-1851 -2912 416) (-1851 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244843" + "plane" "(-1851 -2896 414) (-1747 -2896 414) (-1747 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 47.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244842" + "plane" "(-1747 -2912 414) (-1851 -2912 414) (-1851 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 15.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244841" + "plane" "(-1747 -2896 414) (-1851 -2896 414) (-1851 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244840" + "plane" "(-1851 -2896 414) (-1851 -2896 416) (-1851 -2912 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" "244839" + "plane" "(-1747 -2912 414) (-1747 -2912 416) (-1747 -2896 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151219" + side + { + "id" "244850" + "plane" "(-1851 -2912 414) (-1851 -2912 130) (-1851 -2896 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244849" + "plane" "(-1851 -2896 414) (-1851 -2896 130) (-1849 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -7.99805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244848" + "plane" "(-1849 -2912 130) (-1851 -2912 130) (-1851 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 8.00391] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244847" + "plane" "(-1849 -2912 414) (-1851 -2912 414) (-1851 -2896 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244846" + "plane" "(-1849 -2896 130) (-1851 -2896 130) (-1851 -2912 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244845" + "plane" "(-1849 -2896 414) (-1849 -2896 130) (-1849 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151220" + side + { + "id" "244856" + "plane" "(-1749 -2912 273) (-1849 -2912 273) (-1849 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244855" + "plane" "(-1749 -2896 271) (-1849 -2896 271) (-1849 -2912 271)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 1.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244854" + "plane" "(-1849 -2896 271) (-1749 -2896 271) (-1749 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 -7] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244853" + "plane" "(-1749 -2912 271) (-1849 -2912 271) (-1849 -2912 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 9.00195] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244852" + "plane" "(-1849 -2912 271) (-1849 -2896 271) (-1849 -2896 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244851" + "plane" "(-1749 -2896 271) (-1749 -2912 271) (-1749 -2912 273)" + "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" "1151221" + side + { + "id" "244862" + "plane" "(-1800 -2912 271) (-1800 -2912 200) (-1800 -2896 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244861" + "plane" "(-1798 -2896 271) (-1798 -2896 200) (-1798 -2912 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244860" + "plane" "(-1800 -2896 271) (-1800 -2896 200) (-1798 -2896 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -47.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244859" + "plane" "(-1798 -2912 271) (-1798 -2912 200) (-1800 -2912 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244858" + "plane" "(-1800 -2912 271) (-1800 -2896 271) (-1798 -2896 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244857" + "plane" "(-1800 -2896 200) (-1800 -2912 200) (-1798 -2912 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151222" + side + { + "id" "244868" + "plane" "(-1749 -2912 200) (-1849 -2912 200) (-1849 -2896 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244867" + "plane" "(-1749 -2896 198) (-1849 -2896 198) (-1849 -2912 198)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 0.00389862] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244866" + "plane" "(-1849 -2896 198) (-1749 -2896 198) (-1749 -2896 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244865" + "plane" "(-1749 -2912 198) (-1849 -2912 198) (-1849 -2912 200)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244864" + "plane" "(-1849 -2912 198) (-1849 -2896 198) (-1849 -2896 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244863" + "plane" "(-1749 -2896 198) (-1749 -2912 198) (-1749 -2912 200)" + "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" "1151223" + side + { + "id" "244874" + "plane" "(-1800 -2896 130) (-1800 -2912 130) (-1798 -2912 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244873" + "plane" "(-1800 -2912 198) (-1800 -2912 130) (-1800 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244872" + "plane" "(-1798 -2896 198) (-1798 -2896 130) (-1798 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244871" + "plane" "(-1800 -2896 198) (-1800 -2896 130) (-1798 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -47.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244870" + "plane" "(-1798 -2912 198) (-1798 -2912 130) (-1800 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244869" + "plane" "(-1800 -2912 198) (-1800 -2896 198) (-1798 -2896 198)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151224" + side + { + "id" "244880" + "plane" "(-1747 -2896 128) (-1851 -2896 128) (-1851 -2912 128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244879" + "plane" "(-1851 -2896 128) (-1747 -2896 128) (-1747 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 1 47.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244878" + "plane" "(-1747 -2912 128) (-1851 -2912 128) (-1851 -2912 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244877" + "plane" "(-1747 -2912 130) (-1851 -2912 130) (-1851 -2896 130)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -216] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244876" + "plane" "(-1851 -2912 130) (-1851 -2912 128) (-1851 -2896 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" "244875" + "plane" "(-1747 -2896 130) (-1747 -2896 128) (-1747 -2912 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "1151225" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1773.5 -2904 235.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151226" + side + { + "id" "244886" + "plane" "(-1798 -2905 271) (-1798 -2903 271) (-1749 -2903 271)" + "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" "244885" + "plane" "(-1798 -2903 200) (-1798 -2905 200) (-1749 -2905 200)" + "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" "244884" + "plane" "(-1798 -2905 200) (-1798 -2903 200) (-1798 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244883" + "plane" "(-1749 -2903 200) (-1749 -2905 200) (-1749 -2905 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244882" + "plane" "(-1798 -2903 200) (-1749 -2903 200) (-1749 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244881" + "plane" "(-1749 -2905 200) (-1798 -2905 200) (-1798 -2905 271)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 177.633] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "1151228" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1773.5 -2904 164" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151229" + side + { + "id" "244892" + "plane" "(-1798 -2905 198) (-1798 -2903 198) (-1749 -2903 198)" + "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" "244891" + "plane" "(-1798 -2903 130) (-1798 -2905 130) (-1749 -2905 130)" + "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" "244890" + "plane" "(-1798 -2905 130) (-1798 -2903 130) (-1798 -2903 198)" + "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" "244889" + "plane" "(-1749 -2903 130) (-1749 -2905 130) (-1749 -2905 198)" + "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" "244888" + "plane" "(-1798 -2903 130) (-1749 -2903 130) (-1749 -2903 198)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244887" + "plane" "(-1749 -2905 130) (-1798 -2905 130) (-1798 -2905 198)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 177.633] 0.191406" + "vaxis" "[0 0 -1 233.412] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "1151231" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1824.5 -2904 164" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151232" + side + { + "id" "244898" + "plane" "(-1849 -2905 198) (-1849 -2903 198) (-1800 -2903 198)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244897" + "plane" "(-1849 -2903 130) (-1849 -2905 130) (-1800 -2905 130)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244896" + "plane" "(-1849 -2905 130) (-1849 -2903 130) (-1849 -2903 198)" + "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" "244895" + "plane" "(-1800 -2903 130) (-1800 -2905 130) (-1800 -2905 198)" + "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" "244894" + "plane" "(-1849 -2903 130) (-1800 -2903 130) (-1800 -2903 198)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244893" + "plane" "(-1800 -2905 130) (-1849 -2905 130) (-1849 -2905 198)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 188.082] 0.191406" + "vaxis" "[0 0 -1 233.412] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "1151234" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1824.5 -2904 235.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151235" + side + { + "id" "244904" + "plane" "(-1849 -2905 271) (-1849 -2903 271) (-1800 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244903" + "plane" "(-1849 -2903 200) (-1849 -2905 200) (-1800 -2905 200)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244902" + "plane" "(-1849 -2905 200) (-1849 -2903 200) (-1849 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244901" + "plane" "(-1800 -2903 200) (-1800 -2905 200) (-1800 -2905 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244900" + "plane" "(-1849 -2903 200) (-1800 -2903 200) (-1800 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244899" + "plane" "(-1800 -2905 200) (-1849 -2905 200) (-1849 -2905 271)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 188.082] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "1151237" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1824.5 -2904 308" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151238" + side + { + "id" "244910" + "plane" "(-1849 -2905 343) (-1849 -2903 343) (-1800 -2903 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244909" + "plane" "(-1849 -2903 273) (-1849 -2905 273) (-1800 -2905 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244908" + "plane" "(-1849 -2905 273) (-1849 -2903 273) (-1849 -2903 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244907" + "plane" "(-1800 -2903 273) (-1800 -2905 273) (-1800 -2905 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244906" + "plane" "(-1849 -2903 273) (-1800 -2903 273) (-1800 -2903 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244905" + "plane" "(-1800 -2905 273) (-1849 -2905 273) (-1849 -2905 343)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 188.082] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "1151240" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1773.5 -2904 308" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151241" + side + { + "id" "244916" + "plane" "(-1798 -2905 343) (-1798 -2903 343) (-1749 -2903 343)" + "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" "244915" + "plane" "(-1798 -2903 273) (-1798 -2905 273) (-1749 -2905 273)" + "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" "244914" + "plane" "(-1798 -2905 273) (-1798 -2903 273) (-1798 -2903 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244913" + "plane" "(-1749 -2903 273) (-1749 -2905 273) (-1749 -2905 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244912" + "plane" "(-1798 -2903 273) (-1749 -2903 273) (-1749 -2903 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244911" + "plane" "(-1749 -2905 273) (-1798 -2905 273) (-1798 -2905 343)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 177.633] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "1151243" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1773.5 -2904 379.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151244" + side + { + "id" "244922" + "plane" "(-1798 -2905 414) (-1798 -2903 414) (-1749 -2903 414)" + "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" "244921" + "plane" "(-1798 -2903 345) (-1798 -2905 345) (-1749 -2905 345)" + "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" "244920" + "plane" "(-1798 -2905 345) (-1798 -2903 345) (-1798 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244919" + "plane" "(-1749 -2903 345) (-1749 -2905 345) (-1749 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244918" + "plane" "(-1798 -2903 345) (-1749 -2903 345) (-1749 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244917" + "plane" "(-1749 -2905 345) (-1798 -2905 345) (-1798 -2905 414)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 177.633] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12000]" + } +} +entity +{ + "id" "1151246" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-1824.5 -2904 379.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151247" + side + { + "id" "244928" + "plane" "(-1849 -2905 414) (-1849 -2903 414) (-1800 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244927" + "plane" "(-1849 -2903 345) (-1849 -2905 345) (-1800 -2905 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244926" + "plane" "(-1849 -2905 345) (-1849 -2903 345) (-1849 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244925" + "plane" "(-1800 -2903 345) (-1800 -2905 345) (-1800 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244924" + "plane" "(-1849 -2903 345) (-1800 -2903 345) (-1800 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "244923" + "plane" "(-1800 -2905 345) (-1849 -2905 345) (-1849 -2905 414)" + "material" "GLASS/HR_G/HR_GLASS_001" + "uaxis" "[1 0 0 188.082] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 11500]" + } +} +entity +{ + "id" "1151782" + "classname" "func_detail" + solid + { + "id" "1151783" + side + { + "id" "245600" + "plane" "(384 -2434 416) (384 -2434 210) (399.999 -2434 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245599" + "plane" "(383.999 -2436 210) (383.999 -2434 210) (383.999 -2434 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 30.9922] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245598" + "plane" "(399.999 -2434 416) (399.999 -2434 210) (399.999 -2436 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -32.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245597" + "plane" "(384 -2436 416) (384 -2434 416) (399.999 -2434 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -55.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245596" + "plane" "(400 -2436 210) (400 -2434 210) (384 -2434 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 55.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245595" + "plane" "(399.999 -2436 416) (399.999 -2436 210) (384 -2436 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 62.9824] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151784" + side + { + "id" "245606" + "plane" "(399.999 -2436 416) (399.999 -2536 416) (384 -2536 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 55.9932] 0.25" + "vaxis" "[-1 0 0 -0.00585938] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245605" + "plane" "(384 -2436 414) (384 -2536 414) (399.999 -2536 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245604" + "plane" "(383.999 -2536 414) (383.999 -2436 414) (383.999 -2436 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245603" + "plane" "(399.999 -2436 414) (399.999 -2536 414) (399.999 -2536 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245602" + "plane" "(400 -2536 414) (384 -2536 414) (384 -2536 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245601" + "plane" "(384 -2436 414) (399.999 -2436 414) (400 -2436 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151785" + side + { + "id" "245612" + "plane" "(384 -2434 208) (384 -2538 208) (399.999 -2538 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245611" + "plane" "(383.999 -2538 208) (383.999 -2434 208) (383.999 -2434 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245610" + "plane" "(399.999 -2434 208) (399.999 -2538 208) (399.999 -2538 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245609" + "plane" "(399.999 -2434 210) (399.999 -2538 210) (384 -2538 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245608" + "plane" "(400 -2538 210) (400 -2538 208) (384 -2538 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245607" + "plane" "(384 -2434 210) (384 -2434 208) (399.999 -2434 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 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" "1151786" + side + { + "id" "245618" + "plane" "(399.999 -2487 414) (399.999 -2487 353) (384 -2487 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245617" + "plane" "(384 -2485 414) (384 -2485 353) (399.999 -2485 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -62.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245616" + "plane" "(383.999 -2487 414) (383.999 -2487 353) (383.999 -2485 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 24.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245615" + "plane" "(399.999 -2485 414) (399.999 -2485 353) (399.999 -2487 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -22.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245614" + "plane" "(384 -2487 353) (399.999 -2487 353) (400 -2485 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245613" + "plane" "(400 -2487 414) (384 -2487 414) (384 -2485 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151787" + side + { + "id" "245624" + "plane" "(384 -2487 210) (399.999 -2487 210) (400 -2485 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245623" + "plane" "(400 -2487 278) (400 -2487 210) (384 -2487 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245622" + "plane" "(384 -2485 278) (384 -2485 210) (399.999 -2485 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -62.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245621" + "plane" "(383.999 -2487 278) (383.999 -2487 210) (383.999 -2485 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 24.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245620" + "plane" "(399.999 -2485 278) (399.999 -2485 210) (399.999 -2487 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -22.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245619" + "plane" "(400 -2487 278) (384 -2487 278) (384 -2485 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151788" + side + { + "id" "245630" + "plane" "(399.999 -2538 416) (399.999 -2538 210) (384 -2538 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245629" + "plane" "(383.999 -2538 416) (383.999 -2538 210) (383.999 -2536 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245628" + "plane" "(399.999 -2536 210) (399.999 -2538 210) (399.999 -2538 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -63.9922] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245627" + "plane" "(400 -2536 416) (400 -2538 416) (384 -2538 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -55.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245626" + "plane" "(384 -2536 210) (384 -2538 210) (399.999 -2538 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 55.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245625" + "plane" "(384 -2536 416) (384 -2536 210) (399.999 -2536 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151789" + side + { + "id" "245636" + "plane" "(399.999 -2436 353) (399.999 -2536 353) (384 -2536 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[-1 0 0 -63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245635" + "plane" "(384 -2436 351) (384 -2536 351) (399.999 -2536 351)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[1 0 0 0.984375] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245634" + "plane" "(383.999 -2536 351) (383.999 -2436 351) (383.999 -2436 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245633" + "plane" "(399.999 -2436 351) (399.999 -2536 351) (399.999 -2536 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[0 0 1 -54.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245632" + "plane" "(400 -2536 351) (384 -2536 351) (384 -2536 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245631" + "plane" "(384 -2436 351) (399.999 -2436 351) (400 -2436 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 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" "1151790" + side + { + "id" "245642" + "plane" "(399.999 -2487 351) (399.999 -2487 280) (384 -2487 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245641" + "plane" "(384 -2485 351) (384 -2485 280) (399.999 -2485 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -62.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245640" + "plane" "(383.999 -2487 351) (383.999 -2487 280) (383.999 -2485 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 24.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245639" + "plane" "(399.999 -2485 351) (399.999 -2485 280) (399.999 -2487 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -22.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245638" + "plane" "(400 -2487 351) (384 -2487 351) (384 -2485 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245637" + "plane" "(384 -2487 280) (399.999 -2487 280) (400 -2485 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151791" + side + { + "id" "245648" + "plane" "(399.999 -2436 280) (399.999 -2536 280) (384 -2536 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[-1 0 0 -63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245647" + "plane" "(384 -2436 278) (384 -2536 278) (399.999 -2536 278)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245646" + "plane" "(383.999 -2536 278) (383.999 -2436 278) (383.999 -2436 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245645" + "plane" "(399.999 -2436 278) (399.999 -2536 278) (399.999 -2536 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 175.996] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245644" + "plane" "(400 -2536 278) (384 -2536 278) (384 -2536 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245643" + "plane" "(384 -2436 278) (399.999 -2436 278) (400 -2436 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "1151792" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392 -2511.5 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151793" + side + { + "id" "245654" + "plane" "(393 -2536 278) (391 -2536 278) (391.004 -2487 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245653" + "plane" "(391.004 -2536 210) (392.999 -2536 210) (393 -2487 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245652" + "plane" "(393 -2536 210) (391 -2536 210) (391.004 -2536 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245651" + "plane" "(391.004 -2487 210) (392.999 -2487 210) (393 -2487 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245650" + "plane" "(390.998 -2536 210) (390.998 -2487 210) (390.998 -2487 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -62.6722] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245649" + "plane" "(392.998 -2487 210) (392.998 -2536 210) (392.998 -2536 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -62.6722] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "1151795" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392 -2460.5 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151796" + side + { + "id" "245660" + "plane" "(393 -2485 278) (391 -2485 278) (391.004 -2436 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -35.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245659" + "plane" "(391.004 -2485 210) (392.999 -2485 210) (393 -2436 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 35.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245658" + "plane" "(393 -2485 210) (391 -2485 210) (391.004 -2485 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245657" + "plane" "(391.004 -2436 210) (392.999 -2436 210) (393 -2436 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245656" + "plane" "(390.998 -2485 210) (390.998 -2436 210) (390.998 -2436 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 73.1214] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245655" + "plane" "(392.998 -2436 210) (392.998 -2485.01 210) (392.998 -2485 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -73.1214] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "1151798" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392 -2460.5 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151799" + side + { + "id" "245666" + "plane" "(393 -2485 351) (391 -2485 351) (391.004 -2436 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -35.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245665" + "plane" "(391.004 -2485 280) (392.999 -2485 280) (393 -2436 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 35.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245664" + "plane" "(393 -2485 280) (391 -2485 280) (391.004 -2485 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245663" + "plane" "(391.004 -2436 280) (392.999 -2436 280) (393 -2436 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245662" + "plane" "(390.999 -2485 280) (390.999 -2436 280) (390.999 -2436 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 73.1214] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245661" + "plane" "(392.999 -2436 280) (392.999 -2485.01 280) (392.999 -2485 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -73.1214] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "1151801" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392 -2511.5 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151802" + side + { + "id" "245672" + "plane" "(393 -2536 351) (391 -2536 351) (391.004 -2487 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245671" + "plane" "(391.004 -2536 280) (392.999 -2536 280) (393 -2487 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245670" + "plane" "(393 -2536 280) (391 -2536 280) (391.004 -2536 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245669" + "plane" "(391.004 -2487 280) (392.999 -2487 280) (393 -2487 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245668" + "plane" "(390.999 -2536 280) (390.999 -2487 280) (390.999 -2487 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 62.6722] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245667" + "plane" "(392.999 -2487 280) (392.999 -2536 280) (392.999 -2536 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -62.6722] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "1151804" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392 -2460.5 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151805" + side + { + "id" "245678" + "plane" "(393 -2485 414) (391 -2485 414) (391.004 -2436 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -35.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245677" + "plane" "(391.004 -2485 353) (392.999 -2485 353) (393 -2436 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 35.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245676" + "plane" "(393 -2485 353) (391 -2485 353) (391.004 -2485 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245675" + "plane" "(391.004 -2436 353) (392.999 -2436 353) (393 -2436 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245674" + "plane" "(390.998 -2485 353) (390.998 -2436 353) (390.998 -2436 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 73.1214] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245673" + "plane" "(392.998 -2436 353) (392.998 -2485.01 353) (392.998 -2485 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -73.1214] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "1151807" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392 -2511.5 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151808" + side + { + "id" "245684" + "plane" "(393 -2536 414) (391 -2536 414) (391.004 -2487 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245683" + "plane" "(391.004 -2536 353) (392.999 -2536 353) (393 -2487 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 23.998] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245682" + "plane" "(393 -2536 353) (391 -2536 353) (391.004 -2536 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245681" + "plane" "(391.004 -2487 353) (392.999 -2487 353) (393 -2487 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245680" + "plane" "(390.998 -2536 353) (390.998 -2487 353) (390.998 -2487 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 62.6722] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245679" + "plane" "(392.998 -2487 353) (392.998 -2536 353) (392.998 -2536 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -62.6722] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "1151811" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392.01 -2604.5 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151812" + side + { + "id" "245696" + "plane" "(393 -2629 278) (391 -2629 278) (391.004 -2580 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245695" + "plane" "(391.004 -2629 210) (392.999 -2629 210) (393 -2580 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245694" + "plane" "(393 -2629 210) (391 -2629 210) (391.004 -2629 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245693" + "plane" "(391.004 -2580 210) (392.999 -2580 210) (393 -2580 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245692" + "plane" "(390.998 -2629 210) (390.998 -2580 210) (390.998 -2580 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 88.8021] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245691" + "plane" "(392.998 -2580 210) (392.998 -2629 210) (392.998 -2629 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -88.8021] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "1151814" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392.01 -2604.5 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151815" + side + { + "id" "245702" + "plane" "(393 -2629 351) (391 -2629 351) (391.004 -2580 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245701" + "plane" "(391.004 -2629 280) (392.999 -2629 280) (393 -2580 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245700" + "plane" "(393 -2629 280) (391 -2629 280) (391.004 -2629 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245699" + "plane" "(391.004 -2580 280) (392.999 -2580 280) (393 -2580 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245698" + "plane" "(390.999 -2629 280) (390.999 -2580 280) (390.999 -2580 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 88.8021] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245697" + "plane" "(392.999 -2580 280) (392.999 -2629 280) (392.999 -2629 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -88.8021] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "1151817" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392.01 -2604.5 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151818" + side + { + "id" "245708" + "plane" "(393 -2629 414) (391 -2629 414) (391.004 -2580 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245707" + "plane" "(391.004 -2629 353) (392.999 -2629 353) (393 -2580 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245706" + "plane" "(393 -2629 353) (391 -2629 353) (391.004 -2629 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245705" + "plane" "(391.004 -2580 353) (392.999 -2580 353) (393 -2580 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245704" + "plane" "(390.998 -2629 353) (390.998 -2580 353) (390.998 -2580 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 88.8021] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245703" + "plane" "(392.998 -2580 353) (392.998 -2629 353) (392.998 -2629 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -88.8021] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "1151821" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392.01 -2655.5 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151822" + side + { + "id" "245720" + "plane" "(393 -2680 414) (391 -2680 414) (391.004 -2631 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245719" + "plane" "(391.004 -2680 353) (392.999 -2680 353) (393 -2631 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245718" + "plane" "(393 -2680 353) (391 -2680 353) (391.004 -2680 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245717" + "plane" "(391.004 -2631 353) (392.999 -2631 353) (393 -2631 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245716" + "plane" "(390.998 -2680 353) (390.998 -2631 353) (390.998 -2631 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 78.3529] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245715" + "plane" "(392.998 -2631 353) (392.998 -2680 353) (392.998 -2680 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -78.3529] 0.191406" + "vaxis" "[0 0 -1 10.9709] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "1151824" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392.01 -2655.5 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151825" + side + { + "id" "245726" + "plane" "(393 -2680 351) (391 -2680 351) (391.004 -2631 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245725" + "plane" "(391.004 -2680 280) (392.999 -2680 280) (393 -2631 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245724" + "plane" "(393 -2680 280) (391 -2680 280) (391.004 -2680 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245723" + "plane" "(391.004 -2631 280) (392.999 -2631 280) (393 -2631 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245722" + "plane" "(390.999 -2680 280) (390.999 -2631 280) (390.999 -2631 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 78.3529] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245721" + "plane" "(392.999 -2631 280) (392.999 -2680 280) (392.999 -2680 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -78.3529] 0.191406" + "vaxis" "[0 0 -1 241.577] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "1151827" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "392.01 -2655.5 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1151828" + side + { + "id" "245732" + "plane" "(393 -2680 278) (391 -2680 278) (391.004 -2631 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245731" + "plane" "(391.004 -2680 210) (392.999 -2680 210) (393 -2631 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245730" + "plane" "(393 -2680 210) (391 -2680 210) (391.004 -2680 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245729" + "plane" "(391.004 -2631 210) (392.999 -2631 210) (393 -2631 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245728" + "plane" "(390.998 -2680 210) (390.998 -2631 210) (390.998 -2631 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -78.3529] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245727" + "plane" "(392.998 -2631 210) (392.998 -2680 210) (392.998 -2680 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 -78.3529] 0.191406" + "vaxis" "[0 0 -1 22.5885] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "1151830" + "classname" "func_detail" + solid + { + "id" "1151831" + side + { + "id" "245738" + "plane" "(384 -2578 416) (384 -2578 210) (399.999 -2578 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245737" + "plane" "(383.999 -2580 210) (383.999 -2578 210) (383.999 -2578 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 31.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245736" + "plane" "(399.999 -2578 416) (399.999 -2578 210) (399.999 -2580 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -33.0078] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245735" + "plane" "(384 -2580 416) (384 -2578 416) (399.999 -2578 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245734" + "plane" "(400 -2580 210) (400 -2578 210) (384 -2578 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245733" + "plane" "(399.999 -2580 416) (399.999 -2580 210) (384 -2580 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 62.9824] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151832" + side + { + "id" "245744" + "plane" "(399.999 -2580 416) (399.999 -2680 416) (384 -2680 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56] 0.25" + "vaxis" "[-1 0 0 -0.00585938] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245743" + "plane" "(384 -2580 414) (384 -2680 414) (399.999 -2680 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245742" + "plane" "(383.999 -2680 414) (383.999 -2580 414) (383.999 -2580 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245741" + "plane" "(399.999 -2580 414) (399.999 -2680 414) (399.999 -2680 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245740" + "plane" "(400 -2680 414) (384 -2680 414) (384 -2680 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245739" + "plane" "(384 -2580 414) (399.999 -2580 414) (400 -2580 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151833" + side + { + "id" "245750" + "plane" "(384 -2578 208) (384 -2682 208) (399.999 -2682 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245749" + "plane" "(383.999 -2682 208) (383.999 -2578 208) (383.999 -2578 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245748" + "plane" "(399.999 -2578 208) (399.999 -2682 208) (399.999 -2682 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245747" + "plane" "(399.999 -2578 210) (399.999 -2682 210) (384 -2682 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245746" + "plane" "(400 -2682 210) (400 -2682 208) (384 -2682 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245745" + "plane" "(384 -2578 210) (384 -2578 208) (399.999 -2578 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 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" "1151834" + side + { + "id" "245756" + "plane" "(399.999 -2631 414) (399.999 -2631 353) (384 -2631 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245755" + "plane" "(384 -2629 414) (384 -2629 353) (399.999 -2629 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -62.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245754" + "plane" "(383.999 -2631 414) (383.999 -2631 353) (383.999 -2629 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 25.0059] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245753" + "plane" "(399.999 -2629 414) (399.999 -2629 353) (399.999 -2631 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -23.0078] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245752" + "plane" "(384 -2631 353) (399.999 -2631 353) (400 -2629 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245751" + "plane" "(400 -2631 414) (384 -2631 414) (384 -2629 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151835" + side + { + "id" "245762" + "plane" "(384 -2631 210) (399.999 -2631 210) (400 -2629 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245761" + "plane" "(400 -2631 278) (400 -2631 210) (384 -2631 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245760" + "plane" "(384 -2629 278) (384 -2629 210) (399.999 -2629 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -62.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245759" + "plane" "(383.999 -2631 278) (383.999 -2631 210) (383.999 -2629 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 25.0059] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245758" + "plane" "(399.999 -2629 278) (399.999 -2629 210) (399.999 -2631 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -23.0078] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245757" + "plane" "(400 -2631 278) (384 -2631 278) (384 -2629 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151836" + side + { + "id" "245768" + "plane" "(399.999 -2682 416) (399.999 -2682 210) (384 -2682 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245767" + "plane" "(383.999 -2682 416) (383.999 -2682 210) (383.999 -2680 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 0.00976563] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245766" + "plane" "(399.999 -2680 210) (399.999 -2682 210) (399.999 -2682 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -0.00390625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245765" + "plane" "(400 -2680 416) (400 -2682 416) (384 -2682 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245764" + "plane" "(384 -2680 210) (384 -2682 210) (399.999 -2682 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245763" + "plane" "(384 -2680 416) (384 -2680 210) (399.999 -2680 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151837" + side + { + "id" "245774" + "plane" "(399.999 -2580 353) (399.999 -2680 353) (384 -2680 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[-1 0 0 -63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245773" + "plane" "(384 -2580 351) (384 -2680 351) (399.999 -2680 351)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[1 0 0 0.984375] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245772" + "plane" "(383.999 -2680 351) (383.999 -2580 351) (383.999 -2580 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245771" + "plane" "(399.999 -2580 351) (399.999 -2680 351) (399.999 -2680 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 1 -54.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245770" + "plane" "(400 -2680 351) (384 -2680 351) (384 -2680 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245769" + "plane" "(384 -2580 351) (399.999 -2580 351) (400 -2580 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 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" "1151838" + side + { + "id" "245780" + "plane" "(399.999 -2631 351) (399.999 -2631 280) (384 -2631 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245779" + "plane" "(384 -2629 351) (384 -2629 280) (399.999 -2629 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -62.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245778" + "plane" "(383.999 -2631 351) (383.999 -2631 280) (383.999 -2629 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 25.0059] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245777" + "plane" "(399.999 -2629 351) (399.999 -2629 280) (399.999 -2631 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -23.0078] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245776" + "plane" "(400 -2631 351) (384 -2631 351) (384 -2629 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245775" + "plane" "(384 -2631 280) (399.999 -2631 280) (400 -2629 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24.0039] 0.25" + "vaxis" "[1 0 0 63.9902] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1151839" + side + { + "id" "245786" + "plane" "(399.999 -2580 280) (399.999 -2680 280) (384 -2680 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[-1 0 0 -63.9805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245785" + "plane" "(384 -2580 278) (384 -2680 278) (399.999 -2680 278)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[1 0 0 63.9844] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245784" + "plane" "(383.999 -2680 278) (383.999 -2580 278) (383.999 -2580 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245783" + "plane" "(399.999 -2580 278) (399.999 -2680 278) (399.999 -2680 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 48.0078] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245782" + "plane" "(400 -2680 278) (384 -2680 278) (384 -2680 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9902] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "245781" + "plane" "(384 -2580 278) (399.999 -2580 278) (400 -2580 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9902] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +hidden +{ + entity + { + "id" "1152557" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-352 -3141 99.3607" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "1142523" + "classname" "func_detail" + solid + { + "id" "4731223" + side + { + "id" "345615" + "plane" "(-948 -5616 186) (-948 -5616 176) (-964 -5616 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 176.004] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345614" + "plane" "(-966 -5598 186) (-966 -5598 176) (-950 -5594 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 -0.242536 0 -39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345613" + "plane" "(-950 -5594 186) (-950 -5594 176) (-948 -5616 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.0905357 0.995893 0 22.6211] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345612" + "plane" "(-964 -5616 186) (-964 -5616 176) (-966 -5598 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.110434 -0.993883 0 -49.7625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345611" + "plane" "(-948 -5616 186) (-964 -5616 186) (-966 -5598 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345610" + "plane" "(-950 -5594 176) (-966 -5598 176) (-964 -5616 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731221" + side + { + "id" "345603" + "plane" "(-950 -5594 186) (-950 -5594 176) (-966 -5598 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 0.242536 0 39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345602" + "plane" "(-972 -5580 186) (-972 -5580 176) (-956 -5574 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.936329 -0.351123 0 -37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345601" + "plane" "(-956 -5574 186) (-956 -5574 176) (-950 -5594 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.287348 0.957826 0 17.0859] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345600" + "plane" "(-966 -5598 186) (-966 -5598 176) (-972 -5580 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.316229 -0.948683 0 20.7837] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345599" + "plane" "(-950 -5594 186) (-966 -5598 186) (-972 -5580 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345598" + "plane" "(-956 -5574 176) (-972 -5580 176) (-966 -5598 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731225" + side + { + "id" "345627" + "plane" "(-966 -5554 186) (-966 -5554 176) (-980 -5562 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 0.496139 0 52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345626" + "plane" "(-992 -5548 186) (-992 -5548 176) (-980 -5536 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 -43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345625" + "plane" "(-980 -5536 186) (-980 -5536 176) (-966 -5554 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.613941 0.789352 0 372.332] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345624" + "plane" "(-980 -5562 186) (-980 -5562 176) (-992 -5548 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650792 -0.759256 0 25.6079] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345623" + "plane" "(-966 -5554 186) (-980 -5562 186) (-992 -5548 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345622" + "plane" "(-980 -5536 176) (-992 -5548 176) (-980 -5562 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731227" + side + { + "id" "345639" + "plane" "(-980 -5536 186) (-980 -5536 176) (-992 -5548 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345638" + "plane" "(-1006 -5536 186) (-1006 -5536 176) (-998 -5522 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 -0.868243 0 -23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345637" + "plane" "(-998 -5522 186) (-998 -5522 176) (-980 -5536 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.789352 0.613941 0 481.852] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345636" + "plane" "(-992 -5548 186) (-992 -5548 176) (-1006 -5536 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759257 -0.650791 0 49.1183] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345635" + "plane" "(-980 -5536 186) (-992 -5548 186) (-1006 -5536 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345634" + "plane" "(-998 -5522 176) (-1006 -5536 176) (-992 -5548 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731229" + side + { + "id" "345651" + "plane" "(-1018 -5512 186) (-1018 -5512 176) (-1024 -5528 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 0.936329 0 3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345650" + "plane" "(-1042 -5522 186) (-1042 -5522 176) (-1038 -5506 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 -0.970142 0 -48.0636] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345649" + "plane" "(-1038 -5506 186) (-1038 -5506 176) (-1018 -5512 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.957826 0.287348 0 92.9863] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345648" + "plane" "(-1024 -5528 186) (-1024 -5528 176) (-1042 -5522 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948684 -0.316226 0 63.1693] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345647" + "plane" "(-1018 -5512 186) (-1024 -5528 186) (-1042 -5522 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345646" + "plane" "(-1038 -5506 176) (-1042 -5522 176) (-1024 -5528 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731231" + side + { + "id" "345663" + "plane" "(-1038 -5506 186) (-1038 -5506 176) (-1042 -5522 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 0.970142 0 48.0636] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345662" + "plane" "(-1060 -5520 186) (-1060 -5520 176) (-1060 -5504 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345661" + "plane" "(-1060 -5504 186) (-1060 -5504 176) (-1038 -5506 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.995893 0.090538 0 325.396] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345660" + "plane" "(-1042 -5522 186) (-1042 -5522 176) (-1060 -5520 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.993884 -0.110431 0 13.2377] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345659" + "plane" "(-1038 -5506 186) (-1042 -5522 186) (-1060 -5520 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345658" + "plane" "(-1060 -5504 176) (-1060 -5520 176) (-1042 -5522 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731233" + side + { + "id" "345675" + "plane" "(-998 -5522 186) (-998 -5522 176) (-1006 -5536 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 0.868243 0 23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345674" + "plane" "(-1024 -5528 186) (-1024 -5528 176) (-1018 -5512 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 -0.936329 0 -3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345673" + "plane" "(-1018 -5512 186) (-1018 -5512 176) (-998 -5522 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.894427 0.447214 0 485.02] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345672" + "plane" "(-1006 -5536 186) (-1006 -5536 176) (-1024 -5528 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 -0.406138 0 24.1692] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345671" + "plane" "(-998 -5522 186) (-1006 -5536 186) (-1024 -5528 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345670" + "plane" "(-1018 -5512 176) (-1024 -5528 176) (-1006 -5536 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731219" + side + { + "id" "345591" + "plane" "(-956 -5574 186) (-956 -5574 176) (-972 -5580 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 0.351123 0 37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345590" + "plane" "(-980 -5562 186) (-980 -5562 176) (-966 -5554 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 -0.496139 0 -52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345589" + "plane" "(-966 -5554 186) (-966 -5554 176) (-956 -5574 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.447214 0.894427 0 133.906] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345588" + "plane" "(-972 -5580 186) (-972 -5580 176) (-980 -5562 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.406139 -0.913811 0 29.8152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345587" + "plane" "(-956 -5574 186) (-972 -5580 186) (-980 -5562 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345586" + "plane" "(-966 -5554 176) (-980 -5562 176) (-972 -5580 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747350" + side + { + "id" "346176" + "plane" "(-954 -5394 252) (-954 -5394 190) (-1048 -5394 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 0.496139 0 52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346175" + "plane" "(-1048 -5376 252) (-1048 -5376 190) (-968 -5376 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 -43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346174" + "plane" "(-968 -5376 252) (-968 -5376 190) (-954 -5394 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.61394 -0.789352 0 -163.25] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346173" + "plane" "(-1048 -5394 252) (-1048 -5394 190) (-1048 -5376 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650792 -0.759256 0 25.6079] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346172" + "plane" "(-954 -5394 252) (-1048 -5394 252) (-1048 -5376 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346171" + "plane" "(-968 -5376 190) (-1048 -5376 190) (-1048 -5394 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747272" + side + { + "id" "346164" + "plane" "(-938 -5434 190) (-938 -5434 186) (-1048 -5434 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 0.242536 0 39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346163" + "plane" "(-1048 -5414 190) (-1048 -5414 186) (-944 -5414 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.936329 -0.351123 0 -37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346162" + "plane" "(-944 -5414 190) (-944 -5414 186) (-938 -5434 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.287349 0.957826 0 -164.925] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346161" + "plane" "(-1048 -5434 190) (-1048 -5434 186) (-1048 -5414 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.316229 -0.948683 0 20.7837] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346160" + "plane" "(-944 -5414 186) (-1048 -5414 186) (-1048 -5434 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346159" + "plane" "(-938 -5434 190) (-1048 -5434 190) (-1048 -5414 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747352" + side + { + "id" "346188" + "plane" "(-944 -5414 252) (-944 -5414 190) (-1048 -5414 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 0.351123 0 37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346187" + "plane" "(-1048 -5394 252) (-1048 -5394 190) (-954 -5394 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 -0.496139 0 -52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346186" + "plane" "(-954 -5394 252) (-954 -5394 190) (-944 -5414 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.447213 -0.894427 0 -325.707] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346185" + "plane" "(-1048 -5414 252) (-1048 -5414 190) (-1048 -5394 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.406139 -0.913811 0 29.8152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346184" + "plane" "(-944 -5414 252) (-1048 -5414 252) (-1048 -5394 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346183" + "plane" "(-954 -5394 190) (-1048 -5394 190) (-1048 -5414 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747270" + side + { + "id" "346152" + "plane" "(-936 -5456 190) (-936 -5456 186) (-1048 -5456 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48.004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346151" + "plane" "(-1048 -5434 190) (-1048 -5434 186) (-938 -5434 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 -0.242536 0 -39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346150" + "plane" "(-938 -5434 190) (-938 -5434 186) (-936 -5456 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.0905385 0.995893 0 -105.216] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346149" + "plane" "(-1048 -5456 190) (-1048 -5456 186) (-1048 -5434 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.110434 -0.993883 0 -49.7625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346148" + "plane" "(-938 -5434 186) (-1048 -5434 186) (-1048 -5456 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346147" + "plane" "(-936 -5456 190) (-1048 -5456 190) (-1048 -5434 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747354" + side + { + "id" "346200" + "plane" "(-968 -5376 252) (-968 -5376 190) (-1048 -5376 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346199" + "plane" "(-1048 -5362 252) (-1048 -5362 190) (-986 -5362 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 -0.868243 0 -23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346198" + "plane" "(-986 -5362 252) (-986 -5362 190) (-968 -5376 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.789352 -0.613941 0 -481.348] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346197" + "plane" "(-1048 -5376 252) (-1048 -5376 190) (-1048 -5362 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759257 -0.650791 0 49.1183] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346196" + "plane" "(-968 -5376 252) (-1048 -5376 252) (-1048 -5362 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346195" + "plane" "(-986 -5362 190) (-1048 -5362 190) (-1048 -5376 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747358" + side + { + "id" "346224" + "plane" "(-986 -5362 252) (-986 -5362 190) (-1048 -5362 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 0.868243 0 23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346223" + "plane" "(-1048 -5352 252) (-1048 -5352 190) (-1006 -5352 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 -0.936329 0 -3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346222" + "plane" "(-1006 -5352 252) (-1006 -5352 190) (-986 -5362 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.894427 -0.447214 0 -180.58] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346221" + "plane" "(-1048 -5362 252) (-1048 -5362 190) (-1048 -5352 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 -0.406138 0 24.1692] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346220" + "plane" "(-986 -5362 252) (-1048 -5362 252) (-1048 -5352 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346219" + "plane" "(-1006 -5352 190) (-1048 -5352 190) (-1048 -5362 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731230" + side + { + "id" "345657" + "plane" "(-1018 -5512 176) (-1018 -5512 40) (-1024 -5528 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 0.936329 0 3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345656" + "plane" "(-1042 -5522 176) (-1042 -5522 40) (-1038 -5506 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 -0.970142 0 -48.0636] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345655" + "plane" "(-1038 -5506 176) (-1038 -5506 40) (-1018 -5512 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.957826 0.287348 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345654" + "plane" "(-1024 -5528 176) (-1024 -5528 40) (-1042 -5522 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948684 -0.316226 0 63.1693] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345653" + "plane" "(-1038 -5506 40) (-1042 -5522 40) (-1024 -5528 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345652" + "plane" "(-1018 -5512 176) (-1024 -5528 176) (-1042 -5522 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747356" + side + { + "id" "346212" + "plane" "(-1006 -5352 252) (-1006 -5352 190) (-1048 -5352 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 0.936329 0 3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346211" + "plane" "(-1048 -5344 252) (-1048 -5344 190) (-1026 -5346 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.995893 -0.0905355 0 29.2666] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346210" + "plane" "(-1025.99 -5346 252) (-1025.99 -5346 190) (-1006 -5352 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.957826 -0.287347 0 6.49658] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346209" + "plane" "(-1048 -5352 252) (-1048 -5352 190) (-1048 -5344 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948684 -0.316226 0 63.1693] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346208" + "plane" "(-1006 -5352 252) (-1048 -5352 252) (-1048 -5344 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346207" + "plane" "(-1048 -5352 190) (-1006 -5352 190) (-1026 -5346 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731226" + side + { + "id" "345633" + "plane" "(-966 -5554 176) (-966 -5554 40) (-980 -5562 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 0.496139 0 52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345632" + "plane" "(-992 -5548 176) (-992 -5548 40) (-980 -5536 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 -43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345631" + "plane" "(-980 -5536 176) (-980 -5536 40) (-966 -5554 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.613941 0.789352 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345630" + "plane" "(-980 -5562 176) (-980 -5562 40) (-992 -5548 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650792 -0.759256 0 25.6079] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345629" + "plane" "(-980 -5536 40) (-992 -5548 40) (-980 -5562 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345628" + "plane" "(-966 -5554 176) (-980 -5562 176) (-992 -5548 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731222" + side + { + "id" "345609" + "plane" "(-950 -5594 176) (-950 -5594 40) (-966 -5598 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 0.242536 0 39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345608" + "plane" "(-972 -5580 176) (-972 -5580 40) (-956 -5574 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.936329 -0.351123 0 -37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345607" + "plane" "(-956 -5574 176) (-956 -5574 40) (-950 -5594 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.287348 0.957826 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345606" + "plane" "(-966 -5598 176) (-966 -5598 40) (-972 -5580 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.316229 -0.948683 0 20.7837] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345605" + "plane" "(-956 -5574 40) (-972 -5580 40) (-966 -5598 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345604" + "plane" "(-950 -5594 176) (-966 -5598 176) (-972 -5580 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731220" + side + { + "id" "345597" + "plane" "(-956 -5574 176) (-956 -5574 40) (-972 -5580 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 0.351123 0 37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345596" + "plane" "(-980 -5562 176) (-980 -5562 40) (-966 -5554 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 -0.496139 0 -52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345595" + "plane" "(-966 -5554 176) (-966 -5554 40) (-956 -5574 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.447214 0.894427 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345594" + "plane" "(-972 -5580 176) (-972 -5580 40) (-980 -5562 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.406139 -0.913811 0 29.8152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345593" + "plane" "(-966 -5554 40) (-980 -5562 40) (-972 -5580 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345592" + "plane" "(-956 -5574 176) (-972 -5580 176) (-980 -5562 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731224" + side + { + "id" "345621" + "plane" "(-948 -5616 176) (-948 -5616 40) (-964 -5616 40)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 176.004] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345620" + "plane" "(-966 -5598 176) (-966 -5598 40) (-950 -5594 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 -0.242536 0 -39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345619" + "plane" "(-950 -5594 176) (-950 -5594 40) (-948 -5616 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.090538 0.995893 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345618" + "plane" "(-964 -5616 176) (-964 -5616 40) (-966 -5598 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.110434 -0.993883 0 -49.7625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345617" + "plane" "(-950 -5594 40) (-966 -5598 40) (-964 -5616 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345616" + "plane" "(-948 -5616 176) (-964 -5616 176) (-966 -5598 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731228" + side + { + "id" "345645" + "plane" "(-980 -5536 176) (-980 -5536 40) (-992 -5548 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345644" + "plane" "(-1006 -5536 176) (-1006 -5536 40) (-998 -5522 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 -0.868243 0 -23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345643" + "plane" "(-998 -5522 176) (-998 -5522 40) (-980 -5536 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.789352 0.61394 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345642" + "plane" "(-992 -5548 176) (-992 -5548 40) (-1006 -5536 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759257 -0.650791 0 49.1183] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345641" + "plane" "(-998 -5522 40) (-1006 -5536 40) (-992 -5548 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345640" + "plane" "(-980 -5536 176) (-992 -5548 176) (-1006 -5536 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731234" + side + { + "id" "345681" + "plane" "(-998 -5522 176) (-998 -5522 40) (-1006 -5536 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 0.868243 0 23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345680" + "plane" "(-1024 -5528 176) (-1024 -5528 40) (-1018 -5512 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 -0.936329 0 -3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345679" + "plane" "(-1018 -5512 176) (-1018 -5512 40) (-998 -5522 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.894427 0.447213 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345678" + "plane" "(-1006 -5536 176) (-1006 -5536 40) (-1024 -5528 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 -0.406138 0 24.1692] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345677" + "plane" "(-1018 -5512 40) (-1024 -5528 40) (-1006 -5536 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345676" + "plane" "(-998 -5522 176) (-1006 -5536 176) (-1024 -5528 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731232" + side + { + "id" "345669" + "plane" "(-1038 -5506 176) (-1038 -5506 40) (-1042 -5522 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 0.970142 0 48.0636] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345668" + "plane" "(-1060 -5520 176) (-1060 -5520 40) (-1060 -5504 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345667" + "plane" "(-1060 -5504 176) (-1060 -5504 40) (-1038 -5506 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.995893 0.0905356 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345666" + "plane" "(-1042 -5522 176) (-1042 -5522 40) (-1060 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.993884 -0.110431 0 13.2377] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345665" + "plane" "(-1060 -5504 40) (-1060 -5520 40) (-1042 -5522 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345664" + "plane" "(-1038 -5506 176) (-1042 -5522 176) (-1060 -5520 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726527" + side + { + "id" "345346" + "plane" "(-950 -5594 32) (-966 -5598 32) (-964 -5616 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.002] 0.25" + "vaxis" "[0 -1 0 -31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345345" + "plane" "(-948 -5616 40) (-948 -5616 32) (-964 -5616 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 176.004] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345344" + "plane" "(-966 -5598 40) (-966 -5598 32) (-950 -5594 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 -0.242536 0 -39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345343" + "plane" "(-950 -5594 40) (-950 -5594 32) (-948 -5616 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.0905385 0.995893 0 27.8361] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345342" + "plane" "(-964 -5616 40) (-964 -5616 32) (-966 -5598 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.110434 -0.993883 0 -49.7625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345341" + "plane" "(-948 -5616 40) (-964 -5616 40) (-966 -5598 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726529" + side + { + "id" "345358" + "plane" "(-956 -5574 32) (-972 -5580 32) (-966 -5598 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.002] 0.25" + "vaxis" "[0 -1 0 -31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345357" + "plane" "(-950 -5594 40) (-950 -5594 32) (-966 -5598 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 0.242536 0 39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345356" + "plane" "(-972 -5580 40) (-972 -5580 32) (-956 -5574 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.936329 -0.351123 0 -37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345355" + "plane" "(-956 -5574 40) (-956 -5574 32) (-950 -5594 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.287349 0.957826 0 -97.8684] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345354" + "plane" "(-966 -5598 40) (-966 -5598 32) (-972 -5580 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.316229 -0.948683 0 20.7837] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345353" + "plane" "(-950 -5594 40) (-966 -5598 40) (-972 -5580 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726531" + side + { + "id" "345370" + "plane" "(-966 -5554 32) (-980 -5562 32) (-972 -5580 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.002] 0.25" + "vaxis" "[0 -1 0 -31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345369" + "plane" "(-956 -5574 40) (-956 -5574 32) (-972 -5580 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 0.351123 0 37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345368" + "plane" "(-980 -5562 40) (-980 -5562 32) (-966 -5554 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 -0.496139 0 -52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345367" + "plane" "(-966 -5554 40) (-966 -5554 32) (-956 -5574 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.447214 0.894427 0 -45.8931] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345366" + "plane" "(-972 -5580 40) (-972 -5580 32) (-980 -5562 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.406139 -0.913811 0 29.8152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345365" + "plane" "(-956 -5574 40) (-972 -5580 40) (-980 -5562 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726533" + side + { + "id" "345382" + "plane" "(-998 -5522 32) (-1006 -5536 32) (-992 -5548 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.002] 0.25" + "vaxis" "[0 -1 0 -31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345381" + "plane" "(-980 -5536 40) (-980 -5536 32) (-992 -5548 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345380" + "plane" "(-1006 -5536 40) (-1006 -5536 32) (-998 -5522 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 -0.868243 0 -23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345379" + "plane" "(-998 -5522 40) (-998 -5522 32) (-980 -5536 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.789352 0.613941 0 -758.107] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345378" + "plane" "(-992 -5548 40) (-992 -5548 32) (-1006 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759257 -0.650791 0 49.1183] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345377" + "plane" "(-980 -5536 40) (-992 -5548 40) (-1006 -5536 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726535" + side + { + "id" "345394" + "plane" "(-980 -5536 32) (-992 -5548 32) (-980 -5562 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.002] 0.25" + "vaxis" "[0 -1 0 -31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345393" + "plane" "(-966 -5554 40) (-966 -5554 32) (-980 -5562 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 0.496139 0 52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345392" + "plane" "(-992 -5548 40) (-992 -5548 32) (-980 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 -43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345391" + "plane" "(-980 -5536 40) (-980 -5536 32) (-966 -5554 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.61394 0.789352 0 -867.623] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345390" + "plane" "(-980 -5562 40) (-980 -5562 32) (-992 -5548 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650792 -0.759256 0 25.6079] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345389" + "plane" "(-966 -5554 40) (-980 -5562 40) (-992 -5548 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726537" + side + { + "id" "345406" + "plane" "(-1018 -5512 32) (-1024 -5528 32) (-1006 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.002] 0.25" + "vaxis" "[0 -1 0 -31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345405" + "plane" "(-998 -5522 40) (-998 -5522 32) (-1006 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 0.868243 0 23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345404" + "plane" "(-1024 -5528 40) (-1024 -5528 32) (-1018 -5512 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 -0.936329 0 -3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345403" + "plane" "(-1018 -5512 40) (-1018 -5512 32) (-998 -5522 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.894427 0.447214 0 -718.783] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345402" + "plane" "(-1006 -5536 40) (-1006 -5536 32) (-1024 -5528 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 -0.406138 0 24.1692] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345401" + "plane" "(-998 -5522 40) (-1006 -5536 40) (-1024 -5528 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726539" + side + { + "id" "345418" + "plane" "(-1038 -5506 32) (-1042 -5522 32) (-1024 -5528 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.002] 0.25" + "vaxis" "[0 -1 0 -31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345417" + "plane" "(-1018 -5512 40) (-1018 -5512 32) (-1024 -5528 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 0.936329 0 3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345416" + "plane" "(-1042 -5522 40) (-1042 -5522 32) (-1038 -5506 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 -0.970142 0 -48.0636] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345415" + "plane" "(-1038 -5506 40) (-1038 -5506 32) (-1018 -5512 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.957826 0.287348 0 -21.9688] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345414" + "plane" "(-1024 -5528 40) (-1024 -5528 32) (-1042 -5522 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948684 -0.316226 0 63.1693] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345413" + "plane" "(-1018 -5512 40) (-1024 -5528 40) (-1042 -5522 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4726541" + side + { + "id" "345430" + "plane" "(-1060 -5504 32) (-1060 -5520 32) (-1042 -5522 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32.002] 0.25" + "vaxis" "[0 -1 0 -31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345429" + "plane" "(-1038 -5506 40) (-1038 -5506 32) (-1042 -5522 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 0.970142 0 48.0636] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345428" + "plane" "(-1060 -5520 40) (-1060 -5520 32) (-1060 -5504 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345427" + "plane" "(-1060 -5504 40) (-1060 -5504 32) (-1038 -5506 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.995893 0.0905357 0 -693.465] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345426" + "plane" "(-1042 -5522 40) (-1042 -5522 32) (-1060 -5520 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.993884 -0.110431 0 13.2377] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345425" + "plane" "(-1038 -5506 40) (-1042 -5522 40) (-1060 -5520 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747107" + side + { + "id" "345918" + "plane" "(-938 -5434 256) (-938 -5434 252) (-1048 -5434 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 0.242536 0 39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345917" + "plane" "(-1048 -5414 256) (-1048 -5414 252) (-944 -5414 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.936329 -0.351123 0 -37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345916" + "plane" "(-944 -5414 256) (-944 -5414 252) (-938 -5434 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.287348 -0.957826 0 222.296] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345915" + "plane" "(-1048 -5434 256) (-1048 -5434 252) (-1048 -5414 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.316229 -0.948683 0 20.7837] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345914" + "plane" "(-938 -5434 256) (-1048 -5434 256) (-1048 -5414 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345913" + "plane" "(-944 -5414 252) (-1048 -5414 252) (-1048 -5434 252)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747109" + side + { + "id" "345930" + "plane" "(-936 -5456 256) (-936 -5456 252) (-1048 -5456 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48.004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345929" + "plane" "(-1048 -5434 256) (-1048 -5434 252) (-938 -5434 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 -0.242536 0 -39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345928" + "plane" "(-938 -5434 256) (-938 -5434 252) (-936 -5456 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.0905385 -0.995893 0 164.216] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345927" + "plane" "(-1048 -5456 256) (-1048 -5456 252) (-1048 -5434 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.110434 -0.993883 0 -49.7625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345926" + "plane" "(-936 -5456 256) (-1048 -5456 256) (-1048 -5434 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345925" + "plane" "(-938 -5434 252) (-1048 -5434 252) (-1048 -5456 252)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747111" + side + { + "id" "345942" + "plane" "(-944 -5414 256) (-944 -5414 252) (-1048 -5414 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 0.351123 0 37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345941" + "plane" "(-1048 -5394 256) (-1048 -5394 252) (-954 -5394 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 -0.496139 0 -52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345940" + "plane" "(-954 -5394 256) (-954 -5394 252) (-944 -5414 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.447214 -0.894427 0 73.8271] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345939" + "plane" "(-1048 -5414 256) (-1048 -5414 252) (-1048 -5394 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.406139 -0.913811 0 29.8152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345938" + "plane" "(-944 -5414 256) (-1048 -5414 256) (-1048 -5394 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345937" + "plane" "(-954 -5394 252) (-1048 -5394 252) (-1048 -5414 252)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747113" + side + { + "id" "345954" + "plane" "(-954 -5394 256) (-954 -5394 252) (-1048 -5394 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 0.496139 0 52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345953" + "plane" "(-1048 -5376 256) (-1048 -5376 252) (-968 -5376 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 -43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345952" + "plane" "(-968 -5376 256) (-968 -5376 252) (-954 -5394 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.613941 -0.789352 0 233.061] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345951" + "plane" "(-1048 -5394 256) (-1048 -5394 252) (-1048 -5376 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650792 -0.759256 0 25.6079] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345950" + "plane" "(-954 -5394 256) (-1048 -5394 256) (-1048 -5376 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345949" + "plane" "(-968 -5376 252) (-1048 -5376 252) (-1048 -5394 252)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747115" + side + { + "id" "345966" + "plane" "(-968 -5376 256) (-968 -5376 252) (-1048 -5376 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345965" + "plane" "(-1048 -5362 256) (-1048 -5362 252) (-986 -5362 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 -0.868243 0 -23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345964" + "plane" "(-986 -5362 256) (-986 -5362 252) (-968 -5376 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.789352 -0.613941 0 394.176] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345963" + "plane" "(-1048 -5376 256) (-1048 -5376 252) (-1048 -5362 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759257 -0.650791 0 49.1183] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345962" + "plane" "(-968 -5376 256) (-1048 -5376 256) (-1048 -5362 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345961" + "plane" "(-986 -5362 252) (-1048 -5362 252) (-1048 -5376 252)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747117" + side + { + "id" "345978" + "plane" "(-986 -5362 256) (-986 -5362 252) (-1048 -5362 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 0.868243 0 23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345977" + "plane" "(-1048 -5352 256) (-1048 -5352 252) (-1006 -5352 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 -0.936329 0 -3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345976" + "plane" "(-1006 -5352 256) (-1006 -5352 252) (-986 -5362 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.894427 -0.447214 0 131.352] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345975" + "plane" "(-1048 -5362 256) (-1048 -5362 252) (-1048 -5352 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 -0.406138 0 24.1692] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345974" + "plane" "(-986 -5362 256) (-1048 -5362 256) (-1048 -5352 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345973" + "plane" "(-1006 -5352 252) (-1048 -5352 252) (-1048 -5362 252)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747119" + side + { + "id" "345990" + "plane" "(-1006 -5352 256) (-1006 -5352 252) (-1048 -5352 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 0.936329 0 3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345989" + "plane" "(-1048 -5344 256) (-1048 -5344 252) (-1026 -5346 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.995893 -0.0905357 0 151.742] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345988" + "plane" "(-1026 -5346 256) (-1026 -5346 252) (-1006 -5352 252)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.957826 -0.287348 0 247.832] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345987" + "plane" "(-1048 -5352 256) (-1048 -5352 252) (-1048 -5344 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948684 -0.316226 0 63.1693] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345986" + "plane" "(-1006 -5352 256) (-1048 -5352 256) (-1048 -5344 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.998] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345985" + "plane" "(-1048 -5352 252) (-1006 -5352 252) (-1026 -5346 252)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747269" + side + { + "id" "346146" + "plane" "(-936 -5456 252) (-936 -5456 190) (-1048 -5456 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48.004] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346145" + "plane" "(-1048 -5434 252) (-1048 -5434 190) (-938 -5434 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.970142 -0.242536 0 -39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346144" + "plane" "(-938 -5434 252) (-938 -5434 190) (-936 -5456 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.0905356 -0.995893 0 -177.844] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346143" + "plane" "(-1048 -5456 252) (-1048 -5456 190) (-1048 -5434 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.110434 -0.993883 0 -49.7625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346142" + "plane" "(-936 -5456 252) (-1048 -5456 252) (-1048 -5434 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346141" + "plane" "(-938 -5434 190) (-1048 -5434 190) (-1048 -5456 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747271" + side + { + "id" "346158" + "plane" "(-938 -5434 252) (-938 -5434 190) (-1048 -5434 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.970142 0.242536 0 39.7455] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346157" + "plane" "(-1048 -5414 252) (-1048 -5414 190) (-944 -5414 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.936329 -0.351123 0 -37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346156" + "plane" "(-944 -5414 252) (-944 -5414 190) (-938 -5434 190)" + "material" "CS_APOLLO/OUTSIDE/TILES_GREY" + "uaxis" "[0.287348 -0.957826 0 -161.047] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346155" + "plane" "(-1048 -5434 252) (-1048 -5434 190) (-1048 -5414 190)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.316229 -0.948683 0 20.7837] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346154" + "plane" "(-938 -5434 252) (-1048 -5434 252) (-1048 -5414 252)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346153" + "plane" "(-944 -5414 190) (-1048 -5414 190) (-1048 -5434 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747349" + side + { + "id" "346170" + "plane" "(-954 -5394 190) (-954 -5394 186) (-1048 -5394 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 0.496139 0 52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346169" + "plane" "(-1048 -5376 190) (-1048 -5376 186) (-968 -5376 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 -43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346168" + "plane" "(-968 -5376 190) (-968 -5376 186) (-954 -5394 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.613941 0.789352 0 -193.73] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346167" + "plane" "(-1048 -5394 190) (-1048 -5394 186) (-1048 -5376 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650792 -0.759256 0 25.6079] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346166" + "plane" "(-968 -5376 186) (-1048 -5376 186) (-1048 -5394 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346165" + "plane" "(-954 -5394 190) (-1048 -5394 190) (-1048 -5376 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747351" + side + { + "id" "346182" + "plane" "(-944 -5414 190) (-944 -5414 186) (-1048 -5414 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 0.351123 0 37.5923] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346181" + "plane" "(-1048 -5394 190) (-1048 -5394 186) (-954 -5394 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 -0.496139 0 -52.7077] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346180" + "plane" "(-954 -5394 190) (-954 -5394 186) (-944 -5414 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.447214 0.894427 0 -22.1777] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346179" + "plane" "(-1048 -5414 190) (-1048 -5414 186) (-1048 -5394 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.406139 -0.913811 0 29.8152] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346178" + "plane" "(-954 -5394 186) (-1048 -5394 186) (-1048 -5414 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346177" + "plane" "(-944 -5414 190) (-1048 -5414 190) (-1048 -5394 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747353" + side + { + "id" "346194" + "plane" "(-968 -5376 190) (-968 -5376 186) (-1048 -5376 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 43.6068] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346193" + "plane" "(-1048 -5362 190) (-1048 -5362 186) (-986 -5362 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 -0.868243 0 -23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346192" + "plane" "(-986 -5362 190) (-986 -5362 186) (-968 -5376 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.789352 0.613941 0 -379.414] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346191" + "plane" "(-1048 -5376 190) (-1048 -5376 186) (-1048 -5362 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759257 -0.650791 0 49.1183] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346190" + "plane" "(-986 -5362 186) (-1048 -5362 186) (-1048 -5376 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346189" + "plane" "(-968 -5376 190) (-1048 -5376 190) (-1048 -5362 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747355" + side + { + "id" "346206" + "plane" "(-1006 -5352 190) (-1006 -5352 186) (-1048 -5352 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 0.936329 0 3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346205" + "plane" "(-1048 -5344 190) (-1048 -5344 186) (-1026 -5346 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.995893 0.0905353 0 -378.019] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346204" + "plane" "(-1025.99 -5346 190) (-1025.99 -5346 186) (-1006 -5352 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.957785 0.287484 0 -349.036] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346203" + "plane" "(-1048 -5352 190) (-1048 -5352 186) (-1048 -5344 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948684 -0.316226 0 63.1693] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346202" + "plane" "(-1048 -5352 186) (-1006 -5352 186) (-1026 -5346 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346201" + "plane" "(-1006 -5352 190) (-1048 -5352 190) (-1048 -5344 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4747357" + side + { + "id" "346218" + "plane" "(-986 -5362 190) (-986 -5362 186) (-1048 -5362 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 0.868243 0 23.0215] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346217" + "plane" "(-1048 -5352 190) (-1048 -5352 186) (-1006 -5352 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 -0.936329 0 -3.61417] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346216" + "plane" "(-1006 -5352 190) (-1006 -5352 186) (-986 -5362 186)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.894427 0.447213 0 -168.187] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346215" + "plane" "(-1048 -5362 190) (-1048 -5362 186) (-1048 -5352 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 -0.406138 0 24.1692] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346214" + "plane" "(-1006 -5352 186) (-1048 -5352 186) (-1048 -5362 186)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346213" + "plane" "(-986 -5362 190) (-1048 -5362 190) (-1048 -5352 190)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "150 143 0" + "groupid" "2778641" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +entity +{ + "id" "1142649" + "classname" "func_detail" + solid + { + "id" "4731255" + side + { + "id" "345807" + "plane" "(-1570 -5554 186) (-1570 -5554 176) (-1556 -5562 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 0.496139 0 -8.17213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345806" + "plane" "(-1564 -5580 186) (-1564 -5580 176) (-1580 -5574 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 -0.351123 0 40.4944] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345805" + "plane" "(-1580 -5574 186) (-1580 -5574 176) (-1570 -5554 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.447214 -0.894427 0 -406.977] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345804" + "plane" "(-1556 -5562 186) (-1556 -5562 176) (-1564 -5580 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.406138 0.913811 0 32.3251] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345803" + "plane" "(-1570 -5554 186) (-1556 -5562 186) (-1564 -5580 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345802" + "plane" "(-1556 -5562 176) (-1570 -5554 176) (-1580 -5574 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731245" + side + { + "id" "345747" + "plane" "(-1476 -5504 186) (-1476 -5504 176) (-1476 -5520 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 176.004] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345746" + "plane" "(-1494 -5522 186) (-1494 -5522 176) (-1498 -5506 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345745" + "plane" "(-1498 -5506 186) (-1498 -5506 176) (-1476 -5504 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.995893 -0.090538 0 -466.073] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345744" + "plane" "(-1476 -5520 186) (-1476 -5520 176) (-1494 -5522 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.993883 0.110434 0 17.9546] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345743" + "plane" "(-1476 -5504 186) (-1476 -5520 186) (-1494 -5522 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345742" + "plane" "(-1498 -5506 176) (-1494 -5522 176) (-1476 -5520 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731249" + side + { + "id" "345771" + "plane" "(-1518 -5512 186) (-1518 -5512 176) (-1512 -5528 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 0.936329 0 -15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345770" + "plane" "(-1530 -5536 186) (-1530 -5536 176) (-1538 -5522 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 -0.868243 0 33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345769" + "plane" "(-1538 -5522 186) (-1538 -5522 176) (-1518 -5512 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.894427 -0.447214 0 -103.156] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345768" + "plane" "(-1512 -5528 186) (-1512 -5528 176) (-1530 -5536 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 0.406139 0 39.789] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345767" + "plane" "(-1518 -5512 186) (-1512 -5528 186) (-1530 -5536 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345766" + "plane" "(-1538 -5522 176) (-1530 -5536 176) (-1512 -5528 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731247" + side + { + "id" "345759" + "plane" "(-1498 -5506 186) (-1498 -5506 176) (-1494 -5522 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 0.970142 0 31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345758" + "plane" "(-1512 -5528 186) (-1512 -5528 176) (-1518 -5512 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 -0.936329 0 15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345757" + "plane" "(-1518 -5512 186) (-1518 -5512 176) (-1498 -5506 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.957826 -0.287348 0 -485.361] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345756" + "plane" "(-1494 -5522 186) (-1494 -5522 176) (-1512 -5528 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948683 0.316229 0 55.1847] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345755" + "plane" "(-1498 -5506 186) (-1494 -5522 186) (-1512 -5528 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345754" + "plane" "(-1518 -5512 176) (-1512 -5528 176) (-1494 -5522 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731251" + side + { + "id" "345783" + "plane" "(-1538 -5522 186) (-1538 -5522 176) (-1530 -5536 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 0.868243 0 -33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345782" + "plane" "(-1544 -5548 186) (-1544 -5548 176) (-1556 -5536 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345781" + "plane" "(-1556 -5536 186) (-1556 -5536 176) (-1538 -5522 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.789352 -0.613941 0 -16.2246] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345780" + "plane" "(-1530 -5536 186) (-1530 -5536 176) (-1544 -5548 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759256 0.650792 0 32.9327] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345779" + "plane" "(-1538 -5522 186) (-1530 -5536 186) (-1544 -5548 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345778" + "plane" "(-1556 -5536 176) (-1544 -5548 176) (-1530 -5536 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731253" + side + { + "id" "345795" + "plane" "(-1556 -5536 186) (-1556 -5536 176) (-1544 -5548 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 -4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345794" + "plane" "(-1556 -5562 186) (-1556 -5562 176) (-1570 -5554 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 -0.496139 0 8.17213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345793" + "plane" "(-1570 -5554 186) (-1570 -5554 176) (-1556 -5536 176)" + "material" "CONCRETE/HR_C/HR_CONC_TRIM_A_MASTER" + "uaxis" "[-0.613941 -0.789352 0 -443.957] 0.125" + "vaxis" "[0 0 -1 748] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345792" + "plane" "(-1544 -5548 186) (-1544 -5548 176) (-1556 -5562 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650791 0.759257 0 22.2487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345791" + "plane" "(-1556 -5536 186) (-1544 -5548 186) (-1556 -5562 186)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -0.00195313] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345790" + "plane" "(-1570 -5554 176) (-1556 -5562 176) (-1544 -5548 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811878" + side + { + "id" "336590" + "plane" "(-1498 -5506 32) (-1494 -5522 32) (-1476 -5520 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32.002] 0.25" + "vaxis" "[1 0 0 32.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336589" + "plane" "(-1476 -5504 40) (-1476 -5504 32) (-1476 -5520 32)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 176.004] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336588" + "plane" "(-1494 -5522 40) (-1494 -5522 32) (-1498 -5506 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336587" + "plane" "(-1498 -5506 40) (-1498 -5506 32) (-1476 -5504 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.995893 0.0905357 0 -270.152] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336586" + "plane" "(-1476 -5520 40) (-1476 -5520 32) (-1494 -5522 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.993883 0.110434 0 17.9546] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336585" + "plane" "(-1476 -5504 40) (-1476 -5520 40) (-1494 -5522 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811876" + side + { + "id" "336578" + "plane" "(-1538 -5522 32) (-1530 -5536 32) (-1512 -5528 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32.002] 0.25" + "vaxis" "[1 0 0 32.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336577" + "plane" "(-1518 -5512 40) (-1518 -5512 32) (-1512 -5528 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 0.936329 0 -15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336576" + "plane" "(-1530 -5536 40) (-1530 -5536 32) (-1538 -5522 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 -0.868243 0 33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336575" + "plane" "(-1538 -5522 40) (-1538 -5522 32) (-1518 -5512 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.894427 0.447214 0 -327.646] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336574" + "plane" "(-1512 -5528 40) (-1512 -5528 32) (-1530 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 0.406139 0 39.789] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336573" + "plane" "(-1518 -5512 40) (-1512 -5528 40) (-1530 -5536 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731252" + side + { + "id" "345789" + "plane" "(-1538 -5522 176) (-1538 -5522 40) (-1530 -5536 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 0.868243 0 -33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345788" + "plane" "(-1544 -5548 176) (-1544 -5548 40) (-1556 -5536 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345787" + "plane" "(-1556 -5536 176) (-1556 -5536 40) (-1538 -5522 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.789352 -0.61394 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345786" + "plane" "(-1530 -5536 176) (-1530 -5536 40) (-1544 -5548 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759256 0.650792 0 32.9327] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345785" + "plane" "(-1556 -5536 40) (-1544 -5548 40) (-1530 -5536 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345784" + "plane" "(-1538 -5522 176) (-1530 -5536 176) (-1544 -5548 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731248" + side + { + "id" "345765" + "plane" "(-1498 -5506 176) (-1498 -5506 40) (-1494 -5522 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 0.970142 0 31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345764" + "plane" "(-1512 -5528 176) (-1512 -5528 40) (-1518 -5512 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 -0.936329 0 15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345763" + "plane" "(-1518 -5512 176) (-1518 -5512 40) (-1498 -5506 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.957826 -0.287348 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345762" + "plane" "(-1494 -5522 176) (-1494 -5522 40) (-1512 -5528 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948683 0.316229 0 55.1847] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345761" + "plane" "(-1518 -5512 40) (-1512 -5528 40) (-1494 -5522 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345760" + "plane" "(-1498 -5506 176) (-1494 -5522 176) (-1512 -5528 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731250" + side + { + "id" "345777" + "plane" "(-1518 -5512 176) (-1518 -5512 40) (-1512 -5528 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.351123 0.936329 0 -15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345776" + "plane" "(-1530 -5536 176) (-1530 -5536 40) (-1538 -5522 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.496139 -0.868243 0 33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345775" + "plane" "(-1538 -5522 176) (-1538 -5522 40) (-1518 -5512 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.894427 -0.447214 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345774" + "plane" "(-1512 -5528 176) (-1512 -5528 40) (-1530 -5536 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.913811 0.406139 0 39.789] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345773" + "plane" "(-1538 -5522 40) (-1530 -5536 40) (-1512 -5528 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345772" + "plane" "(-1518 -5512 176) (-1512 -5528 176) (-1530 -5536 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731246" + side + { + "id" "345753" + "plane" "(-1476 -5504 176) (-1476 -5504 40) (-1476 -5520 40)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[0 1 0 176.004] 0.25" + "vaxis" "[0 0 -1 64] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345752" + "plane" "(-1494 -5522 176) (-1494 -5522 40) (-1498 -5506 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.242536 -0.970142 0 -31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345751" + "plane" "(-1498 -5506 176) (-1498 -5506 40) (-1476 -5504 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.995893 -0.0905365 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345750" + "plane" "(-1476 -5520 176) (-1476 -5520 40) (-1494 -5522 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.993883 0.110434 0 17.9546] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345749" + "plane" "(-1498 -5506 40) (-1494 -5522 40) (-1476 -5520 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345748" + "plane" "(-1476 -5504 176) (-1476 -5520 176) (-1494 -5522 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731254" + side + { + "id" "345801" + "plane" "(-1556 -5536 176) (-1556 -5536 40) (-1544 -5548 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 -4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345800" + "plane" "(-1556 -5562 176) (-1556 -5562 40) (-1570 -5554 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 -0.496139 0 8.17213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345799" + "plane" "(-1570 -5554 176) (-1570 -5554 40) (-1556 -5536 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.61394 -0.789352 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345798" + "plane" "(-1544 -5548 176) (-1544 -5548 40) (-1556 -5562 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650791 0.759257 0 22.2487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345797" + "plane" "(-1570 -5554 40) (-1556 -5562 40) (-1544 -5548 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345796" + "plane" "(-1556 -5536 176) (-1544 -5548 176) (-1556 -5562 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4731256" + side + { + "id" "345813" + "plane" "(-1570 -5554 176) (-1570 -5554 40) (-1556 -5562 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 0.496139 0 -8.17213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345812" + "plane" "(-1564 -5580 176) (-1564 -5580 40) (-1580 -5574 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 -0.351123 0 40.4944] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345811" + "plane" "(-1580 -5574 176) (-1580 -5574 40) (-1570 -5554 40)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_005" + "uaxis" "[-0.447214 -0.894427 0 -316] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345810" + "plane" "(-1556 -5562 176) (-1556 -5562 40) (-1564 -5580 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.406138 0.913811 0 32.3251] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345809" + "plane" "(-1556 -5562 40) (-1570 -5554 40) (-1580 -5574 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "345808" + "plane" "(-1570 -5554 176) (-1556 -5562 176) (-1564 -5580 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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811882" + side + { + "id" "336614" + "plane" "(-1556 -5562 32) (-1570 -5554 32) (-1580 -5574 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32.002] 0.25" + "vaxis" "[1 0 0 32.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336613" + "plane" "(-1570 -5554 40) (-1570 -5554 32) (-1556 -5562 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.868243 0.496139 0 -8.17213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336612" + "plane" "(-1564 -5580 40) (-1564 -5580 32) (-1580 -5574 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.936329 -0.351123 0 40.4944] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336611" + "plane" "(-1580 -5574 40) (-1580 -5574 32) (-1570 -5554 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.447213 -0.894427 0 -819.459] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336610" + "plane" "(-1556 -5562 40) (-1556 -5562 32) (-1564 -5580 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.406138 0.913811 0 32.3251] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336609" + "plane" "(-1570 -5554 40) (-1556 -5562 40) (-1564 -5580 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811880" + side + { + "id" "336602" + "plane" "(-1570 -5554 32) (-1556 -5562 32) (-1544 -5548 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32.002] 0.25" + "vaxis" "[1 0 0 32.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336601" + "plane" "(-1556 -5536 40) (-1556 -5536 32) (-1544 -5548 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 -4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336600" + "plane" "(-1556 -5562 40) (-1556 -5562 32) (-1570 -5554 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.868243 -0.496139 0 8.17213] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336599" + "plane" "(-1570 -5554 40) (-1570 -5554 32) (-1556 -5536 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.61394 -0.789352 0 -297.446] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336598" + "plane" "(-1544 -5548 40) (-1544 -5548 32) (-1556 -5562 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.650791 0.759257 0 22.2487] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336597" + "plane" "(-1556 -5536 40) (-1544 -5548 40) (-1556 -5562 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811872" + side + { + "id" "336554" + "plane" "(-1556 -5536 32) (-1544 -5548 32) (-1530 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32.002] 0.25" + "vaxis" "[1 0 0 32.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336553" + "plane" "(-1538 -5522 40) (-1538 -5522 32) (-1530 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.496139 0.868243 0 -33.0432] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336552" + "plane" "(-1544 -5548 40) (-1544 -5548 32) (-1556 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 4.54671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336551" + "plane" "(-1556 -5536 40) (-1556 -5536 32) (-1538 -5522 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.789352 -0.61394 0 -856.324] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336550" + "plane" "(-1530 -5536 40) (-1530 -5536 32) (-1544 -5548 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.759256 0.650792 0 32.9327] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336549" + "plane" "(-1538 -5522 40) (-1530 -5536 40) (-1544 -5548 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3811874" + side + { + "id" "336566" + "plane" "(-1518 -5512 32) (-1512 -5528 32) (-1494 -5522 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -32.002] 0.25" + "vaxis" "[1 0 0 32.002] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336565" + "plane" "(-1498 -5506 40) (-1498 -5506 32) (-1494 -5522 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.242536 0.970142 0 31.5223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336564" + "plane" "(-1512 -5528 40) (-1512 -5528 32) (-1518 -5512 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.351123 -0.936329 0 15.4975] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336563" + "plane" "(-1518 -5512 40) (-1518 -5512 32) (-1498 -5506 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_008" + "uaxis" "[-0.957826 0.287348 0 -975.34] 0.125" + "vaxis" "[0 0 -1 320] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336562" + "plane" "(-1494 -5522 40) (-1494 -5522 32) (-1512 -5528 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.948683 0.316229 0 55.1847] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "336561" + "plane" "(-1498 -5506 40) (-1494 -5522 40) (-1512 -5528 40)" + "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" "150 143 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "150 143 0" + "groupid" "2778641" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 11000]" + } +} +hidden +{ + entity + { + "id" "1142770" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "enablelightbounce" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001.mdl" + "renderamt" "255" + "rendercolor" "2 73 100" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1086 -5505 32.25" + editor + { + "color" "150 143 0" + "groupid" "1142769" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "1142775" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "95 95 95" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1116 -5512 32.25" + editor + { + "color" "150 143 0" + "groupid" "1142769" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "1142921" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-1196 -5504 131.046" + editor + { + "color" "150 143 0" + "groupid" "2778641" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1142925" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-1260 -5504 131.046" + editor + { + "color" "150 143 0" + "groupid" "2778641" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1142961" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-1422 -5504 131.289" + editor + { + "color" "150 143 0" + "groupid" "2778641" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +hidden +{ + entity + { + "id" "1142965" + "classname" "prop_dynamic" + "angles" "0 90 0" + "body" "0" + "DisableBoneFollowers" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "fademindist" "-1" + "fadescale" "1" + "HoldAnimation" "0" + "is_autoaim_target" "0" + "MaxAnimTime" "10" + "MinAnimTime" "5" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "PerformanceMode" "0" + "pressuredelay" "0" + "RandomAnimation" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "SetBodyGroup" "0" + "skin" "0" + "solid" "6" + "spawnflags" "0" + "StartDisabled" "0" + "origin" "-1358 -5504 131.289" + editor + { + "color" "150 143 0" + "groupid" "2843408" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 15000]" + } + } +} +entity +{ + "id" "1143836" + "classname" "func_detail" + solid + { + "id" "2186147" + side + { + "id" "299548" + "plane" "(-256 -5240 32) (-242 -5310.02 32) (-240 -5392 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299547" + "plane" "(-256 -5240 0) (-284 -5174 0) (-528 -5306 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" "299546" + "plane" "(-528 -5306 32) (-528 -5392 32) (-528 -5392 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" "299545" + "plane" "(-528 -5392 32) (-240 -5392 32) (-240 -5392 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" "299544" + "plane" "(-240 -5392 32) (-242 -5310.02 32) (-242 -5310 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" "299543" + "plane" "(-242 -5310.02 32) (-256 -5240 32) (-256 -5240 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" "299542" + "plane" "(-256 -5240 32) (-284 -5174 32) (-284 -5174 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" "299541" + "plane" "(-284 -5174 32) (-528 -5306 32) (-528 -5306 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.879545 0.475816 0 -933.26] 0.125" + "vaxis" "[0 0 -1 0.493818] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2186094" + side + { + "id" "299524" + "plane" "(-467.97 -5012 32) (-394.989 -5039.04 32) (-368 -5068 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299523" + "plane" "(-368 -5068 0) (-394.987 -5039.04 0) (-467.948 -5012.01 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" "299522" + "plane" "(-528 -5228 32) (-528 -5228 0) (-528 -5000 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" "299521" + "plane" "(-528 -5000 32) (-528 -5000 0) (-467.948 -5012.01 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" "299520" + "plane" "(-467.97 -5012 32) (-467.948 -5012.01 0) (-394.987 -5039.04 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" "299519" + "plane" "(-394.989 -5039.04 32) (-394.987 -5039.04 0) (-368 -5068 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" "299518" + "plane" "(-368 -5068 32) (-368 -5068 0) (-528 -5228 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.707106 -0.707107 0 997.695] 0.125" + "vaxis" "[0 0 -1 -4.58076] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2189813" + side + { + "id" "299837" + "plane" "(-528 -5306 32) (-528 -5228 32) (-398 -5098 32)" + "material" "CS_APOLLO/OUTSIDE/GROUND_RED" + "uaxis" "[1 0 0 -496] 0.125" + "vaxis" "[0 -1 0 -392] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299836" + "plane" "(-528 -5228 0) (-528 -5306 0) (-324.559 -5195.94 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" "299835" + "plane" "(-528 -5306 0) (-528 -5228 0) (-528 -5228 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" "299834" + "plane" "(-352 -5144 0) (-324.559 -5195.94 0) (-324.558 -5195.94 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" "299833" + "plane" "(-398 -5098 0) (-352 -5144 0) (-352 -5144 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" "299832" + "plane" "(-528 -5228 0) (-398 -5098 0) (-398 -5098 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "299831" + "plane" "(-324.559 -5195.94 0) (-528 -5306 0) (-528 -5306 32)" + "material" "CS_APOLLO/OUTSIDE/RED_CONC" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8268]" + } +} +hidden +{ + entity + { + "id" "1143949" + "classname" "prop_static" + "angles" "0 107 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props_interiors/table_cafeteria.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-396.349 -5393.15 34.2874" + editor + { + "color" "183 216 0" + "groupid" "3718884" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1500 1000]" + } + } +} +hidden +{ + entity + { + "id" "1144219" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-780 -3166 142" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +entity +{ + "id" "1144534" + "classname" "func_detail" + solid + { + "id" "5933902" + side + { + "id" "371248" + "plane" "(-1104 -2912 32) (-1104 -3328 32) (-1088 -3328 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" "371247" + "plane" "(-1104 -3328 32) (-1104 -2912 32) (-1104 -2912 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371246" + "plane" "(-1088 -2912 32) (-1088 -3328 32) (-1088 -3328 84)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371245" + "plane" "(-1104 -2912 32) (-1088 -2912 32) (-1088 -2912 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371244" + "plane" "(-1088 -3328 32) (-1104 -3328 32) (-1104 -3328 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371243" + "plane" "(-1104 -3328 84) (-1104 -2912 84) (-1088 -2912 84)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5933901" + side + { + "id" "371242" + "plane" "(-1104 -3328 88) (-1104 -2912 88) (-1086 -2912 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371241" + "plane" "(-1104 -2912 84) (-1104 -2912 88) (-1104 -3328 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" "371240" + "plane" "(-1086 -3328 84) (-1086 -3328 88) (-1086 -2912 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -818] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371239" + "plane" "(-1086 -2912 84) (-1086 -2912 88) (-1104 -2912 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" + } + side + { + "id" "371238" + "plane" "(-1104 -3328 84) (-1104 -3328 88) (-1086 -3328 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" + } + side + { + "id" "371237" + "plane" "(-1104 -2912 84) (-1104 -3328 84) (-1086 -3328 84)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 -961.997] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 1500]" + } +} +entity +{ + "id" "1144586" + "classname" "func_detail" + solid + { + "id" "1144587" + side + { + "id" "243483" + "plane" "(-520 -2896 416) (-520 -2896 210) (-520 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243482" + "plane" "(-522 -2896 210) (-520 -2896 210) (-520 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -16.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243481" + "plane" "(-520 -2912 416) (-520 -2912 210) (-522 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 14.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243480" + "plane" "(-522 -2896 416) (-520 -2896 416) (-520 -2912 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243479" + "plane" "(-522 -2912 210) (-520 -2912 210) (-520 -2896 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243478" + "plane" "(-522 -2912 416) (-522 -2912 210) (-522 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 62.9688] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144588" + side + { + "id" "243489" + "plane" "(-522 -2912 416) (-622 -2912 416) (-622 -2896 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" "243488" + "plane" "(-522 -2896 414) (-622 -2896 414) (-622 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243487" + "plane" "(-622 -2896 414) (-522 -2896 414) (-522 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243486" + "plane" "(-522 -2912 414) (-622 -2912 414) (-622 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243485" + "plane" "(-622 -2912 414) (-622 -2896 414) (-622 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243484" + "plane" "(-522 -2896 414) (-522 -2912 414) (-522 -2912 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144597" + side + { + "id" "243543" + "plane" "(-520 -2896 208) (-624 -2896 208) (-624 -2912 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243542" + "plane" "(-624 -2896 208) (-520 -2896 208) (-520 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 1 -16.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243541" + "plane" "(-520 -2912 208) (-624 -2912 208) (-624 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243540" + "plane" "(-520 -2912 210) (-624 -2912 210) (-624 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243539" + "plane" "(-624 -2912 210) (-624 -2912 208) (-624 -2896 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243538" + "plane" "(-520 -2896 210) (-520 -2896 208) (-520 -2912 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 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" "1144590" + side + { + "id" "243501" + "plane" "(-573 -2912 414) (-573 -2912 353) (-573 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243500" + "plane" "(-571 -2896 414) (-571 -2896 353) (-571 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243499" + "plane" "(-573 -2896 414) (-573 -2896 353) (-571 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9931] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243498" + "plane" "(-571 -2912 414) (-571 -2912 353) (-573 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243497" + "plane" "(-573 -2896 353) (-573 -2912 353) (-571 -2912 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243496" + "plane" "(-573 -2912 414) (-573 -2896 414) (-571 -2896 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144596" + side + { + "id" "243537" + "plane" "(-573 -2896 210) (-573 -2912 210) (-571 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243536" + "plane" "(-573 -2912 278) (-573 -2912 210) (-573 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243535" + "plane" "(-571 -2896 278) (-571 -2896 210) (-571 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243534" + "plane" "(-573 -2896 278) (-573 -2896 210) (-571 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9931] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243533" + "plane" "(-571 -2912 278) (-571 -2912 210) (-573 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243532" + "plane" "(-573 -2912 278) (-573 -2896 278) (-571 -2896 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144592" + side + { + "id" "243513" + "plane" "(-624 -2912 416) (-624 -2912 210) (-624 -2896 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243512" + "plane" "(-624 -2896 416) (-624 -2896 210) (-622 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -47.9893] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243511" + "plane" "(-622 -2912 210) (-624 -2912 210) (-624 -2912 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 47.9951] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243510" + "plane" "(-622 -2912 416) (-624 -2912 416) (-624 -2896 416)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243509" + "plane" "(-622 -2896 210) (-624 -2896 210) (-624 -2912 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243508" + "plane" "(-622 -2896 416) (-622 -2896 210) (-622 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144593" + side + { + "id" "243519" + "plane" "(-522 -2912 353) (-622 -2912 353) (-622 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243518" + "plane" "(-522 -2896 351) (-622 -2896 351) (-622 -2912 351)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 -1 0 0.970703] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243517" + "plane" "(-622 -2896 351) (-522 -2896 351) (-522 -2896 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243516" + "plane" "(-522 -2912 351) (-622 -2912 351) (-622 -2912 353)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 1 -54.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243515" + "plane" "(-622 -2912 351) (-622 -2896 351) (-622 -2896 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243514" + "plane" "(-522 -2896 351) (-522 -2912 351) (-522 -2912 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 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" "1144594" + side + { + "id" "243525" + "plane" "(-573 -2912 351) (-573 -2912 280) (-573 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 -1 0 63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243524" + "plane" "(-571 -2896 351) (-571 -2896 280) (-571 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[0 1 0 -62.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243523" + "plane" "(-573 -2896 351) (-573 -2896 280) (-571 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[-1 0 0 -22.9931] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243522" + "plane" "(-571 -2912 351) (-571 -2912 280) (-573 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -128] 0.125" + "vaxis" "[1 0 0 24.9912] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243521" + "plane" "(-573 -2912 351) (-573 -2896 351) (-571 -2896 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243520" + "plane" "(-573 -2896 280) (-573 -2912 280) (-571 -2912 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1144595" + side + { + "id" "243531" + "plane" "(-522 -2912 280) (-622 -2912 280) (-622 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 1 0 -63.9668] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243530" + "plane" "(-522 -2896 278) (-622 -2896 278) (-622 -2912 278)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 -1 0 63.9707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243529" + "plane" "(-622 -2896 278) (-522 -2896 278) (-522 -2896 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 -1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243528" + "plane" "(-522 -2912 278) (-622 -2912 278) (-622 -2912 280)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -63.9913] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243527" + "plane" "(-622 -2912 278) (-622 -2896 278) (-622 -2896 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243526" + "plane" "(-522 -2896 278) (-522 -2912 278) (-522 -2912 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "1144598" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-597.5 -2904 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1144599" + side + { + "id" "243549" + "plane" "(-622 -2905 278) (-622 -2903 278) (-573 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243548" + "plane" "(-622 -2903 210) (-622 -2905 210) (-573 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243547" + "plane" "(-622 -2905 210) (-622 -2903 210) (-622 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243546" + "plane" "(-573 -2903 210) (-573 -2905 210) (-573 -2905 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243545" + "plane" "(-622 -2903 210) (-573 -2903 210) (-573 -2903 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 177.633] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243544" + "plane" "(-573 -2905 210) (-622 -2905 210) (-622 -2905 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 177.633] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "1144601" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-546.5 -2904 244" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1144602" + side + { + "id" "243555" + "plane" "(-571 -2905 278) (-571 -2903 278) (-522 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243554" + "plane" "(-571 -2903 210) (-571 -2905 210) (-522 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243553" + "plane" "(-571 -2905 210) (-571 -2903 210) (-571 -2903 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243552" + "plane" "(-522 -2903 210) (-522 -2905 210) (-522 -2905 278)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243551" + "plane" "(-571 -2903 210) (-522 -2903 210) (-522 -2903 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -167.184] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243550" + "plane" "(-522 -2905 210) (-571 -2905 210) (-571 -2905 278)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 167.184] 0.191406" + "vaxis" "[0 0 -1 22.5883] 0.265625" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "1144604" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-546.5 -2904 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1144605" + side + { + "id" "243561" + "plane" "(-571 -2905 351) (-571 -2903 351) (-522 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243560" + "plane" "(-571 -2903 280) (-571 -2905 280) (-522 -2905 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243559" + "plane" "(-571 -2905 280) (-571 -2903 280) (-571 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243558" + "plane" "(-522 -2903 280) (-522 -2905 280) (-522 -2905 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243557" + "plane" "(-571 -2903 280) (-522 -2903 280) (-522 -2903 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -167.184] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243556" + "plane" "(-522 -2905 280) (-571 -2905 280) (-571 -2905 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 167.184] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "1144607" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-597.5 -2904 315.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1144608" + side + { + "id" "243567" + "plane" "(-622 -2905 351) (-622 -2903 351) (-573 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243566" + "plane" "(-622 -2903 280) (-622 -2905 280) (-573 -2905 280)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243565" + "plane" "(-622 -2905 280) (-622 -2903 280) (-622 -2903 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243564" + "plane" "(-573 -2903 280) (-573 -2905 280) (-573 -2905 351)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243563" + "plane" "(-622 -2903 280) (-573 -2903 280) (-573 -2903 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -177.633] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243562" + "plane" "(-573 -2905 280) (-622 -2905 280) (-622 -2905 351)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 177.633] 0.191406" + "vaxis" "[0 0 -1 241.578] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "1144610" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-597.5 -2904 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1144611" + side + { + "id" "243573" + "plane" "(-622 -2905 414) (-622 -2903 414) (-573 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243572" + "plane" "(-622 -2903 353) (-622 -2905 353) (-573 -2905 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243571" + "plane" "(-622 -2905 353) (-622 -2903 353) (-622 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243570" + "plane" "(-573 -2903 353) (-573 -2905 353) (-573 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243569" + "plane" "(-622 -2903 353) (-573 -2903 353) (-573 -2903 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -177.633] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243568" + "plane" "(-573 -2905 353) (-622 -2905 353) (-622 -2905 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 177.633] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "1144613" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "-546.5 -2904 388" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "1144614" + side + { + "id" "243579" + "plane" "(-571 -2905 414) (-571 -2903 414) (-522 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243578" + "plane" "(-571 -2903 353) (-571 -2905 353) (-522 -2905 353)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -19.9956] 0.25" + "vaxis" "[0 -1 0 63.9834] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243577" + "plane" "(-571 -2905 353) (-571 -2903 353) (-571 -2903 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243576" + "plane" "(-522 -2903 353) (-522 -2905 353) (-522 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -63.9834] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243575" + "plane" "(-571 -2903 353) (-522 -2903 353) (-522 -2903 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 -167.184] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "243574" + "plane" "(-522 -2905 353) (-571 -2905 353) (-571 -2905 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 167.184] 0.191406" + "vaxis" "[0 0 -1 201.443] 0.238281" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "1117918" + "classname" "func_instance" + "angles" "-0 -180 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "-480 -3968 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +hidden +{ + entity + { + "id" "1093933" + "classname" "prop_static" + "angles" "0 90 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2322.79 -5264 272" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "1093953" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "disableX360" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 253 232" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "2327.52 -5463.39 223.705" + editor + { + "color" "103 116 0" + "groupid" "5833123" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +entity +{ + "id" "1093956" + "classname" "light_spot" + "_cone" "35" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "20" + "_light" "255 253 232 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-33 75 90" + "pitch" "-33" + "spawnflags" "0" + "style" "0" + "origin" "2326.04 -5468.92 226.705" + editor + { + "color" "103 116 0" + "groupid" "5833123" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3500]" + } +} +hidden +{ + entity + { + "id" "1093961" + "classname" "prop_static" + "angles" "0 165 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_tvstation/studio_spotlight_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2323.9 -5476.93 244.25" + editor + { + "color" "103 116 0" + "groupid" "5833123" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "1044309" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-128 -3864 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1032581" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-648 -4176 -224" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "1032584" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-664 -3896 -224" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "1016683" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/mercury_atlas.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1774 -3869.31 32" + editor + { + "color" "202 151 0" + "groupid" "2148307" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "1016711" + "classname" "prop_static" + "angles" "0 45 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/mercury3.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1398 -4707.96 32" + editor + { + "color" "240 213 0" + "groupid" "2148316" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +entity +{ + "id" "988160" + "classname" "func_detail" + solid + { + "id" "572408" + side + { + "id" "230517" + "plane" "(2183 -5104 160) (2302 -4752 160) (2303 -4752 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0.304769 0.896378 0.321903 -1784] 0.125" + "vaxis" "[-0.946773 0.321903 0 100] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230516" + "plane" "(2302 -4752 160) (2183 -5104 160) (2183 -5104 96)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230515" + "plane" "(2183 -5104 96) (2183 -5104 160) (2184 -5104 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230514" + "plane" "(2302 -4752 160) (2302 -4752 96) (2303 -4752 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230513" + "plane" "(2302 -4752 96) (2183 -5104 96) (2184 -5104 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230512" + "plane" "(2184 -5104 160) (2303 -4752 160) (2303 -4752 96)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0.320262 0.947329 0 -33.1445] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "570935" + side + { + "id" "230523" + "plane" "(2183 -5168 160) (2184 -5168 160) (2184 -5504 160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 -192] 0.125" + "vaxis" "[1 0 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230522" + "plane" "(2183 -5168 160) (2183 -5504 160) (2183 -5504 96)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230521" + "plane" "(2184 -5504 160) (2184 -5168 160) (2184 -5168 96)" + "material" "LINK/GLASS_CLEAR" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230520" + "plane" "(2184 -5168 160) (2183 -5168 160) (2183 -5168 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230519" + "plane" "(2183 -5504 160) (2184 -5504 160) (2184 -5504 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230518" + "plane" "(2183 -5504 96) (2184 -5504 96) (2184 -5168 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 5500]" + } +} +entity +{ + "id" "988165" + "classname" "func_detail" + solid + { + "id" "1093923" + side + { + "id" "240355" + "plane" "(2192 -5104 48) (2176 -5104 48) (2176 -5128 48)" + "material" "DEV/REFLECTIVITY_20" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240354" + "plane" "(2176 -5128 48) (2176 -5104 48) (2176 -5104 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 -1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240353" + "plane" "(2176 -5104 48) (2192 -5104 48) (2192 -5104 96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -1023.99] 0.125" + "vaxis" "[1 0 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240352" + "plane" "(2192 -5128 48) (2176 -5128 48) (2176 -5128 96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -1023.99] 0.125" + "vaxis" "[1 0 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240351" + "plane" "(2192 -5104 48) (2192 -5128 48) (2192 -5128 96)" + "material" "DEV/REFLECTIVITY_20" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "240350" + "plane" "(2192 -5128 96) (2176 -5128 96) (2176 -5104 96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0.304769 0.896378 0.321903 -1784] 0.125" + "vaxis" "[-0.946773 0.321903 0 100] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "988179" + "classname" "func_detail" + solid + { + "id" "570934" + side + { + "id" "230547" + "plane" "(2176 -5504 0) (2192 -5504 0) (2192 -5128 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" "230546" + "plane" "(2176 -5504 0) (2176 -5128 0) (2176 -5128 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230545" + "plane" "(2192 -5128 0) (2192 -5504 0) (2192 -5504 96)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 0 1 31.9985] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230544" + "plane" "(2176 -5128 0) (2192 -5128 0) (2192 -5128 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" "230543" + "plane" "(2192 -5504 0) (2176 -5504 0) (2176 -5504 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" "230542" + "plane" "(2176 -5128 96) (2192 -5128 96) (2192 -5504 96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 1 0 -192] 0.125" + "vaxis" "[1 0 0 82] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "572573" + side + { + "id" "230553" + "plane" "(2296 -4752 0) (2176 -5104 0) (2192 -5104 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" "230552" + "plane" "(2176 -5104 0) (2296 -4752 0) (2296 -4752 96)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230551" + "plane" "(2176 -5104 0) (2176 -5104 96) (2192 -5104 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" "230550" + "plane" "(2296 -4752 0) (2312 -4752 0) (2312 -4752 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" "230549" + "plane" "(2176 -5104 96) (2296 -4752 96) (2312 -4752 96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0.304769 0.896378 0.321903 -1784] 0.125" + "vaxis" "[-0.946773 0.321903 0 100] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "230548" + "plane" "(2312 -4752 0) (2192 -5104 0) (2192 -5104 96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -18] 0.25" + "vaxis" "[-0.322674 -0.94651 0 -37] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +entity +{ + "id" "988494" + "classname" "func_detail" + solid + { + "id" "3015422" + side + { + "id" "326215" + "plane" "(384 -4560 0) (368 -4560 0) (366 -4582 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326214" + "plane" "(382 -4584 0) (366 -4582 0) (366 -4582 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992278 -0.124035 0 31.1082] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326213" + "plane" "(368 -4560 0) (384 -4560 0) (384 -4560 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326212" + "plane" "(384 -4560 0) (382 -4584 0) (382 -4584 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.0830449 -0.996546 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326211" + "plane" "(366 -4582 0) (368 -4560 0) (368 -4560 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.0905358 -0.995893 0 -19.0877] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326210" + "plane" "(382 -4584 16) (366 -4582 16) (368 -4560 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015424" + side + { + "id" "326227" + "plane" "(382 -4584 0) (366 -4582 0) (360 -4602 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326226" + "plane" "(374 -4608 0) (360 -4602 0) (360 -4602 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.919145 -0.393919 0 17.4211] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326225" + "plane" "(366 -4582 0) (382 -4584 0) (382 -4584 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992278 0.124035 0 -31.1082] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326224" + "plane" "(382 -4584 0) (374 -4608 0) (374 -4608 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.316227 -0.948684 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326223" + "plane" "(360 -4602 0) (366 -4582 0) (366 -4582 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.287348 -0.957826 0 -11.7012] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326222" + "plane" "(374 -4608 16) (360 -4602 16) (366 -4582 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015426" + side + { + "id" "326239" + "plane" "(374 -4608 0) (360 -4602 0) (350 -4622 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326238" + "plane" "(362 -4632 0) (350 -4622 0) (350 -4622 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.768221 -0.640184 0 2.79756] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326237" + "plane" "(360 -4602 0) (374 -4608 0) (374 -4608 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.919145 0.393919 0 -17.4211] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326236" + "plane" "(374 -4608 0) (362 -4632 0) (362 -4632 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.447213 -0.894427 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326235" + "plane" "(350 -4622 0) (360 -4602 0) (360 -4602 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 -0.894427 0 -39.8732] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326234" + "plane" "(362 -4632 16) (350 -4622 16) (360 -4602 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015428" + side + { + "id" "326251" + "plane" "(362 -4632 0) (350 -4622 0) (336 -4640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326250" + "plane" "(346 -4650 0) (336 -4640 0) (336 -4640 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -3.25325] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326249" + "plane" "(350 -4622 0) (362 -4632 0) (362 -4632 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.768221 0.640184 0 -2.79756] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326248" + "plane" "(362 -4632 0) (346 -4650 0) (346 -4650 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.664363 -0.74741 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326247" + "plane" "(336 -4640 0) (350 -4622 0) (350 -4622 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.613941 -0.789352 0 -59.29] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326246" + "plane" "(346 -4650 16) (336 -4640 16) (350 -4622 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015430" + side + { + "id" "326263" + "plane" "(318 -4654 0) (328 -4666 0) (346 -4650 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326262" + "plane" "(328 -4666 0) (318 -4654 0) (318 -4654 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.640184 -0.768221 0 -53.429] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326261" + "plane" "(336 -4640 0) (346 -4650 0) (346 -4650 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 3.25325] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326260" + "plane" "(346 -4650 0) (328 -4666 0) (328 -4666 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.747409 -0.664364 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326259" + "plane" "(318 -4654 0) (336 -4640 0) (336 -4640 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.789352 -0.613941 0 -60.2766] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326258" + "plane" "(328 -4666 16) (318 -4654 16) (336 -4640 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015432" + side + { + "id" "326275" + "plane" "(298 -4664 0) (304 -4678 0) (328 -4666 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326274" + "plane" "(304 -4678 0) (298 -4664 0) (298 -4664 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.393919 -0.919145 0 -46] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326273" + "plane" "(318 -4654 0) (328 -4666 0) (328 -4666 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.640184 0.768221 0 53.429] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326272" + "plane" "(328 -4666 0) (304 -4678 0) (304 -4678 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.894427 -0.447214 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326271" + "plane" "(298 -4664 0) (318 -4654 0) (318 -4654 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 -0.447214 0 -45.524] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326270" + "plane" "(304 -4678 16) (298 -4664 16) (318 -4654 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015434" + side + { + "id" "326287" + "plane" "(278 -4670 0) (280 -4686 0) (304 -4678 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326286" + "plane" "(280 -4686 0) (278 -4670 0) (278 -4670 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.124035 -0.992278 0 -50.1872] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326285" + "plane" "(298 -4664 0) (304 -4678 0) (304 -4678 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.393919 0.919145 0 46] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326284" + "plane" "(304 -4678 0) (280 -4686 0) (280 -4686 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.948683 -0.316228 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326283" + "plane" "(278 -4670 0) (298 -4664 0) (298 -4664 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.957826 -0.287348 0 -0.650024] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326282" + "plane" "(280 -4686 16) (278 -4670 16) (298 -4664 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015436" + side + { + "id" "326299" + "plane" "(256 -4672 0) (256 -4688 0) (280 -4686 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326298" + "plane" "(256 -4688 0) (256 -4672 0) (256 -4672 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326297" + "plane" "(278 -4670 0) (280 -4686 0) (280 -4686 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.124035 0.992278 0 50.1872] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326296" + "plane" "(280 -4686 0) (256 -4688 0) (256 -4688 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.996546 -0.0830478 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326295" + "plane" "(256 -4672 0) (278 -4670 0) (278 -4670 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.995893 -0.0905357 0 -15.6511] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326294" + "plane" "(256 -4688 16) (256 -4672 16) (278 -4670 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015438" + side + { + "id" "326311" + "plane" "(256 -4672 -16) (248 -4672 -16) (248 -4688 -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" "326310" + "plane" "(248 -4688 16) (248 -4688 -16) (248 -4672 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -128] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326309" + "plane" "(248 -4672 16) (248 -4672 -16) (256 -4672 -16)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[-1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326308" + "plane" "(256 -4688 16) (256 -4688 -16) (248 -4688 -16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -435] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326307" + "plane" "(256 -4672 16) (256 -4672 -16) (256 -4688 -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" "326306" + "plane" "(256 -4688 16) (248 -4688 16) (248 -4672 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015421" + side + { + "id" "326209" + "plane" "(382 -4584 160) (366 -4582 160) (368 -4560 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326208" + "plane" "(366 -4582 16) (366 -4582 160) (382 -4584 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992278 -0.124035 0 31.1082] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326207" + "plane" "(384 -4560 16) (384 -4560 160) (368 -4560 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -0.00195313] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326206" + "plane" "(382 -4584 16) (382 -4584 160) (384 -4560 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.0830449 -0.996546 0 -165.837] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326205" + "plane" "(368 -4560 16) (368 -4560 160) (366 -4582 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.0905358 -0.995893 0 -19.0877] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326204" + "plane" "(384 -4560 16) (368 -4560 16) (366 -4582 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015423" + side + { + "id" "326221" + "plane" "(374 -4608 160) (360 -4602 160) (366 -4582 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326220" + "plane" "(360 -4602 16) (360 -4602 160) (374 -4608 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.919145 -0.393919 0 17.4211] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326219" + "plane" "(382 -4584 16) (382 -4584 160) (366 -4582 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992278 0.124035 0 -31.1082] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326218" + "plane" "(374 -4608 16) (374 -4608 160) (382 -4584 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.316227 -0.948684 0 -258.033] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326217" + "plane" "(366 -4582 16) (366 -4582 160) (360 -4602 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.287348 -0.957826 0 -11.7012] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326216" + "plane" "(382 -4584 16) (366 -4582 16) (360 -4602 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015425" + side + { + "id" "326233" + "plane" "(362 -4632 160) (350 -4622 160) (360 -4602 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326232" + "plane" "(350 -4622 16) (350 -4622 160) (362 -4632 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.768221 -0.640184 0 2.79756] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326231" + "plane" "(374 -4608 16) (374 -4608 160) (360 -4602 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.919145 0.393919 0 -17.4211] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326230" + "plane" "(362 -4632 16) (362 -4632 160) (374 -4608 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.447213 -0.894427 0 -426.012] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326229" + "plane" "(360 -4602 16) (360 -4602 160) (350 -4622 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.447214 -0.894427 0 -39.8732] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326228" + "plane" "(374 -4608 16) (360 -4602 16) (350 -4622 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015427" + side + { + "id" "326245" + "plane" "(346 -4650 160) (336 -4640 160) (350 -4622 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326244" + "plane" "(336 -4640 16) (336 -4640 160) (346 -4650 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 -0.707107 0 -3.25325] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326243" + "plane" "(362 -4632 16) (362 -4632 160) (350 -4622 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.768221 0.640184 0 -2.79756] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326242" + "plane" "(346 -4650 16) (346 -4650 160) (362 -4632 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.664363 -0.74741 0 -493.26] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326241" + "plane" "(350 -4622 16) (350 -4622 160) (336 -4640 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.613941 -0.789352 0 -59.29] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326240" + "plane" "(362 -4632 16) (350 -4622 16) (336 -4640 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015429" + side + { + "id" "326257" + "plane" "(328 -4666 160) (318 -4654 160) (336 -4640 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326256" + "plane" "(318 -4654 16) (318 -4654 160) (328 -4666 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.640184 -0.768221 0 -53.429] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326255" + "plane" "(346 -4650 16) (346 -4650 160) (336 -4640 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 0.707107 0 3.25325] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326254" + "plane" "(328 -4666 16) (328 -4666 160) (346 -4650 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.747409 -0.664364 0 -246.088] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326253" + "plane" "(336 -4640 16) (336 -4640 160) (318 -4654 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.789352 -0.613941 0 -60.2766] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326252" + "plane" "(318 -4654 16) (328 -4666 16) (346 -4650 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015431" + side + { + "id" "326269" + "plane" "(304 -4678 160) (298 -4664 160) (318 -4654 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326268" + "plane" "(298 -4664 16) (298 -4664 160) (304 -4678 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.393919 -0.919145 0 -46] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326267" + "plane" "(328 -4666 16) (328 -4666 160) (318 -4654 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.640184 0.768221 0 53.429] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326266" + "plane" "(304 -4678 16) (304 -4678 160) (328 -4666 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.894427 -0.447214 0 -433.164] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326265" + "plane" "(318 -4654 16) (318 -4654 160) (298 -4664 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.894427 -0.447214 0 -45.524] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326264" + "plane" "(298 -4664 16) (304 -4678 16) (328 -4666 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015433" + side + { + "id" "326281" + "plane" "(280 -4686 160) (278 -4670 160) (298 -4664 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326280" + "plane" "(278 -4670 16) (278 -4670 160) (280 -4686 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.124035 -0.992278 0 -50.1872] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326279" + "plane" "(304 -4678 16) (304 -4678 160) (298 -4664 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.393919 0.919145 0 46] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326278" + "plane" "(280 -4686 16) (280 -4686 160) (304 -4678 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.948683 -0.316228 0 -511.361] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326277" + "plane" "(298 -4664 16) (298 -4664 160) (278 -4670 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.957826 -0.287348 0 -0.650024] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326276" + "plane" "(278 -4670 16) (280 -4686 16) (304 -4678 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015435" + side + { + "id" "326293" + "plane" "(256 -4688 160) (256 -4672 160) (278 -4670 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[-1 0 0 -0.00195313] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326292" + "plane" "(256 -4672 16) (256 -4672 160) (256 -4688 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9971] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326291" + "plane" "(280 -4686 16) (280 -4686 160) (278 -4670 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.124035 0.992278 0 50.1872] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326290" + "plane" "(256 -4688 16) (256 -4688 160) (280 -4686 160)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.996546 -0.0830478 0 -366.7] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326289" + "plane" "(278 -4670 16) (278 -4670 160) (256 -4672 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.995893 -0.0905357 0 -15.6511] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326288" + "plane" "(256 -4672 16) (256 -4688 16) (280 -4686 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015437" + side + { + "id" "326305" + "plane" "(248 -4688 240) (248 -4688 16) (248 -4672 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_003" + "uaxis" "[0 0 -1 -128] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326304" + "plane" "(248 -4672 240) (248 -4672 16) (256 -4672 16)" + "material" "CS_APOLLO/WALLS/LIGHTBLUE_WALL_DIFFUSE" + "uaxis" "[-1 0 0 62] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326303" + "plane" "(256 -4688 240) (256 -4688 16) (248 -4688 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-1 0 0 -317] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326302" + "plane" "(256 -4672 240) (256 -4672 16) (256 -4688 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" "326301" + "plane" "(256 -4688 240) (248 -4688 240) (248 -4672 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" "326300" + "plane" "(256 -4672 16) (248 -4672 16) (248 -4688 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +entity +{ + "id" "991067" + "classname" "func_detail" + solid + { + "id" "1051011" + side + { + "id" "237878" + "plane" "(85 -6344.71 24) (79 -6332.71 24) (124 -6292.71 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.733919 0.676356 -0.0624888 -437.969] 0.125" + "vaxis" "[0.677681 -0.735356 0 -921.792] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237877" + "plane" "(136 -6297.71 0) (124 -6292.71 0) (79 -6332.71 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -50.8438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237876" + "plane" "(85 -6344.71 0) (79 -6332.71 0) (79 -6332.71 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -50.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237875" + "plane" "(124 -6292.71 0) (136 -6297.71 0) (136 -6297.71 24)" + "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" "237874" + "plane" "(79 -6332.71 0) (124 -6292.71 0) (124 -6292.71 24)" + "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" "237873" + "plane" "(136 -6297.71 0) (85 -6344.71 0) (85 -6344.71 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.691571 0.722308 0 375.227] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1051021" + side + { + "id" "237938" + "plane" "(-64 -6368 8) (-64.0036 -6357 8) (90 -6357 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 -154.582] 0.125" + "vaxis" "[0 -1 0 -773.68] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237937" + "plane" "(-64 -6357 0) (-64.0012 -6368 0) (96 -6368 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -18.8438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237936" + "plane" "(90 -6357 8) (90 -6357 0) (96 -6368 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 18.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.0833333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237935" + "plane" "(-64.0036 -6357 8) (-64 -6357 0) (90 -6357 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.0833333" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237934" + "plane" "(96 -6368 8) (96 -6368 0) (-64.0012 -6368 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 -154.582] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237933" + "plane" "(-64 -6368 8) (-64.0012 -6368 0) (-64 -6357 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.719843 -0.694136 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" "1051013" + side + { + "id" "237889" + "plane" "(124 -6000 24) (136 -6000 24) (136 -6297.71 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 270.244] 0.125" + "vaxis" "[1 0 0 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237888" + "plane" "(124 -6292.71 0) (136 -6297.71 0) (136 -6000 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -50.8438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237887" + "plane" "(124 -6000 0) (124 -6000 24) (124 -6292.71 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -50.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237886" + "plane" "(136 -6297.71 0) (136 -6297.71 24) (136 -6000 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 270.244] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237885" + "plane" "(124 -6292.71 0) (124 -6292.71 24) (136 -6297.71 24)" + "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" "237884" + "plane" "(136 -6000 0) (136 -6000 24) (124 -6000 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.719848 -0.694131 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" "1051014" + side + { + "id" "237895" + "plane" "(136 -6000 16) (148 -6000 16) (148 -6302.71 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 96.8715] 0.125" + "vaxis" "[1 0 0 -160] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237894" + "plane" "(136 -6297.71 0) (148 -6302.71 0) (148 -6000 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -50.8438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237893" + "plane" "(136 -6000 0) (136 -6000 16) (136 -6297.71 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -50.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237892" + "plane" "(148 -6302.71 0) (148 -6302.71 16) (148 -6000 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 96.8725] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237891" + "plane" "(136 -6297.71 0) (136 -6297.71 16) (148 -6302.71 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237890" + "plane" "(148 -6000 0) (148 -6000 16) (136 -6000 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.719848 -0.694131 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" "1051015" + side + { + "id" "237901" + "plane" "(148 -6000 8) (160 -6000 8) (160 -6306.71 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 67.9585] 0.125" + "vaxis" "[1 0 0 -256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237900" + "plane" "(148 -6302.71 0) (160 -6306.71 0) (160 -6000 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -50.8438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237899" + "plane" "(148 -6000 0) (148 -6000 8) (148 -6302.71 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -50.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237898" + "plane" "(160 -6306.71 0) (160 -6306.71 8) (160 -6000 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 67.9585] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237897" + "plane" "(148 -6302.71 0) (148 -6302.71 8) (160 -6306.71 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237896" + "plane" "(160 -6000 0) (160 -6000 8) (148 -6000 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.719848 -0.694131 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" "1051016" + side + { + "id" "237907" + "plane" "(148 -6302.71 8) (160 -6306.71 8) (96 -6368 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.71824 0.695795 0 184.356] 0.125" + "vaxis" "[0.695795 -0.71824 0 -264.488] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237906" + "plane" "(90 -6357 0) (96 -6368 0) (160 -6306.71 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -50.8438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237905" + "plane" "(90 -6357 8) (96 -6368 8) (96 -6368 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -50.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237904" + "plane" "(160 -6306.71 8) (148 -6302.71 8) (148 -6302.71 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 50.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237903" + "plane" "(148 -6302.71 8) (90 -6357 8) (90 -6357 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237902" + "plane" "(96 -6368 8) (160 -6306.71 8) (160 -6306.71 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.71824 0.695795 0 184.354] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1051017" + side + { + "id" "237913" + "plane" "(136 -6297.71 16) (148 -6302.71 16) (90 -6357 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.728631 0.678381 -0.0943146 -74.3203] 0.125" + "vaxis" "[0.681418 -0.731894 0 -846.13] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237912" + "plane" "(85 -6344.71 0) (90 -6357 0) (148 -6302.71 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -34.8438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237911" + "plane" "(85 -6344.71 16) (90 -6357 16) (90 -6357 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -34.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237910" + "plane" "(148 -6302.71 16) (136 -6297.71 16) (136 -6297.71 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237909" + "plane" "(136 -6297.71 16) (85 -6344.71 16) (85 -6344.71 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237908" + "plane" "(90 -6357 16) (148 -6302.71 16) (148 -6302.71 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.664364 0.747409 0 -113.778] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "2754128" + side + { + "id" "322597" + "plane" "(124 -6187 32) (124 -6292.7 32) (79 -6333 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001_DARK" + "uaxis" "[0 1 0 229.688] 0.125" + "vaxis" "[1 0 0 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322596" + "plane" "(124 -6187 0) (79 -6187 0) (79 -6333 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -33.6678] 0.285294" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322595" + "plane" "(124 -6292.7 32) (124 -6187 32) (124 -6187 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 270.24] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322594" + "plane" "(79 -6333 32) (124 -6292.7 32) (124 -6292.71 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0.747409 0.664364 0 -471.68] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322593" + "plane" "(124 -6187 32) (79 -6187 32) (79 -6187 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -51] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "322592" + "plane" "(79 -6187 32) (79 -6333 32) (79 -6333 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_POLISHED_001_DARK" + "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" "1051019" + side + { + "id" "237926" + "plane" "(79 -6333 24) (85 -6344.71 24) (-64 -6345 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 -145.191] 0.125" + "vaxis" "[0 -1 0 -581.68] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237925" + "plane" "(79 -6333 0) (-64 -6333 0) (-64 -6345 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -50.8438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237924" + "plane" "(85 -6344.71 0) (85 -6344.71 24) (79 -6333 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 50.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237923" + "plane" "(79 -6333 0) (79 -6333 24) (-64 -6333 24)" + "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" "237922" + "plane" "(-64 -6345 0) (-64 -6345 24) (85 -6344.71 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 -145.191] 0.125" + "vaxis" "[0 0 -1 192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237921" + "plane" "(-64 -6333 0) (-64 -6333 24) (-64 -6345 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.719844 -0.694136 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" "1051020" + side + { + "id" "237932" + "plane" "(90 -6357 16) (-64 -6357 16) (-64 -6345 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 -475.945] 0.125" + "vaxis" "[0 -1 0 -677.68] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237931" + "plane" "(85 -6344.71 0) (-64.001 -6345 0) (-63.999 -6357 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -34.8438] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237930" + "plane" "(90 -6357 16) (85 -6344.71 16) (85 -6344.71 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 34.8438] 0.25" + "vaxis" "[0 0 -1 0] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237929" + "plane" "(85 -6344.71 16) (-64 -6345 16) (-64.001 -6345 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.166667" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237928" + "plane" "(-64 -6357 16) (90 -6357 16) (90 -6357 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[1 0 0 -475.945] 0.125" + "vaxis" "[0 0 -1 128] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "237927" + "plane" "(-64 -6345 16) (-64 -6357 16) (-63.999 -6357 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.719845 -0.694135 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" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 7500]" + } +} +hidden +{ + entity + { + "id" "980845" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_corner_001_16.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "549 -6619 0" + editor + { + "color" "104 129 0" + "groupid" "981034" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "980962" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "549 -6635 0" + editor + { + "color" "104 129 0" + "groupid" "981034" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "981035" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "549 -6765 0" + editor + { + "color" "104 129 0" + "groupid" "981096" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "981109" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_corner_001_16.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "852 -6620 0" + editor + { + "color" "152 205 0" + "groupid" "981238" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "981113" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "853 -6645 0" + editor + { + "color" "152 205 0" + "groupid" "981238" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "981117" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "853 -6775 0" + editor + { + "color" "152 205 0" + "groupid" "981238" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "981162" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_16.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "882 -6620 0" + editor + { + "color" "152 205 0" + "groupid" "981238" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +entity +{ + "id" "975142" + "classname" "info_player_start" + "angles" "0 0 0" + "spawnflags" "0" + "origin" "367 -6076 9" + editor + { + "color" "0 255 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +hidden +{ + entity + { + "id" "956929" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005_window.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2028 -5504 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "956933" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005_window.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1908 -5506 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +entity +{ + "id" "956999" + "classname" "func_detail" + solid + { + "id" "1388953" + side + { + "id" "260228" + "plane" "(1696 -5712 176) (1696 -5696 176) (1712 -5696 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260227" + "plane" "(1696 -5696 48) (1696 -5712 48) (1712 -5712 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260226" + "plane" "(1696 -5712 48) (1696 -5696 48) (1696 -5696 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260225" + "plane" "(1712 -5696 48) (1712 -5712 48) (1712 -5712 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260224" + "plane" "(1696 -5696 48) (1712 -5696 48) (1712 -5696 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260223" + "plane" "(1712 -5712 48) (1696 -5712 48) (1696 -5712 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388970" + side + { + "id" "260252" + "plane" "(1696 -5856 176) (1696 -5712 176) (1712 -5712 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 371.999] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260251" + "plane" "(1696 -5712 160) (1696 -5712 176) (1696 -5856 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 -12] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260250" + "plane" "(1712 -5856 160) (1712 -5856 176) (1712 -5712 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 0 1 -12] 0.25" + "vaxis" "[0 1 0 8] 0.25" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260249" + "plane" "(1712 -5712 160) (1712 -5712 176) (1696 -5712 176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 18] 0.258" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260248" + "plane" "(1696 -5856 160) (1696 -5856 176) (1712 -5856 176)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260247" + "plane" "(1696 -5712 160) (1696 -5856 160) (1712 -5856 160)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388954" + side + { + "id" "260234" + "plane" "(1696 -5872 176) (1696 -5856 176) (1712 -5856 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260233" + "plane" "(1696 -5856 48) (1696 -5872 48) (1712 -5872 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260232" + "plane" "(1696 -5872 48) (1696 -5856 48) (1696 -5856 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260231" + "plane" "(1712 -5856 48) (1712 -5872 48) (1712 -5872 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260230" + "plane" "(1712 -5872 48) (1696 -5872 48) (1696 -5872 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260229" + "plane" "(1696 -5856 48) (1712 -5856 48) (1712 -5856 176)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388977" + side + { + "id" "260264" + "plane" "(1700 -5856 160) (1700 -5856 64) (1700 -5712 64)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON3" + "uaxis" "[0 -1 0 -682.668] 0.140625" + "vaxis" "[0 0 -1 341.333] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260263" + "plane" "(1708 -5712 160) (1708 -5712 64) (1708 -5856 64)" + "material" "CS_APOLLO/EXHIBITS/INFO_MOON1" + "uaxis" "[0 1 0 682.668] 0.140625" + "vaxis" "[0 0 -1 341.333] 0.1875" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260262" + "plane" "(1700 -5712 160) (1700 -5712 64) (1708 -5712 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 18] 0.258" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260261" + "plane" "(1708 -5856 160) (1708 -5856 64) (1700 -5856 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 18] 0.258" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260260" + "plane" "(1700 -5856 160) (1700 -5712 160) (1708 -5712 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 18] 0.258" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260259" + "plane" "(1700 -5712 64) (1700 -5856 64) (1708 -5856 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 18] 0.258" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1388976" + side + { + "id" "260258" + "plane" "(1696 -5712 48) (1696 -5856 48) (1712 -5856 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[-1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260257" + "plane" "(1696 -5856 64) (1696 -5856 48) (1696 -5712 48)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260256" + "plane" "(1712 -5712 64) (1712 -5712 48) (1712 -5856 48)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260255" + "plane" "(1696 -5712 64) (1696 -5712 48) (1712 -5712 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260254" + "plane" "(1712 -5856 64) (1712 -5856 48) (1696 -5856 48)" + "material" "DEV/REFLECTIVITY_50" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "260253" + "plane" "(1696 -5856 64) (1696 -5712 64) (1712 -5712 64)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "949498" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3760 346" + editor + { + "color" "159 224 0" + "groupid" "949657" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "949551" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2406 -3728 345" + editor + { + "color" "159 224 0" + "groupid" "949657" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "949566" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2605 -3728 345" + editor + { + "color" "160 225 0" + "groupid" "949728" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "949570" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3760 346" + editor + { + "color" "160 225 0" + "groupid" "949728" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "949729" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2799 -3728 345" + editor + { + "color" "162 139 0" + "groupid" "949816" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "949733" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3760 346" + editor + { + "color" "162 139 0" + "groupid" "949816" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "949915" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3344 346" + editor + { + "color" "160 225 0" + "groupid" "950010" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "949923" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3344 346" + editor + { + "color" "162 139 0" + "groupid" "950087" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "951217" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-131 -4542 208" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "951232" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-480 -4541 208" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "951238" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-528 -4351 208" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "942629" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-683 -4254 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "942632" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-480 -4000 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "937075" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_spot_basement" + "fixup_style" "0" + "origin" "16 -3872 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 3000]" + } +} +entity +{ + "id" "937101" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-64 -4000 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "937104" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-288 -4000 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "937113" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-704 -4000 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "937119" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/light_recessed_basement" + "fixup_style" "0" + "origin" "-552 -4224 -48" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "931576" + "classname" "func_detail" + solid + { + "id" "931577" + side + { + "id" "227848" + "plane" "(978.645 -5888 136) (978.645 -5888.87 136) (969.378 -5892.94 136)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -11] 0.25" + "vaxis" "[1 0 0 -26.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227847" + "plane" "(978.645 -5888 133) (978.645 -5888.87 133) (978.645 -5888.87 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -20.5928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227846" + "plane" "(969.399 -5892.94 133) (969.399 -5892.94 136) (978.645 -5888.87 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -10.2298] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227845" + "plane" "(956.453 -5896.19 133) (956.453 -5896.19 136) (969.383 -5892.94 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 0.243417 0 -7.08057] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227844" + "plane" "(941.645 -5897 133) (941.645 -5897 136) (956.449 -5896.19 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 0.0548161 0 -8.74087] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227843" + "plane" "(926.621 -5896 133) (926.621 -5896 136) (941.645 -5897 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 -0.0548161 0 -22.5922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227842" + "plane" "(913.688 -5893.01 133) (913.688 -5893.01 136) (926.617 -5896 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 -0.243417 0 -25.5509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227841" + "plane" "(904.645 -5888.88 133) (904.645 -5888.88 136) (913.676 -5893 136)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 -23.7961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227840" + "plane" "(904.645 -5888 136) (904.645 -5888.87 136) (904.645 -5888.87 133)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 -29.4928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227839" + "plane" "(904.645 -5888 133) (904.645 -5888.88 133) (913.688 -5893.01 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227838" + "plane" "(978.645 -5888 133) (978.645 -5888 136) (904.645 -5888 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "931578" + side + { + "id" "227859" + "plane" "(976.645 -5889.76 57) (969.439 -5892.93 57) (969.438 -5892.92 133)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.915324 0.402714 0 118] 0.13" + "vaxis" "[0 0 -1 706] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227858" + "plane" "(969.424 -5892.93 133) (969.425 -5892.93 57) (956.448 -5896.19 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.969867 0.243627 0 180] 0.13" + "vaxis" "[0 0 -1 706] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227857" + "plane" "(956.434 -5896.19 133) (956.445 -5896.19 57) (941.645 -5897 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.998504 0.0546513 0 -409.748] 0.13" + "vaxis" "[0 0 -1 705.638] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227856" + "plane" "(941.645 -5897 133) (941.645 -5897 57) (926.645 -5896 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.997783 -0.0665192 0 -270.346] 0.13" + "vaxis" "[0 0 -1 706.219] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227855" + "plane" "(926.645 -5896 133) (926.645 -5896 57) (913.645 -5893 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.974389 -0.224859 0 -123] 0.13" + "vaxis" "[0 0 -1 706] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227854" + "plane" "(913.645 -5893 133) (913.645 -5893 57) (906.645 -5889.78 57)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0.908477 -0.417929 0 -208] 0.13" + "vaxis" "[0 0 -1 706] 0.08" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227853" + "plane" "(906.645 -5888 57) (906.645 -5889.79 57) (913.645 -5893 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227852" + "plane" "(976.645 -5888 133) (976.645 -5889.75 133) (969.43 -5892.93 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227851" + "plane" "(906.645 -5889.79 133) (906.645 -5889.79 57) (906.645 -5888 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227850" + "plane" "(976.645 -5888 57) (976.645 -5889.76 57) (976.645 -5889.76 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227849" + "plane" "(906.645 -5888 57) (976.645 -5888 57) (976.645 -5888 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 59] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "931579" + side + { + "id" "227865" + "plane" "(906.645 -5889.79 57) (904.645 -5888.87 57) (904.645 -5888.87 133)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 -23.7961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227864" + "plane" "(904.645 -5888.88 133) (904.645 -5888.88 57) (904.645 -5888 57)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 -14.3512] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227863" + "plane" "(904.645 -5888 57) (904.645 -5888.87 57) (906.645 -5889.79 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227862" + "plane" "(906.645 -5888 133) (906.645 -5889.79 133) (904.645 -5888.87 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227861" + "plane" "(906.645 -5888 57) (906.645 -5889.79 57) (906.645 -5889.79 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227860" + "plane" "(904.645 -5888 133) (904.645 -5888 57) (906.645 -5888 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "931580" + side + { + "id" "227871" + "plane" "(978.645 -5888 57) (978.645 -5888.88 57) (978.645 -5888.88 133)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -25.7374] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227870" + "plane" "(978.645 -5888.87 133) (978.645 -5888.87 57) (976.645 -5889.75 57)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -10.3392] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227869" + "plane" "(976.645 -5888 57) (976.645 -5889.75 57) (978.645 -5888.88 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227868" + "plane" "(978.645 -5888 133) (978.645 -5888.88 133) (976.645 -5889.76 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227867" + "plane" "(976.645 -5889.75 133) (976.645 -5889.75 57) (976.645 -5888 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227866" + "plane" "(976.645 -5888 57) (978.645 -5888 57) (978.645 -5888 133)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "931581" + side + { + "id" "227882" + "plane" "(904.645 -5888 54) (904.645 -5888.87 54) (913.668 -5893 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 21] 0.25" + "vaxis" "[1 0 0 -2.57666] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227881" + "plane" "(978.645 -5888 54) (978.645 -5888.87 54) (978.645 -5888.87 57)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -25.7374] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227880" + "plane" "(978.645 -5888.87 57) (978.645 -5888.87 54) (969.396 -5892.94 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -10.3392] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227879" + "plane" "(969.396 -5892.94 57) (969.396 -5892.94 54) (956.446 -5896.19 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 0.243417 0 -7.08057] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227878" + "plane" "(956.445 -5896.19 57) (956.445 -5896.19 54) (941.645 -5897 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 0.0548161 0 -8.74087] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227877" + "plane" "(941.645 -5897 57) (941.645 -5897 54) (926.645 -5896 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 -0.0548161 0 -22.5922] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227876" + "plane" "(926.645 -5896 57) (926.645 -5896 54) (913.669 -5893 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 -0.243417 0 -25.5509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227875" + "plane" "(913.662 -5893 57) (913.662 -5893 54) (904.645 -5888.87 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 -23.7961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227874" + "plane" "(904.645 -5888.87 57) (904.645 -5888.87 54) (904.645 -5888 54)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 -29.4928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227873" + "plane" "(978.645 -5888 57) (978.645 -5888.87 57) (969.385 -5892.94 57)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[1 0 0 -58.5786] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "227872" + "plane" "(904.645 -5888 57) (904.645 -5888 54) (978.645 -5888 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 58.5786] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7500]" + } +} +hidden +{ + entity + { + "id" "870968" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-203 -4262 128" + editor + { + "color" "106 119 0" + "groupid" "1213938" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "870992" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_attachment.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-203 -4262 158" + editor + { + "color" "106 119 0" + "groupid" "1213938" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "871178" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "105 214 233 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "104 -4440 122.75" + editor + { + "color" "123 108 0" + "groupid" "3580677" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "871183" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "2000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "252 242 190 570" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "104 -4440 137.75" + editor + { + "color" "123 108 0" + "groupid" "3580677" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "871188" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "104 -4440 153.75" + editor + { + "color" "123 108 0" + "groupid" "3580677" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +hidden +{ + entity + { + "id" "871191" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "104 -4440 159.75" + editor + { + "color" "123 108 0" + "groupid" "3580677" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "871212" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "105 214 233 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-48 -4248 122.75" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "871217" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "2000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "252 242 190 570" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "-48 -4248 137.75" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "871222" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "-48 -4248 153.75" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +hidden +{ + entity + { + "id" "871225" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-48 -4248 159.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "871246" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "105 214 233 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "-368 -4256 122.75" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "871251" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "2000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "252 242 190 570" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "-368 -4256 137.75" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "871256" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "-368 -4256 153.75" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +hidden +{ + entity + { + "id" "871259" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "-368 -4256 159.75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +hidden +{ + entity + { + "id" "871366" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_cap.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-199 -4248 -192" + editor + { + "color" "139 192 0" + "groupid" "1349616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "871394" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_cap.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-5 -4248 -64" + editor + { + "color" "139 192 0" + "groupid" "1349616" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -4768]" + } + } +} +hidden +{ + entity + { + "id" "871898" + "classname" "prop_static" + "angles" "0 179.5 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_dust/hr_dust/dust_satellite_dish/dust_satellite_dish_wall_02b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-587 -4728 404.856" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "857152" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3766 -16" + editor + { + "color" "162 139 0" + "groupid" "949441" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "843746" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "640 -1380 164" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "843778" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "640 -1644 164" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "843790" + "classname" "prop_static" + "angles" "0 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_big.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "640 -1908 164" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "843830" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "640 -1380 238" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "843878" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "640 -1644 238" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "843902" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_junctionbox_001.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "640 -1908.19 238" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "843910" + "classname" "prop_static" + "angles" "0 270 -90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_256.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "641 -1904 238" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "843938" + "classname" "prop_static" + "angles" "0 90 90" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_256.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "641 -1384 238" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "843990" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "641 -1908 170" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "844046" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "642 -1644 170" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "844062" + "classname" "prop_static" + "angles" "90 0 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/wires_001/wires_004a_64.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "641 -1380.31 170" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "844102" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "640 -2100 104.844" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "844122" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_roof_ac/ac_powerbox_small.mdl" + "renderamt" "255" + "rendercolor" "199 199 199" + "screenspacefade" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "496 -2882 102.276" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +hidden +{ + entity + { + "id" "844244" + "classname" "prop_static" + "angles" "0 211 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/chainlink_fence_001/chainlink_fence_cover_001_256.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-991 -4719 -19" + editor + { + "color" "250 147 0" + "groupid" "3400656" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[11000 1500]" + } + } +} +hidden +{ + entity + { + "id" "844447" + "classname" "prop_static" + "angles" "0 270 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/mercury_atlas_stand.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1396.45 -4708 32" + editor + { + "color" "240 213 0" + "groupid" "2148316" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +hidden +{ + entity + { + "id" "844455" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "enablelightbounce" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/cs_apollo/mercury_atlas_stand.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-1771.74 -3870 32" + editor + { + "color" "202 151 0" + "groupid" "2148307" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4000]" + } + } +} +entity +{ + "id" "838075" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "632 -1981.5 219" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "838076" + side + { + "id" "222446" + "plane" "(633 -2006 274) (631 -2006 274) (631 -1957 274)" + "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" "222445" + "plane" "(633 -1957 210) (631 -1957 210) (631 -2006 210)" + "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" "222444" + "plane" "(633 -2006 210) (631 -2006 210) (631 -2006 274)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222443" + "plane" "(631 -1957 210) (633 -1957 210) (633 -1957 274)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222442" + "plane" "(631 -2006 210) (631 -1957 210) (631 -1957 274)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 -240.326] 0.191406" + "vaxis" "[0 0 -1 72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222441" + "plane" "(633 -1957 210) (633 -2006 210) (633 -2006 274)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 240.326] 0.191406" + "vaxis" "[0 0 -1 72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14500]" + } +} +entity +{ + "id" "838078" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "632 -2032.5 219" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "838079" + side + { + "id" "222452" + "plane" "(633 -2057 274) (631 -2057 274) (631 -2008 274)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222451" + "plane" "(633 -2008 210) (631 -2008 210) (631 -2057 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222450" + "plane" "(633 -2057 210) (631 -2057 210) (631 -2057 274)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222449" + "plane" "(631 -2008 210) (633 -2008 210) (633 -2008 274)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222448" + "plane" "(631 -2057 210) (631 -2008 210) (631 -2008 274)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 250.775] 0.191406" + "vaxis" "[0 0 -1 72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222447" + "plane" "(633 -2008 210) (633 -2057 210) (633 -2057 274)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 250.775] 0.191406" + "vaxis" "[0 0 -1 72] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15000]" + } +} +entity +{ + "id" "838081" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "632 -2032.5 290.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "838082" + side + { + "id" "222458" + "plane" "(633 -2057 336) (631 -2057 336) (631 -2008 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222457" + "plane" "(633 -2008 276) (631 -2008 276) (631 -2057 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222456" + "plane" "(633 -2057 276) (631 -2057 276) (631 -2057 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222455" + "plane" "(631 -2008 276) (633 -2008 276) (633 -2008 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222454" + "plane" "(631 -2057 276) (631 -2008 276) (631 -2008 336)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 -250.775] 0.191406" + "vaxis" "[0 0 -1 153.6] 0.234375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222453" + "plane" "(633 -2008 276) (633 -2057 276) (633 -2057 336)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 250.775] 0.191406" + "vaxis" "[0 0 -1 153.6] 0.234375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "838084" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "632 -1981.5 290.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "838085" + side + { + "id" "222464" + "plane" "(633 -2006 336) (631 -2006 336) (631 -1957 336)" + "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" "222463" + "plane" "(633 -1957 276) (631 -1957 276) (631 -2006 276)" + "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" "222462" + "plane" "(633 -2006 276) (631 -2006 276) (631 -2006 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222461" + "plane" "(631 -1957 276) (633 -1957 276) (633 -1957 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222460" + "plane" "(631 -2006 276) (631 -1957 276) (631 -1957 336)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 -1 0 -240.326] 0.191406" + "vaxis" "[0 0 -1 153.6] 0.234375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222459" + "plane" "(633 -1957 276) (633 -2006 276) (633 -2006 336)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 240.326] 0.191406" + "vaxis" "[0 0 -1 153.6] 0.234375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "838087" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "632 -1981.5 363" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "838088" + side + { + "id" "222470" + "plane" "(633 -2006 398) (631 -2006 398) (631 -1957 398)" + "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" "222469" + "plane" "(633 -1957 338) (631 -1957 338) (631 -2006 338)" + "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" "222468" + "plane" "(633 -2006 338) (631 -2006 338) (631 -2006 398)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222467" + "plane" "(631 -1957 338) (633 -1957 338) (633 -1957 398)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222466" + "plane" "(631 -2006 338) (631 -1957 338) (631 -1957 398)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 240.326] 0.191406" + "vaxis" "[0 0 -1 162.133] 0.234375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222465" + "plane" "(633 -1957 338) (633 -2006 338) (633 -2006 398)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 240.326] 0.191406" + "vaxis" "[0 0 -1 162.133] 0.234375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "838090" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "632 -2032.5 363" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "838091" + side + { + "id" "222476" + "plane" "(633 -2057 398) (631 -2057 398) (631 -2008 398)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222475" + "plane" "(633 -2008 338) (631 -2008 338) (631 -2057 338)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222474" + "plane" "(633 -2057 338) (631 -2057 338) (631 -2057 398)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222473" + "plane" "(631 -2008 338) (633 -2008 338) (633 -2008 398)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222472" + "plane" "(631 -2057 338) (631 -2008 338) (631 -2008 398)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 250.775] 0.191406" + "vaxis" "[0 0 -1 162.133] 0.234375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222471" + "plane" "(633 -2008 338) (633 -2057 338) (633 -2057 398)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[0 1 0 250.775] 0.191406" + "vaxis" "[0 0 -1 162.133] 0.234375" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "838099" + "classname" "func_detail" + solid + { + "id" "838100" + side + { + "id" "222494" + "plane" "(624 -1955 400) (624 -1955 208) (640 -1955 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222493" + "plane" "(624 -1957 208) (624 -1955 208) (624 -1955 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[0 -1 0 -40.9971] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222492" + "plane" "(640 -1955 400) (640 -1955 208) (640 -1957 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[0 1 0 39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222491" + "plane" "(624 -1957 400) (624 -1955 400) (640 -1955 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222490" + "plane" "(640 -1955 208) (624 -1955 208) (624 -1957 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222489" + "plane" "(640 -1957 400) (640 -1957 208) (624 -1957 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[1 0 0 -0.998047] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "838101" + side + { + "id" "222500" + "plane" "(624 -2057 400) (624 -1957 400) (640 -1957 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222499" + "plane" "(624 -1957 398) (624 -2057 398) (640 -2057 398)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[1 0 0 -63.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222498" + "plane" "(624 -2057 398) (624 -1957 398) (624 -1957 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[0 0 -1 48.0024] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222497" + "plane" "(640 -1957 398) (640 -2057 398) (640 -2057 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[0 0 1 0.00585938] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222496" + "plane" "(640 -2057 398) (624 -2057 398) (624 -2057 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222495" + "plane" "(624 -1957 398) (640 -1957 398) (640 -1957 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "838110" + side + { + "id" "222554" + "plane" "(624 -1955 208) (624 -2059 208) (640 -2059 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222553" + "plane" "(624 -2059 208) (624 -1955 208) (624 -1955 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222552" + "plane" "(640 -1955 208) (640 -2059 208) (640 -2059 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[0 0 -1 15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222551" + "plane" "(624 -2059 210) (624 -1955 210) (640 -1955 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222550" + "plane" "(640 -2059 210) (640 -2059 208) (624 -2059 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" "222549" + "plane" "(624 -1955 210) (624 -1955 208) (640 -1955 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "838103" + side + { + "id" "222512" + "plane" "(640 -2008 398) (640 -2008 338) (624 -2008 338)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222511" + "plane" "(624 -2006 398) (624 -2006 338) (640 -2006 338)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[-1 0 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222510" + "plane" "(624 -2008 398) (624 -2008 338) (624 -2006 338)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222509" + "plane" "(640 -2006 398) (640 -2006 338) (640 -2008 338)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[0 1 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222508" + "plane" "(640 -2006 338) (624 -2006 338) (624 -2008 338)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222507" + "plane" "(640 -2008 398) (624 -2008 398) (624 -2006 398)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 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" + } + } + solid + { + "id" "838105" + side + { + "id" "222560" + "plane" "(640 -2059 400) (640 -2059 208) (624 -2059 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222559" + "plane" "(624 -2059 400) (624 -2059 208) (624 -2057 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[0 -1 0 -7.99805] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222558" + "plane" "(640 -2057 208) (640 -2059 208) (640 -2059 400)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[0 1 0 8.00342] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222557" + "plane" "(640 -2059 400) (624 -2059 400) (624 -2057 400)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222556" + "plane" "(624 -2057 208) (624 -2059 208) (640 -2059 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -12] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222555" + "plane" "(624 -2057 400) (624 -2057 208) (640 -2057 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "838109" + side + { + "id" "222548" + "plane" "(640 -2006 208) (624 -2006 208) (624 -2008 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222547" + "plane" "(640 -2008 274) (640 -2008 208) (624 -2008 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222546" + "plane" "(624 -2006 274) (624 -2006 208) (640 -2006 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[-1 0 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222545" + "plane" "(624 -2008 274) (624 -2008 208) (624 -2006 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222544" + "plane" "(640 -2006 274) (640 -2006 208) (640 -2008 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 72] 0.125" + "vaxis" "[0 1 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222543" + "plane" "(640 -2008 274) (624 -2008 274) (624 -2006 274)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 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" + } + } + solid + { + "id" "838106" + side + { + "id" "222530" + "plane" "(624 -2057 338) (624 -1957 338) (640 -1957 338)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222529" + "plane" "(624 -1957 336) (624 -2057 336) (640 -2057 336)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[1 0 0 -62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222528" + "plane" "(624 -2057 336) (624 -1957 336) (624 -1957 338)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[0 0 -1 -48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222527" + "plane" "(640 -1957 336) (640 -2057 336) (640 -2057 338)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[0 0 1 -62.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222526" + "plane" "(640 -2057 336) (624 -2057 336) (624 -2057 338)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222525" + "plane" "(624 -1957 336) (640 -1957 336) (640 -1957 338)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "838107" + side + { + "id" "222536" + "plane" "(640 -2008 336) (640 -2008 276) (624 -2008 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -8] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222535" + "plane" "(624 -2006 336) (624 -2006 276) (640 -2006 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -8] 0.125" + "vaxis" "[-1 0 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222534" + "plane" "(624 -2008 336) (624 -2008 276) (624 -2006 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -8] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222533" + "plane" "(640 -2006 336) (640 -2006 276) (640 -2008 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -8] 0.125" + "vaxis" "[0 1 0 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222532" + "plane" "(640 -2008 336) (624 -2008 336) (624 -2006 336)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222531" + "plane" "(640 -2006 276) (624 -2006 276) (624 -2008 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -44] 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" + } + } + solid + { + "id" "838108" + side + { + "id" "222542" + "plane" "(624 -2057 276) (624 -1957 276) (640 -1957 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222541" + "plane" "(624 -1957 274) (624 -2057 274) (640 -2057 274)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[1 0 0 -63.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222540" + "plane" "(624 -2057 274) (624 -1957 274) (624 -1957 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222539" + "plane" "(640 -1957 274) (640 -2057 274) (640 -2057 276)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 -1 0 -88] 0.125" + "vaxis" "[0 0 1 -31.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "222538" + "plane" "(640 -2057 274) (624 -2057 274) (624 -2057 276)" + "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" "222537" + "plane" "(624 -1957 274) (640 -1957 274) (640 -1957 276)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +hidden +{ + entity + { + "id" "831435" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/barrier001.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "645 -6640 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 7500]" + } + } +} +hidden +{ + entity + { + "id" "831590" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1196 -6402 0" + editor + { + "color" "152 205 0" + "groupid" "981153" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "831616" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_40.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1196 -6530 0" + editor + { + "color" "152 205 0" + "groupid" "981153" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "831646" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1138 -6620 0" + editor + { + "color" "152 205 0" + "groupid" "981153" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "831662" + "classname" "prop_static" + "angles" "0 236 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_40.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1196.6 -6570.33 0" + editor + { + "color" "152 205 0" + "groupid" "981153" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "831682" + "classname" "prop_static" + "angles" "0 203 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_40.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1174.62 -6603.98 0" + editor + { + "color" "152 205 0" + "groupid" "981153" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "831765" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "175 -6620 0" + editor + { + "color" "104 129 0" + "groupid" "980801" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "831773" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_64.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-17 -6620 0" + editor + { + "color" "104 129 0" + "groupid" "980801" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "831859" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1010 -6620 0" + editor + { + "color" "152 205 0" + "groupid" "981153" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 4500]" + } + } +} +hidden +{ + entity + { + "id" "831972" + "classname" "prop_static" + "angles" "-90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "767.385 -5899 176" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "824094" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "521 -8064 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824098" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "521 -8072 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824102" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "377 -8048 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824106" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "369 -8048 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824110" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "369 -7920 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824114" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "369 -7792 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824118" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "369 -7664 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824122" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "521 -7520 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824130" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "393 -7520 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824134" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "537 -7536 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824138" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "537 -8047 -32" + editor + { + "color" "102 119 0" + "groupid" "824085" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "824152" + "classname" "prop_static" + "angles" "0 14.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush009.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "464 -7794 -24" + editor + { + "color" "102 119 0" + "groupid" "824151" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "824156" + "classname" "prop_static" + "angles" "0 79 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/cs_apollo/bush004.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "464 -7753 -36" + editor + { + "color" "102 119 0" + "groupid" "824151" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "824692" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "808 -6647 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "825006" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2028 -5504 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "825010" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_005.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1908 -5506 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "825014" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "60 60 60" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1968 -5512 48" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 5000]" + } + } +} +hidden +{ + entity + { + "id" "825340" + "classname" "prop_static" + "angles" "0 0 7.5" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "856 -7024.33 -32.6676" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "825385" + "classname" "prop_static" + "angles" "0 180 -0.5" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "864 -7024 -32" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "825411" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1008 -7048 -32" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "825527" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1200 -6006 0" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "825531" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1200 -5920 0" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "826035" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8 -6631 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "826039" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "521 -6631 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "826083" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "537 -6647 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "826087" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "537 -6776 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "826127" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-120 -6631 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "826131" + "classname" "prop_static" + "angles" "0 0 7.5" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "537 -7025 -32.6676" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "816939" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_metal_bollard/nuke_metal_bollard.mdl" + "renderamt" "255" + "rendercolor" "111 150 189" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "720 -6647 0" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "817461" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "880 -6632 0" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "817469" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1008 -6632 0" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "817473" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1136 -6632 0" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "817477" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1136 -6624 0" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "817500" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1200 -6560 0" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "817516" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1200 -6432 0" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "817865" + "classname" "func_detail" + solid + { + "id" "825259" + side + { + "id" "219596" + "plane" "(1474 -5881 180) (1474 -5879 180) (1540.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219595" + "plane" "(1474 -5879 82) (1474 -5881 82) (1540.85 -5881 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219594" + "plane" "(1474 -5881 82) (1474 -5879 82) (1474 -5879 180)" + "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" "219593" + "plane" "(1540.85 -5879 82) (1540.85 -5881 82) (1540.85 -5881 180)" + "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" "219592" + "plane" "(1474 -5879 82) (1540.85 -5879 82) (1540.85 -5879 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -12.5054] 0.261139" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219591" + "plane" "(1540.85 -5881 82) (1474 -5881 82) (1474 -5881 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -12.6455] 0.261133" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825260" + side + { + "id" "219602" + "plane" "(1934 -5888 256) (1474 -5888 256) (1474 -5872 256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -73.2324] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219601" + "plane" "(1934 -5872 254) (1474 -5872 254) (1474 -5888 254)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -73.2324] 0.125" + "vaxis" "[0 -1 0 1.00391] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219600" + "plane" "(1474 -5872 254) (1934 -5872 254) (1934 -5872 256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -73.2324] 0.125" + "vaxis" "[0 0 -1 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219599" + "plane" "(1934 -5888 254) (1474 -5888 254) (1474 -5888 256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -73.2324] 0.125" + "vaxis" "[0 0 1 -46.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219598" + "plane" "(1474 -5888 254) (1474 -5872 254) (1474 -5872 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219597" + "plane" "(1934 -5872 254) (1934 -5888 254) (1934 -5888 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825261" + side + { + "id" "219608" + "plane" "(1934 -5888 82) (1474 -5888 82) (1474 -5872 82)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -80.2735] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219607" + "plane" "(1934 -5872 79.932) (1474 -5872 79.932) (1474 -5888 79.932)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -80.2735] 0.125" + "vaxis" "[0 -1 0 0.00390625] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219606" + "plane" "(1474 -5872 79.9328) (1934 -5872 79.9328) (1934 -5872 82)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -80.2735] 0.125" + "vaxis" "[0 0 -1 -26.6101] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219605" + "plane" "(1934 -5888 79.9328) (1474 -5888 79.9328) (1474 -5888 82)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -80.2735] 0.125" + "vaxis" "[0 0 1 10.616] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219604" + "plane" "(1474 -5888 79.9327) (1474 -5872 79.9327) (1474 -5872 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -5.30505] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219603" + "plane" "(1934 -5872 79.9329) (1934 -5888 79.9329) (1934 -5888 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -5.30505] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825262" + side + { + "id" "219614" + "plane" "(1474 -5881 254) (1474 -5879 254) (1540.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 44.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219613" + "plane" "(1474 -5879 182) (1474 -5881 182) (1540.85 -5881 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -44.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219612" + "plane" "(1474 -5881 182) (1474 -5879 182) (1474 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219611" + "plane" "(1540.85 -5879 182) (1540.85 -5881 182) (1540.85 -5881 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219610" + "plane" "(1474 -5879 182) (1540.85 -5879 182) (1540.85 -5879 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 32.8301] 0.241999" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219609" + "plane" "(1540.85 -5881 182) (1474 -5881 182) (1474 -5881 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -12.5054] 0.261139" + "vaxis" "[0 0 -1 135.111] 0.28125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825263" + side + { + "id" "219620" + "plane" "(1474 -5872 256) (1474 -5872 80) (1474 -5888 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219619" + "plane" "(1474 -5872 80) (1474 -5872 256) (1472 -5872 256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -40] 0.125" + "vaxis" "[-1 0 0 -1.28708] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219618" + "plane" "(1474 -5888 256) (1474 -5888 80) (1472 -5888 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -40] 0.125" + "vaxis" "[1 0 0 63.2832] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219617" + "plane" "(1472 -5872 256) (1474 -5872 256) (1474 -5888 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 56.1416] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219616" + "plane" "(1472 -5888 256) (1472 -5888 80) (1472 -5872 80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0 1 -4] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219615" + "plane" "(1472 -5888 80) (1474 -5888 80) (1474 -5872 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -19.4004] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825264" + side + { + "id" "219626" + "plane" "(1934 -5888 182) (1474 -5888 182) (1474 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -217.232] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219625" + "plane" "(1934 -5872 180) (1474 -5872 180) (1474 -5888 180)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -217.232] 0.125" + "vaxis" "[0 -1 0 1.00391] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219624" + "plane" "(1474 -5872 180) (1934 -5872 180) (1934 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -217.232] 0.125" + "vaxis" "[0 0 -1 49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219623" + "plane" "(1934 -5888 180) (1474 -5888 180) (1474 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 -217.232] 0.125" + "vaxis" "[0 0 1 -46.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219622" + "plane" "(1474 -5888 180) (1474 -5872 180) (1474 -5872 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219621" + "plane" "(1934 -5872 180) (1934 -5888 180) (1934 -5888 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825265" + side + { + "id" "219632" + "plane" "(1540.85 -5888 180) (1540.85 -5888 82.0806) (1540.85 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219631" + "plane" "(1542.88 -5872 180) (1542.88 -5872 82.0806) (1542.88 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219630" + "plane" "(1540.85 -5872 180) (1540.85 -5872 82.0806) (1542.88 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -14.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219629" + "plane" "(1542.88 -5888 180) (1542.88 -5888 82.0806) (1540.85 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 16.2324] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219628" + "plane" "(1540.85 -5888 180) (1540.85 -5872 180) (1542.88 -5872 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 59.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219627" + "plane" "(1540.85 -5872 82.0806) (1540.85 -5888 82.0806) (1542.88 -5888 82.0806)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -59.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825266" + side + { + "id" "219638" + "plane" "(1540.85 -5888 254) (1540.85 -5888 182) (1540.85 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219637" + "plane" "(1542.88 -5872 254) (1542.88 -5872 182) (1542.88 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219636" + "plane" "(1540.85 -5872 254) (1540.85 -5872 182) (1542.88 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -14.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219635" + "plane" "(1542.88 -5888 254) (1542.88 -5888 182) (1540.85 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 16.2324] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219634" + "plane" "(1540.85 -5872 182) (1540.85 -5888 182) (1542.88 -5888 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -59.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219633" + "plane" "(1540.85 -5888 254) (1540.85 -5872 254) (1542.88 -5872 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 59.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825290" + side + { + "id" "219782" + "plane" "(1737.85 -5881 180) (1737.85 -5879 180) (1800.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219781" + "plane" "(1737.85 -5879 82) (1737.85 -5881 82) (1800.85 -5881 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -28.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219780" + "plane" "(1737.85 -5881 82) (1737.85 -5879 82) (1737.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219779" + "plane" "(1800.85 -5879 82) (1800.85 -5881 82) (1800.85 -5881 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219778" + "plane" "(1737.85 -5879 82) (1800.85 -5879 82) (1800.85 -5879 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -149.292] 0.246109" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219777" + "plane" "(1800.85 -5881 82) (1737.85 -5881 82) (1737.85 -5881 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -149.292] 0.246109" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825267" + side + { + "id" "219644" + "plane" "(1735.85 -5888 254) (1735.85 -5888 182) (1735.85 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219643" + "plane" "(1737.88 -5872 254) (1737.88 -5872 182) (1737.88 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219642" + "plane" "(1735.85 -5872 254) (1735.85 -5872 182) (1737.88 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -54.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219641" + "plane" "(1737.88 -5888 254) (1737.88 -5888 182) (1735.85 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 56.2324] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219640" + "plane" "(1735.85 -5872 182) (1735.85 -5888 182) (1737.88 -5888 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -47.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219639" + "plane" "(1735.85 -5888 254) (1735.85 -5872 254) (1737.88 -5872 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 47.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825268" + side + { + "id" "219650" + "plane" "(1800.85 -5888 254) (1800.85 -5888 182) (1800.85 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219649" + "plane" "(1802.88 -5872 254) (1802.88 -5872 182) (1802.88 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219648" + "plane" "(1800.85 -5872 254) (1800.85 -5872 182) (1802.88 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -46.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219647" + "plane" "(1802.88 -5888 254) (1802.88 -5888 182) (1800.85 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 48.2324] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219646" + "plane" "(1800.85 -5872 182) (1800.85 -5888 182) (1802.88 -5888 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -43.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219645" + "plane" "(1800.85 -5888 254) (1800.85 -5872 254) (1802.88 -5872 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 43.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825269" + side + { + "id" "219656" + "plane" "(1865.85 -5888 254) (1865.85 -5888 182) (1865.85 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219655" + "plane" "(1867.88 -5872 254) (1867.88 -5872 182) (1867.88 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219654" + "plane" "(1865.85 -5872 254) (1865.85 -5872 182) (1867.88 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -38.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219653" + "plane" "(1867.88 -5888 254) (1867.88 -5888 182) (1865.85 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 40.2324] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219652" + "plane" "(1865.85 -5872 182) (1865.85 -5888 182) (1867.88 -5888 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -39.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219651" + "plane" "(1865.85 -5888 254) (1865.85 -5872 254) (1867.88 -5872 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 39.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825270" + side + { + "id" "219662" + "plane" "(1933.97 -5888 256) (1933.97 -5888 80) (1933.97 -5872 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -176.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219661" + "plane" "(1936 -5872 256) (1936 -5872 80) (1936 -5888 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -176.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219660" + "plane" "(1933.97 -5872 256) (1933.97 -5872 80) (1936 -5872 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -176.52] 0.125" + "vaxis" "[-1 0 0 -5.27444] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219659" + "plane" "(1936 -5888 256) (1936 -5888 80) (1933.97 -5888 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -176.52] 0.125" + "vaxis" "[1 0 0 7.27244] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219658" + "plane" "(1933.97 -5888 256) (1933.97 -5872 256) (1936 -5872 256)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 23.1362] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219657" + "plane" "(1933.97 -5872 80) (1933.97 -5888 80) (1936 -5888 80)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 12.48] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825271" + side + { + "id" "219668" + "plane" "(1867.85 -5881 254) (1867.85 -5879 254) (1934 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 16.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219667" + "plane" "(1867.85 -5879 182) (1867.85 -5881 182) (1934 -5881 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -16.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219666" + "plane" "(1867.85 -5881 182) (1867.85 -5879 182) (1867.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219665" + "plane" "(1934 -5879 182) (1934 -5881 182) (1934 -5881 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219664" + "plane" "(1867.86 -5879 182) (1934 -5879 182) (1934 -5879 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 89.8413] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219663" + "plane" "(1934 -5881 182) (1867.85 -5881 182) (1867.86 -5881 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 89.8413] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825272" + side + { + "id" "219674" + "plane" "(1802.85 -5881 254) (1802.85 -5879 254) (1865.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219673" + "plane" "(1802.85 -5879 182) (1802.85 -5881 182) (1865.85 -5881 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219672" + "plane" "(1802.85 -5881 182) (1802.85 -5879 182) (1802.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219671" + "plane" "(1865.85 -5879 182) (1865.85 -5881 182) (1865.85 -5881 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219670" + "plane" "(1802.85 -5879 182) (1865.85 -5879 182) (1865.85 -5879 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 97.9744] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219669" + "plane" "(1865.85 -5881 182) (1802.85 -5881 182) (1802.85 -5881 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 97.9744] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825273" + side + { + "id" "219680" + "plane" "(1737.85 -5881 254) (1737.85 -5879 254) (1800.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219679" + "plane" "(1737.85 -5879 182) (1737.85 -5881 182) (1800.85 -5881 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -24.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219678" + "plane" "(1737.85 -5881 182) (1737.85 -5879 182) (1737.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219677" + "plane" "(1800.85 -5879 182) (1800.85 -5881 182) (1800.85 -5881 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219676" + "plane" "(1737.85 -5879 182) (1800.85 -5879 182) (1800.85 -5879 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 106.107] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219675" + "plane" "(1800.85 -5881 182) (1737.85 -5881 182) (1737.85 -5881 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 106.107] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825274" + side + { + "id" "219686" + "plane" "(1672.85 -5881 254) (1672.85 -5879 254) (1735.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 28.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219685" + "plane" "(1672.85 -5879 182) (1672.85 -5881 182) (1735.85 -5881 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -28.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219684" + "plane" "(1672.85 -5881 182) (1672.85 -5879 182) (1672.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219683" + "plane" "(1735.85 -5879 182) (1735.85 -5881 182) (1735.85 -5881 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219682" + "plane" "(1672.85 -5879 182) (1735.85 -5879 182) (1735.85 -5879 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 114.24] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219681" + "plane" "(1735.85 -5881 182) (1672.85 -5881 182) (1672.85 -5881 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 114.24] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825275" + side + { + "id" "219692" + "plane" "(1607.85 -5881 254) (1607.85 -5879 254) (1670.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40.8037] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219691" + "plane" "(1607.85 -5879 182) (1607.85 -5881 182) (1670.85 -5881 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -40.8037] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219690" + "plane" "(1607.85 -5881 182) (1607.85 -5879 182) (1607.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219689" + "plane" "(1670.85 -5879 182) (1670.85 -5881 182) (1670.85 -5881 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219688" + "plane" "(1607.85 -5879 182) (1670.85 -5879 182) (1670.85 -5879 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 11.9629] 0.241999" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219687" + "plane" "(1670.85 -5881 182) (1607.85 -5881 182) (1607.85 -5881 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 11.9629] 0.241999" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825276" + side + { + "id" "219698" + "plane" "(1542.85 -5881 254) (1542.85 -5879 254) (1605.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219697" + "plane" "(1542.85 -5879 182) (1542.85 -5881 182) (1605.85 -5881 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -36.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219696" + "plane" "(1542.85 -5881 182) (1542.85 -5879 182) (1542.85 -5879 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219695" + "plane" "(1605.85 -5879 182) (1605.85 -5881 182) (1605.85 -5881 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219694" + "plane" "(1542.85 -5879 182) (1605.85 -5879 182) (1605.85 -5879 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 130.506] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219693" + "plane" "(1605.85 -5881 182) (1542.85 -5881 182) (1542.85 -5881 254)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 130.506] 0.246088" + "vaxis" "[0 0 -1 131.1] 0.282501" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825277" + side + { + "id" "219704" + "plane" "(1542.85 -5881 180) (1542.85 -5879 180) (1605.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 40.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219703" + "plane" "(1542.85 -5879 82) (1542.85 -5881 82) (1605.85 -5881 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -40.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219702" + "plane" "(1542.85 -5881 82) (1542.85 -5879 82) (1542.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219701" + "plane" "(1605.85 -5879 82) (1605.85 -5881 82) (1605.85 -5881 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219700" + "plane" "(1542.85 -5879 82) (1605.85 -5879 82) (1605.85 -5879 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -125.365] 0.246094" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219699" + "plane" "(1605.85 -5881 82) (1542.85 -5881 82) (1542.85 -5881 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -125.365] 0.246094" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825278" + side + { + "id" "219710" + "plane" "(1670.85 -5888 254) (1670.85 -5888 182) (1670.85 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219709" + "plane" "(1672.88 -5872 254) (1672.88 -5872 182) (1672.88 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219708" + "plane" "(1670.85 -5872 254) (1670.85 -5872 182) (1672.88 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -62.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219707" + "plane" "(1672.88 -5888 254) (1672.88 -5888 182) (1670.85 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 0.232422] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219706" + "plane" "(1670.85 -5872 182) (1670.85 -5888 182) (1672.88 -5888 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -51.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219705" + "plane" "(1670.85 -5888 254) (1670.85 -5872 254) (1672.88 -5872 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825279" + side + { + "id" "219716" + "plane" "(1670.85 -5888 180) (1670.85 -5888 82.0806) (1670.85 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219715" + "plane" "(1672.88 -5872 180) (1672.88 -5872 82.0806) (1672.88 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219714" + "plane" "(1670.85 -5872 180) (1670.85 -5872 82.0806) (1672.88 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -62.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219713" + "plane" "(1672.88 -5888 180) (1672.88 -5888 82.0806) (1670.85 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 0.232422] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219712" + "plane" "(1670.85 -5888 180) (1670.85 -5872 180) (1672.88 -5872 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 51.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219711" + "plane" "(1670.85 -5872 82.0806) (1670.85 -5888 82.0806) (1672.88 -5888 82.0806)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -51.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825280" + side + { + "id" "219722" + "plane" "(1607.85 -5881 180) (1607.85 -5879 180) (1670.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 36.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219721" + "plane" "(1607.85 -5879 82) (1607.85 -5881 82) (1670.85 -5881 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -36.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219720" + "plane" "(1607.85 -5881 82) (1607.85 -5879 82) (1607.85 -5879 180)" + "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" "219719" + "plane" "(1670.85 -5879 82) (1670.85 -5881 82) (1670.85 -5881 180)" + "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" "219718" + "plane" "(1607.85 -5879 82) (1670.85 -5879 82) (1670.85 -5879 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -133.492] 0.246094" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219717" + "plane" "(1670.85 -5881 82) (1607.85 -5881 82) (1607.85 -5881 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -133.492] 0.246094" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825292" + side + { + "id" "219794" + "plane" "(1800.85 -5888 180) (1800.85 -5888 82.0806) (1800.85 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219793" + "plane" "(1802.88 -5872 180) (1802.88 -5872 82.0806) (1802.88 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219792" + "plane" "(1800.85 -5872 180) (1800.85 -5872 82.0806) (1802.88 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -46.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219791" + "plane" "(1802.88 -5888 180) (1802.88 -5888 82.0806) (1800.85 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 48.2324] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219790" + "plane" "(1800.85 -5888 180) (1800.85 -5872 180) (1802.88 -5872 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 43.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219789" + "plane" "(1800.85 -5872 82.0806) (1800.85 -5888 82.0806) (1802.88 -5888 82.0806)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -43.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825297" + side + { + "id" "219824" + "plane" "(1865.85 -5888 180) (1865.85 -5888 82.0806) (1865.85 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219823" + "plane" "(1867.88 -5872 180) (1867.88 -5872 82.0806) (1867.88 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219822" + "plane" "(1865.85 -5872 180) (1865.85 -5872 82.0806) (1867.88 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -38.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219821" + "plane" "(1867.88 -5888 180) (1867.88 -5888 82.0806) (1865.85 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 40.2324] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219820" + "plane" "(1865.85 -5888 180) (1865.85 -5872 180) (1867.88 -5872 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 39.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219819" + "plane" "(1865.85 -5872 82.0806) (1865.85 -5888 82.0806) (1867.88 -5888 82.0806)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -39.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825294" + side + { + "id" "219806" + "plane" "(1802.85 -5881 180) (1802.85 -5879 180) (1865.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 24.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219805" + "plane" "(1802.85 -5879 82) (1802.85 -5881 82) (1865.85 -5881 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -24.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219804" + "plane" "(1802.85 -5881 82) (1802.85 -5879 82) (1802.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219803" + "plane" "(1865.85 -5879 82) (1865.85 -5881 82) (1865.85 -5881 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219802" + "plane" "(1802.86 -5879 82) (1865.85 -5879 82) (1865.85 -5879 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -157.873] 0.246094" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219801" + "plane" "(1865.85 -5881 82) (1802.85 -5881 82) (1802.86 -5881 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -157.873] 0.246094" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825284" + side + { + "id" "219746" + "plane" "(1605.85 -5888 180) (1605.85 -5888 82) (1605.85 -5872 82)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219745" + "plane" "(1607.88 -5872 180) (1607.88 -5872 82) (1607.88 -5888 82)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219744" + "plane" "(1605.85 -5872 180) (1605.85 -5872 82) (1607.88 -5872 82)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -6.23438] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219743" + "plane" "(1607.88 -5888 180) (1607.88 -5888 82) (1605.85 -5888 82)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 8.23242] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219742" + "plane" "(1605.85 -5888 180) (1605.85 -5872 180) (1607.88 -5872 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 55.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219741" + "plane" "(1605.85 -5872 82) (1605.85 -5888 82) (1607.88 -5888 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -55.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825285" + side + { + "id" "219752" + "plane" "(1605.85 -5888 254) (1605.85 -5888 182) (1605.85 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219751" + "plane" "(1607.88 -5872 254) (1607.88 -5872 182) (1607.88 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219750" + "plane" "(1605.85 -5872 254) (1605.85 -5872 182) (1607.88 -5872 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -6.23438] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219749" + "plane" "(1607.88 -5888 254) (1607.88 -5888 182) (1605.85 -5888 182)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 8.23242] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219748" + "plane" "(1605.85 -5872 182) (1605.85 -5888 182) (1607.88 -5888 182)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -55.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219747" + "plane" "(1605.85 -5888 254) (1605.85 -5872 254) (1607.88 -5872 254)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 55.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825296" + side + { + "id" "219818" + "plane" "(1867.85 -5881 180) (1867.85 -5879 180) (1934 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 20.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219817" + "plane" "(1867.85 -5879 82) (1867.85 -5881 82) (1934 -5881 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -20.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219816" + "plane" "(1867.85 -5881 82) (1867.85 -5879 82) (1867.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219815" + "plane" "(1934 -5879 82) (1934 -5881 82) (1934 -5881 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219814" + "plane" "(1867.86 -5879 82) (1934 -5879 82) (1934 -5879 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -60.7422] 0.258392" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219813" + "plane" "(1934 -5881 82) (1867.85 -5881 82) (1867.86 -5881 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -166] 0.246094" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825287" + side + { + "id" "219764" + "plane" "(1735.85 -5888 180) (1735.85 -5888 82.0806) (1735.85 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219763" + "plane" "(1737.88 -5872 180) (1737.88 -5872 82.0806) (1737.88 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[0 1 0 -63.0039] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219762" + "plane" "(1735.85 -5872 180) (1735.85 -5872 82.0806) (1737.88 -5872 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[-1 0 0 -54.2344] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219761" + "plane" "(1737.88 -5888 180) (1737.88 -5888 82.0806) (1735.85 -5888 82.0824)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 -56.52] 0.125" + "vaxis" "[1 0 0 56.2324] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219760" + "plane" "(1735.85 -5888 180) (1735.85 -5872 180) (1737.88 -5872 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 47.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219759" + "plane" "(1735.85 -5872 82.0806) (1735.85 -5888 82.0806) (1737.88 -5888 82.0806)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -47.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "825288" + side + { + "id" "219770" + "plane" "(1672.85 -5881 180) (1672.85 -5879 180) (1735.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219769" + "plane" "(1672.85 -5879 82) (1672.85 -5881 82) (1735.85 -5881 82)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32.6162] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219768" + "plane" "(1672.85 -5881 82) (1672.85 -5879 82) (1672.85 -5879 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219767" + "plane" "(1735.85 -5879 82) (1735.85 -5881 82) (1735.85 -5881 180)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 33.5469] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219766" + "plane" "(1672.85 -5879 82) (1735.85 -5879 82) (1735.85 -5879 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -141.182] 0.246109" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "219765" + "plane" "(1735.85 -5881 82) (1672.85 -5881 82) (1672.85 -5881 180)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -141.182] 0.246109" + "vaxis" "[0 0 -1 214.204] 0.382813" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "818191" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "856 -6776 0" + editor + { + "color" "255 184 0" + "groupid" "825606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "805764" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "648.572 -5830.51 160" + editor + { + "color" "210 175 0" + "groupid" "805763" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805767" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "648.572 -5830.51 160" + editor + { + "color" "210 175 0" + "groupid" "805763" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805770" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 251 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "648.572 -5830.51 155" + editor + { + "color" "210 175 0" + "groupid" "805763" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +hidden +{ + entity + { + "id" "805775" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "648.572 -5830.51 160" + editor + { + "color" "210 175 0" + "groupid" "805762" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -3768]" + } + } +} +entity +{ + "id" "805779" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "648.572 -5830.51 160" + editor + { + "color" "210 175 0" + "groupid" "805762" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805844" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "776.572 -5830.51 160" + editor + { + "color" "210 175 0" + "groupid" "805843" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805847" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "776.572 -5830.51 160" + editor + { + "color" "210 175 0" + "groupid" "805843" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805850" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 251 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "776.572 -5830.51 155" + editor + { + "color" "210 175 0" + "groupid" "805843" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +hidden +{ + entity + { + "id" "805855" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "776.572 -5830.51 160" + editor + { + "color" "210 175 0" + "groupid" "805842" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -3768]" + } + } +} +entity +{ + "id" "805859" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "776.572 -5830.51 160" + editor + { + "color" "210 175 0" + "groupid" "805842" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805864" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "776.572 -5670.51 160" + editor + { + "color" "210 175 0" + "groupid" "805863" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805867" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "776.572 -5670.51 160" + editor + { + "color" "210 175 0" + "groupid" "805863" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805870" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 251 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "776.572 -5670.51 155" + editor + { + "color" "210 175 0" + "groupid" "805863" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +hidden +{ + entity + { + "id" "805875" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "776.572 -5670.51 160" + editor + { + "color" "210 175 0" + "groupid" "805862" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -3768]" + } + } +} +entity +{ + "id" "805879" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "776.572 -5670.51 160" + editor + { + "color" "210 175 0" + "groupid" "805862" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805884" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "648.572 -5670.51 160" + editor + { + "color" "210 175 0" + "groupid" "805883" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805887" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "648.572 -5670.51 160" + editor + { + "color" "210 175 0" + "groupid" "805883" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +entity +{ + "id" "805890" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 251 217 150" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "648.572 -5670.51 155" + editor + { + "color" "210 175 0" + "groupid" "805883" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +hidden +{ + entity + { + "id" "805895" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "648.572 -5670.51 160" + editor + { + "color" "210 175 0" + "groupid" "805882" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -3768]" + } + } +} +entity +{ + "id" "805899" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow02.vmt" + "renderamt" "255" + "rendercolor" "255 251 217" + "renderfx" "0" + "rendermode" "9" + "scale" ".3" + "spawnflags" "0" + "origin" "648.572 -5670.51 160" + editor + { + "color" "210 175 0" + "groupid" "805882" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -3768]" + } +} +hidden +{ + entity + { + "id" "776887" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2605 -3344 345" + editor + { + "color" "160 225 0" + "groupid" "776886" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776891" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2605 -3600 345" + editor + { + "color" "160 225 0" + "groupid" "776886" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776895" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3600 346" + editor + { + "color" "160 225 0" + "groupid" "776886" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776899" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3728 346" + editor + { + "color" "160 225 0" + "groupid" "776886" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776903" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2605 -3088 345" + editor + { + "color" "160 225 0" + "groupid" "776886" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776908" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3766 -16.25" + editor + { + "color" "160 225 0" + "groupid" "776907" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776912" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3766 32.25" + editor + { + "color" "160 225 0" + "groupid" "776907" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776916" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3766 288.25" + editor + { + "color" "160 225 0" + "groupid" "776907" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776920" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -3088 346" + editor + { + "color" "160 225 0" + "groupid" "776907" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776924" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2605 -2832 345" + editor + { + "color" "160 225 0" + "groupid" "776907" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776928" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2605 -2576 345" + editor + { + "color" "160 225 0" + "groupid" "776907" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776932" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -2832 346" + editor + { + "color" "160 225 0" + "groupid" "776907" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "776940" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2606 -2570 346" + editor + { + "color" "160 225 0" + "groupid" "776907" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777135" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2799 -3344 345" + editor + { + "color" "162 139 0" + "groupid" "777134" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777139" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2799 -3600 345" + editor + { + "color" "162 139 0" + "groupid" "777134" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777143" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3600 346" + editor + { + "color" "162 139 0" + "groupid" "777134" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777147" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3728 346" + editor + { + "color" "162 139 0" + "groupid" "777134" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777151" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2799 -3088 345" + editor + { + "color" "162 139 0" + "groupid" "777134" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777160" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3766 32.25" + editor + { + "color" "162 139 0" + "groupid" "777155" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777164" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3766 288.25" + editor + { + "color" "162 139 0" + "groupid" "777155" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777168" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -3088 346" + editor + { + "color" "162 139 0" + "groupid" "777155" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777172" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2799 -2832 345" + editor + { + "color" "162 139 0" + "groupid" "777155" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777176" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2799 -2576 345" + editor + { + "color" "162 139 0" + "groupid" "777155" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777180" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2832 346" + editor + { + "color" "162 139 0" + "groupid" "777155" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777188" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2800 -2570 346" + editor + { + "color" "162 139 0" + "groupid" "777155" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "777258" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_twin_spot_02b.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2248 -3113 186" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "777546" + "classname" "prop_static" + "angles" "0 250.5 180" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_chair/nuke_chair.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2341.89 -2727.26 68" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 1000]" + } + } +} +hidden +{ + entity + { + "id" "768013" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -2832 346" + editor + { + "color" "187 164 0" + "groupid" "768722" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768272" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1953 -2576 345" + editor + { + "color" "187 164 0" + "groupid" "768722" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768378" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -3088 346" + editor + { + "color" "187 164 0" + "groupid" "768722" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768382" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1953 -2832 345" + editor + { + "color" "187 164 0" + "groupid" "768722" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768422" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -3126 288" + editor + { + "color" "187 164 0" + "groupid" "768722" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768426" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -3126 32" + editor + { + "color" "187 164 0" + "groupid" "768722" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768430" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -3126 16" + editor + { + "color" "187 164 0" + "groupid" "768722" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768494" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1954 -3120 346" + editor + { + "color" "187 164 0" + "groupid" "768722" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768513" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1953 -3088 345" + editor + { + "color" "187 164 0" + "groupid" "768722" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768724" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -3126 16.25" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768728" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -3126 32.25" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768732" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -3126 288.25" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768736" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -3120 346" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768740" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1770 -3088 345" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768744" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -3088 346" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768748" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1770 -2832 345" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768752" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1770 -2576 345" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768756" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -2832 346" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768760" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -2570 32" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768764" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -2570 288" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768768" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "1771 -2570 16" + editor + { + "color" "188 105 0" + "groupid" "768723" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768871" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_base.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3766 16.25" + editor + { + "color" "159 224 0" + "groupid" "768870" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768875" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3766 32.25" + editor + { + "color" "159 224 0" + "groupid" "768870" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768879" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_32.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3766 288.25" + editor + { + "color" "159 224 0" + "groupid" "768870" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768891" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3088 346" + editor + { + "color" "159 224 0" + "groupid" "768870" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768895" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2406 -2832 345" + editor + { + "color" "159 224 0" + "groupid" "768870" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768899" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2406 -2576 345" + editor + { + "color" "159 224 0" + "groupid" "768870" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768903" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -2832 346" + editor + { + "color" "159 224 0" + "groupid" "768870" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "768911" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_corner_d.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -2570 346" + editor + { + "color" "159 224 0" + "groupid" "768870" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769277" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2201 -3044 346" + editor + { + "color" "181 154 0" + "groupid" "769256" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769281" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2200 -2788 345" + editor + { + "color" "181 154 0" + "groupid" "769256" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769285" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2200 -2532 345" + editor + { + "color" "181 154 0" + "groupid" "769256" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769289" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2201 -2788 346" + editor + { + "color" "181 154 0" + "groupid" "769256" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769490" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3344 346" + editor + { + "color" "159 224 0" + "groupid" "948790" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769494" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2406 -3088 345" + editor + { + "color" "159 224 0" + "groupid" "776885" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769506" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3600 346" + editor + { + "color" "159 224 0" + "groupid" "776885" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769510" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_256.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2406 -3344 345" + editor + { + "color" "159 224 0" + "groupid" "776885" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769538" + "classname" "prop_static" + "angles" "90 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_support_001_vertical_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2407 -3728 346" + editor + { + "color" "159 224 0" + "groupid" "776885" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "769542" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/web_joist_001/web_joist_001_large_128.mdl" + "renderamt" "255" + "rendercolor" "79 79 79" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2406 -3600 345" + editor + { + "color" "159 224 0" + "groupid" "776885" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "759972" + "classname" "func_detail" + solid + { + "id" "6904738" + side + { + "id" "378440" + "plane" "(2512 -2928 16) (2512 -2784 16) (2524 -2772 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378439" + "plane" "(2512 -2784 8) (2512 -2928 8) (2524 -2928 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378438" + "plane" "(2524 -2772 8) (2524 -2928 8) (2524 -2928 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 672.002] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378437" + "plane" "(2512 -2928 8) (2512 -2784 8) (2512 -2784 16)" + "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" "378436" + "plane" "(2512 -2784 8) (2524 -2772 8) (2524 -2772 16)" + "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" "378435" + "plane" "(2524 -2928 8) (2512 -2928 8) (2512 -2928 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "759831" + side + { + "id" "214542" + "plane" "(2524 -2772 16) (2512 -2784 16) (2470 -2784 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214541" + "plane" "(2512 -2784 8) (2524 -2772 8) (2470 -2772 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214540" + "plane" "(2524 -2772 8) (2512 -2784 8) (2512 -2784 16)" + "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" "214539" + "plane" "(2470 -2784 8) (2470 -2772 8) (2470 -2772 16)" + "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" "214538" + "plane" "(2512 -2784 8) (2470 -2784 8) (2470 -2784 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214537" + "plane" "(2470 -2772 8) (2524 -2772 8) (2524 -2772 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 735.998] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6904741" + side + { + "id" "378446" + "plane" "(2524 -2928 8) (2524 -2772 8) (2536 -2760 8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378445" + "plane" "(2524 -2772 0) (2524 -2928 0) (2536 -2928 0)" + "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" "378444" + "plane" "(2536 -2760 0) (2536 -2928 0) (2536 -2928 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 672.002] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378443" + "plane" "(2524 -2928 0) (2524 -2772 0) (2524 -2772 8)" + "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" "378442" + "plane" "(2524 -2772 0) (2536 -2760 0) (2536 -2760 8)" + "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" "378441" + "plane" "(2536 -2928 0) (2524 -2928 0) (2524 -2928 8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "759815" + side + { + "id" "214554" + "plane" "(2536 -2760 8) (2524 -2772 8) (2470 -2772 8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214553" + "plane" "(2524 -2772 0) (2536 -2760 0) (2470 -2760 0)" + "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" "214552" + "plane" "(2536 -2760 0) (2524 -2772 0) (2524 -2772 8)" + "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" "214551" + "plane" "(2470 -2772 0) (2470 -2760 0) (2470 -2760 8)" + "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" "214550" + "plane" "(2524 -2772 0) (2470 -2772 0) (2470 -2772 8)" + "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" "214549" + "plane" "(2470 -2760 0) (2536 -2760 0) (2536 -2760 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 928.002] 0.125" + "vaxis" "[0 0 -1 -33] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "759819" + side + { + "id" "214560" + "plane" "(2536 -2748 0) (2536 -2760 0) (2470 -2760 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214559" + "plane" "(2536 -2760 -8) (2536 -2748 -8) (2470 -2748 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214558" + "plane" "(2536 -2748 -8) (2536 -2760 -8) (2536 -2760 0)" + "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" "214557" + "plane" "(2470 -2760 -8) (2470 -2748 -8) (2470 -2748 0)" + "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" "214556" + "plane" "(2536 -2760 -8) (2470 -2760 -8) (2470 -2760 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214555" + "plane" "(2470 -2748 -8) (2536 -2748 -8) (2536 -2748 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 351.998] 0.125" + "vaxis" "[0 0 -1 -98] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6904746" + side + { + "id" "378452" + "plane" "(2536 -2928 0) (2536 -2748 0) (2548 -2748 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378451" + "plane" "(2536 -2748 -8) (2536 -2928 -8) (2548 -2928 -8)" + "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" "378450" + "plane" "(2548 -2748 -8) (2548 -2928 -8) (2548 -2928 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 672.002] 0.125" + "vaxis" "[0 0 -1 -98] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378449" + "plane" "(2536 -2928 -8) (2536 -2748 -8) (2536 -2748 0)" + "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" "378448" + "plane" "(2536 -2748 -8) (2548 -2748 -8) (2548 -2748 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 351.998] 0.125" + "vaxis" "[0 0 -1 -98] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378447" + "plane" "(2548 -2928 -8) (2536 -2928 -8) (2536 -2928 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "6904751" + side + { + "id" "378458" + "plane" "(2548 -2928 -8) (2548 -2736 -8) (2560 -2736 -8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378457" + "plane" "(2548 -2736 -16) (2548 -2928 -16) (2560 -2928 -16)" + "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" "378456" + "plane" "(2560 -2736 -16) (2560 -2928 -16) (2560 -2928 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 672.002] 0.125" + "vaxis" "[0 0 -1 -34] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378455" + "plane" "(2548 -2928 -16) (2548 -2736 -16) (2548 -2736 -8)" + "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" "378454" + "plane" "(2548 -2736 -16) (2560 -2736 -16) (2560 -2736 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 351.998] 0.125" + "vaxis" "[0 0 -1 -34] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "378453" + "plane" "(2560 -2928 -16) (2548 -2928 -16) (2548 -2928 -8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "759821" + side + { + "id" "214578" + "plane" "(2548 -2736 -8) (2548 -2748 -8) (2470 -2748 -8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 1 0 32] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214577" + "plane" "(2548 -2748 -16) (2548 -2736 -16) (2470 -2736 -16)" + "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" "214576" + "plane" "(2548 -2736 -16) (2548 -2748 -16) (2548 -2748 -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" "214575" + "plane" "(2470 -2748 -16) (2470 -2736 -16) (2470 -2736 -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" "214574" + "plane" "(2548 -2748 -16) (2470 -2748 -16) (2470 -2748 -8)" + "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" "214573" + "plane" "(2470 -2736 -16) (2548 -2736 -16) (2548 -2736 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[-1 0 0 351.998] 0.125" + "vaxis" "[0 0 -1 -34] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "760045" + side + { + "id" "214579" + "plane" "(2470 -2928 16) (2470 -2784 16) (2512 -2784 16)" + "material" "CS_APOLLO/FLOOR/FLOOR_SHUTTLE_EXHIBIT_001_GREY" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[1 0 0 -992] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214580" + "plane" "(2470 -2784 8) (2470 -2928 8) (2512 -2928 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "214581" + "plane" "(2512 -2784 8) (2512 -2928 8) (2512 -2928 16)" + "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" "214582" + "plane" "(2470 -2928 8) (2470 -2784 8) (2470 -2784 16)" + "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" "214583" + "plane" "(2512 -2928 8) (2470 -2928 8) (2470 -2928 16)" + "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" "214584" + "plane" "(2470 -2784 8) (2512 -2784 8) (2512 -2784 16)" + "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" "229 198 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "229 198 0" + "groupid" "1762777" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 15500]" + } +} +entity +{ + "id" "760531" + "classname" "func_detail" + solid + { + "id" "760516" + side + { + "id" "215076" + "plane" "(2432 -3580 16) (2432 -3568 16) (2552 -3568 16)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 -1 0 32] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "215075" + "plane" "(2432 -3568 8) (2432 -3580 8) (2552 -3580 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" "215074" + "plane" "(2552 -3568 8) (2552 -3580 8) (2552 -3580 16)" + "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" "215073" + "plane" "(2432 -3580 8) (2432 -3568 8) (2432 -3568 16)" + "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" "215072" + "plane" "(2552 -3580 8) (2432 -3580 8) (2432 -3580 16)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 0 -1 127.994] 0.125" + "vaxis" "[1 0 0 -1.99874] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "215071" + "plane" "(2432 -3568 8) (2552 -3568 8) (2552 -3568 16)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1976495" + side + { + "id" "292199" + "plane" "(2432 -3604 0) (2432 -3592 0) (2552 -3592 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 -1 0 -160] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292198" + "plane" "(2432 -3592 -8) (2432 -3604 -8) (2552 -3604 -8)" + "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" "292197" + "plane" "(2552 -3592 -8) (2552 -3604 -8) (2552 -3604 0)" + "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" "292196" + "plane" "(2432 -3604 -8) (2432 -3592 -8) (2432 -3592 0)" + "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" "292195" + "plane" "(2552 -3604 -8) (2432 -3604 -8) (2432 -3604 0)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 0 -1 -0.00585938] 0.125" + "vaxis" "[1 0 0 -1.99874] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292194" + "plane" "(2432 -3592 -8) (2552 -3592 -8) (2552 -3592 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1976494" + side + { + "id" "292187" + "plane" "(2432 -3592 8) (2432 -3580 8) (2552 -3580 8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 -1 0 -64] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292186" + "plane" "(2432 -3580 0) (2432 -3592 0) (2552 -3592 0)" + "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" "292185" + "plane" "(2552 -3580 0) (2552 -3592 0) (2552 -3592 8)" + "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" "292184" + "plane" "(2432 -3592 0) (2432 -3580 0) (2432 -3580 8)" + "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" "292183" + "plane" "(2552 -3592 0) (2432 -3592 0) (2432 -3592 8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 0 -1 63.9941] 0.125" + "vaxis" "[1 0 0 -1.99874] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292182" + "plane" "(2432 -3580 0) (2552 -3580 0) (2552 -3580 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1976496" + side + { + "id" "292211" + "plane" "(2432 -3616 -8) (2432 -3604 -8) (2552 -3604 -8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 -1 0 -256] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292210" + "plane" "(2432 -3604 -16) (2432 -3616 -16) (2552 -3616 -16)" + "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" "292209" + "plane" "(2552 -3604 -16) (2552 -3616 -16) (2552 -3616 -8)" + "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" "292208" + "plane" "(2432 -3616 -16) (2432 -3604 -16) (2432 -3604 -8)" + "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" "292207" + "plane" "(2552 -3616 -16) (2432 -3616 -16) (2432 -3616 -8)" + "material" "RUBBER/HR_R/RUBBER_FLOOR_A_TINTDARK" + "uaxis" "[0 0 -1 -64.0059] 0.125" + "vaxis" "[1 0 0 -1.99874] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "292206" + "plane" "(2432 -3604 -16) (2552 -3604 -16) (2552 -3604 -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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -13268]" + } +} +hidden +{ + entity + { + "id" "760627" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_24.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2429 -3597 0" + editor + { + "color" "146 143 0" + "groupid" "760655" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "760879" + "classname" "prop_static" + "angles" "0 348.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2111.96 -3708.54 0.25" + editor + { + "color" "251 140 0" + "groupid" "1494073" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +entity +{ + "id" "761039" + "classname" "env_cubemap" + "cubemapsize" "0" + "sides" "280088 280081" + "origin" "2392 -3072 80" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "761516" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_128.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2473 -2724 -16.25" + editor + { + "color" "172 197 0" + "groupid" "761507" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "761520" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_32.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2473 -2596 -16.25" + editor + { + "color" "172 197 0" + "groupid" "761506" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +hidden +{ + entity + { + "id" "761524" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "148 148 148" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2473 -2562 -16.25" + editor + { + "color" "172 197 0" + "groupid" "761506" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -11768]" + } + } +} +entity +{ + "id" "754352" + "classname" "func_detail" + solid + { + "id" "3057170" + side + { + "id" "327677" + "plane" "(-240 -5384 0) (-240 -5488 0) (-226 -5488 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0.107482 -0.994207 0 -13.7577] 0.25" + "vaxis" "[0.994207 0.107482 0 -26.832] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327676" + "plane" "(-240 -5488 64) (-240 -5488 0) (-240 -5384 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327675" + "plane" "(-226 -5384 64) (-226 -5384 0) (-226 -5488 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.188014 -0.982166 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327674" + "plane" "(-240 -5384 64) (-240 -5384 0) (-226 -5384 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-0.970136 -0.242559 0 9.83746] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327673" + "plane" "(-226 -5488 64) (-226 -5488 0) (-240 -5488 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 -28.2539] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327672" + "plane" "(-240 -5488 64) (-240 -5384 64) (-226 -5384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987262 0.159107 0 -31.5031] 0.25" + "vaxis" "[0.159107 -0.987261 0 -15.0234] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057172" + side + { + "id" "327689" + "plane" "(-240 -5488 0) (-240 -5680 0) (-226 -5680 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" "327688" + "plane" "(-240 -5680 64) (-240 -5680 0) (-240 -5488 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327687" + "plane" "(-226 -5488 64) (-226 -5488 0) (-226 -5680 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.188014 -0.982166 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327686" + "plane" "(-240 -5488 64) (-240 -5488 0) (-226 -5488 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" "327685" + "plane" "(-226 -5680 64) (-226 -5680 0) (-240 -5680 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" "327684" + "plane" "(-240 -5680 64) (-240 -5488 64) (-226 -5488 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987262 0.159107 0 -31.5032] 0.25" + "vaxis" "[0.159107 -0.987261 0 -15.0234] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057169" + side + { + "id" "327671" + "plane" "(-240 -5488 68) (-240 -5384 68) (-224 -5384 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -0.976895 0.21372 39.0342] 0.125" + "vaxis" "[1 0 0 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327670" + "plane" "(-240 -5384 64) (-240 -5384 68) (-240 -5488 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.21372 -0.976895 0 -255.044] 0.125" + "vaxis" "[0 0 1 -703] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327669" + "plane" "(-224 -5488 64) (-224 -5488 68) (-224 -5384 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.21372 -0.976895 0 538.284] 0.125" + "vaxis" "[0 0 -1 -511] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327668" + "plane" "(-224 -5384 64) (-224 -5384 68) (-240 -5384 68)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-0.976895 -0.213718 0 9.83746] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327667" + "plane" "(-240 -5488 64) (-240 -5488 68) (-224 -5488 68)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 -28.2539] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327666" + "plane" "(-240 -5384 64) (-240 -5488 64) (-224 -5488 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057171" + side + { + "id" "327683" + "plane" "(-240 -5680 68) (-240 -5488 68) (-224 -5488 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -0.976895 0.21372 39.0342] 0.125" + "vaxis" "[1 0 0 737] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327682" + "plane" "(-240 -5488 64) (-240 -5488 68) (-240 -5680 68)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327681" + "plane" "(-224 -5680 64) (-224 -5680 68) (-224 -5488 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.21372 -0.976895 0 538.284] 0.125" + "vaxis" "[0 0 -1 -511] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327680" + "plane" "(-224 -5488 64) (-224 -5488 68) (-240 -5488 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" + } + side + { + "id" "327679" + "plane" "(-240 -5680 64) (-240 -5680 68) (-224 -5680 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" + } + side + { + "id" "327678" + "plane" "(-240 -5488 64) (-240 -5680 64) (-224 -5680 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 -0.976895 -0.21372 264.722] 0.125" + "vaxis" "[-1 0 0 -767] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6268]" + } +} +entity +{ + "id" "754358" + "classname" "func_detail" + solid + { + "id" "5160540" + side + { + "id" "351341" + "plane" "(-576 -4992 32) (-605 -4992 32) (-605 -5008 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" "351340" + "plane" "(-605 -5008 116) (-605 -5008 32) (-605 -4992 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351339" + "plane" "(-605 -4992 116) (-605 -4992 32) (-576 -4992 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 600.13] 0.125" + "vaxis" "[0 0 -1 -193.222] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351338" + "plane" "(-576 -5008 116) (-576 -5008 32) (-605 -5008 32)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351337" + "plane" "(-576 -4992 116) (-576 -4992 32) (-576 -5008 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" "351336" + "plane" "(-576 -5008 116) (-605 -5008 116) (-605 -4992 116)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5160679" + side + { + "id" "351353" + "plane" "(-469 -5002 -24) (-576 -4992 -24) (-576 -5008 -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" + } + side + { + "id" "351352" + "plane" "(-469 -5002 -24) (-470 -5016 -24) (-470 -5016 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" "351351" + "plane" "(-576 -4992 -24) (-469 -5002 -24) (-469 -5002 63.5078)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.997216 -0.0745581 0 681.649] 0.125" + "vaxis" "[0 0 -1 -193.222] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351350" + "plane" "(-470 -5016 -24) (-576 -5008 -24) (-576 -5008 116)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351349" + "plane" "(-576 -5008 -24) (-576 -4992 -24) (-576 -4992 116)" + "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" "351348" + "plane" "(-469 -5002 63.5078) (-470 -5016 64) (-576 -5008 116)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.778223 0.498604 0.38179 459.536] 0.125" + "vaxis" "[0.447665 0.86683 -0.219548 150.87] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5160539" + side + { + "id" "351335" + "plane" "(-576 -5008 120) (-605 -5008 120) (-605 -4992 120)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -97.7313] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351334" + "plane" "(-605 -4992 116) (-605 -4992 120) (-605 -5008 120)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351333" + "plane" "(-576 -4992 116) (-576 -4992 120) (-605 -4992 120)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 -664.482] 0.125" + "vaxis" "[0 0 -1 -989.427] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351332" + "plane" "(-605 -5008 116) (-605 -5008 120) (-576 -5008 120)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351331" + "plane" "(-576 -5008 116) (-576 -5008 120) (-576 -4992 120)" + "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" "351330" + "plane" "(-576 -4992 116) (-605 -4992 116) (-605 -5008 116)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5160684" + side + { + "id" "351365" + "plane" "(-470 -5016 68.4863) (-576 -5008 120) (-576 -4992 120)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.899414 0 -0.437099 -141.619] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351364" + "plane" "(-576 -4992 116) (-576 -4992 120) (-576 -5008 120)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -24] 0.125" + "vaxis" "[0 0 -1 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351363" + "plane" "(-469 -5000 63.5078) (-469 -5000 68) (-576 -4992 120)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.997217 0.0745577 0 -745.991] 0.125" + "vaxis" "[0 0 -1 -989.427] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351362" + "plane" "(-576 -5008 116) (-576 -5008 120) (-470 -5016 68.484)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -256] 0.125" + "vaxis" "[0 0 -1 -192] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "351361" + "plane" "(-470 -5016 64) (-470 -5016 68.4867) (-469 -5000 68)" + "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" "351360" + "plane" "(-469 -5000 63.5098) (-576 -4992 116) (-576 -5008 116)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 116] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5768]" + } +} +entity +{ + "id" "746436" + "classname" "func_detail" + solid + { + "id" "2326923" + side + { + "id" "304600" + "plane" "(1312 -2896 208) (1314 -2904 208) (1320 -2910 208)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304599" + "plane" "(1344 -2896 208) (1342 -2904 208) (1342 -2904 358)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[0.242536 0.970142 0 14.0962] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304598" + "plane" "(1342 -2904 208) (1336 -2910 208) (1336 -2910 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.707107 0.707107 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304597" + "plane" "(1336 -2910 208) (1328 -2912 208) (1328 -2912 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.970142 0.242536 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304596" + "plane" "(1328 -2912 208) (1320 -2910 208) (1320 -2910 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.970142 -0.242536 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304595" + "plane" "(1320 -2910 208) (1314 -2904 208) (1314 -2904 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.707107 -0.707107 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304594" + "plane" "(1314 -2904 208) (1312 -2896 208) (1312 -2896 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.242536 -0.970142 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304593" + "plane" "(1312 -2896 208) (1344 -2896 208) (1344 -2896 358)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304592" + "plane" "(1344 -2896 358) (1342 -2904 358) (1336 -2910 358)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892975" + side + { + "id" "349453" + "plane" "(1342 -2904 358) (1342 -2904 377) (1344 -2896 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[-0.970142 -0.242535 0 -928.707] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349452" + "plane" "(1336 -2910 358) (1336 -2910 377) (1342 -2904 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[-0.707106 -0.707106 0 -186] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349451" + "plane" "(1328 -2912 358) (1328 -2912 377) (1336 -2910 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[-0.970142 -0.242536 0 -856.203] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349450" + "plane" "(1320 -2910 358) (1320 -2910 377) (1328 -2912 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[-0.970142 0.242535 0 -810.176] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349449" + "plane" "(1314 -2904 358) (1314 -2904 377) (1320 -2910 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[-0.707106 0.707106 0 59.3808] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349448" + "plane" "(1312 -2896 358) (1312 -2896 377) (1314 -2904 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0 0 1 208] 0.125" + "vaxis" "[-0.242536 0.970142 0 276.253] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349447" + "plane" "(1344 -2896 358) (1344 -2896 377) (1312 -2896 377)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349446" + "plane" "(1312 -2896 358) (1314 -2904 358) (1320 -2910 358)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349445" + "plane" "(1344 -2896 377) (1342 -2904 377) (1336 -2910 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892974" + side + { + "id" "349444" + "plane" "(1344 -2896 382) (1342 -2904 382) (1336 -2910 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349443" + "plane" "(1342 -2904 377) (1342 -2904 382) (1344 -2896 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.242536 0.970142 0 206.512] 0.125" + "vaxis" "[0 0 1 -16.9987] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349442" + "plane" "(1336 -2910 377) (1336 -2910 382) (1342 -2904 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.707107 0.707107 0 395.494] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349441" + "plane" "(1328 -2912 377) (1328 -2912 382) (1336 -2910 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.970142 0.242536 0 113.568] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349440" + "plane" "(1320 -2910 377) (1320 -2910 382) (1328 -2912 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.970142 -0.242536 0 -403.155] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349439" + "plane" "(1314 -2904 377) (1314 -2904 382) (1320 -2910 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.707107 -0.707107 0 -216.102] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349438" + "plane" "(1312 -2896 377) (1312 -2896 382) (1314 -2904 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.242536 -0.970142 0 -395.918] 0.125" + "vaxis" "[0 0 1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349437" + "plane" "(1344 -2896 377) (1344 -2896 382) (1312 -2896 382)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349436" + "plane" "(1312 -2896 377) (1314 -2904 377) (1320 -2910 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8768]" + } +} +entity +{ + "id" "746440" + "classname" "func_detail" + solid + { + "id" "2326965" + side + { + "id" "304618" + "plane" "(1336 -3130 208) (1328 -3128 208) (1320 -3130 208)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304617" + "plane" "(1328 -3128 208) (1336 -3130 208) (1336 -3130 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.970142 0.242536 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304616" + "plane" "(1336 -3130 208) (1342 -3136 208) (1342 -3136 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.707107 0.707107 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304615" + "plane" "(1342 -3136 208) (1344 -3144 208) (1344 -3144 358)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-0.242536 0.970142 0 13.6115] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304614" + "plane" "(1312 -3144 208) (1314 -3136 208) (1314 -3136 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.242536 -0.970142 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304613" + "plane" "(1314 -3136 208) (1320 -3130 208) (1320 -3130 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.707107 -0.707107 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304612" + "plane" "(1320 -3130 208) (1328 -3128 208) (1328 -3128 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.970142 -0.242536 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304611" + "plane" "(1344 -3144 208) (1312 -3144 208) (1312 -3144 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "304610" + "plane" "(1312 -3144 358) (1314 -3136 358) (1320 -3130 358)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892925" + side + { + "id" "349411" + "plane" "(1336 -3130 358) (1336 -3130 377) (1328 -3128 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.970142 0.242536 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349410" + "plane" "(1342 -3136 358) (1342 -3136 377) (1336 -3130 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.707107 0.707107 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349409" + "plane" "(1344 -3144 358) (1344 -3144 377) (1342 -3136 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.242536 0.970142 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349408" + "plane" "(1314 -3136 358) (1314 -3136 377) (1312 -3144 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.242536 -0.970142 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349407" + "plane" "(1320 -3130 358) (1320 -3130 377) (1314 -3136 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.707107 -0.707107 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349406" + "plane" "(1328 -3128 358) (1328 -3128 377) (1320 -3130 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.970142 -0.242536 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349405" + "plane" "(1312 -3144 358) (1312 -3144 377) (1344 -3144 377)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349404" + "plane" "(1336 -3130 358) (1328 -3128 358) (1320 -3130 358)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349403" + "plane" "(1312 -3144 377) (1314 -3136 377) (1320 -3130 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892924" + side + { + "id" "349402" + "plane" "(1312 -3144 382) (1314 -3136 382) (1320 -3130 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349401" + "plane" "(1336 -3130 377) (1336 -3130 382) (1328 -3128 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.970142 0.242536 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349400" + "plane" "(1342 -3136 377) (1342 -3136 382) (1336 -3130 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.707107 0.707107 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349399" + "plane" "(1344 -3144 377) (1344 -3144 382) (1342 -3136 382)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.242536 0.970142 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349398" + "plane" "(1314 -3136 377) (1314 -3136 382) (1312 -3144 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.242536 -0.970142 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349397" + "plane" "(1320 -3130 377) (1320 -3130 382) (1314 -3136 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.707107 -0.707107 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349396" + "plane" "(1328 -3128 377) (1328 -3128 382) (1320 -3130 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.970142 -0.242536 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349395" + "plane" "(1312 -3144 377) (1312 -3144 382) (1344 -3144 382)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349394" + "plane" "(1336 -3130 377) (1328 -3128 377) (1320 -3130 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8268]" + } +} +entity +{ + "id" "719144" + "classname" "func_detail" + solid + { + "id" "3057174" + side + { + "id" "327701" + "plane" "(-240 -5384 0) (-226 -5384 0) (-232 -5308 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327700" + "plane" "(-240 -5384 0) (-240 -5384 64) (-226 -5384 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" "327699" + "plane" "(-232 -5308 0) (-232.001 -5308 64) (-242.612 -5310 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.987258 -0.159131 0 31.0116] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327698" + "plane" "(-226 -5384 0) (-226 -5384 64) (-232.001 -5308 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.342252 -0.939608 0 788.352] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327697" + "plane" "(-242.612 -5310 0) (-242.612 -5310 64) (-240 -5384 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.083546 -0.996504 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327696" + "plane" "(-242.612 -5310 64) (-232.001 -5308 64) (-226 -5384 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987262 0.159107 0 -31.5031] 0.25" + "vaxis" "[0.159107 -0.987261 0 -15.0234] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057176" + side + { + "id" "327713" + "plane" "(-414 -5022 0) (-469 -5002 0) (-470 -5016 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327712" + "plane" "(-416 -5036 64) (-414.001 -5022 64) (-414 -5022 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.315397 0.948959 0 -18.4216] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327711" + "plane" "(-469 -5002 64) (-470 -5016 64) (-470 -5016 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.0964867 -0.995334 0 15.8765] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327710" + "plane" "(-414.001 -5022 64) (-469 -5002 64) (-469 -5002 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.933619 -0.358265 0 -665.265] 0.125" + "vaxis" "[0 0 -1 -193.553] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327709" + "plane" "(-470 -5016 64) (-416 -5036 64) (-416 -5036 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.938343 -0.345705 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327708" + "plane" "(-469 -5002 64) (-414.001 -5022 64) (-416 -5036 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -18] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057178" + side + { + "id" "327725" + "plane" "(-416 -5036 0) (-368 -5068 0) (-361 -5058 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327724" + "plane" "(-361 -5058 0) (-368 -5068 0) (-368 -5068 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.445539 -0.895263 0 -740.821] 0.125" + "vaxis" "[0 0 -1 -1.6656] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327723" + "plane" "(-416 -5036 0) (-414 -5022 0) (-413.995 -5022 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.315397 -0.948959 0 18.4216] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327722" + "plane" "(-414 -5022 0) (-361 -5058 0) (-361 -5058 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.825606 -0.564246 0 -80.4785] 0.125" + "vaxis" "[0 0 -1 -194.37] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327721" + "plane" "(-368 -5068 0) (-416 -5036 0) (-416 -5036 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.809483 -0.587142 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327720" + "plane" "(-368 -5068 64) (-416 -5036 64) (-413.995 -5022 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -18] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057180" + side + { + "id" "327737" + "plane" "(-284 -5174 0) (-258.121 -5240 0) (-249 -5234 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327736" + "plane" "(-249 -5234 0) (-258.121 -5240 0) (-258.122 -5240 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.875242 0.483686 0 -21.6506] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327735" + "plane" "(-284 -5174 0) (-274 -5168 0) (-274 -5168 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.857493 0.514496 0 617.68] 0.125" + "vaxis" "[0 0 -1 1.17831] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327734" + "plane" "(-274 -5168 0) (-249 -5234 0) (-248.999 -5234 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.526489 -0.850182 0 814.896] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327733" + "plane" "(-258.121 -5240 0) (-284 -5174 0) (-284 -5174 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.399837 -0.916586 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327732" + "plane" "(-258.122 -5240 64) (-284 -5174 64) (-274 -5168 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -15] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057182" + side + { + "id" "327749" + "plane" "(-242.612 -5310 0) (-232 -5308 0) (-249 -5234 0)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327748" + "plane" "(-242.612 -5310 0) (-242.614 -5310 64) (-232.001 -5308 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987258 0.159131 0 -31.0116] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327747" + "plane" "(-249 -5234 0) (-249.005 -5234 64) (-258.123 -5240 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.875242 -0.483686 0 21.6506] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327746" + "plane" "(-232 -5308 0) (-232.001 -5308 64) (-249.005 -5234 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.454686 -0.890652 0 2.28906] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327745" + "plane" "(-258.122 -5240 0) (-258.123 -5240 64) (-242.614 -5310 64)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0.216328 -0.976321 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327744" + "plane" "(-258.123 -5240 64) (-249.005 -5234 64) (-232.001 -5308 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 -1 0 -15] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057173" + side + { + "id" "327695" + "plane" "(-224 -5384 68) (-240 -5384 68) (-242.612 -5310 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.0784596 -0.961141 0.26467 -193.57] 0.125" + "vaxis" "[0.996685 0.0813611 0 139.443] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327694" + "plane" "(-240 -5384 64) (-240 -5384 68) (-224 -5384 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" + } + side + { + "id" "327693" + "plane" "(-230.199 -5308 64) (-230.199 -5308 68) (-242.612 -5310 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.987258 -0.159131 0 31.0116] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327692" + "plane" "(-224 -5384 64) (-224 -5384 68) (-230.204 -5308 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.342252 -0.939608 0 326.63] 0.125" + "vaxis" "[0 0 -1 -511] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327691" + "plane" "(-242.612 -5310 64) (-242.612 -5310 68) (-240 -5384 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.229942 -0.972026 0.0478574 -112.592] 0.125" + "vaxis" "[0.0110171 0.0465721 0.998854 -722.845] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327690" + "plane" "(-230.203 -5308 64) (-242.612 -5310 64) (-240 -5384 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.0784594 -0.961141 -0.26467 -938.078] 0.125" + "vaxis" "[-0.996685 -0.0813609 0 -169.434] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057175" + side + { + "id" "327707" + "plane" "(-470 -5016 68) (-469 -5000 68) (-412 -5022 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.932927 0.360065 0 -349.168] 0.125" + "vaxis" "[0.360065 0.932927 0 237.43] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327706" + "plane" "(-412 -5022 68) (-412 -5022 64) (-416 -5036 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.315397 0.948959 0 -17.9978] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327705" + "plane" "(-470 -5016 68) (-470.002 -5016 64) (-469.002 -5000 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.0964867 -0.995334 0 15.7468] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327704" + "plane" "(-469 -5000 68) (-469.002 -5000 64) (-412 -5022 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.932926 0.360067 0 -349.077] 0.125" + "vaxis" "[0 0 -1 1.38678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327703" + "plane" "(-416 -5036 64) (-470.002 -5016 64) (-470 -5016 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.936987 0.349077 0.0141376 -841.683] 0.125" + "vaxis" "[0.0132539 -0.00491978 1 -296.751] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327702" + "plane" "(-416 -5036 64) (-412 -5022 64) (-469.002 -5000 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.932927 0.360065 0 -349.166] 0.125" + "vaxis" "[-0.360065 -0.932927 0 -266.664] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057177" + side + { + "id" "327719" + "plane" "(-412 -5022 68) (-359.005 -5058 68) (-368.005 -5068 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.827219 0.561874 0.00237426 -86.1995] 0.125" + "vaxis" "[0.561876 0.827222 0 786.648] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327718" + "plane" "(-359 -5058 64) (-368.005 -5068 64) (-368.005 -5068 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.0919413 -0.101436 0.990584 -776.232] 0.125" + "vaxis" "[0.665254 0.733958 0.136903 -718.152] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327717" + "plane" "(-416.002 -5036 64) (-412.001 -5022 64) (-412 -5022 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.315397 -0.948959 0 18.3347] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327716" + "plane" "(-412.001 -5022 64) (-359 -5058 64) (-359.005 -5058 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.825885 0.563838 0 -1.60409] 0.125" + "vaxis" "[0 0 -1 36.219] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327715" + "plane" "(-368.005 -5068 64) (-416.002 -5036 64) (-416 -5036 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.833704 0.552029 0.0141385 -511.08] 0.125" + "vaxis" "[0.0117931 -0.00779861 1 -417.506] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327714" + "plane" "(-359 -5058 64) (-412.001 -5022 64) (-416.002 -5036 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.827219 0.561874 -0.00237426 -83.6942] 0.125" + "vaxis" "[-0.561876 -0.827222 0 -746.188] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057179" + side + { + "id" "327731" + "plane" "(-247.266 -5234 68) (-258.124 -5240 68) (-284 -5174 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.379796 0.925071 0 -2] 0.125" + "vaxis" "[0.92507 0.379796 0 694] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327730" + "plane" "(-258.123 -5240 64) (-258.123 -5240 68) (-247.268 -5234 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.875242 0.483686 0 -21.6506] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327729" + "plane" "(-274 -5168 64) (-274 -5168 68) (-284 -5174 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.973825 -0.227257 0.00447323 -820.367] 0.125" + "vaxis" "[-0.00432474 -0.00115276 -1 -165.207] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327728" + "plane" "(-247.265 -5234 64) (-247.266 -5234 68) (-274 -5168 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.375408 0.926848 0.00473469 78.5294] 0.125" + "vaxis" "[-0.00175786 0.00439668 -1 -954.124] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327727" + "plane" "(-284 -5174 64) (-284 -5174 68) (-258.121 -5240 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.365008 0.930963 -0.00856268 -61.372] 0.125" + "vaxis" "[-0.0031116 0.00797709 1 -728.547] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327726" + "plane" "(-274 -5168 64) (-284 -5174 64) (-258.124 -5240 64)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3057181" + side + { + "id" "327743" + "plane" "(-230.207 -5308 68) (-242.613 -5310 68) (-258.123 -5240 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.217914 -0.945231 0.243005 -273.323] 0.125" + "vaxis" "[0.97444 0.224648 0 39.0303] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327742" + "plane" "(-242.613 -5310 64) (-242.613 -5310 68) (-230.207 -5308 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.987258 0.159131 0 -31.0116] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327741" + "plane" "(-247.266 -5234 64) (-247.266 -5234 68) (-258.123 -5240 68)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.875242 -0.483686 0 21.6506] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327740" + "plane" "(-230.207 -5308 64) (-230.207 -5308 68) (-247.267 -5234 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.454708 -0.89064 0 565.101] 0.125" + "vaxis" "[0 0 -1 -511] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327739" + "plane" "(-258.123 -5240 64) (-258.123 -5240 68) (-242.611 -5310 68)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.216314 0.976285 -0.0085621 97.5618] 0.125" + "vaxis" "[-0.00184483 0.00836077 1 -709.781] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "327738" + "plane" "(-247.27 -5234 64) (-258.123 -5240 64) (-242.612 -5310 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.217914 -0.945231 -0.243005 -16.7092] 0.125" + "vaxis" "[-0.97444 -0.224648 0 -69.0313] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -6768]" + } +} +entity +{ + "id" "618192" + "classname" "func_detail" + solid + { + "id" "618193" + side + { + "id" "151612" + "plane" "(1504 -1389 98) (1504 -1385 98) (1508 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151611" + "plane" "(1504 -1385 -16) (1504 -1389 -16) (1508 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151610" + "plane" "(1504 -1389 -16) (1504 -1385 -16) (1504 -1385 98)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[0 -1 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151609" + "plane" "(1508 -1385 -16) (1508 -1389 -16) (1508 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151608" + "plane" "(1504 -1385 -16) (1508 -1385 -16) (1508 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151607" + "plane" "(1508 -1389 -16) (1504 -1389 -16) (1504 -1389 98)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[1 0 0 -70] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618194" + side + { + "id" "151618" + "plane" "(1576 -1389 98) (1576 -1385 98) (1580 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151617" + "plane" "(1576 -1385 -16) (1576 -1389 -16) (1580 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151616" + "plane" "(1576 -1389 -16) (1576 -1385 -16) (1576 -1385 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151615" + "plane" "(1580 -1385 -16) (1580 -1389 -16) (1580 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151614" + "plane" "(1576 -1385 -16) (1580 -1385 -16) (1580 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151613" + "plane" "(1580 -1389 -16) (1576 -1389 -16) (1576 -1389 98)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618195" + side + { + "id" "151624" + "plane" "(1640 -1389 98) (1640 -1385 98) (1644 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151623" + "plane" "(1640 -1385 -16) (1640 -1389 -16) (1644 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151622" + "plane" "(1640 -1389 -16) (1640 -1385 -16) (1640 -1385 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151621" + "plane" "(1644 -1385 -16) (1644 -1389 -16) (1644 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151620" + "plane" "(1640 -1385 -16) (1644 -1385 -16) (1644 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151619" + "plane" "(1644 -1389 -16) (1640 -1389 -16) (1640 -1389 98)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618196" + side + { + "id" "151630" + "plane" "(1704 -1389 98) (1704 -1385 98) (1708 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151629" + "plane" "(1704 -1385 -16) (1704 -1389 -16) (1708 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151628" + "plane" "(1704 -1389 -16) (1704 -1385 -16) (1704 -1385 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151627" + "plane" "(1708 -1385 -16) (1708 -1389 -16) (1708 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151626" + "plane" "(1704 -1385 -16) (1708 -1385 -16) (1708 -1385 98)" + "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" "151625" + "plane" "(1708 -1389 -16) (1704 -1389 -16) (1704 -1389 98)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618197" + side + { + "id" "151636" + "plane" "(1768 -1389 98) (1768 -1385 98) (1772 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151635" + "plane" "(1768 -1385 -16) (1768 -1389 -16) (1772 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151634" + "plane" "(1768 -1389 -16) (1768 -1385 -16) (1768 -1385 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151633" + "plane" "(1772 -1385 -16) (1772 -1389 -16) (1772 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151632" + "plane" "(1768 -1385 -16) (1772 -1385 -16) (1772 -1385 98)" + "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" "151631" + "plane" "(1772 -1389 -16) (1768 -1389 -16) (1768 -1389 98)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618198" + side + { + "id" "151642" + "plane" "(1832 -1389 98) (1832 -1385 98) (1836 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151641" + "plane" "(1832 -1385 -16) (1832 -1389 -16) (1836 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151640" + "plane" "(1832 -1389 -16) (1832 -1385 -16) (1832 -1385 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151639" + "plane" "(1836 -1385 -16) (1836 -1389 -16) (1836 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151638" + "plane" "(1832 -1385 -16) (1836 -1385 -16) (1836 -1385 98)" + "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" "151637" + "plane" "(1836 -1389 -16) (1832 -1389 -16) (1832 -1389 98)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618199" + side + { + "id" "151648" + "plane" "(1896 -1389 98) (1896 -1385 98) (1900 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151647" + "plane" "(1896 -1385 -16) (1896 -1389 -16) (1900 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151646" + "plane" "(1896 -1389 -16) (1896 -1385 -16) (1896 -1385 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151645" + "plane" "(1900 -1385 -16) (1900 -1389 -16) (1900 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151644" + "plane" "(1896 -1385 -16) (1900 -1385 -16) (1900 -1385 98)" + "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" "151643" + "plane" "(1900 -1389 -16) (1896 -1389 -16) (1896 -1389 98)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618200" + side + { + "id" "151654" + "plane" "(1960 -1389 98) (1960 -1385 98) (1964 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151653" + "plane" "(1960 -1385 -16) (1960 -1389 -16) (1964 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151652" + "plane" "(1960 -1389 -16) (1960 -1385 -16) (1960 -1385 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151651" + "plane" "(1964 -1385 -16) (1964 -1389 -16) (1964 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151650" + "plane" "(1960 -1385 -16) (1964 -1385 -16) (1964 -1385 98)" + "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" "151649" + "plane" "(1964 -1389 -16) (1960 -1389 -16) (1960 -1389 98)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618201" + side + { + "id" "151660" + "plane" "(2024 -1389 98) (2024 -1385 98) (2028 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151659" + "plane" "(2024 -1385 -16) (2024 -1389 -16) (2028 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151658" + "plane" "(2024 -1389 -16) (2024 -1385 -16) (2024 -1385 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151657" + "plane" "(2028 -1385 -16) (2028 -1389 -16) (2028 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151656" + "plane" "(2024 -1385 -16) (2028 -1385 -16) (2028 -1385 98)" + "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" "151655" + "plane" "(2028 -1389 -16) (2024 -1389 -16) (2024 -1389 98)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618202" + side + { + "id" "151666" + "plane" "(2060 -1389 98) (2060 -1385 98) (2064 -1385 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151665" + "plane" "(2060 -1385 -16) (2060 -1389 -16) (2064 -1389 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151664" + "plane" "(2060 -1389 -16) (2060 -1385 -16) (2060 -1385 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151663" + "plane" "(2064 -1385 -16) (2064 -1389 -16) (2064 -1389 98)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151662" + "plane" "(2060 -1385 -16) (2064 -1385 -16) (2064 -1385 98)" + "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" "151661" + "plane" "(2064 -1389 -16) (2060 -1389 -16) (2060 -1389 98)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618191" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "618203" + "classname" "func_detail" + solid + { + "id" "618204" + side + { + "id" "151672" + "plane" "(1508 -1389 59) (1508 -1385 59) (2064 -1385 59)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151671" + "plane" "(1508 -1385 55) (1508 -1389 55) (2064 -1389 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151670" + "plane" "(1508 -1389 55) (1508 -1385 55) (1508 -1385 59)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151669" + "plane" "(2064 -1385 55) (2064 -1389 55) (2064 -1389 59)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151668" + "plane" "(1508 -1385 55) (2064 -1385 55) (2064 -1385 59)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151667" + "plane" "(2064 -1389 55) (1508 -1389 55) (1508 -1389 59)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618205" + side + { + "id" "151678" + "plane" "(1508 -1389 20) (1508 -1385 20) (2064 -1385 20)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151677" + "plane" "(1508 -1385 16) (1508 -1389 16) (2064 -1389 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151676" + "plane" "(1508 -1389 16) (1508 -1385 16) (1508 -1385 20)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151675" + "plane" "(2064 -1385 16) (2064 -1389 16) (2064 -1389 20)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151674" + "plane" "(1508 -1385 16) (2064 -1385 16) (2064 -1385 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" "151673" + "plane" "(2064 -1389 16) (1508 -1389 16) (1508 -1389 20)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 -7.99805] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618191" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "618206" + "classname" "func_detail" + solid + { + "id" "618207" + side + { + "id" "151684" + "plane" "(1504 -1322 74) (1504 -1318 74) (1508 -1318 74)" + "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" "151683" + "plane" "(1504 -1318 -16) (1504 -1318 74) (1504 -1322 74)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[0 -1 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151682" + "plane" "(1508 -1322 -16) (1508 -1322 74) (1508 -1318 74)" + "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" "151681" + "plane" "(1508 -1318 -16) (1508 -1318 74) (1504 -1318 74)" + "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" "151680" + "plane" "(1504 -1322 -16) (1504 -1322 74) (1508 -1322 74)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[1 0 0 -70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151679" + "plane" "(1504 -1318 -16) (1504 -1322 -16) (1508 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618208" + side + { + "id" "151690" + "plane" "(1576 -1322 74) (1576 -1318 74) (1580 -1318 74)" + "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" "151689" + "plane" "(1576 -1318 -16) (1576 -1318 74) (1576 -1322 74)" + "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" "151688" + "plane" "(1580 -1322 -16) (1580 -1322 74) (1580 -1318 74)" + "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" "151687" + "plane" "(1580 -1318 -16) (1580 -1318 74) (1576 -1318 74)" + "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" "151686" + "plane" "(1576 -1322 -16) (1576 -1322 74) (1580 -1322 74)" + "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" "151685" + "plane" "(1576 -1318 -16) (1576 -1322 -16) (1580 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618209" + side + { + "id" "151696" + "plane" "(1640 -1322 74) (1640 -1318 74) (1644 -1318 74)" + "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" "151695" + "plane" "(1640 -1318 -16) (1640 -1318 74) (1640 -1322 74)" + "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" "151694" + "plane" "(1644 -1322 -16) (1644 -1322 74) (1644 -1318 74)" + "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" "151693" + "plane" "(1644 -1318 -16) (1644 -1318 74) (1640 -1318 74)" + "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" "151692" + "plane" "(1640 -1322 -16) (1640 -1322 74) (1644 -1322 74)" + "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" "151691" + "plane" "(1640 -1318 -16) (1640 -1322 -16) (1644 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618210" + side + { + "id" "151702" + "plane" "(1704 -1322 74) (1704 -1318 74) (1708 -1318 74)" + "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" "151701" + "plane" "(1704 -1318 -16) (1704 -1318 74) (1704 -1322 74)" + "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" "151700" + "plane" "(1708 -1322 -16) (1708 -1322 74) (1708 -1318 74)" + "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" "151699" + "plane" "(1708 -1318 -16) (1708 -1318 74) (1704 -1318 74)" + "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" "151698" + "plane" "(1704 -1322 -16) (1704 -1322 74) (1708 -1322 74)" + "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" "151697" + "plane" "(1704 -1318 -16) (1704 -1322 -16) (1708 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618211" + side + { + "id" "151708" + "plane" "(1768 -1322 74) (1768 -1318 74) (1772 -1318 74)" + "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" "151707" + "plane" "(1768 -1318 -16) (1768 -1318 74) (1768 -1322 74)" + "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" "151706" + "plane" "(1772 -1322 -16) (1772 -1322 74) (1772 -1318 74)" + "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" "151705" + "plane" "(1772 -1318 -16) (1772 -1318 74) (1768 -1318 74)" + "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" "151704" + "plane" "(1768 -1322 -16) (1768 -1322 74) (1772 -1322 74)" + "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" "151703" + "plane" "(1768 -1318 -16) (1768 -1322 -16) (1772 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618212" + side + { + "id" "151714" + "plane" "(1832 -1322 74) (1832 -1318 74) (1836 -1318 74)" + "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" "151713" + "plane" "(1832 -1318 -16) (1832 -1318 74) (1832 -1322 74)" + "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" "151712" + "plane" "(1836 -1322 -16) (1836 -1322 74) (1836 -1318 74)" + "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" "151711" + "plane" "(1836 -1318 -16) (1836 -1318 74) (1832 -1318 74)" + "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" "151710" + "plane" "(1832 -1322 -16) (1832 -1322 74) (1836 -1322 74)" + "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" "151709" + "plane" "(1832 -1318 -16) (1832 -1322 -16) (1836 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618213" + side + { + "id" "151720" + "plane" "(1896 -1322 74) (1896 -1318 74) (1900 -1318 74)" + "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" "151719" + "plane" "(1896 -1318 -16) (1896 -1318 74) (1896 -1322 74)" + "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" "151718" + "plane" "(1900 -1322 -16) (1900 -1322 74) (1900 -1318 74)" + "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" "151717" + "plane" "(1900 -1318 -16) (1900 -1318 74) (1896 -1318 74)" + "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" "151716" + "plane" "(1896 -1322 -16) (1896 -1322 74) (1900 -1322 74)" + "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" "151715" + "plane" "(1896 -1318 -16) (1896 -1322 -16) (1900 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618214" + side + { + "id" "151726" + "plane" "(1960 -1322 74) (1960 -1318 74) (1964 -1318 74)" + "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" "151725" + "plane" "(1960 -1318 -16) (1960 -1318 74) (1960 -1322 74)" + "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" "151724" + "plane" "(1964 -1322 -16) (1964 -1322 74) (1964 -1318 74)" + "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" "151723" + "plane" "(1964 -1318 -16) (1964 -1318 74) (1960 -1318 74)" + "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" "151722" + "plane" "(1960 -1322 -16) (1960 -1322 74) (1964 -1322 74)" + "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" "151721" + "plane" "(1960 -1318 -16) (1960 -1322 -16) (1964 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618215" + side + { + "id" "151732" + "plane" "(2024 -1322 74) (2024 -1318 74) (2028 -1318 74)" + "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" "151731" + "plane" "(2024 -1318 -16) (2024 -1318 74) (2024 -1322 74)" + "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" "151730" + "plane" "(2028 -1322 -16) (2028 -1322 74) (2028 -1318 74)" + "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" "151729" + "plane" "(2028 -1318 -16) (2028 -1318 74) (2024 -1318 74)" + "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" "151728" + "plane" "(2024 -1322 -16) (2024 -1322 74) (2028 -1322 74)" + "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" "151727" + "plane" "(2024 -1318 -16) (2024 -1322 -16) (2028 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618216" + side + { + "id" "151738" + "plane" "(2060 -1322 74) (2060 -1318 74) (2064 -1318 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151737" + "plane" "(2060 -1318 -16) (2060 -1318 74) (2060 -1322 74)" + "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" "151736" + "plane" "(2064 -1322 -16) (2064 -1322 74) (2064 -1318 74)" + "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" "151735" + "plane" "(2064 -1318 -16) (2064 -1318 74) (2060 -1318 74)" + "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" "151734" + "plane" "(2060 -1322 -16) (2060 -1322 74) (2064 -1322 74)" + "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" "151733" + "plane" "(2060 -1318 -16) (2060 -1322 -16) (2064 -1322 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618191" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "618217" + "classname" "func_detail" + solid + { + "id" "618218" + side + { + "id" "151744" + "plane" "(1504 -1256 50) (1504 -1252 50) (1508 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151743" + "plane" "(1504 -1252 -16) (1504 -1252 50) (1504 -1256 50)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[0 -1 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151742" + "plane" "(1508 -1256 -16) (1508 -1256 50) (1508 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151741" + "plane" "(1508 -1252 -16) (1508 -1252 50) (1504 -1252 50)" + "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" "151740" + "plane" "(1504 -1256 -16) (1504 -1256 50) (1508 -1256 50)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[1 0 0 -70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151739" + "plane" "(1504 -1252 -16) (1504 -1256 -16) (1508 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618219" + side + { + "id" "151750" + "plane" "(1576 -1256 50) (1576 -1252 50) (1580 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151749" + "plane" "(1576 -1252 -16) (1576 -1252 50) (1576 -1256 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151748" + "plane" "(1580 -1256 -16) (1580 -1256 50) (1580 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151747" + "plane" "(1580 -1252 -16) (1580 -1252 50) (1576 -1252 50)" + "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" "151746" + "plane" "(1576 -1256 -16) (1576 -1256 50) (1580 -1256 50)" + "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" "151745" + "plane" "(1576 -1252 -16) (1576 -1256 -16) (1580 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618220" + side + { + "id" "151756" + "plane" "(1640 -1256 50) (1640 -1252 50) (1644 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151755" + "plane" "(1640 -1252 -16) (1640 -1252 50) (1640 -1256 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151754" + "plane" "(1644 -1256 -16) (1644 -1256 50) (1644 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151753" + "plane" "(1644 -1252 -16) (1644 -1252 50) (1640 -1252 50)" + "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" "151752" + "plane" "(1640 -1256 -16) (1640 -1256 50) (1644 -1256 50)" + "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" "151751" + "plane" "(1640 -1252 -16) (1640 -1256 -16) (1644 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618221" + side + { + "id" "151762" + "plane" "(1704 -1256 50) (1704 -1252 50) (1708 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151761" + "plane" "(1704 -1252 -16) (1704 -1252 50) (1704 -1256 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151760" + "plane" "(1708 -1256 -16) (1708 -1256 50) (1708 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151759" + "plane" "(1708 -1252 -16) (1708 -1252 50) (1704 -1252 50)" + "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" "151758" + "plane" "(1704 -1256 -16) (1704 -1256 50) (1708 -1256 50)" + "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" "151757" + "plane" "(1704 -1252 -16) (1704 -1256 -16) (1708 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618222" + side + { + "id" "151768" + "plane" "(1768 -1256 50) (1768 -1252 50) (1772 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151767" + "plane" "(1768 -1252 -16) (1768 -1252 50) (1768 -1256 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151766" + "plane" "(1772 -1256 -16) (1772 -1256 50) (1772 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151765" + "plane" "(1772 -1252 -16) (1772 -1252 50) (1768 -1252 50)" + "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" "151764" + "plane" "(1768 -1256 -16) (1768 -1256 50) (1772 -1256 50)" + "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" "151763" + "plane" "(1768 -1252 -16) (1768 -1256 -16) (1772 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618223" + side + { + "id" "151774" + "plane" "(1832 -1256 50) (1832 -1252 50) (1836 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151773" + "plane" "(1832 -1252 -16) (1832 -1252 50) (1832 -1256 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151772" + "plane" "(1836 -1256 -16) (1836 -1256 50) (1836 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151771" + "plane" "(1836 -1252 -16) (1836 -1252 50) (1832 -1252 50)" + "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" "151770" + "plane" "(1832 -1256 -16) (1832 -1256 50) (1836 -1256 50)" + "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" "151769" + "plane" "(1832 -1252 -16) (1832 -1256 -16) (1836 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618224" + side + { + "id" "151780" + "plane" "(1896 -1256 50) (1896 -1252 50) (1900 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151779" + "plane" "(1896 -1252 -16) (1896 -1252 50) (1896 -1256 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151778" + "plane" "(1900 -1256 -16) (1900 -1256 50) (1900 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151777" + "plane" "(1900 -1252 -16) (1900 -1252 50) (1896 -1252 50)" + "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" "151776" + "plane" "(1896 -1256 -16) (1896 -1256 50) (1900 -1256 50)" + "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" "151775" + "plane" "(1896 -1252 -16) (1896 -1256 -16) (1900 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618225" + side + { + "id" "151786" + "plane" "(1960 -1256 50) (1960 -1252 50) (1964 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151785" + "plane" "(1960 -1252 -16) (1960 -1252 50) (1960 -1256 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151784" + "plane" "(1964 -1256 -16) (1964 -1256 50) (1964 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151783" + "plane" "(1964 -1252 -16) (1964 -1252 50) (1960 -1252 50)" + "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" "151782" + "plane" "(1960 -1256 -16) (1960 -1256 50) (1964 -1256 50)" + "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" "151781" + "plane" "(1960 -1252 -16) (1960 -1256 -16) (1964 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618226" + side + { + "id" "151792" + "plane" "(2024 -1256 50) (2024 -1252 50) (2028 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151791" + "plane" "(2024 -1252 -16) (2024 -1252 50) (2024 -1256 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151790" + "plane" "(2028 -1256 -16) (2028 -1256 50) (2028 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151789" + "plane" "(2028 -1252 -16) (2028 -1252 50) (2024 -1252 50)" + "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" "151788" + "plane" "(2024 -1256 -16) (2024 -1256 50) (2028 -1256 50)" + "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" "151787" + "plane" "(2024 -1252 -16) (2024 -1256 -16) (2028 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618227" + side + { + "id" "151798" + "plane" "(2060 -1256 50) (2060 -1252 50) (2064 -1252 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151797" + "plane" "(2060 -1252 -16) (2060 -1252 50) (2060 -1256 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151796" + "plane" "(2064 -1256 -16) (2064 -1256 50) (2064 -1252 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151795" + "plane" "(2064 -1252 -16) (2064 -1252 50) (2060 -1252 50)" + "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" "151794" + "plane" "(2060 -1256 -16) (2060 -1256 50) (2064 -1256 50)" + "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" "151793" + "plane" "(2060 -1252 -16) (2060 -1256 -16) (2064 -1256 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618191" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "618228" + "classname" "func_detail" + solid + { + "id" "618229" + side + { + "id" "151804" + "plane" "(1504 -1190 26) (1504 -1186 26) (1508 -1186 26)" + "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" "151803" + "plane" "(1504 -1186 -16) (1504 -1186 26) (1504 -1190 26)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[0 -1 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151802" + "plane" "(1508 -1190 -16) (1508 -1190 26) (1508 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151801" + "plane" "(1508 -1186 -16) (1508 -1186 26) (1504 -1186 26)" + "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" "151800" + "plane" "(1504 -1190 -16) (1504 -1190 26) (1508 -1190 26)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[1 0 0 -70] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151799" + "plane" "(1504 -1186 -16) (1504 -1190 -16) (1508 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618230" + side + { + "id" "151810" + "plane" "(1576 -1190 26) (1576 -1186 26) (1580 -1186 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151809" + "plane" "(1576 -1186 -16) (1576 -1186 26) (1576 -1190 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151808" + "plane" "(1580 -1190 -16) (1580 -1190 26) (1580 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151807" + "plane" "(1580 -1186 -16) (1580 -1186 26) (1576 -1186 26)" + "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" "151806" + "plane" "(1576 -1190 -16) (1576 -1190 26) (1580 -1190 26)" + "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" "151805" + "plane" "(1576 -1186 -16) (1576 -1190 -16) (1580 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618231" + side + { + "id" "151816" + "plane" "(1640 -1190 26) (1640 -1186 26) (1644 -1186 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151815" + "plane" "(1640 -1186 -16) (1640 -1186 26) (1640 -1190 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151814" + "plane" "(1644 -1190 -16) (1644 -1190 26) (1644 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151813" + "plane" "(1644 -1186 -16) (1644 -1186 26) (1640 -1186 26)" + "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" "151812" + "plane" "(1640 -1190 -16) (1640 -1190 26) (1644 -1190 26)" + "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" "151811" + "plane" "(1640 -1186 -16) (1640 -1190 -16) (1644 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618232" + side + { + "id" "151822" + "plane" "(1704 -1190 26) (1704 -1186 26) (1708 -1186 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151821" + "plane" "(1704 -1186 -16) (1704 -1186 26) (1704 -1190 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151820" + "plane" "(1708 -1190 -16) (1708 -1190 26) (1708 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151819" + "plane" "(1708 -1186 -16) (1708 -1186 26) (1704 -1186 26)" + "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" "151818" + "plane" "(1704 -1190 -16) (1704 -1190 26) (1708 -1190 26)" + "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" "151817" + "plane" "(1704 -1186 -16) (1704 -1190 -16) (1708 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618233" + side + { + "id" "151828" + "plane" "(1768 -1190 26) (1768 -1186 26) (1772 -1186 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151827" + "plane" "(1768 -1186 -16) (1768 -1186 26) (1768 -1190 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151826" + "plane" "(1772 -1190 -16) (1772 -1190 26) (1772 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151825" + "plane" "(1772 -1186 -16) (1772 -1186 26) (1768 -1186 26)" + "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" "151824" + "plane" "(1768 -1190 -16) (1768 -1190 26) (1772 -1190 26)" + "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" "151823" + "plane" "(1768 -1186 -16) (1768 -1190 -16) (1772 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618234" + side + { + "id" "151834" + "plane" "(1832 -1190 26) (1832 -1186 26) (1836 -1186 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151833" + "plane" "(1832 -1186 -16) (1832 -1186 26) (1832 -1190 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151832" + "plane" "(1836 -1190 -16) (1836 -1190 26) (1836 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151831" + "plane" "(1836 -1186 -16) (1836 -1186 26) (1832 -1186 26)" + "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" "151830" + "plane" "(1832 -1190 -16) (1832 -1190 26) (1836 -1190 26)" + "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" "151829" + "plane" "(1832 -1186 -16) (1832 -1190 -16) (1836 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618235" + side + { + "id" "151840" + "plane" "(1896 -1190 26) (1896 -1186 26) (1900 -1186 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151839" + "plane" "(1896 -1186 -16) (1896 -1186 26) (1896 -1190 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151838" + "plane" "(1900 -1190 -16) (1900 -1190 26) (1900 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151837" + "plane" "(1900 -1186 -16) (1900 -1186 26) (1896 -1186 26)" + "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" "151836" + "plane" "(1896 -1190 -16) (1896 -1190 26) (1900 -1190 26)" + "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" "151835" + "plane" "(1896 -1186 -16) (1896 -1190 -16) (1900 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618236" + side + { + "id" "151846" + "plane" "(1960 -1190 26) (1960 -1186 26) (1964 -1186 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151845" + "plane" "(1960 -1186 -16) (1960 -1186 26) (1960 -1190 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151844" + "plane" "(1964 -1190 -16) (1964 -1190 26) (1964 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151843" + "plane" "(1964 -1186 -16) (1964 -1186 26) (1960 -1186 26)" + "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" "151842" + "plane" "(1960 -1190 -16) (1960 -1190 26) (1964 -1190 26)" + "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" "151841" + "plane" "(1960 -1186 -16) (1960 -1190 -16) (1964 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618237" + side + { + "id" "151852" + "plane" "(2024 -1190 26) (2024 -1186 26) (2028 -1186 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151851" + "plane" "(2024 -1186 -16) (2024 -1186 26) (2024 -1190 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151850" + "plane" "(2028 -1190 -16) (2028 -1190 26) (2028 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151849" + "plane" "(2028 -1186 -16) (2028 -1186 26) (2024 -1186 26)" + "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" "151848" + "plane" "(2024 -1190 -16) (2024 -1190 26) (2028 -1190 26)" + "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" "151847" + "plane" "(2024 -1186 -16) (2024 -1190 -16) (2028 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618238" + side + { + "id" "151858" + "plane" "(2060 -1190 26) (2060 -1186 26) (2064 -1186 26)" + "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" "151857" + "plane" "(2060 -1186 -16) (2060 -1186 26) (2060 -1190 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151856" + "plane" "(2064 -1190 -16) (2064 -1190 26) (2064 -1186 26)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151855" + "plane" "(2064 -1186 -16) (2064 -1186 26) (2060 -1186 26)" + "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" "151854" + "plane" "(2060 -1190 -16) (2060 -1190 26) (2064 -1190 26)" + "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" "151853" + "plane" "(2060 -1186 -16) (2060 -1190 -16) (2064 -1190 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618191" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "618239" + "classname" "func_detail" + solid + { + "id" "618240" + side + { + "id" "151864" + "plane" "(1504 -1124 2) (1504 -1120 2) (1508 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151863" + "plane" "(1504 -1120 -16) (1504 -1120 2) (1504 -1124 2)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[0 -1 0 82] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151862" + "plane" "(1508 -1124 -16) (1508 -1124 2) (1508 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151861" + "plane" "(1508 -1120 -16) (1508 -1120 2) (1504 -1120 2)" + "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" "151860" + "plane" "(1504 -1124 -16) (1504 -1124 2) (1508 -1124 2)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -22] 0.125" + "vaxis" "[1 0 0 -70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151859" + "plane" "(1504 -1120 -16) (1504 -1124 -16) (1508 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618241" + side + { + "id" "151870" + "plane" "(1576 -1124 2) (1576 -1120 2) (1580 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151869" + "plane" "(1576 -1120 -16) (1576 -1120 2) (1576 -1124 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151868" + "plane" "(1580 -1124 -16) (1580 -1124 2) (1580 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151867" + "plane" "(1580 -1120 -16) (1580 -1120 2) (1576 -1120 2)" + "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" "151866" + "plane" "(1576 -1124 -16) (1576 -1124 2) (1580 -1124 2)" + "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" "151865" + "plane" "(1576 -1120 -16) (1576 -1124 -16) (1580 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618242" + side + { + "id" "151876" + "plane" "(1640 -1124 2) (1640 -1120 2) (1644 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151875" + "plane" "(1640 -1120 -16) (1640 -1120 2) (1640 -1124 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151874" + "plane" "(1644 -1124 -16) (1644 -1124 2) (1644 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151873" + "plane" "(1644 -1120 -16) (1644 -1120 2) (1640 -1120 2)" + "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" "151872" + "plane" "(1640 -1124 -16) (1640 -1124 2) (1644 -1124 2)" + "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" "151871" + "plane" "(1640 -1120 -16) (1640 -1124 -16) (1644 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618243" + side + { + "id" "151882" + "plane" "(1704 -1124 2) (1704 -1120 2) (1708 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151881" + "plane" "(1704 -1120 -16) (1704 -1120 2) (1704 -1124 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151880" + "plane" "(1708 -1124 -16) (1708 -1124 2) (1708 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151879" + "plane" "(1708 -1120 -16) (1708 -1120 2) (1704 -1120 2)" + "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" "151878" + "plane" "(1704 -1124 -16) (1704 -1124 2) (1708 -1124 2)" + "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" "151877" + "plane" "(1704 -1120 -16) (1704 -1124 -16) (1708 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618244" + side + { + "id" "151888" + "plane" "(1768 -1124 2) (1768 -1120 2) (1772 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151887" + "plane" "(1768 -1120 -16) (1768 -1120 2) (1768 -1124 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151886" + "plane" "(1772 -1124 -16) (1772 -1124 2) (1772 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151885" + "plane" "(1772 -1120 -16) (1772 -1120 2) (1768 -1120 2)" + "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" "151884" + "plane" "(1768 -1124 -16) (1768 -1124 2) (1772 -1124 2)" + "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" "151883" + "plane" "(1768 -1120 -16) (1768 -1124 -16) (1772 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618245" + side + { + "id" "151894" + "plane" "(1832 -1124 2) (1832 -1120 2) (1836 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151893" + "plane" "(1832 -1120 -16) (1832 -1120 2) (1832 -1124 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151892" + "plane" "(1836 -1124 -16) (1836 -1124 2) (1836 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151891" + "plane" "(1836 -1120 -16) (1836 -1120 2) (1832 -1120 2)" + "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" "151890" + "plane" "(1832 -1124 -16) (1832 -1124 2) (1836 -1124 2)" + "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" "151889" + "plane" "(1832 -1120 -16) (1832 -1124 -16) (1836 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618246" + side + { + "id" "151900" + "plane" "(1896 -1124 2) (1896 -1120 2) (1900 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151899" + "plane" "(1896 -1120 -16) (1896 -1120 2) (1896 -1124 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151898" + "plane" "(1900 -1124 -16) (1900 -1124 2) (1900 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151897" + "plane" "(1900 -1120 -16) (1900 -1120 2) (1896 -1120 2)" + "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" "151896" + "plane" "(1896 -1124 -16) (1896 -1124 2) (1900 -1124 2)" + "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" "151895" + "plane" "(1896 -1120 -16) (1896 -1124 -16) (1900 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618247" + side + { + "id" "151906" + "plane" "(1960 -1124 2) (1960 -1120 2) (1964 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151905" + "plane" "(1960 -1120 -16) (1960 -1120 2) (1960 -1124 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151904" + "plane" "(1964 -1124 -16) (1964 -1124 2) (1964 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151903" + "plane" "(1964 -1120 -16) (1964 -1120 2) (1960 -1120 2)" + "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" "151902" + "plane" "(1960 -1124 -16) (1960 -1124 2) (1964 -1124 2)" + "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" "151901" + "plane" "(1960 -1120 -16) (1960 -1124 -16) (1964 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618248" + side + { + "id" "151912" + "plane" "(2024 -1124 2) (2024 -1120 2) (2028 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151911" + "plane" "(2024 -1120 -16) (2024 -1120 2) (2024 -1124 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151910" + "plane" "(2028 -1124 -16) (2028 -1124 2) (2028 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151909" + "plane" "(2028 -1120 -16) (2028 -1120 2) (2024 -1120 2)" + "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" "151908" + "plane" "(2024 -1124 -16) (2024 -1124 2) (2028 -1124 2)" + "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" "151907" + "plane" "(2024 -1120 -16) (2024 -1124 -16) (2028 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618249" + side + { + "id" "151918" + "plane" "(2060 -1124 2) (2060 -1120 2) (2064 -1120 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151917" + "plane" "(2060 -1120 -16) (2060 -1120 2) (2060 -1124 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151916" + "plane" "(2064 -1124 -16) (2064 -1124 2) (2064 -1120 2)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151915" + "plane" "(2064 -1120 -16) (2064 -1120 2) (2060 -1120 2)" + "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" "151914" + "plane" "(2060 -1124 -16) (2060 -1124 2) (2064 -1124 2)" + "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" "151913" + "plane" "(2060 -1120 -16) (2060 -1124 -16) (2064 -1124 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618191" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "618250" + "classname" "func_detail" + solid + { + "id" "618251" + side + { + "id" "151924" + "plane" "(1508 -1322 48) (1508 -1318 48) (2064 -1318 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" "151923" + "plane" "(1508 -1318 44) (1508 -1322 44) (2064 -1322 44)" + "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" "151922" + "plane" "(1508 -1322 44) (1508 -1318 44) (1508 -1318 48)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151921" + "plane" "(2064 -1318 44) (2064 -1322 44) (2064 -1322 48)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151920" + "plane" "(1508 -1318 44) (2064 -1318 44) (2064 -1318 48)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151919" + "plane" "(2064 -1322 44) (1508 -1322 44) (1508 -1322 48)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618252" + side + { + "id" "151930" + "plane" "(1508 -1322 9) (1508 -1318 9) (2064 -1318 9)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151929" + "plane" "(1508 -1318 5) (1508 -1322 5) (2064 -1322 5)" + "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" "151928" + "plane" "(1508 -1322 5) (1508 -1318 5) (1508 -1318 9)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151927" + "plane" "(2064 -1318 5) (2064 -1322 5) (2064 -1322 9)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151926" + "plane" "(1508 -1318 5) (2064 -1318 5) (2064 -1318 9)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151925" + "plane" "(2064 -1322 5) (1508 -1322 5) (1508 -1322 9)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 -495.998] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618191" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "618253" + "classname" "func_detail" + solid + { + "id" "618254" + side + { + "id" "151936" + "plane" "(1504 -1256 19) (1504 -1252 19) (2064 -1252 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151935" + "plane" "(1504 -1252 15) (1504 -1256 15) (2064 -1256 15)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151934" + "plane" "(1504 -1256 15) (1504 -1252 15) (1504 -1252 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151933" + "plane" "(2064 -1252 15) (2064 -1256 15) (2064 -1256 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151932" + "plane" "(1504 -1252 15) (2064 -1252 15) (2064 -1252 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151931" + "plane" "(2064 -1256 15) (1504 -1256 15) (1504 -1256 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618191" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "618255" + "classname" "func_detail" + solid + { + "id" "618256" + side + { + "id" "151942" + "plane" "(1508 -1190 7) (1508 -1186 7) (2064 -1186 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151941" + "plane" "(1508 -1186 3) (1508 -1190 3) (2064 -1190 3)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151940" + "plane" "(1508 -1190 3) (1508 -1186 3) (1508 -1186 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151939" + "plane" "(2064 -1186 3) (2064 -1190 3) (2064 -1190 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151938" + "plane" "(1508 -1186 3) (2064 -1186 3) (2064 -1186 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151937" + "plane" "(2064 -1190 3) (1508 -1190 3) (1508 -1190 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618191" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "618258" + "classname" "func_detail" + solid + { + "id" "618259" + side + { + "id" "151948" + "plane" "(1904 -1091 -8) (1904 -1056 -8) (1968 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151947" + "plane" "(1904 -1056 -10) (1904 -1091 -10) (1968 -1091 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151946" + "plane" "(1904 -1091 -10) (1904 -1056 -10) (1904 -1056 -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" "151945" + "plane" "(1968 -1056 -10) (1968 -1091 -10) (1968 -1091 -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" "151944" + "plane" "(1904 -1056 -10) (1968 -1056 -10) (1968 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151943" + "plane" "(1968 -1091 -10) (1904 -1091 -10) (1904 -1091 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618260" + side + { + "id" "151954" + "plane" "(1968 -1091 -8) (1968 -1056 -8) (2064 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151953" + "plane" "(1968 -1056 -10) (1968 -1091 -10) (2064 -1091 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151952" + "plane" "(1968 -1091 -10) (1968 -1056 -10) (1968 -1056 -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" "151951" + "plane" "(2064 -1056 -10) (2064 -1091 -10) (2064 -1091 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151950" + "plane" "(1968 -1056 -10) (2064 -1056 -10) (2064 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151949" + "plane" "(2064 -1091 -10) (1968 -1091 -10) (1968 -1091 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618261" + side + { + "id" "151960" + "plane" "(1504 -1091 -8) (1504 -1056 -8) (1600 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151959" + "plane" "(1504 -1056 -10) (1504 -1091 -10) (1600 -1091 -10)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151958" + "plane" "(1504 -1091 -10) (1504 -1056 -10) (1504 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -0.0019989] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151957" + "plane" "(1600 -1056 -10) (1600 -1091 -10) (1600 -1091 -8)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151956" + "plane" "(1504 -1056 -10) (1600 -1056 -10) (1600 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151955" + "plane" "(1600 -1091 -10) (1504 -1091 -10) (1504 -1091 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618262" + side + { + "id" "151966" + "plane" "(1600 -1091 -8) (1600 -1056 -8) (1664 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151965" + "plane" "(1600 -1056 -10) (1600 -1091 -10) (1664 -1091 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151964" + "plane" "(1600 -1091 -10) (1600 -1056 -10) (1600 -1056 -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" "151963" + "plane" "(1664 -1056 -10) (1664 -1091 -10) (1664 -1091 -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" "151962" + "plane" "(1600 -1056 -10) (1664 -1056 -10) (1664 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151961" + "plane" "(1664 -1091 -10) (1600 -1091 -10) (1600 -1091 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618263" + side + { + "id" "151972" + "plane" "(1664 -1091 -8) (1664 -1056 -8) (1904 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151971" + "plane" "(1664 -1056 -10) (1664 -1091 -10) (1904 -1091 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151970" + "plane" "(1664 -1091 -10) (1664 -1056 -10) (1664 -1056 -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" "151969" + "plane" "(1904 -1056 -10) (1904 -1091 -10) (1904 -1091 -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" "151968" + "plane" "(1664 -1056 -10) (1904 -1056 -10) (1904 -1056 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151967" + "plane" "(1904 -1091 -10) (1664 -1091 -10) (1664 -1091 -8)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618264" + side + { + "id" "151978" + "plane" "(1968 -1056 6) (1968 -1040 6) (2064 -1040 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151977" + "plane" "(1968 -1040 5) (1968 -1056 5) (2064 -1056 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151976" + "plane" "(1968 -1056 5) (1968 -1040 5) (1968 -1040 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151975" + "plane" "(2064 -1040 5) (2064 -1056 5) (2064 -1056 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151974" + "plane" "(1968 -1040 5) (2064 -1040 5) (2064 -1040 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151973" + "plane" "(2064 -1056 5) (1968 -1056 5) (1968 -1056 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618265" + side + { + "id" "151984" + "plane" "(1972 -1056 -8) (1972 -1052 -8) (1974 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151983" + "plane" "(1972 -1052 -10) (1972 -1056 -10) (1974 -1056 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151982" + "plane" "(1972 -1056 -10) (1972 -1052 -10) (1972 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151981" + "plane" "(1974 -1052 -10) (1974 -1056 -10) (1974 -1056 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151980" + "plane" "(1972 -1052 -10) (1974 -1052 -10) (1974 -1052 -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" "151979" + "plane" "(1974 -1056 -10) (1972 -1056 -10) (1972 -1056 -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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618266" + side + { + "id" "151990" + "plane" "(1972 -1052 5) (1972 -1050 5) (1974 -1050 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151989" + "plane" "(1972 -1050 -16) (1972 -1052 -16) (1974 -1052 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151988" + "plane" "(1972 -1052 -16) (1972 -1050 -16) (1972 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151987" + "plane" "(1974 -1050 -16) (1974 -1052 -16) (1974 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151986" + "plane" "(1972 -1050 -16) (1974 -1050 -16) (1974 -1050 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" "151985" + "plane" "(1974 -1052 -16) (1972 -1052 -16) (1972 -1052 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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618267" + side + { + "id" "151996" + "plane" "(2058 -1052 5) (2058 -1050 5) (2060 -1050 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151995" + "plane" "(2058 -1050 -16) (2058 -1052 -16) (2060 -1052 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151994" + "plane" "(2058 -1052 -16) (2058 -1050 -16) (2058 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151993" + "plane" "(2060 -1050 -16) (2060 -1052 -16) (2060 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151992" + "plane" "(2058 -1050 -16) (2060 -1050 -16) (2060 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151991" + "plane" "(2060 -1052 -16) (2058 -1052 -16) (2058 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618268" + side + { + "id" "152002" + "plane" "(2058 -1056 -8) (2058 -1052 -8) (2060 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152001" + "plane" "(2058 -1052 -10) (2058 -1056 -10) (2060 -1056 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152000" + "plane" "(2058 -1056 -10) (2058 -1052 -10) (2058 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151999" + "plane" "(2060 -1052 -10) (2060 -1056 -10) (2060 -1056 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151998" + "plane" "(2058 -1052 -10) (2060 -1052 -10) (2060 -1052 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "151997" + "plane" "(2060 -1056 -10) (2058 -1056 -10) (2058 -1056 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618269" + side + { + "id" "152008" + "plane" "(1664 -1056 6) (1664 -1040 6) (1904 -1040 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152007" + "plane" "(1664 -1040 5) (1664 -1056 5) (1904 -1056 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152006" + "plane" "(1664 -1056 5) (1664 -1040 5) (1664 -1040 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152005" + "plane" "(1904 -1040 5) (1904 -1056 5) (1904 -1056 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152004" + "plane" "(1664 -1040 5) (1904 -1040 5) (1904 -1040 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152003" + "plane" "(1904 -1056 5) (1664 -1056 5) (1664 -1056 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618270" + side + { + "id" "152014" + "plane" "(1750 -1056 -8) (1750 -1052 -8) (1752 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152013" + "plane" "(1750 -1052 -10) (1750 -1056 -10) (1752 -1056 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152012" + "plane" "(1750 -1056 -10) (1750 -1052 -10) (1750 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152011" + "plane" "(1752 -1052 -10) (1752 -1056 -10) (1752 -1056 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152010" + "plane" "(1750 -1052 -10) (1752 -1052 -10) (1752 -1052 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152009" + "plane" "(1752 -1056 -10) (1750 -1056 -10) (1750 -1056 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618271" + side + { + "id" "152020" + "plane" "(1750 -1052 5) (1750 -1050 5) (1752 -1050 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152019" + "plane" "(1750 -1050 -16) (1750 -1052 -16) (1752 -1052 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152018" + "plane" "(1750 -1052 -16) (1750 -1050 -16) (1750 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152017" + "plane" "(1752 -1050 -16) (1752 -1052 -16) (1752 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152016" + "plane" "(1750 -1050 -16) (1752 -1050 -16) (1752 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152015" + "plane" "(1752 -1052 -16) (1750 -1052 -16) (1750 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618272" + side + { + "id" "152026" + "plane" "(1898 -1052 5) (1898 -1050 5) (1900 -1050 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152025" + "plane" "(1898 -1050 -16) (1898 -1052 -16) (1900 -1052 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152024" + "plane" "(1898 -1052 -16) (1898 -1050 -16) (1898 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152023" + "plane" "(1900 -1050 -16) (1900 -1052 -16) (1900 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152022" + "plane" "(1898 -1050 -16) (1900 -1050 -16) (1900 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152021" + "plane" "(1900 -1052 -16) (1898 -1052 -16) (1898 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618273" + side + { + "id" "152032" + "plane" "(1898 -1056 -8) (1898 -1052 -8) (1900 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152031" + "plane" "(1898 -1052 -10) (1898 -1056 -10) (1900 -1056 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152030" + "plane" "(1898 -1056 -10) (1898 -1052 -10) (1898 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152029" + "plane" "(1900 -1052 -10) (1900 -1056 -10) (1900 -1056 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152028" + "plane" "(1898 -1052 -10) (1900 -1052 -10) (1900 -1052 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152027" + "plane" "(1900 -1056 -10) (1898 -1056 -10) (1898 -1056 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618274" + side + { + "id" "152038" + "plane" "(1832 -1056 -8) (1832 -1052 -8) (1834 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152037" + "plane" "(1832 -1052 -10) (1832 -1056 -10) (1834 -1056 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152036" + "plane" "(1832 -1056 -10) (1832 -1052 -10) (1832 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152035" + "plane" "(1834 -1052 -10) (1834 -1056 -10) (1834 -1056 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152034" + "plane" "(1832 -1052 -10) (1834 -1052 -10) (1834 -1052 -8)" + "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" "152033" + "plane" "(1834 -1056 -10) (1832 -1056 -10) (1832 -1056 -8)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618275" + side + { + "id" "152044" + "plane" "(1832 -1052 5) (1832 -1050 5) (1834 -1050 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152043" + "plane" "(1832 -1050 -16) (1832 -1052 -16) (1834 -1052 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152042" + "plane" "(1832 -1052 -16) (1832 -1050 -16) (1832 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152041" + "plane" "(1834 -1050 -16) (1834 -1052 -16) (1834 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152040" + "plane" "(1832 -1050 -16) (1834 -1050 -16) (1834 -1050 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" "152039" + "plane" "(1834 -1052 -16) (1832 -1052 -16) (1832 -1052 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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618276" + side + { + "id" "152050" + "plane" "(1668 -1056 -8) (1668 -1052 -8) (1670 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152049" + "plane" "(1668 -1052 -10) (1668 -1056 -10) (1670 -1056 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152048" + "plane" "(1668 -1056 -10) (1668 -1052 -10) (1668 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152047" + "plane" "(1670 -1052 -10) (1670 -1056 -10) (1670 -1056 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152046" + "plane" "(1668 -1052 -10) (1670 -1052 -10) (1670 -1052 -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" "152045" + "plane" "(1670 -1056 -10) (1668 -1056 -10) (1668 -1056 -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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618277" + side + { + "id" "152056" + "plane" "(1668 -1052 5) (1668 -1050 5) (1670 -1050 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152055" + "plane" "(1668 -1050 -16) (1668 -1052 -16) (1670 -1052 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152054" + "plane" "(1668 -1052 -16) (1668 -1050 -16) (1668 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152053" + "plane" "(1670 -1050 -16) (1670 -1052 -16) (1670 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152052" + "plane" "(1668 -1050 -16) (1670 -1050 -16) (1670 -1050 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" "152051" + "plane" "(1670 -1052 -16) (1668 -1052 -16) (1668 -1052 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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618278" + side + { + "id" "152062" + "plane" "(1504 -1056 6) (1504 -1040 6) (1600 -1040 6)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152061" + "plane" "(1504 -1040 5) (1504 -1056 5) (1600 -1056 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152060" + "plane" "(1504 -1056 5) (1504 -1040 5) (1504 -1040 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152059" + "plane" "(1600 -1040 5) (1600 -1056 5) (1600 -1056 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152058" + "plane" "(1504 -1040 5) (1600 -1040 5) (1600 -1040 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152057" + "plane" "(1600 -1056 5) (1504 -1056 5) (1504 -1056 6)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618279" + side + { + "id" "152068" + "plane" "(1508 -1056 -8) (1508 -1052 -8) (1510 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152067" + "plane" "(1508 -1052 -10) (1508 -1056 -10) (1510 -1056 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152066" + "plane" "(1508 -1056 -10) (1508 -1052 -10) (1508 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152065" + "plane" "(1510 -1052 -10) (1510 -1056 -10) (1510 -1056 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152064" + "plane" "(1508 -1052 -10) (1510 -1052 -10) (1510 -1052 -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" "152063" + "plane" "(1510 -1056 -10) (1508 -1056 -10) (1508 -1056 -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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618280" + side + { + "id" "152074" + "plane" "(1508 -1052 5) (1508 -1050 5) (1510 -1050 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152073" + "plane" "(1508 -1050 -16) (1508 -1052 -16) (1510 -1052 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152072" + "plane" "(1508 -1052 -16) (1508 -1050 -16) (1508 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152071" + "plane" "(1510 -1050 -16) (1510 -1052 -16) (1510 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152070" + "plane" "(1508 -1050 -16) (1510 -1050 -16) (1510 -1050 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" "152069" + "plane" "(1510 -1052 -16) (1508 -1052 -16) (1508 -1052 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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618281" + side + { + "id" "152080" + "plane" "(1594 -1052 5) (1594 -1050 5) (1596 -1050 5)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152079" + "plane" "(1594 -1050 -16) (1594 -1052 -16) (1596 -1052 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152078" + "plane" "(1594 -1052 -16) (1594 -1050 -16) (1594 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152077" + "plane" "(1596 -1050 -16) (1596 -1052 -16) (1596 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152076" + "plane" "(1594 -1050 -16) (1596 -1050 -16) (1596 -1050 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152075" + "plane" "(1596 -1052 -16) (1594 -1052 -16) (1594 -1052 5)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618282" + side + { + "id" "152086" + "plane" "(1594 -1056 -8) (1594 -1052 -8) (1596 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152085" + "plane" "(1594 -1052 -10) (1594 -1056 -10) (1596 -1056 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152084" + "plane" "(1594 -1056 -10) (1594 -1052 -10) (1594 -1052 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152083" + "plane" "(1596 -1052 -10) (1596 -1056 -10) (1596 -1056 -8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152082" + "plane" "(1594 -1052 -10) (1596 -1052 -10) (1596 -1052 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152081" + "plane" "(1596 -1056 -10) (1594 -1056 -10) (1594 -1056 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618283" + side + { + "id" "152092" + "plane" "(1504 -1091 2) (1504 -1089 2) (2064 -1089 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152091" + "plane" "(1504 -1089 -8) (1504 -1091 -8) (2064 -1091 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152090" + "plane" "(1504 -1091 -8) (1504 -1089 -8) (1504 -1089 2)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152089" + "plane" "(2064 -1089 -8) (2064 -1091 -8) (2064 -1091 2)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152088" + "plane" "(1504 -1089 -8) (2064 -1089 -8) (2064 -1089 2)" + "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" "152087" + "plane" "(2064 -1091 -8) (1504 -1091 -8) (1504 -1091 2)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618284" + side + { + "id" "152098" + "plane" "(1504 -1058 -10) (1504 -1056 -10) (2064 -1056 -10)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152097" + "plane" "(1504 -1056 -16) (1504 -1058 -16) (2064 -1058 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152096" + "plane" "(1504 -1058 -16) (1504 -1056 -16) (1504 -1056 -10)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152095" + "plane" "(2064 -1056 -16) (2064 -1058 -16) (2064 -1058 -10)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152094" + "plane" "(1504 -1056 -16) (2064 -1056 -16) (2064 -1056 -10)" + "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" "152093" + "plane" "(2064 -1058 -16) (1504 -1058 -16) (1504 -1058 -10)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "618285" + "classname" "func_detail" + solid + { + "id" "618286" + side + { + "id" "152104" + "plane" "(1904 -1124 4) (1904 -1089 4) (1968 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152103" + "plane" "(1904 -1089 2) (1904 -1124 2) (1968 -1124 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152102" + "plane" "(1904 -1124 2) (1904 -1089 2) (1904 -1089 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152101" + "plane" "(1968 -1089 2) (1968 -1124 2) (1968 -1124 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152100" + "plane" "(1904 -1089 2) (1968 -1089 2) (1968 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152099" + "plane" "(1968 -1124 2) (1904 -1124 2) (1904 -1124 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618287" + side + { + "id" "152110" + "plane" "(1968 -1124 4) (1968 -1089 4) (2064 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152109" + "plane" "(1968 -1089 2) (1968 -1124 2) (2064 -1124 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152108" + "plane" "(1968 -1124 2) (1968 -1089 2) (1968 -1089 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152107" + "plane" "(2064 -1089 2) (2064 -1124 2) (2064 -1124 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 -8] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152106" + "plane" "(1968 -1089 2) (2064 -1089 2) (2064 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152105" + "plane" "(2064 -1124 2) (1968 -1124 2) (1968 -1124 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618288" + side + { + "id" "152116" + "plane" "(1504 -1124 4) (1504 -1089 4) (1600 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152115" + "plane" "(1504 -1089 2) (1504 -1124 2) (1600 -1124 2)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152114" + "plane" "(1504 -1124 2) (1504 -1089 2) (1504 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 7.998] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152113" + "plane" "(1600 -1089 2) (1600 -1124 2) (1600 -1124 4)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 8] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152112" + "plane" "(1504 -1089 2) (1600 -1089 2) (1600 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152111" + "plane" "(1600 -1124 2) (1504 -1124 2) (1504 -1124 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618289" + side + { + "id" "152122" + "plane" "(1600 -1124 4) (1600 -1089 4) (1664 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152121" + "plane" "(1600 -1089 2) (1600 -1124 2) (1664 -1124 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152120" + "plane" "(1600 -1124 2) (1600 -1089 2) (1600 -1089 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152119" + "plane" "(1664 -1089 2) (1664 -1124 2) (1664 -1124 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152118" + "plane" "(1600 -1089 2) (1664 -1089 2) (1664 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152117" + "plane" "(1664 -1124 2) (1600 -1124 2) (1600 -1124 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618290" + side + { + "id" "152128" + "plane" "(1664 -1124 4) (1664 -1089 4) (1904 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152127" + "plane" "(1664 -1089 2) (1664 -1124 2) (1904 -1124 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152126" + "plane" "(1664 -1124 2) (1664 -1089 2) (1664 -1089 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152125" + "plane" "(1904 -1089 2) (1904 -1124 2) (1904 -1124 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152124" + "plane" "(1664 -1089 2) (1904 -1089 2) (1904 -1089 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152123" + "plane" "(1904 -1124 2) (1664 -1124 2) (1664 -1124 4)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618291" + side + { + "id" "152134" + "plane" "(1968 -1089 18) (1968 -1073 18) (2064 -1073 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152133" + "plane" "(1968 -1073 17) (1968 -1089 17) (2064 -1089 17)" + "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" "152132" + "plane" "(1968 -1089 17) (1968 -1073 17) (1968 -1073 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152131" + "plane" "(2064 -1073 17) (2064 -1089 17) (2064 -1089 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152130" + "plane" "(1968 -1073 17) (2064 -1073 17) (2064 -1073 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152129" + "plane" "(2064 -1089 17) (1968 -1089 17) (1968 -1089 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618292" + side + { + "id" "152140" + "plane" "(1972 -1089 4) (1972 -1085 4) (1974 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152139" + "plane" "(1972 -1085 2) (1972 -1089 2) (1974 -1089 2)" + "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" "152138" + "plane" "(1972 -1089 2) (1972 -1085 2) (1972 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152137" + "plane" "(1974 -1085 2) (1974 -1089 2) (1974 -1089 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152136" + "plane" "(1972 -1085 2) (1974 -1085 2) (1974 -1085 4)" + "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" "152135" + "plane" "(1974 -1089 2) (1972 -1089 2) (1972 -1089 4)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618293" + side + { + "id" "152146" + "plane" "(1972 -1085 17) (1972 -1083 17) (1974 -1083 17)" + "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" "152145" + "plane" "(1972 -1083 -8) (1972 -1085 -8) (1974 -1085 -8)" + "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" "152144" + "plane" "(1972 -1085 -8) (1972 -1083 -8) (1972 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152143" + "plane" "(1974 -1083 -8) (1974 -1085 -8) (1974 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152142" + "plane" "(1972 -1083 -8) (1974 -1083 -8) (1974 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152141" + "plane" "(1974 -1085 -8) (1972 -1085 -8) (1972 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618294" + side + { + "id" "152152" + "plane" "(2058 -1085 17) (2058 -1083 17) (2060 -1083 17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152151" + "plane" "(2058 -1083 -8) (2058 -1085 -8) (2060 -1085 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152150" + "plane" "(2058 -1085 -8) (2058 -1083 -8) (2058 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152149" + "plane" "(2060 -1083 -8) (2060 -1085 -8) (2060 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152148" + "plane" "(2058 -1083 -8) (2060 -1083 -8) (2060 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152147" + "plane" "(2060 -1085 -8) (2058 -1085 -8) (2058 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618295" + side + { + "id" "152158" + "plane" "(2058 -1089 4) (2058 -1085 4) (2060 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152157" + "plane" "(2058 -1085 2) (2058 -1089 2) (2060 -1089 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152156" + "plane" "(2058 -1089 2) (2058 -1085 2) (2058 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152155" + "plane" "(2060 -1085 2) (2060 -1089 2) (2060 -1089 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152154" + "plane" "(2058 -1085 2) (2060 -1085 2) (2060 -1085 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152153" + "plane" "(2060 -1089 2) (2058 -1089 2) (2058 -1089 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618296" + side + { + "id" "152164" + "plane" "(1664 -1089 18) (1664 -1073 18) (1904 -1073 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152163" + "plane" "(1664 -1073 17) (1664 -1089 17) (1904 -1089 17)" + "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" "152162" + "plane" "(1664 -1089 17) (1664 -1073 17) (1664 -1073 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152161" + "plane" "(1904 -1073 17) (1904 -1089 17) (1904 -1089 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152160" + "plane" "(1664 -1073 17) (1904 -1073 17) (1904 -1073 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152159" + "plane" "(1904 -1089 17) (1664 -1089 17) (1664 -1089 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618297" + side + { + "id" "152170" + "plane" "(1750 -1089 4) (1750 -1085 4) (1752 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152169" + "plane" "(1750 -1085 2) (1750 -1089 2) (1752 -1089 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152168" + "plane" "(1750 -1089 2) (1750 -1085 2) (1750 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152167" + "plane" "(1752 -1085 2) (1752 -1089 2) (1752 -1089 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152166" + "plane" "(1750 -1085 2) (1752 -1085 2) (1752 -1085 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152165" + "plane" "(1752 -1089 2) (1750 -1089 2) (1750 -1089 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618298" + side + { + "id" "152176" + "plane" "(1750 -1085 17) (1750 -1083 17) (1752 -1083 17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152175" + "plane" "(1750 -1083 -8) (1750 -1085 -8) (1752 -1085 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152174" + "plane" "(1750 -1085 -8) (1750 -1083 -8) (1750 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152173" + "plane" "(1752 -1083 -8) (1752 -1085 -8) (1752 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152172" + "plane" "(1750 -1083 -8) (1752 -1083 -8) (1752 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152171" + "plane" "(1752 -1085 -8) (1750 -1085 -8) (1750 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618299" + side + { + "id" "152182" + "plane" "(1898 -1085 17) (1898 -1083 17) (1900 -1083 17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152181" + "plane" "(1898 -1083 -8) (1898 -1085 -8) (1900 -1085 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152180" + "plane" "(1898 -1085 -8) (1898 -1083 -8) (1898 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152179" + "plane" "(1900 -1083 -8) (1900 -1085 -8) (1900 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152178" + "plane" "(1898 -1083 -8) (1900 -1083 -8) (1900 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152177" + "plane" "(1900 -1085 -8) (1898 -1085 -8) (1898 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618300" + side + { + "id" "152188" + "plane" "(1898 -1089 4) (1898 -1085 4) (1900 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152187" + "plane" "(1898 -1085 2) (1898 -1089 2) (1900 -1089 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152186" + "plane" "(1898 -1089 2) (1898 -1085 2) (1898 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152185" + "plane" "(1900 -1085 2) (1900 -1089 2) (1900 -1089 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152184" + "plane" "(1898 -1085 2) (1900 -1085 2) (1900 -1085 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152183" + "plane" "(1900 -1089 2) (1898 -1089 2) (1898 -1089 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618301" + side + { + "id" "152194" + "plane" "(1832 -1089 4) (1832 -1085 4) (1834 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152193" + "plane" "(1832 -1085 2) (1832 -1089 2) (1834 -1089 2)" + "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" "152192" + "plane" "(1832 -1089 2) (1832 -1085 2) (1832 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152191" + "plane" "(1834 -1085 2) (1834 -1089 2) (1834 -1089 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152190" + "plane" "(1832 -1085 2) (1834 -1085 2) (1834 -1085 4)" + "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" "152189" + "plane" "(1834 -1089 2) (1832 -1089 2) (1832 -1089 4)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618302" + side + { + "id" "152200" + "plane" "(1832 -1085 17) (1832 -1083 17) (1834 -1083 17)" + "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" "152199" + "plane" "(1832 -1083 -8) (1832 -1085 -8) (1834 -1085 -8)" + "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" "152198" + "plane" "(1832 -1085 -8) (1832 -1083 -8) (1832 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152197" + "plane" "(1834 -1083 -8) (1834 -1085 -8) (1834 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152196" + "plane" "(1832 -1083 -8) (1834 -1083 -8) (1834 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152195" + "plane" "(1834 -1085 -8) (1832 -1085 -8) (1832 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618303" + side + { + "id" "152206" + "plane" "(1668 -1089 4) (1668 -1085 4) (1670 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152205" + "plane" "(1668 -1085 2) (1668 -1089 2) (1670 -1089 2)" + "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" "152204" + "plane" "(1668 -1089 2) (1668 -1085 2) (1668 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152203" + "plane" "(1670 -1085 2) (1670 -1089 2) (1670 -1089 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152202" + "plane" "(1668 -1085 2) (1670 -1085 2) (1670 -1085 4)" + "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" "152201" + "plane" "(1670 -1089 2) (1668 -1089 2) (1668 -1089 4)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618304" + side + { + "id" "152212" + "plane" "(1668 -1085 17) (1668 -1083 17) (1670 -1083 17)" + "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" "152211" + "plane" "(1668 -1083 -8) (1668 -1085 -8) (1670 -1085 -8)" + "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" "152210" + "plane" "(1668 -1085 -8) (1668 -1083 -8) (1668 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152209" + "plane" "(1670 -1083 -8) (1670 -1085 -8) (1670 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152208" + "plane" "(1668 -1083 -8) (1670 -1083 -8) (1670 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152207" + "plane" "(1670 -1085 -8) (1668 -1085 -8) (1668 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618305" + side + { + "id" "152218" + "plane" "(1504 -1089 18) (1504 -1073 18) (1600 -1073 18)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152217" + "plane" "(1504 -1073 17) (1504 -1089 17) (1600 -1089 17)" + "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" "152216" + "plane" "(1504 -1089 17) (1504 -1073 17) (1504 -1073 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152215" + "plane" "(1600 -1073 17) (1600 -1089 17) (1600 -1089 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152214" + "plane" "(1504 -1073 17) (1600 -1073 17) (1600 -1073 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152213" + "plane" "(1600 -1089 17) (1504 -1089 17) (1504 -1089 18)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618306" + side + { + "id" "152224" + "plane" "(1508 -1089 4) (1508 -1085 4) (1510 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152223" + "plane" "(1508 -1085 2) (1508 -1089 2) (1510 -1089 2)" + "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" "152222" + "plane" "(1508 -1089 2) (1508 -1085 2) (1508 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152221" + "plane" "(1510 -1085 2) (1510 -1089 2) (1510 -1089 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152220" + "plane" "(1508 -1085 2) (1510 -1085 2) (1510 -1085 4)" + "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" "152219" + "plane" "(1510 -1089 2) (1508 -1089 2) (1508 -1089 4)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618307" + side + { + "id" "152230" + "plane" "(1508 -1085 17) (1508 -1083 17) (1510 -1083 17)" + "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" "152229" + "plane" "(1508 -1083 -8) (1508 -1085 -8) (1510 -1085 -8)" + "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" "152228" + "plane" "(1508 -1085 -8) (1508 -1083 -8) (1508 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152227" + "plane" "(1510 -1083 -8) (1510 -1085 -8) (1510 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152226" + "plane" "(1508 -1083 -8) (1510 -1083 -8) (1510 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152225" + "plane" "(1510 -1085 -8) (1508 -1085 -8) (1508 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618308" + side + { + "id" "152236" + "plane" "(1594 -1085 17) (1594 -1083 17) (1596 -1083 17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152235" + "plane" "(1594 -1083 -8) (1594 -1085 -8) (1596 -1085 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152234" + "plane" "(1594 -1085 -8) (1594 -1083 -8) (1594 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152233" + "plane" "(1596 -1083 -8) (1596 -1085 -8) (1596 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152232" + "plane" "(1594 -1083 -8) (1596 -1083 -8) (1596 -1083 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152231" + "plane" "(1596 -1085 -8) (1594 -1085 -8) (1594 -1085 17)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618309" + side + { + "id" "152242" + "plane" "(1594 -1089 4) (1594 -1085 4) (1596 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152241" + "plane" "(1594 -1085 2) (1594 -1089 2) (1596 -1089 2)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152240" + "plane" "(1594 -1089 2) (1594 -1085 2) (1594 -1085 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152239" + "plane" "(1596 -1085 2) (1596 -1089 2) (1596 -1089 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152238" + "plane" "(1594 -1085 2) (1596 -1085 2) (1596 -1085 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152237" + "plane" "(1596 -1089 2) (1594 -1089 2) (1594 -1089 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618310" + side + { + "id" "152248" + "plane" "(1504 -1124 14) (1504 -1122 14) (2064 -1122 14)" + "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" "152247" + "plane" "(1504 -1122 4) (1504 -1124 4) (2064 -1124 4)" + "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" "152246" + "plane" "(1504 -1124 4) (1504 -1122 4) (1504 -1122 14)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152245" + "plane" "(2064 -1122 4) (2064 -1124 4) (2064 -1124 14)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152244" + "plane" "(1504 -1122 4) (2064 -1122 4) (2064 -1122 14)" + "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" "152243" + "plane" "(2064 -1124 4) (1504 -1124 4) (1504 -1124 14)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "618311" + "classname" "func_detail" + solid + { + "id" "618312" + side + { + "id" "152254" + "plane" "(1904 -1157 16) (1904 -1122 16) (1968 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152253" + "plane" "(1904 -1122 14) (1904 -1157 14) (1968 -1157 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152252" + "plane" "(1904 -1157 14) (1904 -1122 14) (1904 -1122 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152251" + "plane" "(1968 -1122 14) (1968 -1157 14) (1968 -1157 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152250" + "plane" "(1904 -1122 14) (1968 -1122 14) (1968 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152249" + "plane" "(1968 -1157 14) (1904 -1157 14) (1904 -1157 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618313" + side + { + "id" "152260" + "plane" "(1968 -1157 16) (1968 -1122 16) (2064 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152259" + "plane" "(1968 -1122 14) (1968 -1157 14) (2064 -1157 14)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152258" + "plane" "(1968 -1157 14) (1968 -1122 14) (1968 -1122 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152257" + "plane" "(2064 -1122 14) (2064 -1157 14) (2064 -1157 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 112] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152256" + "plane" "(1968 -1122 14) (2064 -1122 14) (2064 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152255" + "plane" "(2064 -1157 14) (1968 -1157 14) (1968 -1157 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618314" + side + { + "id" "152266" + "plane" "(1504 -1157 16) (1504 -1122 16) (1600 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152265" + "plane" "(1504 -1122 14) (1504 -1157 14) (1600 -1157 14)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152264" + "plane" "(1504 -1157 14) (1504 -1122 14) (1504 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -112.002] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152263" + "plane" "(1600 -1122 14) (1600 -1157 14) (1600 -1157 16)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -112] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152262" + "plane" "(1504 -1122 14) (1600 -1122 14) (1600 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152261" + "plane" "(1600 -1157 14) (1504 -1157 14) (1504 -1157 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618315" + side + { + "id" "152272" + "plane" "(1600 -1157 16) (1600 -1122 16) (1664 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152271" + "plane" "(1600 -1122 14) (1600 -1157 14) (1664 -1157 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152270" + "plane" "(1600 -1157 14) (1600 -1122 14) (1600 -1122 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152269" + "plane" "(1664 -1122 14) (1664 -1157 14) (1664 -1157 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152268" + "plane" "(1600 -1122 14) (1664 -1122 14) (1664 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152267" + "plane" "(1664 -1157 14) (1600 -1157 14) (1600 -1157 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618316" + side + { + "id" "152278" + "plane" "(1664 -1157 16) (1664 -1122 16) (1904 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152277" + "plane" "(1664 -1122 14) (1664 -1157 14) (1904 -1157 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152276" + "plane" "(1664 -1157 14) (1664 -1122 14) (1664 -1122 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152275" + "plane" "(1904 -1122 14) (1904 -1157 14) (1904 -1157 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -56] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152274" + "plane" "(1664 -1122 14) (1904 -1122 14) (1904 -1122 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152273" + "plane" "(1904 -1157 14) (1664 -1157 14) (1664 -1157 16)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618317" + side + { + "id" "152284" + "plane" "(1968 -1122 30) (1968 -1106 30) (2064 -1106 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152283" + "plane" "(1968 -1106 29) (1968 -1122 29) (2064 -1122 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152282" + "plane" "(1968 -1122 29) (1968 -1106 29) (1968 -1106 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152281" + "plane" "(2064 -1106 29) (2064 -1122 29) (2064 -1122 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152280" + "plane" "(1968 -1106 29) (2064 -1106 29) (2064 -1106 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152279" + "plane" "(2064 -1122 29) (1968 -1122 29) (1968 -1122 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618318" + side + { + "id" "152290" + "plane" "(1972 -1122 16) (1972 -1118 16) (1974 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152289" + "plane" "(1972 -1118 14) (1972 -1122 14) (1974 -1122 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152288" + "plane" "(1972 -1122 14) (1972 -1118 14) (1972 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152287" + "plane" "(1974 -1118 14) (1974 -1122 14) (1974 -1122 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152286" + "plane" "(1972 -1118 14) (1974 -1118 14) (1974 -1118 16)" + "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" "152285" + "plane" "(1974 -1122 14) (1972 -1122 14) (1972 -1122 16)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618319" + side + { + "id" "152296" + "plane" "(1972 -1118 29) (1972 -1116 29) (1974 -1116 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152295" + "plane" "(1972 -1116 4) (1972 -1118 4) (1974 -1118 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152294" + "plane" "(1972 -1118 4) (1972 -1116 4) (1972 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152293" + "plane" "(1974 -1116 4) (1974 -1118 4) (1974 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152292" + "plane" "(1972 -1116 4) (1974 -1116 4) (1974 -1116 29)" + "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" "152291" + "plane" "(1974 -1118 4) (1972 -1118 4) (1972 -1118 29)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618320" + side + { + "id" "152302" + "plane" "(2058 -1118 29) (2058 -1116 29) (2060 -1116 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152301" + "plane" "(2058 -1116 4) (2058 -1118 4) (2060 -1118 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152300" + "plane" "(2058 -1118 4) (2058 -1116 4) (2058 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152299" + "plane" "(2060 -1116 4) (2060 -1118 4) (2060 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152298" + "plane" "(2058 -1116 4) (2060 -1116 4) (2060 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152297" + "plane" "(2060 -1118 4) (2058 -1118 4) (2058 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618321" + side + { + "id" "152308" + "plane" "(2058 -1122 16) (2058 -1118 16) (2060 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152307" + "plane" "(2058 -1118 14) (2058 -1122 14) (2060 -1122 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152306" + "plane" "(2058 -1122 14) (2058 -1118 14) (2058 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152305" + "plane" "(2060 -1118 14) (2060 -1122 14) (2060 -1122 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152304" + "plane" "(2058 -1118 14) (2060 -1118 14) (2060 -1118 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152303" + "plane" "(2060 -1122 14) (2058 -1122 14) (2058 -1122 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618322" + side + { + "id" "152314" + "plane" "(1664 -1122 30) (1664 -1106 30) (1904 -1106 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152313" + "plane" "(1664 -1106 29) (1664 -1122 29) (1904 -1122 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152312" + "plane" "(1664 -1122 29) (1664 -1106 29) (1664 -1106 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152311" + "plane" "(1904 -1106 29) (1904 -1122 29) (1904 -1122 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152310" + "plane" "(1664 -1106 29) (1904 -1106 29) (1904 -1106 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152309" + "plane" "(1904 -1122 29) (1664 -1122 29) (1664 -1122 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618323" + side + { + "id" "152320" + "plane" "(1750 -1122 16) (1750 -1118 16) (1752 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152319" + "plane" "(1750 -1118 14) (1750 -1122 14) (1752 -1122 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152318" + "plane" "(1750 -1122 14) (1750 -1118 14) (1750 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152317" + "plane" "(1752 -1118 14) (1752 -1122 14) (1752 -1122 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152316" + "plane" "(1750 -1118 14) (1752 -1118 14) (1752 -1118 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152315" + "plane" "(1752 -1122 14) (1750 -1122 14) (1750 -1122 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618324" + side + { + "id" "152326" + "plane" "(1750 -1118 29) (1750 -1116 29) (1752 -1116 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152325" + "plane" "(1750 -1116 4) (1750 -1118 4) (1752 -1118 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152324" + "plane" "(1750 -1118 4) (1750 -1116 4) (1750 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152323" + "plane" "(1752 -1116 4) (1752 -1118 4) (1752 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152322" + "plane" "(1750 -1116 4) (1752 -1116 4) (1752 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152321" + "plane" "(1752 -1118 4) (1750 -1118 4) (1750 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618325" + side + { + "id" "152332" + "plane" "(1898 -1118 29) (1898 -1116 29) (1900 -1116 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152331" + "plane" "(1898 -1116 4) (1898 -1118 4) (1900 -1118 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152330" + "plane" "(1898 -1118 4) (1898 -1116 4) (1898 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152329" + "plane" "(1900 -1116 4) (1900 -1118 4) (1900 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152328" + "plane" "(1898 -1116 4) (1900 -1116 4) (1900 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152327" + "plane" "(1900 -1118 4) (1898 -1118 4) (1898 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618326" + side + { + "id" "152338" + "plane" "(1898 -1122 16) (1898 -1118 16) (1900 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152337" + "plane" "(1898 -1118 14) (1898 -1122 14) (1900 -1122 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152336" + "plane" "(1898 -1122 14) (1898 -1118 14) (1898 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152335" + "plane" "(1900 -1118 14) (1900 -1122 14) (1900 -1122 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152334" + "plane" "(1898 -1118 14) (1900 -1118 14) (1900 -1118 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152333" + "plane" "(1900 -1122 14) (1898 -1122 14) (1898 -1122 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618327" + side + { + "id" "152344" + "plane" "(1832 -1122 16) (1832 -1118 16) (1834 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152343" + "plane" "(1832 -1118 14) (1832 -1122 14) (1834 -1122 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152342" + "plane" "(1832 -1122 14) (1832 -1118 14) (1832 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152341" + "plane" "(1834 -1118 14) (1834 -1122 14) (1834 -1122 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152340" + "plane" "(1832 -1118 14) (1834 -1118 14) (1834 -1118 16)" + "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" "152339" + "plane" "(1834 -1122 14) (1832 -1122 14) (1832 -1122 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618328" + side + { + "id" "152350" + "plane" "(1832 -1118 29) (1832 -1116 29) (1834 -1116 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152349" + "plane" "(1832 -1116 4) (1832 -1118 4) (1834 -1118 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152348" + "plane" "(1832 -1118 4) (1832 -1116 4) (1832 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152347" + "plane" "(1834 -1116 4) (1834 -1118 4) (1834 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152346" + "plane" "(1832 -1116 4) (1834 -1116 4) (1834 -1116 29)" + "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" "152345" + "plane" "(1834 -1118 4) (1832 -1118 4) (1832 -1118 29)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618329" + side + { + "id" "152356" + "plane" "(1668 -1122 16) (1668 -1118 16) (1670 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152355" + "plane" "(1668 -1118 14) (1668 -1122 14) (1670 -1122 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152354" + "plane" "(1668 -1122 14) (1668 -1118 14) (1668 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152353" + "plane" "(1670 -1118 14) (1670 -1122 14) (1670 -1122 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152352" + "plane" "(1668 -1118 14) (1670 -1118 14) (1670 -1118 16)" + "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" "152351" + "plane" "(1670 -1122 14) (1668 -1122 14) (1668 -1122 16)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618330" + side + { + "id" "152362" + "plane" "(1668 -1118 29) (1668 -1116 29) (1670 -1116 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152361" + "plane" "(1668 -1116 4) (1668 -1118 4) (1670 -1118 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152360" + "plane" "(1668 -1118 4) (1668 -1116 4) (1668 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152359" + "plane" "(1670 -1116 4) (1670 -1118 4) (1670 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152358" + "plane" "(1668 -1116 4) (1670 -1116 4) (1670 -1116 29)" + "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" "152357" + "plane" "(1670 -1118 4) (1668 -1118 4) (1668 -1118 29)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618331" + side + { + "id" "152368" + "plane" "(1504 -1122 30) (1504 -1106 30) (1600 -1106 30)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152367" + "plane" "(1504 -1106 29) (1504 -1122 29) (1600 -1122 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152366" + "plane" "(1504 -1122 29) (1504 -1106 29) (1504 -1106 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152365" + "plane" "(1600 -1106 29) (1600 -1122 29) (1600 -1122 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152364" + "plane" "(1504 -1106 29) (1600 -1106 29) (1600 -1106 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152363" + "plane" "(1600 -1122 29) (1504 -1122 29) (1504 -1122 30)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618332" + side + { + "id" "152374" + "plane" "(1508 -1122 16) (1508 -1118 16) (1510 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152373" + "plane" "(1508 -1118 14) (1508 -1122 14) (1510 -1122 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152372" + "plane" "(1508 -1122 14) (1508 -1118 14) (1508 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152371" + "plane" "(1510 -1118 14) (1510 -1122 14) (1510 -1122 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152370" + "plane" "(1508 -1118 14) (1510 -1118 14) (1510 -1118 16)" + "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" "152369" + "plane" "(1510 -1122 14) (1508 -1122 14) (1508 -1122 16)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618333" + side + { + "id" "152380" + "plane" "(1508 -1118 29) (1508 -1116 29) (1510 -1116 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152379" + "plane" "(1508 -1116 4) (1508 -1118 4) (1510 -1118 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152378" + "plane" "(1508 -1118 4) (1508 -1116 4) (1508 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152377" + "plane" "(1510 -1116 4) (1510 -1118 4) (1510 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152376" + "plane" "(1508 -1116 4) (1510 -1116 4) (1510 -1116 29)" + "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" "152375" + "plane" "(1510 -1118 4) (1508 -1118 4) (1508 -1118 29)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618334" + side + { + "id" "152386" + "plane" "(1594 -1118 29) (1594 -1116 29) (1596 -1116 29)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152385" + "plane" "(1594 -1116 4) (1594 -1118 4) (1596 -1118 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152384" + "plane" "(1594 -1118 4) (1594 -1116 4) (1594 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152383" + "plane" "(1596 -1116 4) (1596 -1118 4) (1596 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152382" + "plane" "(1594 -1116 4) (1596 -1116 4) (1596 -1116 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152381" + "plane" "(1596 -1118 4) (1594 -1118 4) (1594 -1118 29)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618335" + side + { + "id" "152392" + "plane" "(1594 -1122 16) (1594 -1118 16) (1596 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152391" + "plane" "(1594 -1118 14) (1594 -1122 14) (1596 -1122 14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152390" + "plane" "(1594 -1122 14) (1594 -1118 14) (1594 -1118 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152389" + "plane" "(1596 -1118 14) (1596 -1122 14) (1596 -1122 16)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152388" + "plane" "(1594 -1118 14) (1596 -1118 14) (1596 -1118 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152387" + "plane" "(1596 -1122 14) (1594 -1122 14) (1594 -1122 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618336" + side + { + "id" "152398" + "plane" "(1504 -1157 26) (1504 -1155 26) (2064 -1155 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152397" + "plane" "(1504 -1155 16) (1504 -1157 16) (2064 -1157 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152396" + "plane" "(1504 -1157 16) (1504 -1155 16) (1504 -1155 26)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152395" + "plane" "(2064 -1155 16) (2064 -1157 16) (2064 -1157 26)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152394" + "plane" "(1504 -1155 16) (2064 -1155 16) (2064 -1155 26)" + "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" "152393" + "plane" "(2064 -1157 16) (1504 -1157 16) (1504 -1157 26)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "618337" + "classname" "func_detail" + solid + { + "id" "618338" + side + { + "id" "152404" + "plane" "(1904 -1190 28) (1904 -1155 28) (1968 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152403" + "plane" "(1904 -1155 26) (1904 -1190 26) (1968 -1190 26)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152402" + "plane" "(1904 -1190 26) (1904 -1155 26) (1904 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 52] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152401" + "plane" "(1968 -1155 26) (1968 -1190 26) (1968 -1190 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152400" + "plane" "(1904 -1155 26) (1968 -1155 26) (1968 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152399" + "plane" "(1968 -1190 26) (1904 -1190 26) (1904 -1190 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618339" + side + { + "id" "152410" + "plane" "(1968 -1190 28) (1968 -1155 28) (2064 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152409" + "plane" "(1968 -1155 26) (1968 -1190 26) (2064 -1190 26)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152408" + "plane" "(1968 -1190 26) (1968 -1155 26) (1968 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 52] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152407" + "plane" "(2064 -1155 26) (2064 -1190 26) (2064 -1190 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 104] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152406" + "plane" "(1968 -1155 26) (2064 -1155 26) (2064 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152405" + "plane" "(2064 -1190 26) (1968 -1190 26) (1968 -1190 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618340" + side + { + "id" "152416" + "plane" "(1504 -1190 28) (1504 -1155 28) (1600 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152415" + "plane" "(1504 -1155 26) (1504 -1190 26) (1600 -1190 26)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152414" + "plane" "(1504 -1190 26) (1504 -1155 26) (1504 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -104.002] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152413" + "plane" "(1600 -1155 26) (1600 -1190 26) (1600 -1190 28)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -104] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152412" + "plane" "(1504 -1155 26) (1600 -1155 26) (1600 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152411" + "plane" "(1600 -1190 26) (1504 -1190 26) (1504 -1190 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618341" + side + { + "id" "152422" + "plane" "(1600 -1190 28) (1600 -1155 28) (1664 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152421" + "plane" "(1600 -1155 26) (1600 -1190 26) (1664 -1190 26)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152420" + "plane" "(1600 -1190 26) (1600 -1155 26) (1600 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 52] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152419" + "plane" "(1664 -1155 26) (1664 -1190 26) (1664 -1190 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152418" + "plane" "(1600 -1155 26) (1664 -1155 26) (1664 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152417" + "plane" "(1664 -1190 26) (1600 -1190 26) (1600 -1190 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618342" + side + { + "id" "152428" + "plane" "(1664 -1190 28) (1664 -1155 28) (1904 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 104] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152427" + "plane" "(1664 -1155 26) (1664 -1190 26) (1904 -1190 26)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152426" + "plane" "(1664 -1190 26) (1664 -1155 26) (1664 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 52] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152425" + "plane" "(1904 -1155 26) (1904 -1190 26) (1904 -1190 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -52] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152424" + "plane" "(1664 -1155 26) (1904 -1155 26) (1904 -1155 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152423" + "plane" "(1904 -1190 26) (1664 -1190 26) (1664 -1190 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618343" + side + { + "id" "152434" + "plane" "(1968 -1155 42) (1968 -1139 42) (2064 -1139 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152433" + "plane" "(1968 -1139 41) (1968 -1155 41) (2064 -1155 41)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152432" + "plane" "(1968 -1155 41) (1968 -1139 41) (1968 -1139 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152431" + "plane" "(2064 -1139 41) (2064 -1155 41) (2064 -1155 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152430" + "plane" "(1968 -1139 41) (2064 -1139 41) (2064 -1139 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152429" + "plane" "(2064 -1155 41) (1968 -1155 41) (1968 -1155 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618344" + side + { + "id" "152440" + "plane" "(1972 -1155 28) (1972 -1151 28) (1974 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152439" + "plane" "(1972 -1151 26) (1972 -1155 26) (1974 -1155 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152438" + "plane" "(1972 -1155 26) (1972 -1151 26) (1972 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152437" + "plane" "(1974 -1151 26) (1974 -1155 26) (1974 -1155 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152436" + "plane" "(1972 -1151 26) (1974 -1151 26) (1974 -1151 28)" + "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" "152435" + "plane" "(1974 -1155 26) (1972 -1155 26) (1972 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618345" + side + { + "id" "152446" + "plane" "(1972 -1151 41) (1972 -1149 41) (1974 -1149 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152445" + "plane" "(1972 -1149 16) (1972 -1151 16) (1974 -1151 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152444" + "plane" "(1972 -1151 16) (1972 -1149 16) (1972 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152443" + "plane" "(1974 -1149 16) (1974 -1151 16) (1974 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152442" + "plane" "(1972 -1149 16) (1974 -1149 16) (1974 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152441" + "plane" "(1974 -1151 16) (1972 -1151 16) (1972 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618346" + side + { + "id" "152452" + "plane" "(2058 -1151 41) (2058 -1149 41) (2060 -1149 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152451" + "plane" "(2058 -1149 16) (2058 -1151 16) (2060 -1151 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152450" + "plane" "(2058 -1151 16) (2058 -1149 16) (2058 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152449" + "plane" "(2060 -1149 16) (2060 -1151 16) (2060 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152448" + "plane" "(2058 -1149 16) (2060 -1149 16) (2060 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152447" + "plane" "(2060 -1151 16) (2058 -1151 16) (2058 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618347" + side + { + "id" "152458" + "plane" "(2058 -1155 28) (2058 -1151 28) (2060 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152457" + "plane" "(2058 -1151 26) (2058 -1155 26) (2060 -1155 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152456" + "plane" "(2058 -1155 26) (2058 -1151 26) (2058 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152455" + "plane" "(2060 -1151 26) (2060 -1155 26) (2060 -1155 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152454" + "plane" "(2058 -1151 26) (2060 -1151 26) (2060 -1151 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152453" + "plane" "(2060 -1155 26) (2058 -1155 26) (2058 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618348" + side + { + "id" "152464" + "plane" "(1664 -1155 42) (1664 -1139 42) (1904 -1139 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152463" + "plane" "(1664 -1139 41) (1664 -1155 41) (1904 -1155 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152462" + "plane" "(1664 -1155 41) (1664 -1139 41) (1664 -1139 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152461" + "plane" "(1904 -1139 41) (1904 -1155 41) (1904 -1155 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152460" + "plane" "(1664 -1139 41) (1904 -1139 41) (1904 -1139 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152459" + "plane" "(1904 -1155 41) (1664 -1155 41) (1664 -1155 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618349" + side + { + "id" "152470" + "plane" "(1750 -1155 28) (1750 -1151 28) (1752 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152469" + "plane" "(1750 -1151 26) (1750 -1155 26) (1752 -1155 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152468" + "plane" "(1750 -1155 26) (1750 -1151 26) (1750 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152467" + "plane" "(1752 -1151 26) (1752 -1155 26) (1752 -1155 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152466" + "plane" "(1750 -1151 26) (1752 -1151 26) (1752 -1151 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152465" + "plane" "(1752 -1155 26) (1750 -1155 26) (1750 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618350" + side + { + "id" "152476" + "plane" "(1750 -1151 41) (1750 -1149 41) (1752 -1149 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152475" + "plane" "(1750 -1149 16) (1750 -1151 16) (1752 -1151 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152474" + "plane" "(1750 -1151 16) (1750 -1149 16) (1750 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152473" + "plane" "(1752 -1149 16) (1752 -1151 16) (1752 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152472" + "plane" "(1750 -1149 16) (1752 -1149 16) (1752 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152471" + "plane" "(1752 -1151 16) (1750 -1151 16) (1750 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618351" + side + { + "id" "152482" + "plane" "(1898 -1151 41) (1898 -1149 41) (1900 -1149 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152481" + "plane" "(1898 -1149 16) (1898 -1151 16) (1900 -1151 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152480" + "plane" "(1898 -1151 16) (1898 -1149 16) (1898 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152479" + "plane" "(1900 -1149 16) (1900 -1151 16) (1900 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152478" + "plane" "(1898 -1149 16) (1900 -1149 16) (1900 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152477" + "plane" "(1900 -1151 16) (1898 -1151 16) (1898 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618352" + side + { + "id" "152488" + "plane" "(1898 -1155 28) (1898 -1151 28) (1900 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152487" + "plane" "(1898 -1151 26) (1898 -1155 26) (1900 -1155 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152486" + "plane" "(1898 -1155 26) (1898 -1151 26) (1898 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152485" + "plane" "(1900 -1151 26) (1900 -1155 26) (1900 -1155 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152484" + "plane" "(1898 -1151 26) (1900 -1151 26) (1900 -1151 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152483" + "plane" "(1900 -1155 26) (1898 -1155 26) (1898 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618353" + side + { + "id" "152494" + "plane" "(1832 -1155 28) (1832 -1151 28) (1834 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152493" + "plane" "(1832 -1151 26) (1832 -1155 26) (1834 -1155 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152492" + "plane" "(1832 -1155 26) (1832 -1151 26) (1832 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152491" + "plane" "(1834 -1151 26) (1834 -1155 26) (1834 -1155 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152490" + "plane" "(1832 -1151 26) (1834 -1151 26) (1834 -1151 28)" + "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" "152489" + "plane" "(1834 -1155 26) (1832 -1155 26) (1832 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618354" + side + { + "id" "152500" + "plane" "(1832 -1151 41) (1832 -1149 41) (1834 -1149 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152499" + "plane" "(1832 -1149 16) (1832 -1151 16) (1834 -1151 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152498" + "plane" "(1832 -1151 16) (1832 -1149 16) (1832 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152497" + "plane" "(1834 -1149 16) (1834 -1151 16) (1834 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152496" + "plane" "(1832 -1149 16) (1834 -1149 16) (1834 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152495" + "plane" "(1834 -1151 16) (1832 -1151 16) (1832 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618355" + side + { + "id" "152506" + "plane" "(1668 -1155 28) (1668 -1151 28) (1670 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152505" + "plane" "(1668 -1151 26) (1668 -1155 26) (1670 -1155 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152504" + "plane" "(1668 -1155 26) (1668 -1151 26) (1668 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152503" + "plane" "(1670 -1151 26) (1670 -1155 26) (1670 -1155 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152502" + "plane" "(1668 -1151 26) (1670 -1151 26) (1670 -1151 28)" + "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" "152501" + "plane" "(1670 -1155 26) (1668 -1155 26) (1668 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618356" + side + { + "id" "152512" + "plane" "(1668 -1151 41) (1668 -1149 41) (1670 -1149 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152511" + "plane" "(1668 -1149 16) (1668 -1151 16) (1670 -1151 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152510" + "plane" "(1668 -1151 16) (1668 -1149 16) (1668 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152509" + "plane" "(1670 -1149 16) (1670 -1151 16) (1670 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152508" + "plane" "(1668 -1149 16) (1670 -1149 16) (1670 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152507" + "plane" "(1670 -1151 16) (1668 -1151 16) (1668 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618357" + side + { + "id" "152518" + "plane" "(1504 -1155 42) (1504 -1139 42) (1600 -1139 42)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152517" + "plane" "(1504 -1139 41) (1504 -1155 41) (1600 -1155 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152516" + "plane" "(1504 -1155 41) (1504 -1139 41) (1504 -1139 42)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 0 1 728] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152515" + "plane" "(1600 -1139 41) (1600 -1155 41) (1600 -1155 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152514" + "plane" "(1504 -1139 41) (1600 -1139 41) (1600 -1139 42)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152513" + "plane" "(1600 -1155 41) (1504 -1155 41) (1504 -1155 42)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 784] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618358" + side + { + "id" "152524" + "plane" "(1508 -1155 28) (1508 -1151 28) (1510 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152523" + "plane" "(1508 -1151 26) (1508 -1155 26) (1510 -1155 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152522" + "plane" "(1508 -1155 26) (1508 -1151 26) (1508 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152521" + "plane" "(1510 -1151 26) (1510 -1155 26) (1510 -1155 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152520" + "plane" "(1508 -1151 26) (1510 -1151 26) (1510 -1151 28)" + "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" "152519" + "plane" "(1510 -1155 26) (1508 -1155 26) (1508 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618359" + side + { + "id" "152530" + "plane" "(1508 -1151 41) (1508 -1149 41) (1510 -1149 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152529" + "plane" "(1508 -1149 16) (1508 -1151 16) (1510 -1151 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152528" + "plane" "(1508 -1151 16) (1508 -1149 16) (1508 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152527" + "plane" "(1510 -1149 16) (1510 -1151 16) (1510 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152526" + "plane" "(1508 -1149 16) (1510 -1149 16) (1510 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152525" + "plane" "(1510 -1151 16) (1508 -1151 16) (1508 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618360" + side + { + "id" "152536" + "plane" "(1594 -1151 41) (1594 -1149 41) (1596 -1149 41)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152535" + "plane" "(1594 -1149 16) (1594 -1151 16) (1596 -1151 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152534" + "plane" "(1594 -1151 16) (1594 -1149 16) (1594 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152533" + "plane" "(1596 -1149 16) (1596 -1151 16) (1596 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152532" + "plane" "(1594 -1149 16) (1596 -1149 16) (1596 -1149 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152531" + "plane" "(1596 -1151 16) (1594 -1151 16) (1594 -1151 41)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618361" + side + { + "id" "152542" + "plane" "(1594 -1155 28) (1594 -1151 28) (1596 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152541" + "plane" "(1594 -1151 26) (1594 -1155 26) (1596 -1155 26)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152540" + "plane" "(1594 -1155 26) (1594 -1151 26) (1594 -1151 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152539" + "plane" "(1596 -1151 26) (1596 -1155 26) (1596 -1155 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152538" + "plane" "(1594 -1151 26) (1596 -1151 26) (1596 -1151 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152537" + "plane" "(1596 -1155 26) (1594 -1155 26) (1594 -1155 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618362" + side + { + "id" "152548" + "plane" "(1504 -1190 38) (1504 -1188 38) (2064 -1188 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152547" + "plane" "(1504 -1188 28) (1504 -1190 28) (2064 -1190 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152546" + "plane" "(1504 -1190 28) (1504 -1188 28) (1504 -1188 38)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152545" + "plane" "(2064 -1188 28) (2064 -1190 28) (2064 -1190 38)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152544" + "plane" "(1504 -1188 28) (2064 -1188 28) (2064 -1188 38)" + "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" "152543" + "plane" "(2064 -1190 28) (1504 -1190 28) (1504 -1190 38)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "618363" + "classname" "func_detail" + solid + { + "id" "618364" + side + { + "id" "152554" + "plane" "(1904 -1223 40) (1904 -1188 40) (1968 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152553" + "plane" "(1904 -1188 38) (1904 -1223 38) (1968 -1223 38)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152552" + "plane" "(1904 -1223 38) (1904 -1188 38) (1904 -1188 40)" + "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" "152551" + "plane" "(1968 -1188 38) (1968 -1223 38) (1968 -1223 40)" + "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" "152550" + "plane" "(1904 -1188 38) (1968 -1188 38) (1968 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152549" + "plane" "(1968 -1223 38) (1904 -1223 38) (1904 -1223 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618365" + side + { + "id" "152560" + "plane" "(1968 -1223 40) (1968 -1188 40) (2064 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152559" + "plane" "(1968 -1188 38) (1968 -1223 38) (2064 -1223 38)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152558" + "plane" "(1968 -1223 38) (1968 -1188 38) (1968 -1188 40)" + "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" "152557" + "plane" "(2064 -1188 38) (2064 -1223 38) (2064 -1223 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 96] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152556" + "plane" "(1968 -1188 38) (2064 -1188 38) (2064 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152555" + "plane" "(2064 -1223 38) (1968 -1223 38) (1968 -1223 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618366" + side + { + "id" "152566" + "plane" "(1504 -1223 40) (1504 -1188 40) (1600 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152565" + "plane" "(1504 -1188 38) (1504 -1223 38) (1600 -1223 38)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152564" + "plane" "(1504 -1223 38) (1504 -1188 38) (1504 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -96.002] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152563" + "plane" "(1600 -1188 38) (1600 -1223 38) (1600 -1223 40)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -96] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152562" + "plane" "(1504 -1188 38) (1600 -1188 38) (1600 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152561" + "plane" "(1600 -1223 38) (1504 -1223 38) (1504 -1223 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -72.0029] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618367" + side + { + "id" "152572" + "plane" "(1600 -1223 40) (1600 -1188 40) (1664 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152571" + "plane" "(1600 -1188 38) (1600 -1223 38) (1664 -1223 38)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152570" + "plane" "(1600 -1223 38) (1600 -1188 38) (1600 -1188 40)" + "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" "152569" + "plane" "(1664 -1188 38) (1664 -1223 38) (1664 -1223 40)" + "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" "152568" + "plane" "(1600 -1188 38) (1664 -1188 38) (1664 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152567" + "plane" "(1664 -1223 38) (1600 -1223 38) (1600 -1223 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -72.0029] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618368" + side + { + "id" "152578" + "plane" "(1664 -1223 40) (1664 -1188 40) (1904 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152577" + "plane" "(1664 -1188 38) (1664 -1223 38) (1904 -1223 38)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152576" + "plane" "(1664 -1223 38) (1664 -1188 38) (1664 -1188 40)" + "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" "152575" + "plane" "(1904 -1188 38) (1904 -1223 38) (1904 -1223 40)" + "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" "152574" + "plane" "(1664 -1188 38) (1904 -1188 38) (1904 -1188 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152573" + "plane" "(1904 -1223 38) (1664 -1223 38) (1664 -1223 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618369" + side + { + "id" "152584" + "plane" "(1968 -1188 54) (1968 -1172 54) (2064 -1172 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152583" + "plane" "(1968 -1172 53) (1968 -1188 53) (2064 -1188 53)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152582" + "plane" "(1968 -1188 53) (1968 -1172 53) (1968 -1172 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152581" + "plane" "(2064 -1172 53) (2064 -1188 53) (2064 -1188 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152580" + "plane" "(1968 -1172 53) (2064 -1172 53) (2064 -1172 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152579" + "plane" "(2064 -1188 53) (1968 -1188 53) (1968 -1188 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618370" + side + { + "id" "152590" + "plane" "(1972 -1188 40) (1972 -1184 40) (1974 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152589" + "plane" "(1972 -1184 38) (1972 -1188 38) (1974 -1188 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152588" + "plane" "(1972 -1188 38) (1972 -1184 38) (1972 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152587" + "plane" "(1974 -1184 38) (1974 -1188 38) (1974 -1188 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152586" + "plane" "(1972 -1184 38) (1974 -1184 38) (1974 -1184 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" "152585" + "plane" "(1974 -1188 38) (1972 -1188 38) (1972 -1188 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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618371" + side + { + "id" "152596" + "plane" "(1972 -1184 53) (1972 -1182 53) (1974 -1182 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152595" + "plane" "(1972 -1182 28) (1972 -1184 28) (1974 -1184 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152594" + "plane" "(1972 -1184 28) (1972 -1182 28) (1972 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152593" + "plane" "(1974 -1182 28) (1974 -1184 28) (1974 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152592" + "plane" "(1972 -1182 28) (1974 -1182 28) (1974 -1182 53)" + "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" "152591" + "plane" "(1974 -1184 28) (1972 -1184 28) (1972 -1184 53)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618372" + side + { + "id" "152602" + "plane" "(2058 -1184 53) (2058 -1182 53) (2060 -1182 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152601" + "plane" "(2058 -1182 28) (2058 -1184 28) (2060 -1184 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152600" + "plane" "(2058 -1184 28) (2058 -1182 28) (2058 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152599" + "plane" "(2060 -1182 28) (2060 -1184 28) (2060 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152598" + "plane" "(2058 -1182 28) (2060 -1182 28) (2060 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152597" + "plane" "(2060 -1184 28) (2058 -1184 28) (2058 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618373" + side + { + "id" "152608" + "plane" "(2058 -1188 40) (2058 -1184 40) (2060 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152607" + "plane" "(2058 -1184 38) (2058 -1188 38) (2060 -1188 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152606" + "plane" "(2058 -1188 38) (2058 -1184 38) (2058 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152605" + "plane" "(2060 -1184 38) (2060 -1188 38) (2060 -1188 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152604" + "plane" "(2058 -1184 38) (2060 -1184 38) (2060 -1184 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152603" + "plane" "(2060 -1188 38) (2058 -1188 38) (2058 -1188 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618374" + side + { + "id" "152614" + "plane" "(1664 -1188 54) (1664 -1172 54) (1904 -1172 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152613" + "plane" "(1664 -1172 53) (1664 -1188 53) (1904 -1188 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152612" + "plane" "(1664 -1188 53) (1664 -1172 53) (1664 -1172 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152611" + "plane" "(1904 -1172 53) (1904 -1188 53) (1904 -1188 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152610" + "plane" "(1664 -1172 53) (1904 -1172 53) (1904 -1172 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152609" + "plane" "(1904 -1188 53) (1664 -1188 53) (1664 -1188 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618375" + side + { + "id" "152620" + "plane" "(1750 -1188 40) (1750 -1184 40) (1752 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152619" + "plane" "(1750 -1184 38) (1750 -1188 38) (1752 -1188 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152618" + "plane" "(1750 -1188 38) (1750 -1184 38) (1750 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152617" + "plane" "(1752 -1184 38) (1752 -1188 38) (1752 -1188 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152616" + "plane" "(1750 -1184 38) (1752 -1184 38) (1752 -1184 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152615" + "plane" "(1752 -1188 38) (1750 -1188 38) (1750 -1188 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618376" + side + { + "id" "152626" + "plane" "(1750 -1184 53) (1750 -1182 53) (1752 -1182 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152625" + "plane" "(1750 -1182 28) (1750 -1184 28) (1752 -1184 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152624" + "plane" "(1750 -1184 28) (1750 -1182 28) (1750 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152623" + "plane" "(1752 -1182 28) (1752 -1184 28) (1752 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152622" + "plane" "(1750 -1182 28) (1752 -1182 28) (1752 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152621" + "plane" "(1752 -1184 28) (1750 -1184 28) (1750 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618377" + side + { + "id" "152632" + "plane" "(1898 -1184 53) (1898 -1182 53) (1900 -1182 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152631" + "plane" "(1898 -1182 28) (1898 -1184 28) (1900 -1184 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152630" + "plane" "(1898 -1184 28) (1898 -1182 28) (1898 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152629" + "plane" "(1900 -1182 28) (1900 -1184 28) (1900 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152628" + "plane" "(1898 -1182 28) (1900 -1182 28) (1900 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152627" + "plane" "(1900 -1184 28) (1898 -1184 28) (1898 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618378" + side + { + "id" "152638" + "plane" "(1898 -1188 40) (1898 -1184 40) (1900 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152637" + "plane" "(1898 -1184 38) (1898 -1188 38) (1900 -1188 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152636" + "plane" "(1898 -1188 38) (1898 -1184 38) (1898 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152635" + "plane" "(1900 -1184 38) (1900 -1188 38) (1900 -1188 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152634" + "plane" "(1898 -1184 38) (1900 -1184 38) (1900 -1184 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152633" + "plane" "(1900 -1188 38) (1898 -1188 38) (1898 -1188 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618379" + side + { + "id" "152644" + "plane" "(1832 -1188 40) (1832 -1184 40) (1834 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152643" + "plane" "(1832 -1184 38) (1832 -1188 38) (1834 -1188 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152642" + "plane" "(1832 -1188 38) (1832 -1184 38) (1832 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152641" + "plane" "(1834 -1184 38) (1834 -1188 38) (1834 -1188 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152640" + "plane" "(1832 -1184 38) (1834 -1184 38) (1834 -1184 40)" + "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" "152639" + "plane" "(1834 -1188 38) (1832 -1188 38) (1832 -1188 40)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618380" + side + { + "id" "152650" + "plane" "(1832 -1184 53) (1832 -1182 53) (1834 -1182 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152649" + "plane" "(1832 -1182 28) (1832 -1184 28) (1834 -1184 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152648" + "plane" "(1832 -1184 28) (1832 -1182 28) (1832 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152647" + "plane" "(1834 -1182 28) (1834 -1184 28) (1834 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152646" + "plane" "(1832 -1182 28) (1834 -1182 28) (1834 -1182 53)" + "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" "152645" + "plane" "(1834 -1184 28) (1832 -1184 28) (1832 -1184 53)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618381" + side + { + "id" "152656" + "plane" "(1668 -1188 40) (1668 -1184 40) (1670 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152655" + "plane" "(1668 -1184 38) (1668 -1188 38) (1670 -1188 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152654" + "plane" "(1668 -1188 38) (1668 -1184 38) (1668 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152653" + "plane" "(1670 -1184 38) (1670 -1188 38) (1670 -1188 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152652" + "plane" "(1668 -1184 38) (1670 -1184 38) (1670 -1184 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" "152651" + "plane" "(1670 -1188 38) (1668 -1188 38) (1668 -1188 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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618382" + side + { + "id" "152662" + "plane" "(1668 -1184 53) (1668 -1182 53) (1670 -1182 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152661" + "plane" "(1668 -1182 28) (1668 -1184 28) (1670 -1184 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152660" + "plane" "(1668 -1184 28) (1668 -1182 28) (1668 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152659" + "plane" "(1670 -1182 28) (1670 -1184 28) (1670 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152658" + "plane" "(1668 -1182 28) (1670 -1182 28) (1670 -1182 53)" + "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" "152657" + "plane" "(1670 -1184 28) (1668 -1184 28) (1668 -1184 53)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618383" + side + { + "id" "152668" + "plane" "(1504 -1188 54) (1504 -1172 54) (1600 -1172 54)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152667" + "plane" "(1504 -1172 53) (1504 -1188 53) (1600 -1188 53)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152666" + "plane" "(1504 -1188 53) (1504 -1172 53) (1504 -1172 54)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 0 1 680] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152665" + "plane" "(1600 -1172 53) (1600 -1188 53) (1600 -1188 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152664" + "plane" "(1504 -1172 53) (1600 -1172 53) (1600 -1172 54)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152663" + "plane" "(1600 -1188 53) (1504 -1188 53) (1504 -1188 54)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 964] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618384" + side + { + "id" "152674" + "plane" "(1508 -1188 40) (1508 -1184 40) (1510 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152673" + "plane" "(1508 -1184 38) (1508 -1188 38) (1510 -1188 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152672" + "plane" "(1508 -1188 38) (1508 -1184 38) (1508 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152671" + "plane" "(1510 -1184 38) (1510 -1188 38) (1510 -1188 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152670" + "plane" "(1508 -1184 38) (1510 -1184 38) (1510 -1184 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" "152669" + "plane" "(1510 -1188 38) (1508 -1188 38) (1508 -1188 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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618385" + side + { + "id" "152680" + "plane" "(1508 -1184 53) (1508 -1182 53) (1510 -1182 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152679" + "plane" "(1508 -1182 28) (1508 -1184 28) (1510 -1184 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152678" + "plane" "(1508 -1184 28) (1508 -1182 28) (1508 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152677" + "plane" "(1510 -1182 28) (1510 -1184 28) (1510 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152676" + "plane" "(1508 -1182 28) (1510 -1182 28) (1510 -1182 53)" + "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" "152675" + "plane" "(1510 -1184 28) (1508 -1184 28) (1508 -1184 53)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618386" + side + { + "id" "152686" + "plane" "(1594 -1184 53) (1594 -1182 53) (1596 -1182 53)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152685" + "plane" "(1594 -1182 28) (1594 -1184 28) (1596 -1184 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152684" + "plane" "(1594 -1184 28) (1594 -1182 28) (1594 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152683" + "plane" "(1596 -1182 28) (1596 -1184 28) (1596 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152682" + "plane" "(1594 -1182 28) (1596 -1182 28) (1596 -1182 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152681" + "plane" "(1596 -1184 28) (1594 -1184 28) (1594 -1184 53)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618387" + side + { + "id" "152692" + "plane" "(1594 -1188 40) (1594 -1184 40) (1596 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152691" + "plane" "(1594 -1184 38) (1594 -1188 38) (1596 -1188 38)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152690" + "plane" "(1594 -1188 38) (1594 -1184 38) (1594 -1184 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152689" + "plane" "(1596 -1184 38) (1596 -1188 38) (1596 -1188 40)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152688" + "plane" "(1594 -1184 38) (1596 -1184 38) (1596 -1184 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152687" + "plane" "(1596 -1188 38) (1594 -1188 38) (1594 -1188 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618388" + side + { + "id" "152698" + "plane" "(1504 -1223 50) (1504 -1221 50) (2064 -1221 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152697" + "plane" "(1504 -1221 40) (1504 -1223 40) (2064 -1223 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152696" + "plane" "(1504 -1223 40) (1504 -1221 40) (1504 -1221 50)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152695" + "plane" "(2064 -1221 40) (2064 -1223 40) (2064 -1223 50)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152694" + "plane" "(1504 -1221 40) (2064 -1221 40) (2064 -1221 50)" + "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" "152693" + "plane" "(2064 -1223 40) (1504 -1223 40) (1504 -1223 50)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "618389" + "classname" "func_detail" + solid + { + "id" "618390" + side + { + "id" "152704" + "plane" "(1904 -1256 52) (1904 -1221 52) (1968 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152703" + "plane" "(1904 -1221 50) (1904 -1256 50) (1968 -1256 50)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152702" + "plane" "(1904 -1256 50) (1904 -1221 50) (1904 -1221 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152701" + "plane" "(1968 -1221 50) (1968 -1256 50) (1968 -1256 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152700" + "plane" "(1904 -1221 50) (1968 -1221 50) (1968 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152699" + "plane" "(1968 -1256 50) (1904 -1256 50) (1904 -1256 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618391" + side + { + "id" "152710" + "plane" "(1968 -1256 52) (1968 -1221 52) (2064 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152709" + "plane" "(1968 -1221 50) (1968 -1256 50) (2064 -1256 50)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152708" + "plane" "(1968 -1256 50) (1968 -1221 50) (1968 -1221 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152707" + "plane" "(2064 -1221 50) (2064 -1256 50) (2064 -1256 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 88] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152706" + "plane" "(1968 -1221 50) (2064 -1221 50) (2064 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152705" + "plane" "(2064 -1256 50) (1968 -1256 50) (1968 -1256 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618392" + side + { + "id" "152716" + "plane" "(1504 -1256 52) (1504 -1221 52) (1600 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152715" + "plane" "(1504 -1221 50) (1504 -1256 50) (1600 -1256 50)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152714" + "plane" "(1504 -1256 50) (1504 -1221 50) (1504 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -88.002] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152713" + "plane" "(1600 -1221 50) (1600 -1256 50) (1600 -1256 52)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -88] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152712" + "plane" "(1504 -1221 50) (1600 -1221 50) (1600 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152711" + "plane" "(1600 -1256 50) (1504 -1256 50) (1504 -1256 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618393" + side + { + "id" "152722" + "plane" "(1600 -1256 52) (1600 -1221 52) (1664 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152721" + "plane" "(1600 -1221 50) (1600 -1256 50) (1664 -1256 50)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152720" + "plane" "(1600 -1256 50) (1600 -1221 50) (1600 -1221 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152719" + "plane" "(1664 -1221 50) (1664 -1256 50) (1664 -1256 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152718" + "plane" "(1600 -1221 50) (1664 -1221 50) (1664 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152717" + "plane" "(1664 -1256 50) (1600 -1256 50) (1600 -1256 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618394" + side + { + "id" "152728" + "plane" "(1664 -1256 52) (1664 -1221 52) (1904 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152727" + "plane" "(1664 -1221 50) (1664 -1256 50) (1904 -1256 50)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152726" + "plane" "(1664 -1256 50) (1664 -1221 50) (1664 -1221 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 44] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152725" + "plane" "(1904 -1221 50) (1904 -1256 50) (1904 -1256 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -44] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152724" + "plane" "(1664 -1221 50) (1904 -1221 50) (1904 -1221 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152723" + "plane" "(1904 -1256 50) (1664 -1256 50) (1664 -1256 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618395" + side + { + "id" "152734" + "plane" "(1968 -1221 66) (1968 -1205 66) (2064 -1205 66)" + "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" "152733" + "plane" "(1968 -1205 65) (1968 -1221 65) (2064 -1221 65)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152732" + "plane" "(1968 -1221 65) (1968 -1205 65) (1968 -1205 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152731" + "plane" "(2064 -1205 65) (2064 -1221 65) (2064 -1221 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152730" + "plane" "(1968 -1205 65) (2064 -1205 65) (2064 -1205 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152729" + "plane" "(2064 -1221 65) (1968 -1221 65) (1968 -1221 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618396" + side + { + "id" "152740" + "plane" "(1972 -1221 52) (1972 -1217 52) (1974 -1217 52)" + "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" "152739" + "plane" "(1972 -1217 50) (1972 -1221 50) (1974 -1221 50)" + "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" "152738" + "plane" "(1972 -1221 50) (1972 -1217 50) (1972 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152737" + "plane" "(1974 -1217 50) (1974 -1221 50) (1974 -1221 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152736" + "plane" "(1972 -1217 50) (1974 -1217 50) (1974 -1217 52)" + "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" "152735" + "plane" "(1974 -1221 50) (1972 -1221 50) (1972 -1221 52)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618397" + side + { + "id" "152746" + "plane" "(1972 -1217 65) (1972 -1215 65) (1974 -1215 65)" + "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" "152745" + "plane" "(1972 -1215 40) (1972 -1217 40) (1974 -1217 40)" + "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" "152744" + "plane" "(1972 -1217 40) (1972 -1215 40) (1972 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152743" + "plane" "(1974 -1215 40) (1974 -1217 40) (1974 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152742" + "plane" "(1972 -1215 40) (1974 -1215 40) (1974 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152741" + "plane" "(1974 -1217 40) (1972 -1217 40) (1972 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618398" + side + { + "id" "152752" + "plane" "(2058 -1217 65) (2058 -1215 65) (2060 -1215 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152751" + "plane" "(2058 -1215 40) (2058 -1217 40) (2060 -1217 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152750" + "plane" "(2058 -1217 40) (2058 -1215 40) (2058 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152749" + "plane" "(2060 -1215 40) (2060 -1217 40) (2060 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152748" + "plane" "(2058 -1215 40) (2060 -1215 40) (2060 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152747" + "plane" "(2060 -1217 40) (2058 -1217 40) (2058 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618399" + side + { + "id" "152758" + "plane" "(2058 -1221 52) (2058 -1217 52) (2060 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152757" + "plane" "(2058 -1217 50) (2058 -1221 50) (2060 -1221 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152756" + "plane" "(2058 -1221 50) (2058 -1217 50) (2058 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152755" + "plane" "(2060 -1217 50) (2060 -1221 50) (2060 -1221 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152754" + "plane" "(2058 -1217 50) (2060 -1217 50) (2060 -1217 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152753" + "plane" "(2060 -1221 50) (2058 -1221 50) (2058 -1221 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618400" + side + { + "id" "152764" + "plane" "(1664 -1221 66) (1664 -1205 66) (1904 -1205 66)" + "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" "152763" + "plane" "(1664 -1205 65) (1664 -1221 65) (1904 -1221 65)" + "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" "152762" + "plane" "(1664 -1221 65) (1664 -1205 65) (1664 -1205 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152761" + "plane" "(1904 -1205 65) (1904 -1221 65) (1904 -1221 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152760" + "plane" "(1664 -1205 65) (1904 -1205 65) (1904 -1205 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152759" + "plane" "(1904 -1221 65) (1664 -1221 65) (1664 -1221 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618401" + side + { + "id" "152770" + "plane" "(1750 -1221 52) (1750 -1217 52) (1752 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152769" + "plane" "(1750 -1217 50) (1750 -1221 50) (1752 -1221 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152768" + "plane" "(1750 -1221 50) (1750 -1217 50) (1750 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152767" + "plane" "(1752 -1217 50) (1752 -1221 50) (1752 -1221 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152766" + "plane" "(1750 -1217 50) (1752 -1217 50) (1752 -1217 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152765" + "plane" "(1752 -1221 50) (1750 -1221 50) (1750 -1221 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618402" + side + { + "id" "152776" + "plane" "(1750 -1217 65) (1750 -1215 65) (1752 -1215 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152775" + "plane" "(1750 -1215 40) (1750 -1217 40) (1752 -1217 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152774" + "plane" "(1750 -1217 40) (1750 -1215 40) (1750 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152773" + "plane" "(1752 -1215 40) (1752 -1217 40) (1752 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152772" + "plane" "(1750 -1215 40) (1752 -1215 40) (1752 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152771" + "plane" "(1752 -1217 40) (1750 -1217 40) (1750 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618403" + side + { + "id" "152782" + "plane" "(1898 -1217 65) (1898 -1215 65) (1900 -1215 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152781" + "plane" "(1898 -1215 40) (1898 -1217 40) (1900 -1217 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152780" + "plane" "(1898 -1217 40) (1898 -1215 40) (1898 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152779" + "plane" "(1900 -1215 40) (1900 -1217 40) (1900 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152778" + "plane" "(1898 -1215 40) (1900 -1215 40) (1900 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152777" + "plane" "(1900 -1217 40) (1898 -1217 40) (1898 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618404" + side + { + "id" "152788" + "plane" "(1898 -1221 52) (1898 -1217 52) (1900 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152787" + "plane" "(1898 -1217 50) (1898 -1221 50) (1900 -1221 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152786" + "plane" "(1898 -1221 50) (1898 -1217 50) (1898 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152785" + "plane" "(1900 -1217 50) (1900 -1221 50) (1900 -1221 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152784" + "plane" "(1898 -1217 50) (1900 -1217 50) (1900 -1217 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152783" + "plane" "(1900 -1221 50) (1898 -1221 50) (1898 -1221 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618405" + side + { + "id" "152794" + "plane" "(1832 -1221 52) (1832 -1217 52) (1834 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152793" + "plane" "(1832 -1217 50) (1832 -1221 50) (1834 -1221 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152792" + "plane" "(1832 -1221 50) (1832 -1217 50) (1832 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152791" + "plane" "(1834 -1217 50) (1834 -1221 50) (1834 -1221 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152790" + "plane" "(1832 -1217 50) (1834 -1217 50) (1834 -1217 52)" + "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" "152789" + "plane" "(1834 -1221 50) (1832 -1221 50) (1832 -1221 52)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618406" + side + { + "id" "152800" + "plane" "(1832 -1217 65) (1832 -1215 65) (1834 -1215 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152799" + "plane" "(1832 -1215 40) (1832 -1217 40) (1834 -1217 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152798" + "plane" "(1832 -1217 40) (1832 -1215 40) (1832 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152797" + "plane" "(1834 -1215 40) (1834 -1217 40) (1834 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152796" + "plane" "(1832 -1215 40) (1834 -1215 40) (1834 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152795" + "plane" "(1834 -1217 40) (1832 -1217 40) (1832 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618407" + side + { + "id" "152806" + "plane" "(1668 -1221 52) (1668 -1217 52) (1670 -1217 52)" + "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" "152805" + "plane" "(1668 -1217 50) (1668 -1221 50) (1670 -1221 50)" + "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" "152804" + "plane" "(1668 -1221 50) (1668 -1217 50) (1668 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152803" + "plane" "(1670 -1217 50) (1670 -1221 50) (1670 -1221 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152802" + "plane" "(1668 -1217 50) (1670 -1217 50) (1670 -1217 52)" + "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" "152801" + "plane" "(1670 -1221 50) (1668 -1221 50) (1668 -1221 52)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618408" + side + { + "id" "152812" + "plane" "(1668 -1217 65) (1668 -1215 65) (1670 -1215 65)" + "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" "152811" + "plane" "(1668 -1215 40) (1668 -1217 40) (1670 -1217 40)" + "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" "152810" + "plane" "(1668 -1217 40) (1668 -1215 40) (1668 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152809" + "plane" "(1670 -1215 40) (1670 -1217 40) (1670 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152808" + "plane" "(1668 -1215 40) (1670 -1215 40) (1670 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152807" + "plane" "(1670 -1217 40) (1668 -1217 40) (1668 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618409" + side + { + "id" "152818" + "plane" "(1504 -1221 66) (1504 -1205 66) (1600 -1205 66)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152817" + "plane" "(1504 -1205 65) (1504 -1221 65) (1600 -1221 65)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152816" + "plane" "(1504 -1221 65) (1504 -1205 65) (1504 -1205 66)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 0 1 632] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152815" + "plane" "(1600 -1205 65) (1600 -1221 65) (1600 -1221 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152814" + "plane" "(1504 -1205 65) (1600 -1205 65) (1600 -1205 66)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152813" + "plane" "(1600 -1221 65) (1504 -1221 65) (1504 -1221 66)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 120] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618410" + side + { + "id" "152824" + "plane" "(1508 -1221 52) (1508 -1217 52) (1510 -1217 52)" + "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" "152823" + "plane" "(1508 -1217 50) (1508 -1221 50) (1510 -1221 50)" + "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" "152822" + "plane" "(1508 -1221 50) (1508 -1217 50) (1508 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152821" + "plane" "(1510 -1217 50) (1510 -1221 50) (1510 -1221 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152820" + "plane" "(1508 -1217 50) (1510 -1217 50) (1510 -1217 52)" + "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" "152819" + "plane" "(1510 -1221 50) (1508 -1221 50) (1508 -1221 52)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618411" + side + { + "id" "152830" + "plane" "(1508 -1217 65) (1508 -1215 65) (1510 -1215 65)" + "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" "152829" + "plane" "(1508 -1215 40) (1508 -1217 40) (1510 -1217 40)" + "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" "152828" + "plane" "(1508 -1217 40) (1508 -1215 40) (1508 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152827" + "plane" "(1510 -1215 40) (1510 -1217 40) (1510 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152826" + "plane" "(1508 -1215 40) (1510 -1215 40) (1510 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152825" + "plane" "(1510 -1217 40) (1508 -1217 40) (1508 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618412" + side + { + "id" "152836" + "plane" "(1594 -1217 65) (1594 -1215 65) (1596 -1215 65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152835" + "plane" "(1594 -1215 40) (1594 -1217 40) (1596 -1217 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152834" + "plane" "(1594 -1217 40) (1594 -1215 40) (1594 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152833" + "plane" "(1596 -1215 40) (1596 -1217 40) (1596 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152832" + "plane" "(1594 -1215 40) (1596 -1215 40) (1596 -1215 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152831" + "plane" "(1596 -1217 40) (1594 -1217 40) (1594 -1217 65)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618413" + side + { + "id" "152842" + "plane" "(1594 -1221 52) (1594 -1217 52) (1596 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152841" + "plane" "(1594 -1217 50) (1594 -1221 50) (1596 -1221 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152840" + "plane" "(1594 -1221 50) (1594 -1217 50) (1594 -1217 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152839" + "plane" "(1596 -1217 50) (1596 -1221 50) (1596 -1221 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152838" + "plane" "(1594 -1217 50) (1596 -1217 50) (1596 -1217 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152837" + "plane" "(1596 -1221 50) (1594 -1221 50) (1594 -1221 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618414" + side + { + "id" "152848" + "plane" "(1504 -1256 62) (1504 -1254 62) (2064 -1254 62)" + "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" "152847" + "plane" "(1504 -1254 52) (1504 -1256 52) (2064 -1256 52)" + "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" "152846" + "plane" "(1504 -1256 52) (1504 -1254 52) (1504 -1254 62)" + "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" "152845" + "plane" "(2064 -1254 52) (2064 -1256 52) (2064 -1256 62)" + "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" "152844" + "plane" "(1504 -1254 52) (2064 -1254 52) (2064 -1254 62)" + "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" "152843" + "plane" "(2064 -1256 52) (1504 -1256 52) (1504 -1256 62)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "618415" + "classname" "func_detail" + solid + { + "id" "618416" + side + { + "id" "152854" + "plane" "(1904 -1289 64) (1904 -1254 64) (1968 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152853" + "plane" "(1904 -1254 62) (1904 -1289 62) (1968 -1289 62)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152852" + "plane" "(1904 -1289 62) (1904 -1254 62) (1904 -1254 64)" + "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" "152851" + "plane" "(1968 -1254 62) (1968 -1289 62) (1968 -1289 64)" + "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" "152850" + "plane" "(1904 -1254 62) (1968 -1254 62) (1968 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152849" + "plane" "(1968 -1289 62) (1904 -1289 62) (1904 -1289 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618417" + side + { + "id" "152860" + "plane" "(1968 -1289 64) (1968 -1254 64) (2064 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152859" + "plane" "(1968 -1254 62) (1968 -1289 62) (2064 -1289 62)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152858" + "plane" "(1968 -1289 62) (1968 -1254 62) (1968 -1254 64)" + "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" "152857" + "plane" "(2064 -1254 62) (2064 -1289 62) (2064 -1289 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 80] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152856" + "plane" "(1968 -1254 62) (2064 -1254 62) (2064 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152855" + "plane" "(2064 -1289 62) (1968 -1289 62) (1968 -1289 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618418" + side + { + "id" "152866" + "plane" "(1504 -1289 64) (1504 -1254 64) (1600 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152865" + "plane" "(1504 -1254 62) (1504 -1289 62) (1600 -1289 62)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152864" + "plane" "(1504 -1289 62) (1504 -1254 62) (1504 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -80.002] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152863" + "plane" "(1600 -1254 62) (1600 -1289 62) (1600 -1289 64)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -80] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152862" + "plane" "(1504 -1254 62) (1600 -1254 62) (1600 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152861" + "plane" "(1600 -1289 62) (1504 -1289 62) (1504 -1289 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618419" + side + { + "id" "152872" + "plane" "(1600 -1289 64) (1600 -1254 64) (1664 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152871" + "plane" "(1600 -1254 62) (1600 -1289 62) (1664 -1289 62)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152870" + "plane" "(1600 -1289 62) (1600 -1254 62) (1600 -1254 64)" + "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" "152869" + "plane" "(1664 -1254 62) (1664 -1289 62) (1664 -1289 64)" + "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" "152868" + "plane" "(1600 -1254 62) (1664 -1254 62) (1664 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152867" + "plane" "(1664 -1289 62) (1600 -1289 62) (1600 -1289 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618420" + side + { + "id" "152878" + "plane" "(1664 -1289 64) (1664 -1254 64) (1904 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152877" + "plane" "(1664 -1254 62) (1664 -1289 62) (1904 -1289 62)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152876" + "plane" "(1664 -1289 62) (1664 -1254 62) (1664 -1254 64)" + "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" "152875" + "plane" "(1904 -1254 62) (1904 -1289 62) (1904 -1289 64)" + "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" "152874" + "plane" "(1664 -1254 62) (1904 -1254 62) (1904 -1254 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152873" + "plane" "(1904 -1289 62) (1664 -1289 62) (1664 -1289 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618421" + side + { + "id" "152884" + "plane" "(1968 -1254 78) (1968 -1238 78) (2064 -1238 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152883" + "plane" "(1968 -1238 77) (1968 -1254 77) (2064 -1254 77)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152882" + "plane" "(1968 -1254 77) (1968 -1238 77) (1968 -1238 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152881" + "plane" "(2064 -1238 77) (2064 -1254 77) (2064 -1254 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152880" + "plane" "(1968 -1238 77) (2064 -1238 77) (2064 -1238 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152879" + "plane" "(2064 -1254 77) (1968 -1254 77) (1968 -1254 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618422" + side + { + "id" "152890" + "plane" "(1972 -1254 64) (1972 -1250 64) (1974 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152889" + "plane" "(1972 -1250 62) (1972 -1254 62) (1974 -1254 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152888" + "plane" "(1972 -1254 62) (1972 -1250 62) (1972 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152887" + "plane" "(1974 -1250 62) (1974 -1254 62) (1974 -1254 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152886" + "plane" "(1972 -1250 62) (1974 -1250 62) (1974 -1250 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" "152885" + "plane" "(1974 -1254 62) (1972 -1254 62) (1972 -1254 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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618423" + side + { + "id" "152896" + "plane" "(1972 -1250 77) (1972 -1248 77) (1974 -1248 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152895" + "plane" "(1972 -1248 52) (1972 -1250 52) (1974 -1250 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152894" + "plane" "(1972 -1250 52) (1972 -1248 52) (1972 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152893" + "plane" "(1974 -1248 52) (1974 -1250 52) (1974 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152892" + "plane" "(1972 -1248 52) (1974 -1248 52) (1974 -1248 77)" + "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" "152891" + "plane" "(1974 -1250 52) (1972 -1250 52) (1972 -1250 77)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618424" + side + { + "id" "152902" + "plane" "(2058 -1250 77) (2058 -1248 77) (2060 -1248 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152901" + "plane" "(2058 -1248 52) (2058 -1250 52) (2060 -1250 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152900" + "plane" "(2058 -1250 52) (2058 -1248 52) (2058 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152899" + "plane" "(2060 -1248 52) (2060 -1250 52) (2060 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152898" + "plane" "(2058 -1248 52) (2060 -1248 52) (2060 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152897" + "plane" "(2060 -1250 52) (2058 -1250 52) (2058 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618425" + side + { + "id" "152908" + "plane" "(2058 -1254 64) (2058 -1250 64) (2060 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152907" + "plane" "(2058 -1250 62) (2058 -1254 62) (2060 -1254 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152906" + "plane" "(2058 -1254 62) (2058 -1250 62) (2058 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152905" + "plane" "(2060 -1250 62) (2060 -1254 62) (2060 -1254 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152904" + "plane" "(2058 -1250 62) (2060 -1250 62) (2060 -1250 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152903" + "plane" "(2060 -1254 62) (2058 -1254 62) (2058 -1254 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618426" + side + { + "id" "152914" + "plane" "(1664 -1254 78) (1664 -1238 78) (1904 -1238 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152913" + "plane" "(1664 -1238 77) (1664 -1254 77) (1904 -1254 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152912" + "plane" "(1664 -1254 77) (1664 -1238 77) (1664 -1238 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152911" + "plane" "(1904 -1238 77) (1904 -1254 77) (1904 -1254 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152910" + "plane" "(1664 -1238 77) (1904 -1238 77) (1904 -1238 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152909" + "plane" "(1904 -1254 77) (1664 -1254 77) (1664 -1254 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618427" + side + { + "id" "152920" + "plane" "(1750 -1254 64) (1750 -1250 64) (1752 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152919" + "plane" "(1750 -1250 62) (1750 -1254 62) (1752 -1254 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152918" + "plane" "(1750 -1254 62) (1750 -1250 62) (1750 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152917" + "plane" "(1752 -1250 62) (1752 -1254 62) (1752 -1254 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152916" + "plane" "(1750 -1250 62) (1752 -1250 62) (1752 -1250 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152915" + "plane" "(1752 -1254 62) (1750 -1254 62) (1750 -1254 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618428" + side + { + "id" "152926" + "plane" "(1750 -1250 77) (1750 -1248 77) (1752 -1248 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152925" + "plane" "(1750 -1248 52) (1750 -1250 52) (1752 -1250 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152924" + "plane" "(1750 -1250 52) (1750 -1248 52) (1750 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152923" + "plane" "(1752 -1248 52) (1752 -1250 52) (1752 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152922" + "plane" "(1750 -1248 52) (1752 -1248 52) (1752 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152921" + "plane" "(1752 -1250 52) (1750 -1250 52) (1750 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618429" + side + { + "id" "152932" + "plane" "(1898 -1250 77) (1898 -1248 77) (1900 -1248 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152931" + "plane" "(1898 -1248 52) (1898 -1250 52) (1900 -1250 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152930" + "plane" "(1898 -1250 52) (1898 -1248 52) (1898 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152929" + "plane" "(1900 -1248 52) (1900 -1250 52) (1900 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152928" + "plane" "(1898 -1248 52) (1900 -1248 52) (1900 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152927" + "plane" "(1900 -1250 52) (1898 -1250 52) (1898 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618430" + side + { + "id" "152938" + "plane" "(1898 -1254 64) (1898 -1250 64) (1900 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152937" + "plane" "(1898 -1250 62) (1898 -1254 62) (1900 -1254 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152936" + "plane" "(1898 -1254 62) (1898 -1250 62) (1898 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152935" + "plane" "(1900 -1250 62) (1900 -1254 62) (1900 -1254 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152934" + "plane" "(1898 -1250 62) (1900 -1250 62) (1900 -1250 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152933" + "plane" "(1900 -1254 62) (1898 -1254 62) (1898 -1254 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618431" + side + { + "id" "152944" + "plane" "(1832 -1254 64) (1832 -1250 64) (1834 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152943" + "plane" "(1832 -1250 62) (1832 -1254 62) (1834 -1254 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152942" + "plane" "(1832 -1254 62) (1832 -1250 62) (1832 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152941" + "plane" "(1834 -1250 62) (1834 -1254 62) (1834 -1254 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152940" + "plane" "(1832 -1250 62) (1834 -1250 62) (1834 -1250 64)" + "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" "152939" + "plane" "(1834 -1254 62) (1832 -1254 62) (1832 -1254 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618432" + side + { + "id" "152950" + "plane" "(1832 -1250 77) (1832 -1248 77) (1834 -1248 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152949" + "plane" "(1832 -1248 52) (1832 -1250 52) (1834 -1250 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152948" + "plane" "(1832 -1250 52) (1832 -1248 52) (1832 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152947" + "plane" "(1834 -1248 52) (1834 -1250 52) (1834 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152946" + "plane" "(1832 -1248 52) (1834 -1248 52) (1834 -1248 77)" + "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" "152945" + "plane" "(1834 -1250 52) (1832 -1250 52) (1832 -1250 77)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618433" + side + { + "id" "152956" + "plane" "(1668 -1254 64) (1668 -1250 64) (1670 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152955" + "plane" "(1668 -1250 62) (1668 -1254 62) (1670 -1254 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152954" + "plane" "(1668 -1254 62) (1668 -1250 62) (1668 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152953" + "plane" "(1670 -1250 62) (1670 -1254 62) (1670 -1254 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152952" + "plane" "(1668 -1250 62) (1670 -1250 62) (1670 -1250 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" "152951" + "plane" "(1670 -1254 62) (1668 -1254 62) (1668 -1254 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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618434" + side + { + "id" "152962" + "plane" "(1668 -1250 77) (1668 -1248 77) (1670 -1248 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152961" + "plane" "(1668 -1248 52) (1668 -1250 52) (1670 -1250 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152960" + "plane" "(1668 -1250 52) (1668 -1248 52) (1668 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152959" + "plane" "(1670 -1248 52) (1670 -1250 52) (1670 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152958" + "plane" "(1668 -1248 52) (1670 -1248 52) (1670 -1248 77)" + "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" "152957" + "plane" "(1670 -1250 52) (1668 -1250 52) (1668 -1250 77)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618435" + side + { + "id" "152968" + "plane" "(1504 -1254 78) (1504 -1238 78) (1600 -1238 78)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152967" + "plane" "(1504 -1238 77) (1504 -1254 77) (1600 -1254 77)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152966" + "plane" "(1504 -1254 77) (1504 -1238 77) (1504 -1238 78)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 0 1 584] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152965" + "plane" "(1600 -1238 77) (1600 -1254 77) (1600 -1254 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152964" + "plane" "(1504 -1238 77) (1600 -1238 77) (1600 -1238 78)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152963" + "plane" "(1600 -1254 77) (1504 -1254 77) (1504 -1254 78)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 300] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618436" + side + { + "id" "152974" + "plane" "(1508 -1254 64) (1508 -1250 64) (1510 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152973" + "plane" "(1508 -1250 62) (1508 -1254 62) (1510 -1254 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152972" + "plane" "(1508 -1254 62) (1508 -1250 62) (1508 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152971" + "plane" "(1510 -1250 62) (1510 -1254 62) (1510 -1254 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152970" + "plane" "(1508 -1250 62) (1510 -1250 62) (1510 -1250 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" "152969" + "plane" "(1510 -1254 62) (1508 -1254 62) (1508 -1254 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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618437" + side + { + "id" "152980" + "plane" "(1508 -1250 77) (1508 -1248 77) (1510 -1248 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152979" + "plane" "(1508 -1248 52) (1508 -1250 52) (1510 -1250 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152978" + "plane" "(1508 -1250 52) (1508 -1248 52) (1508 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152977" + "plane" "(1510 -1248 52) (1510 -1250 52) (1510 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152976" + "plane" "(1508 -1248 52) (1510 -1248 52) (1510 -1248 77)" + "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" "152975" + "plane" "(1510 -1250 52) (1508 -1250 52) (1508 -1250 77)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618438" + side + { + "id" "152986" + "plane" "(1594 -1250 77) (1594 -1248 77) (1596 -1248 77)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152985" + "plane" "(1594 -1248 52) (1594 -1250 52) (1596 -1250 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152984" + "plane" "(1594 -1250 52) (1594 -1248 52) (1594 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152983" + "plane" "(1596 -1248 52) (1596 -1250 52) (1596 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152982" + "plane" "(1594 -1248 52) (1596 -1248 52) (1596 -1248 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152981" + "plane" "(1596 -1250 52) (1594 -1250 52) (1594 -1250 77)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618439" + side + { + "id" "152992" + "plane" "(1594 -1254 64) (1594 -1250 64) (1596 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152991" + "plane" "(1594 -1250 62) (1594 -1254 62) (1596 -1254 62)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152990" + "plane" "(1594 -1254 62) (1594 -1250 62) (1594 -1250 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152989" + "plane" "(1596 -1250 62) (1596 -1254 62) (1596 -1254 64)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152988" + "plane" "(1594 -1250 62) (1596 -1250 62) (1596 -1250 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152987" + "plane" "(1596 -1254 62) (1594 -1254 62) (1594 -1254 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618440" + side + { + "id" "152998" + "plane" "(1504 -1289 74) (1504 -1287 74) (2064 -1287 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152997" + "plane" "(1504 -1287 64) (1504 -1289 64) (2064 -1289 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152996" + "plane" "(1504 -1289 64) (1504 -1287 64) (1504 -1287 74)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152995" + "plane" "(2064 -1287 64) (2064 -1289 64) (2064 -1289 74)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152994" + "plane" "(1504 -1287 64) (2064 -1287 64) (2064 -1287 74)" + "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" "152993" + "plane" "(2064 -1289 64) (1504 -1289 64) (1504 -1289 74)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "618441" + "classname" "func_detail" + solid + { + "id" "618442" + side + { + "id" "153004" + "plane" "(1904 -1322 76) (1904 -1287 76) (1968 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153003" + "plane" "(1904 -1287 74) (1904 -1322 74) (1968 -1322 74)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153002" + "plane" "(1904 -1322 74) (1904 -1287 74) (1904 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153001" + "plane" "(1968 -1287 74) (1968 -1322 74) (1968 -1322 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153000" + "plane" "(1904 -1287 74) (1968 -1287 74) (1968 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "152999" + "plane" "(1968 -1322 74) (1904 -1322 74) (1904 -1322 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618443" + side + { + "id" "153010" + "plane" "(1968 -1322 76) (1968 -1287 76) (2064 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 72] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153009" + "plane" "(1968 -1287 74) (1968 -1322 74) (2064 -1322 74)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153008" + "plane" "(1968 -1322 74) (1968 -1287 74) (1968 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153007" + "plane" "(2064 -1287 74) (2064 -1322 74) (2064 -1322 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 72] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153006" + "plane" "(1968 -1287 74) (2064 -1287 74) (2064 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153005" + "plane" "(2064 -1322 74) (1968 -1322 74) (1968 -1322 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618444" + side + { + "id" "153016" + "plane" "(1504 -1322 76) (1504 -1287 76) (1600 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 72] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153015" + "plane" "(1504 -1287 74) (1504 -1322 74) (1600 -1322 74)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153014" + "plane" "(1504 -1322 74) (1504 -1287 74) (1504 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -72.002] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153013" + "plane" "(1600 -1287 74) (1600 -1322 74) (1600 -1322 76)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[0 0 -1 -96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153012" + "plane" "(1504 -1287 74) (1600 -1287 74) (1600 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153011" + "plane" "(1600 -1322 74) (1504 -1322 74) (1504 -1322 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618445" + side + { + "id" "153022" + "plane" "(1600 -1322 76) (1600 -1287 76) (1664 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153021" + "plane" "(1600 -1287 74) (1600 -1322 74) (1664 -1322 74)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153020" + "plane" "(1600 -1322 74) (1600 -1287 74) (1600 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153019" + "plane" "(1664 -1287 74) (1664 -1322 74) (1664 -1322 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153018" + "plane" "(1600 -1287 74) (1664 -1287 74) (1664 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153017" + "plane" "(1664 -1322 74) (1600 -1322 74) (1600 -1322 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618446" + side + { + "id" "153028" + "plane" "(1664 -1322 76) (1664 -1287 76) (1904 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 72] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153027" + "plane" "(1664 -1287 74) (1664 -1322 74) (1904 -1322 74)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153026" + "plane" "(1664 -1322 74) (1664 -1287 74) (1664 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153025" + "plane" "(1904 -1287 74) (1904 -1322 74) (1904 -1322 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153024" + "plane" "(1664 -1287 74) (1904 -1287 74) (1904 -1287 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153023" + "plane" "(1904 -1322 74) (1664 -1322 74) (1664 -1322 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618447" + side + { + "id" "153034" + "plane" "(1968 -1287 90) (1968 -1271 90) (2064 -1271 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153033" + "plane" "(1968 -1271 89) (1968 -1287 89) (2064 -1287 89)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153032" + "plane" "(1968 -1287 89) (1968 -1271 89) (1968 -1271 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153031" + "plane" "(2064 -1271 89) (2064 -1287 89) (2064 -1287 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153030" + "plane" "(1968 -1271 89) (2064 -1271 89) (2064 -1271 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153029" + "plane" "(2064 -1287 89) (1968 -1287 89) (1968 -1287 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618448" + side + { + "id" "153040" + "plane" "(1972 -1287 76) (1972 -1283 76) (1974 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153039" + "plane" "(1972 -1283 74) (1972 -1287 74) (1974 -1287 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153038" + "plane" "(1972 -1287 74) (1972 -1283 74) (1972 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153037" + "plane" "(1974 -1283 74) (1974 -1287 74) (1974 -1287 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153036" + "plane" "(1972 -1283 74) (1974 -1283 74) (1974 -1283 76)" + "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" "153035" + "plane" "(1974 -1287 74) (1972 -1287 74) (1972 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618449" + side + { + "id" "153046" + "plane" "(1972 -1283 89) (1972 -1281 89) (1974 -1281 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153045" + "plane" "(1972 -1281 64) (1972 -1283 64) (1974 -1283 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153044" + "plane" "(1972 -1283 64) (1972 -1281 64) (1972 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153043" + "plane" "(1974 -1281 64) (1974 -1283 64) (1974 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153042" + "plane" "(1972 -1281 64) (1974 -1281 64) (1974 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153041" + "plane" "(1974 -1283 64) (1972 -1283 64) (1972 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618450" + side + { + "id" "153052" + "plane" "(2058 -1283 89) (2058 -1281 89) (2060 -1281 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153051" + "plane" "(2058 -1281 64) (2058 -1283 64) (2060 -1283 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153050" + "plane" "(2058 -1283 64) (2058 -1281 64) (2058 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153049" + "plane" "(2060 -1281 64) (2060 -1283 64) (2060 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153048" + "plane" "(2058 -1281 64) (2060 -1281 64) (2060 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153047" + "plane" "(2060 -1283 64) (2058 -1283 64) (2058 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618451" + side + { + "id" "153058" + "plane" "(2058 -1287 76) (2058 -1283 76) (2060 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153057" + "plane" "(2058 -1283 74) (2058 -1287 74) (2060 -1287 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153056" + "plane" "(2058 -1287 74) (2058 -1283 74) (2058 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153055" + "plane" "(2060 -1283 74) (2060 -1287 74) (2060 -1287 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153054" + "plane" "(2058 -1283 74) (2060 -1283 74) (2060 -1283 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153053" + "plane" "(2060 -1287 74) (2058 -1287 74) (2058 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618452" + side + { + "id" "153064" + "plane" "(1664 -1287 90) (1664 -1271 90) (1904 -1271 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153063" + "plane" "(1664 -1271 89) (1664 -1287 89) (1904 -1287 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153062" + "plane" "(1664 -1287 89) (1664 -1271 89) (1664 -1271 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153061" + "plane" "(1904 -1271 89) (1904 -1287 89) (1904 -1287 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153060" + "plane" "(1664 -1271 89) (1904 -1271 89) (1904 -1271 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153059" + "plane" "(1904 -1287 89) (1664 -1287 89) (1664 -1287 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618453" + side + { + "id" "153070" + "plane" "(1750 -1287 76) (1750 -1283 76) (1752 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153069" + "plane" "(1750 -1283 74) (1750 -1287 74) (1752 -1287 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153068" + "plane" "(1750 -1287 74) (1750 -1283 74) (1750 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153067" + "plane" "(1752 -1283 74) (1752 -1287 74) (1752 -1287 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153066" + "plane" "(1750 -1283 74) (1752 -1283 74) (1752 -1283 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153065" + "plane" "(1752 -1287 74) (1750 -1287 74) (1750 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618454" + side + { + "id" "153076" + "plane" "(1750 -1283 89) (1750 -1281 89) (1752 -1281 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153075" + "plane" "(1750 -1281 64) (1750 -1283 64) (1752 -1283 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153074" + "plane" "(1750 -1283 64) (1750 -1281 64) (1750 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153073" + "plane" "(1752 -1281 64) (1752 -1283 64) (1752 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153072" + "plane" "(1750 -1281 64) (1752 -1281 64) (1752 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153071" + "plane" "(1752 -1283 64) (1750 -1283 64) (1750 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618455" + side + { + "id" "153082" + "plane" "(1898 -1283 89) (1898 -1281 89) (1900 -1281 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153081" + "plane" "(1898 -1281 64) (1898 -1283 64) (1900 -1283 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153080" + "plane" "(1898 -1283 64) (1898 -1281 64) (1898 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153079" + "plane" "(1900 -1281 64) (1900 -1283 64) (1900 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153078" + "plane" "(1898 -1281 64) (1900 -1281 64) (1900 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153077" + "plane" "(1900 -1283 64) (1898 -1283 64) (1898 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618456" + side + { + "id" "153088" + "plane" "(1898 -1287 76) (1898 -1283 76) (1900 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153087" + "plane" "(1898 -1283 74) (1898 -1287 74) (1900 -1287 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153086" + "plane" "(1898 -1287 74) (1898 -1283 74) (1898 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153085" + "plane" "(1900 -1283 74) (1900 -1287 74) (1900 -1287 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153084" + "plane" "(1898 -1283 74) (1900 -1283 74) (1900 -1283 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153083" + "plane" "(1900 -1287 74) (1898 -1287 74) (1898 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618457" + side + { + "id" "153094" + "plane" "(1832 -1287 76) (1832 -1283 76) (1834 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153093" + "plane" "(1832 -1283 74) (1832 -1287 74) (1834 -1287 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153092" + "plane" "(1832 -1287 74) (1832 -1283 74) (1832 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153091" + "plane" "(1834 -1283 74) (1834 -1287 74) (1834 -1287 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153090" + "plane" "(1832 -1283 74) (1834 -1283 74) (1834 -1283 76)" + "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" "153089" + "plane" "(1834 -1287 74) (1832 -1287 74) (1832 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618458" + side + { + "id" "153100" + "plane" "(1832 -1283 89) (1832 -1281 89) (1834 -1281 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153099" + "plane" "(1832 -1281 64) (1832 -1283 64) (1834 -1283 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153098" + "plane" "(1832 -1283 64) (1832 -1281 64) (1832 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153097" + "plane" "(1834 -1281 64) (1834 -1283 64) (1834 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153096" + "plane" "(1832 -1281 64) (1834 -1281 64) (1834 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153095" + "plane" "(1834 -1283 64) (1832 -1283 64) (1832 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618459" + side + { + "id" "153106" + "plane" "(1668 -1287 76) (1668 -1283 76) (1670 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153105" + "plane" "(1668 -1283 74) (1668 -1287 74) (1670 -1287 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153104" + "plane" "(1668 -1287 74) (1668 -1283 74) (1668 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153103" + "plane" "(1670 -1283 74) (1670 -1287 74) (1670 -1287 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153102" + "plane" "(1668 -1283 74) (1670 -1283 74) (1670 -1283 76)" + "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" "153101" + "plane" "(1670 -1287 74) (1668 -1287 74) (1668 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618460" + side + { + "id" "153112" + "plane" "(1668 -1283 89) (1668 -1281 89) (1670 -1281 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153111" + "plane" "(1668 -1281 64) (1668 -1283 64) (1670 -1283 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153110" + "plane" "(1668 -1283 64) (1668 -1281 64) (1668 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153109" + "plane" "(1670 -1281 64) (1670 -1283 64) (1670 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153108" + "plane" "(1668 -1281 64) (1670 -1281 64) (1670 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153107" + "plane" "(1670 -1283 64) (1668 -1283 64) (1668 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618461" + side + { + "id" "153118" + "plane" "(1504 -1287 90) (1504 -1271 90) (1600 -1271 90)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153117" + "plane" "(1504 -1271 89) (1504 -1287 89) (1600 -1287 89)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153116" + "plane" "(1504 -1287 89) (1504 -1271 89) (1504 -1271 90)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 0 1 536] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153115" + "plane" "(1600 -1271 89) (1600 -1287 89) (1600 -1287 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153114" + "plane" "(1504 -1271 89) (1600 -1271 89) (1600 -1271 90)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153113" + "plane" "(1600 -1287 89) (1504 -1287 89) (1504 -1287 90)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 480] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618462" + side + { + "id" "153124" + "plane" "(1508 -1287 76) (1508 -1283 76) (1510 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153123" + "plane" "(1508 -1283 74) (1508 -1287 74) (1510 -1287 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153122" + "plane" "(1508 -1287 74) (1508 -1283 74) (1508 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153121" + "plane" "(1510 -1283 74) (1510 -1287 74) (1510 -1287 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153120" + "plane" "(1508 -1283 74) (1510 -1283 74) (1510 -1283 76)" + "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" "153119" + "plane" "(1510 -1287 74) (1508 -1287 74) (1508 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618463" + side + { + "id" "153130" + "plane" "(1508 -1283 89) (1508 -1281 89) (1510 -1281 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153129" + "plane" "(1508 -1281 64) (1508 -1283 64) (1510 -1283 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153128" + "plane" "(1508 -1283 64) (1508 -1281 64) (1508 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153127" + "plane" "(1510 -1281 64) (1510 -1283 64) (1510 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153126" + "plane" "(1508 -1281 64) (1510 -1281 64) (1510 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153125" + "plane" "(1510 -1283 64) (1508 -1283 64) (1508 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618464" + side + { + "id" "153136" + "plane" "(1594 -1283 89) (1594 -1281 89) (1596 -1281 89)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153135" + "plane" "(1594 -1281 64) (1594 -1283 64) (1596 -1283 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153134" + "plane" "(1594 -1283 64) (1594 -1281 64) (1594 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153133" + "plane" "(1596 -1281 64) (1596 -1283 64) (1596 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153132" + "plane" "(1594 -1281 64) (1596 -1281 64) (1596 -1281 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153131" + "plane" "(1596 -1283 64) (1594 -1283 64) (1594 -1283 89)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618465" + side + { + "id" "153142" + "plane" "(1594 -1287 76) (1594 -1283 76) (1596 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153141" + "plane" "(1594 -1283 74) (1594 -1287 74) (1596 -1287 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153140" + "plane" "(1594 -1287 74) (1594 -1283 74) (1594 -1283 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153139" + "plane" "(1596 -1283 74) (1596 -1287 74) (1596 -1287 76)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153138" + "plane" "(1594 -1283 74) (1596 -1283 74) (1596 -1283 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153137" + "plane" "(1596 -1287 74) (1594 -1287 74) (1594 -1287 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -48] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618466" + side + { + "id" "153148" + "plane" "(1504 -1322 86) (1504 -1320 86) (2064 -1320 86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153147" + "plane" "(1504 -1320 76) (1504 -1322 76) (2064 -1322 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153146" + "plane" "(1504 -1322 76) (1504 -1320 76) (1504 -1320 86)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153145" + "plane" "(2064 -1320 76) (2064 -1322 76) (2064 -1322 86)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153144" + "plane" "(1504 -1320 76) (2064 -1320 76) (2064 -1320 86)" + "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" "153143" + "plane" "(2064 -1322 76) (1504 -1322 76) (1504 -1322 86)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "618467" + "classname" "func_detail" + solid + { + "id" "618468" + side + { + "id" "153154" + "plane" "(1904 -1355 88) (1904 -1320 88) (1968 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153153" + "plane" "(1904 -1320 86) (1904 -1355 86) (1968 -1355 86)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153152" + "plane" "(1904 -1355 86) (1904 -1320 86) (1904 -1320 88)" + "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" "153151" + "plane" "(1968 -1320 86) (1968 -1355 86) (1968 -1355 88)" + "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" "153150" + "plane" "(1904 -1320 86) (1968 -1320 86) (1968 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153149" + "plane" "(1968 -1355 86) (1904 -1355 86) (1904 -1355 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618469" + side + { + "id" "153160" + "plane" "(1968 -1355 88) (1968 -1320 88) (2064 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153159" + "plane" "(1968 -1320 86) (1968 -1355 86) (2064 -1355 86)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153158" + "plane" "(1968 -1355 86) (1968 -1320 86) (1968 -1320 88)" + "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" "153157" + "plane" "(2064 -1320 86) (2064 -1355 86) (2064 -1355 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 64] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153156" + "plane" "(1968 -1320 86) (2064 -1320 86) (2064 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153155" + "plane" "(2064 -1355 86) (1968 -1355 86) (1968 -1355 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618470" + side + { + "id" "153166" + "plane" "(1504 -1355 88) (1504 -1320 88) (1600 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153165" + "plane" "(1504 -1320 86) (1504 -1355 86) (1600 -1355 86)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153164" + "plane" "(1504 -1355 86) (1504 -1320 86) (1504 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -64.002] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153163" + "plane" "(1600 -1320 86) (1600 -1355 86) (1600 -1355 88)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153162" + "plane" "(1504 -1320 86) (1600 -1320 86) (1600 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153161" + "plane" "(1600 -1355 86) (1504 -1355 86) (1504 -1355 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618471" + side + { + "id" "153172" + "plane" "(1600 -1355 88) (1600 -1320 88) (1664 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153171" + "plane" "(1600 -1320 86) (1600 -1355 86) (1664 -1355 86)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153170" + "plane" "(1600 -1355 86) (1600 -1320 86) (1600 -1320 88)" + "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" "153169" + "plane" "(1664 -1320 86) (1664 -1355 86) (1664 -1355 88)" + "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" "153168" + "plane" "(1600 -1320 86) (1664 -1320 86) (1664 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153167" + "plane" "(1664 -1355 86) (1600 -1355 86) (1600 -1355 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618472" + side + { + "id" "153178" + "plane" "(1664 -1355 88) (1664 -1320 88) (1904 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153177" + "plane" "(1664 -1320 86) (1664 -1355 86) (1904 -1355 86)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153176" + "plane" "(1664 -1355 86) (1664 -1320 86) (1664 -1320 88)" + "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" "153175" + "plane" "(1904 -1320 86) (1904 -1355 86) (1904 -1355 88)" + "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" "153174" + "plane" "(1664 -1320 86) (1904 -1320 86) (1904 -1320 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153173" + "plane" "(1904 -1355 86) (1664 -1355 86) (1664 -1355 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618473" + side + { + "id" "153184" + "plane" "(1968 -1320 102) (1968 -1304 102) (2064 -1304 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153183" + "plane" "(1968 -1304 101) (1968 -1320 101) (2064 -1320 101)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153182" + "plane" "(1968 -1320 101) (1968 -1304 101) (1968 -1304 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153181" + "plane" "(2064 -1304 101) (2064 -1320 101) (2064 -1320 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153180" + "plane" "(1968 -1304 101) (2064 -1304 101) (2064 -1304 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153179" + "plane" "(2064 -1320 101) (1968 -1320 101) (1968 -1320 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618474" + side + { + "id" "153190" + "plane" "(1972 -1320 88) (1972 -1316 88) (1974 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153189" + "plane" "(1972 -1316 86) (1972 -1320 86) (1974 -1320 86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153188" + "plane" "(1972 -1320 86) (1972 -1316 86) (1972 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153187" + "plane" "(1974 -1316 86) (1974 -1320 86) (1974 -1320 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153186" + "plane" "(1972 -1316 86) (1974 -1316 86) (1974 -1316 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" + } + side + { + "id" "153185" + "plane" "(1974 -1320 86) (1972 -1320 86) (1972 -1320 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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618475" + side + { + "id" "153196" + "plane" "(1972 -1316 101) (1972 -1314 101) (1974 -1314 101)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153195" + "plane" "(1972 -1314 76) (1972 -1316 76) (1974 -1316 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153194" + "plane" "(1972 -1316 76) (1972 -1314 76) (1972 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153193" + "plane" "(1974 -1314 76) (1974 -1316 76) (1974 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153192" + "plane" "(1972 -1314 76) (1974 -1314 76) (1974 -1314 101)" + "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" "153191" + "plane" "(1974 -1316 76) (1972 -1316 76) (1972 -1316 101)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618476" + side + { + "id" "153202" + "plane" "(2058 -1316 101) (2058 -1314 101) (2060 -1314 101)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153201" + "plane" "(2058 -1314 76) (2058 -1316 76) (2060 -1316 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153200" + "plane" "(2058 -1316 76) (2058 -1314 76) (2058 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153199" + "plane" "(2060 -1314 76) (2060 -1316 76) (2060 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153198" + "plane" "(2058 -1314 76) (2060 -1314 76) (2060 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153197" + "plane" "(2060 -1316 76) (2058 -1316 76) (2058 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618477" + side + { + "id" "153208" + "plane" "(2058 -1320 88) (2058 -1316 88) (2060 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153207" + "plane" "(2058 -1316 86) (2058 -1320 86) (2060 -1320 86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153206" + "plane" "(2058 -1320 86) (2058 -1316 86) (2058 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153205" + "plane" "(2060 -1316 86) (2060 -1320 86) (2060 -1320 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153204" + "plane" "(2058 -1316 86) (2060 -1316 86) (2060 -1316 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153203" + "plane" "(2060 -1320 86) (2058 -1320 86) (2058 -1320 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618478" + side + { + "id" "153214" + "plane" "(1664 -1320 102) (1664 -1304 102) (1904 -1304 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153213" + "plane" "(1664 -1304 101) (1664 -1320 101) (1904 -1320 101)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153212" + "plane" "(1664 -1320 101) (1664 -1304 101) (1664 -1304 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153211" + "plane" "(1904 -1304 101) (1904 -1320 101) (1904 -1320 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153210" + "plane" "(1664 -1304 101) (1904 -1304 101) (1904 -1304 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153209" + "plane" "(1904 -1320 101) (1664 -1320 101) (1664 -1320 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618479" + side + { + "id" "153220" + "plane" "(1750 -1320 88) (1750 -1316 88) (1752 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153219" + "plane" "(1750 -1316 86) (1750 -1320 86) (1752 -1320 86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153218" + "plane" "(1750 -1320 86) (1750 -1316 86) (1750 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153217" + "plane" "(1752 -1316 86) (1752 -1320 86) (1752 -1320 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153216" + "plane" "(1750 -1316 86) (1752 -1316 86) (1752 -1316 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153215" + "plane" "(1752 -1320 86) (1750 -1320 86) (1750 -1320 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618480" + side + { + "id" "153226" + "plane" "(1750 -1316 101) (1750 -1314 101) (1752 -1314 101)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153225" + "plane" "(1750 -1314 76) (1750 -1316 76) (1752 -1316 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153224" + "plane" "(1750 -1316 76) (1750 -1314 76) (1750 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153223" + "plane" "(1752 -1314 76) (1752 -1316 76) (1752 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153222" + "plane" "(1750 -1314 76) (1752 -1314 76) (1752 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153221" + "plane" "(1752 -1316 76) (1750 -1316 76) (1750 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618481" + side + { + "id" "153232" + "plane" "(1898 -1316 101) (1898 -1314 101) (1900 -1314 101)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153231" + "plane" "(1898 -1314 76) (1898 -1316 76) (1900 -1316 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153230" + "plane" "(1898 -1316 76) (1898 -1314 76) (1898 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153229" + "plane" "(1900 -1314 76) (1900 -1316 76) (1900 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153228" + "plane" "(1898 -1314 76) (1900 -1314 76) (1900 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153227" + "plane" "(1900 -1316 76) (1898 -1316 76) (1898 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618482" + side + { + "id" "153238" + "plane" "(1898 -1320 88) (1898 -1316 88) (1900 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153237" + "plane" "(1898 -1316 86) (1898 -1320 86) (1900 -1320 86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153236" + "plane" "(1898 -1320 86) (1898 -1316 86) (1898 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153235" + "plane" "(1900 -1316 86) (1900 -1320 86) (1900 -1320 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153234" + "plane" "(1898 -1316 86) (1900 -1316 86) (1900 -1316 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153233" + "plane" "(1900 -1320 86) (1898 -1320 86) (1898 -1320 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618483" + side + { + "id" "153244" + "plane" "(1832 -1320 88) (1832 -1316 88) (1834 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153243" + "plane" "(1832 -1316 86) (1832 -1320 86) (1834 -1320 86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153242" + "plane" "(1832 -1320 86) (1832 -1316 86) (1832 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153241" + "plane" "(1834 -1316 86) (1834 -1320 86) (1834 -1320 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153240" + "plane" "(1832 -1316 86) (1834 -1316 86) (1834 -1316 88)" + "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" "153239" + "plane" "(1834 -1320 86) (1832 -1320 86) (1832 -1320 88)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618484" + side + { + "id" "153250" + "plane" "(1832 -1316 101) (1832 -1314 101) (1834 -1314 101)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153249" + "plane" "(1832 -1314 76) (1832 -1316 76) (1834 -1316 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153248" + "plane" "(1832 -1316 76) (1832 -1314 76) (1832 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153247" + "plane" "(1834 -1314 76) (1834 -1316 76) (1834 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153246" + "plane" "(1832 -1314 76) (1834 -1314 76) (1834 -1314 101)" + "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" "153245" + "plane" "(1834 -1316 76) (1832 -1316 76) (1832 -1316 101)" + "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" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618485" + side + { + "id" "153256" + "plane" "(1668 -1320 88) (1668 -1316 88) (1670 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153255" + "plane" "(1668 -1316 86) (1668 -1320 86) (1670 -1320 86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153254" + "plane" "(1668 -1320 86) (1668 -1316 86) (1668 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153253" + "plane" "(1670 -1316 86) (1670 -1320 86) (1670 -1320 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153252" + "plane" "(1668 -1316 86) (1670 -1316 86) (1670 -1316 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" + } + side + { + "id" "153251" + "plane" "(1670 -1320 86) (1668 -1320 86) (1668 -1320 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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618486" + side + { + "id" "153262" + "plane" "(1668 -1316 101) (1668 -1314 101) (1670 -1314 101)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153261" + "plane" "(1668 -1314 76) (1668 -1316 76) (1670 -1316 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153260" + "plane" "(1668 -1316 76) (1668 -1314 76) (1668 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153259" + "plane" "(1670 -1314 76) (1670 -1316 76) (1670 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153258" + "plane" "(1668 -1314 76) (1670 -1314 76) (1670 -1314 101)" + "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" "153257" + "plane" "(1670 -1316 76) (1668 -1316 76) (1668 -1316 101)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618487" + side + { + "id" "153268" + "plane" "(1504 -1320 102) (1504 -1304 102) (1600 -1304 102)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153267" + "plane" "(1504 -1304 101) (1504 -1320 101) (1600 -1320 101)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153266" + "plane" "(1504 -1320 101) (1504 -1304 101) (1504 -1304 102)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153265" + "plane" "(1600 -1304 101) (1600 -1320 101) (1600 -1320 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153264" + "plane" "(1504 -1304 101) (1600 -1304 101) (1600 -1304 102)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153263" + "plane" "(1600 -1320 101) (1504 -1320 101) (1504 -1320 102)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618488" + side + { + "id" "153274" + "plane" "(1508 -1320 88) (1508 -1316 88) (1510 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153273" + "plane" "(1508 -1316 86) (1508 -1320 86) (1510 -1320 86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153272" + "plane" "(1508 -1320 86) (1508 -1316 86) (1508 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153271" + "plane" "(1510 -1316 86) (1510 -1320 86) (1510 -1320 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153270" + "plane" "(1508 -1316 86) (1510 -1316 86) (1510 -1316 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" + } + side + { + "id" "153269" + "plane" "(1510 -1320 86) (1508 -1320 86) (1508 -1320 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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618489" + side + { + "id" "153280" + "plane" "(1508 -1316 101) (1508 -1314 101) (1510 -1314 101)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153279" + "plane" "(1508 -1314 76) (1508 -1316 76) (1510 -1316 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153278" + "plane" "(1508 -1316 76) (1508 -1314 76) (1508 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153277" + "plane" "(1510 -1314 76) (1510 -1316 76) (1510 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153276" + "plane" "(1508 -1314 76) (1510 -1314 76) (1510 -1314 101)" + "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" "153275" + "plane" "(1510 -1316 76) (1508 -1316 76) (1508 -1316 101)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618490" + side + { + "id" "153286" + "plane" "(1594 -1316 101) (1594 -1314 101) (1596 -1314 101)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153285" + "plane" "(1594 -1314 76) (1594 -1316 76) (1596 -1316 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153284" + "plane" "(1594 -1316 76) (1594 -1314 76) (1594 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153283" + "plane" "(1596 -1314 76) (1596 -1316 76) (1596 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153282" + "plane" "(1594 -1314 76) (1596 -1314 76) (1596 -1314 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153281" + "plane" "(1596 -1316 76) (1594 -1316 76) (1594 -1316 101)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618491" + side + { + "id" "153292" + "plane" "(1594 -1320 88) (1594 -1316 88) (1596 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153291" + "plane" "(1594 -1316 86) (1594 -1320 86) (1596 -1320 86)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153290" + "plane" "(1594 -1320 86) (1594 -1316 86) (1594 -1316 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153289" + "plane" "(1596 -1316 86) (1596 -1320 86) (1596 -1320 88)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153288" + "plane" "(1594 -1316 86) (1596 -1316 86) (1596 -1316 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153287" + "plane" "(1596 -1320 86) (1594 -1320 86) (1594 -1320 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618492" + side + { + "id" "153298" + "plane" "(1504 -1355 98) (1504 -1353 98) (2064 -1353 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153297" + "plane" "(1504 -1353 88) (1504 -1355 88) (2064 -1355 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153296" + "plane" "(1504 -1355 88) (1504 -1353 88) (1504 -1353 98)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153295" + "plane" "(2064 -1353 88) (2064 -1355 88) (2064 -1355 98)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153294" + "plane" "(1504 -1353 88) (2064 -1353 88) (2064 -1353 98)" + "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" "153293" + "plane" "(2064 -1355 88) (1504 -1355 88) (1504 -1355 98)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "618493" + "classname" "func_detail" + solid + { + "id" "618494" + side + { + "id" "153304" + "plane" "(1904 -1388 100) (1904 -1353 100) (1968 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153303" + "plane" "(1904 -1353 98) (1904 -1388 98) (1968 -1388 98)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153302" + "plane" "(1904 -1388 98) (1904 -1353 98) (1904 -1353 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153301" + "plane" "(1968 -1353 98) (1968 -1388 98) (1968 -1388 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153300" + "plane" "(1904 -1353 98) (1968 -1353 98) (1968 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153299" + "plane" "(1968 -1388 98) (1904 -1388 98) (1904 -1388 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618495" + side + { + "id" "153310" + "plane" "(1968 -1388 100) (1968 -1353 100) (2064 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153309" + "plane" "(1968 -1353 98) (1968 -1388 98) (2064 -1388 98)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153308" + "plane" "(1968 -1388 98) (1968 -1353 98) (1968 -1353 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153307" + "plane" "(2064 -1353 98) (2064 -1388 98) (2064 -1388 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 56] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153306" + "plane" "(1968 -1353 98) (2064 -1353 98) (2064 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153305" + "plane" "(2064 -1388 98) (1968 -1388 98) (1968 -1388 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618496" + side + { + "id" "153316" + "plane" "(1504 -1388 100) (1504 -1353 100) (1600 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153315" + "plane" "(1504 -1353 98) (1504 -1388 98) (1600 -1388 98)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153314" + "plane" "(1504 -1388 98) (1504 -1353 98) (1504 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -56.002] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153313" + "plane" "(1600 -1353 98) (1600 -1388 98) (1600 -1388 100)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -56] 0.125" + "vaxis" "[0 0 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153312" + "plane" "(1504 -1353 98) (1600 -1353 98) (1600 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153311" + "plane" "(1600 -1388 98) (1504 -1388 98) (1504 -1388 100)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618497" + side + { + "id" "153322" + "plane" "(1600 -1388 100) (1600 -1353 100) (1664 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 88] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153321" + "plane" "(1600 -1353 98) (1600 -1388 98) (1664 -1388 98)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153320" + "plane" "(1600 -1388 98) (1600 -1353 98) (1600 -1353 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153319" + "plane" "(1664 -1353 98) (1664 -1388 98) (1664 -1388 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153318" + "plane" "(1600 -1353 98) (1664 -1353 98) (1664 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153317" + "plane" "(1664 -1388 98) (1600 -1388 98) (1600 -1388 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618498" + side + { + "id" "153328" + "plane" "(1664 -1388 100) (1664 -1353 100) (1904 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153327" + "plane" "(1664 -1353 98) (1664 -1388 98) (1904 -1388 98)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153326" + "plane" "(1664 -1388 98) (1664 -1353 98) (1664 -1353 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153325" + "plane" "(1904 -1353 98) (1904 -1388 98) (1904 -1388 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153324" + "plane" "(1664 -1353 98) (1904 -1353 98) (1904 -1353 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153323" + "plane" "(1904 -1388 98) (1664 -1388 98) (1664 -1388 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618499" + side + { + "id" "153334" + "plane" "(1968 -1353 114) (1968 -1337 114) (2064 -1337 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153333" + "plane" "(1968 -1337 113) (1968 -1353 113) (2064 -1353 113)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153332" + "plane" "(1968 -1353 113) (1968 -1337 113) (1968 -1337 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153331" + "plane" "(2064 -1337 113) (2064 -1353 113) (2064 -1353 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153330" + "plane" "(1968 -1337 113) (2064 -1337 113) (2064 -1337 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153329" + "plane" "(2064 -1353 113) (1968 -1353 113) (1968 -1353 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618500" + side + { + "id" "153340" + "plane" "(1972 -1353 100) (1972 -1349 100) (1974 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153339" + "plane" "(1972 -1349 98) (1972 -1353 98) (1974 -1353 98)" + "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" "153338" + "plane" "(1972 -1353 98) (1972 -1349 98) (1972 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153337" + "plane" "(1974 -1349 98) (1974 -1353 98) (1974 -1353 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153336" + "plane" "(1972 -1349 98) (1974 -1349 98) (1974 -1349 100)" + "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" "153335" + "plane" "(1974 -1353 98) (1972 -1353 98) (1972 -1353 100)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618501" + side + { + "id" "153346" + "plane" "(1972 -1349 113) (1972 -1347 113) (1974 -1347 113)" + "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" "153345" + "plane" "(1972 -1347 88) (1972 -1349 88) (1974 -1349 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" + } + side + { + "id" "153344" + "plane" "(1972 -1349 88) (1972 -1347 88) (1972 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153343" + "plane" "(1974 -1347 88) (1974 -1349 88) (1974 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153342" + "plane" "(1972 -1347 88) (1974 -1347 88) (1974 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153341" + "plane" "(1974 -1349 88) (1972 -1349 88) (1972 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618502" + side + { + "id" "153352" + "plane" "(2058 -1349 113) (2058 -1347 113) (2060 -1347 113)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153351" + "plane" "(2058 -1347 88) (2058 -1349 88) (2060 -1349 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153350" + "plane" "(2058 -1349 88) (2058 -1347 88) (2058 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153349" + "plane" "(2060 -1347 88) (2060 -1349 88) (2060 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153348" + "plane" "(2058 -1347 88) (2060 -1347 88) (2060 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153347" + "plane" "(2060 -1349 88) (2058 -1349 88) (2058 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618503" + side + { + "id" "153358" + "plane" "(2058 -1353 100) (2058 -1349 100) (2060 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153357" + "plane" "(2058 -1349 98) (2058 -1353 98) (2060 -1353 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153356" + "plane" "(2058 -1353 98) (2058 -1349 98) (2058 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153355" + "plane" "(2060 -1349 98) (2060 -1353 98) (2060 -1353 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153354" + "plane" "(2058 -1349 98) (2060 -1349 98) (2060 -1349 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153353" + "plane" "(2060 -1353 98) (2058 -1353 98) (2058 -1353 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618504" + side + { + "id" "153364" + "plane" "(1664 -1353 114) (1664 -1337 114) (1904 -1337 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153363" + "plane" "(1664 -1337 113) (1664 -1353 113) (1904 -1353 113)" + "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" "153362" + "plane" "(1664 -1353 113) (1664 -1337 113) (1664 -1337 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153361" + "plane" "(1904 -1337 113) (1904 -1353 113) (1904 -1353 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153360" + "plane" "(1664 -1337 113) (1904 -1337 113) (1904 -1337 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153359" + "plane" "(1904 -1353 113) (1664 -1353 113) (1664 -1353 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618505" + side + { + "id" "153370" + "plane" "(1750 -1353 100) (1750 -1349 100) (1752 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153369" + "plane" "(1750 -1349 98) (1750 -1353 98) (1752 -1353 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153368" + "plane" "(1750 -1353 98) (1750 -1349 98) (1750 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153367" + "plane" "(1752 -1349 98) (1752 -1353 98) (1752 -1353 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153366" + "plane" "(1750 -1349 98) (1752 -1349 98) (1752 -1349 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153365" + "plane" "(1752 -1353 98) (1750 -1353 98) (1750 -1353 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618506" + side + { + "id" "153376" + "plane" "(1750 -1349 113) (1750 -1347 113) (1752 -1347 113)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153375" + "plane" "(1750 -1347 88) (1750 -1349 88) (1752 -1349 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153374" + "plane" "(1750 -1349 88) (1750 -1347 88) (1750 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153373" + "plane" "(1752 -1347 88) (1752 -1349 88) (1752 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153372" + "plane" "(1750 -1347 88) (1752 -1347 88) (1752 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153371" + "plane" "(1752 -1349 88) (1750 -1349 88) (1750 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618507" + side + { + "id" "153382" + "plane" "(1898 -1349 113) (1898 -1347 113) (1900 -1347 113)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153381" + "plane" "(1898 -1347 88) (1898 -1349 88) (1900 -1349 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153380" + "plane" "(1898 -1349 88) (1898 -1347 88) (1898 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153379" + "plane" "(1900 -1347 88) (1900 -1349 88) (1900 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153378" + "plane" "(1898 -1347 88) (1900 -1347 88) (1900 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153377" + "plane" "(1900 -1349 88) (1898 -1349 88) (1898 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618508" + side + { + "id" "153388" + "plane" "(1898 -1353 100) (1898 -1349 100) (1900 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153387" + "plane" "(1898 -1349 98) (1898 -1353 98) (1900 -1353 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153386" + "plane" "(1898 -1353 98) (1898 -1349 98) (1898 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153385" + "plane" "(1900 -1349 98) (1900 -1353 98) (1900 -1353 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153384" + "plane" "(1898 -1349 98) (1900 -1349 98) (1900 -1349 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153383" + "plane" "(1900 -1353 98) (1898 -1353 98) (1898 -1353 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618509" + side + { + "id" "153394" + "plane" "(1832 -1353 100) (1832 -1349 100) (1834 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153393" + "plane" "(1832 -1349 98) (1832 -1353 98) (1834 -1353 98)" + "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" "153392" + "plane" "(1832 -1353 98) (1832 -1349 98) (1832 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153391" + "plane" "(1834 -1349 98) (1834 -1353 98) (1834 -1353 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153390" + "plane" "(1832 -1349 98) (1834 -1349 98) (1834 -1349 100)" + "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" "153389" + "plane" "(1834 -1353 98) (1832 -1353 98) (1832 -1353 100)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618510" + side + { + "id" "153400" + "plane" "(1832 -1349 113) (1832 -1347 113) (1834 -1347 113)" + "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" "153399" + "plane" "(1832 -1347 88) (1832 -1349 88) (1834 -1349 88)" + "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" "153398" + "plane" "(1832 -1349 88) (1832 -1347 88) (1832 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153397" + "plane" "(1834 -1347 88) (1834 -1349 88) (1834 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153396" + "plane" "(1832 -1347 88) (1834 -1347 88) (1834 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153395" + "plane" "(1834 -1349 88) (1832 -1349 88) (1832 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618511" + side + { + "id" "153406" + "plane" "(1668 -1353 100) (1668 -1349 100) (1670 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153405" + "plane" "(1668 -1349 98) (1668 -1353 98) (1670 -1353 98)" + "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" "153404" + "plane" "(1668 -1353 98) (1668 -1349 98) (1668 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153403" + "plane" "(1670 -1349 98) (1670 -1353 98) (1670 -1353 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153402" + "plane" "(1668 -1349 98) (1670 -1349 98) (1670 -1349 100)" + "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" "153401" + "plane" "(1670 -1353 98) (1668 -1353 98) (1668 -1353 100)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618512" + side + { + "id" "153412" + "plane" "(1668 -1349 113) (1668 -1347 113) (1670 -1347 113)" + "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" "153411" + "plane" "(1668 -1347 88) (1668 -1349 88) (1670 -1349 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" + } + side + { + "id" "153410" + "plane" "(1668 -1349 88) (1668 -1347 88) (1668 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153409" + "plane" "(1670 -1347 88) (1670 -1349 88) (1670 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153408" + "plane" "(1668 -1347 88) (1670 -1347 88) (1670 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153407" + "plane" "(1670 -1349 88) (1668 -1349 88) (1668 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618513" + side + { + "id" "153418" + "plane" "(1504 -1353 114) (1504 -1337 114) (1600 -1337 114)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153417" + "plane" "(1504 -1337 113) (1504 -1353 113) (1600 -1353 113)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153416" + "plane" "(1504 -1353 113) (1504 -1337 113) (1504 -1337 114)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153415" + "plane" "(1600 -1337 113) (1600 -1353 113) (1600 -1353 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153414" + "plane" "(1504 -1337 113) (1600 -1337 113) (1600 -1337 114)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153413" + "plane" "(1600 -1353 113) (1504 -1353 113) (1504 -1353 114)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618514" + side + { + "id" "153424" + "plane" "(1508 -1353 100) (1508 -1349 100) (1510 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153423" + "plane" "(1508 -1349 98) (1508 -1353 98) (1510 -1353 98)" + "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" "153422" + "plane" "(1508 -1353 98) (1508 -1349 98) (1508 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153421" + "plane" "(1510 -1349 98) (1510 -1353 98) (1510 -1353 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153420" + "plane" "(1508 -1349 98) (1510 -1349 98) (1510 -1349 100)" + "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" "153419" + "plane" "(1510 -1353 98) (1508 -1353 98) (1508 -1353 100)" + "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" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618515" + side + { + "id" "153430" + "plane" "(1508 -1349 113) (1508 -1347 113) (1510 -1347 113)" + "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" "153429" + "plane" "(1508 -1347 88) (1508 -1349 88) (1510 -1349 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" + } + side + { + "id" "153428" + "plane" "(1508 -1349 88) (1508 -1347 88) (1508 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153427" + "plane" "(1510 -1347 88) (1510 -1349 88) (1510 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153426" + "plane" "(1508 -1347 88) (1510 -1347 88) (1510 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153425" + "plane" "(1510 -1349 88) (1508 -1349 88) (1508 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618516" + side + { + "id" "153436" + "plane" "(1594 -1349 113) (1594 -1347 113) (1596 -1347 113)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153435" + "plane" "(1594 -1347 88) (1594 -1349 88) (1596 -1349 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153434" + "plane" "(1594 -1349 88) (1594 -1347 88) (1594 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153433" + "plane" "(1596 -1347 88) (1596 -1349 88) (1596 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153432" + "plane" "(1594 -1347 88) (1596 -1347 88) (1596 -1347 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153431" + "plane" "(1596 -1349 88) (1594 -1349 88) (1594 -1349 113)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618517" + side + { + "id" "153442" + "plane" "(1594 -1353 100) (1594 -1349 100) (1596 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153441" + "plane" "(1594 -1349 98) (1594 -1353 98) (1596 -1353 98)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153440" + "plane" "(1594 -1353 98) (1594 -1349 98) (1594 -1349 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153439" + "plane" "(1596 -1349 98) (1596 -1353 98) (1596 -1353 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153438" + "plane" "(1594 -1349 98) (1596 -1349 98) (1596 -1349 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153437" + "plane" "(1596 -1353 98) (1594 -1353 98) (1594 -1353 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "618518" + side + { + "id" "153448" + "plane" "(1504 -1388 110) (1504 -1386 110) (2064 -1386 110)" + "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" "153447" + "plane" "(1504 -1386 100) (1504 -1388 100) (2064 -1388 100)" + "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" "153446" + "plane" "(1504 -1388 100) (1504 -1386 100) (1504 -1386 110)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153445" + "plane" "(2064 -1386 100) (2064 -1388 100) (2064 -1388 110)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "153444" + "plane" "(1504 -1386 100) (2064 -1386 100) (2064 -1386 110)" + "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" "153443" + "plane" "(2064 -1388 100) (1504 -1388 100) (1504 -1388 110)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "236 153 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "236 153 0" + "groupid" "618257" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +hidden +{ + entity + { + "id" "619694" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1337 -1394 112.25" + editor + { + "color" "152 225 0" + "groupid" "619693" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +hidden +{ + entity + { + "id" "619698" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1371 -1394 112.25" + editor + { + "color" "152 225 0" + "groupid" "619693" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +hidden +{ + entity + { + "id" "619702" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "825 -1394 112.25" + editor + { + "color" "152 225 0" + "groupid" "619692" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +hidden +{ + entity + { + "id" "608518" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_straight_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "481 -3834 224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "608522" + "classname" "prop_static" + "angles" "90 180 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "ignorenormals" "0" + "model" "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001b_straight_256.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "500 -3834 224" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "583972" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "1 -0 0" + "BasisOrigin" "655 -1202 352" + "BasisU" "0 1 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "370984 370978 370989 370994 370972" + "StartU" "0" + "StartV" "1" + "uv0" "-132.249 -133.5 0" + "uv1" "-132.249 133.5 0" + "uv2" "132.249 133.5 0" + "uv3" "132.249 -133.5 0" + "origin" "655 -1202 352" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "584102" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0.732782 -0.680463 -0" + "BasisOrigin" "216 -4148 75.7006" + "BasisU" "-0.680463 0.732782 0" + "BasisV" "0 0 -1" + "EndU" "0" + "EndV" "1" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "147803 147815" + "StartU" "1" + "StartV" "0" + "uv0" "-43.3187 -36.7006 0" + "uv1" "-43.3187 36.7006 0" + "uv2" "43.3187 36.7006 0" + "uv3" "43.3187 -36.7006 0" + "origin" "216 -4148 75.7006" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 10500]" + } +} +hidden +{ + entity + { + "id" "584198" + "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/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "216 33 65" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1285 -5500 28.86" + editor + { + "color" "108 197 0" + "groupid" "584197" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "584202" + "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/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1285 -5504 56" + editor + { + "color" "108 197 0" + "groupid" "584197" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "577505" + "classname" "func_detail" + solid + { + "id" "577502" + side + { + "id" "147300" + "plane" "(2176 -5504 256) (2176 -5488 256) (2192 -5488 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" "147299" + "plane" "(2176 -5488 96) (2176 -5504 96) (2192 -5504 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" "147298" + "plane" "(2176 -5504 96) (2176 -5488 96) (2176 -5488 256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147297" + "plane" "(2192 -5488 96) (2192 -5504 96) (2192 -5504 256)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147296" + "plane" "(2176 -5488 96) (2192 -5488 96) (2192 -5488 256)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_004" + "uaxis" "[0 0 1 -192] 0.125" + "vaxis" "[1 0 0 82] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "147295" + "plane" "(2192 -5504 96) (2176 -5504 96) (2176 -5504 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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +hidden +{ + entity + { + "id" "570235" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-1927 -2085 461" + editor + { + "color" "234 211 0" + "groupid" "1185061" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +hidden +{ + entity + { + "id" "570648" + "classname" "prop_static" + "angles" "0 159 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_fire_extinguisher/nuke_fire_extinguisher.mdl" + "renderamt" "255" + "rendercolor" "216 33 65" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2299.36 -4728.41 102.517" + editor + { + "color" "108 197 0" + "groupid" "570647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +hidden +{ + entity + { + "id" "570652" + "classname" "prop_static" + "angles" "0 159 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/props/de_nuke/hr_nuke/signs/sign_fire_extinguisher_001_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2303.09 -4729.84 129.657" + editor + { + "color" "108 197 0" + "groupid" "570647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3500]" + } + } +} +entity +{ + "id" "570843" + "classname" "func_detail" + solid + { + "id" "4522704" + side + { + "id" "341948" + "plane" "(2056 -3424 208) (2050 -3425 208) (2044.98 -3429.02 208)" + "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" "341947" + "plane" "(2040 -3440 208) (2041 -3434 208) (2041 -3434 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.164399 0.986394 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341946" + "plane" "(2041 -3434 208) (2044.98 -3429.02 208) (2045 -3429 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.624695 0.780868 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341945" + "plane" "(2044.98 -3429.02 208) (2050 -3425 208) (2050 -3425 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.780513 0.625139 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341944" + "plane" "(2050 -3425 208) (2056 -3424 208) (2056 -3424 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.986394 0.164399 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341943" + "plane" "(2056 -3456 208) (2050 -3455 208) (2050.02 -3455 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.986394 0.1644 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341942" + "plane" "(2050 -3455 208) (2045.03 -3451.04 208) (2045 -3451 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.780869 0.624695 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341941" + "plane" "(2045.02 -3451.03 208) (2041 -3446 208) (2041 -3446 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.624694 0.780869 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341940" + "plane" "(2041 -3446 208) (2040 -3440 208) (2040 -3440 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.164399 0.986394 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341939" + "plane" "(2056 -3424 208) (2056 -3456 208) (2056 -3456 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341938" + "plane" "(2056 -3456 358) (2050.01 -3455 358) (2045 -3451 358)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892852" + side + { + "id" "349313" + "plane" "(2041 -3434 358) (2041 -3434 377) (2040 -3440 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.164399 0.986394 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349312" + "plane" "(2045 -3429 358) (2045 -3429 377) (2041 -3434 377)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.624695 0.780868 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349311" + "plane" "(2050 -3425 358) (2050 -3425 377) (2045 -3429 377)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.780513 0.625139 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349310" + "plane" "(2056 -3424 358) (2056 -3424 377) (2050 -3425 377)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.986394 0.164399 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349309" + "plane" "(2050.03 -3455 358) (2050.02 -3455 377) (2056 -3456 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.986394 0.1644 0 -42] 0.125" + "vaxis" "[0 0 -1 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349308" + "plane" "(2045 -3451 358) (2045.01 -3451.01 377) (2050.03 -3455 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.782497 0.622653 0 -42.1587] 0.125" + "vaxis" "[0 0 -1 64.0133] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349307" + "plane" "(2045 -3451.01 377) (2045 -3451 358) (2041 -3446 358)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.624694 0.780869 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349306" + "plane" "(2040 -3440 358) (2040 -3440 377) (2041 -3446 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.164399 0.986394 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349305" + "plane" "(2056 -3456 358) (2056 -3456 377) (2056 -3424 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349304" + "plane" "(2056 -3424 358) (2050 -3425 358) (2044.99 -3429.01 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349303" + "plane" "(2056 -3456 377) (2050.03 -3455 377) (2045.01 -3451.02 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892851" + side + { + "id" "349302" + "plane" "(2056 -3456 382) (2050.02 -3455 382) (2045.02 -3451.03 382)" + "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" "349301" + "plane" "(2041 -3434 377) (2041 -3434 382) (2040 -3440 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.164399 0.986394 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349300" + "plane" "(2045 -3429 377) (2045 -3429 382) (2041 -3434 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.624695 0.780868 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349299" + "plane" "(2050 -3425 377) (2050 -3425 382) (2045 -3429 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.780513 0.625139 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349298" + "plane" "(2056 -3424 377) (2056 -3424 382) (2050 -3425 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.986394 0.164399 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349297" + "plane" "(2050.02 -3455 377) (2050.02 -3455 382) (2056 -3456 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.986394 0.1644 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349296" + "plane" "(2045.01 -3451.01 377) (2045.01 -3451.02 382) (2050.02 -3455 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.782497 0.622653 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349295" + "plane" "(2041 -3446 382) (2045.01 -3451.02 382) (2045 -3451.01 377)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.624694 0.780869 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349294" + "plane" "(2040 -3440 377) (2040 -3440 382) (2041 -3446 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.164399 0.986394 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349293" + "plane" "(2056 -3456 377) (2056 -3456 382) (2056 -3424 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349292" + "plane" "(2056 -3424 377) (2050 -3425 377) (2044.99 -3429.01 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 -2268]" + } +} +entity +{ + "id" "570855" + "classname" "func_detail" + solid + { + "id" "4522671" + side + { + "id" "341926" + "plane" "(1808 -3456 208) (1814 -3455 208) (1819 -3451 208)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[-1 0 0 63.9985] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341925" + "plane" "(1824 -3440 208) (1823 -3446 208) (1823 -3446 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.164399 -0.986394 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341924" + "plane" "(1823 -3446 208) (1819 -3451 208) (1819 -3450.99 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.624695 -0.780868 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341923" + "plane" "(1819 -3451 208) (1814 -3455 208) (1814 -3455 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.780513 -0.625139 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341922" + "plane" "(1814 -3455 208) (1808 -3456 208) (1808 -3456 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[-0.986394 -0.164399 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341921" + "plane" "(1808 -3424 208) (1814 -3425 208) (1813.98 -3425 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.986394 -0.1644 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341920" + "plane" "(1814 -3425 208) (1819.01 -3429.01 208) (1819.03 -3429.04 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.780869 -0.624695 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341919" + "plane" "(1819 -3429 208) (1823 -3434 208) (1823 -3434 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.624694 -0.780869 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341918" + "plane" "(1823 -3434 208) (1824 -3440 208) (1824 -3440 358)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_006" + "uaxis" "[0.164399 -0.986394 0 949] 0.125" + "vaxis" "[0 0 -1 -546] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341917" + "plane" "(1808 -3456 208) (1808 -3424 208) (1808 -3424 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341916" + "plane" "(1808 -3424 358) (1813.99 -3425 358) (1819.02 -3429.03 358)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892886" + side + { + "id" "349359" + "plane" "(1823 -3446 358) (1823 -3446 377) (1824 -3440 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.164399 -0.986394 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349358" + "plane" "(1819 -3450.98 358) (1819 -3450.98 377) (1823 -3446 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.624695 -0.780868 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349357" + "plane" "(1814 -3455 358) (1814 -3455 377) (1819 -3451 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.780513 -0.625139 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349356" + "plane" "(1808 -3456 358) (1808 -3456 377) (1814 -3455 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[-0.986394 -0.164399 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349355" + "plane" "(1813.98 -3425 358) (1813.98 -3425 377) (1808 -3424 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.986394 -0.1644 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349354" + "plane" "(1819.03 -3429.05 358) (1819.03 -3429.05 377) (1813.98 -3425 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.780869 -0.624695 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349353" + "plane" "(1823 -3434 358) (1823 -3434 377) (1819.04 -3429.05 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.624694 -0.780869 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349352" + "plane" "(1824 -3440 358) (1824 -3440 377) (1823 -3434 377)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_002" + "uaxis" "[0.164399 -0.986394 0 208] 0.125" + "vaxis" "[0 0 -1 59] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349351" + "plane" "(1808 -3424 358) (1808 -3424 377) (1808 -3456 377)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349350" + "plane" "(1808 -3456 358) (1814 -3455 358) (1819 -3451 358)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349349" + "plane" "(1808 -3424 377) (1813.98 -3425 377) (1819.03 -3429.04 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892885" + side + { + "id" "349348" + "plane" "(1808 -3424 382) (1813.98 -3425 382) (1819.03 -3429.04 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[-1 0 0 63.9985] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349347" + "plane" "(1823 -3446 377) (1823 -3446 382) (1824 -3440 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.164399 -0.986394 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349346" + "plane" "(1819 -3450.98 377) (1819 -3450.98 382) (1823 -3446 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.624695 -0.780868 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349345" + "plane" "(1814 -3455 377) (1814 -3455 382) (1819 -3451 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.780513 -0.625139 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349344" + "plane" "(1808 -3456 377) (1808 -3456 382) (1814 -3455 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.986394 -0.164399 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349343" + "plane" "(1813.98 -3425 377) (1813.98 -3425 382) (1808 -3424 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.986394 -0.1644 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349342" + "plane" "(1819.03 -3429.05 377) (1819.03 -3429.05 382) (1813.98 -3425 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.780869 -0.624695 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349341" + "plane" "(1823 -3434 377) (1823 -3434 382) (1819.04 -3429.05 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.624694 -0.780869 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349340" + "plane" "(1824 -3440 377) (1824 -3440 382) (1823 -3434 382)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.164399 -0.986394 0 306] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349339" + "plane" "(1808 -3424 377) (1808 -3424 382) (1808 -3456 382)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349338" + "plane" "(1808 -3456 377) (1814 -3455 377) (1819 -3451 377)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1500 -2268]" + } +} +hidden +{ + entity + { + "id" "572919" + "classname" "prop_static" + "angles" "0 102.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/apollo_flag.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2376.27 -5264.58 75" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 13000]" + } + } +} +entity +{ + "id" "564503" + "classname" "sky_camera" + "angles" "0 0 0" + "fogblend" "0" + "fogcolor" "97 142 191" + "fogcolor2" "255 255 255" + "fogdir" "1 0 0" + "fogenable" "1" + "fogend" "9000" + "fogmaxdensity" ".8" + "fogstart" "100.0" + "HDRColorScale" "1.0" + "scale" "16" + "use_angles" "0" + "origin" "9000.69 8757.37 5155" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 11500]" + } +} +hidden +{ + entity + { + "id" "564560" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9571.69 8453 5151.75" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "564583" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_skybox_buildings/nuke_skybox_warehouse03.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9517.69 8330 5151.75" + editor + { + "color" "210 139 0" + "groupid" "4130210" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "564595" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8995.71 8183 5151" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "564614" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "9080.69 8175.58 5151.25" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +hidden +{ + entity + { + "id" "564618" + "classname" "prop_static" + "angles" "0 304.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_fixture_pole_02_skybox.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "8926.04 8179.35 5151.25" + editor + { + "color" "210 139 0" + "groupid" "4130529" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -6268]" + } + } +} +entity +{ + "id" "530970" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 228 179 50" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "50.5 0 -180" + "pitch" "50.5" + "spawnflags" "0" + "style" "0" + "origin" "-383 -2594 -20.8776" + editor + { + "color" "0 176 185" + "groupid" "531536" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "530975" + "classname" "prop_static" + "angles" "-90 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/floodlight.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-388.92 -2594 -32" + editor + { + "color" "0 176 185" + "groupid" "531536" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -15268]" + } + } +} +entity +{ + "id" "530979" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 234 210" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "-384.42 -2594 -24.1453" + editor + { + "color" "0 176 185" + "groupid" "531536" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 7000]" + } +} +hidden +{ + entity + { + "id" "533451" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "409.298 -2304 144" + editor + { + "color" "252 169 0" + "groupid" "533538" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "533470" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow04.vmt" + "renderamt" "255" + "rendercolor" "215 252 255" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "409.298 -2304 144" + editor + { + "color" "252 169 0" + "groupid" "533538" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "533491" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "215 252 255 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "409.298 -2304 139" + editor + { + "color" "252 169 0" + "groupid" "533538" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "533579" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow04.vmt" + "renderamt" "255" + "rendercolor" "215 252 255" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "409.298 -2560 144" + editor + { + "color" "252 169 0" + "groupid" "533578" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "533582" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "215 252 255 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "409.298 -2560 139" + editor + { + "color" "252 169 0" + "groupid" "533578" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +hidden +{ + entity + { + "id" "533587" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "409.298 -2560 144" + editor + { + "color" "252 169 0" + "groupid" "533578" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "533592" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow04.vmt" + "renderamt" "255" + "rendercolor" "215 252 255" + "renderfx" "0" + "rendermode" "9" + "spawnflags" "0" + "origin" "409.298 -2432 144" + editor + { + "color" "252 169 0" + "groupid" "533591" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +entity +{ + "id" "533595" + "classname" "light_spot" + "_cone" "45" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "215 252 255 100" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "409.298 -2432 139" + editor + { + "color" "252 169 0" + "groupid" "533591" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -12268]" + } +} +hidden +{ + entity + { + "id" "533600" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "409.298 -2432 144" + editor + { + "color" "252 169 0" + "groupid" "533591" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +hidden +{ + entity + { + "id" "517574" + "classname" "prop_static" + "angles" "34.6223 187.084 -23.4919" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/apollo_14_command_capsule.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-244 -2633 25" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +entity +{ + "id" "507051" + "classname" "func_detail" + solid + { + "id" "5048160" + side + { + "id" "350502" + "plane" "(-496 -4400 112) (-496 -4384 112) (-402 -4384 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" "350501" + "plane" "(-496 -4384 104) (-496 -4384 112) (-496 -4400 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" "350500" + "plane" "(-402 -4400 104) (-402 -4400 112) (-402 -4384 112)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350499" + "plane" "(-402 -4384 104) (-402 -4384 112) (-496 -4384 112)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350498" + "plane" "(-496 -4400 104) (-496 -4400 112) (-402 -4400 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" "350497" + "plane" "(-496 -4384 104) (-496 -4400 104) (-402 -4400 104)" + "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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5048161" + side + { + "id" "350508" + "plane" "(-496 -4384 0) (-496 -4400 0) (-402 -4400 0)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350507" + "plane" "(-496 -4400 0) (-496 -4384 0) (-496 -4384 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" "350506" + "plane" "(-402 -4384 0) (-402 -4400 0) (-402 -4400 8)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350505" + "plane" "(-496 -4384 0) (-402 -4384 0) (-402 -4384 8)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[-1 0 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350504" + "plane" "(-402 -4400 0) (-496 -4400 0) (-496 -4400 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" "350503" + "plane" "(-496 -4400 8) (-496 -4384 8) (-402 -4384 8)" + "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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5048159" + side + { + "id" "350496" + "plane" "(-496 -4384 8) (-496 -4384 104) (-496 -4400 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350495" + "plane" "(-402 -4400 8) (-402 -4400 104) (-402 -4384 104)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[0 1 0 16] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350494" + "plane" "(-402 -4384 8) (-402 -4384 104) (-496 -4384 104)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS" + "uaxis" "[-1 0 0 16] 0.125" + "vaxis" "[0 0 -1 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "350493" + "plane" "(-496 -4400 8) (-496 -4400 104) (-402 -4400 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" "350492" + "plane" "(-496 -4384 8) (-496 -4400 8) (-402 -4400 8)" + "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" "350491" + "plane" "(-496 -4400 104) (-496 -4384 104) (-402 -4384 104)" + "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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +entity +{ + "id" "484896" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-168 -5960 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "466267" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "-280 -4248 -224" + "BasisU" "-4.37114e-08 1 0" + "BasisV" "-1 -4.37114e-08 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "341127" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -64 0" + "uv1" "-64 64 0" + "uv2" "64 64 0" + "uv3" "64 -64 0" + "origin" "-280 -4248 -224" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "446886" + "classname" "func_detail" + solid + { + "id" "292471" + side + { + "id" "127810" + "plane" "(-65.7559 -3552 74) (-68.9408 -3544.74 74) (-68.9387 -3544.75 150)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.401862 -0.915699 0 128] 0.151" + "vaxis" "[0 0 -1 -42] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127809" + "plane" "(-68.9387 -3544.75 150) (-68.9408 -3544.74 74) (-72.1873 -3531.81 74)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.243467 -0.969908 0 -192.881] 0.151" + "vaxis" "[0 0 -1 -42.1522] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127808" + "plane" "(-72.1867 -3531.81 150) (-72.1874 -3531.81 74) (-73 -3517 74)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.0547885 -0.998496 0 -441.192] 0.151" + "vaxis" "[0 0 -1 -41.9258] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127807" + "plane" "(-73 -3517 150) (-73 -3517 74) (-72 -3502 74)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[-0.0665187 -0.997784 0 -486.356] 0.151" + "vaxis" "[0 0 -1 -41.6182] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127806" + "plane" "(-72 -3502 150) (-72 -3502 74) (-69 -3489 74)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[-0.22486 -0.974389 0 -19.2962] 0.151" + "vaxis" "[0 0 -1 -41.6182] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127805" + "plane" "(-69 -3488.99 150) (-69 -3488.99 74) (-65.7924 -3482 74)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[-0.417083 -0.908867 0 381.365] 0.151" + "vaxis" "[0 0 -1 -41.6182] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127804" + "plane" "(-64 -3482 74) (-65.791 -3482 74) (-69 -3489 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127803" + "plane" "(-64 -3552 150) (-65.7598 -3552 150) (-68.9375 -3544.76 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127802" + "plane" "(-65.7896 -3482 150) (-65.7896 -3482 74) (-64 -3482 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127801" + "plane" "(-64 -3552 74) (-65.7548 -3552 74) (-65.7571 -3552 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127800" + "plane" "(-64 -3482 74) (-64 -3552 74) (-64 -3552 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "292475" + side + { + "id" "127816" + "plane" "(-64 -3554 74) (-64.873 -3554 74) (-64.873 -3554 150)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.845145 -0.534536 0 27.2816] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127815" + "plane" "(-64.875 -3554 150) (-64.875 -3554 74) (-65.7532 -3552 74)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.425776 -0.904829 0 13.7587] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127814" + "plane" "(-64 -3552 74) (-65.752 -3552 74) (-64.875 -3554 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127813" + "plane" "(-64 -3554 150) (-64.8711 -3554 150) (-65.7493 -3552 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127812" + "plane" "(-65.75 -3552 150) (-65.75 -3552 74) (-64 -3552 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127811" + "plane" "(-64 -3552 74) (-64 -3554 74) (-64 -3554 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "292472" + side + { + "id" "127827" + "plane" "(-64 -3554 153) (-64.8711 -3554 153) (-68.9493 -3544.71 153)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 -11] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127826" + "plane" "(-64 -3554 150) (-64.875 -3554 150) (-64.875 -3554 153)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.845145 -0.534536 0 0.423351] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127825" + "plane" "(-68.9512 -3544.71 150) (-68.9512 -3544.71 153) (-64.8691 -3554 153)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.425776 -0.904829 0 13.868] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127824" + "plane" "(-72.1875 -3531.8 150) (-72.1875 -3531.8 153) (-68.9512 -3544.71 153)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.243417 -0.969922 0 10.7012] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127823" + "plane" "(-73 -3517 150) (-73 -3517 153) (-72.1877 -3531.8 153)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.0548161 -0.998496 0 12.3345] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127822" + "plane" "(-72 -3502 150) (-72 -3502 153) (-73 -3517 153)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.0548161 -0.998496 0 24.4748] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127821" + "plane" "(-69 -3489 150) (-69 -3489 153) (-72 -3502 153)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.243417 -0.969922 0 5.51595] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127820" + "plane" "(-64.875 -3480 150) (-64.875 -3480 153) (-69 -3489 153)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.425776 -0.904829 0 30.0569] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127819" + "plane" "(-64 -3480 153) (-64.875 -3480 153) (-64.875 -3480 150)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.845145 -0.534536 0 8.52405] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127818" + "plane" "(-64 -3480 150) (-64.873 -3480 150) (-69 -3489 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127817" + "plane" "(-64 -3554 150) (-64 -3554 153) (-64 -3480 153)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "292474" + side + { + "id" "127833" + "plane" "(-65.793 -3482 74) (-64.874 -3480 74) (-64.874 -3480 150)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.425776 -0.904829 0 30.0569] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127832" + "plane" "(-64.8711 -3480 150) (-64.8711 -3480 74) (-64 -3480 74)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.845145 -0.534536 0 23.666] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127831" + "plane" "(-64 -3480 74) (-64.8711 -3480 74) (-65.7891 -3482 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127830" + "plane" "(-64 -3482 150) (-65.7871 -3482 150) (-64.8691 -3480 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127829" + "plane" "(-64 -3482 74) (-65.7891 -3482 74) (-65.7891 -3482 150)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127828" + "plane" "(-64 -3480 150) (-64 -3480 74) (-64 -3482 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "292473" + side + { + "id" "127844" + "plane" "(-64 -3480 71) (-64.873 -3480 71) (-69 -3489 71)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 -11] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127843" + "plane" "(-64 -3554 71) (-64.8711 -3554 71) (-64.8711 -3554 74)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.845145 -0.534536 0 27.2816] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127842" + "plane" "(-64.8691 -3554 74) (-64.8691 -3554 71) (-68.9382 -3544.74 71)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.425776 -0.904829 0 13.7587] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127841" + "plane" "(-68.9363 -3544.75 74) (-68.9363 -3544.75 71) (-72.1864 -3531.8 71)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.243417 -0.969922 0 10.7012] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127840" + "plane" "(-72.1863 -3531.8 74) (-72.1863 -3531.8 71) (-73 -3517 71)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.0548161 -0.998496 0 12.3345] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127839" + "plane" "(-73 -3517 74) (-73 -3517 71) (-72 -3502 71)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.0548161 -0.998496 0 24.4748] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127838" + "plane" "(-72 -3502 74) (-72 -3502 71) (-69 -3489 71)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.243417 -0.969922 0 5.51595] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127837" + "plane" "(-69 -3489 74) (-69 -3489 71) (-64.8707 -3480 71)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.425776 -0.904829 0 30.0569] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127836" + "plane" "(-64.8713 -3480 74) (-64.8713 -3480 71) (-64 -3480 71)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.845145 -0.534536 0 8.52405] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127835" + "plane" "(-64 -3554 74) (-64.8711 -3554 74) (-68.9356 -3544.75 74)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "127834" + "plane" "(-64 -3480 74) (-64 -3480 71) (-64 -3554 71)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -5268]" + } +} +entity +{ + "id" "451474" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "186.5 -2904 379.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "450948" + side + { + "id" "128856" + "plane" "(162 -2903 414) (211 -2903 414) (211 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128855" + "plane" "(162 -2905 345) (211 -2905 345) (211 -2903 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128854" + "plane" "(162 -2903 414) (162 -2905 414) (162 -2905 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128853" + "plane" "(211 -2903 345) (211 -2905 345) (211 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128852" + "plane" "(211 -2903 414) (162 -2903 414) (162 -2903 345)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 78.3673] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128851" + "plane" "(211 -2905 345) (162 -2905 345) (162 -2905 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -78.3674] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 11500]" + } +} +entity +{ + "id" "451482" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "237.5 -2904 379.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "450951" + side + { + "id" "128862" + "plane" "(213 -2903 414) (262 -2903 414) (262 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128861" + "plane" "(213 -2905 345) (262 -2905 345) (262 -2903 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128860" + "plane" "(213 -2903 414) (213 -2905 414) (213 -2905 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128859" + "plane" "(262 -2903 345) (262 -2905 345) (262 -2905 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128858" + "plane" "(262 -2903 414) (213 -2903 414) (213 -2903 345)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 88.8163] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128857" + "plane" "(262 -2905 345) (213 -2905 345) (213 -2905 414)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -88.8163] 0.191406" + "vaxis" "[0 0 -1 0] 0.269531" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12000]" + } +} +entity +{ + "id" "451490" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "186.5 -2904 308" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "450953" + side + { + "id" "128868" + "plane" "(162 -2903 343) (211 -2903 343) (211 -2905 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128867" + "plane" "(162 -2905 273) (211 -2905 273) (211 -2903 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128866" + "plane" "(162 -2903 343) (162 -2905 343) (162 -2905 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128865" + "plane" "(211 -2903 273) (211 -2905 273) (211 -2905 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128864" + "plane" "(211 -2903 343) (162 -2903 343) (162 -2903 273)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 78.3673] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128863" + "plane" "(211 -2905 273) (162 -2905 273) (162 -2905 343)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -78.3674] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 12500]" + } +} +entity +{ + "id" "451498" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "237.5 -2904 308" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "450952" + side + { + "id" "128874" + "plane" "(213 -2903 343) (262 -2903 343) (262 -2905 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128873" + "plane" "(213 -2905 273) (262 -2905 273) (262 -2903 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128872" + "plane" "(213 -2903 343) (213 -2905 343) (213 -2905 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128871" + "plane" "(262 -2903 273) (262 -2905 273) (262 -2905 343)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128870" + "plane" "(262 -2903 343) (213 -2903 343) (213 -2903 273)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 88.8163] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128869" + "plane" "(262 -2905 273) (213 -2905 273) (213 -2905 343)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -88.8163] 0.191406" + "vaxis" "[0 0 -1 230.4] 0.273438" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13000]" + } +} +entity +{ + "id" "451509" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "237.5 -2904 235.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "450958" + side + { + "id" "128880" + "plane" "(213 -2905 271) (213 -2903 271) (262 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128879" + "plane" "(213 -2903 210) (213 -2905 210) (262 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 12] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128878" + "plane" "(213 -2905 210) (213 -2903 210) (213 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128877" + "plane" "(262 -2903 210) (262 -2905 210) (262 -2905 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128876" + "plane" "(213 -2903 210) (262 -2903 210) (262 -2903 271)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 88.8163] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128875" + "plane" "(262 -2905 210) (213 -2905 210) (213 -2905 271)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -88.8163] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 13500]" + } +} +entity +{ + "id" "451520" + "classname" "func_breakable" + "disableflashlight" "0" + "disablereceiveshadows" "0" + "disableshadowdepth" "0" + "disableshadows" "0" + "drawinfastreflection" "0" + "ExplodeDamage" "0" + "explodemagnitude" "0" + "ExplodeRadius" "0" + "explosion" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "gibdir" "0 0 0" + "health" "1" + "material" "0" + "minhealthdmg" "0" + "nodamageforces" "0" + "origin" "186.5 -2904 235.5" + "PerformanceMode" "0" + "physdamagescale" "1.0" + "pressuredelay" "0" + "propdata" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowdepthnocache" "0" + "spawnflags" "0" + "spawnobject" "0" + solid + { + "id" "450959" + side + { + "id" "128886" + "plane" "(162 -2905 271) (162 -2903 271) (211 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128885" + "plane" "(162 -2903 210) (162 -2905 210) (211 -2905 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128884" + "plane" "(162 -2905 210) (162 -2903 210) (162 -2903 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128883" + "plane" "(211 -2903 210) (211 -2905 210) (211 -2905 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128882" + "plane" "(162 -2903 210) (211 -2903 210) (211 -2903 271)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[-1 0 0 78.3673] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128881" + "plane" "(211 -2905 210) (162 -2905 210) (162 -2905 271)" + "material" "GLASS/GLASS01CULL" + "uaxis" "[1 0 0 -78.3674] 0.191406" + "vaxis" "[0 0 -1 209.127] 0.277344" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 14000]" + } +} +entity +{ + "id" "451560" + "classname" "func_detail" + solid + { + "id" "450724" + side + { + "id" "128904" + "plane" "(264 -2896 414) (264 -2896 208) (264 -2912 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" "128903" + "plane" "(262 -2896 208) (264 -2896 208) (264 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 46.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128902" + "plane" "(264 -2912 414) (264 -2912 208) (262 -2912 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -49] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128901" + "plane" "(262 -2896 414) (264 -2896 414) (264 -2912 414)" + "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" "128900" + "plane" "(262 -2912 208) (264 -2912 208) (264 -2896 208)" + "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" "128899" + "plane" "(262 -2912 414) (262 -2912 208) (262 -2896 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 -0.998047] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451205" + side + { + "id" "128910" + "plane" "(262 -2912 345) (162 -2912 345) (162 -2896 345)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128909" + "plane" "(262 -2896 343) (162 -2896 343) (162 -2912 343)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -63.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128908" + "plane" "(162 -2896 343) (262 -2896 343) (262 -2896 345)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128907" + "plane" "(262 -2912 343) (162 -2912 343) (162 -2912 345)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 1 -7.99414] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128906" + "plane" "(162 -2912 343) (162 -2896 343) (162 -2896 345)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128905" + "plane" "(262 -2896 343) (262 -2912 343) (262 -2912 345)" + "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" "450801" + side + { + "id" "128916" + "plane" "(211 -2912 414) (211 -2896 414) (213 -2896 414)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128915" + "plane" "(211 -2896 345) (211 -2896 414) (211 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128914" + "plane" "(213 -2912 345) (213 -2912 414) (213 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128913" + "plane" "(213 -2896 345) (213 -2896 414) (211 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -23.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128912" + "plane" "(211 -2912 345) (211 -2912 414) (213 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128911" + "plane" "(211 -2896 345) (211 -2912 345) (213 -2912 345)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450794" + side + { + "id" "128922" + "plane" "(211 -2896 273) (211 -2896 343) (211 -2912 343)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128921" + "plane" "(213 -2912 273) (213 -2912 343) (213 -2896 343)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128920" + "plane" "(213 -2896 273) (213 -2896 343) (211 -2896 343)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -23.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128919" + "plane" "(211 -2912 273) (211 -2912 343) (213 -2912 343)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128918" + "plane" "(211 -2896 273) (211 -2912 273) (213 -2912 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128917" + "plane" "(211 -2912 343) (211 -2896 343) (213 -2896 343)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450935" + side + { + "id" "128928" + "plane" "(160 -2896 416) (264 -2896 416) (264 -2912 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" "128927" + "plane" "(160 -2896 414) (264 -2896 414) (264 -2896 416)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 47.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128926" + "plane" "(160 -2912 416) (264 -2912 416) (264 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 1 15.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128925" + "plane" "(160 -2912 414) (264 -2912 414) (264 -2896 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128924" + "plane" "(160 -2896 414) (160 -2896 416) (160 -2912 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" "128923" + "plane" "(264 -2912 414) (264 -2912 416) (264 -2896 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "450722" + side + { + "id" "128934" + "plane" "(160 -2912 414) (160 -2912 208) (160 -2896 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" "128933" + "plane" "(160 -2896 414) (160 -2896 208) (162 -2896 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -47.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128932" + "plane" "(162 -2912 208) (160 -2912 208) (160 -2912 414)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -15.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128931" + "plane" "(162 -2912 414) (160 -2912 414) (160 -2896 414)" + "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" "128930" + "plane" "(162 -2896 208) (160 -2896 208) (160 -2912 208)" + "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" "128929" + "plane" "(162 -2896 414) (162 -2896 208) (162 -2912 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451204" + side + { + "id" "128940" + "plane" "(262 -2912 273) (162 -2912 273) (162 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128939" + "plane" "(262 -2896 271) (162 -2896 271) (162 -2912 271)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -62.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128938" + "plane" "(162 -2896 271) (262 -2896 271) (262 -2896 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -7] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128937" + "plane" "(262 -2912 271) (162 -2912 271) (162 -2912 273)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 1 9.00195] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128936" + "plane" "(162 -2912 271) (162 -2896 271) (162 -2896 273)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128935" + "plane" "(262 -2896 271) (262 -2912 271) (262 -2912 273)" + "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" "450810" + side + { + "id" "128946" + "plane" "(211 -2912 271) (211 -2912 210) (211 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128945" + "plane" "(213 -2896 271) (213 -2896 210) (213 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[0 1 0 0.996094] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128944" + "plane" "(211 -2896 271) (211 -2896 210) (213 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[-1 0 0 -23.002] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128943" + "plane" "(213 -2912 271) (213 -2912 210) (211 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 -39] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128942" + "plane" "(211 -2912 271) (211 -2896 271) (213 -2896 271)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128941" + "plane" "(211 -2896 210) (211 -2912 210) (213 -2912 210)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "451203" + side + { + "id" "128952" + "plane" "(262 -2912 210) (162 -2912 210) (162 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128951" + "plane" "(262 -2896 208) (162 -2896 208) (162 -2912 208)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -63.9961] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128950" + "plane" "(162 -2896 208) (262 -2896 208) (262 -2896 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128949" + "plane" "(262 -2912 208) (162 -2912 208) (162 -2912 210)" + "material" "CONCRETE/HR_C/HR_CONCRETE_TRIM_001" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 1 -63.9941] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128948" + "plane" "(162 -2912 208) (162 -2896 208) (162 -2896 210)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "128947" + "plane" "(262 -2896 208) (262 -2912 208) (262 -2912 210)" + "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" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 15500]" + } +} +entity +{ + "id" "451882" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 -1 0" + "BasisOrigin" "-224 -2910 288" + "BasisU" "1 0 0" + "BasisV" "-0 0 1" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "cs_apollo/decals/apollo-logo" + "sides" "128452 128457 128374 327106 327142 327124" + "StartU" "0" + "StartV" "1" + "uv0" "-72 -72 0" + "uv1" "-72 72 0" + "uv2" "72 72 0" + "uv3" "72 -72 0" + "origin" "-224 -2910 288" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 -2768]" + } +} +entity +{ + "id" "458029" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-304 -3648 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "432711" + "classname" "func_detail" + "disableX360" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + solid + { + "id" "432706" + side + { + "id" "123309" + "plane" "(2248 -3128 136) (2248 -3088 136) (2254 -3088 136)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123308" + "plane" "(2248 -3088 61) (2248 -3128 61) (2254 -3128 61)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123307" + "plane" "(2248 -3128 61) (2248 -3088 61) (2248 -3088 136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123306" + "plane" "(2254 -3088 61) (2254 -3128 61) (2254 -3128 136)" + "material" "CS_APOLLO/OUTSIDE/ADVERT4" + "uaxis" "[0 1 0 102.398] 0.078125" + "vaxis" "[0 0 -1 832.853] 0.0732422" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123305" + "plane" "(2248 -3088 61) (2254 -3088 61) (2254 -3088 136)" + "material" "DEV/REFLECTIVITY_70B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "123304" + "plane" "(2254 -3128 61) (2248 -3128 61) (2248 -3128 136)" + "material" "DEV/REFLECTIVITY_70B" + "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 + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8500]" + } +} +hidden +{ + entity + { + "id" "433107" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1854.91 -4217 135.904" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +hidden +{ + entity + { + "id" "433119" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_props/nuke_office_exit_001b.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1204 -5248 141.857" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -3768]" + } + } +} +hidden +{ + entity + { + "id" "433751" + "classname" "prop_static" + "angles" "0 70 0" + "disableshadows" "0" + "fademaxdist" "-1" + "fademindist" "0" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_office_desk/nuke_conference_table.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2337.7 -2749.77 11.25" + editor + { + "color" "200 137 0" + "groupid" "759563" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[3500 11500]" + } + } +} +entity +{ + "id" "434775" + "classname" "func_detail" + solid + { + "id" "1706930" + side + { + "id" "282057" + "plane" "(2291.57 -2701.55 47) (2403.14 -2742.46 47) (2382.55 -2798.43 47)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.866025 0.5 0 -26.5037] 0.25" + "vaxis" "[0.5 -0.866025 0 59.1194] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282056" + "plane" "(2269.67 -2757.41 10.75) (2382.55 -2798.45 10.75) (2403.14 -2742.46 10.75)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.866025 0.5 0 -26.5037] 0.25" + "vaxis" "[0.5 -0.866025 0 59.1194] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282055" + "plane" "(2403.14 -2742.46 10.75) (2382.55 -2798.45 10.75) (2382.56 -2798.43 47)" + "material" "BUILDINGS/TARP_EXT_01" + "uaxis" "[0.866025 0.5 0 293.496] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282054" + "plane" "(2382.55 -2798.45 10.75) (2269.67 -2757.41 10.75) (2269.68 -2757.39 47)" + "material" "BUILDINGS/TARP_EXT_01" + "uaxis" "[-0.5 0.866025 0 4.88063] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282053" + "plane" "(2291.57 -2701.55 10.75) (2403.14 -2742.46 10.75) (2403.14 -2742.46 47)" + "material" "BUILDINGS/TARP_EXT_01" + "uaxis" "[-0.5 0.866025 0 4.88063] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "282052" + "plane" "(2269.66 -2757.41 10.75) (2291.57 -2701.55 10.75) (2291.57 -2701.55 47)" + "material" "BUILDINGS/TARP_EXT_01" + "uaxis" "[0 1 0 5] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "200 137 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "200 137 0" + "groupid" "759563" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "388548" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "1791.5 -4868 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "388554" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "1557.65 -5136 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "388560" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "1857.4 -3336 17" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "388566" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "1429.5 -3160 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "388572" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "1696 -2872 17" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "388578" + "classname" "env_cubemap" + "cubemapsize" "0" + "sides" "280147 282013" + "origin" "2160 -2896 80" + editor + { + "color" "0 0 255" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "388584" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "2328 -3338 16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "388593" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "141 -2632 -16" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "388596" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-860.274 -4240 32" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +entity +{ + "id" "388602" + "classname" "func_instance" + "angles" "-0 0 0" + "file" "instances/cubemap" + "fixup_style" "0" + "origin" "-256 -4960 0" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 9000]" + } +} +hidden +{ + entity + { + "id" "388662" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-199 -2976.55 -4.00207" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "388675" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "-327 -2976.55 -4.12707" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "366811" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "491.617 -2904 -41" + editor + { + "color" "220 217 0" + "groupid" "366899" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "366815" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "555.617 -2904 -41" + editor + { + "color" "220 217 0" + "groupid" "366899" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "366835" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "571.617 -2872 -41" + editor + { + "color" "220 217 0" + "groupid" "366899" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "367090" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "571.617 -2808 -41" + editor + { + "color" "220 217 0" + "groupid" "367195" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "367105" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "571.617 -2744 -41" + editor + { + "color" "220 217 0" + "groupid" "367195" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "367264" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "1" + "model" "models/props_foliage/urban_tree01.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "528 -2756 -36.375" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 4000]" + } + } +} +hidden +{ + entity + { + "id" "367272" + "classname" "prop_static" + "angles" "0 128 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "624 -2484 -40" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "367304" + "classname" "prop_static" + "angles" "0 45 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/cs_apollo/trashbin_001.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "605 -2880 -41" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 5000]" + } + } +} +hidden +{ + entity + { + "id" "367541" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "489 -2173 -40.002" + editor + { + "color" "220 217 0" + "groupid" "367532" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "367546" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "820 -2093 -40.002" + editor + { + "color" "220 217 0" + "groupid" "367545" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "367550" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "796 -2173 -40.002" + editor + { + "color" "220 217 0" + "groupid" "367545" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "367578" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "763 -2173 -40.002" + editor + { + "color" "220 217 0" + "groupid" "367531" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +entity +{ + "id" "345681" + "classname" "func_detail" + solid + { + "id" "4892649" + side + { + "id" "349087" + "plane" "(1024 -5296 160) (1026 -5312 160) (1030 -5327 160)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[-1 0 0 60] 0.125" + "vaxis" "[0 -1 0 -332] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "349086" + "plane" "(1104 -5376 165) (1104 -5376 160) (1088 -5374 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.992278 -0.124035 0 -306.938] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349085" + "plane" "(1088 -5374 165) (1088 -5374 160) (1073 -5370 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.966235 -0.257663 0 -315.49] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349084" + "plane" "(1073 -5370 165) (1073 -5370 160) (1060 -5363 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.880471 -0.4741 0 182.658] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349083" + "plane" "(1060 -5363 165) (1060 -5363 160) (1047 -5353 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.792624 -0.609711 0 173.978] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349082" + "plane" "(1047 -5353 165) (1047 -5353 160) (1037.03 -5340.05 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.609711 -0.792624 0 162.272] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349081" + "plane" "(1037.02 -5340.05 165) (1037.02 -5340.05 160) (1030 -5327 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.4741 -0.880471 0 156.65] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349080" + "plane" "(1030 -5327 165) (1030 -5327 160) (1026 -5312 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.257663 -0.966235 0 151.161] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349079" + "plane" "(1026 -5312 165) (1026 -5312 160) (1024 -5296 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.124035 -0.992278 0 149.494] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349078" + "plane" "(1104 -5296 165) (1104 -5296 160) (1104 -5376 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" + } + side + { + "id" "349077" + "plane" "(1024 -5296 165) (1024 -5296 160) (1104 -5296 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349076" + "plane" "(1104 -5376 165) (1088.02 -5374 165) (1073 -5370 165)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892708" + side + { + "id" "349159" + "plane" "(1184 -5296 160) (1104 -5296 160) (1104 -5376 160)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[-1 0 0 60] 0.125" + "vaxis" "[0 -1 0 -332] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "349158" + "plane" "(1104 -5376 165) (1104 -5376 160) (1104 -5296 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" + } + side + { + "id" "349157" + "plane" "(1104 -5296 165) (1104 -5296 160) (1184 -5296 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" "349156" + "plane" "(1184 -5376 165) (1184 -5376 160) (1104 -5376 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349155" + "plane" "(1184 -5296 165) (1184 -5296 160) (1184 -5376 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" + } + side + { + "id" "349154" + "plane" "(1184 -5376 165) (1104 -5376 165) (1104 -5296 165)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892667" + side + { + "id" "349135" + "plane" "(1087.96 -5374 165) (1087.99 -5374 235) (1104 -5376 235)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.992278 -0.124035 0 104.25] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349134" + "plane" "(1088 -5374 235) (1087.96 -5374 165) (1073 -5370 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.966235 -0.257663 0 87.2809] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349133" + "plane" "(1072.98 -5369.99 235) (1073 -5370 165) (1060.03 -5363.02 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.880471 -0.4741 0 59.7969] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349132" + "plane" "(1060 -5363 235) (1060.03 -5363.02 165) (1047 -5353 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.792624 -0.609711 0 42.5764] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349131" + "plane" "(1047.02 -5353.02 235) (1047 -5353 165) (1037.02 -5340.04 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.609711 -0.792624 0 19.3493] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349130" + "plane" "(1037.07 -5340.1 235) (1037.02 -5340.04 165) (1030.01 -5327.02 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.4741 -0.880471 0 8.19421] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349129" + "plane" "(1030 -5326.96 235) (1030.01 -5327.02 165) (1026 -5312 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.257663 -0.966235 0 509.304] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349128" + "plane" "(1026 -5312 235) (1026 -5312 165) (1024 -5296 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0.124035 -0.992278 0 505.996] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349127" + "plane" "(1104 -5296 235) (1104 -5296 165) (1104 -5376 165)" + "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" "349126" + "plane" "(1024 -5296 235) (1024 -5296 165) (1104 -5296 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349125" + "plane" "(1024 -5296 165) (1026 -5312.02 165) (1030 -5327.02 165)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349124" + "plane" "(1104 -5376 235) (1088 -5374 235) (1072.97 -5369.98 235)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892666" + side + { + "id" "349123" + "plane" "(1104 -5376 240) (1087.98 -5374 240) (1073 -5370 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" "349122" + "plane" "(1087.99 -5374 235) (1087.98 -5374 240) (1104 -5376 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.992278 -0.124035 0 -306.938] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349121" + "plane" "(1072.99 -5370 235) (1072.99 -5370 240) (1087.99 -5374 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.966235 -0.257663 0 -315.49] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349120" + "plane" "(1059.93 -5362.96 235) (1059.93 -5362.96 240) (1073 -5370 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.880471 -0.4741 0 182.658] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349119" + "plane" "(1047.02 -5353.02 235) (1047.02 -5353.02 240) (1059.95 -5362.97 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.792624 -0.609711 0 173.978] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349118" + "plane" "(1037.08 -5340.12 235) (1037.11 -5340.16 240) (1047.02 -5353.02 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.609711 -0.792624 0 162.272] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349117" + "plane" "(1030 -5326.96 240) (1037.1 -5340.14 240) (1037.06 -5340.09 235)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.4741 -0.880471 0 156.65] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349116" + "plane" "(1026 -5312 235) (1026 -5312 240) (1030 -5326.96 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.257663 -0.966235 0 151.161] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349115" + "plane" "(1024 -5296 235) (1024 -5296 240) (1026 -5312 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.124035 -0.992278 0 149.494] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "349114" + "plane" "(1104 -5376 235) (1104 -5376 240) (1104 -5296 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" "349113" + "plane" "(1104 -5296 235) (1104 -5296 240) (1024 -5296 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349112" + "plane" "(1024 -5296 235) (1026 -5311.99 235) (1030 -5327 235)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892698" + side + { + "id" "349141" + "plane" "(1184 -5376 240) (1104 -5376 240) (1104 -5296 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" "349140" + "plane" "(1104 -5296 235) (1104 -5296 240) (1104 -5376 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" "349139" + "plane" "(1184 -5296 235) (1184 -5296 240) (1104 -5296 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" "349138" + "plane" "(1104 -5376 235) (1104 -5376 240) (1184 -5376 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 351.438] 0.125" + "vaxis" "[0 0 -1 -14.3658] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349137" + "plane" "(1184 -5376 235) (1184 -5376 240) (1184 -5296 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" "349136" + "plane" "(1184 -5296 235) (1104 -5296 235) (1104 -5376 235)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892707" + side + { + "id" "349153" + "plane" "(1104 -5376 235) (1104 -5376 165) (1104 -5296 165)" + "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" "349152" + "plane" "(1104 -5296 235) (1104 -5296 165) (1184 -5296 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349151" + "plane" "(1184 -5376 235) (1184 -5376 165) (1104 -5376 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[1 0 0 120] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349150" + "plane" "(1184 -5296 235) (1184 -5296 165) (1184 -5376 165)" + "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" "349149" + "plane" "(1184 -5376 235) (1104 -5376 235) (1104 -5296 235)" + "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" "349148" + "plane" "(1184 -5296 165) (1104 -5296 165) (1104 -5376 165)" + "material" "DEV/REFLECTIVITY_60B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 5000]" + } +} +entity +{ + "id" "345688" + "classname" "func_detail" + solid + { + "id" "4748428" + side + { + "id" "346728" + "plane" "(352 -4875 160) (368 -4873 160) (383 -4869 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346727" + "plane" "(432 -4795 164) (432 -4795 160) (430 -4811 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.124034 -0.992278 0 -25.3975] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346726" + "plane" "(430 -4811 164) (430 -4811 160) (426 -4826 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.257662 -0.966235 0 -99.3818] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346725" + "plane" "(426 -4826 164) (426 -4826 160) (418.982 -4839.04 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.474025 -0.880511 0 -148.401] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346724" + "plane" "(418.977 -4839.04 164) (418.977 -4839.04 160) (409 -4852 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.610068 -0.792349 0 -375.436] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346723" + "plane" "(409 -4852 164) (409 -4852 160) (396 -4862 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.792624 -0.609711 0 -368.83] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346722" + "plane" "(396 -4862 164) (396 -4862 160) (383 -4869 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.880471 -0.4741 0 -438.66] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346721" + "plane" "(383 -4869 164) (383 -4869 160) (368 -4873 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.966235 -0.257663 0 -443.412] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346720" + "plane" "(368 -4873 164) (368 -4873 160) (352 -4875 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.992278 -0.124036 0 -276.313] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346719" + "plane" "(352 -4795 164) (352 -4795 160) (432 -4795 160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346718" + "plane" "(352 -4875 164) (352 -4875 160) (352 -4795 160)" + "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" + } + side + { + "id" "346717" + "plane" "(352 -4795 164) (432 -4795 164) (430 -4811 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748210" + side + { + "id" "346680" + "plane" "(-592 -4795 160) (-592 -4875 160) (352 -4875 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346679" + "plane" "(-592 -4875 160) (-592 -4795 160) (-592 -4795 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" + } + side + { + "id" "346678" + "plane" "(352 -4795 160) (352 -4875 160) (352 -4875 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" + } + side + { + "id" "346677" + "plane" "(-592 -4795 160) (352 -4795 160) (352 -4795 164)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346676" + "plane" "(352 -4875 160) (-592 -4875 160) (-592 -4875 164)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -25.1748] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346675" + "plane" "(-592 -4875 164) (-592 -4795 164) (352 -4795 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" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748180" + side + { + "id" "346668" + "plane" "(-672 -4795 160) (-670 -4811 160) (-666 -4826 160)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[0 1 0 -110] 0.25" + "vaxis" "[-1 0 0 -6] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346667" + "plane" "(-592 -4875 160) (-608 -4873 160) (-608 -4873 164)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.992277 0.124034 0 -271.214] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346666" + "plane" "(-608 -4873 164) (-608 -4873 160) (-623 -4869 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.966235 0.257662 0 -53.209] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346665" + "plane" "(-623 -4869 164) (-623 -4869 160) (-636 -4862 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.880471 0.474099 0 -411.086] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346664" + "plane" "(-635.983 -4862 164) (-635.983 -4862 160) (-649 -4852 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.793012 0.609205 0 169] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346663" + "plane" "(-649 -4852 164) (-649 -4852 160) (-658.974 -4839.05 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.609712 0.792623 0 51] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346662" + "plane" "(-658.98 -4839.04 164) (-658.979 -4839.04 160) (-666 -4826 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.474063 0.88049 0 71.6836] 0.125" + "vaxis" "[0 0 -1 -16.868] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346661" + "plane" "(-666 -4826 164) (-666 -4826 160) (-670 -4811 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.257663 0.966234 0 441.355] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346660" + "plane" "(-670 -4811 164) (-670 -4810.99 160) (-672 -4795 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.124111 0.992268 0 111] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346659" + "plane" "(-592 -4795 164) (-592 -4795 160) (-592 -4875 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" "346658" + "plane" "(-672 -4795 164) (-672 -4795 160) (-592 -4795 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" "346657" + "plane" "(-592 -4875 164) (-608 -4873 164) (-623 -4869 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748041" + side + { + "id" "346464" + "plane" "(-592 -4875 240) (-607.984 -4873 240) (-622.977 -4869 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" "346463" + "plane" "(-608 -4873 236) (-608 -4873 240) (-592 -4875 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.992353 0.124043 0 -273.194] 0.125" + "vaxis" "[0 0 -1 -16.0368] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346462" + "plane" "(-622.978 -4869 236) (-622.977 -4869 240) (-608 -4873 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.966207 0.258059 0 470.425] 0.125" + "vaxis" "[0 0 -1 -18.8211] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346461" + "plane" "(-636.022 -4861.98 236) (-636.023 -4861.98 240) (-622.984 -4869 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.880635 0.473955 0 90.5195] 0.125" + "vaxis" "[0 0 -1 -16.8863] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346460" + "plane" "(-649.026 -4851.98 236) (-649.027 -4851.98 240) (-636.02 -4861.98 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.792745 0.609677 0 184.756] 0.125" + "vaxis" "[0 0 -1 -16.1835] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346459" + "plane" "(-658.985 -4839.03 236) (-658.984 -4839.03 240) (-649.016 -4851.99 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.60971 0.792719 0 50.8809] 0.125" + "vaxis" "[0 0 -1 -16.8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346458" + "plane" "(-666 -4826 236) (-666 -4826 240) (-658.988 -4839.02 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.474088 0.880563 0 76.9258] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346457" + "plane" "(-670 -4811 236) (-670 -4811 240) (-666 -4826 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.257682 0.966308 0 444.389] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346456" + "plane" "(-672 -4795 236) (-672 -4795 240) (-670 -4810.98 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.124163 0.992338 0 113.957] 0.125" + "vaxis" "[0 0 -1 -16.6205] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346455" + "plane" "(-592 -4875 236) (-592 -4875 240) (-592 -4795 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" "346454" + "plane" "(-592 -4795 236) (-592 -4795 240) (-672 -4795 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" "346453" + "plane" "(-672 -4795 236) (-670 -4811 236) (-666 -4826 236)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748164" + side + { + "id" "346632" + "plane" "(352 -4795 240) (432 -4795 240) (430 -4811 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -0.00195313] 0.25" + "vaxis" "[1 0 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346631" + "plane" "(430 -4811 236) (430 -4811 240) (432 -4795 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.124036 0.992278 0 -511.894] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346630" + "plane" "(426 -4826 236) (426 -4826 240) (430 -4811 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.257663 0.966235 0 -439.011] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346629" + "plane" "(419 -4839 236) (419 -4839 240) (426 -4826 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.4741 0.880471 0 -397.608] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346628" + "plane" "(409 -4852 236) (409 -4852 240) (419 -4839 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.609711 0.792624 0 -166.063] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346627" + "plane" "(396.055 -4861.96 236) (396.059 -4861.96 240) (409 -4852 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.792562 0.609791 0 -181.182] 0.125" + "vaxis" "[0 0 -1 -16.9969] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346626" + "plane" "(382.963 -4869 236) (382.961 -4869 240) (396.051 -4861.96 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.880678 0.473716 0 -124] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346625" + "plane" "(367.985 -4873 236) (367.984 -4873 240) (382.965 -4869 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.966151 0.257978 0 157] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346624" + "plane" "(352 -4875 236) (352 -4875 240) (367.973 -4873 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.992252 0.124245 0 498.372] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346623" + "plane" "(432 -4795 236) (432 -4795 240) (352 -4795 240)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346622" + "plane" "(352 -4795 236) (352 -4795 240) (352 -4875 240)" + "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" + } + side + { + "id" "346621" + "plane" "(352 -4875 236) (367.984 -4873 236) (382.977 -4869 236)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748179" + side + { + "id" "346656" + "plane" "(-608 -4873 164) (-607.958 -4873 236) (-592 -4875 236)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.992238 -0.124357 0 -971.644] 0.125" + "vaxis" "[0 0 -1 255.954] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4" + } + side + { + "id" "346655" + "plane" "(-607.954 -4873 236) (-608 -4873 164) (-623 -4869 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.966235 -0.257663 0 -150.945] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4" + } + side + { + "id" "346654" + "plane" "(-623 -4869 236) (-623 -4869 164) (-636.01 -4862 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.880471 -0.474101 0 -817.099] 0.125" + "vaxis" "[0 0 -1 253.27] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4" + } + side + { + "id" "346653" + "plane" "(-636 -4862 236) (-635.983 -4862 164) (-649 -4852 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.792623 -0.609712 0 -394.794] 0.125" + "vaxis" "[0 0 -1 255.574] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4" + } + side + { + "id" "346652" + "plane" "(-649 -4852 236) (-649 -4852 164) (-658.974 -4839.05 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-0.609712 0.792623 0 -375.647] 0.125" + "vaxis" "[0 0 -1 251.978] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4" + } + side + { + "id" "346651" + "plane" "(-658.989 -4839.02 236) (-658.98 -4839.04 164) (-666 -4826 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-0.4741 0.880471 0 -355.932] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4" + } + side + { + "id" "346650" + "plane" "(-666 -4825.98 236) (-666 -4826 164) (-670 -4811 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-0.257506 0.966276 0 -1015.4] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4" + } + side + { + "id" "346649" + "plane" "(-670 -4811.02 236) (-670 -4811 164) (-672 -4795 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[-0.124034 0.992277 0 692.832] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4" + } + side + { + "id" "346648" + "plane" "(-592 -4795 236) (-592 -4795 164) (-592 -4875 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" + } + side + { + "id" "346647" + "plane" "(-672 -4795 236) (-672 -4795 164) (-592 -4795 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" + } + side + { + "id" "346646" + "plane" "(-592 -4875 236) (-607.949 -4873 236) (-623 -4869 236)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346645" + "plane" "(-672 -4795 164) (-670 -4811.01 164) (-666 -4826 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748219" + side + { + "id" "346692" + "plane" "(-592 -4795 164) (-592 -4795 236) (-592 -4875 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346691" + "plane" "(352 -4875 164) (352 -4875 236) (352 -4795 236)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346690" + "plane" "(352 -4795 164) (352 -4795 236) (-592 -4795 236)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346689" + "plane" "(-592 -4875 164) (-592 -4875 236) (352 -4875 236)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[1 0 0 843.05] 0.125" + "vaxis" "[0 0 -1 258.804] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097156" + } + side + { + "id" "346688" + "plane" "(-592 -4795 164) (-592 -4875 164) (352 -4875 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" "346687" + "plane" "(-592 -4875 236) (-592 -4795 236) (352 -4795 236)" + "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" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748218" + side + { + "id" "346686" + "plane" "(-592 -4875 240) (-592 -4795 240) (352 -4795 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" "346685" + "plane" "(-592 -4795 236) (-592 -4795 240) (-592 -4875 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" "346684" + "plane" "(352 -4875 236) (352 -4875 240) (352 -4795 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" "346683" + "plane" "(352 -4795 236) (352 -4795 240) (-592 -4795 240)" + "material" "DEV/REFLECTIVITY_90B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346682" + "plane" "(-592 -4875 236) (-592 -4875 240) (352 -4875 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0 0 -273] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097152" + } + side + { + "id" "346681" + "plane" "(-592 -4795 236) (-592 -4875 236) (352 -4875 236)" + "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" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4748427" + side + { + "id" "346716" + "plane" "(432 -4795 236) (432 -4795 164) (430 -4811 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.124034 0.992278 0 349.945] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097156" + } + side + { + "id" "346715" + "plane" "(430 -4811 236) (430 -4811 164) (426 -4826 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.257662 0.966235 0 935.924] 0.125" + "vaxis" "[0 0 -1 250.226] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097156" + } + side + { + "id" "346714" + "plane" "(426 -4826 236) (426 -4826 164) (418.982 -4839.04 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.4741 0.880471 0 964.602] 0.125" + "vaxis" "[0 0 -1 252.15] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097156" + } + side + { + "id" "346713" + "plane" "(418.977 -4839.04 236) (418.977 -4839.04 164) (409 -4852 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.609711 0.792624 0 174.831] 0.125" + "vaxis" "[0 0 -1 253.32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097156" + } + side + { + "id" "346712" + "plane" "(409 -4852 236) (409 -4852 164) (396 -4862 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.792623 0.609712 0 665.593] 0.125" + "vaxis" "[0 0 -1 254.886] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097156" + } + side + { + "id" "346711" + "plane" "(396.095 -4861.93 236) (396 -4862 164) (383 -4869 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.880471 0.474101 0 227] 0.125" + "vaxis" "[0 0 -1 255] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097156" + } + side + { + "id" "346710" + "plane" "(382.943 -4869.01 236) (383 -4869 164) (368 -4873 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.966235 0.257663 0 749.24] 0.125" + "vaxis" "[0 0 -1 254.479] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097156" + } + side + { + "id" "346709" + "plane" "(367.964 -4873 236) (368 -4873 164) (352 -4875 164)" + "material" "TILE/HR_T/TILES_A" + "uaxis" "[0.992278 0.124036 0 582.157] 0.125" + "vaxis" "[0 0 -1 256] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "2097156" + } + side + { + "id" "346708" + "plane" "(352 -4795 236) (352 -4795 164) (432 -4795 164)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346707" + "plane" "(352 -4875 236) (352 -4875 164) (352 -4795 164)" + "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" + } + side + { + "id" "346706" + "plane" "(352 -4795 236) (432 -4795 236) (430 -4811 236)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346705" + "plane" "(352 -4875 164) (367.988 -4873 164) (383 -4869 164)" + "material" "METAL/HR_METAL/HR_METAL_WALL_A2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "188 209 0" + "groupid" "2963064" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 5500]" + } +} +entity +{ + "id" "345838" + "classname" "func_detail" + solid + { + "id" "4522564" + side + { + "id" "341904" + "plane" "(976 -4646 0) (1024 -4646 0) (1024 -4634 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" "341903" + "plane" "(1024 -4634 105) (1024 -4634 0) (1024 -4646 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" "341902" + "plane" "(976 -4634 105) (976 -4634 0) (1024 -4634 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341901" + "plane" "(1024 -4646 105) (1024 -4646 0) (976 -4646 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341900" + "plane" "(976 -4646 105) (976 -4646 0) (976 -4634 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" "341899" + "plane" "(976 -4634 105) (1024 -4634 105) (1024 -4646 105)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522546" + side + { + "id" "341892" + "plane" "(416 -4634 0) (336 -4634 0) (336 -4646 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" "341891" + "plane" "(336 -4646 104) (336 -4646 0) (336 -4634 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -53] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341890" + "plane" "(336 -4634 104) (336 -4634 0) (416 -4634 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341889" + "plane" "(416 -4646 104) (416 -4646 0) (336 -4646 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341888" + "plane" "(416 -4634 104) (416 -4634 0) (416 -4646 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341887" + "plane" "(416 -4646 104) (336 -4646 104) (336 -4634 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -53] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522545" + side + { + "id" "341886" + "plane" "(416 -4648 112) (336 -4648 112) (336 -4632 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -450] 0.125" + "vaxis" "[0 -1 0 -384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341885" + "plane" "(336 -4632 104) (336 -4632 112) (336 -4648 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" "341884" + "plane" "(416 -4632 104) (416 -4632 112) (336 -4632 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -450] 0.125" + "vaxis" "[0 0 -1 -384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341883" + "plane" "(336 -4648 104) (336 -4648 112) (416 -4648 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -450] 0.125" + "vaxis" "[0 0 -1 -384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341882" + "plane" "(416 -4648 104) (416 -4648 112) (416 -4632 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -53] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341881" + "plane" "(416 -4632 104) (336 -4632 104) (336 -4648 104)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -450] 0.125" + "vaxis" "[0 -1 0 -384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4522563" + side + { + "id" "341898" + "plane" "(976 -4632 112) (1024 -4632 112) (1024 -4648 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -450] 0.125" + "vaxis" "[0 -1 0 -384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341897" + "plane" "(1024 -4648 105) (1024 -4648 112) (1024 -4632 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" "341896" + "plane" "(1024 -4632 105) (1024 -4632 112) (976 -4632 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -450] 0.125" + "vaxis" "[0 0 -1 -384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341895" + "plane" "(976 -4648 105) (976 -4648 112) (1024 -4648 112)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -450] 0.125" + "vaxis" "[0 0 -1 -384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341894" + "plane" "(976 -4632 105) (976 -4632 112) (976 -4648 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" "341893" + "plane" "(976 -4648 105) (1024 -4648 105) (1024 -4632 105)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -450] 0.125" + "vaxis" "[0 -1 0 -384] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 11500]" + } +} +entity +{ + "id" "345955" + "classname" "func_detail" + solid + { + "id" "3015479" + side + { + "id" "326401" + "plane" "(-656 -4560 160) (-656 -4560 48) (-640 -4560 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326400" + "plane" "(-638 -4582 160) (-638 -4582 48) (-654 -4584 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992278 0.124035 0 41.9401] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326399" + "plane" "(-654 -4584 160) (-654 -4584 48) (-656 -4560 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.0830455 0.996546 0 319.367] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326398" + "plane" "(-640 -4560 160) (-640 -4560 48) (-638 -4582 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.0905357 0.995893 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326397" + "plane" "(-656 -4560 160) (-640 -4560 160) (-638 -4582 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" "326396" + "plane" "(-640 -4560 48) (-656 -4560 48) (-654 -4584 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015477" + side + { + "id" "326389" + "plane" "(-654 -4584 160) (-654 -4584 48) (-638 -4582 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992278 -0.124035 0 -41.9401] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326388" + "plane" "(-632 -4602 160) (-632 -4602 48) (-646 -4608 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.919145 0.393919 0 28.7795] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326387" + "plane" "(-646 -4608 160) (-646 -4608 48) (-654 -4584 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.316228 0.948683 0 250.273] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326386" + "plane" "(-638 -4582 160) (-638 -4582 48) (-632 -4602 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.287348 0.957826 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326385" + "plane" "(-654 -4584 160) (-638 -4582 160) (-632 -4602 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" "326384" + "plane" "(-638 -4582 48) (-654 -4584 48) (-646 -4608 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015475" + side + { + "id" "326377" + "plane" "(-646 -4608 160) (-646 -4608 48) (-632 -4602 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.919145 -0.393919 0 -28.7795] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326376" + "plane" "(-622 -4622 160) (-622 -4622 48) (-634 -4632 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.768221 0.640184 0 15.4395] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326375" + "plane" "(-634 -4632 160) (-634 -4632 48) (-646 -4608 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.447214 0.894427 0 67.5] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326374" + "plane" "(-632 -4602 160) (-632 -4602 48) (-622 -4622 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.447214 0.894427 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326373" + "plane" "(-646 -4608 160) (-632 -4602 160) (-622 -4622 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" "326372" + "plane" "(-632 -4602 48) (-646 -4608 48) (-634 -4632 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015473" + side + { + "id" "326365" + "plane" "(-634 -4632 160) (-634 -4632 48) (-622 -4622 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.768221 -0.640184 0 -15.4395] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326364" + "plane" "(-608 -4640 160) (-608 -4640 48) (-618 -4650 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 24.1062] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326363" + "plane" "(-618 -4650 160) (-618 -4650 48) (-634 -4632 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.664364 0.747409 0 98.5215] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326362" + "plane" "(-622 -4622 160) (-622 -4622 48) (-608 -4640 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.613941 0.789352 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326361" + "plane" "(-634 -4632 160) (-622 -4622 160) (-608 -4640 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" "326360" + "plane" "(-622 -4622 48) (-634 -4632 48) (-618 -4650 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015471" + side + { + "id" "326353" + "plane" "(-618 -4650 160) (-618 -4650 48) (-608 -4640 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 -24.1062] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326352" + "plane" "(-590 -4654 160) (-590 -4654 48) (-600 -4666 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.640184 0.768221 0 49.397] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326351" + "plane" "(-600 -4666 160) (-600 -4666 48) (-618 -4650 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.747409 0.664364 0 161.715] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326350" + "plane" "(-608 -4640 160) (-608 -4640 48) (-590 -4654 48)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.789352 0.613941 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326349" + "plane" "(-618 -4650 160) (-608 -4640 160) (-590 -4654 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" "326348" + "plane" "(-608 -4640 48) (-618 -4650 48) (-600 -4666 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4493503" + side + { + "id" "341778" + "plane" "(-600 -4666 160) (-600 -4666 48) (-590 -4654 51.882)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.640184 -0.768221 0 -49.397] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341777" + "plane" "(-416 -4752 160) (-416 -4752 20.1765) (-416 -4768 15)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.393919 0.919145 0 10.4671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341776" + "plane" "(-416 -4768 160) (-416 -4768 15) (-600 -4666 48)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.894427 0.447214 0 28.8906] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341775" + "plane" "(-590 -4654 160) (-590 -4654 51.8823) (-416 -4752 20.1765)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.894427 0.447214 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341774" + "plane" "(-600 -4666 160) (-590 -4654 160) (-416 -4752 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" "341773" + "plane" "(-590 -4654 51.8826) (-600 -4666 48) (-416 -4768 15)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015470" + side + { + "id" "326347" + "plane" "(-608 -4640 0) (-618 -4650 0) (-600 -4666 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9941] 0.25" + "vaxis" "[0 1 0 63.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326346" + "plane" "(-618 -4650 48) (-618 -4650 0) (-608 -4640 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.707107 -0.707107 0 -24.1062] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326345" + "plane" "(-590 -4654 48) (-590 -4654 0) (-600 -4666 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.640184 0.768221 0 49.397] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326344" + "plane" "(-600 -4666 48) (-600 -4666 0) (-618 -4650 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.747409 0.664364 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326343" + "plane" "(-608 -4640 48) (-608 -4640 0) (-590 -4654 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.789352 0.613941 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326342" + "plane" "(-618 -4650 48) (-608 -4640 48) (-590 -4654 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015472" + side + { + "id" "326359" + "plane" "(-622 -4622 0) (-634 -4632 0) (-618 -4650 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9941] 0.25" + "vaxis" "[0 1 0 63.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326358" + "plane" "(-634 -4632 48) (-634 -4632 0) (-622 -4622 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.768221 -0.640184 0 -15.4395] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326357" + "plane" "(-608 -4640 48) (-608 -4640 0) (-618 -4650 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.707107 0.707107 0 24.1062] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326356" + "plane" "(-618 -4650 48) (-618 -4650 0) (-634 -4632 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.664364 0.747409 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326355" + "plane" "(-622 -4622 48) (-622 -4622 0) (-608 -4640 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.613941 0.789352 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326354" + "plane" "(-634 -4632 48) (-622 -4622 48) (-608 -4640 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015474" + side + { + "id" "326371" + "plane" "(-632 -4602 0) (-646 -4608 0) (-634 -4632 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9941] 0.25" + "vaxis" "[0 1 0 63.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326370" + "plane" "(-646 -4608 48) (-646 -4608 0) (-632 -4602 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.919145 -0.393919 0 -28.7795] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326369" + "plane" "(-622 -4622 48) (-622 -4622 0) (-634 -4632 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.768221 0.640184 0 15.4395] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326368" + "plane" "(-634 -4632 48) (-634 -4632 0) (-646 -4608 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.447214 0.894427 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326367" + "plane" "(-632 -4602 48) (-632 -4602 0) (-622 -4622 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.447214 0.894427 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326366" + "plane" "(-646 -4608 48) (-632 -4602 48) (-622 -4622 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015476" + side + { + "id" "326383" + "plane" "(-638 -4582 0) (-654 -4584 0) (-646 -4608 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9941] 0.25" + "vaxis" "[0 1 0 63.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326382" + "plane" "(-654 -4584 48) (-654 -4584 0) (-638 -4582 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.992278 -0.124035 0 -41.9401] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326381" + "plane" "(-632 -4602 48) (-632 -4602 0) (-646 -4608 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.919145 0.393919 0 28.7795] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326380" + "plane" "(-646 -4608 48) (-646 -4608 0) (-654 -4584 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.316228 0.948683 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326379" + "plane" "(-638 -4582 48) (-638 -4582 0) (-632 -4602 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.287348 0.957826 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326378" + "plane" "(-654 -4584 48) (-638 -4582 48) (-632 -4602 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3015478" + side + { + "id" "326395" + "plane" "(-640 -4560 0) (-656 -4560 0) (-654 -4584 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9941] 0.25" + "vaxis" "[0 1 0 63.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326394" + "plane" "(-656 -4560 48) (-656 -4560 0) (-640 -4560 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9941] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326393" + "plane" "(-638 -4582 48) (-638 -4582 0) (-654 -4584 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.992278 0.124035 0 41.9401] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326392" + "plane" "(-654 -4584 48) (-654 -4584 0) (-656 -4560 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.0830455 0.996546 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326391" + "plane" "(-640 -4560 48) (-640 -4560 0) (-638 -4582 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.0905357 0.995893 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "326390" + "plane" "(-656 -4560 48) (-640 -4560 48) (-638 -4582 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4493502" + side + { + "id" "341772" + "plane" "(-590 -4654 0) (-600 -4666 0) (-416 -4768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 63.9941] 0.25" + "vaxis" "[0 1 0 63.9961] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341771" + "plane" "(-600 -4666 48) (-600 -4666 0) (-590 -4654 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.640184 -0.768221 0 -49.397] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341770" + "plane" "(-416 -4752 20.1765) (-416 -4752 0) (-416 -4768 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.393919 0.919145 0 10.4671] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341769" + "plane" "(-416 -4768 15) (-416 -4768 0) (-600 -4666 0)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-0.874606 0.484835 0 -144.003] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341768" + "plane" "(-590 -4654 51.8823) (-590 -4654 0) (-416 -4752 0)" + "material" "CS_APOLLO/EXHIBITS/SHUTTLE_EXHIBIT_WALLS_DARK" + "uaxis" "[-0.894427 0.447214 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "341767" + "plane" "(-600 -4666 48) (-590 -4654 51.8828) (-416 -4752 20.177)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "26" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -13268]" + } +} +entity +{ + "id" "345984" + "classname" "func_detail" + solid + { + "id" "306430" + side + { + "id" "118111" + "plane" "(560 -4512 0) (560 -4112 0) (848 -4112 0)" + "material" "TILE/HR_CONCRETE_TILES_01" + "uaxis" "[1 0 0 -119] 0.125" + "vaxis" "[0 -1 0 6] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "118110" + "plane" "(848 -4112 -16) (560 -4112 -16) (560 -4512 -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" "118109" + "plane" "(560 -4512 -16) (560 -4112 -16) (560 -4112 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" "118108" + "plane" "(560 -4112 -16) (848 -4112 -16) (848 -4112 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" "118107" + "plane" "(848 -4112 -16) (848 -4512 -16) (848 -4512 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" "118106" + "plane" "(848 -4512 -16) (560 -4512 -16) (560 -4512 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -12268]" + } +} +entity +{ + "id" "340554" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "1065.9 -1924.44 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "340556" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "1206.93 -1914.88 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "340558" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "1143.06 -1926.47 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "340560" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "1213.82 -1788.39 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "340562" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "1149.95 -1799.98 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "340564" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "1072.79 -1797.95 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "340566" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "997.476 -1800.99 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "340568" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "914.289 -1799.12 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "340570" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "990.586 -1927.48 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "340572" + "classname" "info_player_terrorist" + "angles" "0 270 0" + "enabled" "1" + "priority" "0" + "origin" "907.399 -1925.61 8" + editor + { + "color" "190 139 0" + "groupid" "340553" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +hidden +{ + entity + { + "id" "335346" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "571.617 -2712 -41" + editor + { + "color" "220 217 0" + "groupid" "335317" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +hidden +{ + entity + { + "id" "335350" + "classname" "prop_static" + "angles" "0 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "491.617 -2688 -41" + editor + { + "color" "220 217 0" + "groupid" "335317" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -8268]" + } + } +} +entity +{ + "id" "322357" + "classname" "postprocess_controller" + "depthblurfocaldistance" "0" + "depthblurstrength" "0" + "fadetime" "2" + "fadetoblackstrength" "0" + "filmgrainstrength" ".2" + "localcontrastedgestrength" "0" + "localcontraststrength" "0" + "screenblurstrength" "0" + "spawnflags" "0" + "vignetteblurstrength" "0" + "vignetteend" "1.1" + "vignettestart" "0.8" + "origin" "2248 -3880 352" + editor + { + "color" "146 183 0" + "groupid" "968442" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "319403" + "classname" "func_detail" + solid + { + "id" "305937" + side + { + "id" "113710" + "plane" "(792 -4168 24) (800 -4160 24) (800 -4464 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" + } + side + { + "id" "113709" + "plane" "(792 -4456 0) (800 -4464 0) (800 -4160 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" "113708" + "plane" "(792 -4168 0) (792 -4168 24) (792 -4456 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "113707" + "plane" "(800 -4464 0) (800 -4464 24) (800 -4160 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 127.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "113706" + "plane" "(800 -4160 0) (800 -4160 24) (792 -4168 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" "113705" + "plane" "(792 -4456 0) (792 -4456 24) (800 -4464 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "303937" + "classname" "func_detail" + solid + { + "id" "299105" + side + { + "id" "106625" + "plane" "(-12 -4875 204) (-9 -4884.59 204) (-0.5 -4893.6 204)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "106624" + "plane" "(292 -4875 212) (289 -4884.57 212) (280.479 -4893.61 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "106623" + "plane" "(292 -4875 204) (289 -4884.57 204) (289 -4884.57 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.298842 0.954302 0 -420] 0.125" + "vaxis" "[0 0 -1 -67] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106622" + "plane" "(289 -4884.59 204) (280.508 -4893.59 204) (280.484 -4893.61 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.685817 0.727774 0 -836] 0.125" + "vaxis" "[0 0 -1 -67] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106621" + "plane" "(280.505 -4893.59 204) (266.425 -4901.44 204) (266.477 -4901.41 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.873677 0.486507 0 596] 0.125" + "vaxis" "[0 0 -1 -67] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106620" + "plane" "(266.425 -4901.44 204) (247.529 -4909.18 204) (247.449 -4909.21 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.925229 0.37941 0 -626] 0.125" + "vaxis" "[0 0 -1 -67] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106619" + "plane" "(247.523 -4909.19 204) (224.386 -4915.22 204) (224.566 -4915.19 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.967606 0.252465 0 -563] 0.125" + "vaxis" "[0 0.00117861 -1 -21] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106618" + "plane" "(224.385 -4915.22 204) (198.062 -4919.4 204) (197.973 -4919.4 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.987673 0.15653 0 -269] 0.125" + "vaxis" "[0 -0.00102219 -1 -108] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106617" + "plane" "(198.068 -4919.39 204) (169.585 -4921.8 204) (169.547 -4921.8 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.99646 0.0840722 0 -60] 0.125" + "vaxis" "[0 0 -1 -68] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106616" + "plane" "(169.608 -4921.8 204) (139.989 -4923 204) (140.031 -4923 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 0.0406061 0 -750] 0.125" + "vaxis" "[0 0 -1 -68] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106615" + "plane" "(140 -4923 204) (110.445 -4921.8 204) (110.383 -4921.79 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[1 -0.040585 0 -877] 0.125" + "vaxis" "[0 0 -1 -68] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106614" + "plane" "(110.433 -4921.8 204) (82 -4919.4 204) (81.8945 -4919.39 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.997287 -0.0840562 0 -541] 0.125" + "vaxis" "[0 0 -1 -68] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106613" + "plane" "(81.9839 -4919.4 204) (55.5563 -4915.21 204) (55.6758 -4915.24 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.988473 -0.15674 0 -327] 0.125" + "vaxis" "[0 0 -1 -68] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106612" + "plane" "(55.547 -4915.21 204) (32.4815 -4909.2 204) (32.4961 -4909.19 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.968472 -0.252408 0 -1014.39] 0.125" + "vaxis" "[0 -0.00148578 -1 -126.366] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106611" + "plane" "(32.4736 -4909.19 204) (13.4616 -4901.38 204) (13.5547 -4901.41 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.92574 -0.380331 0 -921.815] 0.125" + "vaxis" "[0 -0.00175342 -1 -137.266] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106610" + "plane" "(13.4642 -4901.38 204) (-0.507488 -4893.6 204) (-0.558594 -4893.55 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.874166 -0.48732 0 -8.58105] 0.125" + "vaxis" "[0 -0.0030644 -1 -189.427] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106609" + "plane" "(-0.497723 -4893.6 204) (-9 -4884.59 204) (-9 -4884.6 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.687045 -0.727747 0 -262] 0.125" + "vaxis" "[0.00153646 0 -1 -69] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106608" + "plane" "(-9 -4884.6 204) (-12 -4875 204) (-12 -4875 212)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_009" + "uaxis" "[0.298517 -0.955267 0 -80] 0.125" + "vaxis" "[0 0 -1 -70] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + side + { + "id" "106607" + "plane" "(-12 -4875 204) (292 -4875 204) (292 -4875 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "8192" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749390" + side + { + "id" "346896" + "plane" "(172.881 -4938 212) (204.371 -4934 212) (233.078 -4928 212)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-1 0 0 96] 0.125" + "vaxis" "[0 1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346895" + "plane" "(308 -4875 212) (304.802 -4887 212) (304.808 -4886.98 216)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.257382 -0.966309 0 -294.287] 0.125" + "vaxis" "[0 -0.00128078 -1 -8.36918] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346894" + "plane" "(304.811 -4886.98 216) (304.805 -4887 212) (295.205 -4899.02 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.624053 -0.781382 0 -470.725] 0.125" + "vaxis" "[0 -0.00160511 -1 -20.8157] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346893" + "plane" "(295.183 -4899.04 216) (295.221 -4899 212) (279.656 -4911 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.791955 -0.61058 0 -86] 0.125" + "vaxis" "[-0.00150477 0 -1 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346892" + "plane" "(279.704 -4910.98 216) (279.67 -4911 212) (258.729 -4920 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.918726 -0.394896 0 -70] 0.125" + "vaxis" "[0 -0.00190997 -1 -32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346891" + "plane" "(258.695 -4920 216) (258.757 -4919.98 212) (233.055 -4928 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.95457 -0.297986 0 -288] 0.125" + "vaxis" "[0 0 -1 -21] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346890" + "plane" "(233 -4928.03 216) (233.081 -4928 212) (204.366 -4934 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.978894 -0.204369 0 -143.72] 0.125" + "vaxis" "[0 0.0013862 -1 33.7391] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346889" + "plane" "(204.505 -4933.98 216) (204.366 -4934 212) (172.88 -4938 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.992017 -0.126106 0 -108.092] 0.125" + "vaxis" "[0 -0.00141377 -1 -13.0735] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346888" + "plane" "(140 -4875 216) (140 -4875 212) (308 -4875 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346887" + "plane" "(140 -4938 216) (140 -4938 212) (140 -4875 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346886" + "plane" "(172.871 -4938 216) (172.878 -4938 212) (140 -4938 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -237.719] 0.125" + "vaxis" "[0 -0.00120014 -1 -4.454] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346885" + "plane" "(140 -4875 216) (308 -4875 216) (304.805 -4886.99 216)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "299140" + side + { + "id" "106663" + "plane" "(-32 -4875 228) (-28.7305 -4888.21 228) (-18.9023 -4901.45 228)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-1 0 0 96] 0.125" + "vaxis" "[0 -1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "106662" + "plane" "(312 -4875 232) (308.726 -4888.24 232) (298.935 -4901.41 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -59] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "106661" + "plane" "(312 -4875 228) (308.729 -4888.23 228) (308.728 -4888.24 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.240084 0.970752 0 345.832] 0.125" + "vaxis" "[0 0 -1 -6.04732] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106660" + "plane" "(308.73 -4888.22 228) (298.91 -4901.44 228) (298.936 -4901.41 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.596472 0.802634 0 -347] 0.125" + "vaxis" "[0 0 -1 -6] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106659" + "plane" "(298.91 -4901.44 228) (283.069 -4912.76 228) (283.027 -4912.78 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.813664 0.581335 0 -264] 0.125" + "vaxis" "[0.00138322 -0.00185394 -1 46] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106658" + "plane" "(283.054 -4912.77 228) (261.537 -4923.16 228) (261.66 -4923.1 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.90045 0.43496 0 -43] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106657" + "plane" "(261.528 -4923.16 228) (235.313 -4931.68 228) (235.195 -4931.71 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.951022 0.309122 0 -482.401] 0.125" + "vaxis" "[0.00156754 -0.00402342 -1 -40.2946] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106656" + "plane" "(235.306 -4931.69 228) (205.967 -4938.27 228) (205.914 -4938.28 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.975735 0.218954 0 -495] 0.125" + "vaxis" "[0 -0.00160839 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106655" + "plane" "(205.965 -4938.27 228) (173.645 -4942.06 228) (173.656 -4942.06 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.99358 0.116533 0 42.7253] 0.125" + "vaxis" "[0 0 -1 56.0235] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106654" + "plane" "(173.657 -4942.06 228) (140.011 -4943 228) (140 -4943 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 0.0279364 0 -395] 0.125" + "vaxis" "[0 0 -1 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106653" + "plane" "(140.033 -4943 228) (106.378 -4942.06 228) (106.422 -4942.06 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[1 -0.0279223 0 -44.1797] 0.125" + "vaxis" "[0 0 -1 56.9147] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106652" + "plane" "(106.386 -4942.06 228) (74.137 -4938.28 228) (74.125 -4938.28 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.993591 -0.116437 0 -468] 0.125" + "vaxis" "[0 0 -1 -7] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106651" + "plane" "(74.1217 -4938.28 228) (44.6386 -4931.67 228) (44.5586 -4931.65 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.976136 -0.218949 0 -417] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106650" + "plane" "(44.6238 -4931.66 228) (18.4608 -4923.17 228) (18.4922 -4923.18 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.951499 -0.308916 0 -381.204] 0.125" + "vaxis" "[0 0.00171436 -1 60.6043] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106649" + "plane" "(18.4498 -4923.16 228) (-3.08281 -4912.75 228) (-3.02344 -4912.78 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.900585 -0.435576 0 -257] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106648" + "plane" "(-3.09655 -4912.74 228) (-18.8992 -4901.46 228) (-18.918 -4901.43 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.814081 -0.581422 0 -385.343] 0.125" + "vaxis" "[-0.00116575 -0.00198382 -1 -21.3463] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106647" + "plane" "(-18.9003 -4901.45 228) (-28.7309 -4888.21 228) (-28.7305 -4888.21 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.596412 -0.803164 0 -474] 0.125" + "vaxis" "[0 0 -1 57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106646" + "plane" "(-28.73 -4888.22 228) (-32 -4875 228) (-32 -4875 232)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0.240244 -0.971114 0 -61.4834] 0.125" + "vaxis" "[0 0 -1 57.1872] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + side + { + "id" "106645" + "plane" "(-32 -4875 228) (312 -4875 228) (312 -4875 232)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "32768" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749374" + side + { + "id" "346872" + "plane" "(140 -4875 212) (-28 -4875 212) (-24.8086 -4887 212)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[-1 0 0 96] 0.125" + "vaxis" "[0 1 0 497] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346871" + "plane" "(107.106 -4938 212) (75.5391 -4934 212) (75.552 -4934 216)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.99203 0.126005 0 -385] 0.125" + "vaxis" "[0 0 -1 -21] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346870" + "plane" "(75.5559 -4934 216) (75.543 -4934 212) (46.9533 -4928 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.978949 0.204107 0 -385] 0.125" + "vaxis" "[0 0 -1 -21] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346869" + "plane" "(47 -4928.02 216) (46.9557 -4928 212) (21.2704 -4919.99 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.954357 0.298668 0 -385] 0.125" + "vaxis" "[0 0 -1 -21] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346868" + "plane" "(21.3213 -4920 216) (21.2723 -4919.99 212) (0.307339 -4911 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.919114 0.393991 0 -385] 0.125" + "vaxis" "[0 0 -1 -21] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346867" + "plane" "(0.285858 -4910.99 216) (0.317219 -4911 212) (-15.263 -4898.96 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.791011 0.611802 0 -385] 0.125" + "vaxis" "[0 0 -1 -21] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346866" + "plane" "(-15.2559 -4898.97 216) (-15.2651 -4898.96 212) (-24.8056 -4887 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.624341 0.781152 0 -385] 0.125" + "vaxis" "[0 0 -1 -21] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346865" + "plane" "(-24.8077 -4887 216) (-24.8074 -4887 212) (-28 -4875 212)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-0.257277 0.966338 0 -385] 0.125" + "vaxis" "[0 0 -1 -21] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346864" + "plane" "(-28 -4875 216) (-28 -4875 212) (140 -4875 212)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346863" + "plane" "(140 -4875 212) (140 -4938 212) (140 -4938 216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346862" + "plane" "(140 -4938 212) (107.113 -4938 212) (107.075 -4938 216)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[-1 0 0 -237.719] 0.125" + "vaxis" "[0 -0.00120014 -1 -4.45399] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346861" + "plane" "(107.087 -4938 216) (75.5391 -4934 216) (47 -4928.01 216)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749373" + side + { + "id" "346860" + "plane" "(107.077 -4938 228) (75.4102 -4933.97 228) (47.0751 -4928.04 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346859" + "plane" "(75.5867 -4934 216) (75.3945 -4933.97 228) (107.085 -4938 228)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.99203 0.126005 0 379.96] 0.125" + "vaxis" "[0 0 -1 115.42] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346858" + "plane" "(47.0278 -4928.02 216) (47.082 -4928.04 228) (75.3945 -4933.97 228)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.978949 0.204107 0 275.444] 0.125" + "vaxis" "[0 0 -1 114.663] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346857" + "plane" "(21.1875 -4919.96 228) (47.0781 -4928.04 228) (47.0239 -4928.02 216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.954357 0.298668 0 283.554] 0.125" + "vaxis" "[0 0 -1 103.894] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346856" + "plane" "(0.306515 -4911 216) (0.386719 -4911.05 228) (21.1992 -4919.97 228)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.919114 0.393991 0 321.428] 0.125" + "vaxis" "[0 0 -1 117.55] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346855" + "plane" "(-15.2734 -4898.95 228) (0.394531 -4911.05 228) (0.314323 -4911 216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.791011 0.611802 0 410.26] 0.125" + "vaxis" "[0 0 -1 130.407] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346854" + "plane" "(-24.8086 -4887 228) (-15.2656 -4898.96 228) (-15.2517 -4898.98 216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.624341 0.781152 0 199.098] 0.125" + "vaxis" "[0 0 -1 113.785] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346853" + "plane" "(-28 -4875 228) (-24.8096 -4887 228) (-24.8085 -4887 216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.257277 0.966338 0 79.3555] 0.125" + "vaxis" "[0 0 -1 117] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346852" + "plane" "(140 -4875 216) (140 -4875 228) (-28 -4875 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346851" + "plane" "(140 -4938 216) (140 -4938 228) (140 -4875 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346850" + "plane" "(107.039 -4938 216) (107.082 -4938 228) (140 -4938 228)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346849" + "plane" "(140 -4875 216) (-28 -4875 216) (-24.8047 -4887 216)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4749389" + side + { + "id" "346884" + "plane" "(140 -4875 228) (308 -4875 228) (304.807 -4887 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 44] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346883" + "plane" "(304.803 -4887 216) (304.806 -4887 228) (308 -4875 228)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.25734 -0.966321 0 -412.609] 0.125" + "vaxis" "[0 0 -1 113.305] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346882" + "plane" "(295.098 -4899.14 228) (304.801 -4887 228) (304.798 -4887.01 216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.623917 -0.781491 0 -448.117] 0.125" + "vaxis" "[0 0 -1 97.4161] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346881" + "plane" "(279.76 -4910.94 216) (279.891 -4910.87 228) (295.098 -4899.14 228)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.791292 -0.611439 0 -353.777] 0.125" + "vaxis" "[0 0 -1 128.945] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346880" + "plane" "(258.414 -4920.11 228) (279.891 -4910.87 228) (279.76 -4910.94 216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.919002 -0.394252 0 -76.4063] 0.125" + "vaxis" "[0 0 -1 83.1875] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346879" + "plane" "(232.96 -4928.04 216) (233 -4928.04 228) (258.418 -4920.11 228)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.954392 -0.298556 0 -477.012] 0.125" + "vaxis" "[0 0 -1 127.851] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346878" + "plane" "(204.544 -4933.97 216) (204.598 -4933.96 228) (233 -4928.04 228)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.97895 -0.2041 0 -432.091] 0.125" + "vaxis" "[0 0 -1 137.139] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346877" + "plane" "(172.859 -4938 228) (204.578 -4933.96 228) (204.524 -4933.97 216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[-0.992027 -0.126023 0 -3.8877] 0.125" + "vaxis" "[0 0 -1 114.437] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346876" + "plane" "(308 -4875 216) (308 -4875 228) (140 -4875 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "4096" + } + side + { + "id" "346875" + "plane" "(140 -4875 216) (140 -4875 228) (140 -4938 228)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 44] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346874" + "plane" "(140 -4938 228) (172.855 -4938 228) (172.876 -4938 216)" + "material" "CONCRETE/HR_C/HR_CONCRETE_WALL_PAINTED_002_BLUE" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "346873" + "plane" "(172.872 -4938 216) (204.539 -4933.97 216) (232.957 -4928.04 216)" + "material" "CONCRETE/HR_C/HR_CONC_F2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "188 209 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "188 209 0" + "groupid" "2962966" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2000]" + } +} +hidden +{ + entity + { + "id" "305711" + "classname" "prop_static" + "angles" "0 13.5 0" + "disableshadows" "1" + "fademaxdist" "1619" + "fademindist" "1415" + "fadescale" "1" + "model" "models/cs_apollo/palmetto_05.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "703 -4324 16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -12268]" + } + } +} +entity +{ + "id" "306164" + "classname" "func_detail" + solid + { + "id" "305935" + side + { + "id" "108275" + "plane" "(608 -4464 24) (616 -4456 24) (792 -4456 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" + } + side + { + "id" "108274" + "plane" "(616 -4456 0) (608 -4464 0) (800 -4464 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" "108273" + "plane" "(616 -4456 0) (616 -4456 24) (608 -4464 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" "108272" + "plane" "(792 -4456 24) (792 -4456 0) (800 -4464 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" "108271" + "plane" "(792 -4456 0) (792 -4456 24) (616 -4456 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108270" + "plane" "(800 -4464 24) (800 -4464 0) (608 -4464 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "306102" + side + { + "id" "108281" + "plane" "(812 -4476 28) (596 -4476 28) (616 -4456 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 30] 0.125" + "vaxis" "[1 0 0 103] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108280" + "plane" "(792 -4456 24) (616 -4456 24) (596 -4476 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" + } + side + { + "id" "108279" + "plane" "(596 -4476 24) (616 -4456 24) (616 -4456 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" "108278" + "plane" "(812 -4476 28) (792 -4456 28) (792 -4456 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" "108277" + "plane" "(616 -4456 24) (792 -4456 24) (792 -4456 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -577.992] 0.125" + "vaxis" "[1 0 0 103] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108276" + "plane" "(596 -4476 28) (812 -4476 28) (812 -4476 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 -161.992] 0.125" + "vaxis" "[1 0 0 103] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "306135" + side + { + "id" "108287" + "plane" "(792 -4168 28) (812 -4148 28) (812 -4476 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 30] 0.125" + "vaxis" "[1 0 0 103] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108286" + "plane" "(792 -4456 24) (812 -4476 24) (812 -4148 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9985] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108285" + "plane" "(812 -4476 24) (812 -4476 28) (812 -4148 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 30] 0.125" + "vaxis" "[0 0 -1 679] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108284" + "plane" "(792 -4168 24) (792 -4168 28) (792 -4456 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 30] 0.125" + "vaxis" "[0 0 1 70.9985] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108283" + "plane" "(792 -4456 24) (792 -4456 28) (812 -4476 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 31.9985] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108282" + "plane" "(812 -4148 24) (812 -4148 28) (792 -4168 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9985] 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" "306136" + side + { + "id" "108293" + "plane" "(812 -4148 28) (792 -4168 28) (616 -4168 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 -866] 0.125" + "vaxis" "[1 0 0 103] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108292" + "plane" "(596 -4148 24) (616 -4168 24) (792 -4168 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48.0015] 0.25" + "vaxis" "[0 1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108291" + "plane" "(812 -4148 24) (792 -4168 24) (792 -4168 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" "108290" + "plane" "(616 -4168 24) (596 -4148 24) (596 -4148 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" "108289" + "plane" "(792 -4168 24) (616 -4168 24) (616 -4168 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 -641.992] 0.125" + "vaxis" "[1 0 0 103] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108288" + "plane" "(596 -4148 24) (812 -4148 24) (812 -4148 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -26] 0.125" + "vaxis" "[1 0 0 103] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "305936" + side + { + "id" "108299" + "plane" "(800 -4160 24) (792 -4168 24) (616 -4168 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" + } + side + { + "id" "108298" + "plane" "(608 -4160 0) (616 -4168 0) (792 -4168 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" "108297" + "plane" "(616 -4168 0) (608 -4160 0) (608 -4160 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" "108296" + "plane" "(800 -4160 0) (792 -4168 0) (792 -4168 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" "108295" + "plane" "(608 -4160 0) (800 -4160 0) (800 -4160 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 0] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108294" + "plane" "(792 -4168 0) (616 -4168 0) (616 -4168 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "306103" + side + { + "id" "108305" + "plane" "(596 -4148 28) (616 -4168 28) (616 -4456 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 30] 0.125" + "vaxis" "[1 0 0 103] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108304" + "plane" "(596 -4476 24) (616 -4456 24) (616 -4168 24)" + "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" "108303" + "plane" "(596 -4148 24) (596 -4148 28) (596 -4476 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 30] 0.125" + "vaxis" "[0 0 1 542] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108302" + "plane" "(616 -4456 24) (616 -4456 28) (616 -4168 28)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 30] 0.125" + "vaxis" "[0 0 -1 135] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108301" + "plane" "(616 -4168 24) (616 -4168 28) (596 -4148 28)" + "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" "108300" + "plane" "(596 -4476 24) (596 -4476 28) (616 -4456 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 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" "305916" + side + { + "id" "108311" + "plane" "(608 -4160 24) (616 -4168 24) (616 -4456 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" + } + side + { + "id" "108310" + "plane" "(608 -4464 0) (616 -4456 0) (616 -4168 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" "108309" + "plane" "(608 -4160 0) (608 -4160 24) (608 -4464 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -127.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108308" + "plane" "(616 -4456 0) (616 -4456 24) (616 -4168 24)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 128] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "108307" + "plane" "(616 -4168 0) (616 -4168 24) (608 -4160 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" "108306" + "plane" "(608 -4464 0) (608 -4464 24) (616 -4456 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -7268]" + } +} +entity +{ + "id" "292163" + "classname" "func_buyzone" + "TeamNum" "2" + solid + { + "id" "292164" + side + { + "id" "103718" + "plane" "(814 -2379 22) (814 -1734 22) (1360 -1734 22)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 22.8906] 0.25" + "vaxis" "[0 -1 0 16.5977] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103717" + "plane" "(814 -1734 -32) (814 -2379 -32) (1360 -2379 -32)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 22.8906] 0.25" + "vaxis" "[0 -1 0 16.5977] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103716" + "plane" "(814 -2379 -32) (814 -1734 -32) (814 -1734 22)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 -16.5977] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103715" + "plane" "(1360 -1734 -32) (1360 -2379 -32) (1360 -2379 22)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 -16.5977] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103714" + "plane" "(814 -1734 -32) (1360 -1734 -32) (1360 -1734 22)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 22.8906] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103713" + "plane" "(1360 -2379 -32) (814 -2379 -32) (814 -2379 22)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 22.8906] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +hidden +{ + entity + { + "id" "292236" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "878.674 -4368 160" + editor + { + "color" "193 106 0" + "groupid" "305576" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 -7268]" + } + } +} +entity +{ + "id" "292240" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 254 225 300" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "878.674 -4368 153" + editor + { + "color" "193 106 0" + "groupid" "305576" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 -7268]" + } +} +entity +{ + "id" "289032" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "-0 0 1" + "BasisOrigin" "428 -6266 0" + "BasisU" "1 0 0" + "BasisV" "0 1 -0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "decals/rescue_zone_text" + "sides" "336440" + "StartU" "0" + "StartV" "1" + "uv0" "-64 -32 0" + "uv1" "-64 32 0" + "uv2" "64 32 0" + "uv3" "64 -32 0" + "origin" "428 -6266 0" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -768]" + } +} +entity +{ + "id" "289046" + "classname" "func_buyzone" + "TeamNum" "3" + solid + { + "id" "289044" + side + { + "id" "103568" + "plane" "(-16 -6784 26) (-16 -6080 26) (784 -6080 26)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103567" + "plane" "(-16 -6080 4) (-16 -6784 4) (784 -6784 4)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 -1 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103566" + "plane" "(-16 -6784 4) (-16 -6080 4) (-16 -6080 26)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103565" + "plane" "(784 -6080 4) (784 -6784 4) (784 -6784 26)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103564" + "plane" "(-16 -6080 4) (784 -6080 4) (784 -6080 26)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "103563" + "plane" "(784 -6784 4) (-16 -6784 4) (-16 -6784 26)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 40] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 500]" + } +} +hidden +{ + entity + { + "id" "258634" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_36.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-55 -4248 -128" + editor + { + "color" "139 192 0" + "groupid" "258802" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "258660" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-5 -4248 -96" + editor + { + "color" "139 192 0" + "groupid" "258802" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +hidden +{ + entity + { + "id" "258702" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_12.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-19 -4248 -104" + editor + { + "color" "139 192 0" + "groupid" "258802" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +entity +{ + "id" "245760" + "classname" "light_spot" + "_cone" "85" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "223 248 255 250" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-30 270 0" + "pitch" "-30" + "spawnflags" "0" + "style" "0" + "origin" "-73 -4125 -5.276" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +entity +{ + "id" "245765" + "classname" "env_sprite" + "disablereceiveshadows" "0" + "fademindist" "-1" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/glow.vmt" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "9" + "scale" ".4" + "spawnflags" "0" + "origin" "-73 -4124 -1.276" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2768]" + } +} +hidden +{ + entity + { + "id" "245768" + "classname" "prop_static" + "angles" "-50.5 270 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_fluorescent_light_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-72 -4114 2" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -2768]" + } + } +} +hidden +{ + entity + { + "id" "245852" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_stairs_144.mdl" + "renderamt" "255" + "rendercolor" "1 114 146" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "-199 -4248 -224" + editor + { + "color" "139 192 0" + "groupid" "258802" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 8000]" + } + } +} +entity +{ + "id" "240699" + "classname" "func_detail" + solid + { + "id" "416921" + side + { + "id" "121116" + "plane" "(96 -5536 32) (108 -5524 32) (108 -5600 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -38] 0.125" + "vaxis" "[1 0 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121115" + "plane" "(96 -5536 24) (96 -5600 24) (108 -5600 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9961] 0.25" + "vaxis" "[1 0 0 63.9982] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121114" + "plane" "(108 -5524 24) (108 -5524 32) (96 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -63.9982] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121113" + "plane" "(96 -5536 24) (96 -5536 32) (96 -5600 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121112" + "plane" "(108 -5600 24) (108 -5600 32) (108 -5524 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 182.996] 0.125" + "vaxis" "[0 0 -1 279] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121111" + "plane" "(96 -5600 24) (96 -5600 32) (108 -5600 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" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "416922" + side + { + "id" "121122" + "plane" "(108 -5524 24) (120 -5512 24) (120 -5600 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -38] 0.125" + "vaxis" "[1 0 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121121" + "plane" "(108 -5524 16) (108 -5600 16) (120 -5600 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9961] 0.25" + "vaxis" "[1 0 0 15.9982] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121120" + "plane" "(120 -5512 16) (120 -5512 24) (108 -5524 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -15.9982] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121119" + "plane" "(108 -5524 16) (108 -5524 24) (108 -5600 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9961] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121118" + "plane" "(120 -5600 16) (120 -5600 24) (120 -5512 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 375] 0.125" + "vaxis" "[0 0 -1 279] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121117" + "plane" "(108 -5600 16) (108 -5600 24) (120 -5600 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" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "416923" + side + { + "id" "121128" + "plane" "(120 -5512 16) (132 -5500 16) (132 -5600 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -38] 0.125" + "vaxis" "[1 0 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121127" + "plane" "(120 -5512 8) (120 -5600 8) (132 -5600 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9961] 0.25" + "vaxis" "[1 0 0 31.9982] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121126" + "plane" "(132 -5500 8) (132 -5500 16) (120 -5512 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -31.9982] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121125" + "plane" "(120 -5512 8) (120 -5512 16) (120 -5600 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9961] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121124" + "plane" "(132 -5600 8) (132 -5600 16) (132 -5500 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 310.996] 0.125" + "vaxis" "[0 0 -1 440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121123" + "plane" "(120 -5600 8) (120 -5600 16) (132 -5600 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" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "416924" + side + { + "id" "121134" + "plane" "(132 -5500 8) (144 -5488 8) (144 -5600 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[0 1 0 -38] 0.125" + "vaxis" "[1 0 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121133" + "plane" "(132 -5500 0) (132 -5600 0) (144 -5600 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9961] 0.25" + "vaxis" "[1 0 0 47.9982] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121132" + "plane" "(144 -5488 0) (144 -5488 8) (132 -5500 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -47.9982] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121131" + "plane" "(132 -5500 0) (132 -5500 8) (132 -5600 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.9961] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121130" + "plane" "(144 -5600 0) (144 -5600 8) (144 -5488 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[0 1 0 118.996] 0.125" + "vaxis" "[0 0 -1 430] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121129" + "plane" "(132 -5600 0) (132 -5600 8) (144 -5600 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" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "416925" + side + { + "id" "121140" + "plane" "(108 -5524 32) (96 -5536 32) (-128 -5536 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -38] 0.125" + "vaxis" "[0 1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121139" + "plane" "(-128 -5524 24) (-128 -5536 24) (96 -5536 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 1 0 63.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121138" + "plane" "(108 -5524 24) (96 -5536 24) (96 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121137" + "plane" "(-128 -5536 24) (-128 -5524 24) (-128 -5524 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -63.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121136" + "plane" "(96 -5536 24) (-128 -5536 24) (-128 -5536 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121135" + "plane" "(-128 -5524 24) (108 -5524 24) (108 -5524 32)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[-1 0 0 375] 0.125" + "vaxis" "[0 0 -1 279] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "416926" + side + { + "id" "121146" + "plane" "(120 -5512 24) (108 -5524 24) (-128 -5524 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -38] 0.125" + "vaxis" "[0 1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121145" + "plane" "(-128 -5512 16) (-128 -5524 16) (108 -5524 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 1 0 15.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121144" + "plane" "(120 -5512 16) (108 -5524 16) (108 -5524 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 15.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121143" + "plane" "(-128 -5524 16) (-128 -5512 16) (-128 -5512 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -15.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121142" + "plane" "(108 -5524 16) (-128 -5524 16) (-128 -5524 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121141" + "plane" "(-128 -5512 16) (120 -5512 16) (120 -5512 24)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[-1 0 0 375] 0.125" + "vaxis" "[0 0 -1 279] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "416927" + side + { + "id" "121152" + "plane" "(132 -5500 16) (120 -5512 16) (-128 -5512 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -38] 0.125" + "vaxis" "[0 1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121151" + "plane" "(-128 -5500 8) (-128 -5512 8) (120 -5512 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 1 0 31.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121150" + "plane" "(132 -5500 8) (120 -5512 8) (120 -5512 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121149" + "plane" "(-128 -5512 8) (-128 -5500 8) (-128 -5500 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -31.998] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121148" + "plane" "(120 -5512 8) (-128 -5512 8) (-128 -5512 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121147" + "plane" "(-128 -5500 8) (132 -5500 8) (132 -5500 16)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[-1 0 0 375] 0.125" + "vaxis" "[0 0 -1 440] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "416928" + side + { + "id" "121158" + "plane" "(144 -5488 8) (132 -5500 8) (-128 -5500 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_FLOOR_05" + "uaxis" "[-1 0 0 -38] 0.125" + "vaxis" "[0 1 0 -18] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121157" + "plane" "(-128 -5488 0) (-128 -5500 0) (132 -5500 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 1 0 47.998] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121156" + "plane" "(144 -5488 0) (132 -5500 0) (132 -5500 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 47.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121155" + "plane" "(-128 -5500 0) (-128 -5488 0) (-128 -5488 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 -47.998] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121154" + "plane" "(132 -5500 0) (-128 -5500 0) (-128 -5500 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0.00390625] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "121153" + "plane" "(-128 -5488 0) (144 -5488 0) (144 -5488 8)" + "material" "CONCRETE/HR_C/HR_CONCRETE_STAIRS_03_COLOR" + "uaxis" "[-1 0 0 375] 0.125" + "vaxis" "[0 0 -1 430] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "223 152 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "223 152 0" + "groupid" "8436125" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -8268]" + } +} +entity +{ + "id" "233653" + "classname" "func_detail" + solid + { + "id" "5933771" + side + { + "id" "371224" + "plane" "(-1102 -3328 32) (-1102 -3776 32) (-1088 -3776 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371223" + "plane" "(-1102 -3776 32) (-1102 -3328 32) (-1102 -3328 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371222" + "plane" "(-1088 -3328 32) (-1088 -3776 32) (-1088 -3776 84)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371221" + "plane" "(-1102 -3328 32) (-1088 -3328 32) (-1088 -3328 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371220" + "plane" "(-1088 -3776 32) (-1102 -3776 32) (-1102 -3776 84)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371219" + "plane" "(-1102 -3776 84) (-1102 -3328 84) (-1088 -3328 84)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5933890" + side + { + "id" "371236" + "plane" "(-1104 -3840 64) (-1104 -3776 88) (-1086 -3776 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -18] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371235" + "plane" "(-1104 -3776 84) (-1104 -3776 88) (-1104 -3840 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" "371234" + "plane" "(-1086 -3840 60) (-1086 -3840 64) (-1086 -3776 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0.351123 -0.936329 511.913] 0.125" + "vaxis" "[0.3887 -0.8627 -0.323512 516.285] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371233" + "plane" "(-1086 -3776 84) (-1086 -3776 88) (-1104 -3776 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371232" + "plane" "(-1104 -3840 60) (-1104 -3840 64) (-1086 -3840 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371231" + "plane" "(-1104 -3776 84) (-1104 -3840 60) (-1086 -3840 60)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 -980.033] 0.125" + "vaxis" "[0 -0.753424 -0.657534 386.929] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5933762" + side + { + "id" "371212" + "plane" "(-1083.68 -3956 64) (-1102 -3840 64) (-1086 -3840 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.987689 0.156435 0 -17.804] 0.125" + "vaxis" "[0.156435 -0.987689 0 677.497] 0.125" + "rotation" "9" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371211" + "plane" "(-1102 -3840 60) (-1102 -3840 64) (-1083.68 -3956 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" "371210" + "plane" "(-1067.68 -3956 60) (-1067.68 -3956 64) (-1086 -3840 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -591.532] 0.125" + "vaxis" "[0.155992 -0.987759 0 671.731] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371209" + "plane" "(-1086 -3840 60) (-1086 -3840 64) (-1102 -3840 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371208" + "plane" "(-1083.68 -3956 60) (-1083.68 -3956 64) (-1067.68 -3956 64)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0.987689 0 0.156435 -952.752] 0.125" + "vaxis" "[0.156435 0 -0.987689 697.57] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371207" + "plane" "(-1102 -3840 60) (-1083.68 -3956 60) (-1067.68 -3956 60)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-0.987758 -0.155992 0 -109.251] 0.125" + "vaxis" "[0.155992 -0.987759 0 671.732] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5933761" + side + { + "id" "371206" + "plane" "(-1102 -3840 31) (-1083.68 -3956 31) (-1070 -3956 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371205" + "plane" "(-1083.68 -3956 60) (-1083.68 -3956 31) (-1102 -3840 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371204" + "plane" "(-1088 -3840 60) (-1088 -3840 31) (-1070 -3956 31)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-0.153334 0.988174 0 -697.906] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371203" + "plane" "(-1102 -3840 60) (-1102 -3840 31) (-1088 -3840 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371202" + "plane" "(-1070 -3956 60) (-1070 -3956 31) (-1083.68 -3956 31)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -40] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371201" + "plane" "(-1083.68 -3956 60) (-1102 -3840 60) (-1088 -3840 60)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5933770" + side + { + "id" "371218" + "plane" "(-1104 -3776 88) (-1104 -3328 88) (-1086 -3328 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371217" + "plane" "(-1104 -3328 84) (-1104 -3328 88) (-1104 -3776 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" "371216" + "plane" "(-1086 -3776 84) (-1086 -3776 88) (-1086 -3328 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 -818] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371215" + "plane" "(-1086 -3328 84) (-1086 -3328 88) (-1104 -3328 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" + } + side + { + "id" "371214" + "plane" "(-1104 -3776 84) (-1104 -3776 88) (-1086 -3776 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" + } + side + { + "id" "371213" + "plane" "(-1104 -3328 84) (-1104 -3776 84) (-1086 -3776 84)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 -961.997] 0.125" + "vaxis" "[0 -1 0 678] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "5933889" + side + { + "id" "371230" + "plane" "(-1102 -3776 16) (-1102 -3840 16) (-1088 -3840 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" "371229" + "plane" "(-1102 -3840 60) (-1102 -3840 16) (-1102 -3776 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" "371228" + "plane" "(-1088 -3776 84) (-1088 -3776 16) (-1088 -3840 16)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "371227" + "plane" "(-1102 -3776 84) (-1102 -3776 16) (-1088 -3776 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" "371226" + "plane" "(-1088 -3840 60) (-1088 -3840 16) (-1102 -3840 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" "371225" + "plane" "(-1102 -3840 60) (-1102 -3776 84) (-1088 -3776 84)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 8000]" + } +} +entity +{ + "id" "222983" + "classname" "func_detail" + solid + { + "id" "1004736" + side + { + "id" "232668" + "plane" "(-1064 -2604 -24) (-1272 -2604 -24) (-1272 -2592 -24)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232667" + "plane" "(-1272 -2604 -32) (-1272 -2604 -24) (-1064 -2604 -24)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232666" + "plane" "(-1064 -2604 -32) (-1064 -2604 -24) (-1064 -2592 -24)" + "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" "232665" + "plane" "(-1272 -2592 -24) (-1272 -2604 -24) (-1272 -2604 -32)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232664" + "plane" "(-1064 -2592 -24) (-1272 -2592 -24) (-1272 -2604 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004735" + side + { + "id" "232663" + "plane" "(-1064 -2628 -40) (-1272 -2628 -40) (-1272 -2616 -40)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232662" + "plane" "(-1272 -2628 -48) (-1272 -2628 -40) (-1064 -2628 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232661" + "plane" "(-1064 -2628 -48) (-1064 -2628 -40) (-1064 -2616 -40)" + "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" "232660" + "plane" "(-1272 -2616 -40) (-1272 -2628 -40) (-1272 -2628 -48)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232659" + "plane" "(-1064 -2616 -40) (-1272 -2616 -40) (-1272 -2628 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004734" + side + { + "id" "232658" + "plane" "(-1064 -2616 -32) (-1272 -2616 -32) (-1272 -2604 -32)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232657" + "plane" "(-1272 -2616 -40) (-1272 -2616 -32) (-1064 -2616 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 30] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232656" + "plane" "(-1064 -2616 -40) (-1064 -2616 -32) (-1064 -2604 -32)" + "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" "232655" + "plane" "(-1272 -2604 -32) (-1272 -2616 -32) (-1272 -2616 -40)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232654" + "plane" "(-1064 -2604 -32) (-1272 -2604 -32) (-1272 -2616 -40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "223124" + side + { + "id" "76917" + "plane" "(-1064 -2820 -168) (-1272 -2820 -168) (-1272 -2808 -168)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76916" + "plane" "(-1272 -2820 -176) (-1272 -2820 -168) (-1064 -2820 -168)" + "material" "DE_NUKE/HR_NUKE/HAZARD_STRIPE_001" + "uaxis" "[0 0 -1 -256] 0.125" + "vaxis" "[-1 0 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76915" + "plane" "(-1064 -2820 -176) (-1064 -2820 -168) (-1064 -2808 -168)" + "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" "76914" + "plane" "(-1272 -2808 -168) (-1272 -2820 -168) (-1272 -2820 -176)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76913" + "plane" "(-1064 -2808 -168) (-1272 -2808 -168) (-1272 -2820 -176)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 60] 0.25" + "vaxis" "[0 -0.83205 -0.5547 9.26869] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "223125" + side + { + "id" "76922" + "plane" "(-1064 -2808 -160) (-1272 -2808 -160) (-1272 -2796 -160)" + "material" "CS_APOLLO/FLOOR/YELLOW_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76921" + "plane" "(-1272 -2808 -168) (-1272 -2808 -160) (-1064 -2808 -160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -97] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76920" + "plane" "(-1064 -2808 -168) (-1064 -2808 -160) (-1064 -2796 -160)" + "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" "76919" + "plane" "(-1272 -2796 -160) (-1272 -2808 -160) (-1272 -2808 -168)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76918" + "plane" "(-1064 -2796 -160) (-1272 -2796 -160) (-1272 -2808 -168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 60] 0.25" + "vaxis" "[0 -0.83205 -0.5547 9.26869] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "223126" + side + { + "id" "76927" + "plane" "(-1064 -2796 -152) (-1272 -2796 -152) (-1272 -2784 -152)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76926" + "plane" "(-1272 -2796 -160) (-1272 -2796 -152) (-1064 -2796 -152)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 -31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76925" + "plane" "(-1064 -2796 -160) (-1064 -2796 -152) (-1064 -2784 -152)" + "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" "76924" + "plane" "(-1272 -2784 -152) (-1272 -2796 -152) (-1272 -2796 -160)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76923" + "plane" "(-1064 -2784 -152) (-1272 -2784 -152) (-1272 -2796 -160)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 60] 0.25" + "vaxis" "[0 -0.83205 -0.5547 9.26869] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "223127" + side + { + "id" "76932" + "plane" "(-1064 -2784 -144) (-1272 -2784 -144) (-1272 -2772 -144)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76931" + "plane" "(-1272 -2784 -152) (-1272 -2784 -144) (-1064 -2784 -144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76930" + "plane" "(-1064 -2784 -152) (-1064 -2784 -144) (-1064 -2772 -144)" + "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" "76929" + "plane" "(-1272 -2772 -144) (-1272 -2784 -144) (-1272 -2784 -152)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76928" + "plane" "(-1064 -2772 -144) (-1272 -2772 -144) (-1272 -2784 -152)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 60] 0.25" + "vaxis" "[0 -0.83205 -0.5547 9.26869] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "223128" + side + { + "id" "76937" + "plane" "(-1064 -2772 -136) (-1272 -2772 -136) (-1272 -2760 -136)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76936" + "plane" "(-1272 -2772 -144) (-1272 -2772 -136) (-1064 -2772 -136)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 97] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76935" + "plane" "(-1064 -2772 -144) (-1064 -2772 -136) (-1064 -2760 -136)" + "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" "76934" + "plane" "(-1272 -2760 -136) (-1272 -2772 -136) (-1272 -2772 -144)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76933" + "plane" "(-1064 -2760 -136) (-1272 -2760 -136) (-1272 -2772 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 60] 0.25" + "vaxis" "[0 -0.83205 -0.5547 9.26869] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "223129" + side + { + "id" "76942" + "plane" "(-1064 -2760 -128) (-1272 -2760 -128) (-1272 -2748 -128)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76941" + "plane" "(-1272 -2760 -136) (-1272 -2760 -128) (-1064 -2760 -128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76940" + "plane" "(-1064 -2760 -136) (-1064 -2760 -128) (-1064 -2748 -128)" + "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" "76939" + "plane" "(-1272 -2748 -128) (-1272 -2760 -128) (-1272 -2760 -136)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76938" + "plane" "(-1064 -2748 -128) (-1272 -2748 -128) (-1272 -2760 -136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 60] 0.25" + "vaxis" "[0 -0.83205 -0.5547 9.26869] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "223130" + side + { + "id" "76947" + "plane" "(-1064 -2748 -120) (-1272 -2748 -120) (-1272 -2736 -120)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76946" + "plane" "(-1272 -2748 -128) (-1272 -2748 -120) (-1064 -2748 -120)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76945" + "plane" "(-1064 -2748 -128) (-1064 -2748 -120) (-1064 -2736 -120)" + "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" "76944" + "plane" "(-1272 -2736 -120) (-1272 -2748 -120) (-1272 -2748 -128)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76943" + "plane" "(-1064 -2736 -120) (-1272 -2736 -120) (-1272 -2748 -128)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 60] 0.25" + "vaxis" "[0 -0.83205 -0.5547 9.26869] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004725" + side + { + "id" "232613" + "plane" "(-1064 -2736 -112) (-1272 -2736 -112) (-1272 -2724 -112)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232612" + "plane" "(-1272 -2736 -120) (-1272 -2736 -112) (-1064 -2736 -112)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232611" + "plane" "(-1064 -2736 -120) (-1064 -2736 -112) (-1064 -2724 -112)" + "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" "232610" + "plane" "(-1272 -2724 -112) (-1272 -2736 -112) (-1272 -2736 -120)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232609" + "plane" "(-1064 -2724 -112) (-1272 -2724 -112) (-1272 -2736 -120)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004726" + side + { + "id" "232618" + "plane" "(-1064 -2724 -104) (-1272 -2724 -104) (-1272 -2712 -104)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232617" + "plane" "(-1272 -2724 -112) (-1272 -2724 -104) (-1064 -2724 -104)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232616" + "plane" "(-1064 -2724 -112) (-1064 -2724 -104) (-1064 -2712 -104)" + "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" "232615" + "plane" "(-1272 -2712 -104) (-1272 -2724 -104) (-1272 -2724 -112)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232614" + "plane" "(-1064 -2712 -104) (-1272 -2712 -104) (-1272 -2724 -112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004727" + side + { + "id" "232623" + "plane" "(-1064 -2712 -96) (-1272 -2712 -96) (-1272 -2700 -96)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232622" + "plane" "(-1272 -2712 -104) (-1272 -2712 -96) (-1064 -2712 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232621" + "plane" "(-1064 -2712 -104) (-1064 -2712 -96) (-1064 -2700 -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" "232620" + "plane" "(-1272 -2700 -96) (-1272 -2712 -96) (-1272 -2712 -104)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232619" + "plane" "(-1064 -2700 -96) (-1272 -2700 -96) (-1272 -2712 -104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004728" + side + { + "id" "232628" + "plane" "(-1064 -2700 -88) (-1272 -2700 -88) (-1272 -2688 -88)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232627" + "plane" "(-1272 -2700 -96) (-1272 -2700 -88) (-1064 -2700 -88)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232626" + "plane" "(-1064 -2700 -96) (-1064 -2700 -88) (-1064 -2688 -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" "232625" + "plane" "(-1272 -2688 -88) (-1272 -2700 -88) (-1272 -2700 -96)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232624" + "plane" "(-1064 -2688 -88) (-1272 -2688 -88) (-1272 -2700 -96)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004729" + side + { + "id" "232633" + "plane" "(-1064 -2688 -80) (-1272 -2688 -80) (-1272 -2676 -80)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232632" + "plane" "(-1272 -2688 -88) (-1272 -2688 -80) (-1064 -2688 -80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232631" + "plane" "(-1064 -2688 -88) (-1064 -2688 -80) (-1064 -2676 -80)" + "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" "232630" + "plane" "(-1272 -2676 -80) (-1272 -2688 -80) (-1272 -2688 -88)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232629" + "plane" "(-1064 -2676 -80) (-1272 -2676 -80) (-1272 -2688 -88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004730" + side + { + "id" "232638" + "plane" "(-1064 -2676 -72) (-1272 -2676 -72) (-1272 -2664 -72)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232637" + "plane" "(-1272 -2676 -80) (-1272 -2676 -72) (-1064 -2676 -72)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 96] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232636" + "plane" "(-1064 -2676 -80) (-1064 -2676 -72) (-1064 -2664 -72)" + "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" "232635" + "plane" "(-1272 -2664 -72) (-1272 -2676 -72) (-1272 -2676 -80)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232634" + "plane" "(-1064 -2664 -72) (-1272 -2664 -72) (-1272 -2676 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004731" + side + { + "id" "232643" + "plane" "(-1064 -2664 -64) (-1272 -2664 -64) (-1272 -2652 -64)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232642" + "plane" "(-1272 -2664 -72) (-1272 -2664 -64) (-1064 -2664 -64)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232641" + "plane" "(-1064 -2664 -72) (-1064 -2664 -64) (-1064 -2652 -64)" + "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" "232640" + "plane" "(-1272 -2652 -64) (-1272 -2664 -64) (-1272 -2664 -72)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232639" + "plane" "(-1064 -2652 -64) (-1272 -2652 -64) (-1272 -2664 -72)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004732" + side + { + "id" "232648" + "plane" "(-1064 -2640 -48) (-1272 -2640 -48) (-1272 -2628 -48)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232647" + "plane" "(-1272 -2640 -56) (-1272 -2640 -48) (-1064 -2640 -48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 32] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232646" + "plane" "(-1064 -2640 -56) (-1064 -2640 -48) (-1064 -2628 -48)" + "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" "232645" + "plane" "(-1272 -2628 -48) (-1272 -2640 -48) (-1272 -2640 -56)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232644" + "plane" "(-1064 -2628 -48) (-1272 -2628 -48) (-1272 -2640 -56)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1004733" + side + { + "id" "232653" + "plane" "(-1064 -2652 -56) (-1272 -2652 -56) (-1272 -2640 -56)" + "material" "CS_APOLLO/FLOOR/BLUE_FLOOR_NEW" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232652" + "plane" "(-1272 -2652 -64) (-1272 -2652 -56) (-1064 -2652 -56)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 -128] 0.125" + "vaxis" "[0 0 -1 95] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232651" + "plane" "(-1064 -2652 -64) (-1064 -2652 -56) (-1064 -2640 -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" + } + side + { + "id" "232650" + "plane" "(-1272 -2640 -56) (-1272 -2652 -56) (-1272 -2652 -64)" + "material" "PLASTER/HR_P/PLASTER_B" + "uaxis" "[0 1 0 -448] 0.125" + "vaxis" "[0 0 -1 -64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "232649" + "plane" "(-1064 -2640 -56) (-1272 -2640 -56) (-1272 -2652 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 0.83205 0.5547 51.8819] 0.25" + "vaxis" "[-1 0 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 3000]" + } +} +entity +{ + "id" "183179" + "classname" "func_detail" + solid + { + "id" "183058" + side + { + "id" "62150" + "plane" "(784 -744 16) (776 -712 16) (840 -712 16)" + "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" "62149" + "plane" "(776 -712 -16) (786 -752 -16) (832 -752 -16)" + "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" "62148" + "plane" "(786 -752 -16) (776 -712 -16) (776 -712 16)" + "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" "62147" + "plane" "(840 -712 -16) (832 -752 -16) (833.6 -744 16)" + "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" "62146" + "plane" "(776 -712 -16) (840 -712 -16) (840 -712 16)" + "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" "62145" + "plane" "(832 -752 -16) (786 -752 -16) (784 -744 16)" + "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" + } + } + solid + { + "id" "183123" + side + { + "id" "62155" + "plane" "(696 -712 16) (800 -712 16) (800 -744 16)" + "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" "62154" + "plane" "(800 -744 -16) (800 -744 16) (800 -712 16)" + "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" "62153" + "plane" "(800 -712 -16) (800 -712 16) (696 -712 16)" + "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" "62152" + "plane" "(696 -744 16) (800 -744 16) (800 -744 -16)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62151" + "plane" "(696 -712 16) (696 -744 16) (800 -744 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-0.955779 0 0.294086 -25.7415] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "183124" + side + { + "id" "62160" + "plane" "(920 -744 16) (816 -744 16) (816 -712 16)" + "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" "62159" + "plane" "(816 -712 -16) (816 -712 16) (816 -744 16)" + "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" "62158" + "plane" "(920 -712 16) (816 -712 16) (816 -712 -16)" + "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" "62157" + "plane" "(816 -744 -16) (816 -744 16) (920 -744 16)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62156" + "plane" "(816 -712 -16) (816 -744 -16) (920 -744 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0.955779 0 0.294086 23.4273] 0.25" + "vaxis" "[0 -1 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "183080" + side + { + "id" "62165" + "plane" "(696 -736 16) (696 -744 16) (920 -744 16)" + "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" "62164" + "plane" "(696 -736 28) (696 -744 16) (696 -736 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" "62163" + "plane" "(920 -736 16) (920 -744 16) (920 -736 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" "62162" + "plane" "(920 -736 28) (920 -744 16) (696 -744 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" "62161" + "plane" "(696 -736 28) (696 -736 16) (920 -736 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "183081" + side + { + "id" "62171" + "plane" "(696 -736 104) (696 -712 104) (920 -712 104)" + "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" "62170" + "plane" "(696 -712 16) (696 -736 16) (920 -736 16)" + "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" "62169" + "plane" "(696 -736 16) (696 -712 16) (696 -712 104)" + "material" "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" "62168" + "plane" "(920 -712 16) (920 -736 16) (920 -736 104)" + "material" "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" "62167" + "plane" "(696 -712 16) (920 -712 16) (920 -712 104)" + "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" "62166" + "plane" "(920 -736 16) (696 -736 16) (696 -736 104)" + "material" "DEV/REFLECTIVITY_20B" + "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" "183084" + side + { + "id" "62176" + "plane" "(696 -744 104) (696 -736 104) (920 -736 104)" + "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" "62175" + "plane" "(696 -736 104) (696 -744 104) (696 -736 92)" + "material" "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" "62174" + "plane" "(920 -736 92) (920 -744 104) (920 -736 104)" + "material" "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" "62173" + "plane" "(696 -736 92) (696 -744 104) (920 -744 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" "62172" + "plane" "(920 -736 92) (920 -736 104) (696 -736 104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 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" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6000]" + } +} +entity +{ + "id" "167773" + "classname" "func_detail" + solid + { + "id" "166302" + side + { + "id" "55030" + "plane" "(1216 -1098 -6) (1216 -1063 -6) (1280 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55029" + "plane" "(1216 -1063 -8) (1216 -1098 -8) (1280 -1098 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55028" + "plane" "(1216 -1098 -8) (1216 -1063 -8) (1216 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55027" + "plane" "(1280 -1063 -8) (1280 -1098 -8) (1280 -1098 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55026" + "plane" "(1216 -1063 -8) (1280 -1063 -8) (1280 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55025" + "plane" "(1280 -1098 -8) (1216 -1098 -8) (1216 -1098 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "166301" + side + { + "id" "55036" + "plane" "(1280 -1098 -6) (1280 -1063 -6) (1376 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 72] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55035" + "plane" "(1280 -1063 -8) (1280 -1098 -8) (1376 -1098 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55034" + "plane" "(1280 -1098 -8) (1280 -1063 -8) (1280 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55033" + "plane" "(1376 -1063 -8) (1376 -1098 -8) (1376 -1098 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 72] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55032" + "plane" "(1280 -1063 -8) (1376 -1063 -8) (1376 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55031" + "plane" "(1376 -1098 -8) (1280 -1098 -8) (1280 -1098 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "166563" + side + { + "id" "55042" + "plane" "(816 -1098 -6) (816 -1063 -6) (912 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 72] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55041" + "plane" "(816 -1063 -8) (816 -1098 -8) (912 -1098 -8)" + "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" "55040" + "plane" "(816 -1098 -8) (816 -1063 -8) (816 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -72.002] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55039" + "plane" "(912 -1063 -8) (912 -1098 -8) (912 -1098 -6)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -72] 0.125" + "vaxis" "[0 0 -1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55038" + "plane" "(816 -1063 -8) (912 -1063 -8) (912 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55037" + "plane" "(912 -1098 -8) (816 -1098 -8) (816 -1098 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "166562" + side + { + "id" "55048" + "plane" "(912 -1098 -6) (912 -1063 -6) (976 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55047" + "plane" "(912 -1063 -8) (912 -1098 -8) (976 -1098 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55046" + "plane" "(912 -1098 -8) (912 -1063 -8) (912 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55045" + "plane" "(976 -1063 -8) (976 -1098 -8) (976 -1098 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55044" + "plane" "(912 -1063 -8) (976 -1063 -8) (976 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55043" + "plane" "(976 -1098 -8) (912 -1098 -8) (912 -1098 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "166561" + side + { + "id" "55054" + "plane" "(976 -1098 -6) (976 -1063 -6) (1216 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 72] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55053" + "plane" "(976 -1063 -8) (976 -1098 -8) (1216 -1098 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55052" + "plane" "(976 -1098 -8) (976 -1063 -8) (976 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 36] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55051" + "plane" "(1216 -1063 -8) (1216 -1098 -8) (1216 -1098 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -36] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55050" + "plane" "(976 -1063 -8) (1216 -1063 -8) (1216 -1063 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55049" + "plane" "(1216 -1098 -8) (976 -1098 -8) (976 -1098 -6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167079" + side + { + "id" "55060" + "plane" "(1280 -1063 8) (1280 -1047 8) (1376 -1047 8)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55059" + "plane" "(1280 -1047 7) (1280 -1063 7) (1376 -1063 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55058" + "plane" "(1280 -1063 7) (1280 -1047 7) (1280 -1047 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55057" + "plane" "(1376 -1047 7) (1376 -1063 7) (1376 -1063 8)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55056" + "plane" "(1280 -1047 7) (1376 -1047 7) (1376 -1047 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55055" + "plane" "(1376 -1063 7) (1280 -1063 7) (1280 -1063 8)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167068" + side + { + "id" "55066" + "plane" "(1284 -1063 -6) (1284 -1059 -6) (1286 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55065" + "plane" "(1284 -1059 -8) (1284 -1063 -8) (1286 -1063 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55064" + "plane" "(1284 -1063 -8) (1284 -1059 -8) (1284 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55063" + "plane" "(1286 -1059 -8) (1286 -1063 -8) (1286 -1063 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55062" + "plane" "(1284 -1059 -8) (1286 -1059 -8) (1286 -1059 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55061" + "plane" "(1286 -1063 -8) (1284 -1063 -8) (1284 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167069" + side + { + "id" "55072" + "plane" "(1284 -1059 7) (1284 -1057 7) (1286 -1057 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55071" + "plane" "(1284 -1057 -14) (1284 -1059 -14) (1286 -1059 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55070" + "plane" "(1284 -1059 -14) (1284 -1057 -14) (1284 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55069" + "plane" "(1286 -1057 -14) (1286 -1059 -14) (1286 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55068" + "plane" "(1284 -1057 -14) (1286 -1057 -14) (1286 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55067" + "plane" "(1286 -1059 -14) (1284 -1059 -14) (1284 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167082" + side + { + "id" "55078" + "plane" "(1370 -1059 7) (1370 -1057 7) (1372 -1057 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55077" + "plane" "(1370 -1057 -14) (1370 -1059 -14) (1372 -1059 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55076" + "plane" "(1370 -1059 -14) (1370 -1057 -14) (1370 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55075" + "plane" "(1372 -1057 -14) (1372 -1059 -14) (1372 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55074" + "plane" "(1370 -1057 -14) (1372 -1057 -14) (1372 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55073" + "plane" "(1372 -1059 -14) (1370 -1059 -14) (1370 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167083" + side + { + "id" "55084" + "plane" "(1370 -1063 -6) (1370 -1059 -6) (1372 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55083" + "plane" "(1370 -1059 -8) (1370 -1063 -8) (1372 -1063 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55082" + "plane" "(1370 -1063 -8) (1370 -1059 -8) (1370 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55081" + "plane" "(1372 -1059 -8) (1372 -1063 -8) (1372 -1063 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55080" + "plane" "(1370 -1059 -8) (1372 -1059 -8) (1372 -1059 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55079" + "plane" "(1372 -1063 -8) (1370 -1063 -8) (1370 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167430" + side + { + "id" "55090" + "plane" "(976 -1063 8) (976 -1047 8) (1216 -1047 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55089" + "plane" "(976 -1047 7) (976 -1063 7) (1216 -1063 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55088" + "plane" "(976 -1063 7) (976 -1047 7) (976 -1047 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55087" + "plane" "(1216 -1047 7) (1216 -1063 7) (1216 -1063 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55086" + "plane" "(976 -1047 7) (1216 -1047 7) (1216 -1047 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55085" + "plane" "(1216 -1063 7) (976 -1063 7) (976 -1063 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167432" + side + { + "id" "55096" + "plane" "(1062 -1063 -6) (1062 -1059 -6) (1064 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55095" + "plane" "(1062 -1059 -8) (1062 -1063 -8) (1064 -1063 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55094" + "plane" "(1062 -1063 -8) (1062 -1059 -8) (1062 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55093" + "plane" "(1064 -1059 -8) (1064 -1063 -8) (1064 -1063 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55092" + "plane" "(1062 -1059 -8) (1064 -1059 -8) (1064 -1059 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55091" + "plane" "(1064 -1063 -8) (1062 -1063 -8) (1062 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167433" + side + { + "id" "55102" + "plane" "(1062 -1059 7) (1062 -1057 7) (1064 -1057 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55101" + "plane" "(1062 -1057 -14) (1062 -1059 -14) (1064 -1059 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55100" + "plane" "(1062 -1059 -14) (1062 -1057 -14) (1062 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55099" + "plane" "(1064 -1057 -14) (1064 -1059 -14) (1064 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55098" + "plane" "(1062 -1057 -14) (1064 -1057 -14) (1064 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55097" + "plane" "(1064 -1059 -14) (1062 -1059 -14) (1062 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167435" + side + { + "id" "55108" + "plane" "(1210 -1059 7) (1210 -1057 7) (1212 -1057 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55107" + "plane" "(1210 -1057 -14) (1210 -1059 -14) (1212 -1059 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55106" + "plane" "(1210 -1059 -14) (1210 -1057 -14) (1210 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55105" + "plane" "(1212 -1057 -14) (1212 -1059 -14) (1212 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55104" + "plane" "(1210 -1057 -14) (1212 -1057 -14) (1212 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55103" + "plane" "(1212 -1059 -14) (1210 -1059 -14) (1210 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167436" + side + { + "id" "55114" + "plane" "(1210 -1063 -6) (1210 -1059 -6) (1212 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55113" + "plane" "(1210 -1059 -8) (1210 -1063 -8) (1212 -1063 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55112" + "plane" "(1210 -1063 -8) (1210 -1059 -8) (1210 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55111" + "plane" "(1212 -1059 -8) (1212 -1063 -8) (1212 -1063 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55110" + "plane" "(1210 -1059 -8) (1212 -1059 -8) (1212 -1059 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55109" + "plane" "(1212 -1063 -8) (1210 -1063 -8) (1210 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167643" + side + { + "id" "55120" + "plane" "(1144 -1063 -6) (1144 -1059 -6) (1146 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55119" + "plane" "(1144 -1059 -8) (1144 -1063 -8) (1146 -1063 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55118" + "plane" "(1144 -1063 -8) (1144 -1059 -8) (1144 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55117" + "plane" "(1146 -1059 -8) (1146 -1063 -8) (1146 -1063 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55116" + "plane" "(1144 -1059 -8) (1146 -1059 -8) (1146 -1059 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55115" + "plane" "(1146 -1063 -8) (1144 -1063 -8) (1144 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167642" + side + { + "id" "55126" + "plane" "(1144 -1059 7) (1144 -1057 7) (1146 -1057 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55125" + "plane" "(1144 -1057 -14) (1144 -1059 -14) (1146 -1059 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55124" + "plane" "(1144 -1059 -14) (1144 -1057 -14) (1144 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55123" + "plane" "(1146 -1057 -14) (1146 -1059 -14) (1146 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55122" + "plane" "(1144 -1057 -14) (1146 -1057 -14) (1146 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55121" + "plane" "(1146 -1059 -14) (1144 -1059 -14) (1144 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167630" + side + { + "id" "55132" + "plane" "(980 -1063 -6) (980 -1059 -6) (982 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55131" + "plane" "(980 -1059 -8) (980 -1063 -8) (982 -1063 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55130" + "plane" "(980 -1063 -8) (980 -1059 -8) (980 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55129" + "plane" "(982 -1059 -8) (982 -1063 -8) (982 -1063 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55128" + "plane" "(980 -1059 -8) (982 -1059 -8) (982 -1059 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55127" + "plane" "(982 -1063 -8) (980 -1063 -8) (980 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167631" + side + { + "id" "55138" + "plane" "(980 -1059 7) (980 -1057 7) (982 -1057 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55137" + "plane" "(980 -1057 -14) (980 -1059 -14) (982 -1059 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55136" + "plane" "(980 -1059 -14) (980 -1057 -14) (980 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55135" + "plane" "(982 -1057 -14) (982 -1059 -14) (982 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55134" + "plane" "(980 -1057 -14) (982 -1057 -14) (982 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55133" + "plane" "(982 -1059 -14) (980 -1059 -14) (980 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167649" + side + { + "id" "55144" + "plane" "(816 -1063 8) (816 -1047 8) (912 -1047 8)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55143" + "plane" "(816 -1047 7) (816 -1063 7) (912 -1063 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55142" + "plane" "(816 -1063 7) (816 -1047 7) (816 -1047 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55141" + "plane" "(912 -1047 7) (912 -1063 7) (912 -1063 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55140" + "plane" "(816 -1047 7) (912 -1047 7) (912 -1047 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55139" + "plane" "(912 -1063 7) (816 -1063 7) (816 -1063 8)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167651" + side + { + "id" "55150" + "plane" "(820 -1063 -6) (820 -1059 -6) (822 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55149" + "plane" "(820 -1059 -8) (820 -1063 -8) (822 -1063 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55148" + "plane" "(820 -1063 -8) (820 -1059 -8) (820 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55147" + "plane" "(822 -1059 -8) (822 -1063 -8) (822 -1063 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55146" + "plane" "(820 -1059 -8) (822 -1059 -8) (822 -1059 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55145" + "plane" "(822 -1063 -8) (820 -1063 -8) (820 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167652" + side + { + "id" "55156" + "plane" "(820 -1059 7) (820 -1057 7) (822 -1057 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55155" + "plane" "(820 -1057 -14) (820 -1059 -14) (822 -1059 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55154" + "plane" "(820 -1059 -14) (820 -1057 -14) (820 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55153" + "plane" "(822 -1057 -14) (822 -1059 -14) (822 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55152" + "plane" "(820 -1057 -14) (822 -1057 -14) (822 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55151" + "plane" "(822 -1059 -14) (820 -1059 -14) (820 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167654" + side + { + "id" "55162" + "plane" "(906 -1059 7) (906 -1057 7) (908 -1057 7)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55161" + "plane" "(906 -1057 -14) (906 -1059 -14) (908 -1059 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55160" + "plane" "(906 -1059 -14) (906 -1057 -14) (906 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55159" + "plane" "(908 -1057 -14) (908 -1059 -14) (908 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55158" + "plane" "(906 -1057 -14) (908 -1057 -14) (908 -1057 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55157" + "plane" "(908 -1059 -14) (906 -1059 -14) (906 -1059 7)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167655" + side + { + "id" "55168" + "plane" "(906 -1063 -6) (906 -1059 -6) (908 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55167" + "plane" "(906 -1059 -8) (906 -1063 -8) (908 -1063 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55166" + "plane" "(906 -1063 -8) (906 -1059 -8) (906 -1059 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55165" + "plane" "(908 -1059 -8) (908 -1063 -8) (908 -1063 -6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55164" + "plane" "(906 -1059 -8) (908 -1059 -8) (908 -1059 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55163" + "plane" "(908 -1063 -8) (906 -1063 -8) (906 -1063 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167366" + side + { + "id" "54335" + "plane" "(816 -1098 4) (816 -1096 4) (1376 -1096 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54336" + "plane" "(816 -1096 -6) (816 -1098 -6) (1376 -1098 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54337" + "plane" "(816 -1098 -6) (816 -1096 -6) (816 -1096 4)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54338" + "plane" "(1376 -1096 -6) (1376 -1098 -6) (1376 -1098 4)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54339" + "plane" "(816 -1096 -6) (1376 -1096 -6) (1376 -1096 4)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54340" + "plane" "(1376 -1098 -6) (816 -1098 -6) (816 -1098 4)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167445" + side + { + "id" "54503" + "plane" "(816 -1065 -8) (816 -1063 -8) (1376 -1063 -8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54504" + "plane" "(816 -1063 -14) (816 -1065 -14) (1376 -1065 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54505" + "plane" "(816 -1065 -14) (816 -1063 -14) (816 -1063 -8)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54506" + "plane" "(1376 -1063 -14) (1376 -1065 -14) (1376 -1065 -8)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54507" + "plane" "(816 -1063 -14) (1376 -1063 -14) (1376 -1063 -8)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "54508" + "plane" "(1376 -1065 -14) (816 -1065 -14) (816 -1065 -8)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "167825" + "classname" "func_detail" + solid + { + "id" "167826" + side + { + "id" "55324" + "plane" "(1216 -1131 6) (1216 -1096 6) (1280 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55323" + "plane" "(1216 -1096 4) (1216 -1131 4) (1280 -1131 4)" + "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" "55322" + "plane" "(1216 -1131 4) (1216 -1096 4) (1216 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55321" + "plane" "(1280 -1096 4) (1280 -1131 4) (1280 -1131 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55320" + "plane" "(1216 -1096 4) (1280 -1096 4) (1280 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55319" + "plane" "(1280 -1131 4) (1216 -1131 4) (1216 -1131 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167827" + side + { + "id" "55330" + "plane" "(1280 -1131 6) (1280 -1096 6) (1376 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55329" + "plane" "(1280 -1096 4) (1280 -1131 4) (1376 -1131 4)" + "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" "55328" + "plane" "(1280 -1131 4) (1280 -1096 4) (1280 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55327" + "plane" "(1376 -1096 4) (1376 -1131 4) (1376 -1131 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 64] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55326" + "plane" "(1280 -1096 4) (1376 -1096 4) (1376 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55325" + "plane" "(1376 -1131 4) (1280 -1131 4) (1280 -1131 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167828" + side + { + "id" "55336" + "plane" "(816 -1131 6) (816 -1096 6) (912 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55335" + "plane" "(816 -1096 4) (816 -1131 4) (912 -1131 4)" + "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" "55334" + "plane" "(816 -1131 4) (816 -1096 4) (816 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -64.002] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55333" + "plane" "(912 -1096 4) (912 -1131 4) (912 -1131 6)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -64] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55332" + "plane" "(816 -1096 4) (912 -1096 4) (912 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55331" + "plane" "(912 -1131 4) (816 -1131 4) (816 -1131 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167829" + side + { + "id" "55342" + "plane" "(912 -1131 6) (912 -1096 6) (976 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55341" + "plane" "(912 -1096 4) (912 -1131 4) (976 -1131 4)" + "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" "55340" + "plane" "(912 -1131 4) (912 -1096 4) (912 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55339" + "plane" "(976 -1096 4) (976 -1131 4) (976 -1131 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55338" + "plane" "(912 -1096 4) (976 -1096 4) (976 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55337" + "plane" "(976 -1131 4) (912 -1131 4) (912 -1131 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167830" + side + { + "id" "55348" + "plane" "(976 -1131 6) (976 -1096 6) (1216 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 64] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55347" + "plane" "(976 -1096 4) (976 -1131 4) (1216 -1131 4)" + "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" "55346" + "plane" "(976 -1131 4) (976 -1096 4) (976 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 32] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55345" + "plane" "(1216 -1096 4) (1216 -1131 4) (1216 -1131 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -32] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55344" + "plane" "(976 -1096 4) (1216 -1096 4) (1216 -1096 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55343" + "plane" "(1216 -1131 4) (976 -1131 4) (976 -1131 6)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167831" + side + { + "id" "55354" + "plane" "(1280 -1096 20) (1280 -1080 20) (1376 -1080 20)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55353" + "plane" "(1280 -1080 19) (1280 -1096 19) (1376 -1096 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55352" + "plane" "(1280 -1096 19) (1280 -1080 19) (1280 -1080 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55351" + "plane" "(1376 -1080 19) (1376 -1096 19) (1376 -1096 20)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55350" + "plane" "(1280 -1080 19) (1376 -1080 19) (1376 -1080 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55349" + "plane" "(1376 -1096 19) (1280 -1096 19) (1280 -1096 20)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167832" + side + { + "id" "55360" + "plane" "(1284 -1096 6) (1284 -1092 6) (1286 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55359" + "plane" "(1284 -1092 4) (1284 -1096 4) (1286 -1096 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55358" + "plane" "(1284 -1096 4) (1284 -1092 4) (1284 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55357" + "plane" "(1286 -1092 4) (1286 -1096 4) (1286 -1096 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55356" + "plane" "(1284 -1092 4) (1286 -1092 4) (1286 -1092 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55355" + "plane" "(1286 -1096 4) (1284 -1096 4) (1284 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167833" + side + { + "id" "55366" + "plane" "(1284 -1092 19) (1284 -1090 19) (1286 -1090 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55365" + "plane" "(1284 -1090 -6) (1284 -1092 -6) (1286 -1092 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55364" + "plane" "(1284 -1092 -6) (1284 -1090 -6) (1284 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55363" + "plane" "(1286 -1090 -6) (1286 -1092 -6) (1286 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55362" + "plane" "(1284 -1090 -6) (1286 -1090 -6) (1286 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55361" + "plane" "(1286 -1092 -6) (1284 -1092 -6) (1284 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167834" + side + { + "id" "55372" + "plane" "(1370 -1092 19) (1370 -1090 19) (1372 -1090 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55371" + "plane" "(1370 -1090 -6) (1370 -1092 -6) (1372 -1092 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55370" + "plane" "(1370 -1092 -6) (1370 -1090 -6) (1370 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55369" + "plane" "(1372 -1090 -6) (1372 -1092 -6) (1372 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55368" + "plane" "(1370 -1090 -6) (1372 -1090 -6) (1372 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55367" + "plane" "(1372 -1092 -6) (1370 -1092 -6) (1370 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167835" + side + { + "id" "55378" + "plane" "(1370 -1096 6) (1370 -1092 6) (1372 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55377" + "plane" "(1370 -1092 4) (1370 -1096 4) (1372 -1096 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55376" + "plane" "(1370 -1096 4) (1370 -1092 4) (1370 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55375" + "plane" "(1372 -1092 4) (1372 -1096 4) (1372 -1096 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55374" + "plane" "(1370 -1092 4) (1372 -1092 4) (1372 -1092 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55373" + "plane" "(1372 -1096 4) (1370 -1096 4) (1370 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167836" + side + { + "id" "55384" + "plane" "(976 -1096 20) (976 -1080 20) (1216 -1080 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55383" + "plane" "(976 -1080 19) (976 -1096 19) (1216 -1096 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55382" + "plane" "(976 -1096 19) (976 -1080 19) (976 -1080 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55381" + "plane" "(1216 -1080 19) (1216 -1096 19) (1216 -1096 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55380" + "plane" "(976 -1080 19) (1216 -1080 19) (1216 -1080 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55379" + "plane" "(1216 -1096 19) (976 -1096 19) (976 -1096 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167837" + side + { + "id" "55390" + "plane" "(1062 -1096 6) (1062 -1092 6) (1064 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55389" + "plane" "(1062 -1092 4) (1062 -1096 4) (1064 -1096 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55388" + "plane" "(1062 -1096 4) (1062 -1092 4) (1062 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55387" + "plane" "(1064 -1092 4) (1064 -1096 4) (1064 -1096 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55386" + "plane" "(1062 -1092 4) (1064 -1092 4) (1064 -1092 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55385" + "plane" "(1064 -1096 4) (1062 -1096 4) (1062 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167838" + side + { + "id" "55396" + "plane" "(1062 -1092 19) (1062 -1090 19) (1064 -1090 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55395" + "plane" "(1062 -1090 -6) (1062 -1092 -6) (1064 -1092 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55394" + "plane" "(1062 -1092 -6) (1062 -1090 -6) (1062 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55393" + "plane" "(1064 -1090 -6) (1064 -1092 -6) (1064 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55392" + "plane" "(1062 -1090 -6) (1064 -1090 -6) (1064 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55391" + "plane" "(1064 -1092 -6) (1062 -1092 -6) (1062 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167839" + side + { + "id" "55402" + "plane" "(1210 -1092 19) (1210 -1090 19) (1212 -1090 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55401" + "plane" "(1210 -1090 -6) (1210 -1092 -6) (1212 -1092 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55400" + "plane" "(1210 -1092 -6) (1210 -1090 -6) (1210 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55399" + "plane" "(1212 -1090 -6) (1212 -1092 -6) (1212 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55398" + "plane" "(1210 -1090 -6) (1212 -1090 -6) (1212 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55397" + "plane" "(1212 -1092 -6) (1210 -1092 -6) (1210 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167840" + side + { + "id" "55408" + "plane" "(1210 -1096 6) (1210 -1092 6) (1212 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55407" + "plane" "(1210 -1092 4) (1210 -1096 4) (1212 -1096 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55406" + "plane" "(1210 -1096 4) (1210 -1092 4) (1210 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55405" + "plane" "(1212 -1092 4) (1212 -1096 4) (1212 -1096 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55404" + "plane" "(1210 -1092 4) (1212 -1092 4) (1212 -1092 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55403" + "plane" "(1212 -1096 4) (1210 -1096 4) (1210 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167841" + side + { + "id" "55414" + "plane" "(1144 -1096 6) (1144 -1092 6) (1146 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55413" + "plane" "(1144 -1092 4) (1144 -1096 4) (1146 -1096 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55412" + "plane" "(1144 -1096 4) (1144 -1092 4) (1144 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55411" + "plane" "(1146 -1092 4) (1146 -1096 4) (1146 -1096 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55410" + "plane" "(1144 -1092 4) (1146 -1092 4) (1146 -1092 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55409" + "plane" "(1146 -1096 4) (1144 -1096 4) (1144 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167842" + side + { + "id" "55420" + "plane" "(1144 -1092 19) (1144 -1090 19) (1146 -1090 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55419" + "plane" "(1144 -1090 -6) (1144 -1092 -6) (1146 -1092 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55418" + "plane" "(1144 -1092 -6) (1144 -1090 -6) (1144 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55417" + "plane" "(1146 -1090 -6) (1146 -1092 -6) (1146 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55416" + "plane" "(1144 -1090 -6) (1146 -1090 -6) (1146 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55415" + "plane" "(1146 -1092 -6) (1144 -1092 -6) (1144 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167843" + side + { + "id" "55426" + "plane" "(980 -1096 6) (980 -1092 6) (982 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55425" + "plane" "(980 -1092 4) (980 -1096 4) (982 -1096 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55424" + "plane" "(980 -1096 4) (980 -1092 4) (980 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55423" + "plane" "(982 -1092 4) (982 -1096 4) (982 -1096 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55422" + "plane" "(980 -1092 4) (982 -1092 4) (982 -1092 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55421" + "plane" "(982 -1096 4) (980 -1096 4) (980 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167844" + side + { + "id" "55432" + "plane" "(980 -1092 19) (980 -1090 19) (982 -1090 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55431" + "plane" "(980 -1090 -6) (980 -1092 -6) (982 -1092 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55430" + "plane" "(980 -1092 -6) (980 -1090 -6) (980 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55429" + "plane" "(982 -1090 -6) (982 -1092 -6) (982 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55428" + "plane" "(980 -1090 -6) (982 -1090 -6) (982 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55427" + "plane" "(982 -1092 -6) (980 -1092 -6) (980 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167845" + side + { + "id" "55438" + "plane" "(816 -1096 20) (816 -1080 20) (912 -1080 20)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55437" + "plane" "(816 -1080 19) (816 -1096 19) (912 -1096 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55436" + "plane" "(816 -1096 19) (816 -1080 19) (816 -1080 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55435" + "plane" "(912 -1080 19) (912 -1096 19) (912 -1096 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55434" + "plane" "(816 -1080 19) (912 -1080 19) (912 -1080 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55433" + "plane" "(912 -1096 19) (816 -1096 19) (816 -1096 20)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167846" + side + { + "id" "55444" + "plane" "(820 -1096 6) (820 -1092 6) (822 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55443" + "plane" "(820 -1092 4) (820 -1096 4) (822 -1096 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55442" + "plane" "(820 -1096 4) (820 -1092 4) (820 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55441" + "plane" "(822 -1092 4) (822 -1096 4) (822 -1096 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55440" + "plane" "(820 -1092 4) (822 -1092 4) (822 -1092 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55439" + "plane" "(822 -1096 4) (820 -1096 4) (820 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167847" + side + { + "id" "55450" + "plane" "(820 -1092 19) (820 -1090 19) (822 -1090 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55449" + "plane" "(820 -1090 -6) (820 -1092 -6) (822 -1092 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55448" + "plane" "(820 -1092 -6) (820 -1090 -6) (820 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55447" + "plane" "(822 -1090 -6) (822 -1092 -6) (822 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55446" + "plane" "(820 -1090 -6) (822 -1090 -6) (822 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55445" + "plane" "(822 -1092 -6) (820 -1092 -6) (820 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167848" + side + { + "id" "55456" + "plane" "(906 -1092 19) (906 -1090 19) (908 -1090 19)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55455" + "plane" "(906 -1090 -6) (906 -1092 -6) (908 -1092 -6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55454" + "plane" "(906 -1092 -6) (906 -1090 -6) (906 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55453" + "plane" "(908 -1090 -6) (908 -1092 -6) (908 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55452" + "plane" "(906 -1090 -6) (908 -1090 -6) (908 -1090 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55451" + "plane" "(908 -1092 -6) (906 -1092 -6) (906 -1092 19)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167849" + side + { + "id" "55462" + "plane" "(906 -1096 6) (906 -1092 6) (908 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55461" + "plane" "(906 -1092 4) (906 -1096 4) (908 -1096 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55460" + "plane" "(906 -1096 4) (906 -1092 4) (906 -1092 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55459" + "plane" "(908 -1092 4) (908 -1096 4) (908 -1096 6)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55458" + "plane" "(906 -1092 4) (908 -1092 4) (908 -1092 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55457" + "plane" "(908 -1096 4) (906 -1096 4) (906 -1096 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167850" + side + { + "id" "55468" + "plane" "(816 -1131 16) (816 -1129 16) (1376 -1129 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55467" + "plane" "(816 -1129 6) (816 -1131 6) (1376 -1131 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55466" + "plane" "(816 -1131 6) (816 -1129 6) (816 -1129 16)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55465" + "plane" "(1376 -1129 6) (1376 -1131 6) (1376 -1131 16)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55464" + "plane" "(816 -1129 6) (1376 -1129 6) (1376 -1129 16)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55463" + "plane" "(1376 -1131 6) (816 -1131 6) (816 -1131 16)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "167970" + "classname" "func_detail" + solid + { + "id" "167971" + side + { + "id" "55726" + "plane" "(1216 -1164 18) (1216 -1129 18) (1280 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55725" + "plane" "(1216 -1129 16) (1216 -1164 16) (1280 -1164 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55724" + "plane" "(1216 -1164 16) (1216 -1129 16) (1216 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55723" + "plane" "(1280 -1129 16) (1280 -1164 16) (1280 -1164 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55722" + "plane" "(1216 -1129 16) (1280 -1129 16) (1280 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55721" + "plane" "(1280 -1164 16) (1216 -1164 16) (1216 -1164 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167972" + side + { + "id" "55732" + "plane" "(1280 -1164 18) (1280 -1129 18) (1376 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55731" + "plane" "(1280 -1129 16) (1280 -1164 16) (1376 -1164 16)" + "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" "55730" + "plane" "(1280 -1164 16) (1280 -1129 16) (1280 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55729" + "plane" "(1376 -1129 16) (1376 -1164 16) (1376 -1164 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 56] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55728" + "plane" "(1280 -1129 16) (1376 -1129 16) (1376 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55727" + "plane" "(1376 -1164 16) (1280 -1164 16) (1280 -1164 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167973" + side + { + "id" "55738" + "plane" "(816 -1164 18) (816 -1129 18) (912 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55737" + "plane" "(816 -1129 16) (816 -1164 16) (912 -1164 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55736" + "plane" "(816 -1164 16) (816 -1129 16) (816 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -56.002] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55735" + "plane" "(912 -1129 16) (912 -1164 16) (912 -1164 18)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -56] 0.125" + "vaxis" "[0 0 -1 -48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55734" + "plane" "(816 -1129 16) (912 -1129 16) (912 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55733" + "plane" "(912 -1164 16) (816 -1164 16) (816 -1164 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167974" + side + { + "id" "55744" + "plane" "(912 -1164 18) (912 -1129 18) (976 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55743" + "plane" "(912 -1129 16) (912 -1164 16) (976 -1164 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55742" + "plane" "(912 -1164 16) (912 -1129 16) (912 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55741" + "plane" "(976 -1129 16) (976 -1164 16) (976 -1164 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55740" + "plane" "(912 -1129 16) (976 -1129 16) (976 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55739" + "plane" "(976 -1164 16) (912 -1164 16) (912 -1164 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167975" + side + { + "id" "55750" + "plane" "(976 -1164 18) (976 -1129 18) (1216 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55749" + "plane" "(976 -1129 16) (976 -1164 16) (1216 -1164 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55748" + "plane" "(976 -1164 16) (976 -1129 16) (976 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55747" + "plane" "(1216 -1129 16) (1216 -1164 16) (1216 -1164 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55746" + "plane" "(976 -1129 16) (1216 -1129 16) (1216 -1129 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55745" + "plane" "(1216 -1164 16) (976 -1164 16) (976 -1164 18)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167976" + side + { + "id" "55756" + "plane" "(1280 -1129 32) (1280 -1113 32) (1376 -1113 32)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55755" + "plane" "(1280 -1113 31) (1280 -1129 31) (1376 -1129 31)" + "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" "55754" + "plane" "(1280 -1129 31) (1280 -1113 31) (1280 -1113 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55753" + "plane" "(1376 -1113 31) (1376 -1129 31) (1376 -1129 32)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55752" + "plane" "(1280 -1113 31) (1376 -1113 31) (1376 -1113 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55751" + "plane" "(1376 -1129 31) (1280 -1129 31) (1280 -1129 32)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167977" + side + { + "id" "55762" + "plane" "(1284 -1129 18) (1284 -1125 18) (1286 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55761" + "plane" "(1284 -1125 16) (1284 -1129 16) (1286 -1129 16)" + "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" "55760" + "plane" "(1284 -1129 16) (1284 -1125 16) (1284 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55759" + "plane" "(1286 -1125 16) (1286 -1129 16) (1286 -1129 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55758" + "plane" "(1284 -1125 16) (1286 -1125 16) (1286 -1125 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55757" + "plane" "(1286 -1129 16) (1284 -1129 16) (1284 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167978" + side + { + "id" "55768" + "plane" "(1284 -1125 31) (1284 -1123 31) (1286 -1123 31)" + "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" "55767" + "plane" "(1284 -1123 6) (1284 -1125 6) (1286 -1125 6)" + "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" "55766" + "plane" "(1284 -1125 6) (1284 -1123 6) (1284 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55765" + "plane" "(1286 -1123 6) (1286 -1125 6) (1286 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55764" + "plane" "(1284 -1123 6) (1286 -1123 6) (1286 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55763" + "plane" "(1286 -1125 6) (1284 -1125 6) (1284 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167979" + side + { + "id" "55774" + "plane" "(1370 -1125 31) (1370 -1123 31) (1372 -1123 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55773" + "plane" "(1370 -1123 6) (1370 -1125 6) (1372 -1125 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55772" + "plane" "(1370 -1125 6) (1370 -1123 6) (1370 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55771" + "plane" "(1372 -1123 6) (1372 -1125 6) (1372 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55770" + "plane" "(1370 -1123 6) (1372 -1123 6) (1372 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55769" + "plane" "(1372 -1125 6) (1370 -1125 6) (1370 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167980" + side + { + "id" "55780" + "plane" "(1370 -1129 18) (1370 -1125 18) (1372 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55779" + "plane" "(1370 -1125 16) (1370 -1129 16) (1372 -1129 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55778" + "plane" "(1370 -1129 16) (1370 -1125 16) (1370 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55777" + "plane" "(1372 -1125 16) (1372 -1129 16) (1372 -1129 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55776" + "plane" "(1370 -1125 16) (1372 -1125 16) (1372 -1125 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55775" + "plane" "(1372 -1129 16) (1370 -1129 16) (1370 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167981" + side + { + "id" "55786" + "plane" "(976 -1129 32) (976 -1113 32) (1216 -1113 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55785" + "plane" "(976 -1113 31) (976 -1129 31) (1216 -1129 31)" + "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" "55784" + "plane" "(976 -1129 31) (976 -1113 31) (976 -1113 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55783" + "plane" "(1216 -1113 31) (1216 -1129 31) (1216 -1129 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55782" + "plane" "(976 -1113 31) (1216 -1113 31) (1216 -1113 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55781" + "plane" "(1216 -1129 31) (976 -1129 31) (976 -1129 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167982" + side + { + "id" "55792" + "plane" "(1062 -1129 18) (1062 -1125 18) (1064 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55791" + "plane" "(1062 -1125 16) (1062 -1129 16) (1064 -1129 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55790" + "plane" "(1062 -1129 16) (1062 -1125 16) (1062 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55789" + "plane" "(1064 -1125 16) (1064 -1129 16) (1064 -1129 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55788" + "plane" "(1062 -1125 16) (1064 -1125 16) (1064 -1125 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55787" + "plane" "(1064 -1129 16) (1062 -1129 16) (1062 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167983" + side + { + "id" "55798" + "plane" "(1062 -1125 31) (1062 -1123 31) (1064 -1123 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55797" + "plane" "(1062 -1123 6) (1062 -1125 6) (1064 -1125 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55796" + "plane" "(1062 -1125 6) (1062 -1123 6) (1062 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55795" + "plane" "(1064 -1123 6) (1064 -1125 6) (1064 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55794" + "plane" "(1062 -1123 6) (1064 -1123 6) (1064 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55793" + "plane" "(1064 -1125 6) (1062 -1125 6) (1062 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167984" + side + { + "id" "55804" + "plane" "(1210 -1125 31) (1210 -1123 31) (1212 -1123 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55803" + "plane" "(1210 -1123 6) (1210 -1125 6) (1212 -1125 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55802" + "plane" "(1210 -1125 6) (1210 -1123 6) (1210 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55801" + "plane" "(1212 -1123 6) (1212 -1125 6) (1212 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55800" + "plane" "(1210 -1123 6) (1212 -1123 6) (1212 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55799" + "plane" "(1212 -1125 6) (1210 -1125 6) (1210 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167985" + side + { + "id" "55810" + "plane" "(1210 -1129 18) (1210 -1125 18) (1212 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55809" + "plane" "(1210 -1125 16) (1210 -1129 16) (1212 -1129 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55808" + "plane" "(1210 -1129 16) (1210 -1125 16) (1210 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55807" + "plane" "(1212 -1125 16) (1212 -1129 16) (1212 -1129 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55806" + "plane" "(1210 -1125 16) (1212 -1125 16) (1212 -1125 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55805" + "plane" "(1212 -1129 16) (1210 -1129 16) (1210 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167986" + side + { + "id" "55816" + "plane" "(1144 -1129 18) (1144 -1125 18) (1146 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55815" + "plane" "(1144 -1125 16) (1144 -1129 16) (1146 -1129 16)" + "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" "55814" + "plane" "(1144 -1129 16) (1144 -1125 16) (1144 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55813" + "plane" "(1146 -1125 16) (1146 -1129 16) (1146 -1129 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55812" + "plane" "(1144 -1125 16) (1146 -1125 16) (1146 -1125 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55811" + "plane" "(1146 -1129 16) (1144 -1129 16) (1144 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167987" + side + { + "id" "55822" + "plane" "(1144 -1125 31) (1144 -1123 31) (1146 -1123 31)" + "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" "55821" + "plane" "(1144 -1123 6) (1144 -1125 6) (1146 -1125 6)" + "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" "55820" + "plane" "(1144 -1125 6) (1144 -1123 6) (1144 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55819" + "plane" "(1146 -1123 6) (1146 -1125 6) (1146 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55818" + "plane" "(1144 -1123 6) (1146 -1123 6) (1146 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55817" + "plane" "(1146 -1125 6) (1144 -1125 6) (1144 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167988" + side + { + "id" "55828" + "plane" "(980 -1129 18) (980 -1125 18) (982 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55827" + "plane" "(980 -1125 16) (980 -1129 16) (982 -1129 16)" + "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" "55826" + "plane" "(980 -1129 16) (980 -1125 16) (980 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55825" + "plane" "(982 -1125 16) (982 -1129 16) (982 -1129 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55824" + "plane" "(980 -1125 16) (982 -1125 16) (982 -1125 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55823" + "plane" "(982 -1129 16) (980 -1129 16) (980 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167989" + side + { + "id" "55834" + "plane" "(980 -1125 31) (980 -1123 31) (982 -1123 31)" + "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" "55833" + "plane" "(980 -1123 6) (980 -1125 6) (982 -1125 6)" + "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" "55832" + "plane" "(980 -1125 6) (980 -1123 6) (980 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55831" + "plane" "(982 -1123 6) (982 -1125 6) (982 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55830" + "plane" "(980 -1123 6) (982 -1123 6) (982 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55829" + "plane" "(982 -1125 6) (980 -1125 6) (980 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167990" + side + { + "id" "55840" + "plane" "(816 -1129 32) (816 -1113 32) (912 -1113 32)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55839" + "plane" "(816 -1113 31) (816 -1129 31) (912 -1129 31)" + "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" "55838" + "plane" "(816 -1129 31) (816 -1113 31) (816 -1113 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55837" + "plane" "(912 -1113 31) (912 -1129 31) (912 -1129 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55836" + "plane" "(816 -1113 31) (912 -1113 31) (912 -1113 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55835" + "plane" "(912 -1129 31) (816 -1129 31) (816 -1129 32)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167991" + side + { + "id" "55846" + "plane" "(820 -1129 18) (820 -1125 18) (822 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55845" + "plane" "(820 -1125 16) (820 -1129 16) (822 -1129 16)" + "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" "55844" + "plane" "(820 -1129 16) (820 -1125 16) (820 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55843" + "plane" "(822 -1125 16) (822 -1129 16) (822 -1129 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55842" + "plane" "(820 -1125 16) (822 -1125 16) (822 -1125 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55841" + "plane" "(822 -1129 16) (820 -1129 16) (820 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167992" + side + { + "id" "55852" + "plane" "(820 -1125 31) (820 -1123 31) (822 -1123 31)" + "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" "55851" + "plane" "(820 -1123 6) (820 -1125 6) (822 -1125 6)" + "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" "55850" + "plane" "(820 -1125 6) (820 -1123 6) (820 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55849" + "plane" "(822 -1123 6) (822 -1125 6) (822 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55848" + "plane" "(820 -1123 6) (822 -1123 6) (822 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55847" + "plane" "(822 -1125 6) (820 -1125 6) (820 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167993" + side + { + "id" "55858" + "plane" "(906 -1125 31) (906 -1123 31) (908 -1123 31)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55857" + "plane" "(906 -1123 6) (906 -1125 6) (908 -1125 6)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55856" + "plane" "(906 -1125 6) (906 -1123 6) (906 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55855" + "plane" "(908 -1123 6) (908 -1125 6) (908 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55854" + "plane" "(906 -1123 6) (908 -1123 6) (908 -1123 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55853" + "plane" "(908 -1125 6) (906 -1125 6) (906 -1125 31)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167994" + side + { + "id" "55864" + "plane" "(906 -1129 18) (906 -1125 18) (908 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55863" + "plane" "(906 -1125 16) (906 -1129 16) (908 -1129 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55862" + "plane" "(906 -1129 16) (906 -1125 16) (906 -1125 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55861" + "plane" "(908 -1125 16) (908 -1129 16) (908 -1129 18)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55860" + "plane" "(906 -1125 16) (908 -1125 16) (908 -1125 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55859" + "plane" "(908 -1129 16) (906 -1129 16) (906 -1129 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "167995" + side + { + "id" "55870" + "plane" "(816 -1164 28) (816 -1162 28) (1376 -1162 28)" + "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" "55869" + "plane" "(816 -1162 18) (816 -1164 18) (1376 -1164 18)" + "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" "55868" + "plane" "(816 -1164 18) (816 -1162 18) (816 -1162 28)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55867" + "plane" "(1376 -1162 18) (1376 -1164 18) (1376 -1164 28)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55866" + "plane" "(816 -1162 18) (1376 -1162 18) (1376 -1162 28)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55865" + "plane" "(1376 -1164 18) (816 -1164 18) (816 -1164 28)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "168140" + "classname" "func_detail" + solid + { + "id" "168141" + side + { + "id" "56230" + "plane" "(1216 -1197 30) (1216 -1162 30) (1280 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56229" + "plane" "(1216 -1162 28) (1216 -1197 28) (1280 -1197 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56228" + "plane" "(1216 -1197 28) (1216 -1162 28) (1216 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56227" + "plane" "(1280 -1162 28) (1280 -1197 28) (1280 -1197 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56226" + "plane" "(1216 -1162 28) (1280 -1162 28) (1280 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56225" + "plane" "(1280 -1197 28) (1216 -1197 28) (1216 -1197 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168142" + side + { + "id" "56236" + "plane" "(1280 -1197 30) (1280 -1162 30) (1376 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56235" + "plane" "(1280 -1162 28) (1280 -1197 28) (1376 -1197 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56234" + "plane" "(1280 -1197 28) (1280 -1162 28) (1280 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56233" + "plane" "(1376 -1162 28) (1376 -1197 28) (1376 -1197 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 48] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56232" + "plane" "(1280 -1162 28) (1376 -1162 28) (1376 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56231" + "plane" "(1376 -1197 28) (1280 -1197 28) (1280 -1197 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168143" + side + { + "id" "56242" + "plane" "(816 -1197 30) (816 -1162 30) (912 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56241" + "plane" "(816 -1162 28) (816 -1197 28) (912 -1197 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56240" + "plane" "(816 -1197 28) (816 -1162 28) (816 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -48.002] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56239" + "plane" "(912 -1162 28) (912 -1197 28) (912 -1197 30)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -48] 0.125" + "vaxis" "[0 0 -1 -80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56238" + "plane" "(816 -1162 28) (912 -1162 28) (912 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56237" + "plane" "(912 -1197 28) (816 -1197 28) (816 -1197 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168144" + side + { + "id" "56248" + "plane" "(912 -1197 30) (912 -1162 30) (976 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56247" + "plane" "(912 -1162 28) (912 -1197 28) (976 -1197 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56246" + "plane" "(912 -1197 28) (912 -1162 28) (912 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56245" + "plane" "(976 -1162 28) (976 -1197 28) (976 -1197 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56244" + "plane" "(912 -1162 28) (976 -1162 28) (976 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56243" + "plane" "(976 -1197 28) (912 -1197 28) (912 -1197 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168145" + side + { + "id" "56254" + "plane" "(976 -1197 30) (976 -1162 30) (1216 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56253" + "plane" "(976 -1162 28) (976 -1197 28) (1216 -1197 28)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56252" + "plane" "(976 -1197 28) (976 -1162 28) (976 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56251" + "plane" "(1216 -1162 28) (1216 -1197 28) (1216 -1197 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56250" + "plane" "(976 -1162 28) (1216 -1162 28) (1216 -1162 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56249" + "plane" "(1216 -1197 28) (976 -1197 28) (976 -1197 30)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168146" + side + { + "id" "56260" + "plane" "(1280 -1162 44) (1280 -1146 44) (1376 -1146 44)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56259" + "plane" "(1280 -1146 43) (1280 -1162 43) (1376 -1162 43)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56258" + "plane" "(1280 -1162 43) (1280 -1146 43) (1280 -1146 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56257" + "plane" "(1376 -1146 43) (1376 -1162 43) (1376 -1162 44)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56256" + "plane" "(1280 -1146 43) (1376 -1146 43) (1376 -1146 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56255" + "plane" "(1376 -1162 43) (1280 -1162 43) (1280 -1162 44)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168147" + side + { + "id" "56266" + "plane" "(1284 -1162 30) (1284 -1158 30) (1286 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56265" + "plane" "(1284 -1158 28) (1284 -1162 28) (1286 -1162 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56264" + "plane" "(1284 -1162 28) (1284 -1158 28) (1284 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56263" + "plane" "(1286 -1158 28) (1286 -1162 28) (1286 -1162 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56262" + "plane" "(1284 -1158 28) (1286 -1158 28) (1286 -1158 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56261" + "plane" "(1286 -1162 28) (1284 -1162 28) (1284 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168148" + side + { + "id" "56272" + "plane" "(1284 -1158 43) (1284 -1156 43) (1286 -1156 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56271" + "plane" "(1284 -1156 18) (1284 -1158 18) (1286 -1158 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56270" + "plane" "(1284 -1158 18) (1284 -1156 18) (1284 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56269" + "plane" "(1286 -1156 18) (1286 -1158 18) (1286 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56268" + "plane" "(1284 -1156 18) (1286 -1156 18) (1286 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56267" + "plane" "(1286 -1158 18) (1284 -1158 18) (1284 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168149" + side + { + "id" "56278" + "plane" "(1370 -1158 43) (1370 -1156 43) (1372 -1156 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56277" + "plane" "(1370 -1156 18) (1370 -1158 18) (1372 -1158 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56276" + "plane" "(1370 -1158 18) (1370 -1156 18) (1370 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56275" + "plane" "(1372 -1156 18) (1372 -1158 18) (1372 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56274" + "plane" "(1370 -1156 18) (1372 -1156 18) (1372 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56273" + "plane" "(1372 -1158 18) (1370 -1158 18) (1370 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168150" + side + { + "id" "56284" + "plane" "(1370 -1162 30) (1370 -1158 30) (1372 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56283" + "plane" "(1370 -1158 28) (1370 -1162 28) (1372 -1162 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56282" + "plane" "(1370 -1162 28) (1370 -1158 28) (1370 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56281" + "plane" "(1372 -1158 28) (1372 -1162 28) (1372 -1162 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56280" + "plane" "(1370 -1158 28) (1372 -1158 28) (1372 -1158 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56279" + "plane" "(1372 -1162 28) (1370 -1162 28) (1370 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168151" + side + { + "id" "56290" + "plane" "(976 -1162 44) (976 -1146 44) (1216 -1146 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56289" + "plane" "(976 -1146 43) (976 -1162 43) (1216 -1162 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56288" + "plane" "(976 -1162 43) (976 -1146 43) (976 -1146 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56287" + "plane" "(1216 -1146 43) (1216 -1162 43) (1216 -1162 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56286" + "plane" "(976 -1146 43) (1216 -1146 43) (1216 -1146 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56285" + "plane" "(1216 -1162 43) (976 -1162 43) (976 -1162 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168152" + side + { + "id" "56296" + "plane" "(1062 -1162 30) (1062 -1158 30) (1064 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56295" + "plane" "(1062 -1158 28) (1062 -1162 28) (1064 -1162 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56294" + "plane" "(1062 -1162 28) (1062 -1158 28) (1062 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56293" + "plane" "(1064 -1158 28) (1064 -1162 28) (1064 -1162 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56292" + "plane" "(1062 -1158 28) (1064 -1158 28) (1064 -1158 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56291" + "plane" "(1064 -1162 28) (1062 -1162 28) (1062 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168153" + side + { + "id" "56302" + "plane" "(1062 -1158 43) (1062 -1156 43) (1064 -1156 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56301" + "plane" "(1062 -1156 18) (1062 -1158 18) (1064 -1158 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56300" + "plane" "(1062 -1158 18) (1062 -1156 18) (1062 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56299" + "plane" "(1064 -1156 18) (1064 -1158 18) (1064 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56298" + "plane" "(1062 -1156 18) (1064 -1156 18) (1064 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56297" + "plane" "(1064 -1158 18) (1062 -1158 18) (1062 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168154" + side + { + "id" "56308" + "plane" "(1210 -1158 43) (1210 -1156 43) (1212 -1156 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56307" + "plane" "(1210 -1156 18) (1210 -1158 18) (1212 -1158 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56306" + "plane" "(1210 -1158 18) (1210 -1156 18) (1210 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56305" + "plane" "(1212 -1156 18) (1212 -1158 18) (1212 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56304" + "plane" "(1210 -1156 18) (1212 -1156 18) (1212 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56303" + "plane" "(1212 -1158 18) (1210 -1158 18) (1210 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168155" + side + { + "id" "56314" + "plane" "(1210 -1162 30) (1210 -1158 30) (1212 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56313" + "plane" "(1210 -1158 28) (1210 -1162 28) (1212 -1162 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56312" + "plane" "(1210 -1162 28) (1210 -1158 28) (1210 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56311" + "plane" "(1212 -1158 28) (1212 -1162 28) (1212 -1162 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56310" + "plane" "(1210 -1158 28) (1212 -1158 28) (1212 -1158 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56309" + "plane" "(1212 -1162 28) (1210 -1162 28) (1210 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168156" + side + { + "id" "56320" + "plane" "(1144 -1162 30) (1144 -1158 30) (1146 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56319" + "plane" "(1144 -1158 28) (1144 -1162 28) (1146 -1162 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56318" + "plane" "(1144 -1162 28) (1144 -1158 28) (1144 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56317" + "plane" "(1146 -1158 28) (1146 -1162 28) (1146 -1162 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56316" + "plane" "(1144 -1158 28) (1146 -1158 28) (1146 -1158 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56315" + "plane" "(1146 -1162 28) (1144 -1162 28) (1144 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168157" + side + { + "id" "56326" + "plane" "(1144 -1158 43) (1144 -1156 43) (1146 -1156 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56325" + "plane" "(1144 -1156 18) (1144 -1158 18) (1146 -1158 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56324" + "plane" "(1144 -1158 18) (1144 -1156 18) (1144 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56323" + "plane" "(1146 -1156 18) (1146 -1158 18) (1146 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56322" + "plane" "(1144 -1156 18) (1146 -1156 18) (1146 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56321" + "plane" "(1146 -1158 18) (1144 -1158 18) (1144 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168158" + side + { + "id" "56332" + "plane" "(980 -1162 30) (980 -1158 30) (982 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56331" + "plane" "(980 -1158 28) (980 -1162 28) (982 -1162 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56330" + "plane" "(980 -1162 28) (980 -1158 28) (980 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56329" + "plane" "(982 -1158 28) (982 -1162 28) (982 -1162 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56328" + "plane" "(980 -1158 28) (982 -1158 28) (982 -1158 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56327" + "plane" "(982 -1162 28) (980 -1162 28) (980 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168159" + side + { + "id" "56338" + "plane" "(980 -1158 43) (980 -1156 43) (982 -1156 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56337" + "plane" "(980 -1156 18) (980 -1158 18) (982 -1158 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56336" + "plane" "(980 -1158 18) (980 -1156 18) (980 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56335" + "plane" "(982 -1156 18) (982 -1158 18) (982 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56334" + "plane" "(980 -1156 18) (982 -1156 18) (982 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56333" + "plane" "(982 -1158 18) (980 -1158 18) (980 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168160" + side + { + "id" "56344" + "plane" "(816 -1162 44) (816 -1146 44) (912 -1146 44)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56343" + "plane" "(816 -1146 43) (816 -1162 43) (912 -1162 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56342" + "plane" "(816 -1162 43) (816 -1146 43) (816 -1146 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56341" + "plane" "(912 -1146 43) (912 -1162 43) (912 -1162 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56340" + "plane" "(816 -1146 43) (912 -1146 43) (912 -1146 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56339" + "plane" "(912 -1162 43) (816 -1162 43) (816 -1162 44)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168161" + side + { + "id" "56350" + "plane" "(820 -1162 30) (820 -1158 30) (822 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56349" + "plane" "(820 -1158 28) (820 -1162 28) (822 -1162 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56348" + "plane" "(820 -1162 28) (820 -1158 28) (820 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56347" + "plane" "(822 -1158 28) (822 -1162 28) (822 -1162 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56346" + "plane" "(820 -1158 28) (822 -1158 28) (822 -1158 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56345" + "plane" "(822 -1162 28) (820 -1162 28) (820 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168162" + side + { + "id" "56356" + "plane" "(820 -1158 43) (820 -1156 43) (822 -1156 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56355" + "plane" "(820 -1156 18) (820 -1158 18) (822 -1158 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56354" + "plane" "(820 -1158 18) (820 -1156 18) (820 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56353" + "plane" "(822 -1156 18) (822 -1158 18) (822 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56352" + "plane" "(820 -1156 18) (822 -1156 18) (822 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56351" + "plane" "(822 -1158 18) (820 -1158 18) (820 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168163" + side + { + "id" "56362" + "plane" "(906 -1158 43) (906 -1156 43) (908 -1156 43)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56361" + "plane" "(906 -1156 18) (906 -1158 18) (908 -1158 18)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56360" + "plane" "(906 -1158 18) (906 -1156 18) (906 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56359" + "plane" "(908 -1156 18) (908 -1158 18) (908 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56358" + "plane" "(906 -1156 18) (908 -1156 18) (908 -1156 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56357" + "plane" "(908 -1158 18) (906 -1158 18) (906 -1158 43)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168164" + side + { + "id" "56368" + "plane" "(906 -1162 30) (906 -1158 30) (908 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56367" + "plane" "(906 -1158 28) (906 -1162 28) (908 -1162 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56366" + "plane" "(906 -1162 28) (906 -1158 28) (906 -1158 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56365" + "plane" "(908 -1158 28) (908 -1162 28) (908 -1162 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56364" + "plane" "(906 -1158 28) (908 -1158 28) (908 -1158 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56363" + "plane" "(908 -1162 28) (906 -1162 28) (906 -1162 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168165" + side + { + "id" "56374" + "plane" "(816 -1197 40) (816 -1195 40) (1376 -1195 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56373" + "plane" "(816 -1195 30) (816 -1197 30) (1376 -1197 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56372" + "plane" "(816 -1197 30) (816 -1195 30) (816 -1195 40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56371" + "plane" "(1376 -1195 30) (1376 -1197 30) (1376 -1197 40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56370" + "plane" "(816 -1195 30) (1376 -1195 30) (1376 -1195 40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56369" + "plane" "(1376 -1197 30) (816 -1197 30) (816 -1197 40)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "168166" + "classname" "func_detail" + solid + { + "id" "168167" + side + { + "id" "56530" + "plane" "(1216 -1230 42) (1216 -1195 42) (1280 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56529" + "plane" "(1216 -1195 40) (1216 -1230 40) (1280 -1230 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56528" + "plane" "(1216 -1230 40) (1216 -1195 40) (1216 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56527" + "plane" "(1280 -1195 40) (1280 -1230 40) (1280 -1230 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56526" + "plane" "(1216 -1195 40) (1280 -1195 40) (1280 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56525" + "plane" "(1280 -1230 40) (1216 -1230 40) (1216 -1230 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168168" + side + { + "id" "56536" + "plane" "(1280 -1230 42) (1280 -1195 42) (1376 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 40] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56535" + "plane" "(1280 -1195 40) (1280 -1230 40) (1376 -1230 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56534" + "plane" "(1280 -1230 40) (1280 -1195 40) (1280 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56533" + "plane" "(1376 -1195 40) (1376 -1230 40) (1376 -1230 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 40] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56532" + "plane" "(1280 -1195 40) (1376 -1195 40) (1376 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56531" + "plane" "(1376 -1230 40) (1280 -1230 40) (1280 -1230 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168169" + side + { + "id" "56542" + "plane" "(816 -1230 42) (816 -1195 42) (912 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 40] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56541" + "plane" "(816 -1195 40) (816 -1230 40) (912 -1230 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56540" + "plane" "(816 -1230 40) (816 -1195 40) (816 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -40.002] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56539" + "plane" "(912 -1195 40) (912 -1230 40) (912 -1230 42)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -40] 0.125" + "vaxis" "[0 0 -1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56538" + "plane" "(816 -1195 40) (912 -1195 40) (912 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56537" + "plane" "(912 -1230 40) (816 -1230 40) (816 -1230 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -56.0029] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168170" + side + { + "id" "56548" + "plane" "(912 -1230 42) (912 -1195 42) (976 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56547" + "plane" "(912 -1195 40) (912 -1230 40) (976 -1230 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56546" + "plane" "(912 -1230 40) (912 -1195 40) (912 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56545" + "plane" "(976 -1195 40) (976 -1230 40) (976 -1230 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56544" + "plane" "(912 -1195 40) (976 -1195 40) (976 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56543" + "plane" "(976 -1230 40) (912 -1230 40) (912 -1230 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 -1 -56.0029] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168171" + side + { + "id" "56554" + "plane" "(976 -1230 42) (976 -1195 42) (1216 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 40] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56553" + "plane" "(976 -1195 40) (976 -1230 40) (1216 -1230 40)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56552" + "plane" "(976 -1230 40) (976 -1195 40) (976 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56551" + "plane" "(1216 -1195 40) (1216 -1230 40) (1216 -1230 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56550" + "plane" "(976 -1195 40) (1216 -1195 40) (1216 -1195 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56549" + "plane" "(1216 -1230 40) (976 -1230 40) (976 -1230 42)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168172" + side + { + "id" "56560" + "plane" "(1280 -1195 56) (1280 -1179 56) (1376 -1179 56)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56559" + "plane" "(1280 -1179 55) (1280 -1195 55) (1376 -1195 55)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56558" + "plane" "(1280 -1195 55) (1280 -1179 55) (1280 -1179 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56557" + "plane" "(1376 -1179 55) (1376 -1195 55) (1376 -1195 56)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56556" + "plane" "(1280 -1179 55) (1376 -1179 55) (1376 -1179 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56555" + "plane" "(1376 -1195 55) (1280 -1195 55) (1280 -1195 56)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168173" + side + { + "id" "56566" + "plane" "(1284 -1195 42) (1284 -1191 42) (1286 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56565" + "plane" "(1284 -1191 40) (1284 -1195 40) (1286 -1195 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56564" + "plane" "(1284 -1195 40) (1284 -1191 40) (1284 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56563" + "plane" "(1286 -1191 40) (1286 -1195 40) (1286 -1195 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56562" + "plane" "(1284 -1191 40) (1286 -1191 40) (1286 -1191 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56561" + "plane" "(1286 -1195 40) (1284 -1195 40) (1284 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168174" + side + { + "id" "56572" + "plane" "(1284 -1191 55) (1284 -1189 55) (1286 -1189 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56571" + "plane" "(1284 -1189 30) (1284 -1191 30) (1286 -1191 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56570" + "plane" "(1284 -1191 30) (1284 -1189 30) (1284 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56569" + "plane" "(1286 -1189 30) (1286 -1191 30) (1286 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56568" + "plane" "(1284 -1189 30) (1286 -1189 30) (1286 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56567" + "plane" "(1286 -1191 30) (1284 -1191 30) (1284 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168175" + side + { + "id" "56578" + "plane" "(1370 -1191 55) (1370 -1189 55) (1372 -1189 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56577" + "plane" "(1370 -1189 30) (1370 -1191 30) (1372 -1191 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56576" + "plane" "(1370 -1191 30) (1370 -1189 30) (1370 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56575" + "plane" "(1372 -1189 30) (1372 -1191 30) (1372 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56574" + "plane" "(1370 -1189 30) (1372 -1189 30) (1372 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56573" + "plane" "(1372 -1191 30) (1370 -1191 30) (1370 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168176" + side + { + "id" "56584" + "plane" "(1370 -1195 42) (1370 -1191 42) (1372 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56583" + "plane" "(1370 -1191 40) (1370 -1195 40) (1372 -1195 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56582" + "plane" "(1370 -1195 40) (1370 -1191 40) (1370 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56581" + "plane" "(1372 -1191 40) (1372 -1195 40) (1372 -1195 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56580" + "plane" "(1370 -1191 40) (1372 -1191 40) (1372 -1191 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56579" + "plane" "(1372 -1195 40) (1370 -1195 40) (1370 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168177" + side + { + "id" "56590" + "plane" "(976 -1195 56) (976 -1179 56) (1216 -1179 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56589" + "plane" "(976 -1179 55) (976 -1195 55) (1216 -1195 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56588" + "plane" "(976 -1195 55) (976 -1179 55) (976 -1179 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56587" + "plane" "(1216 -1179 55) (1216 -1195 55) (1216 -1195 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56586" + "plane" "(976 -1179 55) (1216 -1179 55) (1216 -1179 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56585" + "plane" "(1216 -1195 55) (976 -1195 55) (976 -1195 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168178" + side + { + "id" "56596" + "plane" "(1062 -1195 42) (1062 -1191 42) (1064 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56595" + "plane" "(1062 -1191 40) (1062 -1195 40) (1064 -1195 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56594" + "plane" "(1062 -1195 40) (1062 -1191 40) (1062 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56593" + "plane" "(1064 -1191 40) (1064 -1195 40) (1064 -1195 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56592" + "plane" "(1062 -1191 40) (1064 -1191 40) (1064 -1191 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56591" + "plane" "(1064 -1195 40) (1062 -1195 40) (1062 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168179" + side + { + "id" "56602" + "plane" "(1062 -1191 55) (1062 -1189 55) (1064 -1189 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56601" + "plane" "(1062 -1189 30) (1062 -1191 30) (1064 -1191 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56600" + "plane" "(1062 -1191 30) (1062 -1189 30) (1062 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56599" + "plane" "(1064 -1189 30) (1064 -1191 30) (1064 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56598" + "plane" "(1062 -1189 30) (1064 -1189 30) (1064 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56597" + "plane" "(1064 -1191 30) (1062 -1191 30) (1062 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168180" + side + { + "id" "56608" + "plane" "(1210 -1191 55) (1210 -1189 55) (1212 -1189 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56607" + "plane" "(1210 -1189 30) (1210 -1191 30) (1212 -1191 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56606" + "plane" "(1210 -1191 30) (1210 -1189 30) (1210 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56605" + "plane" "(1212 -1189 30) (1212 -1191 30) (1212 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56604" + "plane" "(1210 -1189 30) (1212 -1189 30) (1212 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56603" + "plane" "(1212 -1191 30) (1210 -1191 30) (1210 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168181" + side + { + "id" "56614" + "plane" "(1210 -1195 42) (1210 -1191 42) (1212 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56613" + "plane" "(1210 -1191 40) (1210 -1195 40) (1212 -1195 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56612" + "plane" "(1210 -1195 40) (1210 -1191 40) (1210 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56611" + "plane" "(1212 -1191 40) (1212 -1195 40) (1212 -1195 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56610" + "plane" "(1210 -1191 40) (1212 -1191 40) (1212 -1191 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56609" + "plane" "(1212 -1195 40) (1210 -1195 40) (1210 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168182" + side + { + "id" "56620" + "plane" "(1144 -1195 42) (1144 -1191 42) (1146 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56619" + "plane" "(1144 -1191 40) (1144 -1195 40) (1146 -1195 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56618" + "plane" "(1144 -1195 40) (1144 -1191 40) (1144 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56617" + "plane" "(1146 -1191 40) (1146 -1195 40) (1146 -1195 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56616" + "plane" "(1144 -1191 40) (1146 -1191 40) (1146 -1191 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56615" + "plane" "(1146 -1195 40) (1144 -1195 40) (1144 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168183" + side + { + "id" "56626" + "plane" "(1144 -1191 55) (1144 -1189 55) (1146 -1189 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56625" + "plane" "(1144 -1189 30) (1144 -1191 30) (1146 -1191 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56624" + "plane" "(1144 -1191 30) (1144 -1189 30) (1144 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56623" + "plane" "(1146 -1189 30) (1146 -1191 30) (1146 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56622" + "plane" "(1144 -1189 30) (1146 -1189 30) (1146 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56621" + "plane" "(1146 -1191 30) (1144 -1191 30) (1144 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168184" + side + { + "id" "56632" + "plane" "(980 -1195 42) (980 -1191 42) (982 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56631" + "plane" "(980 -1191 40) (980 -1195 40) (982 -1195 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56630" + "plane" "(980 -1195 40) (980 -1191 40) (980 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56629" + "plane" "(982 -1191 40) (982 -1195 40) (982 -1195 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56628" + "plane" "(980 -1191 40) (982 -1191 40) (982 -1191 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56627" + "plane" "(982 -1195 40) (980 -1195 40) (980 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168185" + side + { + "id" "56638" + "plane" "(980 -1191 55) (980 -1189 55) (982 -1189 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56637" + "plane" "(980 -1189 30) (980 -1191 30) (982 -1191 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56636" + "plane" "(980 -1191 30) (980 -1189 30) (980 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56635" + "plane" "(982 -1189 30) (982 -1191 30) (982 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56634" + "plane" "(980 -1189 30) (982 -1189 30) (982 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56633" + "plane" "(982 -1191 30) (980 -1191 30) (980 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168186" + side + { + "id" "56644" + "plane" "(816 -1195 56) (816 -1179 56) (912 -1179 56)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56643" + "plane" "(816 -1179 55) (816 -1195 55) (912 -1195 55)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56642" + "plane" "(816 -1195 55) (816 -1179 55) (816 -1179 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56641" + "plane" "(912 -1179 55) (912 -1195 55) (912 -1195 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56640" + "plane" "(816 -1179 55) (912 -1179 55) (912 -1179 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56639" + "plane" "(912 -1195 55) (816 -1195 55) (816 -1195 56)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168187" + side + { + "id" "56650" + "plane" "(820 -1195 42) (820 -1191 42) (822 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56649" + "plane" "(820 -1191 40) (820 -1195 40) (822 -1195 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56648" + "plane" "(820 -1195 40) (820 -1191 40) (820 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56647" + "plane" "(822 -1191 40) (822 -1195 40) (822 -1195 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56646" + "plane" "(820 -1191 40) (822 -1191 40) (822 -1191 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56645" + "plane" "(822 -1195 40) (820 -1195 40) (820 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168188" + side + { + "id" "56656" + "plane" "(820 -1191 55) (820 -1189 55) (822 -1189 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56655" + "plane" "(820 -1189 30) (820 -1191 30) (822 -1191 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56654" + "plane" "(820 -1191 30) (820 -1189 30) (820 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56653" + "plane" "(822 -1189 30) (822 -1191 30) (822 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56652" + "plane" "(820 -1189 30) (822 -1189 30) (822 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56651" + "plane" "(822 -1191 30) (820 -1191 30) (820 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168189" + side + { + "id" "56662" + "plane" "(906 -1191 55) (906 -1189 55) (908 -1189 55)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56661" + "plane" "(906 -1189 30) (906 -1191 30) (908 -1191 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56660" + "plane" "(906 -1191 30) (906 -1189 30) (906 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56659" + "plane" "(908 -1189 30) (908 -1191 30) (908 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56658" + "plane" "(906 -1189 30) (908 -1189 30) (908 -1189 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56657" + "plane" "(908 -1191 30) (906 -1191 30) (906 -1191 55)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168190" + side + { + "id" "56668" + "plane" "(906 -1195 42) (906 -1191 42) (908 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56667" + "plane" "(906 -1191 40) (906 -1195 40) (908 -1195 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56666" + "plane" "(906 -1195 40) (906 -1191 40) (906 -1191 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56665" + "plane" "(908 -1191 40) (908 -1195 40) (908 -1195 42)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56664" + "plane" "(906 -1191 40) (908 -1191 40) (908 -1191 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56663" + "plane" "(908 -1195 40) (906 -1195 40) (906 -1195 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168191" + side + { + "id" "56674" + "plane" "(816 -1230 52) (816 -1228 52) (1376 -1228 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56673" + "plane" "(816 -1228 42) (816 -1230 42) (1376 -1230 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56672" + "plane" "(816 -1230 42) (816 -1228 42) (816 -1228 52)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56671" + "plane" "(1376 -1228 42) (1376 -1230 42) (1376 -1230 52)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56670" + "plane" "(816 -1228 42) (1376 -1228 42) (1376 -1228 52)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56669" + "plane" "(1376 -1230 42) (816 -1230 42) (816 -1230 52)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "168192" + "classname" "func_detail" + solid + { + "id" "168193" + side + { + "id" "56830" + "plane" "(1216 -1263 54) (1216 -1228 54) (1280 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56829" + "plane" "(1216 -1228 52) (1216 -1263 52) (1280 -1263 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56828" + "plane" "(1216 -1263 52) (1216 -1228 52) (1216 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56827" + "plane" "(1280 -1228 52) (1280 -1263 52) (1280 -1263 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56826" + "plane" "(1216 -1228 52) (1280 -1228 52) (1280 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56825" + "plane" "(1280 -1263 52) (1216 -1263 52) (1216 -1263 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168194" + side + { + "id" "56836" + "plane" "(1280 -1263 54) (1280 -1228 54) (1376 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56835" + "plane" "(1280 -1228 52) (1280 -1263 52) (1376 -1263 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56834" + "plane" "(1280 -1263 52) (1280 -1228 52) (1280 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56833" + "plane" "(1376 -1228 52) (1376 -1263 52) (1376 -1263 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 32] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56832" + "plane" "(1280 -1228 52) (1376 -1228 52) (1376 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56831" + "plane" "(1376 -1263 52) (1280 -1263 52) (1280 -1263 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168195" + side + { + "id" "56842" + "plane" "(816 -1263 54) (816 -1228 54) (912 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56841" + "plane" "(816 -1228 52) (816 -1263 52) (912 -1263 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56840" + "plane" "(816 -1263 52) (816 -1228 52) (816 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -32.002] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56839" + "plane" "(912 -1228 52) (912 -1263 52) (912 -1263 54)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -32] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56838" + "plane" "(816 -1228 52) (912 -1228 52) (912 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56837" + "plane" "(912 -1263 52) (816 -1263 52) (816 -1263 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168196" + side + { + "id" "56848" + "plane" "(912 -1263 54) (912 -1228 54) (976 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56847" + "plane" "(912 -1228 52) (912 -1263 52) (976 -1263 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56846" + "plane" "(912 -1263 52) (912 -1228 52) (912 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56845" + "plane" "(976 -1228 52) (976 -1263 52) (976 -1263 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56844" + "plane" "(912 -1228 52) (976 -1228 52) (976 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56843" + "plane" "(976 -1263 52) (912 -1263 52) (912 -1263 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168197" + side + { + "id" "56854" + "plane" "(976 -1263 54) (976 -1228 54) (1216 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56853" + "plane" "(976 -1228 52) (976 -1263 52) (1216 -1263 52)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56852" + "plane" "(976 -1263 52) (976 -1228 52) (976 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56851" + "plane" "(1216 -1228 52) (1216 -1263 52) (1216 -1263 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56850" + "plane" "(976 -1228 52) (1216 -1228 52) (1216 -1228 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56849" + "plane" "(1216 -1263 52) (976 -1263 52) (976 -1263 54)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168198" + side + { + "id" "56860" + "plane" "(1280 -1228 68) (1280 -1212 68) (1376 -1212 68)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56859" + "plane" "(1280 -1212 67) (1280 -1228 67) (1376 -1228 67)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56858" + "plane" "(1280 -1228 67) (1280 -1212 67) (1280 -1212 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56857" + "plane" "(1376 -1212 67) (1376 -1228 67) (1376 -1228 68)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56856" + "plane" "(1280 -1212 67) (1376 -1212 67) (1376 -1212 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56855" + "plane" "(1376 -1228 67) (1280 -1228 67) (1280 -1228 68)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168199" + side + { + "id" "56866" + "plane" "(1284 -1228 54) (1284 -1224 54) (1286 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56865" + "plane" "(1284 -1224 52) (1284 -1228 52) (1286 -1228 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56864" + "plane" "(1284 -1228 52) (1284 -1224 52) (1284 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56863" + "plane" "(1286 -1224 52) (1286 -1228 52) (1286 -1228 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56862" + "plane" "(1284 -1224 52) (1286 -1224 52) (1286 -1224 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56861" + "plane" "(1286 -1228 52) (1284 -1228 52) (1284 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168200" + side + { + "id" "56872" + "plane" "(1284 -1224 67) (1284 -1222 67) (1286 -1222 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56871" + "plane" "(1284 -1222 42) (1284 -1224 42) (1286 -1224 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56870" + "plane" "(1284 -1224 42) (1284 -1222 42) (1284 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56869" + "plane" "(1286 -1222 42) (1286 -1224 42) (1286 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56868" + "plane" "(1284 -1222 42) (1286 -1222 42) (1286 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56867" + "plane" "(1286 -1224 42) (1284 -1224 42) (1284 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168201" + side + { + "id" "56878" + "plane" "(1370 -1224 67) (1370 -1222 67) (1372 -1222 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56877" + "plane" "(1370 -1222 42) (1370 -1224 42) (1372 -1224 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56876" + "plane" "(1370 -1224 42) (1370 -1222 42) (1370 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56875" + "plane" "(1372 -1222 42) (1372 -1224 42) (1372 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56874" + "plane" "(1370 -1222 42) (1372 -1222 42) (1372 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56873" + "plane" "(1372 -1224 42) (1370 -1224 42) (1370 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168202" + side + { + "id" "56884" + "plane" "(1370 -1228 54) (1370 -1224 54) (1372 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56883" + "plane" "(1370 -1224 52) (1370 -1228 52) (1372 -1228 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56882" + "plane" "(1370 -1228 52) (1370 -1224 52) (1370 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56881" + "plane" "(1372 -1224 52) (1372 -1228 52) (1372 -1228 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56880" + "plane" "(1370 -1224 52) (1372 -1224 52) (1372 -1224 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56879" + "plane" "(1372 -1228 52) (1370 -1228 52) (1370 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168203" + side + { + "id" "56890" + "plane" "(976 -1228 68) (976 -1212 68) (1216 -1212 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56889" + "plane" "(976 -1212 67) (976 -1228 67) (1216 -1228 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56888" + "plane" "(976 -1228 67) (976 -1212 67) (976 -1212 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56887" + "plane" "(1216 -1212 67) (1216 -1228 67) (1216 -1228 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56886" + "plane" "(976 -1212 67) (1216 -1212 67) (1216 -1212 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56885" + "plane" "(1216 -1228 67) (976 -1228 67) (976 -1228 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168204" + side + { + "id" "56896" + "plane" "(1062 -1228 54) (1062 -1224 54) (1064 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56895" + "plane" "(1062 -1224 52) (1062 -1228 52) (1064 -1228 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56894" + "plane" "(1062 -1228 52) (1062 -1224 52) (1062 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56893" + "plane" "(1064 -1224 52) (1064 -1228 52) (1064 -1228 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56892" + "plane" "(1062 -1224 52) (1064 -1224 52) (1064 -1224 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56891" + "plane" "(1064 -1228 52) (1062 -1228 52) (1062 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168205" + side + { + "id" "56902" + "plane" "(1062 -1224 67) (1062 -1222 67) (1064 -1222 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56901" + "plane" "(1062 -1222 42) (1062 -1224 42) (1064 -1224 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56900" + "plane" "(1062 -1224 42) (1062 -1222 42) (1062 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56899" + "plane" "(1064 -1222 42) (1064 -1224 42) (1064 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56898" + "plane" "(1062 -1222 42) (1064 -1222 42) (1064 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56897" + "plane" "(1064 -1224 42) (1062 -1224 42) (1062 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168206" + side + { + "id" "56908" + "plane" "(1210 -1224 67) (1210 -1222 67) (1212 -1222 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56907" + "plane" "(1210 -1222 42) (1210 -1224 42) (1212 -1224 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56906" + "plane" "(1210 -1224 42) (1210 -1222 42) (1210 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56905" + "plane" "(1212 -1222 42) (1212 -1224 42) (1212 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56904" + "plane" "(1210 -1222 42) (1212 -1222 42) (1212 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56903" + "plane" "(1212 -1224 42) (1210 -1224 42) (1210 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168207" + side + { + "id" "56914" + "plane" "(1210 -1228 54) (1210 -1224 54) (1212 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56913" + "plane" "(1210 -1224 52) (1210 -1228 52) (1212 -1228 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56912" + "plane" "(1210 -1228 52) (1210 -1224 52) (1210 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56911" + "plane" "(1212 -1224 52) (1212 -1228 52) (1212 -1228 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56910" + "plane" "(1210 -1224 52) (1212 -1224 52) (1212 -1224 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56909" + "plane" "(1212 -1228 52) (1210 -1228 52) (1210 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168208" + side + { + "id" "56920" + "plane" "(1144 -1228 54) (1144 -1224 54) (1146 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56919" + "plane" "(1144 -1224 52) (1144 -1228 52) (1146 -1228 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56918" + "plane" "(1144 -1228 52) (1144 -1224 52) (1144 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56917" + "plane" "(1146 -1224 52) (1146 -1228 52) (1146 -1228 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56916" + "plane" "(1144 -1224 52) (1146 -1224 52) (1146 -1224 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56915" + "plane" "(1146 -1228 52) (1144 -1228 52) (1144 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168209" + side + { + "id" "56926" + "plane" "(1144 -1224 67) (1144 -1222 67) (1146 -1222 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56925" + "plane" "(1144 -1222 42) (1144 -1224 42) (1146 -1224 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56924" + "plane" "(1144 -1224 42) (1144 -1222 42) (1144 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56923" + "plane" "(1146 -1222 42) (1146 -1224 42) (1146 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56922" + "plane" "(1144 -1222 42) (1146 -1222 42) (1146 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56921" + "plane" "(1146 -1224 42) (1144 -1224 42) (1144 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168210" + side + { + "id" "56932" + "plane" "(980 -1228 54) (980 -1224 54) (982 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56931" + "plane" "(980 -1224 52) (980 -1228 52) (982 -1228 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56930" + "plane" "(980 -1228 52) (980 -1224 52) (980 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56929" + "plane" "(982 -1224 52) (982 -1228 52) (982 -1228 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56928" + "plane" "(980 -1224 52) (982 -1224 52) (982 -1224 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56927" + "plane" "(982 -1228 52) (980 -1228 52) (980 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168211" + side + { + "id" "56938" + "plane" "(980 -1224 67) (980 -1222 67) (982 -1222 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56937" + "plane" "(980 -1222 42) (980 -1224 42) (982 -1224 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56936" + "plane" "(980 -1224 42) (980 -1222 42) (980 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56935" + "plane" "(982 -1222 42) (982 -1224 42) (982 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56934" + "plane" "(980 -1222 42) (982 -1222 42) (982 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56933" + "plane" "(982 -1224 42) (980 -1224 42) (980 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168212" + side + { + "id" "56944" + "plane" "(816 -1228 68) (816 -1212 68) (912 -1212 68)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56943" + "plane" "(816 -1212 67) (816 -1228 67) (912 -1228 67)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56942" + "plane" "(816 -1228 67) (816 -1212 67) (816 -1212 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56941" + "plane" "(912 -1212 67) (912 -1228 67) (912 -1228 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56940" + "plane" "(816 -1212 67) (912 -1212 67) (912 -1212 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56939" + "plane" "(912 -1228 67) (816 -1228 67) (816 -1228 68)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168213" + side + { + "id" "56950" + "plane" "(820 -1228 54) (820 -1224 54) (822 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56949" + "plane" "(820 -1224 52) (820 -1228 52) (822 -1228 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56948" + "plane" "(820 -1228 52) (820 -1224 52) (820 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56947" + "plane" "(822 -1224 52) (822 -1228 52) (822 -1228 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56946" + "plane" "(820 -1224 52) (822 -1224 52) (822 -1224 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56945" + "plane" "(822 -1228 52) (820 -1228 52) (820 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168214" + side + { + "id" "56956" + "plane" "(820 -1224 67) (820 -1222 67) (822 -1222 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56955" + "plane" "(820 -1222 42) (820 -1224 42) (822 -1224 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56954" + "plane" "(820 -1224 42) (820 -1222 42) (820 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56953" + "plane" "(822 -1222 42) (822 -1224 42) (822 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56952" + "plane" "(820 -1222 42) (822 -1222 42) (822 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56951" + "plane" "(822 -1224 42) (820 -1224 42) (820 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168215" + side + { + "id" "56962" + "plane" "(906 -1224 67) (906 -1222 67) (908 -1222 67)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56961" + "plane" "(906 -1222 42) (906 -1224 42) (908 -1224 42)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56960" + "plane" "(906 -1224 42) (906 -1222 42) (906 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56959" + "plane" "(908 -1222 42) (908 -1224 42) (908 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56958" + "plane" "(906 -1222 42) (908 -1222 42) (908 -1222 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56957" + "plane" "(908 -1224 42) (906 -1224 42) (906 -1224 67)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168216" + side + { + "id" "56968" + "plane" "(906 -1228 54) (906 -1224 54) (908 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56967" + "plane" "(906 -1224 52) (906 -1228 52) (908 -1228 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56966" + "plane" "(906 -1228 52) (906 -1224 52) (906 -1224 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56965" + "plane" "(908 -1224 52) (908 -1228 52) (908 -1228 54)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56964" + "plane" "(906 -1224 52) (908 -1224 52) (908 -1224 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56963" + "plane" "(908 -1228 52) (906 -1228 52) (906 -1228 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168217" + side + { + "id" "56974" + "plane" "(816 -1263 64) (816 -1261 64) (1376 -1261 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56973" + "plane" "(816 -1261 54) (816 -1263 54) (1376 -1263 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56972" + "plane" "(816 -1263 54) (816 -1261 54) (816 -1261 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56971" + "plane" "(1376 -1261 54) (1376 -1263 54) (1376 -1263 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56970" + "plane" "(816 -1261 54) (1376 -1261 54) (1376 -1261 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56969" + "plane" "(1376 -1263 54) (816 -1263 54) (816 -1263 64)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "168218" + "classname" "func_detail" + solid + { + "id" "168219" + side + { + "id" "57130" + "plane" "(1216 -1296 66) (1216 -1261 66) (1280 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57129" + "plane" "(1216 -1261 64) (1216 -1296 64) (1280 -1296 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57128" + "plane" "(1216 -1296 64) (1216 -1261 64) (1216 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57127" + "plane" "(1280 -1261 64) (1280 -1296 64) (1280 -1296 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57126" + "plane" "(1216 -1261 64) (1280 -1261 64) (1280 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57125" + "plane" "(1280 -1296 64) (1216 -1296 64) (1216 -1296 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168220" + side + { + "id" "57136" + "plane" "(1280 -1296 66) (1280 -1261 66) (1376 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57135" + "plane" "(1280 -1261 64) (1280 -1296 64) (1376 -1296 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57134" + "plane" "(1280 -1296 64) (1280 -1261 64) (1280 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57133" + "plane" "(1376 -1261 64) (1376 -1296 64) (1376 -1296 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 24] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57132" + "plane" "(1280 -1261 64) (1376 -1261 64) (1376 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57131" + "plane" "(1376 -1296 64) (1280 -1296 64) (1280 -1296 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168221" + side + { + "id" "57142" + "plane" "(816 -1296 66) (816 -1261 66) (912 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57141" + "plane" "(816 -1261 64) (816 -1296 64) (912 -1296 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57140" + "plane" "(816 -1296 64) (816 -1261 64) (816 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -24.002] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57139" + "plane" "(912 -1261 64) (912 -1296 64) (912 -1296 66)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -24] 0.125" + "vaxis" "[0 0 -1 -48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57138" + "plane" "(816 -1261 64) (912 -1261 64) (912 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57137" + "plane" "(912 -1296 64) (816 -1296 64) (816 -1296 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168222" + side + { + "id" "57148" + "plane" "(912 -1296 66) (912 -1261 66) (976 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57147" + "plane" "(912 -1261 64) (912 -1296 64) (976 -1296 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57146" + "plane" "(912 -1296 64) (912 -1261 64) (912 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57145" + "plane" "(976 -1261 64) (976 -1296 64) (976 -1296 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57144" + "plane" "(912 -1261 64) (976 -1261 64) (976 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57143" + "plane" "(976 -1296 64) (912 -1296 64) (912 -1296 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168223" + side + { + "id" "57154" + "plane" "(976 -1296 66) (976 -1261 66) (1216 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 24] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57153" + "plane" "(976 -1261 64) (976 -1296 64) (1216 -1296 64)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57152" + "plane" "(976 -1296 64) (976 -1261 64) (976 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57151" + "plane" "(1216 -1261 64) (1216 -1296 64) (1216 -1296 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57150" + "plane" "(976 -1261 64) (1216 -1261 64) (1216 -1261 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57149" + "plane" "(1216 -1296 64) (976 -1296 64) (976 -1296 66)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168224" + side + { + "id" "57160" + "plane" "(1280 -1261 80) (1280 -1245 80) (1376 -1245 80)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57159" + "plane" "(1280 -1245 79) (1280 -1261 79) (1376 -1261 79)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57158" + "plane" "(1280 -1261 79) (1280 -1245 79) (1280 -1245 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57157" + "plane" "(1376 -1245 79) (1376 -1261 79) (1376 -1261 80)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57156" + "plane" "(1280 -1245 79) (1376 -1245 79) (1376 -1245 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57155" + "plane" "(1376 -1261 79) (1280 -1261 79) (1280 -1261 80)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168225" + side + { + "id" "57166" + "plane" "(1284 -1261 66) (1284 -1257 66) (1286 -1257 66)" + "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" "57165" + "plane" "(1284 -1257 64) (1284 -1261 64) (1286 -1261 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" "57164" + "plane" "(1284 -1261 64) (1284 -1257 64) (1284 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57163" + "plane" "(1286 -1257 64) (1286 -1261 64) (1286 -1261 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57162" + "plane" "(1284 -1257 64) (1286 -1257 64) (1286 -1257 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57161" + "plane" "(1286 -1261 64) (1284 -1261 64) (1284 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168226" + side + { + "id" "57172" + "plane" "(1284 -1257 79) (1284 -1255 79) (1286 -1255 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57171" + "plane" "(1284 -1255 54) (1284 -1257 54) (1286 -1257 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57170" + "plane" "(1284 -1257 54) (1284 -1255 54) (1284 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57169" + "plane" "(1286 -1255 54) (1286 -1257 54) (1286 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57168" + "plane" "(1284 -1255 54) (1286 -1255 54) (1286 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57167" + "plane" "(1286 -1257 54) (1284 -1257 54) (1284 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168227" + side + { + "id" "57178" + "plane" "(1370 -1257 79) (1370 -1255 79) (1372 -1255 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57177" + "plane" "(1370 -1255 54) (1370 -1257 54) (1372 -1257 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57176" + "plane" "(1370 -1257 54) (1370 -1255 54) (1370 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57175" + "plane" "(1372 -1255 54) (1372 -1257 54) (1372 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57174" + "plane" "(1370 -1255 54) (1372 -1255 54) (1372 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57173" + "plane" "(1372 -1257 54) (1370 -1257 54) (1370 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168228" + side + { + "id" "57184" + "plane" "(1370 -1261 66) (1370 -1257 66) (1372 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57183" + "plane" "(1370 -1257 64) (1370 -1261 64) (1372 -1261 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57182" + "plane" "(1370 -1261 64) (1370 -1257 64) (1370 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57181" + "plane" "(1372 -1257 64) (1372 -1261 64) (1372 -1261 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57180" + "plane" "(1370 -1257 64) (1372 -1257 64) (1372 -1257 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57179" + "plane" "(1372 -1261 64) (1370 -1261 64) (1370 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168229" + side + { + "id" "57190" + "plane" "(976 -1261 80) (976 -1245 80) (1216 -1245 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" "57189" + "plane" "(976 -1245 79) (976 -1261 79) (1216 -1261 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57188" + "plane" "(976 -1261 79) (976 -1245 79) (976 -1245 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57187" + "plane" "(1216 -1245 79) (1216 -1261 79) (1216 -1261 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57186" + "plane" "(976 -1245 79) (1216 -1245 79) (1216 -1245 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57185" + "plane" "(1216 -1261 79) (976 -1261 79) (976 -1261 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168230" + side + { + "id" "57196" + "plane" "(1062 -1261 66) (1062 -1257 66) (1064 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57195" + "plane" "(1062 -1257 64) (1062 -1261 64) (1064 -1261 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57194" + "plane" "(1062 -1261 64) (1062 -1257 64) (1062 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57193" + "plane" "(1064 -1257 64) (1064 -1261 64) (1064 -1261 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57192" + "plane" "(1062 -1257 64) (1064 -1257 64) (1064 -1257 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57191" + "plane" "(1064 -1261 64) (1062 -1261 64) (1062 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168231" + side + { + "id" "57202" + "plane" "(1062 -1257 79) (1062 -1255 79) (1064 -1255 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57201" + "plane" "(1062 -1255 54) (1062 -1257 54) (1064 -1257 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57200" + "plane" "(1062 -1257 54) (1062 -1255 54) (1062 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57199" + "plane" "(1064 -1255 54) (1064 -1257 54) (1064 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57198" + "plane" "(1062 -1255 54) (1064 -1255 54) (1064 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57197" + "plane" "(1064 -1257 54) (1062 -1257 54) (1062 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168232" + side + { + "id" "57208" + "plane" "(1210 -1257 79) (1210 -1255 79) (1212 -1255 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57207" + "plane" "(1210 -1255 54) (1210 -1257 54) (1212 -1257 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57206" + "plane" "(1210 -1257 54) (1210 -1255 54) (1210 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57205" + "plane" "(1212 -1255 54) (1212 -1257 54) (1212 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57204" + "plane" "(1210 -1255 54) (1212 -1255 54) (1212 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57203" + "plane" "(1212 -1257 54) (1210 -1257 54) (1210 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168233" + side + { + "id" "57214" + "plane" "(1210 -1261 66) (1210 -1257 66) (1212 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57213" + "plane" "(1210 -1257 64) (1210 -1261 64) (1212 -1261 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57212" + "plane" "(1210 -1261 64) (1210 -1257 64) (1210 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57211" + "plane" "(1212 -1257 64) (1212 -1261 64) (1212 -1261 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57210" + "plane" "(1210 -1257 64) (1212 -1257 64) (1212 -1257 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57209" + "plane" "(1212 -1261 64) (1210 -1261 64) (1210 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168234" + side + { + "id" "57220" + "plane" "(1144 -1261 66) (1144 -1257 66) (1146 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57219" + "plane" "(1144 -1257 64) (1144 -1261 64) (1146 -1261 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" "57218" + "plane" "(1144 -1261 64) (1144 -1257 64) (1144 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57217" + "plane" "(1146 -1257 64) (1146 -1261 64) (1146 -1261 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57216" + "plane" "(1144 -1257 64) (1146 -1257 64) (1146 -1257 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57215" + "plane" "(1146 -1261 64) (1144 -1261 64) (1144 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168235" + side + { + "id" "57226" + "plane" "(1144 -1257 79) (1144 -1255 79) (1146 -1255 79)" + "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" "57225" + "plane" "(1144 -1255 54) (1144 -1257 54) (1146 -1257 54)" + "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" "57224" + "plane" "(1144 -1257 54) (1144 -1255 54) (1144 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57223" + "plane" "(1146 -1255 54) (1146 -1257 54) (1146 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57222" + "plane" "(1144 -1255 54) (1146 -1255 54) (1146 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57221" + "plane" "(1146 -1257 54) (1144 -1257 54) (1144 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168236" + side + { + "id" "57232" + "plane" "(980 -1261 66) (980 -1257 66) (982 -1257 66)" + "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" "57231" + "plane" "(980 -1257 64) (980 -1261 64) (982 -1261 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" "57230" + "plane" "(980 -1261 64) (980 -1257 64) (980 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57229" + "plane" "(982 -1257 64) (982 -1261 64) (982 -1261 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57228" + "plane" "(980 -1257 64) (982 -1257 64) (982 -1257 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57227" + "plane" "(982 -1261 64) (980 -1261 64) (980 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168237" + side + { + "id" "57238" + "plane" "(980 -1257 79) (980 -1255 79) (982 -1255 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57237" + "plane" "(980 -1255 54) (980 -1257 54) (982 -1257 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57236" + "plane" "(980 -1257 54) (980 -1255 54) (980 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57235" + "plane" "(982 -1255 54) (982 -1257 54) (982 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57234" + "plane" "(980 -1255 54) (982 -1255 54) (982 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57233" + "plane" "(982 -1257 54) (980 -1257 54) (980 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168238" + side + { + "id" "57244" + "plane" "(816 -1261 80) (816 -1245 80) (912 -1245 80)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57243" + "plane" "(816 -1245 79) (816 -1261 79) (912 -1261 79)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57242" + "plane" "(816 -1261 79) (816 -1245 79) (816 -1245 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57241" + "plane" "(912 -1245 79) (912 -1261 79) (912 -1261 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57240" + "plane" "(816 -1245 79) (912 -1245 79) (912 -1245 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57239" + "plane" "(912 -1261 79) (816 -1261 79) (816 -1261 80)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168239" + side + { + "id" "57250" + "plane" "(820 -1261 66) (820 -1257 66) (822 -1257 66)" + "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" "57249" + "plane" "(820 -1257 64) (820 -1261 64) (822 -1261 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" "57248" + "plane" "(820 -1261 64) (820 -1257 64) (820 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57247" + "plane" "(822 -1257 64) (822 -1261 64) (822 -1261 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57246" + "plane" "(820 -1257 64) (822 -1257 64) (822 -1257 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57245" + "plane" "(822 -1261 64) (820 -1261 64) (820 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168240" + side + { + "id" "57256" + "plane" "(820 -1257 79) (820 -1255 79) (822 -1255 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57255" + "plane" "(820 -1255 54) (820 -1257 54) (822 -1257 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57254" + "plane" "(820 -1257 54) (820 -1255 54) (820 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57253" + "plane" "(822 -1255 54) (822 -1257 54) (822 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57252" + "plane" "(820 -1255 54) (822 -1255 54) (822 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57251" + "plane" "(822 -1257 54) (820 -1257 54) (820 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168241" + side + { + "id" "57262" + "plane" "(906 -1257 79) (906 -1255 79) (908 -1255 79)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57261" + "plane" "(906 -1255 54) (906 -1257 54) (908 -1257 54)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57260" + "plane" "(906 -1257 54) (906 -1255 54) (906 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57259" + "plane" "(908 -1255 54) (908 -1257 54) (908 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57258" + "plane" "(906 -1255 54) (908 -1255 54) (908 -1255 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57257" + "plane" "(908 -1257 54) (906 -1257 54) (906 -1257 79)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168242" + side + { + "id" "57268" + "plane" "(906 -1261 66) (906 -1257 66) (908 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57267" + "plane" "(906 -1257 64) (906 -1261 64) (908 -1261 64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57266" + "plane" "(906 -1261 64) (906 -1257 64) (906 -1257 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57265" + "plane" "(908 -1257 64) (908 -1261 64) (908 -1261 66)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57264" + "plane" "(906 -1257 64) (908 -1257 64) (908 -1257 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57263" + "plane" "(908 -1261 64) (906 -1261 64) (906 -1261 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168243" + side + { + "id" "57274" + "plane" "(816 -1296 76) (816 -1294 76) (1376 -1294 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57273" + "plane" "(816 -1294 66) (816 -1296 66) (1376 -1296 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57272" + "plane" "(816 -1296 66) (816 -1294 66) (816 -1294 76)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57271" + "plane" "(1376 -1294 66) (1376 -1296 66) (1376 -1296 76)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57270" + "plane" "(816 -1294 66) (1376 -1294 66) (1376 -1294 76)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57269" + "plane" "(1376 -1296 66) (816 -1296 66) (816 -1296 76)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "168244" + "classname" "func_detail" + solid + { + "id" "168245" + side + { + "id" "57430" + "plane" "(1216 -1329 78) (1216 -1294 78) (1280 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57429" + "plane" "(1216 -1294 76) (1216 -1329 76) (1280 -1329 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57428" + "plane" "(1216 -1329 76) (1216 -1294 76) (1216 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57427" + "plane" "(1280 -1294 76) (1280 -1329 76) (1280 -1329 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57426" + "plane" "(1216 -1294 76) (1280 -1294 76) (1280 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57425" + "plane" "(1280 -1329 76) (1216 -1329 76) (1216 -1329 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168246" + side + { + "id" "57436" + "plane" "(1280 -1329 78) (1280 -1294 78) (1376 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57435" + "plane" "(1280 -1294 76) (1280 -1329 76) (1376 -1329 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57434" + "plane" "(1280 -1329 76) (1280 -1294 76) (1280 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57433" + "plane" "(1376 -1294 76) (1376 -1329 76) (1376 -1329 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 16] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57432" + "plane" "(1280 -1294 76) (1376 -1294 76) (1376 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57431" + "plane" "(1376 -1329 76) (1280 -1329 76) (1280 -1329 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168247" + side + { + "id" "57442" + "plane" "(816 -1329 78) (816 -1294 78) (912 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57441" + "plane" "(816 -1294 76) (816 -1329 76) (912 -1329 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57440" + "plane" "(816 -1329 76) (816 -1294 76) (816 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -16.0019] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57439" + "plane" "(912 -1294 76) (912 -1329 76) (912 -1329 78)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -16] 0.125" + "vaxis" "[0 0 -1 -80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57438" + "plane" "(816 -1294 76) (912 -1294 76) (912 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57437" + "plane" "(912 -1329 76) (816 -1329 76) (816 -1329 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168248" + side + { + "id" "57448" + "plane" "(912 -1329 78) (912 -1294 78) (976 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57447" + "plane" "(912 -1294 76) (912 -1329 76) (976 -1329 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57446" + "plane" "(912 -1329 76) (912 -1294 76) (912 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57445" + "plane" "(976 -1294 76) (976 -1329 76) (976 -1329 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57444" + "plane" "(912 -1294 76) (976 -1294 76) (976 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57443" + "plane" "(976 -1329 76) (912 -1329 76) (912 -1329 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168249" + side + { + "id" "57454" + "plane" "(976 -1329 78) (976 -1294 78) (1216 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57453" + "plane" "(976 -1294 76) (976 -1329 76) (1216 -1329 76)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57452" + "plane" "(976 -1329 76) (976 -1294 76) (976 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57451" + "plane" "(1216 -1294 76) (1216 -1329 76) (1216 -1329 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57450" + "plane" "(976 -1294 76) (1216 -1294 76) (1216 -1294 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57449" + "plane" "(1216 -1329 76) (976 -1329 76) (976 -1329 78)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168250" + side + { + "id" "57460" + "plane" "(1280 -1294 92) (1280 -1278 92) (1376 -1278 92)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57459" + "plane" "(1280 -1278 91) (1280 -1294 91) (1376 -1294 91)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57458" + "plane" "(1280 -1294 91) (1280 -1278 91) (1280 -1278 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57457" + "plane" "(1376 -1278 91) (1376 -1294 91) (1376 -1294 92)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57456" + "plane" "(1280 -1278 91) (1376 -1278 91) (1376 -1278 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57455" + "plane" "(1376 -1294 91) (1280 -1294 91) (1280 -1294 92)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168251" + side + { + "id" "57466" + "plane" "(1284 -1294 78) (1284 -1290 78) (1286 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57465" + "plane" "(1284 -1290 76) (1284 -1294 76) (1286 -1294 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57464" + "plane" "(1284 -1294 76) (1284 -1290 76) (1284 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57463" + "plane" "(1286 -1290 76) (1286 -1294 76) (1286 -1294 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57462" + "plane" "(1284 -1290 76) (1286 -1290 76) (1286 -1290 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57461" + "plane" "(1286 -1294 76) (1284 -1294 76) (1284 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168252" + side + { + "id" "57472" + "plane" "(1284 -1290 91) (1284 -1288 91) (1286 -1288 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57471" + "plane" "(1284 -1288 66) (1284 -1290 66) (1286 -1290 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57470" + "plane" "(1284 -1290 66) (1284 -1288 66) (1284 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57469" + "plane" "(1286 -1288 66) (1286 -1290 66) (1286 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57468" + "plane" "(1284 -1288 66) (1286 -1288 66) (1286 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57467" + "plane" "(1286 -1290 66) (1284 -1290 66) (1284 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168253" + side + { + "id" "57478" + "plane" "(1370 -1290 91) (1370 -1288 91) (1372 -1288 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57477" + "plane" "(1370 -1288 66) (1370 -1290 66) (1372 -1290 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57476" + "plane" "(1370 -1290 66) (1370 -1288 66) (1370 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57475" + "plane" "(1372 -1288 66) (1372 -1290 66) (1372 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57474" + "plane" "(1370 -1288 66) (1372 -1288 66) (1372 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57473" + "plane" "(1372 -1290 66) (1370 -1290 66) (1370 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168254" + side + { + "id" "57484" + "plane" "(1370 -1294 78) (1370 -1290 78) (1372 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57483" + "plane" "(1370 -1290 76) (1370 -1294 76) (1372 -1294 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57482" + "plane" "(1370 -1294 76) (1370 -1290 76) (1370 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57481" + "plane" "(1372 -1290 76) (1372 -1294 76) (1372 -1294 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57480" + "plane" "(1370 -1290 76) (1372 -1290 76) (1372 -1290 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57479" + "plane" "(1372 -1294 76) (1370 -1294 76) (1370 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168255" + side + { + "id" "57490" + "plane" "(976 -1294 92) (976 -1278 92) (1216 -1278 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57489" + "plane" "(976 -1278 91) (976 -1294 91) (1216 -1294 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57488" + "plane" "(976 -1294 91) (976 -1278 91) (976 -1278 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57487" + "plane" "(1216 -1278 91) (1216 -1294 91) (1216 -1294 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57486" + "plane" "(976 -1278 91) (1216 -1278 91) (1216 -1278 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57485" + "plane" "(1216 -1294 91) (976 -1294 91) (976 -1294 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168256" + side + { + "id" "57496" + "plane" "(1062 -1294 78) (1062 -1290 78) (1064 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57495" + "plane" "(1062 -1290 76) (1062 -1294 76) (1064 -1294 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57494" + "plane" "(1062 -1294 76) (1062 -1290 76) (1062 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57493" + "plane" "(1064 -1290 76) (1064 -1294 76) (1064 -1294 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57492" + "plane" "(1062 -1290 76) (1064 -1290 76) (1064 -1290 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57491" + "plane" "(1064 -1294 76) (1062 -1294 76) (1062 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168257" + side + { + "id" "57502" + "plane" "(1062 -1290 91) (1062 -1288 91) (1064 -1288 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57501" + "plane" "(1062 -1288 66) (1062 -1290 66) (1064 -1290 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57500" + "plane" "(1062 -1290 66) (1062 -1288 66) (1062 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57499" + "plane" "(1064 -1288 66) (1064 -1290 66) (1064 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57498" + "plane" "(1062 -1288 66) (1064 -1288 66) (1064 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57497" + "plane" "(1064 -1290 66) (1062 -1290 66) (1062 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168258" + side + { + "id" "57508" + "plane" "(1210 -1290 91) (1210 -1288 91) (1212 -1288 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57507" + "plane" "(1210 -1288 66) (1210 -1290 66) (1212 -1290 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57506" + "plane" "(1210 -1290 66) (1210 -1288 66) (1210 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57505" + "plane" "(1212 -1288 66) (1212 -1290 66) (1212 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57504" + "plane" "(1210 -1288 66) (1212 -1288 66) (1212 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57503" + "plane" "(1212 -1290 66) (1210 -1290 66) (1210 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168259" + side + { + "id" "57514" + "plane" "(1210 -1294 78) (1210 -1290 78) (1212 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57513" + "plane" "(1210 -1290 76) (1210 -1294 76) (1212 -1294 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57512" + "plane" "(1210 -1294 76) (1210 -1290 76) (1210 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57511" + "plane" "(1212 -1290 76) (1212 -1294 76) (1212 -1294 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57510" + "plane" "(1210 -1290 76) (1212 -1290 76) (1212 -1290 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57509" + "plane" "(1212 -1294 76) (1210 -1294 76) (1210 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168260" + side + { + "id" "57520" + "plane" "(1144 -1294 78) (1144 -1290 78) (1146 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57519" + "plane" "(1144 -1290 76) (1144 -1294 76) (1146 -1294 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57518" + "plane" "(1144 -1294 76) (1144 -1290 76) (1144 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57517" + "plane" "(1146 -1290 76) (1146 -1294 76) (1146 -1294 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57516" + "plane" "(1144 -1290 76) (1146 -1290 76) (1146 -1290 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57515" + "plane" "(1146 -1294 76) (1144 -1294 76) (1144 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168261" + side + { + "id" "57526" + "plane" "(1144 -1290 91) (1144 -1288 91) (1146 -1288 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57525" + "plane" "(1144 -1288 66) (1144 -1290 66) (1146 -1290 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57524" + "plane" "(1144 -1290 66) (1144 -1288 66) (1144 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57523" + "plane" "(1146 -1288 66) (1146 -1290 66) (1146 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57522" + "plane" "(1144 -1288 66) (1146 -1288 66) (1146 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57521" + "plane" "(1146 -1290 66) (1144 -1290 66) (1144 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168262" + side + { + "id" "57532" + "plane" "(980 -1294 78) (980 -1290 78) (982 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57531" + "plane" "(980 -1290 76) (980 -1294 76) (982 -1294 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57530" + "plane" "(980 -1294 76) (980 -1290 76) (980 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57529" + "plane" "(982 -1290 76) (982 -1294 76) (982 -1294 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57528" + "plane" "(980 -1290 76) (982 -1290 76) (982 -1290 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57527" + "plane" "(982 -1294 76) (980 -1294 76) (980 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168263" + side + { + "id" "57538" + "plane" "(980 -1290 91) (980 -1288 91) (982 -1288 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57537" + "plane" "(980 -1288 66) (980 -1290 66) (982 -1290 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57536" + "plane" "(980 -1290 66) (980 -1288 66) (980 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57535" + "plane" "(982 -1288 66) (982 -1290 66) (982 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57534" + "plane" "(980 -1288 66) (982 -1288 66) (982 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57533" + "plane" "(982 -1290 66) (980 -1290 66) (980 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168264" + side + { + "id" "57544" + "plane" "(816 -1294 92) (816 -1278 92) (912 -1278 92)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57543" + "plane" "(816 -1278 91) (816 -1294 91) (912 -1294 91)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57542" + "plane" "(816 -1294 91) (816 -1278 91) (816 -1278 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57541" + "plane" "(912 -1278 91) (912 -1294 91) (912 -1294 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57540" + "plane" "(816 -1278 91) (912 -1278 91) (912 -1278 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57539" + "plane" "(912 -1294 91) (816 -1294 91) (816 -1294 92)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168265" + side + { + "id" "57550" + "plane" "(820 -1294 78) (820 -1290 78) (822 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57549" + "plane" "(820 -1290 76) (820 -1294 76) (822 -1294 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57548" + "plane" "(820 -1294 76) (820 -1290 76) (820 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57547" + "plane" "(822 -1290 76) (822 -1294 76) (822 -1294 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57546" + "plane" "(820 -1290 76) (822 -1290 76) (822 -1290 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57545" + "plane" "(822 -1294 76) (820 -1294 76) (820 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168266" + side + { + "id" "57556" + "plane" "(820 -1290 91) (820 -1288 91) (822 -1288 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57555" + "plane" "(820 -1288 66) (820 -1290 66) (822 -1290 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57554" + "plane" "(820 -1290 66) (820 -1288 66) (820 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57553" + "plane" "(822 -1288 66) (822 -1290 66) (822 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57552" + "plane" "(820 -1288 66) (822 -1288 66) (822 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57551" + "plane" "(822 -1290 66) (820 -1290 66) (820 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168267" + side + { + "id" "57562" + "plane" "(906 -1290 91) (906 -1288 91) (908 -1288 91)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57561" + "plane" "(906 -1288 66) (906 -1290 66) (908 -1290 66)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57560" + "plane" "(906 -1290 66) (906 -1288 66) (906 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57559" + "plane" "(908 -1288 66) (908 -1290 66) (908 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57558" + "plane" "(906 -1288 66) (908 -1288 66) (908 -1288 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57557" + "plane" "(908 -1290 66) (906 -1290 66) (906 -1290 91)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168268" + side + { + "id" "57568" + "plane" "(906 -1294 78) (906 -1290 78) (908 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 28] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57567" + "plane" "(906 -1290 76) (906 -1294 76) (908 -1294 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57566" + "plane" "(906 -1294 76) (906 -1290 76) (906 -1290 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57565" + "plane" "(908 -1290 76) (908 -1294 76) (908 -1294 78)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57564" + "plane" "(906 -1290 76) (908 -1290 76) (908 -1290 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57563" + "plane" "(908 -1294 76) (906 -1294 76) (906 -1294 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -40] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168269" + side + { + "id" "57574" + "plane" "(816 -1329 88) (816 -1327 88) (1376 -1327 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57573" + "plane" "(816 -1327 78) (816 -1329 78) (1376 -1329 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57572" + "plane" "(816 -1329 78) (816 -1327 78) (816 -1327 88)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57571" + "plane" "(1376 -1327 78) (1376 -1329 78) (1376 -1329 88)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57570" + "plane" "(816 -1327 78) (1376 -1327 78) (1376 -1327 88)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57569" + "plane" "(1376 -1329 78) (816 -1329 78) (816 -1329 88)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "168270" + "classname" "func_detail" + solid + { + "id" "168271" + side + { + "id" "57730" + "plane" "(1216 -1362 90) (1216 -1327 90) (1280 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57729" + "plane" "(1216 -1327 88) (1216 -1362 88) (1280 -1362 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57728" + "plane" "(1216 -1362 88) (1216 -1327 88) (1216 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57727" + "plane" "(1280 -1327 88) (1280 -1362 88) (1280 -1362 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57726" + "plane" "(1216 -1327 88) (1280 -1327 88) (1280 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57725" + "plane" "(1280 -1362 88) (1216 -1362 88) (1216 -1362 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168272" + side + { + "id" "57736" + "plane" "(1280 -1362 90) (1280 -1327 90) (1376 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57735" + "plane" "(1280 -1327 88) (1280 -1362 88) (1376 -1362 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57734" + "plane" "(1280 -1362 88) (1280 -1327 88) (1280 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57733" + "plane" "(1376 -1327 88) (1376 -1362 88) (1376 -1362 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 8] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57732" + "plane" "(1280 -1327 88) (1376 -1327 88) (1376 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57731" + "plane" "(1376 -1362 88) (1280 -1362 88) (1280 -1362 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168273" + side + { + "id" "57742" + "plane" "(816 -1362 90) (816 -1327 90) (912 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57741" + "plane" "(816 -1327 88) (816 -1362 88) (912 -1362 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57740" + "plane" "(816 -1362 88) (816 -1327 88) (816 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -8.00195] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57739" + "plane" "(912 -1327 88) (912 -1362 88) (912 -1362 90)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 -8] 0.125" + "vaxis" "[0 0 -1 16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57738" + "plane" "(816 -1327 88) (912 -1327 88) (912 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57737" + "plane" "(912 -1362 88) (816 -1362 88) (816 -1362 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168274" + side + { + "id" "57748" + "plane" "(912 -1362 90) (912 -1327 90) (976 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57747" + "plane" "(912 -1327 88) (912 -1362 88) (976 -1362 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57746" + "plane" "(912 -1362 88) (912 -1327 88) (912 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57745" + "plane" "(976 -1327 88) (976 -1362 88) (976 -1362 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57744" + "plane" "(912 -1327 88) (976 -1327 88) (976 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57743" + "plane" "(976 -1362 88) (912 -1362 88) (912 -1362 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168275" + side + { + "id" "57754" + "plane" "(976 -1362 90) (976 -1327 90) (1216 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57753" + "plane" "(976 -1327 88) (976 -1362 88) (1216 -1362 88)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57752" + "plane" "(976 -1362 88) (976 -1327 88) (976 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57751" + "plane" "(1216 -1327 88) (1216 -1362 88) (1216 -1362 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57750" + "plane" "(976 -1327 88) (1216 -1327 88) (1216 -1327 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57749" + "plane" "(1216 -1362 88) (976 -1362 88) (976 -1362 90)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 48] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168276" + side + { + "id" "57760" + "plane" "(1280 -1327 104) (1280 -1311 104) (1376 -1311 104)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57759" + "plane" "(1280 -1311 103) (1280 -1327 103) (1376 -1327 103)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 4] 0.25" + "vaxis" "[0 -1 0 12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57758" + "plane" "(1280 -1327 103) (1280 -1311 103) (1280 -1311 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57757" + "plane" "(1376 -1311 103) (1376 -1327 103) (1376 -1327 104)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57756" + "plane" "(1280 -1311 103) (1376 -1311 103) (1376 -1311 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57755" + "plane" "(1376 -1327 103) (1280 -1327 103) (1280 -1327 104)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168277" + side + { + "id" "57766" + "plane" "(1284 -1327 90) (1284 -1323 90) (1286 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57765" + "plane" "(1284 -1323 88) (1284 -1327 88) (1286 -1327 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57764" + "plane" "(1284 -1327 88) (1284 -1323 88) (1284 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57763" + "plane" "(1286 -1323 88) (1286 -1327 88) (1286 -1327 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57762" + "plane" "(1284 -1323 88) (1286 -1323 88) (1286 -1323 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57761" + "plane" "(1286 -1327 88) (1284 -1327 88) (1284 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168278" + side + { + "id" "57772" + "plane" "(1284 -1323 103) (1284 -1321 103) (1286 -1321 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57771" + "plane" "(1284 -1321 78) (1284 -1323 78) (1286 -1323 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57770" + "plane" "(1284 -1323 78) (1284 -1321 78) (1284 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57769" + "plane" "(1286 -1321 78) (1286 -1323 78) (1286 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57768" + "plane" "(1284 -1321 78) (1286 -1321 78) (1286 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57767" + "plane" "(1286 -1323 78) (1284 -1323 78) (1284 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168279" + side + { + "id" "57778" + "plane" "(1370 -1323 103) (1370 -1321 103) (1372 -1321 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57777" + "plane" "(1370 -1321 78) (1370 -1323 78) (1372 -1323 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57776" + "plane" "(1370 -1323 78) (1370 -1321 78) (1370 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57775" + "plane" "(1372 -1321 78) (1372 -1323 78) (1372 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57774" + "plane" "(1370 -1321 78) (1372 -1321 78) (1372 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57773" + "plane" "(1372 -1323 78) (1370 -1323 78) (1370 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168280" + side + { + "id" "57784" + "plane" "(1370 -1327 90) (1370 -1323 90) (1372 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57783" + "plane" "(1370 -1323 88) (1370 -1327 88) (1372 -1327 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57782" + "plane" "(1370 -1327 88) (1370 -1323 88) (1370 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57781" + "plane" "(1372 -1323 88) (1372 -1327 88) (1372 -1327 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57780" + "plane" "(1370 -1323 88) (1372 -1323 88) (1372 -1323 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57779" + "plane" "(1372 -1327 88) (1370 -1327 88) (1370 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168281" + side + { + "id" "57790" + "plane" "(976 -1327 104) (976 -1311 104) (1216 -1311 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57789" + "plane" "(976 -1311 103) (976 -1327 103) (1216 -1327 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57788" + "plane" "(976 -1327 103) (976 -1311 103) (976 -1311 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57787" + "plane" "(1216 -1311 103) (1216 -1327 103) (1216 -1327 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57786" + "plane" "(976 -1311 103) (1216 -1311 103) (1216 -1311 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57785" + "plane" "(1216 -1327 103) (976 -1327 103) (976 -1327 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168282" + side + { + "id" "57796" + "plane" "(1062 -1327 90) (1062 -1323 90) (1064 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57795" + "plane" "(1062 -1323 88) (1062 -1327 88) (1064 -1327 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57794" + "plane" "(1062 -1327 88) (1062 -1323 88) (1062 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57793" + "plane" "(1064 -1323 88) (1064 -1327 88) (1064 -1327 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57792" + "plane" "(1062 -1323 88) (1064 -1323 88) (1064 -1323 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57791" + "plane" "(1064 -1327 88) (1062 -1327 88) (1062 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168283" + side + { + "id" "57802" + "plane" "(1062 -1323 103) (1062 -1321 103) (1064 -1321 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57801" + "plane" "(1062 -1321 78) (1062 -1323 78) (1064 -1323 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57800" + "plane" "(1062 -1323 78) (1062 -1321 78) (1062 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57799" + "plane" "(1064 -1321 78) (1064 -1323 78) (1064 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57798" + "plane" "(1062 -1321 78) (1064 -1321 78) (1064 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57797" + "plane" "(1064 -1323 78) (1062 -1323 78) (1062 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168284" + side + { + "id" "57808" + "plane" "(1210 -1323 103) (1210 -1321 103) (1212 -1321 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57807" + "plane" "(1210 -1321 78) (1210 -1323 78) (1212 -1323 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57806" + "plane" "(1210 -1323 78) (1210 -1321 78) (1210 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57805" + "plane" "(1212 -1321 78) (1212 -1323 78) (1212 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57804" + "plane" "(1210 -1321 78) (1212 -1321 78) (1212 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57803" + "plane" "(1212 -1323 78) (1210 -1323 78) (1210 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168285" + side + { + "id" "57814" + "plane" "(1210 -1327 90) (1210 -1323 90) (1212 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57813" + "plane" "(1210 -1323 88) (1210 -1327 88) (1212 -1327 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57812" + "plane" "(1210 -1327 88) (1210 -1323 88) (1210 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57811" + "plane" "(1212 -1323 88) (1212 -1327 88) (1212 -1327 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57810" + "plane" "(1210 -1323 88) (1212 -1323 88) (1212 -1323 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57809" + "plane" "(1212 -1327 88) (1210 -1327 88) (1210 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168286" + side + { + "id" "57820" + "plane" "(1144 -1327 90) (1144 -1323 90) (1146 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57819" + "plane" "(1144 -1323 88) (1144 -1327 88) (1146 -1327 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57818" + "plane" "(1144 -1327 88) (1144 -1323 88) (1144 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57817" + "plane" "(1146 -1323 88) (1146 -1327 88) (1146 -1327 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57816" + "plane" "(1144 -1323 88) (1146 -1323 88) (1146 -1323 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57815" + "plane" "(1146 -1327 88) (1144 -1327 88) (1144 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168287" + side + { + "id" "57826" + "plane" "(1144 -1323 103) (1144 -1321 103) (1146 -1321 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57825" + "plane" "(1144 -1321 78) (1144 -1323 78) (1146 -1323 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57824" + "plane" "(1144 -1323 78) (1144 -1321 78) (1144 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57823" + "plane" "(1146 -1321 78) (1146 -1323 78) (1146 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57822" + "plane" "(1144 -1321 78) (1146 -1321 78) (1146 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57821" + "plane" "(1146 -1323 78) (1144 -1323 78) (1144 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168288" + side + { + "id" "57832" + "plane" "(980 -1327 90) (980 -1323 90) (982 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57831" + "plane" "(980 -1323 88) (980 -1327 88) (982 -1327 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57830" + "plane" "(980 -1327 88) (980 -1323 88) (980 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57829" + "plane" "(982 -1323 88) (982 -1327 88) (982 -1327 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57828" + "plane" "(980 -1323 88) (982 -1323 88) (982 -1323 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57827" + "plane" "(982 -1327 88) (980 -1327 88) (980 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168289" + side + { + "id" "57838" + "plane" "(980 -1323 103) (980 -1321 103) (982 -1321 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57837" + "plane" "(980 -1321 78) (980 -1323 78) (982 -1323 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57836" + "plane" "(980 -1323 78) (980 -1321 78) (980 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57835" + "plane" "(982 -1321 78) (982 -1323 78) (982 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57834" + "plane" "(980 -1321 78) (982 -1321 78) (982 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57833" + "plane" "(982 -1323 78) (980 -1323 78) (980 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168290" + side + { + "id" "57844" + "plane" "(816 -1327 104) (816 -1311 104) (912 -1311 104)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57843" + "plane" "(816 -1311 103) (816 -1327 103) (912 -1327 103)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57842" + "plane" "(816 -1327 103) (816 -1311 103) (816 -1311 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57841" + "plane" "(912 -1311 103) (912 -1327 103) (912 -1327 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57840" + "plane" "(816 -1311 103) (912 -1311 103) (912 -1311 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57839" + "plane" "(912 -1327 103) (816 -1327 103) (816 -1327 104)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168291" + side + { + "id" "57850" + "plane" "(820 -1327 90) (820 -1323 90) (822 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57849" + "plane" "(820 -1323 88) (820 -1327 88) (822 -1327 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57848" + "plane" "(820 -1327 88) (820 -1323 88) (820 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57847" + "plane" "(822 -1323 88) (822 -1327 88) (822 -1327 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57846" + "plane" "(820 -1323 88) (822 -1323 88) (822 -1323 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57845" + "plane" "(822 -1327 88) (820 -1327 88) (820 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168292" + side + { + "id" "57856" + "plane" "(820 -1323 103) (820 -1321 103) (822 -1321 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57855" + "plane" "(820 -1321 78) (820 -1323 78) (822 -1323 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57854" + "plane" "(820 -1323 78) (820 -1321 78) (820 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57853" + "plane" "(822 -1321 78) (822 -1323 78) (822 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57852" + "plane" "(820 -1321 78) (822 -1321 78) (822 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57851" + "plane" "(822 -1323 78) (820 -1323 78) (820 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168293" + side + { + "id" "57862" + "plane" "(906 -1323 103) (906 -1321 103) (908 -1321 103)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57861" + "plane" "(906 -1321 78) (906 -1323 78) (908 -1323 78)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57860" + "plane" "(906 -1323 78) (906 -1321 78) (906 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57859" + "plane" "(908 -1321 78) (908 -1323 78) (908 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57858" + "plane" "(906 -1321 78) (908 -1321 78) (908 -1321 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57857" + "plane" "(908 -1323 78) (906 -1323 78) (906 -1323 103)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168294" + side + { + "id" "57868" + "plane" "(906 -1327 90) (906 -1323 90) (908 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57867" + "plane" "(906 -1323 88) (906 -1327 88) (908 -1327 88)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57866" + "plane" "(906 -1327 88) (906 -1323 88) (906 -1323 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57865" + "plane" "(908 -1323 88) (908 -1327 88) (908 -1327 90)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57864" + "plane" "(906 -1323 88) (908 -1323 88) (908 -1323 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57863" + "plane" "(908 -1327 88) (906 -1327 88) (906 -1327 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168295" + side + { + "id" "57874" + "plane" "(816 -1362 100) (816 -1360 100) (1376 -1360 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57873" + "plane" "(816 -1360 90) (816 -1362 90) (1376 -1362 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 56] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57872" + "plane" "(816 -1362 90) (816 -1360 90) (816 -1360 100)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57871" + "plane" "(1376 -1360 90) (1376 -1362 90) (1376 -1362 100)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57870" + "plane" "(816 -1360 90) (1376 -1360 90) (1376 -1360 100)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57869" + "plane" "(1376 -1362 90) (816 -1362 90) (816 -1362 100)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +entity +{ + "id" "168296" + "classname" "func_detail" + solid + { + "id" "168297" + side + { + "id" "58030" + "plane" "(1216 -1395 102) (1216 -1360 102) (1280 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58029" + "plane" "(1216 -1360 100) (1216 -1395 100) (1280 -1395 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58028" + "plane" "(1216 -1395 100) (1216 -1360 100) (1216 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58027" + "plane" "(1280 -1360 100) (1280 -1395 100) (1280 -1395 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58026" + "plane" "(1216 -1360 100) (1280 -1360 100) (1280 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58025" + "plane" "(1280 -1395 100) (1216 -1395 100) (1216 -1395 102)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168298" + side + { + "id" "58036" + "plane" "(1280 -1395 102) (1280 -1360 102) (1376 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58035" + "plane" "(1280 -1360 100) (1280 -1395 100) (1376 -1395 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58034" + "plane" "(1280 -1395 100) (1280 -1360 100) (1280 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58033" + "plane" "(1376 -1360 100) (1376 -1395 100) (1376 -1395 102)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 -1 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58032" + "plane" "(1280 -1360 100) (1376 -1360 100) (1376 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58031" + "plane" "(1376 -1395 100) (1280 -1395 100) (1280 -1395 102)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[-1 0 0 23.998] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168299" + side + { + "id" "58042" + "plane" "(816 -1395 102) (816 -1360 102) (912 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58041" + "plane" "(816 -1360 100) (816 -1395 100) (912 -1395 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58040" + "plane" "(816 -1395 100) (816 -1360 100) (816 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[0 1 0 -0.0019989] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58039" + "plane" "(912 -1360 100) (912 -1395 100) (912 -1395 102)" + "material" "DEV/DEV_MEASUREGENERIC45" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 -1 -16] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58038" + "plane" "(816 -1360 100) (912 -1360 100) (912 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58037" + "plane" "(912 -1395 100) (816 -1395 100) (816 -1395 102)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168300" + side + { + "id" "58048" + "plane" "(912 -1395 102) (912 -1360 102) (976 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 32] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58047" + "plane" "(912 -1360 100) (912 -1395 100) (976 -1395 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58046" + "plane" "(912 -1395 100) (912 -1360 100) (912 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58045" + "plane" "(976 -1360 100) (976 -1395 100) (976 -1395 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58044" + "plane" "(912 -1360 100) (976 -1360 100) (976 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC30" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 96] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58043" + "plane" "(976 -1395 100) (912 -1395 100) (912 -1395 102)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168301" + side + { + "id" "58054" + "plane" "(976 -1395 102) (976 -1360 102) (1216 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58053" + "plane" "(976 -1360 100) (976 -1395 100) (1216 -1395 100)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 8] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58052" + "plane" "(976 -1395 100) (976 -1360 100) (976 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58051" + "plane" "(1216 -1360 100) (1216 -1395 100) (1216 -1395 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58050" + "plane" "(976 -1360 100) (1216 -1360 100) (1216 -1360 102)" + "material" "DEV/DEV_MEASUREGENERIC10" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 0 1 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58049" + "plane" "(1216 -1395 100) (976 -1395 100) (976 -1395 102)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168302" + side + { + "id" "58060" + "plane" "(1280 -1360 116) (1280 -1344 116) (1376 -1344 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58059" + "plane" "(1280 -1344 115) (1280 -1360 115) (1376 -1360 115)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58058" + "plane" "(1280 -1360 115) (1280 -1344 115) (1280 -1344 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58057" + "plane" "(1376 -1344 115) (1376 -1360 115) (1376 -1360 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58056" + "plane" "(1280 -1344 115) (1376 -1344 115) (1376 -1344 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58055" + "plane" "(1376 -1360 115) (1280 -1360 115) (1280 -1360 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168303" + side + { + "id" "58066" + "plane" "(1284 -1360 102) (1284 -1356 102) (1286 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58065" + "plane" "(1284 -1356 100) (1284 -1360 100) (1286 -1360 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58064" + "plane" "(1284 -1360 100) (1284 -1356 100) (1284 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58063" + "plane" "(1286 -1356 100) (1286 -1360 100) (1286 -1360 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58062" + "plane" "(1284 -1356 100) (1286 -1356 100) (1286 -1356 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58061" + "plane" "(1286 -1360 100) (1284 -1360 100) (1284 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168304" + side + { + "id" "58072" + "plane" "(1284 -1356 115) (1284 -1354 115) (1286 -1354 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58071" + "plane" "(1284 -1354 90) (1284 -1356 90) (1286 -1356 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58070" + "plane" "(1284 -1356 90) (1284 -1354 90) (1284 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58069" + "plane" "(1286 -1354 90) (1286 -1356 90) (1286 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58068" + "plane" "(1284 -1354 90) (1286 -1354 90) (1286 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58067" + "plane" "(1286 -1356 90) (1284 -1356 90) (1284 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168305" + side + { + "id" "58078" + "plane" "(1370 -1356 115) (1370 -1354 115) (1372 -1354 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58077" + "plane" "(1370 -1354 90) (1370 -1356 90) (1372 -1356 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58076" + "plane" "(1370 -1356 90) (1370 -1354 90) (1370 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58075" + "plane" "(1372 -1354 90) (1372 -1356 90) (1372 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58074" + "plane" "(1370 -1354 90) (1372 -1354 90) (1372 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58073" + "plane" "(1372 -1356 90) (1370 -1356 90) (1370 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168306" + side + { + "id" "58084" + "plane" "(1370 -1360 102) (1370 -1356 102) (1372 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58083" + "plane" "(1370 -1356 100) (1370 -1360 100) (1372 -1360 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58082" + "plane" "(1370 -1360 100) (1370 -1356 100) (1370 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58081" + "plane" "(1372 -1356 100) (1372 -1360 100) (1372 -1360 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58080" + "plane" "(1370 -1356 100) (1372 -1356 100) (1372 -1356 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58079" + "plane" "(1372 -1360 100) (1370 -1360 100) (1370 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168307" + side + { + "id" "58090" + "plane" "(976 -1360 116) (976 -1344 116) (1216 -1344 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58089" + "plane" "(976 -1344 115) (976 -1360 115) (1216 -1360 115)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58088" + "plane" "(976 -1360 115) (976 -1344 115) (976 -1344 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58087" + "plane" "(1216 -1344 115) (1216 -1360 115) (1216 -1360 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 0 -1 208] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58086" + "plane" "(976 -1344 115) (1216 -1344 115) (1216 -1344 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58085" + "plane" "(1216 -1360 115) (976 -1360 115) (976 -1360 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168308" + side + { + "id" "58096" + "plane" "(1062 -1360 102) (1062 -1356 102) (1064 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58095" + "plane" "(1062 -1356 100) (1062 -1360 100) (1064 -1360 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58094" + "plane" "(1062 -1360 100) (1062 -1356 100) (1062 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58093" + "plane" "(1064 -1356 100) (1064 -1360 100) (1064 -1360 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58092" + "plane" "(1062 -1356 100) (1064 -1356 100) (1064 -1356 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58091" + "plane" "(1064 -1360 100) (1062 -1360 100) (1062 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168309" + side + { + "id" "58102" + "plane" "(1062 -1356 115) (1062 -1354 115) (1064 -1354 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58101" + "plane" "(1062 -1354 90) (1062 -1356 90) (1064 -1356 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58100" + "plane" "(1062 -1356 90) (1062 -1354 90) (1062 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58099" + "plane" "(1064 -1354 90) (1064 -1356 90) (1064 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58098" + "plane" "(1062 -1354 90) (1064 -1354 90) (1064 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58097" + "plane" "(1064 -1356 90) (1062 -1356 90) (1062 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -8] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168310" + side + { + "id" "58108" + "plane" "(1210 -1356 115) (1210 -1354 115) (1212 -1354 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58107" + "plane" "(1210 -1354 90) (1210 -1356 90) (1212 -1356 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58106" + "plane" "(1210 -1356 90) (1210 -1354 90) (1210 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58105" + "plane" "(1212 -1354 90) (1212 -1356 90) (1212 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58104" + "plane" "(1210 -1354 90) (1212 -1354 90) (1212 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58103" + "plane" "(1212 -1356 90) (1210 -1356 90) (1210 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168311" + side + { + "id" "58114" + "plane" "(1210 -1360 102) (1210 -1356 102) (1212 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58113" + "plane" "(1210 -1356 100) (1210 -1360 100) (1212 -1360 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58112" + "plane" "(1210 -1360 100) (1210 -1356 100) (1210 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58111" + "plane" "(1212 -1356 100) (1212 -1360 100) (1212 -1360 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58110" + "plane" "(1210 -1356 100) (1212 -1356 100) (1212 -1356 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58109" + "plane" "(1212 -1360 100) (1210 -1360 100) (1210 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168312" + side + { + "id" "58120" + "plane" "(1144 -1360 102) (1144 -1356 102) (1146 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58119" + "plane" "(1144 -1356 100) (1144 -1360 100) (1146 -1360 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58118" + "plane" "(1144 -1360 100) (1144 -1356 100) (1144 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58117" + "plane" "(1146 -1356 100) (1146 -1360 100) (1146 -1360 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58116" + "plane" "(1144 -1356 100) (1146 -1356 100) (1146 -1356 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58115" + "plane" "(1146 -1360 100) (1144 -1360 100) (1144 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168313" + side + { + "id" "58126" + "plane" "(1144 -1356 115) (1144 -1354 115) (1146 -1354 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58125" + "plane" "(1144 -1354 90) (1144 -1356 90) (1146 -1356 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58124" + "plane" "(1144 -1356 90) (1144 -1354 90) (1144 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58123" + "plane" "(1146 -1354 90) (1146 -1356 90) (1146 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58122" + "plane" "(1144 -1354 90) (1146 -1354 90) (1146 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58121" + "plane" "(1146 -1356 90) (1144 -1356 90) (1144 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168314" + side + { + "id" "58132" + "plane" "(980 -1360 102) (980 -1356 102) (982 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58131" + "plane" "(980 -1356 100) (980 -1360 100) (982 -1360 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58130" + "plane" "(980 -1360 100) (980 -1356 100) (980 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58129" + "plane" "(982 -1356 100) (982 -1360 100) (982 -1360 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58128" + "plane" "(980 -1356 100) (982 -1356 100) (982 -1356 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58127" + "plane" "(982 -1360 100) (980 -1360 100) (980 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168315" + side + { + "id" "58138" + "plane" "(980 -1356 115) (980 -1354 115) (982 -1354 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58137" + "plane" "(980 -1354 90) (980 -1356 90) (982 -1356 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58136" + "plane" "(980 -1356 90) (980 -1354 90) (980 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58135" + "plane" "(982 -1354 90) (982 -1356 90) (982 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58134" + "plane" "(980 -1354 90) (982 -1354 90) (982 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58133" + "plane" "(982 -1356 90) (980 -1356 90) (980 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168316" + side + { + "id" "58144" + "plane" "(816 -1360 116) (816 -1344 116) (912 -1344 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58143" + "plane" "(816 -1344 115) (816 -1360 115) (912 -1360 115)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 1 0 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58142" + "plane" "(816 -1360 115) (816 -1344 115) (816 -1344 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58141" + "plane" "(912 -1344 115) (912 -1360 115) (912 -1360 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -932] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58140" + "plane" "(816 -1344 115) (912 -1344 115) (912 -1344 116)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58139" + "plane" "(912 -1360 115) (816 -1360 115) (816 -1360 116)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168317" + side + { + "id" "58150" + "plane" "(820 -1360 102) (820 -1356 102) (822 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58149" + "plane" "(820 -1356 100) (820 -1360 100) (822 -1360 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58148" + "plane" "(820 -1360 100) (820 -1356 100) (820 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58147" + "plane" "(822 -1356 100) (822 -1360 100) (822 -1360 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58146" + "plane" "(820 -1356 100) (822 -1356 100) (822 -1356 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58145" + "plane" "(822 -1360 100) (820 -1360 100) (820 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168318" + side + { + "id" "58156" + "plane" "(820 -1356 115) (820 -1354 115) (822 -1354 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58155" + "plane" "(820 -1354 90) (820 -1356 90) (822 -1356 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58154" + "plane" "(820 -1356 90) (820 -1354 90) (820 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58153" + "plane" "(822 -1354 90) (822 -1356 90) (822 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58152" + "plane" "(820 -1354 90) (822 -1354 90) (822 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58151" + "plane" "(822 -1356 90) (820 -1356 90) (820 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168319" + side + { + "id" "58162" + "plane" "(906 -1356 115) (906 -1354 115) (908 -1354 115)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58161" + "plane" "(906 -1354 90) (906 -1356 90) (908 -1356 90)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58160" + "plane" "(906 -1356 90) (906 -1354 90) (906 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58159" + "plane" "(908 -1354 90) (908 -1356 90) (908 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58158" + "plane" "(906 -1354 90) (908 -1354 90) (908 -1354 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58157" + "plane" "(908 -1356 90) (906 -1356 90) (906 -1356 115)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168320" + side + { + "id" "58168" + "plane" "(906 -1360 102) (906 -1356 102) (908 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 -1 0 20] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58167" + "plane" "(906 -1356 100) (906 -1360 100) (908 -1360 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58166" + "plane" "(906 -1360 100) (906 -1356 100) (906 -1356 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58165" + "plane" "(908 -1356 100) (908 -1360 100) (908 -1360 102)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58164" + "plane" "(906 -1356 100) (908 -1356 100) (908 -1356 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58163" + "plane" "(908 -1360 100) (906 -1360 100) (906 -1360 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -24] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168321" + side + { + "id" "58174" + "plane" "(816 -1395 112) (816 -1393 112) (1376 -1393 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58173" + "plane" "(816 -1393 102) (816 -1395 102) (1376 -1395 102)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58172" + "plane" "(816 -1395 102) (816 -1393 102) (816 -1393 112)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[0 -1 0 20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58171" + "plane" "(1376 -1393 102) (1376 -1395 102) (1376 -1395 112)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58170" + "plane" "(816 -1393 102) (1376 -1393 102) (1376 -1393 112)" + "material" "DEV/REFLECTIVITY_30B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58169" + "plane" "(1376 -1395 102) (816 -1395 102) (816 -1395 112)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTYELLOW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177401" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[500 -2268]" + } +} +hidden +{ + entity + { + "id" "168490" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1513 -1387 110" + editor + { + "color" "236 153 0" + "groupid" "168620" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +hidden +{ + entity + { + "id" "168521" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_32.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2025 -1387 110" + editor + { + "color" "236 153 0" + "groupid" "168606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +hidden +{ + entity + { + "id" "168552" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_end.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2059 -1387 110" + editor + { + "color" "236 153 0" + "groupid" "168606" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +entity +{ + "id" "169062" + "classname" "func_detail" + solid + { + "id" "168887" + side + { + "id" "59026" + "plane" "(816 -1396 100) (816 -1392 100) (820 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59025" + "plane" "(816 -1392 -14) (816 -1396 -14) (820 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59024" + "plane" "(816 -1396 -14) (816 -1392 -14) (816 -1392 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -56] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59023" + "plane" "(820 -1392 -14) (820 -1396 -14) (820 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59022" + "plane" "(816 -1392 -14) (820 -1392 -14) (820 -1392 100)" + "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" "59021" + "plane" "(820 -1396 -14) (816 -1396 -14) (816 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168915" + side + { + "id" "59032" + "plane" "(888 -1396 100) (888 -1392 100) (892 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59031" + "plane" "(888 -1392 -14) (888 -1396 -14) (892 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59030" + "plane" "(888 -1396 -14) (888 -1392 -14) (888 -1392 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -248] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59029" + "plane" "(892 -1392 -14) (892 -1396 -14) (892 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 103.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59028" + "plane" "(888 -1392 -14) (892 -1392 -14) (892 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59027" + "plane" "(892 -1396 -14) (888 -1396 -14) (888 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168920" + side + { + "id" "59038" + "plane" "(952 -1396 100) (952 -1392 100) (956 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59037" + "plane" "(952 -1392 -14) (952 -1396 -14) (956 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59036" + "plane" "(952 -1396 -14) (952 -1392 -14) (952 -1392 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59035" + "plane" "(956 -1392 -14) (956 -1396 -14) (956 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59034" + "plane" "(952 -1392 -14) (956 -1392 -14) (956 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59033" + "plane" "(956 -1396 -14) (952 -1396 -14) (952 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168921" + side + { + "id" "59044" + "plane" "(1016 -1396 100) (1016 -1392 100) (1020 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59043" + "plane" "(1016 -1392 -14) (1016 -1396 -14) (1020 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59042" + "plane" "(1016 -1396 -14) (1016 -1392 -14) (1016 -1392 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59041" + "plane" "(1020 -1392 -14) (1020 -1396 -14) (1020 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59040" + "plane" "(1016 -1392 -14) (1020 -1392 -14) (1020 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59039" + "plane" "(1020 -1396 -14) (1016 -1396 -14) (1016 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168923" + side + { + "id" "59050" + "plane" "(1080 -1396 100) (1080 -1392 100) (1084 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59049" + "plane" "(1080 -1392 -14) (1080 -1396 -14) (1084 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59048" + "plane" "(1080 -1396 -14) (1080 -1392 -14) (1080 -1392 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -248] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59047" + "plane" "(1084 -1392 -14) (1084 -1396 -14) (1084 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59046" + "plane" "(1080 -1392 -14) (1084 -1392 -14) (1084 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59045" + "plane" "(1084 -1396 -14) (1080 -1396 -14) (1080 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168925" + side + { + "id" "59056" + "plane" "(1144 -1396 100) (1144 -1392 100) (1148 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59055" + "plane" "(1144 -1392 -14) (1144 -1396 -14) (1148 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59054" + "plane" "(1144 -1396 -14) (1144 -1392 -14) (1144 -1392 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59053" + "plane" "(1148 -1392 -14) (1148 -1396 -14) (1148 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59052" + "plane" "(1144 -1392 -14) (1148 -1392 -14) (1148 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59051" + "plane" "(1148 -1396 -14) (1144 -1396 -14) (1144 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168926" + side + { + "id" "59062" + "plane" "(1208 -1396 100) (1208 -1392 100) (1212 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59061" + "plane" "(1208 -1392 -14) (1208 -1396 -14) (1212 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59060" + "plane" "(1208 -1396 -14) (1208 -1392 -14) (1208 -1392 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59059" + "plane" "(1212 -1392 -14) (1212 -1396 -14) (1212 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59058" + "plane" "(1208 -1392 -14) (1212 -1392 -14) (1212 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59057" + "plane" "(1212 -1396 -14) (1208 -1396 -14) (1208 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168928" + side + { + "id" "59068" + "plane" "(1272 -1396 100) (1272 -1392 100) (1276 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59067" + "plane" "(1272 -1392 -14) (1272 -1396 -14) (1276 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59066" + "plane" "(1272 -1396 -14) (1272 -1392 -14) (1272 -1392 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59065" + "plane" "(1276 -1392 -14) (1276 -1396 -14) (1276 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59064" + "plane" "(1272 -1392 -14) (1276 -1392 -14) (1276 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59063" + "plane" "(1276 -1396 -14) (1272 -1396 -14) (1272 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168929" + side + { + "id" "59074" + "plane" "(1336 -1396 100) (1336 -1392 100) (1340 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59073" + "plane" "(1336 -1392 -14) (1336 -1396 -14) (1340 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59072" + "plane" "(1336 -1396 -14) (1336 -1392 -14) (1336 -1392 100)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 -1 0 24] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59071" + "plane" "(1340 -1392 -14) (1340 -1396 -14) (1340 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59070" + "plane" "(1336 -1392 -14) (1340 -1392 -14) (1340 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59069" + "plane" "(1340 -1396 -14) (1336 -1396 -14) (1336 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "168886" + side + { + "id" "59080" + "plane" "(1372 -1396 100) (1372 -1392 100) (1376 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59079" + "plane" "(1372 -1392 -14) (1372 -1396 -14) (1376 -1396 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59078" + "plane" "(1372 -1396 -14) (1372 -1392 -14) (1372 -1392 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -216] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59077" + "plane" "(1376 -1392 -14) (1376 -1396 -14) (1376 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 119] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59076" + "plane" "(1372 -1392 -14) (1376 -1392 -14) (1376 -1392 100)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59075" + "plane" "(1376 -1396 -14) (1372 -1396 -14) (1372 -1396 100)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177009" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "169076" + "classname" "func_detail" + solid + { + "id" "4892034" + side + { + "id" "348979" + "plane" "(892 -1392 61) (1372 -1392 61) (1372 -1396 61)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 383] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348978" + "plane" "(892 -1396 57) (1372 -1396 57) (1372 -1392 57)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -472] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348977" + "plane" "(1372 -1392 57) (1372 -1396 57) (1372 -1396 61)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348976" + "plane" "(892 -1392 57) (1372 -1392 57) (1372 -1392 61)" + "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" "348975" + "plane" "(1372 -1396 57) (892 -1396 57) (892 -1396 61)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348974" + "plane" "(892 -1396 57) (892 -1392 57) (892 -1392 61)" + "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" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892027" + side + { + "id" "348967" + "plane" "(892 -1392 22) (1372 -1392 22) (1372 -1396 22)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348966" + "plane" "(892 -1396 18) (1372 -1396 18) (1372 -1392 18)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348965" + "plane" "(1372 -1392 18) (1372 -1396 18) (1372 -1396 22)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -24] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348964" + "plane" "(892 -1392 18) (1372 -1392 18) (1372 -1392 22)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348963" + "plane" "(1372 -1396 18) (892 -1396 18) (892 -1396 22)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348962" + "plane" "(892 -1396 18) (892 -1392 18) (892 -1392 22)" + "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" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892026" + side + { + "id" "348961" + "plane" "(820 -1396 22) (820 -1392 22) (888 -1392 22)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348960" + "plane" "(820 -1392 18) (820 -1396 18) (888 -1396 18)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[-1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348959" + "plane" "(820 -1396 18) (820 -1392 18) (820 -1392 22)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348958" + "plane" "(820 -1392 18) (888 -1392 18) (888 -1392 22)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 4] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348957" + "plane" "(888 -1396 18) (820 -1396 18) (820 -1396 22)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348956" + "plane" "(888 -1392 18) (888 -1396 18) (888 -1396 22)" + "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" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892033" + side + { + "id" "348973" + "plane" "(820 -1396 61) (820 -1392 61) (888 -1392 61)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 383] 0.125" + "vaxis" "[1 0 0 -2] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348972" + "plane" "(820 -1392 57) (820 -1396 57) (888 -1396 57)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -472] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348971" + "plane" "(820 -1396 57) (820 -1392 57) (820 -1392 61)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348970" + "plane" "(820 -1392 57) (888 -1392 57) (888 -1392 61)" + "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" "348969" + "plane" "(888 -1396 57) (820 -1396 57) (820 -1396 61)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "348968" + "plane" "(888 -1392 57) (888 -1396 57) (888 -1396 61)" + "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" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177009" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "169080" + "classname" "func_detail" + solid + { + "id" "169132" + side + { + "id" "59218" + "plane" "(816 -1329 76) (816 -1325 76) (820 -1325 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59217" + "plane" "(816 -1325 -14) (816 -1325 76) (816 -1329 76)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59216" + "plane" "(820 -1329 -14) (820 -1329 76) (820 -1325 76)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59215" + "plane" "(820 -1325 -14) (820 -1325 76) (816 -1325 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59214" + "plane" "(816 -1329 -14) (816 -1329 76) (820 -1329 76)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59213" + "plane" "(816 -1325 -14) (816 -1329 -14) (820 -1329 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169133" + side + { + "id" "59224" + "plane" "(888 -1329 76) (888 -1325 76) (892 -1325 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59223" + "plane" "(888 -1325 -14) (888 -1325 76) (888 -1329 76)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -224] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59222" + "plane" "(892 -1329 -14) (892 -1329 76) (892 -1325 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59221" + "plane" "(892 -1325 -14) (892 -1325 76) (888 -1325 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59220" + "plane" "(888 -1329 -14) (888 -1329 76) (892 -1329 76)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59219" + "plane" "(888 -1325 -14) (888 -1329 -14) (892 -1329 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169140" + side + { + "id" "59266" + "plane" "(1336 -1329 76) (1336 -1325 76) (1340 -1325 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59265" + "plane" "(1336 -1325 -14) (1336 -1325 76) (1336 -1329 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59264" + "plane" "(1340 -1329 -14) (1340 -1329 76) (1340 -1325 76)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 79.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59263" + "plane" "(1340 -1325 -14) (1340 -1325 76) (1336 -1325 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59262" + "plane" "(1336 -1329 -14) (1336 -1329 76) (1340 -1329 76)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59261" + "plane" "(1336 -1325 -14) (1336 -1329 -14) (1340 -1329 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169141" + side + { + "id" "59272" + "plane" "(1372 -1329 76) (1372 -1325 76) (1376 -1325 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 36] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59271" + "plane" "(1372 -1325 -14) (1372 -1325 76) (1372 -1329 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59270" + "plane" "(1376 -1329 -14) (1376 -1329 76) (1376 -1325 76)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 50] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59269" + "plane" "(1376 -1325 -14) (1376 -1325 76) (1372 -1325 76)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59268" + "plane" "(1372 -1329 -14) (1372 -1329 76) (1376 -1329 76)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59267" + "plane" "(1372 -1325 -14) (1372 -1329 -14) (1376 -1329 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177009" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "169142" + "classname" "func_detail" + solid + { + "id" "169397" + side + { + "id" "59758" + "plane" "(816 -1263 52) (816 -1259 52) (820 -1259 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59757" + "plane" "(816 -1259 -14) (816 -1259 52) (816 -1263 52)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59756" + "plane" "(820 -1263 -14) (820 -1263 52) (820 -1259 52)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59755" + "plane" "(820 -1259 -14) (820 -1259 52) (816 -1259 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59754" + "plane" "(816 -1263 -14) (816 -1263 52) (820 -1263 52)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59753" + "plane" "(816 -1259 -14) (816 -1263 -14) (820 -1263 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169406" + side + { + "id" "59812" + "plane" "(1372 -1263 52) (1372 -1259 52) (1376 -1259 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59811" + "plane" "(1372 -1259 -14) (1372 -1259 52) (1372 -1263 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59810" + "plane" "(1376 -1263 -14) (1376 -1263 52) (1376 -1259 52)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 50] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59809" + "plane" "(1376 -1259 -14) (1376 -1259 52) (1372 -1259 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59808" + "plane" "(1372 -1263 -14) (1372 -1263 52) (1376 -1263 52)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59807" + "plane" "(1372 -1259 -14) (1372 -1263 -14) (1376 -1263 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169405" + side + { + "id" "59806" + "plane" "(1336 -1263 52) (1336 -1259 52) (1340 -1259 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 44] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59805" + "plane" "(1336 -1259 -14) (1336 -1259 52) (1336 -1263 52)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59804" + "plane" "(1340 -1263 -14) (1340 -1263 52) (1340 -1259 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59803" + "plane" "(1340 -1259 -14) (1340 -1259 52) (1336 -1259 52)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59802" + "plane" "(1336 -1263 -14) (1336 -1263 52) (1340 -1263 52)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59801" + "plane" "(1336 -1259 -14) (1336 -1263 -14) (1340 -1263 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177009" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "169164" + "classname" "func_detail" + solid + { + "id" "169387" + side + { + "id" "59698" + "plane" "(816 -1197 28) (816 -1193 28) (820 -1193 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59697" + "plane" "(816 -1193 -14) (816 -1193 28) (816 -1197 28)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59696" + "plane" "(820 -1197 -14) (820 -1197 28) (820 -1193 28)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59695" + "plane" "(820 -1193 -14) (820 -1193 28) (816 -1193 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59694" + "plane" "(816 -1197 -14) (816 -1197 28) (820 -1197 28)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59693" + "plane" "(816 -1193 -14) (816 -1197 -14) (820 -1197 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169395" + side + { + "id" "59746" + "plane" "(1336 -1197 28) (1336 -1193 28) (1340 -1193 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59745" + "plane" "(1336 -1193 -14) (1336 -1193 28) (1336 -1197 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" "59744" + "plane" "(1340 -1197 -14) (1340 -1197 28) (1340 -1193 28)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 47.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59743" + "plane" "(1340 -1193 -14) (1340 -1193 28) (1336 -1193 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59742" + "plane" "(1336 -1197 -14) (1336 -1197 28) (1340 -1197 28)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59741" + "plane" "(1336 -1193 -14) (1336 -1197 -14) (1340 -1197 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169396" + side + { + "id" "59752" + "plane" "(1372 -1197 28) (1372 -1193 28) (1376 -1193 28)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 52] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59751" + "plane" "(1372 -1193 -14) (1372 -1193 28) (1372 -1197 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" "59750" + "plane" "(1376 -1197 -14) (1376 -1197 28) (1376 -1193 28)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 50] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59749" + "plane" "(1376 -1193 -14) (1376 -1193 28) (1372 -1193 28)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59748" + "plane" "(1372 -1197 -14) (1372 -1197 28) (1376 -1197 28)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59747" + "plane" "(1372 -1193 -14) (1372 -1197 -14) (1376 -1197 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177009" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "169186" + "classname" "func_detail" + solid + { + "id" "169377" + side + { + "id" "59638" + "plane" "(816 -1131 4) (816 -1127 4) (820 -1127 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59637" + "plane" "(816 -1127 -14) (816 -1127 4) (816 -1131 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59636" + "plane" "(820 -1131 -14) (820 -1131 4) (820 -1127 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59635" + "plane" "(820 -1127 -14) (820 -1127 4) (816 -1127 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59634" + "plane" "(816 -1131 -14) (816 -1131 4) (820 -1131 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59633" + "plane" "(816 -1127 -14) (816 -1131 -14) (820 -1131 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169385" + side + { + "id" "59686" + "plane" "(1336 -1131 4) (1336 -1127 4) (1340 -1127 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59685" + "plane" "(1336 -1127 -14) (1336 -1127 4) (1336 -1131 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59684" + "plane" "(1340 -1131 -14) (1340 -1131 4) (1340 -1127 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -28] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59683" + "plane" "(1340 -1127 -14) (1340 -1127 4) (1336 -1127 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59682" + "plane" "(1336 -1131 -14) (1336 -1131 4) (1340 -1131 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59681" + "plane" "(1336 -1127 -14) (1336 -1131 -14) (1340 -1131 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169386" + side + { + "id" "59692" + "plane" "(1372 -1131 4) (1372 -1127 4) (1376 -1127 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59691" + "plane" "(1372 -1127 -14) (1372 -1127 4) (1372 -1131 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 112] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59690" + "plane" "(1376 -1131 -14) (1376 -1131 4) (1376 -1127 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 50] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59689" + "plane" "(1376 -1127 -14) (1376 -1127 4) (1372 -1127 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59688" + "plane" "(1372 -1131 -14) (1372 -1131 4) (1376 -1131 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59687" + "plane" "(1372 -1127 -14) (1372 -1131 -14) (1376 -1131 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169384" + side + { + "id" "59680" + "plane" "(1272 -1131 4) (1272 -1127 4) (1276 -1127 4)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 -1 0 60] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59679" + "plane" "(1272 -1127 -14) (1272 -1127 4) (1272 -1131 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 -1 0 80] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59678" + "plane" "(1276 -1131 -14) (1276 -1131 4) (1276 -1127 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[0 1 0 31.998] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59677" + "plane" "(1276 -1127 -14) (1276 -1127 4) (1272 -1127 4)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 16] 0.25" + "vaxis" "[0 0 -1 -24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59676" + "plane" "(1272 -1131 -14) (1272 -1131 4) (1276 -1131 4)" + "material" "DE_NUKE/HR_NUKE/HR_METAL_TRIM_001" + "uaxis" "[0 0 1 -16] 0.125" + "vaxis" "[1 0 0 -24] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59675" + "plane" "(1272 -1127 -14) (1272 -1131 -14) (1276 -1131 -14)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 24] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177009" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 6500]" + } +} +entity +{ + "id" "169466" + "classname" "func_detail" + solid + { + "id" "169467" + side + { + "id" "59932" + "plane" "(820 -1329 50) (820 -1325 50) (1372 -1325 50)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 272] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59931" + "plane" "(820 -1325 46) (820 -1329 46) (1372 -1329 46)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -32] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59930" + "plane" "(820 -1329 46) (820 -1325 46) (820 -1325 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59929" + "plane" "(1372 -1325 46) (1372 -1329 46) (1372 -1329 50)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -12] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59928" + "plane" "(820 -1325 46) (1372 -1325 46) (1372 -1325 50)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59927" + "plane" "(1372 -1329 46) (820 -1329 46) (820 -1329 50)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 504] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "169468" + side + { + "id" "59938" + "plane" "(820 -1329 11) (820 -1325 11) (1372 -1325 11)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 504] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59937" + "plane" "(820 -1325 7) (820 -1329 7) (1372 -1329 7)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -360] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59936" + "plane" "(820 -1329 7) (820 -1325 7) (820 -1325 11)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59935" + "plane" "(1372 -1325 7) (1372 -1329 7) (1372 -1329 11)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 -8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59934" + "plane" "(820 -1325 7) (1372 -1325 7) (1372 -1325 11)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59933" + "plane" "(1372 -1329 7) (820 -1329 7) (820 -1329 11)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177009" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "169531" + "classname" "func_detail" + solid + { + "id" "169532" + side + { + "id" "60058" + "plane" "(820 -1263 21) (820 -1259 21) (1372 -1259 21)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 72] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60057" + "plane" "(820 -1259 17) (820 -1263 17) (1372 -1263 17)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -280] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60056" + "plane" "(820 -1263 17) (820 -1259 17) (820 -1259 21)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60055" + "plane" "(1372 -1259 17) (1372 -1263 17) (1372 -1263 21)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60054" + "plane" "(820 -1259 17) (1372 -1259 17) (1372 -1259 21)" + "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" "60053" + "plane" "(1372 -1263 17) (820 -1263 17) (820 -1263 21)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177009" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +entity +{ + "id" "169537" + "classname" "func_detail" + solid + { + "id" "169538" + side + { + "id" "60076" + "plane" "(820 -1197 9) (820 -1193 9) (1376 -1193 9)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 1 0 72] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60075" + "plane" "(820 -1193 5) (820 -1197 5) (1376 -1197 5)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 -1 0 -263.997] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60074" + "plane" "(820 -1197 5) (820 -1193 5) (820 -1193 9)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 20] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60073" + "plane" "(1376 -1193 5) (1376 -1197 5) (1376 -1197 9)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 -20] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60072" + "plane" "(820 -1193 5) (1376 -1193 5) (1376 -1193 9)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "60071" + "plane" "(1376 -1197 5) (820 -1197 5) (820 -1197 9)" + "material" "METAL/HR_METAL/HR_SECURITY_BARRIER_COLOR" + "uaxis" "[0 0 1 -455.998] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "152 225 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "152 225 0" + "groupid" "177009" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 7000]" + } +} +hidden +{ + entity + { + "id" "170420" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "656 -952 -16" + editor + { + "color" "181 118 0" + "groupid" "170410" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +hidden +{ + entity + { + "id" "170494" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_railing_001/metal_railing_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1168 -952 -16" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[500 -1768]" + } + } +} +entity +{ + "id" "174078" + "classname" "func_detail" + solid + { + "id" "4892647" + side + { + "id" "349063" + "plane" "(1024 -4784 160) (1024 -5045.01 160) (1184 -5045.01 160)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[-1 0 0 60] 0.125" + "vaxis" "[0 -1 0 -332] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "349062" + "plane" "(1024 -5045.01 165) (1024 -5045.01 160) (1024 -4784 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349061" + "plane" "(1184 -4784 165) (1184 -4784 160) (1184 -5045.01 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" "349060" + "plane" "(1024 -4784 165) (1024 -4784 160) (1184 -4784 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" "349059" + "plane" "(1184 -5045.01 165) (1184 -5045.01 160) (1024 -5045.01 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" "349058" + "plane" "(1024 -5045.01 165) (1024 -4784 165) (1184 -4784 165)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892645" + side + { + "id" "349051" + "plane" "(1024 -5045.01 160) (1024 -5296 160) (1184 -5296 160)" + "material" "METAL/HR_METAL/HR_METAL_CORRUGATED_003" + "uaxis" "[-1 0 0 60] 0.125" + "vaxis" "[0 -1 0 -332] 0.125" + "rotation" "0" + "lightmapscale" "8" + "smoothing_groups" "0" + } + side + { + "id" "349050" + "plane" "(1024 -5296 165) (1024 -5296 160) (1024 -5045.01 160)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349049" + "plane" "(1184 -5045.01 165) (1184 -5045.01 160) (1184 -5296 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" "349048" + "plane" "(1024 -5045.01 165) (1024 -5045.01 160) (1184 -5045.01 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" "349047" + "plane" "(1184 -5296 165) (1184 -5296 160) (1024 -5296 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" "349046" + "plane" "(1024 -5296 165) (1024 -5045.01 165) (1184 -5045.01 165)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892663" + side + { + "id" "349099" + "plane" "(1024 -5296 235) (1024 -5296 165) (1024 -5045.01 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 120] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349098" + "plane" "(1184 -5045.01 235) (1184 -5045.01 165) (1184 -5296 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349097" + "plane" "(1024 -5045.01 235) (1024 -5045.01 165) (1184 -5045.01 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349096" + "plane" "(1184 -5296 235) (1184 -5296 165) (1024 -5296 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349095" + "plane" "(1024 -5045.01 165) (1024 -5296 165) (1184 -5296 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349094" + "plane" "(1024 -5296 235) (1024 -5045.01 235) (1184 -5045.01 235)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892665" + side + { + "id" "349111" + "plane" "(1024 -5045.01 235) (1024 -5045.01 165) (1024 -4784 165)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLUE" + "uaxis" "[0 -1 0 120] 0.063" + "vaxis" "[0 0 -1 -20] 0.102" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349110" + "plane" "(1184 -4784 235) (1184 -4784 165) (1184 -5045.01 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349109" + "plane" "(1024 -4784 235) (1024 -4784 165) (1184 -4784 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349108" + "plane" "(1184 -5045.01 235) (1184 -5045.01 165) (1024 -5045.01 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349107" + "plane" "(1024 -4784 165) (1024 -5045.01 165) (1184 -5045.01 165)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349106" + "plane" "(1024 -5045.01 235) (1024 -4784 235) (1184 -4784 235)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892662" + side + { + "id" "349093" + "plane" "(1024 -5296 240) (1024 -5045.01 240) (1184 -5045.01 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" "349092" + "plane" "(1024 -5045.01 235) (1024 -5045.01 240) (1024 -5296 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349091" + "plane" "(1184 -5296 235) (1184 -5296 240) (1184 -5045.01 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" "349090" + "plane" "(1184 -5045.01 235) (1184 -5045.01 240) (1024 -5045.01 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" "349089" + "plane" "(1024 -5296 235) (1024 -5296 240) (1184 -5296 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" "349088" + "plane" "(1024 -5045.01 235) (1024 -5296 235) (1184 -5296 235)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "4892664" + side + { + "id" "349105" + "plane" "(1024 -5045.01 240) (1024 -4784 240) (1184 -4784 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" "349104" + "plane" "(1024 -4784 235) (1024 -4784 240) (1024 -5045.01 240)" + "material" "DE_DUST/HR_DUST/HR_DUST_METAL_TRIM_01" + "uaxis" "[0 -1 0 -299] 0.125" + "vaxis" "[0 0 -1 -17] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "349103" + "plane" "(1184 -5045.01 235) (1184 -5045.01 240) (1184 -4784 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" "349102" + "plane" "(1184 -4784 235) (1184 -4784 240) (1024 -4784 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" "349101" + "plane" "(1024 -5045.01 235) (1024 -5045.01 240) (1184 -5045.01 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" "349100" + "plane" "(1024 -4784 235) (1024 -5045.01 235) (1184 -5045.01 235)" + "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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 0]" + } +} +entity +{ + "id" "174198" + "classname" "func_detail" + solid + { + "id" "3839762" + side + { + "id" "337669" + "plane" "(1054 -5378 0) (1054 -5390 0) (1088 -5390 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" "337668" + "plane" "(1054 -5390 16) (1054 -5390 0) (1054 -5378 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" "337667" + "plane" "(1088 -5378 16) (1088 -5378 0) (1088 -5390 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 471.996] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337666" + "plane" "(1054 -5378 16) (1054 -5378 0) (1088 -5378 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 -24] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337665" + "plane" "(1088 -5390 16) (1088 -5390 0) (1054 -5390 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[1 0 0 -791.988] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337664" + "plane" "(1054 -5390 16) (1054 -5378 16) (1088 -5378 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839568" + side + { + "id" "337639" + "plane" "(1042 -5378 0) (1042 -5667 0) (1054 -5667 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" "337638" + "plane" "(1042 -5667 88) (1042 -5667 0) (1042 -5378 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 -1 0 -664] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337637" + "plane" "(1054 -5378 88) (1054 -5378 0) (1054 -5667 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[0 1 0 616] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337636" + "plane" "(1042 -5378 88) (1042 -5378 0) (1054 -5378 0)" + "material" "BRICK/HR_BRICK/VENICE/VENICE_BRICK_GROUND_1" + "uaxis" "[-1 0 0 487.988] 0.125" + "vaxis" "[0 0 -1 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337635" + "plane" "(1054 -5667 88) (1054 -5667 0) (1042 -5667 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" "337634" + "plane" "(1042 -5667 88) (1042 -5378 88) (1054 -5378 88)" + "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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839567" + side + { + "id" "337633" + "plane" "(1040 -5376 96) (1056 -5376 96) (1056 -5667 96)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 38] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337632" + "plane" "(1040 -5376 96) (1040 -5667 96) (1040 -5667 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 381.999] 0.125" + "vaxis" "[0 -1 0 38] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337631" + "plane" "(1056 -5667 96) (1056 -5376 96) (1056 -5376 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 -1 1022] 0.125" + "vaxis" "[0 -1 0 38] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337630" + "plane" "(1056 -5376 96) (1040 -5376 96) (1040 -5376 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 0 1 381.999] 0.125" + "vaxis" "[-1 0 0 165.988] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337629" + "plane" "(1040 -5667 96) (1056 -5667 96) (1056 -5667 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" + } + side + { + "id" "337628" + "plane" "(1040 -5667 88) (1056 -5667 88) (1056 -5376 88)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[1 0 0 -2] 0.125" + "vaxis" "[0 -1 0 38] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "3839761" + side + { + "id" "337663" + "plane" "(1054 -5392 24) (1054 -5392 16) (1054 -5376 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 382] 0.125" + "vaxis" "[0 0 -1 518] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337662" + "plane" "(1090 -5376 24) (1090 -5376 16) (1090 -5392 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[0 1 0 877.996] 0.125" + "vaxis" "[0 0 -1 710] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337661" + "plane" "(1054 -5376 24) (1054 -5376 16) (1090 -5376 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 382] 0.125" + "vaxis" "[0 0 -1 710] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337660" + "plane" "(1090 -5392 24) (1090 -5392 16) (1054 -5392 16)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 382] 0.125" + "vaxis" "[0 0 1 -825.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337659" + "plane" "(1054 -5392 24) (1054 -5376 24) (1090 -5376 24)" + "material" "TILE/HR_T/INFERNO/TILE_B" + "uaxis" "[-1 0 0 382] 0.125" + "vaxis" "[0 1 0 517.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "337658" + "plane" "(1054 -5376 16) (1054 -5392 16) (1090 -5392 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" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[2000 500]" + } +} +hidden +{ + entity + { + "id" "153451" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_bell_light_cable32.mdl" + "renderamt" "255" + "rendercolor" "96 96 96" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "36 -2581 461" + editor + { + "color" "222 171 0" + "groupid" "153450" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 16000]" + } + } +} +entity +{ + "id" "143217" + "classname" "func_detail" + solid + { + "id" "1332480" + side + { + "id" "255706" + "plane" "(8 -4608 0) (8 -4593 0) (240 -4593 0)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255705" + "plane" "(8 -4592 -8) (8 -4608 -8) (240 -4608 -8)" + "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" "255704" + "plane" "(8 -4608 -8) (8 -4592 -8) (8 -4592 -1)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255703" + "plane" "(240 -4592 -8) (240 -4608 -8) (240 -4608 0)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255702" + "plane" "(8 -4592 -8) (240 -4592 -8) (240 -4592 -1)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255701" + "plane" "(240 -4608 -8) (8 -4608 -8) (8 -4608 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" + } + side + { + "id" "255700" + "plane" "(240 -4592 -1) (240 -4593 0) (8 -4593 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332485" + side + { + "id" "255713" + "plane" "(8 -4592 -8) (8 -4577 -8) (240 -4577 -8)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255712" + "plane" "(8 -4576 -16) (8 -4592 -16) (240 -4592 -16)" + "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" "255711" + "plane" "(8 -4592 -16) (8 -4576 -16) (8 -4576 -9)" + "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" "255710" + "plane" "(240 -4576 -16) (240 -4592 -16) (240 -4592 -8)" + "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" "255709" + "plane" "(8 -4576 -16) (240 -4576 -16) (240 -4576 -9)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255708" + "plane" "(240 -4592 -16) (8 -4592 -16) (8 -4592 -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" "255707" + "plane" "(240 -4576 -9) (240 -4577 -8) (8 -4577 -8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332489" + side + { + "id" "255720" + "plane" "(8 -4576 -16) (8 -4561 -16) (240 -4561 -16)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255719" + "plane" "(8 -4560 -24) (8 -4576 -24) (240 -4576 -24)" + "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" "255718" + "plane" "(8 -4576 -24) (8 -4560 -24) (8 -4560 -17)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255717" + "plane" "(240 -4560 -24) (240 -4576 -24) (240 -4576 -16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255716" + "plane" "(8 -4560 -24) (240 -4560 -24) (240 -4560 -17)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255715" + "plane" "(240 -4576 -24) (8 -4576 -24) (8 -4576 -16)" + "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" "255714" + "plane" "(240 -4560 -17) (240 -4561 -16) (8 -4561 -16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332493" + side + { + "id" "255727" + "plane" "(8 -4560 -24) (8 -4545 -24) (240 -4545 -24)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255726" + "plane" "(8 -4544 -32) (8 -4560 -32) (240 -4560 -32)" + "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" "255725" + "plane" "(8 -4560 -32) (8 -4544 -32) (8 -4544 -25)" + "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" "255724" + "plane" "(240 -4544 -32) (240 -4560 -32) (240 -4560 -24)" + "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" "255723" + "plane" "(8 -4544 -32) (240 -4544 -32) (240 -4544 -25)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255722" + "plane" "(240 -4560 -32) (8 -4560 -32) (8 -4560 -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" "255721" + "plane" "(240 -4544 -25) (240 -4545 -24) (8 -4545 -24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332497" + side + { + "id" "255734" + "plane" "(8 -4544 -32) (8 -4529 -32) (240 -4529 -32)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255733" + "plane" "(8 -4528 -40) (8 -4544 -40) (240 -4544 -40)" + "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" "255732" + "plane" "(8 -4544 -40) (8 -4528 -40) (8 -4528 -33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255731" + "plane" "(240 -4528 -40) (240 -4544 -40) (240 -4544 -32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255730" + "plane" "(8 -4528 -40) (240 -4528 -40) (240 -4528 -33)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255729" + "plane" "(240 -4544 -40) (8 -4544 -40) (8 -4544 -32)" + "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" "255728" + "plane" "(240 -4528 -33) (240 -4529 -32) (8 -4529 -32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332501" + side + { + "id" "255741" + "plane" "(8 -4528 -40) (8 -4513 -40) (240 -4513 -40)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255740" + "plane" "(8 -4512 -48) (8 -4528 -48) (240 -4528 -48)" + "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" "255739" + "plane" "(8 -4528 -48) (8 -4512 -48) (8 -4512 -41)" + "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" "255738" + "plane" "(240 -4512 -48) (240 -4528 -48) (240 -4528 -40)" + "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" "255737" + "plane" "(8 -4512 -48) (240 -4512 -48) (240 -4512 -41)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255736" + "plane" "(240 -4528 -48) (8 -4528 -48) (8 -4528 -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" "255735" + "plane" "(240 -4512 -41) (240 -4513 -40) (8 -4513 -40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332505" + side + { + "id" "255748" + "plane" "(8 -4512 -48) (8 -4497 -48) (240 -4497 -48)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255747" + "plane" "(8 -4496 -56) (8 -4512 -56) (240 -4512 -56)" + "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" "255746" + "plane" "(8 -4512 -56) (8 -4496 -56) (8 -4496 -49)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255745" + "plane" "(240 -4496 -56) (240 -4512 -56) (240 -4512 -48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255744" + "plane" "(8 -4496 -56) (240 -4496 -56) (240 -4496 -49)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255743" + "plane" "(240 -4512 -56) (8 -4512 -56) (8 -4512 -48)" + "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" "255742" + "plane" "(240 -4496 -49) (240 -4497 -48) (8 -4497 -48)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332509" + side + { + "id" "255755" + "plane" "(8 -4496 -56) (8 -4481 -56) (240 -4481 -56)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255754" + "plane" "(8 -4480 -64) (8 -4496 -64) (240 -4496 -64)" + "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" "255753" + "plane" "(8 -4496 -64) (8 -4480 -64) (8 -4480 -57)" + "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" "255752" + "plane" "(240 -4480 -64) (240 -4496 -64) (240 -4496 -56)" + "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" "255751" + "plane" "(8 -4480 -64) (240 -4480 -64) (240 -4480 -57)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255750" + "plane" "(240 -4496 -64) (8 -4496 -64) (8 -4496 -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" "255749" + "plane" "(240 -4480 -57) (240 -4481 -56) (8 -4481 -56)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332515" + side + { + "id" "255762" + "plane" "(8 -4480 -64) (8 -4465 -64) (240 -4465 -64)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255761" + "plane" "(8 -4464 -72) (8 -4480 -72) (240 -4480 -72)" + "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" "255760" + "plane" "(8 -4480 -72) (8 -4464 -72) (8 -4464 -65)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255759" + "plane" "(240 -4464 -72) (240 -4480 -72) (240 -4480 -64)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255758" + "plane" "(8 -4464 -72) (240 -4464 -72) (240 -4464 -65)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255757" + "plane" "(240 -4480 -72) (8 -4480 -72) (8 -4480 -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" "255756" + "plane" "(240 -4464 -65) (240 -4465 -64) (8 -4465 -64)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332519" + side + { + "id" "255769" + "plane" "(8 -4464 -72) (8 -4449 -72) (240 -4449 -72)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255768" + "plane" "(8 -4448 -80) (8 -4464 -80) (240 -4464 -80)" + "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" "255767" + "plane" "(8 -4464 -80) (8 -4448 -80) (8 -4448 -73)" + "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" "255766" + "plane" "(240 -4448 -80) (240 -4464 -80) (240 -4464 -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" "255765" + "plane" "(8 -4448 -80) (240 -4448 -80) (240 -4448 -73)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255764" + "plane" "(240 -4464 -80) (8 -4464 -80) (8 -4464 -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" "255763" + "plane" "(240 -4448 -73) (240 -4449 -72) (8 -4449 -72)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332525" + side + { + "id" "255776" + "plane" "(8 -4448 -80) (8 -4433 -80) (240 -4433 -80)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255775" + "plane" "(8 -4432 -88) (8 -4448 -88) (240 -4448 -88)" + "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" "255774" + "plane" "(8 -4448 -88) (8 -4432 -88) (8 -4432 -81)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255773" + "plane" "(240 -4432 -88) (240 -4448 -88) (240 -4448 -80)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255772" + "plane" "(8 -4432 -88) (240 -4432 -88) (240 -4432 -81)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255771" + "plane" "(240 -4448 -88) (8 -4448 -88) (8 -4448 -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" "255770" + "plane" "(240 -4432 -81) (240 -4433 -80) (8 -4433 -80)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332529" + side + { + "id" "255783" + "plane" "(8 -4432 -88) (8 -4417 -88) (240 -4417 -88)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255782" + "plane" "(8 -4416 -96) (8 -4432 -96) (240 -4432 -96)" + "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" "255781" + "plane" "(8 -4432 -96) (8 -4416 -96) (8 -4416 -89)" + "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" "255780" + "plane" "(240 -4416 -96) (240 -4432 -96) (240 -4432 -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" "255779" + "plane" "(8 -4416 -96) (240 -4416 -96) (240 -4416 -89)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[-1 0 0 -12] 0.25" + "vaxis" "[0 0 -1 8] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255778" + "plane" "(240 -4432 -96) (8 -4432 -96) (8 -4432 -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" + } + side + { + "id" "255777" + "plane" "(240 -4416 -89) (240 -4417 -88) (8 -4417 -88)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 -95] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -15268]" + } +} +entity +{ + "id" "143273" + "classname" "func_detail" + solid + { + "id" "1332218" + side + { + "id" "255619" + "plane" "(-11 -4120 -96) (0 -4120 -96) (0 -4376 -96)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255618" + "plane" "(-12 -4120 -104) (-12 -4376 -104) (0 -4376 -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" + } + side + { + "id" "255617" + "plane" "(-12 -4376 -104) (-12 -4120 -104) (-12 -4120 -97)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255616" + "plane" "(0 -4120 -104) (0 -4376 -104) (0 -4376 -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" "255615" + "plane" "(-12 -4120 -104) (0 -4120 -104) (0 -4120 -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" "255614" + "plane" "(0 -4376 -104) (-12 -4376 -104) (-12 -4376 -97)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255613" + "plane" "(-12 -4376 -97) (-12 -4120 -97) (-11 -4120 -96)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332215" + side + { + "id" "255612" + "plane" "(-23 -4120 -104) (-12 -4120 -104) (-12 -4376 -104)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255611" + "plane" "(-24 -4120 -112) (-24 -4376 -112) (-12 -4376 -112)" + "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" "255610" + "plane" "(-24 -4376 -112) (-24 -4120 -112) (-24 -4120 -105)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255609" + "plane" "(-12 -4120 -112) (-12 -4376 -112) (-12 -4376 -104)" + "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" "255608" + "plane" "(-24 -4120 -112) (-12 -4120 -112) (-12 -4120 -104)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255607" + "plane" "(-12 -4376 -112) (-24 -4376 -112) (-24 -4376 -105)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255606" + "plane" "(-24 -4376 -105) (-24 -4120 -105) (-23 -4120 -104)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332193" + side + { + "id" "255591" + "plane" "(-59 -4120 -128) (-48 -4120 -128) (-48 -4376 -128)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255590" + "plane" "(-60 -4120 -136) (-60 -4376 -136) (-48 -4376 -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" "255589" + "plane" "(-60 -4376 -136) (-60 -4120 -136) (-60 -4120 -129)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255588" + "plane" "(-48 -4120 -136) (-48 -4376 -136) (-48 -4376 -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" "255587" + "plane" "(-60 -4120 -136) (-48 -4120 -136) (-48 -4120 -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" "255586" + "plane" "(-48 -4376 -136) (-60 -4376 -136) (-60 -4376 -129)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255585" + "plane" "(-60 -4376 -129) (-60 -4120 -129) (-59 -4120 -128)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332196" + side + { + "id" "255598" + "plane" "(-47 -4120 -120) (-36 -4120 -120) (-36 -4376 -120)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255597" + "plane" "(-48 -4120 -128) (-48 -4376 -128) (-36 -4376 -128)" + "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" "255596" + "plane" "(-48 -4376 -128) (-48 -4120 -128) (-48 -4120 -121)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255595" + "plane" "(-36 -4120 -128) (-36 -4376 -128) (-36 -4376 -120)" + "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" "255594" + "plane" "(-48 -4120 -128) (-36 -4120 -128) (-36 -4120 -120)" + "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" "255593" + "plane" "(-36 -4376 -128) (-48 -4376 -128) (-48 -4376 -121)" + "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" "255592" + "plane" "(-48 -4376 -121) (-48 -4120 -121) (-47 -4120 -120)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332212" + side + { + "id" "255605" + "plane" "(-35 -4120 -112) (-24 -4120 -112) (-24 -4376 -112)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255604" + "plane" "(-36 -4120 -120) (-36 -4376 -120) (-24 -4376 -120)" + "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" "255603" + "plane" "(-36 -4376 -120) (-36 -4120 -120) (-36 -4120 -113)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255602" + "plane" "(-24 -4120 -120) (-24 -4376 -120) (-24 -4376 -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" "255601" + "plane" "(-36 -4120 -120) (-24 -4120 -120) (-24 -4120 -112)" + "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" "255600" + "plane" "(-24 -4376 -120) (-36 -4376 -120) (-36 -4376 -113)" + "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" "255599" + "plane" "(-36 -4376 -113) (-36 -4120 -113) (-35 -4120 -112)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332184" + side + { + "id" "255577" + "plane" "(-83 -4120 -144) (-72 -4120 -144) (-72 -4376 -144)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255576" + "plane" "(-84 -4120 -152) (-84 -4376 -152) (-72 -4376 -152)" + "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" "255575" + "plane" "(-84 -4376 -152) (-84 -4120 -152) (-84 -4120 -145)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255574" + "plane" "(-72 -4120 -152) (-72 -4376 -152) (-72 -4376 -144)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255573" + "plane" "(-84 -4120 -152) (-72 -4120 -152) (-72 -4120 -144)" + "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" "255572" + "plane" "(-72 -4376 -152) (-84 -4376 -152) (-84 -4376 -145)" + "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" "255571" + "plane" "(-84 -4376 -145) (-84 -4120 -145) (-83 -4120 -144)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332190" + side + { + "id" "255584" + "plane" "(-71 -4120 -136) (-60 -4120 -136) (-60 -4376 -136)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255583" + "plane" "(-72 -4120 -144) (-72 -4376 -144) (-60 -4376 -144)" + "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" "255582" + "plane" "(-72 -4376 -144) (-72 -4120 -144) (-72 -4120 -137)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255581" + "plane" "(-60 -4120 -144) (-60 -4376 -144) (-60 -4376 -136)" + "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" "255580" + "plane" "(-72 -4120 -144) (-60 -4120 -144) (-60 -4120 -136)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255579" + "plane" "(-60 -4376 -144) (-72 -4376 -144) (-72 -4376 -137)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255578" + "plane" "(-72 -4376 -137) (-72 -4120 -137) (-71 -4120 -136)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332174" + side + { + "id" "255570" + "plane" "(-95 -4120 -152) (-84 -4120 -152) (-84 -4376 -152)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255569" + "plane" "(-96 -4120 -160) (-96 -4376 -160) (-84 -4376 -160)" + "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" "255568" + "plane" "(-96 -4376 -160) (-96 -4120 -160) (-96 -4120 -153)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255567" + "plane" "(-84 -4120 -160) (-84 -4376 -160) (-84 -4376 -152)" + "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" "255566" + "plane" "(-96 -4120 -160) (-84 -4120 -160) (-84 -4120 -152)" + "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" "255565" + "plane" "(-84 -4376 -160) (-96 -4376 -160) (-96 -4376 -153)" + "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" "255564" + "plane" "(-96 -4376 -153) (-96 -4120 -153) (-95 -4120 -152)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332169" + side + { + "id" "255556" + "plane" "(-119 -4120 -168) (-108 -4120 -168) (-108 -4376 -168)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255555" + "plane" "(-120 -4120 -176) (-120 -4376 -176) (-108 -4376 -176)" + "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" "255554" + "plane" "(-120 -4376 -176) (-120 -4120 -176) (-120 -4120 -169)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255553" + "plane" "(-108 -4120 -176) (-108 -4376 -176) (-108 -4376 -168)" + "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" "255552" + "plane" "(-120 -4120 -176) (-108 -4120 -176) (-108 -4120 -168)" + "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" "255551" + "plane" "(-108 -4376 -176) (-120 -4376 -176) (-120 -4376 -169)" + "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" "255550" + "plane" "(-120 -4376 -169) (-120 -4120 -169) (-119 -4120 -168)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332164" + side + { + "id" "255549" + "plane" "(-131 -4120 -176) (-120 -4120 -176) (-120 -4376 -176)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255548" + "plane" "(-132 -4120 -184) (-132 -4376 -184) (-120 -4376 -184)" + "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" "255547" + "plane" "(-132 -4376 -184) (-132 -4120 -184) (-132 -4120 -177)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255546" + "plane" "(-120 -4120 -184) (-120 -4376 -184) (-120 -4376 -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" "255545" + "plane" "(-132 -4120 -184) (-120 -4120 -184) (-120 -4120 -176)" + "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" "255544" + "plane" "(-120 -4376 -184) (-132 -4376 -184) (-132 -4376 -177)" + "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" "255543" + "plane" "(-132 -4376 -177) (-132 -4120 -177) (-131 -4120 -176)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332172" + side + { + "id" "255563" + "plane" "(-107 -4120 -160) (-96 -4120 -160) (-96 -4376 -160)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255562" + "plane" "(-108 -4120 -168) (-108 -4376 -168) (-96 -4376 -168)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255561" + "plane" "(-108 -4376 -168) (-108 -4120 -168) (-108 -4120 -161)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255560" + "plane" "(-96 -4120 -168) (-96 -4376 -168) (-96 -4376 -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" "255559" + "plane" "(-108 -4120 -168) (-96 -4120 -168) (-96 -4120 -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" "255558" + "plane" "(-96 -4376 -168) (-108 -4376 -168) (-108 -4376 -161)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255557" + "plane" "(-108 -4376 -161) (-108 -4120 -161) (-107 -4120 -160)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332153" + side + { + "id" "255542" + "plane" "(-143 -4120 -184) (-132 -4120 -184) (-132 -4376 -184)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255541" + "plane" "(-144 -4120 -192) (-144 -4376 -192) (-132 -4376 -192)" + "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" "255540" + "plane" "(-144 -4376 -192) (-144 -4120 -192) (-144 -4120 -185)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255539" + "plane" "(-132 -4120 -192) (-132 -4376 -192) (-132 -4376 -184)" + "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" "255538" + "plane" "(-144 -4120 -192) (-132 -4120 -192) (-132 -4120 -184)" + "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" "255537" + "plane" "(-132 -4376 -192) (-144 -4376 -192) (-144 -4376 -185)" + "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" "255536" + "plane" "(-144 -4376 -185) (-144 -4120 -185) (-143 -4120 -184)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332147" + side + { + "id" "255535" + "plane" "(-155 -4120 -192) (-144 -4120 -192) (-144 -4376 -192)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255534" + "plane" "(-156 -4120 -200) (-156 -4376 -200) (-144 -4376 -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" "255533" + "plane" "(-156 -4376 -200) (-156 -4120 -200) (-156 -4120 -193)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255532" + "plane" "(-144 -4120 -200) (-144 -4376 -200) (-144 -4376 -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" "255531" + "plane" "(-156 -4120 -200) (-144 -4120 -200) (-144 -4120 -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" "255530" + "plane" "(-144 -4376 -200) (-156 -4376 -200) (-156 -4376 -193)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255529" + "plane" "(-156 -4376 -193) (-156 -4120 -193) (-155 -4120 -192)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332145" + side + { + "id" "255528" + "plane" "(-167 -4120 -200) (-156 -4120 -200) (-156 -4376 -200)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255527" + "plane" "(-168 -4120 -208) (-168 -4376 -208) (-156 -4376 -208)" + "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" "255526" + "plane" "(-168 -4376 -208) (-168 -4120 -208) (-168 -4120 -201)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255525" + "plane" "(-156 -4120 -208) (-156 -4376 -208) (-156 -4376 -200)" + "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" "255524" + "plane" "(-168 -4120 -208) (-156 -4120 -208) (-156 -4120 -200)" + "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" "255523" + "plane" "(-156 -4376 -208) (-168 -4376 -208) (-168 -4376 -201)" + "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" "255522" + "plane" "(-168 -4376 -201) (-168 -4120 -201) (-167 -4120 -200)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332143" + side + { + "id" "255521" + "plane" "(-179 -4120 -208) (-168 -4120 -208) (-168 -4376 -208)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255520" + "plane" "(-180 -4120 -216) (-180 -4376 -216) (-168 -4376 -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" "255519" + "plane" "(-180 -4376 -216) (-180 -4120 -216) (-180 -4120 -209)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255518" + "plane" "(-168 -4120 -216) (-168 -4376 -216) (-168 -4376 -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" "255517" + "plane" "(-180 -4120 -216) (-168 -4120 -216) (-168 -4120 -208)" + "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" "255516" + "plane" "(-168 -4376 -216) (-180 -4376 -216) (-180 -4376 -209)" + "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" "255515" + "plane" "(-180 -4376 -209) (-180 -4120 -209) (-179 -4120 -208)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "1332080" + side + { + "id" "255514" + "plane" "(-191 -4120 -216) (-180 -4120 -216) (-180 -4376 -216)" + "material" "CS_APOLLO/CARPET/CARPET_GREY" + "uaxis" "[1 0 0 0] 0.125" + "vaxis" "[0 -1 0 0] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255513" + "plane" "(-192 -4120 -224) (-192 -4376 -224) (-180 -4376 -224)" + "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" "255512" + "plane" "(-192 -4376 -224) (-192 -4120 -224) (-192 -4120 -217)" + "material" "CS_APOLLO/EXHIBITS/METALPANELTINTBLACK" + "uaxis" "[0 -1 0 180] 0.25" + "vaxis" "[0 0 -1 -190] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255511" + "plane" "(-180 -4120 -224) (-180 -4376 -224) (-180 -4376 -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" "255510" + "plane" "(-192 -4120 -224) (-180 -4120 -224) (-180 -4120 -216)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255509" + "plane" "(-180 -4376 -224) (-192 -4376 -224) (-192 -4376 -217)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "255508" + "plane" "(-192 -4376 -217) (-192 -4120 -217) (-191 -4120 -216)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 -33] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupid" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -6768]" + } +} +hidden +{ + entity + { + "id" "138193" + "classname" "prop_static" + "angles" "0 90 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "576 -5120 160" + editor + { + "color" "0 232 117" + "groupid" "138808" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 1000]" + } + } +} +entity +{ + "id" "92125" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "225 255 252 15" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "712 -4484 67.9086" + editor + { + "color" "173 134 0" + "groupid" "305536" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "92162" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "225 255 252 15" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "713 -4396 67.9086" + editor + { + "color" "173 134 0" + "groupid" "305536" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "92299" + "classname" "func_detail" + solid + { + "id" "91363" + side + { + "id" "32405" + "plane" "(676 -4431.21 33) (683 -4428 33) (683 -4428 109)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.468155 0.883645 0 -4] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32404" + "plane" "(683 -4428 109) (683 -4428 33) (696 -4425 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.636812 0.771017 0 -4] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32403" + "plane" "(696 -4425 109) (696 -4425 33) (711 -4424 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.751667 0.65954 0 -4] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32402" + "plane" "(711 -4424 109) (711 -4424 33) (725.798 -4424.81 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.825925 0.563777 0 -4] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32401" + "plane" "(725.809 -4424.81 109) (725.809 -4424.81 33) (738.708 -4428.05 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.918086 0.396376 0 -4] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32400" + "plane" "(738.736 -4428.06 109) (738.718 -4428.05 33) (746 -4431.25 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.321032 0.947067 0 -4] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32399" + "plane" "(746 -4442.75 33) (738.759 -4445.94 33) (738.765 -4445.93 109)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.915132 0.403151 0 414] 0.156" + "vaxis" "[0 0 -1 443] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32398" + "plane" "(738.765 -4445.93 109) (738.759 -4445.93 33) (725.798 -4449.19 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.969796 0.24391 0 225.304] 0.156" + "vaxis" "[0 0 -1 445.191] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32397" + "plane" "(725.794 -4449.19 109) (725.799 -4449.19 33) (711 -4450 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.998503 0.0546556 0 326.115] 0.156" + "vaxis" "[0 0 -1 443.787] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32396" + "plane" "(711 -4450 109) (711 -4450 33) (696 -4449 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.997783 -0.0665191 0 453.544] 0.156" + "vaxis" "[0 0 -1 444] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32395" + "plane" "(696 -4449 109) (696 -4449 33) (683 -4446 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.974389 -0.224859 0 136.777] 0.156" + "vaxis" "[0 0 -1 444] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32394" + "plane" "(683 -4446 109) (683 -4446 33) (676 -4442.79 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.908983 -0.416829 0 -440] 0.156" + "vaxis" "[0 0 -1 444] 0.074" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32393" + "plane" "(746 -4431.25 33) (738.719 -4428.05 33) (725.801 -4424.81 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32392" + "plane" "(676 -4431.21 109) (683 -4428 109) (696.013 -4425 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32391" + "plane" "(676 -4442.79 109) (676 -4442.79 33) (676 -4431.21 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32390" + "plane" "(746 -4431.25 109) (746 -4431.25 33) (746 -4442.75 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91483" + side + { + "id" "32411" + "plane" "(746 -4431.25 33) (748 -4432.13 33) (748 -4432.13 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 0.425776 0 -11.4824] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32410" + "plane" "(748 -4432.13 109) (748 -4432.13 33) (748 -4433 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -8.28485] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32409" + "plane" "(748 -4433 33) (748 -4432.13 33) (746 -4431.25 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32408" + "plane" "(746 -4433 109) (746 -4431.25 109) (748 -4432.13 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32407" + "plane" "(746 -4433 33) (746 -4431.25 33) (746 -4431.25 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32406" + "plane" "(748 -4433 109) (748 -4433 33) (746 -4433 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91476" + side + { + "id" "32417" + "plane" "(748 -4441 33) (748 -4441.88 33) (748 -4441.88 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -8.28485] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32416" + "plane" "(748 -4441.88 109) (748 -4441.88 33) (746 -4442.75 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -7.9523] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32415" + "plane" "(746 -4441 33) (746 -4442.76 33) (748 -4441.88 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32414" + "plane" "(748 -4441 109) (748 -4441.88 109) (746 -4442.76 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32413" + "plane" "(746 -4442.76 109) (746 -4442.76 33) (746 -4441 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32412" + "plane" "(746 -4441 33) (748 -4441 33) (748 -4441 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91287" + side + { + "id" "32435" + "plane" "(680.355 -4434 16.5876) (678 -4437 16.5876) (680.36 -4440 16.5876)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32434" + "plane" "(678 -4437 30) (680.355 -4434 30) (687.437 -4431 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32433" + "plane" "(678 -4437 16.588) (680.361 -4434 16.588) (680.359 -4434 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.617821 -0.786318 0 12.2744] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32432" + "plane" "(680.359 -4434 16.588) (687.424 -4431 16.588) (687.43 -4431 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.920582 -0.39055 0 23.0545] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32431" + "plane" "(687.431 -4431 16.588) (698.622 -4430 16.588) (698.629 -4430 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.996035 -0.0889601 0 -12.9687] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32430" + "plane" "(698.618 -4430 16.588) (711 -4429 16.588) (711 -4429 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.996751 -0.0805455 0 -10.3646] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32429" + "plane" "(711 -4429 16.588) (723.371 -4430 16.588) (723.383 -4430 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.996751 0.0805455 0 -20.5332] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32428" + "plane" "(723.343 -4430 16.588) (734.571 -4431 16.588) (734.574 -4431 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.996035 0.0889601 0 -28.525] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32427" + "plane" "(734.573 -4431 16.588) (741.639 -4434 16.588) (741.645 -4434 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.920582 0.39055 0 -17.4108] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32426" + "plane" "(741.639 -4434 16.588) (744 -4437 16.588) (744 -4437 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.617821 0.786318 0 -13.711] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32425" + "plane" "(744 -4437 16.5878) (741.64 -4440 16.5878) (741.641 -4440 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.617821 0.786318 0 -12.2744] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32424" + "plane" "(741.641 -4440 16.5877) (734.566 -4443 16.5877) (734.566 -4443 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.920582 0.39055 0 -23.0545] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32423" + "plane" "(734.569 -4443 16.5877) (723.394 -4444 16.5877) (723.394 -4444 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.996035 0.0889601 0 12.9687] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32422" + "plane" "(723.332 -4444 16.5877) (711 -4445 16.5877) (711 -4445 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.996751 0.0805455 0 10.3646] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32421" + "plane" "(711 -4445 16.5877) (698.613 -4444 16.5877) (698.587 -4444 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.996751 -0.0805455 0 20.5332] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32420" + "plane" "(698.614 -4444 16.5877) (687.43 -4443 16.5877) (687.431 -4443 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.996035 -0.0889601 0 28.525] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32419" + "plane" "(687.431 -4443 16.5878) (680.36 -4440 16.5878) (680.36 -4440 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.920582 -0.39055 0 17.4108] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32418" + "plane" "(680.36 -4440 16.5878) (678 -4437 16.5878) (678 -4437 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.617821 -0.786318 0 13.711] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91474" + side + { + "id" "32446" + "plane" "(674 -4441 30) (674 -4441.87 30) (683 -4446 30)" + "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" "32445" + "plane" "(748 -4441 30) (748 -4441.87 30) (748 -4441.87 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -8.28485] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32444" + "plane" "(748 -4441.87 33) (748 -4441.87 30) (738.738 -4445.94 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -7.9523] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32443" + "plane" "(738.739 -4445.94 33) (738.739 -4445.94 30) (725.798 -4449.19 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 0.243417 0 -9.14777] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32442" + "plane" "(725.8 -4449.19 33) (725.8 -4449.19 30) (711 -4450 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 0.0548161 0 19.1753] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32441" + "plane" "(711 -4450 33) (711 -4450 30) (696 -4449 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 -0.0548161 0 31.8752] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32440" + "plane" "(696 -4449 33) (696 -4449 30) (683 -4446 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 -0.243417 0 6.17765] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32439" + "plane" "(682.989 -4446 33) (682.989 -4446 30) (674 -4441.88 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 11.3735] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32438" + "plane" "(674 -4441.87 33) (674 -4441.87 30) (674 -4441 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 11.36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32437" + "plane" "(748 -4441 33) (748 -4441.87 33) (738.738 -4445.94 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32436" + "plane" "(674 -4441 33) (674 -4441 30) (748 -4441 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91478" + side + { + "id" "32452" + "plane" "(674 -4441 33) (674 -4433 33) (674 -4433 109)" + "material" "DE_NUKE/HR_NUKE/OFFICELIGHT_EMITTER_001_WHITE" + "uaxis" "[0.534536 -0.845145 0 26.5016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32451" + "plane" "(674 -4433 33) (674 -4441 33) (676 -4441 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32450" + "plane" "(676 -4433 109) (676 -4441 109) (674 -4441 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32449" + "plane" "(676 -4433 33) (676 -4441 33) (676 -4441 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32448" + "plane" "(676 -4441 33) (674 -4441 33) (674 -4441 109)" + "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" "32447" + "plane" "(674 -4433 109) (674 -4433 33) (676 -4433 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91480" + side + { + "id" "32458" + "plane" "(674 -4433 30) (674 -4441 30) (748 -4441 30)" + "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" "32457" + "plane" "(748 -4433 30) (748 -4441 30) (748 -4441 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -8.28485] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32456" + "plane" "(674 -4441 30) (674 -4433 30) (674 -4433 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 11.36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32455" + "plane" "(748 -4433 33) (748 -4441 33) (674 -4441 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32454" + "plane" "(748 -4441 33) (748 -4441 30) (674 -4441 30)" + "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" "32453" + "plane" "(674 -4433 33) (674 -4433 30) (748 -4433 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91477" + side + { + "id" "32464" + "plane" "(674 -4432.13 109) (674 -4432.13 33) (676 -4431.21 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 -0.425776 0 17.9523] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32463" + "plane" "(674 -4433 33) (674 -4432.13 33) (674 -4432.13 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 26.5016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32462" + "plane" "(676 -4433 33) (676 -4431.21 33) (674 -4432.13 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32461" + "plane" "(674 -4433 109) (674 -4432.13 109) (676 -4431.21 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32460" + "plane" "(676 -4431.21 109) (676 -4431.21 33) (676 -4433 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32459" + "plane" "(676 -4433 33) (674 -4433 33) (674 -4433 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91479" + side + { + "id" "32475" + "plane" "(748 -4433 30) (748 -4432.12 30) (738.75 -4428.06 30)" + "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" "32474" + "plane" "(674 -4432.12 33) (674 -4432.12 30) (682.988 -4428 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 -0.425776 0 17.9523] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32473" + "plane" "(683 -4428 33) (683 -4428 30) (696 -4425 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.969922 -0.243417 0 17.0677] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32472" + "plane" "(696 -4425 33) (696 -4425 30) (711 -4424 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.998496 -0.0548161 0 -13.5171] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32471" + "plane" "(711 -4424 33) (711 -4424 30) (725.805 -4424.81 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.998496 0.0548161 0 -27.5324] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32470" + "plane" "(725.804 -4424.81 33) (725.804 -4424.81 30) (738.748 -4428.06 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.969922 0.243417 0 -4.09855] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32469" + "plane" "(738.749 -4428.06 33) (738.749 -4428.06 30) (748 -4432.12 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 0.425776 0 -11.4824] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32468" + "plane" "(748 -4432.12 33) (748 -4432.12 30) (748 -4433 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -8.28485] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32467" + "plane" "(674 -4433 30) (674 -4432.13 30) (674 -4432.13 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 11.36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32466" + "plane" "(674 -4433 33) (674 -4432.12 33) (683 -4428 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32465" + "plane" "(748 -4433 33) (748 -4433 30) (674 -4433 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91484" + side + { + "id" "32481" + "plane" "(748 -4433 33) (748 -4441 33) (748 -4441 109)" + "material" "DE_NUKE/HR_NUKE/OFFICELIGHT_EMITTER_001_WHITE" + "uaxis" "[0.534536 0.845145 0 -8.28485] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32480" + "plane" "(746 -4433 33) (746 -4441 33) (748 -4441 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32479" + "plane" "(748 -4433 109) (748 -4441 109) (746 -4441 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32478" + "plane" "(746 -4441 33) (746 -4433 33) (746 -4433 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32477" + "plane" "(748 -4441 109) (748 -4441 33) (746 -4441 33)" + "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" "32476" + "plane" "(746 -4433 33) (748 -4433 33) (748 -4433 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91473" + side + { + "id" "32487" + "plane" "(676 -4442.79 33) (674 -4441.87 33) (674 -4441.87 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 11.3735] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32486" + "plane" "(674 -4441.87 109) (674 -4441.87 33) (674 -4441 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 26.5016] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32485" + "plane" "(674 -4441 33) (674 -4441.88 33) (676 -4442.79 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32484" + "plane" "(676 -4441 109) (676 -4442.79 109) (674 -4441.87 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32483" + "plane" "(676 -4441 33) (676 -4442.79 33) (676 -4442.79 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -12] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32482" + "plane" "(674 -4441 109) (674 -4441 33) (676 -4441 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91482" + side + { + "id" "32173" + "plane" "(748 -4433 112) (748 -4441 112) (674 -4441 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -7] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32172" + "plane" "(748 -4433 109) (748 -4441 109) (748 -4441 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -3.14422] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32171" + "plane" "(674 -4441 109) (674 -4433 109) (674 -4433 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 11.36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32170" + "plane" "(674 -4433 109) (674 -4441 109) (748 -4441 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32169" + "plane" "(674 -4441 109) (674 -4441 112) (748 -4441 112)" + "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" "32168" + "plane" "(748 -4433 109) (748 -4433 112) (674 -4433 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91475" + side + { + "id" "32121" + "plane" "(748 -4441 112) (748 -4441.87 112) (738.73 -4445.94 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -7] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32120" + "plane" "(748 -4441 109) (748 -4441.87 109) (748 -4441.87 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -3.14422] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32119" + "plane" "(738.738 -4445.94 109) (738.738 -4445.94 112) (748 -4441.87 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -7.84293] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32118" + "plane" "(725.797 -4449.19 109) (725.797 -4449.19 112) (738.742 -4445.94 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 0.243417 0 -9.14777] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32117" + "plane" "(711 -4450 109) (711 -4450 112) (725.793 -4449.19 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 0.0548161 0 19.1753] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32116" + "plane" "(696 -4449 109) (696 -4449 112) (711 -4450 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 -0.0548161 0 31.8752] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32115" + "plane" "(683 -4446 109) (683 -4446 112) (696 -4449 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 -0.243417 0 6.17765] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32114" + "plane" "(674 -4441.87 109) (674 -4441.87 112) (683 -4446 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 11.3735] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32113" + "plane" "(674 -4441 112) (674 -4441.88 112) (674 -4441.88 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 11.36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32112" + "plane" "(674 -4441 109) (674 -4441.88 109) (683 -4446 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32111" + "plane" "(748 -4441 109) (748 -4441 112) (674 -4441 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "91481" + side + { + "id" "32167" + "plane" "(674 -4433 112) (674 -4432.12 112) (683 -4428 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -7] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32166" + "plane" "(683 -4428 109) (683 -4428 112) (674 -4432.12 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 -0.425776 0 7.84293] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32165" + "plane" "(696 -4425 109) (696 -4425 112) (683 -4428 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.969922 -0.243417 0 9.14777] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32164" + "plane" "(711 -4424 109) (711 -4424 112) (696 -4425 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.998496 -0.0548161 0 -19.1753] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32163" + "plane" "(725.785 -4424.81 109) (725.785 -4424.81 112) (711 -4424 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.998496 0.0548161 0 -31.8752] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32162" + "plane" "(738.766 -4428.07 109) (738.766 -4428.07 112) (725.785 -4424.81 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.969922 0.243417 0 -6.17765] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32161" + "plane" "(748 -4432.12 109) (748 -4432.12 112) (738.762 -4428.07 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 0.425776 0 -11.3735] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32160" + "plane" "(748 -4433 112) (748 -4432.13 112) (748 -4432.13 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -3.14422] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32159" + "plane" "(674 -4433 109) (674 -4432.13 109) (674 -4432.13 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 11.36] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32158" + "plane" "(748 -4433 109) (748 -4432.12 109) (738.758 -4428.07 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 12] 0.25" + "vaxis" "[1 0 0 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "32157" + "plane" "(674 -4433 109) (674 -4433 112) (748 -4433 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "173 134 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "173 134 0" + "groupid" "305536" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10268]" + } +} +entity +{ + "id" "92580" + "classname" "func_detail" + solid + { + "id" "92581" + side + { + "id" "33037" + "plane" "(676 -4225.21 33) (683 -4222 33) (683 -4222 109)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.908996 -0.416804 0 10.0428] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33036" + "plane" "(683 -4222 109) (683 -4222 33) (696 -4219 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.974391 -0.22486 0 14.1563] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33035" + "plane" "(696 -4219 109) (696 -4219 33) (711 -4218 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.997785 -0.0665201 0 -3.24573] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33034" + "plane" "(711 -4218 109) (711 -4218 33) (725.801 -4218.81 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.998498 0.054781 0 -9.09167] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33033" + "plane" "(725.798 -4218.81 109) (725.798 -4218.81 33) (738.734 -4222.06 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.969906 0.243479 0 -3.96545] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33032" + "plane" "(738.773 -4222.07 109) (738.731 -4222.06 33) (746 -4225.25 33)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.915658 0.401958 0 -21.4109] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33031" + "plane" "(746 -4236.75 33) (738.758 -4239.94 33) (738.763 -4239.93 109)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.915152 0.403105 0 236.477] 0.13" + "vaxis" "[0 0 -1 283.539] 0.09" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33030" + "plane" "(738.759 -4239.93 109) (738.753 -4239.94 33) (725.806 -4243.19 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.969907 0.24347 0 350.839] 0.13" + "vaxis" "[0 0 -1 283.061] 0.09" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33029" + "plane" "(725.759 -4243.19 109) (725.8 -4243.19 33) (711 -4244 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.998504 0.0546522 0 167.19] 0.13" + "vaxis" "[0 0 -1 286.808] 0.09" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33028" + "plane" "(711 -4244 109) (711 -4244 33) (696 -4243 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.997784 -0.0665185 0 310.234] 0.13" + "vaxis" "[0 0 -1 288.188] 0.09" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33027" + "plane" "(696 -4243 109) (696 -4243 33) (683 -4240 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.97439 -0.224858 0 387.52] 0.13" + "vaxis" "[0 0 -1 288.188] 0.09" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33026" + "plane" "(683 -4240 109) (683 -4240 33) (676 -4236.79 33)" + "material" "CS_APOLLO/OUTSIDE/ADVERT1" + "uaxis" "[0.908983 -0.416829 0 -410.059] 0.13" + "vaxis" "[0 0 -1 288.188] 0.09" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33025" + "plane" "(746 -4225.25 33) (738.738 -4222.07 33) (725.797 -4218.81 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33024" + "plane" "(676 -4225.21 109) (683 -4222 109) (696 -4219 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33023" + "plane" "(676 -4236.79 109) (676 -4236.79 33) (676 -4225.21 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33022" + "plane" "(746 -4225.24 109) (746 -4225.25 33) (746 -4236.75 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92582" + side + { + "id" "33043" + "plane" "(746 -4225.25 33) (748 -4226.13 33) (748 -4226.13 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 0.425776 0 -10.322] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33042" + "plane" "(748 -4226.13 109) (748 -4226.13 33) (748 -4227 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -0.685242] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33041" + "plane" "(748 -4226.13 33) (746 -4225.25 33) (746 -4227 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33040" + "plane" "(746 -4227 109) (746 -4225.25 109) (748 -4226.13 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33039" + "plane" "(746 -4227 33) (746 -4225.25 33) (746 -4225.25 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33038" + "plane" "(748 -4227 109) (748 -4227 33) (746 -4227 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92583" + side + { + "id" "33049" + "plane" "(748 -4235 33) (748 -4235.88 33) (748 -4235.88 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -0.685242] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33048" + "plane" "(748 -4235.88 109) (748 -4235.88 33) (746 -4236.75 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -6.79144] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33047" + "plane" "(746 -4235 33) (746 -4236.75 33) (748 -4235.88 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33046" + "plane" "(748 -4235 109) (748 -4235.88 109) (746 -4236.75 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33045" + "plane" "(746 -4236.75 109) (746 -4236.75 33) (746 -4235 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33044" + "plane" "(746 -4235 33) (748 -4235 33) (748 -4235 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92584" + side + { + "id" "33067" + "plane" "(741.641 -4228 16.5876) (734.57 -4225 16.5876) (723.605 -4224.02 16.5876)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33066" + "plane" "(678 -4231 30) (680.355 -4228 30) (687.436 -4225 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33065" + "plane" "(678 -4231 16.5859) (680.357 -4228 16.5859) (680.352 -4228 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.617821 -0.786318 0 20.2023] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33064" + "plane" "(680.359 -4228 16.5879) (687.43 -4225 16.5879) (687.434 -4225 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.920582 -0.39055 0 24.867] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33063" + "plane" "(687.432 -4225 16.5859) (698.179 -4224.04 16.5859) (698.508 -4224.01 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.996035 -0.0889601 0 28.3332] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33062" + "plane" "(698.173 -4224.04 16.584) (711 -4223 16.584) (711 -4223 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.996751 -0.0805455 0 24.0058] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33061" + "plane" "(711 -4223 16.5839) (723.764 -4224.03 16.5839) (723.762 -4224.03 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.996751 0.0805455 0 -22.9022] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33060" + "plane" "(723.618 -4224.02 16.5839) (734.569 -4225 16.5839) (734.563 -4225 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.996035 0.0889601 0 -5.82895] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33059" + "plane" "(734.568 -4225 16.5839) (741.641 -4228 16.5839) (741.645 -4228 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.920582 0.39055 0 -19.223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33058" + "plane" "(741.642 -4228 16.5839) (744 -4231 16.5839) (744 -4231 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[-0.617821 0.786318 0 -21.6383] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33057" + "plane" "(744 -4231 16.588) (741.641 -4234 16.588) (741.627 -4234 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.617821 0.786318 0 -20.2023] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33056" + "plane" "(741.642 -4234 16.584) (734.567 -4237 16.584) (734.559 -4237 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.920582 0.39055 0 -24.867] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33055" + "plane" "(734.575 -4237 16.5859) (722.771 -4238.05 16.5859) (723.241 -4238 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.996035 0.0889601 0 -28.3332] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33054" + "plane" "(722.963 -4238.03 16.584) (711 -4239 16.584) (711 -4239 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.996751 0.0805455 0 -24.0058] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33053" + "plane" "(711 -4239 16.584) (698.343 -4237.98 16.584) (698.209 -4237.96 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.996751 -0.0805455 0 22.9022] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33052" + "plane" "(698.331 -4237.98 16.584) (687.431 -4237 16.584) (687.434 -4237 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.996035 -0.0889601 0 5.82895] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33051" + "plane" "(687.427 -4237 16.5841) (680.361 -4234 16.5841) (680.36 -4234 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.920582 -0.39055 0 19.223] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33050" + "plane" "(680.364 -4234 16.5841) (678 -4231 16.5841) (678 -4231 30)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0.617821 -0.786318 0 21.6383] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92585" + side + { + "id" "33078" + "plane" "(674 -4235 30) (674 -4235.87 30) (683 -4240 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33077" + "plane" "(748 -4235 30) (748 -4235.87 30) (748 -4235.87 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -0.685242] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33076" + "plane" "(748 -4235.87 33) (748 -4235.87 30) (738.732 -4239.94 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -6.79144] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33075" + "plane" "(738.741 -4239.94 33) (738.741 -4239.94 30) (725.792 -4243.19 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 0.243417 0 -17.7233] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33074" + "plane" "(725.797 -4243.19 33) (725.797 -4243.19 30) (711 -4244 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 0.0548161 0 -25.9928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33073" + "plane" "(711 -4244 33) (711 -4244 30) (696 -4243 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 -0.0548161 0 13.044] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33072" + "plane" "(696 -4243 33) (696 -4243 30) (683 -4240 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 -0.243417 0 14.7537] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33071" + "plane" "(683 -4240 33) (683 -4240 30) (674 -4235.87 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 10.2132] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33070" + "plane" "(674 -4235.87 33) (674 -4235.87 30) (674 -4235 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 3.76009] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33069" + "plane" "(748 -4235 33) (748 -4235.87 33) (738.728 -4239.94 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33068" + "plane" "(674 -4235 33) (674 -4235 30) (748 -4235 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92586" + side + { + "id" "33084" + "plane" "(674 -4235 33) (674 -4227 33) (674 -4227 109)" + "material" "DE_NUKE/HR_NUKE/OFFICELIGHT_EMITTER_001_WHITE" + "uaxis" "[0.534536 -0.845145 0 18.9017] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33083" + "plane" "(674 -4227 33) (674 -4235 33) (676 -4235 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33082" + "plane" "(674 -4235 109) (674 -4227 109) (676 -4227 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33081" + "plane" "(676 -4227 33) (676 -4235 33) (676 -4235 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33080" + "plane" "(676 -4235 33) (674 -4235 33) (674 -4235 109)" + "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" "33079" + "plane" "(674 -4227 109) (674 -4227 33) (676 -4227 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92587" + side + { + "id" "33090" + "plane" "(674 -4227 30) (674 -4235 30) (748 -4235 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33089" + "plane" "(748 -4227 30) (748 -4235 30) (748 -4235 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -0.685242] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33088" + "plane" "(674 -4235 30) (674 -4227 30) (674 -4227 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 3.76009] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33087" + "plane" "(674 -4235 33) (674 -4227 33) (748 -4227 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33086" + "plane" "(748 -4235 33) (748 -4235 30) (674 -4235 30)" + "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" "33085" + "plane" "(674 -4227 33) (674 -4227 30) (748 -4227 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92588" + side + { + "id" "33096" + "plane" "(674 -4226.13 109) (674 -4226.13 33) (676 -4225.21 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 -0.425776 0 16.7914] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33095" + "plane" "(674 -4227 33) (674 -4226.13 33) (674 -4226.13 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 18.9017] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33094" + "plane" "(676 -4225.21 33) (674 -4226.13 33) (674 -4227 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33093" + "plane" "(674 -4227 109) (674 -4226.13 109) (676 -4225.21 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33092" + "plane" "(676 -4225.21 109) (676 -4225.21 33) (676 -4227 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33091" + "plane" "(676 -4227 33) (674 -4227 33) (674 -4227 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92589" + side + { + "id" "33107" + "plane" "(748 -4226.12 30) (738.762 -4222.07 30) (725.813 -4218.81 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 56] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33106" + "plane" "(674 -4226.12 33) (674 -4226.12 30) (683 -4222 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 -0.425776 0 16.7914] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33105" + "plane" "(683 -4222 33) (683 -4222 30) (695.989 -4219 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.969922 -0.243417 0 25.6452] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33104" + "plane" "(696 -4219 33) (696 -4219 30) (711 -4218 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.998496 -0.0548161 0 31.6509] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33103" + "plane" "(711 -4218 33) (711 -4218 30) (725.816 -4218.81 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.998496 0.0548161 0 -8.70121] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33102" + "plane" "(725.814 -4218.81 33) (725.814 -4218.81 30) (738.757 -4222.06 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.969922 0.243417 0 -12.6746] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33101" + "plane" "(738.763 -4222.07 33) (738.763 -4222.07 30) (748 -4226.12 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 0.425776 0 -10.322] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33100" + "plane" "(748 -4226.12 33) (748 -4226.12 30) (748 -4227 30)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -0.685242] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33099" + "plane" "(674 -4227 30) (674 -4226.12 30) (674 -4226.12 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 3.76009] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33098" + "plane" "(674 -4227 33) (674 -4226.12 33) (683 -4222 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33097" + "plane" "(748 -4227 33) (748 -4227 30) (674 -4227 30)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92590" + side + { + "id" "33113" + "plane" "(748 -4227 33) (748 -4235 33) (748 -4235 109)" + "material" "DE_NUKE/HR_NUKE/OFFICELIGHT_EMITTER_001_WHITE" + "uaxis" "[0.534536 0.845145 0 -0.685242] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33112" + "plane" "(746 -4227 33) (746 -4235 33) (748 -4235 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33111" + "plane" "(746 -4235 109) (746 -4227 109) (748 -4227 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33110" + "plane" "(746 -4235 33) (746 -4227 33) (746 -4227 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33109" + "plane" "(748 -4235 109) (748 -4235 33) (746 -4235 33)" + "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" "33108" + "plane" "(746 -4227 33) (748 -4227 33) (748 -4227 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92591" + side + { + "id" "33119" + "plane" "(676 -4236.79 33) (674 -4235.87 33) (674 -4235.87 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 10.2132] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33118" + "plane" "(674 -4235.87 109) (674 -4235.87 33) (674 -4235 33)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 18.9017] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33117" + "plane" "(674 -4235 33) (674 -4235.87 33) (676 -4236.79 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33116" + "plane" "(676 -4236.79 109) (674 -4235.87 109) (674 -4235 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33115" + "plane" "(676 -4235 33) (676 -4236.79 33) (676 -4236.79 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 1 0 -4] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33114" + "plane" "(674 -4235 109) (674 -4235 33) (676 -4235 33)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92592" + side + { + "id" "33125" + "plane" "(674 -4235 112) (674 -4227 112) (748 -4227 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -31] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33124" + "plane" "(748 -4227 109) (748 -4235 109) (748 -4235 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -27.5436] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33123" + "plane" "(674 -4235 109) (674 -4227 109) (674 -4227 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 3.76009] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33122" + "plane" "(674 -4227 109) (674 -4235 109) (748 -4235 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33121" + "plane" "(674 -4235 109) (674 -4235 112) (748 -4235 112)" + "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" "33120" + "plane" "(748 -4227 109) (748 -4227 112) (674 -4227 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92593" + side + { + "id" "33136" + "plane" "(748 -4235 112) (748 -4235.87 112) (738.732 -4239.94 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -31] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33135" + "plane" "(748 -4235 109) (748 -4235.87 109) (748 -4235.87 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -27.5436] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33134" + "plane" "(738.73 -4239.94 109) (738.73 -4239.94 112) (748 -4235.87 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 0.425776 0 -6.68206] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33133" + "plane" "(725.801 -4243.19 109) (725.801 -4243.19 112) (738.746 -4239.94 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 0.243417 0 -17.7233] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33132" + "plane" "(711.012 -4244 109) (711.012 -4244 112) (725.793 -4243.19 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 0.0548161 0 -25.9928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33131" + "plane" "(695.984 -4243 109) (695.984 -4243 112) (711 -4244 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.998496 -0.0548161 0 13.044] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33130" + "plane" "(683 -4240 109) (683 -4240 112) (695.984 -4243 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.969922 -0.243417 0 14.7537] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33129" + "plane" "(674 -4235.87 109) (674 -4235.87 112) (683 -4240 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.904829 -0.425776 0 10.2132] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33128" + "plane" "(674 -4235 112) (674 -4235.87 112) (674 -4235.87 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 3.76009] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33127" + "plane" "(674 -4235 109) (674 -4235.87 109) (683 -4240 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33126" + "plane" "(748 -4235 109) (748 -4235 112) (674 -4235 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[-1 0 0 32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "92594" + side + { + "id" "33147" + "plane" "(674 -4227 112) (674 -4226.12 112) (683 -4222 112)" + "material" "DEV/REFLECTIVITY_50B" + "uaxis" "[0 1 0 -31] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33146" + "plane" "(683 -4222 109) (683 -4222 112) (674 -4226.12 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 -0.425776 0 6.68206] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33145" + "plane" "(696 -4219 109) (696 -4219 112) (683 -4222 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.969922 -0.243417 0 17.7233] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33144" + "plane" "(711 -4218 109) (711 -4218 112) (696 -4219 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.998496 -0.0548161 0 25.9928] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33143" + "plane" "(725.793 -4218.81 109) (725.793 -4218.81 112) (711 -4218 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.998496 0.0548161 0 -13.044] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33142" + "plane" "(738.738 -4222.06 109) (738.738 -4222.06 112) (725.793 -4218.81 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.969922 0.243417 0 -14.7537] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33141" + "plane" "(748 -4226.12 109) (748 -4226.12 112) (738.734 -4222.05 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[-0.904829 0.425776 0 -10.2132] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33140" + "plane" "(748 -4227 112) (748 -4226.12 112) (748 -4226.12 109)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 0.845145 0 -27.5436] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33139" + "plane" "(674 -4227 109) (674 -4226.12 109) (674 -4226.12 112)" + "material" "DEV/REFLECTIVITY_20B" + "uaxis" "[0.534536 -0.845145 0 3.76009] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33138" + "plane" "(748 -4226.12 109) (738.75 -4222.06 109) (725.793 -4218.81 109)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[0 -1 0 4] 0.25" + "vaxis" "[1 0 0 -32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "33137" + "plane" "(674 -4227 109) (674 -4227 112) (748 -4227 112)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "215 112 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "215 112 0" + "groupid" "305562" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10268]" + } +} +entity +{ + "id" "92710" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "225 255 252 15" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "712 -4186 67.9086" + editor + { + "color" "215 112 0" + "groupid" "305562" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +entity +{ + "id" "92715" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_light" "225 255 252 15" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "spawnflags" "0" + "style" "0" + "origin" "711 -4274 67.9086" + editor + { + "color" "215 112 0" + "groupid" "305562" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -10768]" + } +} +hidden +{ + entity + { + "id" "85886" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round_small.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "544 -4368 160" + editor + { + "color" "247 236 0" + "groupid" "305586" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[1000 -7268]" + } + } +} +entity +{ + "id" "86887" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "0" + "_distance" "0" + "_exponent" "1" + "_fifty_percent_distance" "0" + "_hardfalloff" "0" + "_inner_cone" "30" + "_light" "255 254 225 300" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "_zero_percent_distance" "0" + "angles" "-90 0 0" + "pitch" "-90" + "spawnflags" "0" + "style" "0" + "origin" "544 -4368 153" + editor + { + "color" "247 236 0" + "groupid" "305586" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 -7268]" + } +} +hidden +{ + entity + { + "id" "72739" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "114 114 114" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1528 -2992 16" + editor + { + "color" "211 104 0" + "groupid" "72738" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "72843" + "classname" "prop_static" + "angles" "0 180 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_double_frame_001_16.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2120 -3648 0" + editor + { + "color" "251 140 0" + "groupid" "72842" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "72847" + "classname" "prop_static" + "angles" "0 218.5 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_nuke/hr_nuke/metal_door_001/metal_door_001b_lock.mdl" + "renderamt" "255" + "rendercolor" "93 93 93" + "skin" "0" + "solid" "6" + "uniformscale" "1" + "origin" "2112.4 -3586.97 0.25" + editor + { + "color" "251 140 0" + "groupid" "72842" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 -9768]" + } + } +} +hidden +{ + entity + { + "id" "73099" + "classname" "prop_static" + "angles" "0 0 0" + "disableshadows" "1" + "fademindist" "-1" + "fadescale" "1" + "model" "models/props/de_train/hr_t/tv_wall_mount/tv_wall_mount.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1888 -2939.18 106.019" + editor + { + "color" "100 125 0" + "groupid" "3675452" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +hidden +{ + entity + { + "id" "73103" + "classname" "prop_physics_multiplayer" + "angles" "0 0 0" + "body" "0" + "damagetoenablemotion" "0" + "Damagetype" "0" + "disablereceiveshadows" "0" + "disableshadows" "1" + "ExplodeDamage" "0" + "ExplodeRadius" "0" + "ExploitableByPlayer" "0" + "fademindist" "-1" + "fadescale" "1" + "forcetoenablemotion" "0" + "inertiaScale" "1.0" + "massScale" "0" + "minhealthdmg" "0" + "model" "models/props/de_train/hr_t/hr_tv_plasma/hr_tv_plasma.mdl" + "nodamageforces" "0" + "PerformanceMode" "0" + "physdamagescale" "0.1" + "physicsmode" "2" + "pressuredelay" "0" + "renderamt" "255" + "rendercolor" "255 255 255" + "renderfx" "0" + "rendermode" "0" + "shadowcastdist" "0" + "skin" "0" + "spawnflags" "261" + "origin" "1891 -2939.59 106.019" + editor + { + "color" "100 125 0" + "groupid" "3675452" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 3000]" + } + } +} +entity +{ + "id" "52889" + "classname" "func_detail" + solid + { + "id" "52792" + side + { + "id" "12489" + "plane" "(2084 -4496 16) (2096 -4496 16) (2096 -4704 16)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12488" + "plane" "(2084 -4704 8) (2096 -4704 8) (2096 -4496 8)" + "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" "12487" + "plane" "(2084 -4496 16) (2084 -4704 16) (2084 -4704 8)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 1 -29] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12486" + "plane" "(2096 -4496 8) (2096 -4704 8) (2096 -4704 16)" + "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" "12485" + "plane" "(2096 -4496 16) (2084 -4496 16) (2084 -4496 8)" + "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" "12484" + "plane" "(2096 -4704 8) (2084 -4704 8) (2084 -4704 16)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "52787" + side + { + "id" "12495" + "plane" "(2072 -4496 8) (2084 -4496 8) (2084 -4704 8)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12494" + "plane" "(2072 -4704 0) (2084 -4704 0) (2084 -4496 0)" + "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" "12493" + "plane" "(2072 -4496 8) (2072 -4704 8) (2072 -4704 0)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 1 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12492" + "plane" "(2084 -4496 0) (2084 -4704 0) (2084 -4704 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" "12491" + "plane" "(2084 -4496 8) (2072 -4496 8) (2072 -4496 0)" + "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" "12490" + "plane" "(2084 -4704 0) (2072 -4704 0) (2072 -4704 8)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 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" "52793" + side + { + "id" "12501" + "plane" "(2096 -4496 24) (2108 -4496 24) (2108 -4704 24)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12500" + "plane" "(2096 -4704 16) (2108 -4704 16) (2108 -4496 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" "12499" + "plane" "(2096 -4496 24) (2096 -4704 24) (2096 -4704 16)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 1 -93] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12498" + "plane" "(2108 -4496 16) (2108 -4704 16) (2108 -4704 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" "12497" + "plane" "(2108 -4496 24) (2096 -4496 24) (2096 -4496 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" "12496" + "plane" "(2108 -4704 16) (2096 -4704 16) (2096 -4704 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 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "52794" + side + { + "id" "12507" + "plane" "(2108 -4496 32) (2120 -4496 32) (2120 -4704 32)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12506" + "plane" "(2108 -4704 24) (2120 -4704 24) (2120 -4496 24)" + "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" "12505" + "plane" "(2108 -4496 32) (2108 -4704 32) (2108 -4704 24)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 1 -28] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12504" + "plane" "(2120 -4496 24) (2120 -4704 24) (2120 -4704 32)" + "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" "12503" + "plane" "(2120 -4496 32) (2108 -4496 32) (2108 -4496 24)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12502" + "plane" "(2120 -4704 24) (2108 -4704 24) (2108 -4704 32)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -48] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "52797" + side + { + "id" "12513" + "plane" "(2132 -4496 48) (2144 -4496 48) (2144 -4704 48)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12512" + "plane" "(2132 -4704 40) (2144 -4704 40) (2144 -4496 40)" + "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" "12511" + "plane" "(2132 -4496 48) (2132 -4704 48) (2132 -4704 40)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 1 -31] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12510" + "plane" "(2144 -4496 40) (2144 -4704 40) (2144 -4704 48)" + "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" "12509" + "plane" "(2144 -4496 48) (2132 -4496 48) (2132 -4496 40)" + "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" "12508" + "plane" "(2144 -4704 40) (2132 -4704 40) (2132 -4704 48)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 0 -1 32] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "52798" + side + { + "id" "12519" + "plane" "(2120 -4496 40) (2132 -4496 40) (2132 -4704 40)" + "material" "CS_APOLLO/FLOOR/WOOD4" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[1 0 0 0] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12518" + "plane" "(2120 -4704 32) (2132 -4704 32) (2132 -4496 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" + } + side + { + "id" "12517" + "plane" "(2120 -4496 40) (2120 -4704 40) (2120 -4704 32)" + "material" "METAL/HR_METAL/HR_METAL_TRIM_002" + "uaxis" "[0 1 0 0] 0.125" + "vaxis" "[0 0 1 -91] 0.125" + "rotation" "90" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12516" + "plane" "(2132 -4496 32) (2132 -4704 32) (2132 -4704 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" "12515" + "plane" "(2132 -4496 40) (2120 -4496 40) (2120 -4496 32)" + "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" "12514" + "plane" "(2132 -4704 32) (2120 -4704 32) (2120 -4704 40)" + "material" "TOOLS/TOOLSNODRAW" + "uaxis" "[1 0 0 -32] 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" "25" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[1000 16000]" + } +} +entity +{ + "id" "43099" + "classname" "func_detail" + solid + { + "id" "832055" + side + { + "id" "221198" + "plane" "(666 -5736 56) (666 -5692 56) (760 -5692 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -200] 0.125" + "vaxis" "[0 -1 0 -400] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221197" + "plane" "(666 -5692 52) (666 -5692 56) (666 -5736 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[0 0 1 120] 0.125" + "vaxis" "[0 -1 0 -395] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221196" + "plane" "(760 -5736 52) (760 -5736 56) (760 -5692 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[0 0 -1 215] 0.125" + "vaxis" "[0 -1 0 -399] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221195" + "plane" "(760 -5692 52) (760 -5692 56) (666 -5692 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -200] 0.125" + "vaxis" "[0 0 1 143.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221194" + "plane" "(666 -5736 52) (666 -5736 56) (760 -5736 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -200] 0.125" + "vaxis" "[0 0 -1 367.992] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221193" + "plane" "(666 -5692 52) (666 -5736 52) (760 -5736 52)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -200] 0.125" + "vaxis" "[0 1 0 271.984] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832095" + side + { + "id" "221618" + "plane" "(576 -5694 8) (576 -5734 8) (598 -5734 8)" + "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" "221617" + "plane" "(576 -5734 52) (576 -5734 8) (576 -5694 8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221616" + "plane" "(598 -5694 52) (598 -5694 8) (598 -5734 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 291.996] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221615" + "plane" "(576 -5694 52) (576 -5694 8) (598 -5694 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221614" + "plane" "(598 -5734 52) (598 -5734 8) (576 -5734 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221613" + "plane" "(576 -5734 52) (576 -5694 52) (598 -5694 52)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832146" + side + { + "id" "221342" + "plane" "(826 -5736 56) (826 -5692 56) (848 -5692 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -184] 0.125" + "vaxis" "[0 -1 0 140] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221341" + "plane" "(826 -5692 52) (826 -5692 56) (826 -5736 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[0 1 0 -200] 0.125" + "vaxis" "[0 0 -1 368] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221340" + "plane" "(848 -5736 52) (848 -5736 56) (848 -5692 56)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221339" + "plane" "(848 -5692 52) (848 -5692 56) (826 -5692 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -184] 0.125" + "vaxis" "[0 0 1 171.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221338" + "plane" "(826 -5736 52) (826 -5736 56) (848 -5736 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -200] 0.125" + "vaxis" "[0 0 -1 368] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221337" + "plane" "(826 -5692 52) (826 -5736 52) (848 -5736 52)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[-1 0 0 -59] 0.125" + "vaxis" "[0 -1 0 271] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832096" + side + { + "id" "221624" + "plane" "(576 -5736 56) (576 -5692 56) (600 -5692 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 19] 0.125" + "vaxis" "[0 -1 0 -399] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221623" + "plane" "(576 -5692 52) (576 -5692 56) (576 -5736 56)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221622" + "plane" "(600 -5736 52) (600 -5736 56) (600 -5692 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[0 0 -1 147] 0.125" + "vaxis" "[0 -1 0 -399] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221621" + "plane" "(600 -5692 52) (600 -5692 56) (576 -5692 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 -205] 0.125" + "vaxis" "[0 0 1 173] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221620" + "plane" "(576 -5736 52) (576 -5736 56) (600 -5736 56)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[1 0 0 19] 0.125" + "vaxis" "[0 0 -1 368.996] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221619" + "plane" "(576 -5692 52) (576 -5736 52) (600 -5736 52)" + "material" "METAL/HR_METAL/HR_METAL_PANEL_001" + "uaxis" "[-1 0 0 240] 0.125" + "vaxis" "[0 -1 0 -399] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832145" + side + { + "id" "221336" + "plane" "(828 -5694 8) (828 -5734 8) (848 -5734 8)" + "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" "221335" + "plane" "(828 -5734 52) (828 -5734 8) (828 -5694 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 787.996] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221334" + "plane" "(848 -5694 52) (848 -5694 8) (848 -5734 8)" + "material" "DEV/REFLECTIVITY_10B" + "uaxis" "[0 1 0 16] 0.25" + "vaxis" "[0 0 -1 16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221333" + "plane" "(828 -5694 52) (828 -5694 8) (848 -5694 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221332" + "plane" "(848 -5734 52) (848 -5734 8) (828 -5734 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221331" + "plane" "(828 -5734 52) (828 -5694 52) (848 -5694 52)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "832056" + side + { + "id" "221204" + "plane" "(668 -5694 8) (668 -5734 8) (758 -5734 8)" + "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" "221203" + "plane" "(668 -5734 52) (668 -5734 8) (668 -5694 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 1 0 531.996] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221202" + "plane" "(758 -5694 52) (758 -5694 8) (758 -5734 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[0 -1 0 -763.996] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221201" + "plane" "(668 -5694 52) (668 -5694 8) (758 -5694 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221200" + "plane" "(758 -5734 52) (758 -5734 8) (668 -5734 8)" + "material" "METAL/HR_METAL/HR_METAL_WALL_006" + "uaxis" "[1 0 0 -188] 0.125" + "vaxis" "[0 0 -1 -538] 0.125" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "221199" + "plane" "(668 -5734 52) (668 -5694 52) (758 -5694 52)" + "material" "DEV/REFLECTIVITY_80B" + "uaxis" "[1 0 0 -16] 0.25" + "vaxis" "[0 -1 0 -16] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "0 180 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 6500]" + } +} +hidden +{ + entity + { + "id" "26297" + "classname" "prop_static" + "angles" "0 175 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "205 205 205" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1611 -7418 -34.753" + editor + { + "color" "255 108 0" + "groupid" "2422109" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +entity +{ + "id" "26307" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "936.497 -6833.13 -32.0058" + "BasisU" "-4.37114e-08 -1 0" + "BasisV" "1 -4.37114e-08 0" + "EndU" "2.99999" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_noparking_tiled" + "sides" "219083" + "StartU" "0" + "StartV" "0.999999" + "uv0" "-204.89 -71.5043 0" + "uv1" "-204.89 71.5043 0" + "uv2" "204.89 71.5043 0" + "uv3" "204.89 -71.5043 0" + "origin" "936.306 -6831.81 -29.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +hidden +{ + entity + { + "id" "26497" + "classname" "prop_static" + "angles" "0 5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "18 28 4" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1958 -7525 -34.753" + editor + { + "color" "255 108 0" + "groupid" "2422109" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "26501" + "classname" "prop_static" + "angles" "0 9 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_station_wagon01.mdl" + "renderamt" "255" + "rendercolor" "41 54 12" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1593 -7794 -34.753" + editor + { + "color" "255 108 0" + "groupid" "2422109" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +hidden +{ + entity + { + "id" "26537" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1776 -7489 -32.753" + editor + { + "color" "255 108 0" + "groupid" "26536" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "26545" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1793 -7269 -24.565" + editor + { + "color" "255 108 0" + "groupid" "26536" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "26641" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2335 -6610 -34.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26648" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1693 -6645 -30.753" + editor + { + "color" "0 187 208" + "groupid" "26647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "26652" + "classname" "prop_static" + "angles" "0 199.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/foliage/tall_weeds_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1775 -6671 -27.565" + editor + { + "color" "0 187 208" + "groupid" "26647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "26656" + "classname" "prop_static" + "angles" "0 120 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2007 -6657 -22.565" + editor + { + "color" "0 187 208" + "groupid" "26647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "26660" + "classname" "prop_static" + "angles" "0 165 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/foliage/tall_weeds_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1973 -6661 -29.819" + editor + { + "color" "0 187 208" + "groupid" "26647" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "26664" + "classname" "prop_static" + "angles" "0 161 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_inferno/bushgreensmall.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1229 -6592 -31.753" + editor + { + "color" "0 187 208" + "groupid" "26646" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "26668" + "classname" "prop_static" + "angles" "0 169.5 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/foliage/tall_weeds_02.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1605 -6669 -29.944" + editor + { + "color" "0 187 208" + "groupid" "26646" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2000]" + } + } +} +hidden +{ + entity + { + "id" "26674" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1468 -6662 -30.933" + editor + { + "color" "0 109 118" + "groupid" "26673" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "26682" + "classname" "prop_static" + "angles" "0 84 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "192 192 192" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1712 -6827 -34.753" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +entity +{ + "id" "26687" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1504 -6836 -34.753" + "BasisU" "1 -1.74846e-07 0" + "BasisV" "1.74846e-07 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1504 -6836 -34.753" + editor + { + "color" "0 255 116" + "groupid" "26686" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "26693" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1640 -6838 -34.753" + "BasisU" "1 -1.74846e-07 0" + "BasisV" "1.74846e-07 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1640 -6838 -34.753" + editor + { + "color" "0 255 116" + "groupid" "26686" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "26699" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1721 -6836 -34.753" + "BasisU" "1 -1.74845e-07 0" + "BasisV" "1.74845e-07 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_handicapped_parking" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-31 -31 0" + "uv1" "-31 31 0" + "uv2" "31 31 0" + "uv3" "31 -31 0" + "origin" "1721 -6836 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "26705" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1571 -6838 -34.753" + "BasisU" "1 -1.74845e-07 0" + "BasisV" "1.74845e-07 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_handicapped_parking" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-31 -31 0" + "uv1" "-31 31 0" + "uv2" "31 31 0" + "uv3" "31 -31 0" + "origin" "1571 -6838 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "26711" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1784 -6835 -34.753" + "BasisU" "1 -1.74846e-07 0" + "BasisV" "1.74846e-07 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1784 -6835 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "26717" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1963 -6835 -34.753" + "BasisU" "1 -1.74846e-07 0" + "BasisV" "1.74846e-07 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1963 -6835 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "26723" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "2139 -6833 -34.753" + "BasisU" "1 -1.74846e-07 0" + "BasisV" "1.74846e-07 1 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "2139 -6833 -34.753" + editor + { + "color" "80 150 225" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "26729" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2336 -6714 -34.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26733" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2208 -6714 -34.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26737" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2400 -6714 -34.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26741" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2399 -6610 -34.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26745" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "2207 -6610 -34.933" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26752" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1952 -6714 -34.933" + editor + { + "color" "0 113 206" + "groupid" "26751" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26760" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1824 -6610 -34.933" + editor + { + "color" "0 113 206" + "groupid" "26751" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26768" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1568 -6610 -34.933" + editor + { + "color" "0 113 206" + "groupid" "26751" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26780" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_128.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1952 -6610 -34.933" + editor + { + "color" "0 113 206" + "groupid" "26750" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26788" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_256.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1441 -6714 -34.933" + editor + { + "color" "0 113 206" + "groupid" "26749" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26792" + "classname" "prop_static" + "angles" "0 0 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_64.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1160 -6690 -34.933" + editor + { + "color" "0 113 206" + "groupid" "26749" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26796" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_curve_001_16.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1168 -6690 -34.933" + editor + { + "color" "0 113 206" + "groupid" "26749" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26884" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/curbs_001/curb_straight_001_512.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "864 -8305 -32" + editor + { + "color" "148 133 0" + "groupid" "26863" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 0]" + } + } +} +hidden +{ + entity + { + "id" "26966" + "classname" "prop_static" + "angles" "0 90 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/nuke_light_pole_parking_lot.mdl" + "renderamt" "255" + "rendercolor" "255 255 255" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "902 -8655 -30.933" + editor + { + "color" "148 133 0" + "groupid" "26961" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 2500]" + } + } +} +hidden +{ + entity + { + "id" "26974" + "classname" "prop_static" + "angles" "0 180 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_compact01.mdl" + "renderamt" "255" + "rendercolor" "41 54 12" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1070 -7417 -34.753" + editor + { + "color" "148 133 0" + "groupid" "2435162" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +entity +{ + "id" "27018" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1072 -7605 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1072 -7605 -34.753" + editor + { + "color" "148 133 0" + "groupid" "27017" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +entity +{ + "id" "27024" + "classname" "info_overlay" + "angles" "0 0 0" + "BasisNormal" "0 0 1" + "BasisOrigin" "1088 -7954 -34.753" + "BasisU" "1.31134e-07 1 0" + "BasisV" "-1 1.31134e-07 0" + "EndU" "1" + "EndV" "0" + "fademindist" "-1" + "material" "de_nuke/hr_nuke_parkingstripe" + "sides" "219083" + "StartU" "0" + "StartV" "1" + "uv0" "-128 -128 0" + "uv1" "-128 128 0" + "uv2" "128 128 0" + "uv3" "128 -128 0" + "origin" "1088 -7954 -34.753" + editor + { + "color" "148 133 0" + "groupid" "27017" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 2500]" + } +} +hidden +{ + entity + { + "id" "27030" + "classname" "prop_static" + "angles" "0 3 0" + "disableflashlight" "0" + "disableselfshadowing" "0" + "disableshadowdepth" "0" + "disableshadows" "1" + "disablevertexlighting" "0" + "disableX360" "0" + "drawinfastreflection" "0" + "fademaxdist" "0" + "fademindist" "-1" + "fadescale" "1" + "ignorenormals" "0" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_cars/nuke_station_wagon01.mdl" + "renderamt" "255" + "rendercolor" "43 21 0" + "screenspacefade" "0" + "shadowdepthnocache" "0" + "skin" "0" + "solid" "0" + "uniformscale" "1" + "origin" "1071 -7670 -34.753" + editor + { + "color" "148 133 0" + "groupid" "2435162" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[0 500]" + } + } +} +entity +{ + "id" "24610" + "classname" "water_lod_control" + "cheapwaterenddistance" "2000" + "cheapwaterstartdistance" "1000" + "origin" "2168 -3880 328" + editor + { + "color" "146 183 0" + "groupid" "24609" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -4268]" + } +} +entity +{ + "id" "24616" + "classname" "logic_auto" + "spawnflags" "1" + connections + { + "OnMapSpawn" "tonemap_globalSetAutoExposureMax1.40-1" + "OnMapSpawn" "tonemap_globalSetAutoExposureMin10-1" + "OnMapSpawn" "tonemap_globalSetTonemapRate.20-1" + "OnMapSpawn" "tonemap_globalSetBloomScale.080-1" + "OnMapSpawn" "flag1SetAnimation0.4-1" + "OnMapSpawn" "flag2SetAnimation0.05-1" + "OnMapSpawn" "flag3SetAnimation0.06-1" + "OnMapSpawn" "flag4SetAnimation0.4-1" + } + "origin" "2216 -3880 352" + editor + { + "color" "146 183 0" + "groupid" "24609" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -4268]" + } +} +entity +{ + "id" "24620" + "classname" "info_map_parameters" + "angles" "0 0 0" + "bombradius" "500" + "botmaxvisiondistance" "-1" + "buying" "0" + "disableautogenerateddmspawns" "0" + "petpopulation" "0" + "usenormalspawnsfordm" "0" + "origin" "2168 -3880 352" + editor + { + "color" "146 183 0" + "groupid" "24609" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 -4268]" + } +} +hidden +{ + entity + { + "id" "13390" + "classname" "prop_static" + "angles" "0 270 0" + "disableselfshadowing" "0" + "disableshadows" "0" + "disablevertexlighting" "0" + "disableX360" "0" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "maxcpulevel" "0" + "maxgpulevel" "0" + "mincpulevel" "0" + "mingpulevel" "0" + "model" "models/props/de_nuke/hr_nuke/nuke_light_fixture/recessed_lighting_fixture_round.mdl" + "renderamt" "255" + "rendercolor" "128 227 236" + "skin" "1" + "solid" "0" + "uniformscale" "1" + "origin" "104 -4600 160" + editor + { + "color" "255 255 0" + "visgroupshown" "1" + "visgroupautoshown" "0" + "logicalpos" "[-6768 1500]" + } + } +} +entity +{ + "id" "13394" + "classname" "env_sprite" + "fademaxdist" "1400" + "fademindist" "1200" + "fadescale" "1" + "framerate" "10.0" + "GlowProxySize" "2.0" + "HDRColorScale" "1.0" + "model" "sprites/light_glow03.vmt" + "renderamt" "200" + "rendercolor" "241 205 139" + "rendermode" "9" + "scale" ".5" + "spawnflags" "1" + "origin" "104 -4600 154" + editor + { + "color" "20 140 20" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5500]" + } +} +entity +{ + "id" "13397" + "classname" "light_spot" + "_cone" "75" + "_constant_attn" "2000" + "_exponent" "1" + "_inner_cone" "3" + "_light" "252 242 190 570" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_quadratic_attn" "1" + "angles" "-90 270 0" + "pitch" "-90" + "origin" "104 -4600 138" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 6000]" + } +} +entity +{ + "id" "13402" + "classname" "light" + "_constant_attn" "0" + "_distance" "0" + "_light" "105 214 233 20" + "_lightHDR" "-1 -1 -1 1" + "_lightscaleHDR" "1" + "_linear_attn" "0" + "_quadratic_attn" "1" + "style" "0" + "origin" "104 -4600 123" + editor + { + "color" "220 30 220" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[4500 5000]" + } +} +entity +{ + "id" "11200" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "448 -6480 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "11202" + "classname" "info_player_counterterrorist" + "angles" "0 75 0" + "enabled" "1" + "origin" "272 -6480 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "11204" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "480 -6544 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "11206" + "classname" "info_player_counterterrorist" + "angles" "0 75 0" + "enabled" "1" + "origin" "224 -6528 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "11208" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "352 -6480 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "5979" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "440 -6590 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "4523" + "classname" "func_hostage_rescue" + "origin" "579 -6384.5 8" + "spawnflags" "4097" + "StartDisabled" "0" + solid + { + "id" "4521" + side + { + "id" "2150" + "plane" "(336 -6576 16) (336 -6208 16) (829 -6208 16)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2149" + "plane" "(336 -6208 0) (336 -6576 0) (829 -6576 0)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2148" + "plane" "(336 -6576 0) (336 -6208 0) (336 -6208 16)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2147" + "plane" "(829 -6208 0) (829 -6576 0) (829 -6576 16)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2146" + "plane" "(336 -6208 0) (829 -6208 0) (829 -6208 16)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "2145" + "plane" "(829 -6576 0) (336 -6576 0) (336 -6576 16)" + "material" "TOOLS/TOOLSTRIGGER" + "uaxis" "[1 0 0 24] 0.25" + "vaxis" "[0 0 -1 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "175 172 0" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + editor + { + "color" "175 172 0" + "groupid" "309525" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "730" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "259 -6586 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "739" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "190 -6462 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "741" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "304 -6544 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +entity +{ + "id" "743" + "classname" "info_player_counterterrorist" + "angles" "0 90 0" + "enabled" "1" + "origin" "400 -6544 4" + editor + { + "color" "190 139 0" + "groupid" "340531" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 500]" + } +} +cameras +{ + "activecamera" "0" + camera + { + "position" "[4506.02 -7426.07 1295.94]" + "look" "[4505.12 -7425.75 1295.4]" + } +} +cordons +{ + "active" "0" + cordon + { + "name" "Whole map" + "active" "0" + box + { + "mins" "(-1588 -3364 -808)" + "maxs" "(-150 -2369 1992)" + } + } + cordon + { + "name" "T Spawn" + "active" "0" + box + { + "mins" "(640 -2592 -256)" + "maxs" "(1552 -1712 246.914)" + } + } + cordon + { + "name" "T Spawn - Non playable area" + "active" "0" + box + { + "mins" "(640 -1712 -737.28)" + "maxs" "(3616 -624 737.28)" + } + box + { + "mins" "(1552 -2592 -736)" + "maxs" "(3616 -1712 738.56)" + } + } + cordon + { + "name" "Rocket Room" + "active" "0" + box + { + "mins" "(-3583 -3238 -256)" + "maxs" "(845 -1829 784)" + } + } + cordon + { + "name" "Basement" + "active" "0" + box + { + "mins" "(-1456 -5488 -426.667)" + "maxs" "(2064 -2704 -16)" + } + } + cordon + { + "name" "Space Burgers" + "active" "0" + box + { + "mins" "(-1552 -4080 -48)" + "maxs" "(128 -2816 800)" + } + } + cordon + { + "name" "Staff area" + "active" "0" + box + { + "mins" "(-1472 -3072 -480)" + "maxs" "(-320 -1872 816)" + } + } + cordon + { + "name" "Control Room" + "active" "0" + box + { + "mins" "(497.845 -5872 -336)" + "maxs" "(1488 -5024 -16)" + } + } + cordon + { + "name" "Giftshop" + "active" "0" + box + { + "mins" "(-984 -6776 -176)" + "maxs" "(528 -5176 736)" + } + } + cordon + { + "name" "Test" + "active" "1" + box + { + "mins" "(2120 -3918 -1084)" + "maxs" "(2288 -3808 1604)" + } + } + cordon + { + "name" "CT-Spawn" + "active" "0" + box + { + "mins" "(-808 -6632 -1104)" + "maxs" "(1264 -5584 2368)" + } + } + cordon + { + "name" "Space shuttle exhibit" + "active" "0" + box + { + "mins" "(1136 -4320 -512)" + "maxs" "(3968 -1411 1216)" + } + } + cordon + { + "name" "Entrance-courtyard" + "active" "0" + box + { + "mins" "(-512 -5616 -108)" + "maxs" "(1200 -4624 916)" + } + } + cordon + { + "name" "L-Corner" + "active" "0" + box + { + "mins" "(1296 -3472 -128)" + "maxs" "(2104 -3173.54 616)" + } + box + { + "mins" "(1296 -3176 -128)" + "maxs" "(1864 -2536 616)" + } + } + cordon + { + "name" "Test2" + "active" "0" + box + { + "mins" "(2073.67 -3791.33 -5357)" + "maxs" "(3047 -2695 5603)" + } + } + cordon + { + "name" "Lunar Exhibit" + "active" "1" + box + { + "mins" "(992 -5960 -1528.82)" + "maxs" "(2768 -4080 1528.82)" + } + } +} diff --git a/MCDV/sample_stuff/de_tavr_test.vmx b/MCDV/sample_stuff/de_tavr_test.vmx index d12829c..944e49f 100644 --- a/MCDV/sample_stuff/de_tavr_test.vmx +++ b/MCDV/sample_stuff/de_tavr_test.vmx @@ -2,18 +2,12 @@ versioninfo { "editorversion" "400" "editorbuild" "8075" - "mapversion" "175" + "mapversion" "232" "formatversion" "100" "prefab" "0" } visgroups { - visgroup - { - "name" "tar_layout" - "visgroupid" "8" - "color" "138 131 224" - } visgroup { "name" "some other user group" @@ -21,12 +15,6 @@ visgroups "color" "135 196 85" } visgroup - { - "name" "tar_mask" - "visgroupid" "13" - "color" "223 124 205" - } - visgroup { "name" "aaaaa" "visgroupid" "14" @@ -44,19 +32,37 @@ visgroups "visgroupid" "16" "color" "105 158 119" } + visgroup + { + "name" "tar_layout" + "visgroupid" "8" + "color" "208 97 230" + } + visgroup + { + "name" "tar_overlap" + "visgroupid" "17" + "color" "240 177 198" + } + visgroup + { + "name" "tar_negative" + "visgroupid" "18" + "color" "153 110 231" + } } viewsettings { "bSnapToGrid" "1" "bShowGrid" "1" "bShowLogicalGrid" "0" - "nGridSpacing" "64" + "nGridSpacing" "16" "bShow3DGrid" "0" } world { "id" "1" - "mapversion" "175" + "mapversion" "232" "classname" "worldspawn" "detailmaterial" "detail/detailsprites" "detailvbsp" "detail.vbsp" @@ -64,35 +70,35 @@ world "skyname" "sky_dust" solid { - "id" "537" + "id" "1743" side { - "id" "621" - "plane" "(-181.019 634.51 64) (-90.5097 725.019 64) (0 634.51 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.707107 -0.707107 0 -125.336] 0.25" - "vaxis" "[-0.707107 -0.707107 0 2.66425] 0.25" + "id" "854" + "plane" "(256 0 128) (256 128 128) (512 128 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "620" - "plane" "(-90.5097 725.019 16) (-181.019 634.51 16) (-90.5096 544 16)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.707107 -0.707107 0 -125.336] 0.25" - "vaxis" "[-0.707107 -0.707107 0 2.66425] 0.25" + "id" "853" + "plane" "(256 128 112) (256 0 112) (512 0 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "619" - "plane" "(-181.019 634.51 16) (-90.5097 725.019 16) (-90.5097 725.019 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.707107 0.707107 0 -2.66425] 0.25" + "id" "852" + "plane" "(256 0 112) (256 128 112) (256 128 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -100,10 +106,10 @@ world } side { - "id" "618" - "plane" "(0 634.51 16) (-90.5096 544 16) (-90.5096 544 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.707107 0.707107 0 -2.66425] 0.25" + "id" "851" + "plane" "(512 128 112) (512 0 112) (512 0 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -111,10 +117,10 @@ world } side { - "id" "617" - "plane" "(-90.5097 725.019 16) (0 634.51 16) (0 634.51 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.707107 -0.707107 0 -125.336] 0.25" + "id" "850" + "plane" "(256 128 112) (512 128 112) (512 128 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -122,10 +128,10 @@ world } side { - "id" "616" - "plane" "(-90.5096 544 16) (-181.019 634.51 16) (-181.019 634.51 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.707107 -0.707107 0 -125.336] 0.25" + "id" "849" + "plane" "(512 0 112) (256 0 112) (256 0 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -134,42 +140,42 @@ world editor { "color" "0 175 108" - "visgroupid" "16" + "visgroupid" "17" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "540" + "id" "1759" side { - "id" "633" - "plane" "(-32 688 64) (-32 752 64) (32 752 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "866" + "plane" "(-128 128 128) (-128 256 128) (0 256 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "632" - "plane" "(-32 752 16) (-32 688 16) (32 688 16)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 -64] 0.25" + "id" "865" + "plane" "(-128 256 0) (-128 128 0) (0 128 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "631" - "plane" "(-32 688 16) (-32 752 16) (-32 752 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0 1 0 64] 0.25" + "id" "864" + "plane" "(-128 128 0) (-128 256 0) (-128 256 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -177,10 +183,10 @@ world } side { - "id" "630" - "plane" "(32 752 16) (32 688 16) (32 688 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0 1 0 64] 0.25" + "id" "863" + "plane" "(0 256 0) (0 128 0) (0 128 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -188,10 +194,10 @@ world } side { - "id" "629" - "plane" "(-32 752 16) (32 752 16) (32 752 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[1 0 0 0] 0.25" + "id" "862" + "plane" "(-128 256 0) (0 256 0) (0 256 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -199,10 +205,10 @@ world } side { - "id" "628" - "plane" "(32 688 16) (-32 688 16) (-32 688 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[1 0 0 0] 0.25" + "id" "861" + "plane" "(0 128 0) (-128 128 0) (-128 128 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -211,42 +217,43 @@ world editor { "color" "0 175 108" - "visgroupid" "16" + "visgroupid" "9" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "575" + "id" "1788" side { - "id" "681" - "plane" "(128 128 128) (128 896 128) (256 896 128)" + "id" "878" + "plane" "(384 -256 128) (384 0 128) (512 0 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 -1 0 -384] 0.25" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "680" - "plane" "(128 896 0) (128 128 0) (256 128 0)" + "id" "877" + "plane" "(384 0 112) (384 -256 112) (512 -256 112)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 -1 0 -384] 0.25" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -448] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "679" - "plane" "(128 128 0) (128 896 0) (128 896 128)" + "id" "876" + "plane" "(384 -256 112) (384 0 112) (384 0 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 384] 0.25" + "uaxis" "[0 1 0 448] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -254,10 +261,10 @@ world } side { - "id" "678" - "plane" "(256 896 0) (256 128 0) (256 128 128)" + "id" "875" + "plane" "(512 0 112) (512 -256 112) (512 -256 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 384] 0.25" + "uaxis" "[0 1 0 448] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -265,10 +272,10 @@ world } side { - "id" "677" - "plane" "(128 896 0) (256 896 0) (256 896 128)" + "id" "874" + "plane" "(384 0 112) (512 0 112) (512 0 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 128] 0.25" + "uaxis" "[1 0 0 -384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -276,10 +283,10 @@ world } side { - "id" "676" - "plane" "(256 128 0) (128 128 0) (128 128 128)" + "id" "873" + "plane" "(512 -256 112) (384 -256 112) (384 -256 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 128] 0.25" + "uaxis" "[1 0 0 -384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -288,76 +295,76 @@ world editor { "color" "0 175 108" - "visgroupid" "8" + "visgroupid" "17" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "586" + "id" "1792" side { - "id" "693" - "plane" "(-128 660.286 96) (-107.714 703.789 96) (-64.2115 683.503 96)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.906308 -0.422618 0 108.225] 0.25" - "vaxis" "[-0.422618 -0.906308 0 1.30804] 0.25" + "id" "890" + "plane" "(256 -512 128) (256 -256 128) (512 -256 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "692" - "plane" "(-107.714 703.789 64) (-128 660.286 64) (-84.4972 640 64)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.906308 -0.422618 0 108.225] 0.25" - "vaxis" "[-0.422618 -0.906308 0 1.30804] 0.25" + "id" "889" + "plane" "(256 -256 0) (256 -512 0) (512 -512 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "691" - "plane" "(-128 660.286 64) (-107.714 703.789 64) (-107.714 703.789 96)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.422618 0.906308 0 -1.30804] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "888" + "plane" "(256 -512 0) (256 -256 0) (256 -256 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "690" - "plane" "(-64.2115 683.503 64) (-84.4972 640 64) (-84.4972 640 96)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.422618 0.906308 0 -1.30804] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "887" + "plane" "(512 -256 0) (512 -512 0) (512 -512 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "689" - "plane" "(-107.714 703.789 64) (-64.2115 683.503 64) (-64.2115 683.503 96)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.906308 -0.422618 0 108.225] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "886" + "plane" "(256 -256 0) (512 -256 0) (512 -256 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "688" - "plane" "(-84.4972 640 64) (-128 660.286 64) (-128 660.286 96)" - "material" "RYAN_DEV/PURE_ORANGE2" - "uaxis" "[0.906308 -0.422618 0 108.225] 0.25" - "vaxis" "[0 0 -1 64] 0.25" + "id" "885" + "plane" "(512 -512 0) (256 -512 0) (256 -512 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -365,42 +372,32 @@ world editor { "color" "0 175 108" - "visgroupid" "16" + "visgroupid" "9" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "662" - side - { - "id" "699" - "plane" "(-224 896 32) (-224 1024 32) (-192 1024 32)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 384] 0.25" - "vaxis" "[0 -1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "1810" side { - "id" "698" - "plane" "(-224 1024 16) (-224 1024 32) (-224 896 32)" + "id" "907" + "plane" "(0 -256 0) (0 -512 0) (256 -512 0)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "697" - "plane" "(-192 896 16) (-192 896 32) (-192 1024 32)" + "id" "906" + "plane" "(256 -256 0) (256 -512 0) (256 -512 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" + "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -408,10 +405,10 @@ world } side { - "id" "696" - "plane" "(-192 1024 16) (-192 1024 32) (-224 1024 32)" + "id" "905" + "plane" "(0 -256 0) (256 -256 0) (256 -256 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 384] 0.25" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -419,10 +416,10 @@ world } side { - "id" "695" - "plane" "(-224 896 16) (-224 896 32) (-192 896 32)" + "id" "904" + "plane" "(256 -512 0) (0 -512 0) (256 -512 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 384] 0.25" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -430,8 +427,8 @@ world } side { - "id" "694" - "plane" "(-224 1024 16) (-224 896 16) (-192 896 16)" + "id" "903" + "plane" "(0 -512 0) (0 -256 0) (256 -256 128)" "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -442,6 +439,7 @@ world editor { "color" "0 175 108" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -449,35 +447,35 @@ world } solid { - "id" "663" + "id" "1817" side { - "id" "705" - "plane" "(-192 896 48) (-192 1024 48) (-160 1024 48)" + "id" "919" + "plane" "(0 128 128) (0 256 128) (128 256 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 128] 0.25" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "704" - "plane" "(-192 1024 16) (-192 1024 48) (-192 896 48)" + "id" "918" + "plane" "(0 256 112) (0 128 112) (128 128 112)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "703" - "plane" "(-160 896 16) (-160 896 48) (-160 1024 48)" + "id" "917" + "plane" "(0 128 112) (0 256 112) (0 256 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" + "uaxis" "[0 1 0 -64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -485,10 +483,10 @@ world } side { - "id" "702" - "plane" "(-160 1024 16) (-160 1024 48) (-192 1024 48)" + "id" "916" + "plane" "(128 256 112) (128 128 112) (128 128 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 256] 0.25" + "uaxis" "[0 1 0 -64] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -496,10 +494,10 @@ world } side { - "id" "701" - "plane" "(-192 896 16) (-192 896 48) (-160 896 48)" + "id" "915" + "plane" "(0 256 112) (128 256 112) (128 256 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 256] 0.25" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -507,11 +505,11 @@ world } side { - "id" "700" - "plane" "(-192 1024 16) (-192 896 16) (-160 896 16)" + "id" "914" + "plane" "(128 128 112) (0 128 112) (0 128 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -519,42 +517,31 @@ world editor { "color" "0 175 108" - "visgroupid" "8" + "visgroupid" "17" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "664" - side - { - "id" "711" - "plane" "(-160 896 64) (-160 1024 64) (-128 1024 64)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 -1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "1819" side { - "id" "710" - "plane" "(-160 1024 16) (-160 1024 64) (-160 896 64)" + "id" "929" + "plane" "(0 384 0) (-128 384 0) (-128 256 0)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 -1 0 128] 0.25" + "vaxis" "[-1 0 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "709" - "plane" "(-128 896 16) (-128 896 64) (-128 1024 64)" + "id" "928" + "plane" "(-1.52588e-05 256 0) (-128 256 0) (-128 256 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" + "uaxis" "[1 0 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -562,10 +549,10 @@ world } side { - "id" "708" - "plane" "(-128 1024 16) (-128 1024 64) (-160 1024 64)" + "id" "927" + "plane" "(0 384 0) (-1.52588e-05 256 0) (-1.52588e-05 256 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 128] 0.25" + "uaxis" "[0 -1 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -573,10 +560,10 @@ world } side { - "id" "707" - "plane" "(-160 896 16) (-160 896 64) (-128 896 64)" + "id" "926" + "plane" "(-128 256 0) (-128 384 0) (-128 256 128)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 128] 0.25" + "uaxis" "[0 -1 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -584,11 +571,11 @@ world } side { - "id" "706" - "plane" "(-160 1024 16) (-160 896 16) (-128 896 16)" + "id" "925" + "plane" "(-128 384 0) (0 384 0) (-1.52588e-05 256 128)" "material" "TERRI/DEV/BSP" - "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" @@ -596,6 +583,7 @@ world editor { "color" "0 175 108" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -603,530 +591,69 @@ world } solid { - "id" "665" + "id" "1597" side { - "id" "717" - "plane" "(-96 896 96) (-96 1024 96) (-64 1024 96)" + "id" "818" + "plane" "(-256 0 -64) (-256 768 -64) (-128 768 -64)" "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 384] 0.25" - "vaxis" "[0 -1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "716" - "plane" "(-96 1024 16) (-96 1024 96) (-96 896 96)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "715" - "plane" "(-64 896 16) (-64 896 96) (-64 1024 96)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "714" - "plane" "(-64 1024 16) (-64 1024 96) (-96 1024 96)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "713" - "plane" "(-96 896 16) (-96 896 96) (-64 896 96)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "712" - "plane" "(-96 1024 16) (-96 896 16) (-64 896 16)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 175 108" - "visgroupid" "8" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "666" - side - { - "id" "723" - "plane" "(-128 896 80) (-128 1024 80) (-96 1024 80)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "722" - "plane" "(-128 1024 16) (-128 1024 80) (-128 896 80)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "721" - "plane" "(-96 896 16) (-96 896 80) (-96 1024 80)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "720" - "plane" "(-96 1024 16) (-96 1024 80) (-128 1024 80)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "719" - "plane" "(-128 896 16) (-128 896 80) (-96 896 80)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "718" - "plane" "(-128 1024 16) (-128 896 16) (-96 896 16)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 175 108" - "visgroupid" "8" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "667" - side - { - "id" "729" - "plane" "(-64 896 112) (-64 1024 112) (-32 1024 112)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 -1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "728" - "plane" "(-64 1024 16) (-64 1024 112) (-64 896 112)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "727" - "plane" "(-32 896 16) (-32 896 112) (-32 1024 112)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "726" - "plane" "(-32 1024 16) (-32 1024 112) (-64 1024 112)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "725" - "plane" "(-64 896 16) (-64 896 112) (-32 896 112)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 256] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "724" - "plane" "(-64 1024 16) (-64 896 16) (-32 896 16)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 175 108" - "visgroupid" "8" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "668" - side - { - "id" "735" - "plane" "(-32 896 128) (-32 1024 128) (256 1024 128)" + "id" "817" + "plane" "(-256 768 -192) (-256 0 -192) (-128 0 -192)" "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 -1 0 128] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "734" - "plane" "(-32 1024 16) (-32 1024 128) (-32 896 128)" + "id" "816" + "plane" "(-256 0 -192) (-256 768 -192) (-256 768 -64)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 384] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "733" - "plane" "(256 896 16) (256 896 128) (256 1024 128)" + "id" "815" + "plane" "(-128 768 -192) (-128 0 -192) (-128 0 -64)" "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0 1 0 384] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "732" - "plane" "(256 1024 16) (256 1024 128) (-32 1024 128)" + "id" "814" + "plane" "(-256 768 -192) (-128 768 -192) (-128 768 -64)" "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "731" - "plane" "(-32 896 16) (-32 896 128) (256 896 128)" + "id" "813" + "plane" "(-128 0 -192) (-256 0 -192) (-256 0 -64)" "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "730" - "plane" "(-32 1024 16) (-32 896 16) (256 896 16)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 175 108" - "visgroupid" "8" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "472" - side - { - "id" "591" - "plane" "(-64 176 128) (-64 272 128) (32 272 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 -192] 0.25" - "vaxis" "[0 -1 0 320] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "590" - "plane" "(-64 272 0) (-64 176 0) (32 176 0)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 -192] 0.25" - "vaxis" "[0 -1 0 320] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "589" - "plane" "(-64 176 0) (-64 272 0) (-64 272 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -320] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "588" - "plane" "(32 272 0) (32 176 0) (32 176 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -320] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "587" - "plane" "(-64 272 0) (32 272 0) (32 272 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 -192] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "586" - "plane" "(32 176 0) (-64 176 0) (-64 176 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 -192] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 175 108" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "458" - side - { - "id" "567" - "plane" "(480 0 144) (480 256 144) (512 256 144)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 -384] 0.25" - "vaxis" "[0 -1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "566" - "plane" "(480 256 0) (480 0 0) (512 0 0)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 -384] 0.25" - "vaxis" "[0 -1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "565" - "plane" "(480 0 0) (480 256 0) (480 256 144)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "564" - "plane" "(512 256 0) (512 0 0) (512 0 144)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "563" - "plane" "(480 256 0) (512 256 0) (512 256 144)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 -384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "562" - "plane" "(512 0 0) (480 0 0) (480 0 144)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 -384] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 175 108" - "visgroupid" "8" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "460" - side - { - "id" "579" - "plane" "(512 0 160) (512 256 160) (752 256 160)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "578" - "plane" "(512 256 0) (512 0 0) (752 0 0)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 128] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "577" - "plane" "(512 0 0) (512 256 0) (512 256 160)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "576" - "plane" "(752 256 0) (752 0 0) (752 0 160)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0 1 0 -128] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "575" - "plane" "(512 256 0) (752 256 0) (752 256 160)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "574" - "plane" "(752 0 0) (512 0 0) (512 0 160)" - "material" "TERRI/DEV/BSP" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "vaxis" "[0 0 -1 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -1141,112 +668,118 @@ world } solid { - "id" "409" - side - { - "id" "477" - "plane" "(532.717 360 128) (425.048 761.825 128) (1012.33 919.187 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0.965926 0.258819 0 -382.96] 0.25" - "vaxis" "[0.258819 -0.965926 0 455.424] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "476" - "plane" "(425.048 761.825 64) (532.717 360 64) (1120 517.362 64)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0.965926 0.258819 0 -382.96] 0.25" - "vaxis" "[0.258819 -0.965926 0 455.424] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "475" - "plane" "(532.717 360 64) (425.048 761.825 64) (425.048 761.825 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[-0.258819 0.965926 0 -455.424] 0.25" - "vaxis" "[0 0 -1 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "474" - "plane" "(1012.33 919.187 64) (1120 517.362 64) (1120 517.362 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[-0.258819 0.965926 0 -455.424] 0.25" - "vaxis" "[0 0 -1 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "1559" side { - "id" "473" - "plane" "(425.048 761.825 64) (1012.33 919.187 64) (1012.33 919.187 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0.965926 0.258819 0 -382.96] 0.25" - "vaxis" "[0 0 -1 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - side - { - "id" "472" - "plane" "(1120 517.362 64) (532.717 360 64) (532.717 360 128)" - "material" "TERRI/DEV/BSP" - "uaxis" "[0.965926 0.258819 0 -382.96] 0.25" - "vaxis" "[0 0 -1 256] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } - editor - { - "color" "0 175 108" - "visgroupid" "13" - "visgroupshown" "1" - "visgroupautoshown" "1" - } - } - solid - { - "id" "346" - side - { - "id" "429" - "plane" "(-1024 -896 29) (0 -896 232) (0 -1280 232)" + "id" "782" + "plane" "(320 192 16) (320 656 16) (832 656 16)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[320 192 16]" + "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 -1 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 0 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 -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 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" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 20.492 6.67029 40.2677 54.8914 55.4196 40.4898 16.5796" + "row2" "0 35.6258 32.521 10.6896 25.3758 44.6682 48.4857 39.0042 30.4379" + "row3" "0 34.1354 32.1346 16.6924 4.1161 14.0137 20.6763 20.4739 22.8429" + "row4" "0 21.045 20.8285 9.18505 7.61042 11.4602 10.2189 5.54346 5.10047" + "row5" "0 8.46279 10.0525 8.8661 16.6208 25.9485 28.0294 24.62 5.91427" + "row6" "0 0 6.13995 9.43488 13.7057 21.383 18.6234 10.8397 7.20205" + "row7" "0 2.2387 1.02507 1.71671 2.76542 2.56507 12.4549 18.8342 24.26" + "row8" "0 0.565658 2.94325 7.90804 9.79556 15.237 28.1327 33.681 31.8214" + } + 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 1 9 1 1 1 1 9 9 9" + "row1" "9 1 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" "428" - "plane" "(-1024 -1280 0) (0 -1280 192) (0 -896 192)" + "id" "781" + "plane" "(320 656 0) (320 192 0) (832 192 0)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[1 0 0 -256] 0.25" + "vaxis" "[0 -1 0 -256] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "427" - "plane" "(-1024 -896 0) (-1024 -896 29) (-1024 -1280 29)" + "id" "780" + "plane" "(320 192 0) (320 656 0) (320 656 16)" "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1254,10 +787,10 @@ world } side { - "id" "426" - "plane" "(0 -1280 192) (0 -1280 232) (0 -896 232)" + "id" "779" + "plane" "(832 656 0) (832 192 0) (832 192 16)" "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "uaxis" "[0 1 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1265,10 +798,10 @@ world } side { - "id" "425" - "plane" "(-1024 -896 29) (-1024 -896 0) (0 -896 192)" + "id" "778" + "plane" "(320 656 0) (832 656 0) (832 656 16)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1276,10 +809,10 @@ world } side { - "id" "424" - "plane" "(-1024 -1280 0) (-1024 -1280 29) (0 -1280 232)" + "id" "777" + "plane" "(832 192 0) (320 192 0) (320 192 16)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1287,7 +820,8 @@ world } editor { - "color" "0 145 202" + "color" "0 175 128" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -1295,76 +829,160 @@ world } solid { - "id" "347" + "id" "1564" side { - "id" "435" - "plane" "(0 -1280 232) (0 -896 232) (640 -896 232)" + "id" "806" + "plane" "(472.935 815.35 108.544) (368.933 1263.54 168.59) (797.229 1396.06 -78.6872)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.836516 0.258819 -0.482963 343.105] 0.25" + "vaxis" "[0.224144 -0.965926 -0.12941 222.435] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" + dispinfo + { + "power" "3" + "startposition" "[472.935 815.352 108.543]" + "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.5 0 -0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row2" "0 0 0 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row3" "0 0 0 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row4" "0 0 0 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 0.5 0 0.866025" + "row5" "0 0 0 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025" + "row6" "0 0 0 0 0 0 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 0.5 0 0.866025" + "row7" "0 0 0 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 -0.5 0 -0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row8" "0 0 0 -0.5 0 -0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + } + distances + { + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 20.492 6.67029 40.2677 54.8914 55.4196 40.4898 16.5796" + "row2" "0 35.6258 32.521 10.6896 25.3758 44.6682 48.4857 39.0042 30.4379" + "row3" "0 34.1354 32.1346 16.6924 4.1161 14.0137 20.6763 20.4739 22.8429" + "row4" "0 21.045 20.8285 9.18505 7.61042 11.4602 10.2189 5.54346 5.10047" + "row5" "0 8.46279 10.0525 8.8661 16.6208 25.9485 28.0294 24.62 5.91427" + "row6" "0 0 6.13995 9.43488 13.7057 21.383 18.6234 10.8397 7.20205" + "row7" "0 2.2387 1.02507 1.71671 2.76542 2.56507 12.4549 18.8342 24.26" + "row8" "0 0.565658 2.94325 7.90804 9.79556 15.237 28.1327 33.681 31.8214" + } + 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.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row1" "0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row2" "0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row3" "0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row4" "0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row5" "0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row6" "0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row7" "0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + "row8" "0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025 0.5 0 0.866025" + } + 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 0 9 9 9 1 1 0 0 0 0 0 0 0" + "row1" "9 0 9 0 9 9 9 9 9 9 9 9 1 1 1 0" + "row2" "0 0 9 9 9 9 9 9 9 9 9 9 9 1 1 9" + "row3" "0 0 9 9 9 9 9 9 9 9 9 9 9 9 9 9" + "row4" "1 0 9 9 9 9 9 9 1 9 9 9 9 9 9 9" + "row5" "1 9 1 9 9 9 9 1 1 1 9 9 9 9 9 9" + "row6" "9 9 9 9 9 9 9 9 9 0 1 1 1 1 9 9" + "row7" "9 9 9 9 9 9 9 9 9 9 9 9 9 9 1 9" + } + allowed_verts + { + "10" "-1 -1 -1 -1 -1 -1 -1 -1 -1 -1" + } + } } side { - "id" "434" - "plane" "(0 -896 188.5) (0 -1280 188.5) (640 -1280 188.5)" + "id" "805" + "plane" "(360.933 1263.54 154.733) (464.935 815.35 94.6874) (893.232 947.865 -152.59)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "uaxis" "[0.836516 0.258819 -0.482963 343.105] 0.25" + "vaxis" "[0.224144 -0.965926 -0.12941 222.435] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "433" - "plane" "(0 -1280 188.5) (0 -896 188.5) (0 -896 232)" + "id" "804" + "plane" "(464.935 815.35 94.6874) (360.933 1263.54 154.733) (368.933 1263.54 168.59)" "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.224144 0.965926 0.12941 -222.435] 0.25" + "vaxis" "[-0.5 0 -0.866025 233.877] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "432" - "plane" "(640 -896 188.5) (640 -1280 188.5) (640 -1280 232)" + "id" "803" + "plane" "(789.229 1396.06 -92.5436) (893.232 947.865 -152.59) (901.232 947.865 -138.733)" "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[-0.224144 0.965926 0.12941 -222.435] 0.25" + "vaxis" "[-0.5 0 -0.866025 233.877] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "431" - "plane" "(0 -896 188.5) (640 -896 188.5) (640 -896 232)" + "id" "802" + "plane" "(360.933 1263.54 154.733) (789.229 1396.06 -92.5436) (797.229 1396.06 -78.6872)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.836516 0.258819 -0.482963 343.105] 0.25" + "vaxis" "[-0.5 0 -0.866025 233.877] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "430" - "plane" "(640 -1280 188.5) (0 -1280 188.5) (0 -1280 232)" + "id" "801" + "plane" "(893.232 947.865 -152.59) (464.935 815.35 94.6874) (472.935 815.35 108.544)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "uaxis" "[0.836516 0.258819 -0.482963 343.105] 0.25" + "vaxis" "[-0.5 0 -0.866025 233.877] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 145 202" + "color" "0 175 128" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -1372,23 +990,12 @@ world } solid { - "id" "355" - side - { - "id" "447" - "plane" "(640 -1280 232) (640 -384 232) (1088 -384 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" - "rotation" "0" - "lightmapscale" "16" - "smoothing_groups" "0" - } + "id" "1466" side { - "id" "446" - "plane" "(640 -384 188.5) (640 -1280 188.5) (1088 -1280 188.5)" - "material" "DEV/GRAYGRID" + "id" "746" + "plane" "(0 896 16) (0 640 16) (128 640 16)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -1397,20 +1004,20 @@ world } side { - "id" "445" - "plane" "(640 -1280 188.5) (640 -384 188.5) (640 -384 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "745" + "plane" "(0 640 16) (0 896 16) (0 896 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "444" - "plane" "(1088 -384 188.5) (1088 -1280 188.5) (1088 -1280 232)" - "material" "DEV/GRAYGRID" + "id" "744" + "plane" "(128 896 16) (128 640 16) (128 896 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -1419,9 +1026,9 @@ world } side { - "id" "443" - "plane" "(640 -384 188.5) (1088 -384 188.5) (1088 -384 232)" - "material" "DEV/GRAYGRID" + "id" "743" + "plane" "(0 896 16) (128 896 16) (128 896 128)" + "material" "TOOLS/TOOLSNODRAW" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -1430,18 +1037,19 @@ world } side { - "id" "442" - "plane" "(1088 -1280 188.5) (640 -1280 188.5) (640 -1280 232)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "742" + "plane" "(128 640 16) (0 640 16) (0 896 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 145 202" + "color" "0 245 134" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -1449,47 +1057,47 @@ world } solid { - "id" "364" + "id" "1526" side { - "id" "459" - "plane" "(88 -1776 40) (88 -496 40) (536 -496 40)" + "id" "770" + "plane" "(944 112 16) (944 704 16) (1392 704 16)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 -1 0 -448] 0.25" + "uaxis" "[1 0 0 -192] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" dispinfo { "power" "3" - "startposition" "[88 -1776 40]" + "startposition" "[944 112 16]" "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 1 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" + "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 -1 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 0 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 -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 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" } distances { - "row0" "28.5641 29.367 28.0358 24.6081 16.0778 7.54846 0.3125 5.48589 8.21252" - "row1" "38.5866 38.7276 36.3806 30.903 23.6889 14.4912 2.20114 10.9428 20.1528" - "row2" "39.9487 39.4828 37.1057 33.867 29.7344 22.4416 10.8467 0.557701 9.93951" - "row3" "16.4893 20.1311 18.2943 15.0892 11.0577 7.65746 5.77108 4.72449 1.48034" - "row4" "7.34191 1.49294 3.21162 6.85134 6.44022 6.87125 9.5973 13.0968 12.2005" - "row5" "20.3329 17.4989 11.1015 5.82806 0.796417 3.77695 6.79787 6.98206 2.95658" - "row6" "2.43473 2.53638 1.74496 1.62716 3.54679 5.38161 4.67983 6.38845 7.14895" - "row7" "22.492 23.8103 26.6173 28.3238 28.0682 25.8498 21.666 17.7569 15.0155" - "row8" "26.9892 30.9842 34.6238 36.3283 36.0735 33.8587 29.6814 23.6073 19.5358" + "row0" "0 0 0 0 0 0 0 0 0" + "row1" "0 0 20.492 6.67029 40.2677 54.8914 55.4196 40.4898 16.5796" + "row2" "0 35.6258 32.521 10.6896 25.3758 44.6682 48.4857 39.0042 30.4379" + "row3" "0 34.1354 32.1346 16.6924 4.1161 14.0137 20.6763 20.4739 22.8429" + "row4" "0 21.045 20.8285 9.18505 7.61042 11.4602 10.2189 5.54346 5.10047" + "row5" "0 8.46279 10.0525 8.8661 16.6208 25.9485 28.0294 24.62 5.91427" + "row6" "0 0 6.13995 9.43488 13.7057 21.383 18.6234 10.8397 7.20205" + "row7" "0 2.2387 1.02507 1.71671 2.76542 2.56507 12.4549 18.8342 24.26" + "row8" "0 0.565658 2.94325 7.90804 9.79556 15.237 28.1327 33.681 31.8214" } offsets { @@ -1529,8 +1137,8 @@ world } 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" + "row0" "9 9 9 9 9 9 9 1 9 9 9 9 1 9 9 9" + "row1" "9 1 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" @@ -1546,62 +1154,63 @@ world } side { - "id" "458" - "plane" "(88 -496 -3.5) (88 -1776 -3.5) (536 -1776 -3.5)" + "id" "769" + "plane" "(944 704 0) (944 112 0) (1392 112 0)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 -1 0 -448] 0.25" + "uaxis" "[1 0 0 -192] 0.25" + "vaxis" "[0 -1 0 -64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "457" - "plane" "(88 -1776 -3.5) (88 -496 -3.5) (88 -496 40)" + "id" "768" + "plane" "(944 112 0) (944 704 0) (944 704 16)" "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 448] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "456" - "plane" "(536 -496 -3.5) (536 -1776 -3.5) (536 -1776 40)" + "id" "767" + "plane" "(1392 704 0) (1392 112 0) (1392 112 16)" "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 448] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "uaxis" "[0 1 0 64] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "455" - "plane" "(88 -496 -3.5) (536 -496 -3.5) (536 -496 40)" + "id" "766" + "plane" "(944 704 0) (1392 704 0) (1392 704 16)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 0 -1 -256] 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" "454" - "plane" "(536 -1776 -3.5) (88 -1776 -3.5) (88 -1776 40)" + "id" "765" + "plane" "(1392 112 0) (944 112 0) (944 112 16)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 160] 0.25" - "vaxis" "[0 0 -1 -256] 0.25" + "uaxis" "[1 0 0 -192] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "0 145 202" + "color" "0 175 128" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -1609,35 +1218,35 @@ world } solid { - "id" "343" + "id" "537" side { - "id" "411" - "plane" "(-1603.08 -874 16) (-2236.65 -240.432 16) (-1512.57 483.645 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0.707107 0.707107 0 350.233] 0.25" - "vaxis" "[0.707107 -0.707107 0 14.1422] 0.25" + "id" "621" + "plane" "(-181.023 650.508 64) (-90.5117 741.02 64) (0 650.516 64)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.707107 -0.707107 0 -80.0811] 0.25" + "vaxis" "[-0.707107 -0.707107 0 47.9191] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "410" - "plane" "(-2236.65 -240.432 0) (-1603.08 -874 0) (-879 -149.923 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[0.707107 0.707107 0 350.233] 0.25" - "vaxis" "[0.707107 -0.707107 0 14.1422] 0.25" + "id" "620" + "plane" "(-90.5039 741.027 16) (-181.02 650.511 16) (-90.5117 560 16)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.707107 -0.707107 0 -80.0811] 0.25" + "vaxis" "[-0.707107 -0.707107 0 47.9191] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "409" - "plane" "(-1603.08 -874 0) (-2236.65 -240.432 0) (-2236.65 -240.432 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[-0.707107 0.707107 0 -14.1422] 0.25" + "id" "619" + "plane" "(-181.02 650.508 16) (-90.5117 741.016 16) (-90.5117 741.02 64)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.707107 0.707107 0 -47.9191] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1645,10 +1254,10 @@ world } side { - "id" "408" - "plane" "(-1512.57 483.645 0) (-879 -149.923 0) (-879 -149.923 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[-0.707107 0.707107 0 -14.1422] 0.25" + "id" "618" + "plane" "(0 650.508 16) (-90.5085 560 16) (-90.5078 560 64)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.707107 0.707107 0 -47.9191] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1656,10 +1265,10 @@ world } side { - "id" "407" - "plane" "(-2236.65 -240.432 0) (-1512.57 483.645 0) (-1512.57 483.645 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0.707107 0.707107 0 350.233] 0.25" + "id" "617" + "plane" "(-90.5117 741.02 16) (0 650.509 16) (0 650.508 64)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.707107 -0.707107 0 -80.0811] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1667,10 +1276,10 @@ world } side { - "id" "406" - "plane" "(-879 -149.923 0) (-1603.08 -874 0) (-1603.08 -874 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0.707107 0.707107 0 350.233] 0.25" + "id" "616" + "plane" "(-90.5078 560 16) (-181.02 650.512 16) (-181.02 650.508 64)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.707107 -0.707107 0 -80.0811] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1678,20 +1287,21 @@ world } editor { - "color" "0 145 202" - "visgroupid" "8" + "color" "0 175 108" + "visgroupid" "16" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "40" + "id" "540" side { - "id" "105" - "plane" "(-4128 4128 544) (4128 4128 544) (4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "633" + "plane" "(-64 704 64) (-64 768 64) (0 768 64)" + "material" "RYAN_DEV/PURE_ORANGE2" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" @@ -1700,20 +1310,20 @@ world } side { - "id" "104" - "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "632" + "plane" "(-64 768 16) (-64 704 16) (0 704 16)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "103" - "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "631" + "plane" "(-64 704 16) (-64 768 16) (-64 768 64)" + "material" "RYAN_DEV/PURE_ORANGE2" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -1722,10 +1332,10 @@ world } side { - "id" "102" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "630" + "plane" "(0 768 16) (0 704 16) (0 704 64)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1733,9 +1343,9 @@ world } side { - "id" "101" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "629" + "plane" "(-64 768 16) (0 768 16) (0 768 64)" + "material" "RYAN_DEV/PURE_ORANGE2" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -1744,54 +1354,55 @@ world } side { - "id" "100" - "plane" "(4096 -4096 512) (4096 4096 512) (-4096 4096 512)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "628" + "plane" "(0 704 16) (-64 704 16) (-64 704 64)" + "material" "RYAN_DEV/PURE_ORANGE2" "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" "220 220 220" - "groupid" "52" + "color" "0 175 108" + "visgroupid" "16" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "42" + "id" "575" side { - "id" "111" - "plane" "(-4128 -4128 -160) (4128 -4128 -160) (4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "681" + "plane" "(128 7.62939e-05 128) (128 896 128) (256 896 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "110" - "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "680" + "plane" "(128 896 0) (128 7.62939e-05 0) (256 7.62939e-05 0)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -384] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "109" - "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "679" + "plane" "(128 7.62939e-05 0) (128 896 0) (128 896 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1799,10 +1410,10 @@ world } side { - "id" "108" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "678" + "plane" "(256 896 0) (256 7.62939e-05 0) (256 7.62939e-05 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1810,10 +1421,10 @@ world } side { - "id" "107" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "677" + "plane" "(128 896 0) (256 896 0) (256 896 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1821,120 +1432,122 @@ world } side { - "id" "106" - "plane" "(4096 4096 -128) (4096 -4096 -128) (-4096 -4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "676" + "plane" "(256 7.62939e-05 0) (128 7.62939e-05 0) (128 7.62939e-05 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 220 220" - "groupid" "52" + "color" "0 175 108" + "visgroupid" "9" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "44" + "id" "586" side { - "id" "117" - "plane" "(-4128 4128 544) (-4128 -4128 544) (-4128 -4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "693" + "plane" "(-128 660.286 96) (-107.714 703.789 96) (-64.2115 683.503 96)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.906308 -0.422618 0 108.225] 0.25" + "vaxis" "[-0.422618 -0.906308 0 1.30804] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "116" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "692" + "plane" "(-107.714 703.789 64) (-128 660.286 64) (-84.4972 640 64)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.906308 -0.422618 0 108.225] 0.25" + "vaxis" "[-0.422618 -0.906308 0 1.30804] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "115" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "691" + "plane" "(-128 660.286 64) (-107.714 703.789 64) (-107.714 703.789 96)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.422618 0.906308 0 -1.30804] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "114" - "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "690" + "plane" "(-64.2115 683.503 64) (-84.4972 640 64) (-84.4972 640 96)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.422618 0.906308 0 -1.30804] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "113" - "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "689" + "plane" "(-107.714 703.789 64) (-64.2115 683.503 64) (-64.2115 683.503 96)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.906308 -0.422618 0 108.225] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "112" - "plane" "(-4096 -4096 -128) (-4096 -4096 512) (-4096 4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "688" + "plane" "(-84.4972 640 64) (-128 660.286 64) (-128 660.286 96)" + "material" "RYAN_DEV/PURE_ORANGE2" + "uaxis" "[0.906308 -0.422618 0 108.225] 0.25" + "vaxis" "[0 0 -1 64] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } editor { - "color" "220 220 220" - "groupid" "52" + "color" "0 175 108" + "visgroupid" "16" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "46" + "id" "662" side { - "id" "123" - "plane" "(4128 4128 -160) (4128 -4128 -160) (4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "699" + "plane" "(-224 896 32) (-224 1024 32) (-192 1024 32)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "122" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "698" + "plane" "(-224 1024 16) (-224 1024 32) (-224 896 32)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1942,10 +1555,10 @@ world } side { - "id" "121" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" + "id" "697" + "plane" "(-192 896 16) (-192 896 32) (-192 1024 32)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -1953,87 +1566,88 @@ world } side { - "id" "120" - "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "696" + "plane" "(-192 1024 16) (-192 1024 32) (-224 1024 32)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "119" - "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "695" + "plane" "(-224 896 16) (-224 896 32) (-192 896 32)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "118" - "plane" "(4096 -4096 512) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "694" + "plane" "(-224 1024 16) (-224 896 16) (-192 896 16)" + "material" "TERRI/DEV/BSP" + "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" "52" + "color" "0 175 108" + "visgroupid" "9" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "48" + "id" "663" side { - "id" "129" - "plane" "(4128 4128 544) (-4128 4128 544) (-4128 4128 -160)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "705" + "plane" "(-192 896 48) (-192 1024 48) (-160 1024 48)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "128" - "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "704" + "plane" "(-192 1024 16) (-192 1024 48) (-192 896 48)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "127" - "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "703" + "plane" "(-160 896 16) (-160 896 48) (-160 1024 48)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "126" - "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "702" + "plane" "(-160 1024 16) (-160 1024 48) (-192 1024 48)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2041,10 +1655,10 @@ world } side { - "id" "125" - "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "701" + "plane" "(-192 896 16) (-192 896 48) (-160 896 48)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2052,65 +1666,66 @@ world } side { - "id" "124" - "plane" "(-4096 4096 -128) (-4096 4096 512) (4096 4096 512)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "700" + "plane" "(-192 1024 16) (-192 896 16) (-160 896 16)" + "material" "TERRI/DEV/BSP" "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" "220 220 220" - "groupid" "52" + "color" "0 175 108" + "visgroupid" "9" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "50" + "id" "664" side { - "id" "135" - "plane" "(4128 -4128 -160) (-4128 -4128 -160) (-4128 -4128 544)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 0 -1 0] 0.25" + "id" "711" + "plane" "(-160 896 64) (-160 1024 64) (-128 1024 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "134" - "plane" "(-4096 4096 512) (4096 4096 512) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "710" + "plane" "(-160 1024 16) (-160 1024 64) (-160 896 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "133" - "plane" "(-4096 -4096 -128) (4096 -4096 -128) (4096 4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "709" + "plane" "(-128 896 16) (-128 896 64) (-128 1024 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "132" - "plane" "(-4096 4096 512) (-4096 -4096 512) (-4096 -4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "708" + "plane" "(-128 1024 16) (-128 1024 64) (-160 1024 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2118,10 +1733,10 @@ world } side { - "id" "131" - "plane" "(4096 4096 -128) (4096 -4096 -128) (4096 -4096 512)" - "material" "TOOLS/TOOLSSKYBOX" - "uaxis" "[0 1 0 0] 0.25" + "id" "707" + "plane" "(-160 896 16) (-160 896 64) (-128 896 64)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2129,54 +1744,55 @@ world } side { - "id" "130" - "plane" "(-4096 -4096 512) (-4096 -4096 -128) (4096 -4096 -128)" - "material" "TOOLS/TOOLSSKYBOX" + "id" "706" + "plane" "(-160 1024 16) (-160 896 16) (-128 896 16)" + "material" "TERRI/DEV/BSP" "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" "220 220 220" - "groupid" "52" + "color" "0 175 108" + "visgroupid" "9" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "79" + "id" "665" side { - "id" "177" - "plane" "(-384 128 16) (256 128 16) (256 -512 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "717" + "plane" "(-96 896 96) (-96 1024 96) (-64 1024 96)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 384] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "176" - "plane" "(-384 -512 0) (256 -512 0) (256 128 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "716" + "plane" "(-96 1024 16) (-96 1024 96) (-96 896 96)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "175" - "plane" "(-384 128 16) (-384 -512 16) (-384 -512 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "715" + "plane" "(-64 896 16) (-64 896 96) (-64 1024 96)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2184,10 +1800,10 @@ world } side { - "id" "174" - "plane" "(256 128 0) (256 -512 0) (256 -512 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "714" + "plane" "(-64 1024 16) (-64 1024 96) (-96 1024 96)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2195,10 +1811,10 @@ world } side { - "id" "173" - "plane" "(256 128 16) (-384 128 16) (-384 128 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "713" + "plane" "(-96 896 16) (-96 896 96) (-64 896 96)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 384] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2206,57 +1822,55 @@ world } side { - "id" "172" - "plane" "(256 -512 0) (-384 -512 0) (-384 -512 16)" - "material" "DEV/GRAYGRID" + "id" "712" + "plane" "(-96 1024 16) (-96 896 16) (-64 896 16)" + "material" "TERRI/DEV/BSP" "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 202" - "visgroupid" "15" - "visgroupid" "8" + "color" "0 175 108" "visgroupid" "9" - "visgroupid" "14" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } solid { - "id" "81" + "id" "666" side { - "id" "189" - "plane" "(256 640 16) (1408 640 16) (1408 -128 16)" - "material" "DEV/GRAYGRID" + "id" "723" + "plane" "(-128 896 80) (-128 1024 80) (-96 1024 80)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "188" - "plane" "(256 -128 0) (1408 -128 0) (1408 640 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "722" + "plane" "(-128 1024 16) (-128 1024 80) (-128 896 80)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "187" - "plane" "(256 640 16) (256 -128 16) (256 -128 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "721" + "plane" "(-96 896 16) (-96 896 80) (-96 1024 80)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2264,10 +1878,10 @@ world } side { - "id" "186" - "plane" "(1408 640 0) (1408 -128 0) (1408 -128 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "720" + "plane" "(-96 1024 16) (-96 1024 80) (-128 1024 80)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2275,9 +1889,9 @@ world } side { - "id" "185" - "plane" "(1408 640 16) (256 640 16) (256 640 0)" - "material" "DEV/GRAYGRID" + "id" "719" + "plane" "(-128 896 16) (-128 896 80) (-96 896 80)" + "material" "TERRI/DEV/BSP" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" @@ -2286,18 +1900,19 @@ world } side { - "id" "184" - "plane" "(1408 -128 0) (256 -128 0) (256 -128 16)" - "material" "DEV/GRAYGRID" + "id" "718" + "plane" "(-128 1024 16) (-128 896 16) (-96 896 16)" + "material" "TERRI/DEV/BSP" "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 202" + "color" "0 175 108" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -2305,35 +1920,35 @@ world } solid { - "id" "96" + "id" "667" side { - "id" "213" - "plane" "(-1408 2944 16) (-768 2944 16) (-768 1920 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "729" + "plane" "(-64 896 112) (-64 1024 112) (-32 1024 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 256] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "212" - "plane" "(-1408 1920 0) (-768 1920 0) (-768 2944 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "728" + "plane" "(-64 1024 16) (-64 1024 112) (-64 896 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "211" - "plane" "(-1408 2944 16) (-1408 1920 16) (-1408 1920 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "727" + "plane" "(-32 896 16) (-32 896 112) (-32 1024 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2341,10 +1956,10 @@ world } side { - "id" "210" - "plane" "(-768 2944 0) (-768 1920 0) (-768 1920 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "726" + "plane" "(-32 1024 16) (-32 1024 112) (-64 1024 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2352,10 +1967,10 @@ world } side { - "id" "209" - "plane" "(-768 2944 16) (-1408 2944 16) (-1408 2944 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "725" + "plane" "(-64 896 16) (-64 896 112) (-32 896 112)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2363,18 +1978,19 @@ world } side { - "id" "208" - "plane" "(-768 1920 0) (-1408 1920 0) (-1408 1920 16)" - "material" "DEV/GRAYGRID" + "id" "724" + "plane" "(-64 1024 16) (-64 896 16) (-32 896 16)" + "material" "TERRI/DEV/BSP" "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 202" + "color" "0 175 108" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -2382,35 +1998,35 @@ world } solid { - "id" "97" + "id" "668" side { - "id" "225" - "plane" "(-768 2432 16) (256 2432 128) (256 2048 128)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "735" + "plane" "(-32 896 128) (-32 1024 128) (256 1024 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 128] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "224" - "plane" "(-768 2048 0) (256 2048 0) (256 2432 0)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" - "vaxis" "[0 -1 0 0] 0.25" + "id" "734" + "plane" "(-32 1024 16) (-32 1024 128) (-32 896 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" + "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" } side { - "id" "223" - "plane" "(-768 2432 0) (-768 2432 16) (-768 2048 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "733" + "plane" "(256 896 16) (256 896 128) (256 1024 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[0 1 0 -128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2418,10 +2034,10 @@ world } side { - "id" "222" - "plane" "(256 2048 0) (256 2048 128) (256 2432 128)" - "material" "DEV/GRAYGRID" - "uaxis" "[0 1 0 0] 0.25" + "id" "732" + "plane" "(256 1024 16) (256 1024 128) (-32 1024 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2429,10 +2045,10 @@ world } side { - "id" "221" - "plane" "(256 2432 0) (256 2432 128) (-768 2432 16)" - "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "id" "731" + "plane" "(-32 896 16) (-32 896 128) (256 896 128)" + "material" "TERRI/DEV/BSP" + "uaxis" "[1 0 0 128] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2440,18 +2056,19 @@ world } side { - "id" "220" - "plane" "(-768 2048 0) (-768 2048 16) (256 2048 128)" - "material" "DEV/GRAYGRID" + "id" "730" + "plane" "(-32 1024 16) (-32 896 16) (256 896 16)" + "material" "TERRI/DEV/BSP" "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 202" + "color" "0 175 108" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -2459,11 +2076,11 @@ world } solid { - "id" "99" + "id" "79" side { - "id" "237" - "plane" "(1408 128 128) (1408 512 128) (2432 512 128)" + "id" "993" + "plane" "(-384 -512 16) (-384 128 16) (512 128 16)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2473,8 +2090,8 @@ world } side { - "id" "236" - "plane" "(1408 512 0) (1408 128 0) (2432 128 0)" + "id" "992" + "plane" "(-384 128 0) (-384 -512 0) (512 -512 0)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2484,8 +2101,8 @@ world } side { - "id" "235" - "plane" "(1408 128 0) (1408 512 0) (1408 512 128)" + "id" "991" + "plane" "(-384 -512 0) (-384 128 0) (-384 128 16)" "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2495,8 +2112,8 @@ world } side { - "id" "234" - "plane" "(2432 512 0) (2432 128 0) (2432 128 128)" + "id" "990" + "plane" "(512 128 0) (512 -512 0) (512 -512 16)" "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2506,8 +2123,8 @@ world } side { - "id" "233" - "plane" "(1408 512 0) (2432 512 0) (2432 512 128)" + "id" "989" + "plane" "(-384 128 0) (512 128 0) (512 128 16)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2517,8 +2134,8 @@ world } side { - "id" "232" - "plane" "(2432 128 0) (1408 128 0) (1408 128 128)" + "id" "988" + "plane" "(512 -512 0) (-384 -512 0) (-384 -512 16)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2529,6 +2146,9 @@ world editor { "color" "0 145 202" + "visgroupid" "15" + "visgroupid" "9" + "visgroupid" "14" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" @@ -2536,11 +2156,11 @@ world } solid { - "id" "100" + "id" "96" side { - "id" "249" - "plane" "(1792 512 128) (1792 1664 128) (2176 1664 128)" + "id" "213" + "plane" "(-384 1024 16) (-384 1472 16) (192 1472 16)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2550,8 +2170,8 @@ world } side { - "id" "248" - "plane" "(1792 1664 0) (1792 512 0) (2176 512 0)" + "id" "212" + "plane" "(-384 1472 0) (-384 1024 0) (192 1024 0)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -2561,8 +2181,8 @@ world } side { - "id" "247" - "plane" "(1792 512 0) (1792 1664 0) (1792 1664 128)" + "id" "211" + "plane" "(-384 1024 0) (-384 1472 0) (-384 1472 16)" "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2572,8 +2192,8 @@ world } side { - "id" "246" - "plane" "(2176 1664 0) (2176 512 0) (2176 512 128)" + "id" "210" + "plane" "(192 1472 0) (192 1024 0) (192 1024 16)" "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2583,8 +2203,8 @@ world } side { - "id" "245" - "plane" "(1792 1664 0) (2176 1664 0) (2176 1664 128)" + "id" "209" + "plane" "(-384 1472 0) (192 1472 0) (192 1472 16)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2594,8 +2214,8 @@ world } side { - "id" "244" - "plane" "(2176 512 0) (1792 512 0) (1792 512 128)" + "id" "208" + "plane" "(192 1024 0) (-384 1024 0) (-384 1024 16)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2606,20 +2226,26 @@ world editor { "color" "0 145 202" + "visgroupid" "9" "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" } } +} +entity +{ + "id" "1631" + "classname" "func_detail" solid { - "id" "102" + "id" "1632" side { - "id" "261" - "plane" "(256 1664 128) (256 2560 128) (2176 2560 128)" + "id" "830" + "plane" "(-320 128 16) (-320 640 16) (128 640 16)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -256] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2627,10 +2253,10 @@ world } side { - "id" "260" - "plane" "(256 2560 0) (256 1664 0) (2176 1664 0)" + "id" "829" + "plane" "(-320 640 0) (-320 128 0) (128 128 0)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -256] 0.25" "vaxis" "[0 -1 0 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2638,8 +2264,8 @@ world } side { - "id" "259" - "plane" "(256 1664 0) (256 2560 0) (256 2560 128)" + "id" "828" + "plane" "(-320 128 0) (-320 640 0) (-320 640 16)" "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2649,8 +2275,8 @@ world } side { - "id" "258" - "plane" "(2176 2560 0) (2176 1664 0) (2176 1664 128)" + "id" "827" + "plane" "(128 640 0) (128 128 0) (128 128 16)" "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -2660,10 +2286,10 @@ world } side { - "id" "257" - "plane" "(256 2560 0) (2176 2560 0) (2176 2560 128)" + "id" "826" + "plane" "(-320 640 0) (128 640 0) (128 640 16)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2671,10 +2297,10 @@ world } side { - "id" "256" - "plane" "(2176 1664 0) (256 1664 0) (256 1664 128)" + "id" "825" + "plane" "(128 128 0) (-320 128 0) (-320 128 16)" "material" "DEV/GRAYGRID" - "uaxis" "[1 0 0 0] 0.25" + "uaxis" "[1 0 0 -256] 0.25" "vaxis" "[0 0 -1 0] 0.25" "rotation" "0" "lightmapscale" "16" @@ -2682,43 +2308,84 @@ world } editor { - "color" "0 145 202" - "visgroupid" "8" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } + editor + { + "color" "0 180 0" + "visgroupid" "9" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" + } +} +entity +{ + "id" "1484" + "classname" "tar_max" + "origin" "128 528 128" + editor + { + "color" "220 30 220" + "visgroupid" "9" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1000]" + } +} +entity +{ + "id" "1486" + "classname" "tar_min" + "origin" "-176 817.158 16" + editor + { + "color" "220 30 220" + "visgroupid" "9" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 1500]" + } +} +entity +{ + "id" "1517" + "classname" "func_detail" solid { - "id" "144" + "id" "1518" side { - "id" "291" - "plane" "(-768 640 0) (-2048 640 0) (-2048 -512 0)" + "id" "758" + "plane" "(-768 128 16) (-768 640 16) (-320 640 16)" "material" "DEV/GRAYGRID" - "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" "290" - "plane" "(-768 -512 0) (-768 -512 64) (-768 640 64)" + "id" "757" + "plane" "(-768 640 0) (-768 128 0) (-320 128 0)" "material" "DEV/GRAYGRID" - "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" "289" - "plane" "(-2048 640 0) (-2048 640 128) (-2048 -512 128)" + "id" "756" + "plane" "(-768 128 0) (-768 640 0) (-768 640 16)" "material" "DEV/GRAYGRID" - "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" @@ -2726,10 +2393,10 @@ world } side { - "id" "288" - "plane" "(-2048 -512 0) (-2048 -512 128) (-768 -512 64)" + "id" "755" + "plane" "(-320 640 0) (-320 128 0) (-320 128 16)" "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" @@ -2737,10 +2404,10 @@ world } side { - "id" "287" - "plane" "(-768 640 0) (-768 640 64) (-2048 640 128)" + "id" "754" + "plane" "(-768 640 0) (-320 640 0) (-320 640 16)" "material" "DEV/GRAYGRID" - "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" @@ -2748,33 +2415,30 @@ world } side { - "id" "286" - "plane" "(-768 -512 64) (-2048 -512 128) (-2048 640 128)" + "id" "753" + "plane" "(-320 128 0) (-768 128 0) (-768 128 16)" "material" "DEV/GRAYGRID" - "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 145 202" - "visgroupid" "8" - "visgroupid" "9" + "color" "0 180 0" "visgroupshown" "1" "visgroupautoshown" "1" } } - group + editor { - "id" "52" - editor - { - "color" "220 220 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - } + "color" "0 180 0" + "visgroupid" "9" + "visgroupid" "8" + "visgroupshown" "1" + "visgroupautoshown" "1" + "logicalpos" "[0 0]" } } entity @@ -2782,10 +2446,10 @@ entity "id" "1369" "classname" "tar_config" "aoSize" "8" - "colorScheme" "-1" - "customCol0" "39 56 79" - "customCol1" "77 74 72" - "customCol2" "178 113 65" + "colorScheme" "6" + "customCol0" "255 0 128" + "customCol1" "0 128 192" + "customCol2" "255 255 0" "enableAO" "1" "enableOutline" "1" "outlineWidth" "2" @@ -2795,72 +2459,13 @@ entity "zColAO" "0 0 0 255" "zColBuyzone" "46 211 57 170" "zColCover" "179 179 179 255" - "zColObjective" "196 75 44 255" + "zColObjective" "217 91 38 255" "zColOutline" "204 204 204 153" "origin" "-386.122 479.551 33" editor { "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "1220" - "classname" "func_instance" - "angles" "-0 0 0" - "file" "instancetest.vmf" - "origin" "1024 320 0" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "1291" - "classname" "func_instance" - "angles" "-0 0 0" - "file" "instancetest.vmf" - "origin" "1088 2048 128" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "1300" - "classname" "func_instance" - "angles" "-0 -60 0" - "file" "instancetest.vmf" - "origin" "1920 2112 128" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 0]" - } -} -entity -{ - "id" "1309" - "classname" "func_instance" - "angles" "-0 -135 0" - "file" "instancetest.vmf" - "origin" "-1472 64 128" - editor - { - "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -2870,15 +2475,15 @@ entity { "id" "1185" "classname" "prop_static" - "angles" "0 0 0" + "angles" "0 30 0" "fademindist" "-1" "fadescale" "1" - "model" "models/props/de_nuke/car_nuke.mdl" + "model" "models/dev/a310_ref.mdl" "renderamt" "255" "rendercolor" "255 255 255" "skin" "0" "solid" "6" - "uniformscale" "1" + "uniformscale" ".3" "origin" "-320 256 16" editor { @@ -2909,6 +2514,7 @@ entity { "color" "255 255 0" "visgroupid" "16" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -2957,6 +2563,7 @@ entity { "color" "255 255 0" "visgroupid" "16" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -2979,7 +2586,7 @@ entity editor { "color" "255 255 0" - "visgroupid" "16" + "visgroupid" "18" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -3020,7 +2627,7 @@ entity side { "id" "465" - "plane" "(-768 1024 16) (256 1024 16) (256 128 16)" + "plane" "(-768 640 16) (-768 1024 16) (256 1024 16)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3031,7 +2638,7 @@ entity side { "id" "464" - "plane" "(-768 128 0) (256 128 0) (256 1024 0)" + "plane" "(-768 1024 0) (-768 640 0) (256 640 0)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 -1 0 0] 0.25" @@ -3042,7 +2649,7 @@ entity side { "id" "463" - "plane" "(-768 1024 16) (-768 128 16) (-768 128 0)" + "plane" "(-768 640 0) (-768 1024 0) (-768 1024 16)" "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3053,7 +2660,7 @@ entity side { "id" "462" - "plane" "(256 1024 0) (256 128 0) (256 128 16)" + "plane" "(256 1024 0) (256 640 0) (256 640 16)" "material" "DEV/GRAYGRID" "uaxis" "[0 1 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3064,7 +2671,7 @@ entity side { "id" "461" - "plane" "(256 1024 16) (-768 1024 16) (-768 1024 0)" + "plane" "(-768 1024 0) (256 1024 0) (256 1024 16)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3075,7 +2682,7 @@ entity side { "id" "460" - "plane" "(256 128 0) (-768 128 0) (-768 128 16)" + "plane" "(256 640 0) (-768 640 0) (-768 640 16)" "material" "DEV/GRAYGRID" "uaxis" "[1 0 0 0] 0.25" "vaxis" "[0 0 -1 0] 0.25" @@ -3093,8 +2700,8 @@ entity editor { "color" "0 180 0" - "visgroupid" "8" "visgroupid" "9" + "visgroupid" "8" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -3106,10 +2713,11 @@ entity "classname" "info_player_terrorist" "angles" "0 0 0" "enabled" "1" - "origin" "-1166.53 2417.49 17" + "origin" "-132.6 1334.99 17" editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 0]" @@ -3121,10 +2729,11 @@ entity "classname" "info_player_terrorist" "angles" "0 0 0" "enabled" "1" - "origin" "-1033.93 2268.37 17" + "origin" "0 1185.87 17" editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 500]" @@ -3136,10 +2745,11 @@ entity "classname" "info_player_terrorist" "angles" "0 0 0" "enabled" "1" - "origin" "-1187.76 2316.88 17" + "origin" "-153.83 1234.38 17" editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -3151,10 +2761,11 @@ entity "classname" "info_player_terrorist" "angles" "0 0 0" "enabled" "1" - "origin" "-1236.52 2234.5 17" + "origin" "-202.59 1152 17" editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1500]" @@ -3170,6 +2781,7 @@ entity editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 2000]" @@ -3185,6 +2797,7 @@ entity editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 2500]" @@ -3200,6 +2813,7 @@ entity editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 3000]" @@ -3215,6 +2829,7 @@ entity editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 3500]" @@ -3230,6 +2845,7 @@ entity editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 4000]" @@ -3246,10 +2862,10 @@ entity side { "id" "315" - "plane" "(-64 -576 160) (-64 -192 160) (416 -192 160)" + "plane" "(-384 -512 160) (-384 -128 160) (96 -128 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 17.0667] 3.75" - "vaxis" "[0 -1 0 -64] 3" + "uaxis" "[1 0 0 -25.6] 3.75" + "vaxis" "[0 -1 0 -42.6667] 3" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3257,10 +2873,10 @@ entity side { "id" "314" - "plane" "(-64 -192 16) (-64 -576 16) (416 -576 16)" + "plane" "(-384 -128 16) (-384 -512 16) (96 -512 16)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 17.0667] 3.75" - "vaxis" "[0 -1 0 -64] 3" + "uaxis" "[1 0 0 -25.6] 3.75" + "vaxis" "[0 -1 0 -42.6667] 3" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3268,9 +2884,9 @@ entity side { "id" "313" - "plane" "(-64 -576 16) (-64 -192 16) (-64 -192 160)" + "plane" "(-384 -512 16) (-384 -128 16) (-384 -128 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[0 1 0 64] 3" + "uaxis" "[0 1 0 42.6667] 3" "vaxis" "[0 0 -1 14.2222] 1.125" "rotation" "0" "lightmapscale" "16" @@ -3279,9 +2895,9 @@ entity side { "id" "312" - "plane" "(416 -192 16) (416 -576 16) (416 -576 160)" + "plane" "(96 -128 16) (96 -512 16) (96 -512 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[0 1 0 64] 3" + "uaxis" "[0 1 0 42.6667] 3" "vaxis" "[0 0 -1 14.2222] 1.125" "rotation" "0" "lightmapscale" "16" @@ -3290,9 +2906,9 @@ entity side { "id" "311" - "plane" "(-64 -192 16) (416 -192 16) (416 -192 160)" + "plane" "(-384 -128 16) (96 -128 16) (96 -128 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 17.0667] 3.75" + "uaxis" "[1 0 0 -25.6] 3.75" "vaxis" "[0 0 -1 14.2222] 1.125" "rotation" "0" "lightmapscale" "16" @@ -3301,9 +2917,9 @@ entity side { "id" "310" - "plane" "(416 -576 16) (-64 -576 16) (-64 -576 160)" + "plane" "(96 -512 16) (-384 -512 16) (-384 -512 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 17.0667] 3.75" + "uaxis" "[1 0 0 -25.6] 3.75" "vaxis" "[0 0 -1 14.2222] 1.125" "rotation" "0" "lightmapscale" "16" @@ -3319,6 +2935,7 @@ entity editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -3335,10 +2952,10 @@ entity side { "id" "327" - "plane" "(-1328 2912 160) (-848 2912 160) (-848 2528 160)" + "plane" "(-320 1088 160) (-320 1472 160) (192 1472 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 98.1333] 3.75" - "vaxis" "[0 -1 0 74.6667] 3" + "uaxis" "[1 0 0 -51.2] 3.75" + "vaxis" "[0 -1 0 -21.3333] 3" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3346,10 +2963,10 @@ entity side { "id" "326" - "plane" "(-1328 2528 16) (-848 2528 16) (-848 2912 16)" + "plane" "(-320 1472 16) (-320 1088 16) (192 1088 16)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 98.1333] 3.75" - "vaxis" "[0 -1 0 74.6667] 3" + "uaxis" "[1 0 0 -51.2] 3.75" + "vaxis" "[0 -1 0 -21.3333] 3" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3357,9 +2974,9 @@ entity side { "id" "325" - "plane" "(-1328 2912 160) (-1328 2528 160) (-1328 2528 16)" + "plane" "(-320 1088 16) (-320 1472 16) (-320 1472 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[0 1 0 -74.6667] 3" + "uaxis" "[0 1 0 21.3333] 3" "vaxis" "[0 0 -1 14.2222] 1.125" "rotation" "0" "lightmapscale" "16" @@ -3368,9 +2985,9 @@ entity side { "id" "324" - "plane" "(-848 2912 16) (-848 2528 16) (-848 2528 160)" + "plane" "(192 1472 16) (192 1088 16) (192 1088 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[0 1 0 -74.6667] 3" + "uaxis" "[0 1 0 21.3333] 3" "vaxis" "[0 0 -1 14.2222] 1.125" "rotation" "0" "lightmapscale" "16" @@ -3379,9 +2996,9 @@ entity side { "id" "323" - "plane" "(-848 2912 160) (-1328 2912 160) (-1328 2912 16)" + "plane" "(-320 1472 16) (192 1472 16) (192 1472 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 98.1333] 3.75" + "uaxis" "[1 0 0 -51.2] 3.75" "vaxis" "[0 0 -1 14.2222] 1.125" "rotation" "0" "lightmapscale" "16" @@ -3390,9 +3007,9 @@ entity side { "id" "322" - "plane" "(-848 2528 16) (-1328 2528 16) (-1328 2528 160)" + "plane" "(192 1088 16) (-320 1088 16) (-320 1088 160)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 98.1333] 3.75" + "uaxis" "[1 0 0 -51.2] 3.75" "vaxis" "[0 0 -1 14.2222] 1.125" "rotation" "0" "lightmapscale" "16" @@ -3408,6 +3025,7 @@ entity editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 1000]" @@ -3424,10 +3042,10 @@ entity side { "id" "351" - "plane" "(1968 1424 192) (2160 1424 192) (2160 1200 192)" + "plane" "(-394.67 416 192) (-394.67 800 192) (-32 800 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 -82.2859] 1.75" - "vaxis" "[0 -1 0 44] 4" + "uaxis" "[1 0 0 36.5715] 1.75" + "vaxis" "[0 -1 0 -24] 4" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3435,10 +3053,10 @@ entity side { "id" "350" - "plane" "(1968 1200 16) (2160 1200 16) (2160 1424 16)" + "plane" "(-394.67 800 16) (-394.67 416 16) (-32 416 16)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 -82.2859] 1.75" - "vaxis" "[0 -1 0 44] 4" + "uaxis" "[1 0 0 36.5715] 1.75" + "vaxis" "[0 -1 0 -24] 4" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3446,9 +3064,9 @@ entity side { "id" "349" - "plane" "(1968 1424 192) (1968 1200 192) (1968 1200 16)" + "plane" "(-394.667 416 16) (-394.667 800 16) (-394.667 800 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[0 1 0 -44] 4" + "uaxis" "[0 1 0 24] 4" "vaxis" "[0 0 -1 11.6364] 1.375" "rotation" "0" "lightmapscale" "16" @@ -3457,9 +3075,9 @@ entity side { "id" "348" - "plane" "(2160 1424 16) (2160 1200 16) (2160 1200 192)" + "plane" "(-32 800 16) (-32 416 16) (-32 416 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[0 1 0 -44] 4" + "uaxis" "[0 1 0 24] 4" "vaxis" "[0 0 -1 11.6364] 1.375" "rotation" "0" "lightmapscale" "16" @@ -3468,9 +3086,9 @@ entity side { "id" "347" - "plane" "(2160 1424 192) (1968 1424 192) (1968 1424 16)" + "plane" "(-394.668 800 16) (-32 800 16) (-32 800 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 -82.2859] 1.75" + "uaxis" "[1 0 0 36.5715] 1.75" "vaxis" "[0 0 -1 11.6364] 1.375" "rotation" "0" "lightmapscale" "16" @@ -3479,9 +3097,9 @@ entity side { "id" "346" - "plane" "(2160 1200 16) (1968 1200 16) (1968 1200 192)" + "plane" "(-32 416 16) (-394.672 416 16) (-394.668 416 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 -82.2859] 1.75" + "uaxis" "[1 0 0 36.5715] 1.75" "vaxis" "[0 0 -1 11.6364] 1.375" "rotation" "0" "lightmapscale" "16" @@ -3500,10 +3118,10 @@ entity side { "id" "363" - "plane" "(1872 1344 192) (1968 1344 192) (1968 1200 192)" + "plane" "(-576 416 192) (-576 662.855 192) (-394.667 662.855 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 27.4284] 1.75" - "vaxis" "[0 -1 0 44] 4" + "uaxis" "[1 0 0 18.2856] 1.75" + "vaxis" "[0 -1 0 -24] 4" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3511,10 +3129,10 @@ entity side { "id" "362" - "plane" "(1872 1200 16) (1968 1200 16) (1968 1344 16)" + "plane" "(-576 662.855 16) (-576 416 16) (-394.667 416 16)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 27.4284] 1.75" - "vaxis" "[0 -1 0 44] 4" + "uaxis" "[1 0 0 18.2856] 1.75" + "vaxis" "[0 -1 0 -24] 4" "rotation" "0" "lightmapscale" "16" "smoothing_groups" "0" @@ -3522,9 +3140,9 @@ entity side { "id" "361" - "plane" "(1872 1344 192) (1872 1200 192) (1872 1200 16)" + "plane" "(-576 416 16) (-576 662.855 16) (-576 662.855 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[0 1 0 -44] 4" + "uaxis" "[0 1 0 24] 4" "vaxis" "[0 0 -1 11.6364] 1.375" "rotation" "0" "lightmapscale" "16" @@ -3533,9 +3151,9 @@ entity side { "id" "360" - "plane" "(1968 1344 16) (1968 1200 16) (1968 1200 192)" + "plane" "(-394.667 662.855 16) (-394.667 416 16) (-394.667 416 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[0 1 0 -44] 4" + "uaxis" "[0 1 0 24] 4" "vaxis" "[0 0 -1 11.6364] 1.375" "rotation" "0" "lightmapscale" "16" @@ -3544,9 +3162,9 @@ entity side { "id" "359" - "plane" "(1968 1344 192) (1872 1344 192) (1872 1344 16)" + "plane" "(-576 662.857 16) (-394.667 662.857 16) (-394.668 662.857 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 27.4284] 1.75" + "uaxis" "[1 0 0 18.2856] 1.75" "vaxis" "[0 0 -1 11.6364] 1.375" "rotation" "0" "lightmapscale" "16" @@ -3555,9 +3173,9 @@ entity side { "id" "358" - "plane" "(1968 1200 16) (1872 1200 16) (1872 1200 192)" + "plane" "(-394.668 416 16) (-576 416 16) (-576 416 192)" "material" "TERRI/TOOLS/TOOLS_TRIGGER" - "uaxis" "[1 0 0 27.4284] 1.75" + "uaxis" "[1 0 0 18.2856] 1.75" "vaxis" "[0 0 -1 11.6364] 1.375" "rotation" "0" "lightmapscale" "16" @@ -3573,28 +3191,13 @@ entity editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 2000]" } } entity -{ - "id" "57" - "classname" "info_player_terrorist" - "angles" "0 0 0" - "enabled" "1" - "priority" "-1" - "origin" "1081 1884 32" - editor - { - "color" "220 30 220" - "visgroupshown" "1" - "visgroupautoshown" "1" - "logicalpos" "[0 7000]" - } -} -entity { "id" "59" "classname" "light_environment" @@ -3610,6 +3213,7 @@ entity editor { "color" "220 30 220" + "visgroupid" "9" "visgroupshown" "1" "visgroupautoshown" "1" "logicalpos" "[0 7500]" diff --git a/MCDV/sample_stuff/disp_256.vmx b/MCDV/sample_stuff/disp_256.vmx new file mode 100644 index 0000000..41e25f8 --- /dev/null +++ b/MCDV/sample_stuff/disp_256.vmx @@ -0,0 +1,645 @@ +versioninfo +{ + "editorversion" "400" + "editorbuild" "8075" + "mapversion" "9" + "formatversion" "100" + "prefab" "0" +} +visgroups +{ +} +viewsettings +{ + "bSnapToGrid" "1" + "bShowGrid" "1" + "bShowLogicalGrid" "0" + "nGridSpacing" "16" + "bShow3DGrid" "0" +} +world +{ + "id" "1" + "mapversion" "9" + "classname" "worldspawn" + "skyname" "sky_dust" + "maxpropscreenwidth" "-1" + "detailvbsp" "detail.vbsp" + "detailmaterial" "detail/detailsprites" + solid + { + "id" "8" + side + { + "id" "7" + "plane" "(-128 128 0) (-32 128 0) (-32 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "8" + "plane" "(-128 -128 -32) (-32 -128 -32) (-32 128 -32)" + "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" "9" + "plane" "(-128 128 0) (-128 -128 0) (-128 -128 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "10" + "plane" "(-32 128 -32) (-32 -128 -32) (-32 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "11" + "plane" "(-32 128 0) (-128 128 0) (-128 128 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "12" + "plane" "(-32 -128 -32) (-128 -128 -32) (-128 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "120" + side + { + "id" "30" + "plane" "(-16 -16 -16) (-32 -32 0) (-32 32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "29" + "plane" "(-16 16 -32) (-32 32 -32) (-32 -32 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "28" + "plane" "(-32 -32 -32) (-32 32 -32) (-32 32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "27" + "plane" "(-16 -16 -16) (-16 16 -16) (-16 16 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "26" + "plane" "(-32 32 -32) (-16 16 -32) (-16 16 -16)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "25" + "plane" "(-32 -32 0) (-16 -16 -16) (-16 -16 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -384] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "124" + side + { + "id" "42" + "plane" "(32 -32 0) (16 -16 -16) (16 16 -16)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "41" + "plane" "(32 32 -32) (16 16 -32) (16 -16 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "40" + "plane" "(32 32 -32) (32 -32 -32) (32 -32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "39" + "plane" "(16 16 -16) (16 -16 -16) (16 -16 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "38" + "plane" "(16 16 -32) (32 32 -32) (32 32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "37" + "plane" "(16 -16 -16) (32 -32 0) (32 -32 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "132" + side + { + "id" "60" + "plane" "(32 32 0) (16 16 -16) (-16 16 -16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 128] 0.25" + "vaxis" "[1 0 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "59" + "plane" "(-32 32 -32) (-16 16 -32) (16 16 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 128] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "58" + "plane" "(-32 32 -32) (32 32 -32) (32 32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "57" + "plane" "(-16 16 -16) (16 16 -16) (16 16 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "56" + "plane" "(-16 16 -32) (-32 32 -32) (-32 32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "55" + "plane" "(16 16 -16) (32 32 0) (32 32 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 -1 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "133" + side + { + "id" "66" + "plane" "(16 -16 -16) (32 -32 0) (-32 -32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -384] 0.25" + "vaxis" "[1 0 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "65" + "plane" "(-16 -16 -32) (-32 -32 -32) (32 -32 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -384] 0.25" + "vaxis" "[1 0 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "64" + "plane" "(32 -32 -32) (-32 -32 -32) (-32 -32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "63" + "plane" "(16 -16 -16) (-16 -16 -16) (-16 -16 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[-1 0 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "62" + "plane" "(-32 -32 -32) (-16 -16 -32) (-16 -16 -16)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -384] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "61" + "plane" "(32 -32 0) (16 -16 -16) (16 -16 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 -384] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "138" + side + { + "id" "78" + "plane" "(32 128 0) (128 128 0) (128 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "77" + "plane" "(32 -128 -32) (128 -128 -32) (128 128 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "76" + "plane" "(32 128 0) (32 -128 0) (32 -128 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "75" + "plane" "(128 128 -32) (128 -128 -32) (128 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "74" + "plane" "(128 128 0) (32 128 0) (32 128 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "73" + "plane" "(128 -128 -32) (32 -128 -32) (32 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 -128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "139" + side + { + "id" "90" + "plane" "(-32 128 0) (32 128 0) (32 32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "89" + "plane" "(-32 32 -32) (32 32 -32) (32 128 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 0] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "88" + "plane" "(-32 128 0) (-32 32 0) (-32 32 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "87" + "plane" "(32 128 -32) (32 32 -32) (32 32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 0] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "86" + "plane" "(32 128 0) (-32 128 0) (-32 128 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "85" + "plane" "(32 32 -32) (-32 32 -32) (-32 32 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } + solid + { + "id" "141" + side + { + "id" "102" + "plane" "(-32 -32 0) (32 -32 0) (32 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -224] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "101" + "plane" "(-32 -128 -32) (32 -128 -32) (32 -32 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 -1 0 -128] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "100" + "plane" "(-32 -32 0) (-32 -128 0) (-32 -128 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "99" + "plane" "(32 -32 -32) (32 -128 -32) (32 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[0 1 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "98" + "plane" "(32 -32 0) (-32 -32 0) (-32 -32 -32)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + side + { + "id" "97" + "plane" "(32 -128 -32) (-32 -128 -32) (-32 -128 0)" + "material" "DEV/GRAYGRID" + "uaxis" "[1 0 0 128] 0.25" + "vaxis" "[0 0 -1 -96] 0.25" + "rotation" "0" + "lightmapscale" "16" + "smoothing_groups" "0" + } + editor + { + "color" "0 250 243" + "visgroupshown" "1" + "visgroupautoshown" "1" + } + } +} +cameras +{ + "activecamera" "-1" +} +cordons +{ + "active" "0" +} diff --git a/MCDV/sample_stuff/map_01.prt b/MCDV/sample_stuff/map_01.prt new file mode 100644 index 0000000..1322e01 --- /dev/null +++ b/MCDV/sample_stuff/map_01.prt @@ -0,0 +1,13637 @@ +PRT1 +3964 +13634 +4 0 8 (4096 1024 -1284 ) (4096 1024 5542.669922 ) (4096 2048 5542.669922 ) (4096 2048 -1284 ) +4 0 3 (4096 1024 88 ) (4096 1024 -1284 ) (4112 1024 -1284 ) (4112 1024 88 ) +4 0 2 (4096 1024 640 ) (4096 1024 88 ) (4112 1024 88 ) (4112 1024 640 ) +4 0 1 (4096 1024 5542.669922 ) (4096 1024 640 ) (4112 1024 640 ) (4112 1024 5542.669922 ) +4 1 22 (4096 0 640 ) (4096 0 5542.669922 ) (4096 1024 5542.669922 ) (4096 1024 640 ) +4 1 4 (4096 0 5542.669922 ) (4096 0 640 ) (4112 0 640 ) (4112 0 5542.669922 ) +4 1 2 (4112 0 640 ) (4096 0 640 ) (4096 1024 640 ) (4112 1024 640 ) +4 2 36 (4096 0 88 ) (4096 0 144 ) (4096 1024 144 ) (4096 1024 88 ) +4 2 32 (4096 0 144 ) (4096 0 202 ) (4096 1024 202 ) (4096 1024 144 ) +4 2 29 (4096 0 202 ) (4096 0 206 ) (4096 488.306488 206 ) (4096 488.306519 202 ) +4 2 28 (4096 488.306488 206 ) (4096 1024 206 ) (4096 1024 202 ) (4096 488.306519 202 ) +4 2 24 (4096 0 206 ) (4096 0 208 ) (4096 488.300476 208 ) (4096 488.300476 206 ) +4 2 23 (4096 488.300476 208 ) (4096 1024 208 ) (4096 1024 206 ) (4096 488.300476 206 ) +4 2 22 (4096 0 208 ) (4096 0 640 ) (4096 1024 640 ) (4096 1024 208 ) +4 2 6 (4096 0 640 ) (4096 0 88 ) (4112 0 88 ) (4112 0 640 ) +4 2 3 (4096 0 88 ) (4096 1024 88 ) (4112 1024 88 ) (4112 0 88 ) +4 3 36 (4096 0 -1284 ) (4096 0 88 ) (4096 1024 88 ) (4096 1024 -1284 ) +4 3 7 (4096 0 88 ) (4096 0 -1284 ) (4112 0 -1284 ) (4112 0 88 ) +4 4 883 (4112 -1024 5542.669922 ) (4096 -1024 5542.669922 ) (4096 -1024 640 ) (4112 -1024 640 ) +4 4 37 (4096 -1024 640 ) (4096 -1024 5542.669922 ) (4096 0 5542.669922 ) (4096 0 640 ) +4 4 6 (4112 -1024 640 ) (4096 -1024 640 ) (4096 0 640 ) (4112 0 640 ) +4 6 883 (4112 -1024 640 ) (4096 -1024 640 ) (4096 -1024 88 ) (4112 -1024 88 ) +4 6 59 (4096 -1024 144 ) (4096 -1024 202 ) (4096 -516.901184 202 ) (4096 -516.901184 144 ) +4 6 58 (4096 -516.901184 202 ) (4096 0 202 ) (4096 0 144 ) (4096 -516.901184 144 ) +4 6 64 (4096 -1024 88 ) (4096 -1024 144 ) (4096 0 144 ) (4096 0 88 ) +4 6 54 (4096 -23.653259 206 ) (4096 0 206 ) (4096 0 202 ) (4096 -23.653263 202 ) +4 6 52 (4096 -1024 202 ) (4096 -1024 206 ) (4096 -23.653259 206 ) (4096 -23.653263 202 ) +4 6 43 (4096 -23.653259 208 ) (4096 0 208 ) (4096 0 206 ) (4096 -23.653263 206 ) +4 6 41 (4096 -1024 206 ) (4096 -1024 208 ) (4096 -23.653259 208 ) (4096 -23.653263 206 ) +4 6 38 (4096 -1024 208 ) (4096 -1024 224 ) (4096 0 224 ) (4096 0 208 ) +4 6 37 (4096 -1024 224 ) (4096 -1024 640 ) (4096 0 640 ) (4096 0 224 ) +4 6 7 (4096 0 88 ) (4112 0 88 ) (4112 -1024 88 ) (4096 -1024 88 ) +4 7 883 (4112 -1024 88 ) (4096 -1024 88 ) (4096 -1024 -1284 ) (4112 -1024 -1284 ) +4 7 64 (4096 -1024 -1284 ) (4096 -1024 88 ) (4096 0 88 ) (4096 0 -1284 ) +4 8 36 (4096 1024 -1284 ) (4096 1024 144 ) (3072 1024 144 ) (3072 1024 -1284 ) +4 8 33 (3206.317383 1024 202 ) (3072 1024 202 ) (3072 1024 144 ) (3206.317383 1024 144 ) +4 8 32 (4096 1024 144 ) (4096 1024 202 ) (3206.317383 1024 202 ) (3206.317383 1024 144 ) +4 8 28 (4096 1024 202 ) (4096 1024 206 ) (3072 1024 206 ) (3072 1024 202 ) +4 8 23 (4096 1024 206 ) (4096 1024 208 ) (3072 1024 208 ) (3072 1024 206 ) +4 8 22 (4096 1024 208 ) (4096 1024 5542.669922 ) (3072 1024 5542.669922 ) (3072 1024 208 ) +4 8 9 (3072 2048 5542.669922 ) (3072 2048 -1284 ) (3072 1024 -1284 ) (3072 1024 5542.669922 ) +4 9 102 (2048 1024 64 ) (2048 1024 -1284 ) (2752 1024 -1284 ) (2752 1024 64 ) +4 9 83 (2048 1024 256 ) (2048 1024 64 ) (2176 1024 64 ) (2176 1024 256 ) +4 9 81 (2176 1024 64 ) (2464 1024 64 ) (2464 1024 256 ) (2176 1024 256 ) +4 9 80 (2464 1024 64 ) (2752 1024 64 ) (2752 1024 256 ) (2464 1024 256 ) +4 9 79 (2752 1024 5542.669922 ) (2048 1024 5542.669922 ) (2048 1024 256 ) (2752 1024 256 ) +4 9 78 (3072 1024 -1284 ) (3072 1024 96 ) (2752 1024 96 ) (2752 1024 -1284 ) +4 9 76 (2760 1024 192 ) (2752 1024 192 ) (2752 1024 96 ) (2760 1024 96 ) +4 9 75 (3072 1024 96 ) (3072 1024 192 ) (2760 1024 192 ) (2760 1024 96 ) +4 9 72 (2768 1024 224 ) (2752 1024 224 ) (2752 1024 192 ) (2768 1024 192 ) +4 9 71 (3072 1024 192 ) (3072 1024 224 ) (2768 1024 224 ) (2768 1024 192 ) +4 9 70 (3072 1024 224 ) (3072 1024 5542.669922 ) (2752 1024 5542.669922 ) (2752 1024 224 ) +4 9 21 (2048 1024 -1284 ) (2048 1024 64 ) (2048 2048 64 ) (2048 2048 -1284 ) +4 9 19 (2048 1024 64 ) (2048 1024 460 ) (2048 1080 460 ) (2048 1080 64 ) +4 9 17 (2048 1024 460 ) (2048 1024 560 ) (2048 1080 560 ) (2048 1080 460 ) +4 9 15 (2048 1024 560 ) (2048 1024 568 ) (2048 1080 568 ) (2048 1080 560 ) +4 9 14 (2048 1024 568 ) (2048 1024 5542.669922 ) (2048 1080 5542.669922 ) (2048 1080 568 ) +4 9 10 (2048 1080 5542.669922 ) (2048 2048 5542.669922 ) (2048 2048 64 ) (2048 1080 64 ) +4 10 1400 (1024 2048 432 ) (1024 2048 64 ) (1024 1616 64 ) (1024 1616 432 ) +4 10 1366 (1024 2048 664 ) (1024 2048 432 ) (1024 1616 432 ) (1024 1616 664 ) +4 10 1349 (1024 2048 712 ) (1024 2048 664 ) (1024 1616 664 ) (1024 1616 712 ) +4 10 1348 (1024 2048 5542.669922 ) (1024 2048 712 ) (1024 1616 712 ) (1024 1616 5542.669922 ) +5 10 21 (1024 1616 64 ) (1024 2048 64 ) (2048 2048 64 ) (2048 1080 64 ) (1560 1080 64 ) +4 10 19 (1560 1080 64 ) (2048 1080 64 ) (2048 1080 460 ) (1560 1080 460 ) +4 10 17 (2048 1080 460 ) (2048 1080 560 ) (1560 1080 560 ) (1560 1080 460 ) +4 10 15 (2048 1080 560 ) (2048 1080 568 ) (1560 1080 568 ) (1560 1080 560 ) +4 10 14 (2048 1080 568 ) (2048 1080 5542.669922 ) (1560 1080 5542.669922 ) (1560 1080 568 ) +3 10 13 (1072 1568 704 ) (1024 1616 800 ) (1024 1616 608 ) +3 10 12 (1152 1488 64 ) (1392 1248 64 ) (1152 1488 544 ) +5 10 11 (1392 1248 64 ) (1560 1080 64 ) (1560 1080 5542.669922 ) (1024 1616 5542.669922 ) (1024 1616 800 ) +3 11 1408 (1024 1080 264 ) (1024 1080 432 ) (1024 1248 432 ) +4 11 1381 (1024 1080 432 ) (1024 1080 460 ) (1024 1088 460 ) (1024 1088 432 ) +4 11 1378 (1024 1080 460 ) (1024 1080 560 ) (1024 1088 560 ) (1024 1088 460 ) +4 11 1376 (1024 1088 560 ) (1024 1376 560 ) (1024 1248 432 ) (1024 1088 432 ) +4 11 1375 (1024 1080 560 ) (1024 1080 664 ) (1024 1480 664 ) (1024 1376 560 ) +5 11 1350 (1024 1080 664 ) (1024 1080 712 ) (1024 1512 712 ) (1024 1520 704 ) (1024 1480 664 ) +3 11 1349 (1024 1512 712 ) (1024 1528 712 ) (1024 1520 704 ) +5 11 1348 (1024 1080 712 ) (1024 1080 5542.669922 ) (1024 1616 5542.669922 ) (1024 1616 800 ) (1024 1528 712 ) +3 11 21 (1392 1248 64 ) (1560 1080 64 ) (1224 1080 64 ) +4 11 19 (1352 1080 64 ) (1560 1080 64 ) (1560 1080 460 ) (1352 1080 460 ) +5 11 20 (1024 1080 460 ) (1024 1080 264 ) (1224 1080 64 ) (1328 1080 64 ) (1328 1080 460 ) +4 11 17 (1344 1080 460 ) (1560 1080 460 ) (1560 1080 560 ) (1284 1080 560 ) +4 11 18 (1024 1080 560 ) (1024 1080 460 ) (1156 1080 460 ) (1156 1080 560 ) +4 11 15 (1278 1080 560 ) (1560 1080 560 ) (1560 1080 568 ) (1282 1080 568 ) +4 11 16 (1024 1080 568 ) (1024 1080 560 ) (1270 1080 560 ) (1270 1080 568 ) +4 11 14 (1024 1080 5542.669922 ) (1024 1080 568 ) (1560 1080 568 ) (1560 1080 5542.669922 ) +3 11 13 (1024 1616.003662 800.001465 ) (1072.001343 1568.002319 703.998962 ) (1024 1520.001099 703.998901 ) +5 11 12 (1152.001831 1488.001831 543.997925 ) (1392 1248.002930 64 ) (1223.997803 1080 64 ) (1024 1080 263.997803 ) (1024 1360 543.997925 ) +4 12 1413 (1024 1360 64 ) (1024 1344 64 ) (1024 1344 432 ) (1024 1360 432 ) +5 12 1408 (1024 1344 64 ) (1024 1080 64 ) (1024 1080 264 ) (1024 1248 432 ) (1024 1344 432 ) +3 12 1385 (1024 1248 432 ) (1024 1360 544 ) (1024 1360 432 ) +5 12 21 (1024 1080 64 ) (1024 1360 64 ) (1152 1488 64 ) (1392 1248 64 ) (1224 1080 64 ) +3 12 20 (1024 1080 264 ) (1024 1080 64 ) (1224 1080 64 ) +3 13 1368 (1024 1616 664 ) (1024 1616 608 ) (1024 1560 664 ) +5 13 1349 (1024 1520 704 ) (1024 1528 712 ) (1024 1616 712 ) (1024 1616 664 ) (1024 1560 664 ) +3 13 1348 (1024 1528 712 ) (1024 1616 800 ) (1024 1616 712 ) +4 14 1375 (1024 1024 568 ) (1024 1024 664 ) (1024 1080 664 ) (1024 1080 568 ) +4 14 1350 (1024 1024 664 ) (1024 1024 712 ) (1024 1080 712 ) (1024 1080 664 ) +4 14 1348 (1024 1024 712 ) (1024 1024 5542.669922 ) (1024 1080 5542.669922 ) (1024 1080 712 ) +4 14 292 (1024 1024 5542.669922 ) (1024 1024 568 ) (1328 1024 568 ) (1328 1024 5542.669922 ) +4 14 103 (1328 1024 568 ) (2048 1024 568 ) (2048 1024 5542.669922 ) (1328 1024 5542.669922 ) +4 14 15 (2048 1024 568 ) (1282 1024 568 ) (1282 1080 568 ) (2048 1080 568 ) +4 14 16 (1270 1024 568 ) (1024 1024 568 ) (1024 1080 568 ) (1270 1080 568 ) +4 15 293 (1278 1024 560 ) (1328 1024 560 ) (1328 1024 568 ) (1282 1024 568 ) +4 15 103 (1328 1024 560 ) (2048 1024 560 ) (2048 1024 568 ) (1328 1024 568 ) +4 15 17 (1284 1080 560 ) (2048 1080 560 ) (2048 1024 560 ) (1284 1024 560 ) +4 16 1375 (1024 1024 560 ) (1024 1024 568 ) (1024 1080 568 ) (1024 1080 560 ) +4 16 294 (1024 1024 568 ) (1024 1024 560 ) (1270 1024 560 ) (1270 1024 568 ) +4 16 18 (1024 1024 560 ) (1024 1080 560 ) (1156 1080 560 ) (1156 1024 560 ) +3 17 297 (1328 1024 560 ) (1284 1024 560 ) (1328 1024 486.666473 ) +5 17 103 (1344 1024 460 ) (2048 1024 460 ) (2048 1024 560 ) (1328 1024 560 ) (1328 1024 486.666473 ) +4 17 19 (2048 1024 460 ) (1352 1024 460 ) (1352 1080 460 ) (2048 1080 460 ) +4 18 1378 (1024 1024 460 ) (1024 1024 560 ) (1024 1080 560 ) (1024 1080 460 ) +4 18 298 (1024 1024 560 ) (1024 1024 460 ) (1156 1024 460 ) (1156 1024 560 ) +4 18 20 (1156 1024 460 ) (1024 1024 460 ) (1024 1080 460 ) (1156 1080 460 ) +4 19 104 (2048 1024 256 ) (2048 1024 460 ) (1352 1024 460 ) (1352 1024 256 ) +4 19 21 (1352 1080 64 ) (2048 1080 64 ) (2048 1024 64 ) (1352 1024 64 ) +4 20 1408 (1024 1024 64 ) (1024 1024 432 ) (1024 1080 432 ) (1024 1080 64 ) +4 20 1381 (1024 1024 432 ) (1024 1024 460 ) (1024 1080 460 ) (1024 1080 432 ) +4 20 491 (1024 1024 288 ) (1024 1024 64 ) (1172 1024 64 ) (1172 1024 288 ) +4 20 489 (1172 1024 64 ) (1236 1024 64 ) (1236 1024 116 ) (1172 1024 116 ) +4 20 488 (1236 1024 116 ) (1236 1024 120 ) (1172 1024 120 ) (1172 1024 116 ) +4 20 421 (1236 1024 120 ) (1236 1024 288 ) (1172 1024 288 ) (1172 1024 120 ) +4 20 413 (1236 1024 64 ) (1264 1024 64 ) (1264 1024 194 ) (1236 1024 194 ) +4 20 411 (1264 1024 194 ) (1264 1024 288 ) (1236 1024 288 ) (1236 1024 194 ) +4 20 408 (1264 1024 64 ) (1328 1024 64 ) (1328 1024 116 ) (1264 1024 116 ) +4 20 407 (1328 1024 116 ) (1328 1024 120 ) (1264 1024 120 ) (1264 1024 116 ) +4 20 344 (1328 1024 120 ) (1328 1024 288 ) (1264 1024 288 ) (1264 1024 120 ) +4 20 303 (1220 1024 288 ) (1328 1024 288 ) (1328 1024 420 ) (1220 1024 420 ) +4 20 304 (1024 1024 420 ) (1024 1024 288 ) (1220 1024 288 ) (1220 1024 420 ) +4 20 301 (1024 1024 460 ) (1024 1024 420 ) (1328 1024 420 ) (1328 1024 460 ) +4 20 21 (1024 1024 64 ) (1024 1080 64 ) (1328 1080 64 ) (1328 1024 64 ) +4 21 1417 (1024 1296 64 ) (1024 1600 64 ) (1024 1600 56 ) (1024 1296 56 ) +4 21 1418 (1024 1024 56 ) (1024 1024 64 ) (1024 1296 64 ) (1024 1296 56 ) +4 21 1419 (1024 1024 48 ) (1024 1024 56 ) (1024 1600 56 ) (1024 1600 48 ) +4 21 1422 (1024 1024 -1284 ) (1024 1024 48 ) (1024 1600 48 ) (1024 1600 -1284 ) +4 21 1416 (1024 1600 64 ) (1024 2048 64 ) (1024 2048 -1284 ) (1024 1600 -1284 ) +4 21 491 (1024 1024 64 ) (1024 1024 -1284 ) (1172 1024 -1284 ) (1172 1024 64 ) +4 21 489 (1172 1024 -1284 ) (1236 1024 -1284 ) (1236 1024 64 ) (1172 1024 64 ) +4 21 413 (1236 1024 -1284 ) (1264 1024 -1284 ) (1264 1024 64 ) (1236 1024 64 ) +4 21 410 (1264 1024 -1284 ) (1328 1024 -1284 ) (1328 1024 64 ) (1264 1024 64 ) +4 21 289 (1344 1024 -1284 ) (1664 1024 -1284 ) (1664 1024 64 ) (1344 1024 64 ) +4 21 288 (1664 1024 -1284 ) (2048 1024 -1284 ) (2048 1024 64 ) (1664 1024 64 ) +4 21 291 (1328 1024 -1284 ) (1344 1024 -1284 ) (1344 1024 64 ) (1328 1024 64 ) +4 22 71 (3072 1024 224 ) (3072 1024 208 ) (3072 0 208 ) (3072 0 224 ) +4 22 70 (3072 1024 5542.669922 ) (3072 1024 224 ) (3072 0 224 ) (3072 0 5542.669922 ) +4 22 39 (3088 0 224 ) (3072 0 224 ) (3072 0 208 ) (3088 0 208 ) +4 22 38 (4096 0 208 ) (4096 0 224 ) (3088 0 224 ) (3088 0 208 ) +4 22 37 (4096 0 224 ) (4096 0 5542.669922 ) (3072 0 5542.669922 ) (3072 0 224 ) +3 22 27 (3559.381104 178.466614 208 ) (3664.100586 238.929749 208 ) (3724.559326 134.209717 208 ) +3 22 26 (3591.782715 0 208 ) (3569.174561 0 208 ) (3576.341309 4.137778 208 ) +3 22 25 (3364.038574 0 208 ) (3250.284668 0 208 ) (3384.859375 77.700981 208 ) +4 22 24 (4096 0 208 ) (3802.043213 0 208 ) (3664.100586 238.929749 208 ) (4096 488.300476 208 ) +5 22 23 (3250.284668 0 208 ) (3072 0 208 ) (3072 1024 208 ) (4096 1024 208 ) (4096 488.300476 208 ) +4 23 71 (3072 1024 208 ) (3072 1024 206 ) (3072 0 206 ) (3072 0 208 ) +4 23 50 (3088 0 208 ) (3072 0 208 ) (3072 0 206 ) (3088 0 206 ) +4 23 42 (3250.284668 0 208 ) (3088 0 208 ) (3088 0 206 ) (3250.284424 0 206 ) +5 23 28 (3072 0 206 ) (3072 1024 206 ) (4096 1024 206 ) (4096 488.300476 206 ) (3250.284668 0 206 ) +4 23 27 (3559.380127 178.466827 206 ) (3664.100342 238.930359 206 ) (3664.101074 238.929092 208 ) (3559.382324 178.466278 208 ) +4 23 25 (3250.283203 0 206 ) (3384.859619 77.701988 206 ) (3384.859375 77.699829 208 ) (3250.286621 0 208 ) +4 23 24 (3664.100342 238.930359 206 ) (4096 488.301208 206 ) (4096 488.299866 208 ) (3664.101074 238.929092 208 ) +4 24 45 (3836.123779 0 208 ) (3802.043213 0 208 ) (3802.043213 0 206 ) (3836.123779 0 206 ) +4 24 43 (4096 0 206 ) (4096 0 208 ) (3836.123779 0 208 ) (3836.123779 0 206 ) +4 24 29 (4096 488.300476 206 ) (4096 0 206 ) (3802.043213 0 206 ) (3664.100586 238.929749 206 ) +4 24 27 (3664.100586 238.931641 208 ) (3664.100586 238.931641 206 ) (3724.560303 134.209381 206 ) (3724.560791 134.209290 208 ) +4 25 44 (3364.038574 0 208 ) (3290.100830 0 208 ) (3290.100830 0 206 ) (3364.038574 0 206 ) +4 25 42 (3290.100830 0 208 ) (3250.284668 0 208 ) (3250.284424 0 206 ) (3290.100830 0 206 ) +3 25 30 (3364.038574 0 206 ) (3250.284668 0 206 ) (3384.859375 77.700981 206 ) +4 26 46 (3591.782715 0 208 ) (3569.174561 0 208 ) (3569.174561 0 206 ) (3591.782715 0 206 ) +3 27 31 (3559.381104 178.466614 206 ) (3664.100586 238.929749 206 ) (3724.559326 134.209717 206 ) +4 28 71 (3072 1024 206 ) (3072 1024 202 ) (3072 0 202 ) (3072 0 206 ) +4 28 65 (3088 0 206 ) (3072 0 206 ) (3072 0 202 ) (3088 0 202 ) +4 28 53 (3250.290283 0 206 ) (3088 0 206 ) (3088 0 202 ) (3250.290283 0 202 ) +5 28 33 (3250.290283 0 202 ) (3072 0 202 ) (3072 1024 202 ) (3206.317383 1024 202 ) (3660.724609 236.981674 202 ) +4 28 32 (3206.317383 1024 202 ) (4096 1024 202 ) (4096 488.306519 202 ) (3660.724609 236.981674 202 ) +4 28 31 (3559.382080 178.465393 202 ) (3664.101074 238.929367 202 ) (3664.099365 238.932251 206 ) (3559.377441 178.466644 206 ) +4 28 30 (3250.293457 0 202 ) (3384.858398 77.696777 202 ) (3384.859619 77.701370 206 ) (3250.286621 0 206 ) +4 28 29 (3664.101074 238.929367 202 ) (4096 488.304626 202 ) (4096 488.308411 206 ) (3664.099365 238.932251 206 ) +4 29 54 (4096 0 202 ) (4096 0 206 ) (3802.043213 0 206 ) (3802.043213 0 202 ) +4 29 32 (4096 0 202 ) (3802.043213 0 202 ) (3664.100098 238.930740 202 ) (4096 488.306519 202 ) +4 29 31 (3664.101563 238.929688 206 ) (3664.101563 238.929688 202 ) (3724.561279 134.207672 202 ) (3724.561768 134.207581 206 ) +4 30 56 (3364.038574 0 206 ) (3290.100586 0 206 ) (3290.100586 0 202 ) (3364.038574 0 202 ) +4 30 53 (3290.100586 0 206 ) (3250.290283 0 206 ) (3250.290283 0 202 ) (3290.100586 0 202 ) +3 30 35 (3364.038574 0 202 ) (3258.041748 0 202 ) (3383.437500 72.394913 202 ) +4 30 33 (3258.041748 0 202 ) (3250.290283 0 202 ) (3384.858887 77.698898 202 ) (3383.437500 72.394913 202 ) +3 31 34 (3662.673340 233.605972 202 ) (3719.240967 135.633255 202 ) (3564.697021 177.041351 202 ) +4 31 33 (3559.379883 178.466034 202 ) (3660.724365 236.981659 202 ) (3662.673340 233.605972 202 ) (3564.697021 177.041351 202 ) +4 31 32 (3660.724365 236.981659 202 ) (3664.100098 238.930740 202 ) (3724.560303 134.207977 202 ) (3719.240967 135.633255 202 ) +4 32 58 (4096 0 144 ) (4096 0 202 ) (3797.552490 0 202 ) (3797.552490 0 144 ) +4 32 36 (3206.317383 1024 144 ) (4096 1024 144 ) (4096 0 144 ) (3797.552490 0 144 ) +4 32 34 (3662.673828 233.606201 144 ) (3722.070557 130.732941 144 ) (3722.070313 130.732986 202 ) (3662.673584 233.606140 202 ) +4 32 33 (3206.318359 1024 144 ) (3662.673828 233.606201 144 ) (3662.673584 233.606140 202 ) (3206.317383 1024 202 ) +4 33 75 (3072 1024 192 ) (3072 1024 144 ) (3072 0 144 ) (3072 0 192 ) +4 33 71 (3072 1024 202 ) (3072 1024 192 ) (3072 0 192 ) (3072 0 202 ) +4 33 67 (3072 0 192 ) (3072 0 144 ) (3088 0 144 ) (3088 0 192 ) +4 33 65 (3088 0 202 ) (3072 0 202 ) (3072 0 192 ) (3088 0 192 ) +4 33 60 (3258.041504 0 202 ) (3088 0 202 ) (3088 0 144 ) (3258.041504 0 144 ) +5 33 36 (3072 0 144 ) (3072 1024 144 ) (3206.317383 1024 144 ) (3662.673340 233.606079 144 ) (3258.041504 0 144 ) +4 33 35 (3258.045654 0 144 ) (3388.329346 75.216949 144 ) (3388.329590 75.217720 202 ) (3258.043945 0 202 ) +4 33 34 (3559.802002 174.213547 144 ) (3662.669922 233.602539 144 ) (3662.669922 233.602539 202 ) (3559.801514 174.213623 202 ) +3 34 36 (3662.673340 233.606079 144 ) (3722.070068 130.733063 144 ) (3559.799805 174.214111 144 ) +4 35 62 (3368.175781 0 202 ) (3294.585449 0 202 ) (3294.585449 0 144 ) (3368.175781 0 144 ) +4 35 60 (3294.585449 0 202 ) (3258.041504 0 202 ) (3258.041504 0 144 ) (3294.585449 0 144 ) +3 35 36 (3368.175781 0 144 ) (3258.041504 0 144 ) (3388.330078 75.219513 144 ) +4 36 78 (3072 1024 96 ) (3072 1024 -1284 ) (3072 0 -1284 ) (3072 0 96 ) +4 36 75 (3072 1024 144 ) (3072 1024 96 ) (3072 0 96 ) (3072 0 144 ) +4 36 67 (3088 0 144 ) (3072 0 144 ) (3072 0 -1284 ) (3088 0 -1284 ) +4 36 64 (4096 0 -1284 ) (4096 0 144 ) (3088 0 144 ) (3088 0 -1284 ) +4 37 886 (4096 -1024 224 ) (4096 -1024 5542.669922 ) (3072 -1024 5542.669922 ) (3072 -1024 224 ) +4 37 647 (3072 -912 376.003113 ) (3072 -912 224 ) (3072 -916 224 ) (3072 -916 380.003113 ) +4 37 648 (3072 -1024 224 ) (3072 -1024 384 ) (3072 -916 384 ) (3072 -916 224 ) +4 37 644 (3072 -896 384 ) (3072 -776 384 ) (3072 -776 224 ) (3072 -896 224 ) +4 37 642 (3072 -664 272 ) (3072 -664 224 ) (3072 -776 224 ) (3072 -776 272 ) +4 37 641 (3072 -776 384 ) (3072 -664 384 ) (3072 -664 272 ) (3072 -776 272 ) +4 37 638 (3072 -664 384 ) (3072 -544 384 ) (3072 -544 224 ) (3072 -664 224 ) +4 37 637 (3072 -524 380 ) (3072 -524 224 ) (3072 -528 224 ) (3072 -528 376 ) +4 37 636 (3072 -524 384 ) (3072 0 384 ) (3072 0 224 ) (3072 -524 224 ) +4 37 635 (3072 -1024 384 ) (3072 -1024 5542.669922 ) (3072 0 5542.669922 ) (3072 0 384 ) +4 37 39 (3072 -304 224 ) (3072 0 224 ) (3088 0 224 ) (3088 -304 224 ) +4 37 40 (3072 -1024 224 ) (3072 -320 224 ) (3088 -320 224 ) (3088 -1024 224 ) +4 37 38 (3088 0 224 ) (4096 0 224 ) (4096 -1024 224 ) (3088 -1024 224 ) +4 38 886 (4096 -1024 208 ) (4096 -1024 224 ) (3088 -1024 224 ) (3088 -1024 208 ) +3 38 49 (3606.539795 -306.253937 208 ) (3580.205078 -321.458893 208 ) (3585.770020 -300.690002 208 ) +3 38 48 (3456.564697 -288.331177 208 ) (3441.359863 -261.994812 208 ) (3462.129883 -267.560944 208 ) +5 38 47 (3580.205078 -321.458893 208 ) (3501.819336 -366.716644 208 ) (3456.564697 -288.331177 208 ) (3462.129883 -267.561035 208 ) (3585.770020 -300.690002 208 ) +9 38 46 (3569.174561 0 208 ) (3591.782715 0 208 ) (3622.710938 -8.287795 208 ) (3650.991211 -57.277916 208 ) (3638.568115 -103.642227 208 ) (3589.580811 -131.924713 208 ) (3543.208252 -119.499321 208 ) (3514.928711 -70.509735 208 ) (3527.351563 -24.146385 208 ) +3 38 45 (3802.043213 0 208 ) (3836.124023 0 208 ) (3825.320313 -40.318203 208 ) +3 38 44 (3290.100830 0 208 ) (3364.038574 0 208 ) (3340.600098 -87.469666 208 ) +4 38 43 (3836.124023 0 208 ) (4096 0 208 ) (4096 -23.653263 208 ) (3781.060303 -205.490631 208 ) +4 38 42 (3088 -605.644287 208 ) (3088 0 208 ) (3290.100830 0 208 ) (3501.819336 -366.716644 208 ) +4 38 41 (4096 -1024 208 ) (3088 -1024 208 ) (3088 -605.644287 208 ) (4096 -23.653263 208 ) +4 38 39 (3088 0 208 ) (3088 -304 208 ) (3088 -304 224 ) (3088 0 224 ) +4 38 40 (3088 -320 208 ) (3088 -1024 208 ) (3088 -1024 224 ) (3088 -320 224 ) +4 39 667 (3072 -304 224 ) (3072 0 224 ) (3072 0 208 ) (3072 -304 208 ) +4 39 50 (3072 -304 208 ) (3072 0 208 ) (3088 0 208 ) (3088 -304 208 ) +4 40 886 (3088 -1024 224 ) (3072 -1024 224 ) (3072 -1024 208 ) (3088 -1024 208 ) +4 40 703 (3072 -1024 208 ) (3072 -1024 224 ) (3072 -912 224 ) (3072 -912 208 ) +4 40 692 (3072 -896 224 ) (3072 -760 224 ) (3072 -760 208 ) (3072 -896 208 ) +4 40 689 (3072 -680 212 ) (3072 -680 208 ) (3072 -760 208 ) (3072 -760 212 ) +4 40 687 (3072 -760 224 ) (3072 -680 224 ) (3072 -680 212 ) (3072 -760 212 ) +4 40 676 (3072 -680 224 ) (3072 -544 224 ) (3072 -544 208 ) (3072 -680 208 ) +4 40 675 (3072 -528 224 ) (3072 -320 224 ) (3072 -320 208 ) (3072 -528 208 ) +4 40 51 (3088 -1024 208 ) (3072 -1024 208 ) (3072 -320 208 ) (3088 -320 208 ) +4 41 886 (4096 -1024 206 ) (4096 -1024 208 ) (3088 -1024 208 ) (3088 -1024 206 ) +4 41 52 (4096 -23.653263 206 ) (4096 -1024 206 ) (3088 -1024 206 ) (3088 -605.644287 206 ) +4 41 51 (3088 -605.644348 206 ) (3088 -1024 206 ) (3088 -1024 208 ) (3088 -605.644287 208 ) +4 41 49 (3606.540527 -306.254089 206 ) (3580.204834 -321.459534 206 ) (3580.205078 -321.458984 208 ) (3606.540039 -306.253937 208 ) +4 41 47 (3580.204834 -321.459534 206 ) (3501.819336 -366.717102 206 ) (3501.819092 -366.716858 208 ) (3580.205078 -321.458984 208 ) +4 41 43 (4096 -23.654297 206 ) (3781.060059 -205.491623 206 ) (3781.060059 -205.490891 208 ) (4096 -23.653381 208 ) +4 41 42 (3501.819336 -366.717102 206 ) (3088 -605.644531 206 ) (3088 -605.644531 208 ) (3501.819092 -366.716858 208 ) +4 42 53 (3088 0 206 ) (3290.100830 0 206 ) (3501.819336 -366.716644 206 ) (3088 -605.644287 206 ) +4 42 50 (3088 0 206 ) (3088 -304 206 ) (3088 -304 208 ) (3088 0 208 ) +4 42 51 (3088 -320 206 ) (3088 -605.644348 206 ) (3088 -605.644287 208 ) (3088 -320 208 ) +4 42 48 (3456.564941 -288.330139 206 ) (3441.360840 -261.995087 206 ) (3441.360840 -261.995087 208 ) (3456.564941 -288.330139 208 ) +4 42 47 (3501.820313 -366.716797 208 ) (3501.820313 -366.716797 206 ) (3456.564941 -288.330139 206 ) (3456.564941 -288.330139 208 ) +4 42 44 (3340.600342 -87.468964 206 ) (3290.101318 0 206 ) (3290.101318 0 208 ) (3340.600342 -87.468964 208 ) +3 43 57 (3885.774902 -145.031296 206 ) (3781.060303 -205.490631 206 ) (3825.320313 -40.318207 206 ) +5 43 54 (3836.124023 0 206 ) (4096 0 206 ) (4096 -23.653263 206 ) (3885.774902 -145.031296 206 ) (3825.320313 -40.318207 206 ) +4 43 45 (3836.125244 0 206 ) (3825.321045 -40.319618 206 ) (3825.321045 -40.319626 208 ) (3836.125244 0 208 ) +3 44 56 (3290.100830 0 206 ) (3364.038574 0 206 ) (3340.600098 -87.469666 206 ) +3 45 54 (3802.043213 0 206 ) (3836.124023 0 206 ) (3825.320313 -40.318203 206 ) +5 47 55 (3580.205078 -321.458893 206 ) (3501.819336 -366.716644 206 ) (3456.564697 -288.331177 206 ) (3462.129883 -267.561035 206 ) (3585.770020 -300.690002 206 ) +4 47 49 (3580.206543 -321.458130 208 ) (3580.206543 -321.458130 206 ) (3585.771240 -300.690338 206 ) (3585.771240 -300.690338 208 ) +4 47 48 (3462.130127 -267.561096 206 ) (3456.564697 -288.331909 206 ) (3456.564697 -288.331909 208 ) (3462.130127 -267.561066 208 ) +3 48 55 (3456.564697 -288.331177 206 ) (3441.359863 -261.994812 206 ) (3462.129883 -267.560944 206 ) +3 49 55 (3606.539795 -306.253937 206 ) (3580.205078 -321.458893 206 ) (3585.770020 -300.690002 206 ) +4 50 667 (3072 -304 208 ) (3072 0 208 ) (3072 0 206 ) (3072 -304 206 ) +4 50 65 (3072 -304 206 ) (3072 0 206 ) (3088 0 206 ) (3088 -304 206 ) +4 51 886 (3088 -1024 208 ) (3072 -1024 208 ) (3072 -1024 206 ) (3088 -1024 206 ) +4 51 703 (3072 -1024 206 ) (3072 -1024 208 ) (3072 -912 208 ) (3072 -912 206 ) +4 51 692 (3072 -896 208 ) (3072 -760 208 ) (3072 -760 206 ) (3072 -896 206 ) +4 51 689 (3072 -760 208 ) (3072 -680 208 ) (3072 -680 206 ) (3072 -760 206 ) +4 51 676 (3072 -680 208 ) (3072 -544 208 ) (3072 -544 206 ) (3072 -680 206 ) +4 51 675 (3072 -528 208 ) (3072 -320 208 ) (3072 -320 206 ) (3072 -528 206 ) +4 51 66 (3072 -1024 206 ) (3072 -320 206 ) (3088 -320 206 ) (3088 -1024 206 ) +4 52 886 (4096 -1024 202 ) (4096 -1024 206 ) (3088 -1024 206 ) (3088 -1024 202 ) +4 52 66 (3088 -1024 202 ) (3088 -1024 206 ) (3088 -605.644287 206 ) (3088 -605.644348 202 ) +5 52 59 (3088 -1024 202 ) (3088 -605.644287 202 ) (3882.411621 -146.973145 202 ) (4096 -516.901123 202 ) (4096 -1024 202 ) +3 52 58 (3882.411621 -146.973145 202 ) (4096 -23.653263 202 ) (4096 -516.901123 202 ) +4 52 57 (3885.775391 -145.031982 202 ) (3781.060059 -205.491547 202 ) (3781.060303 -205.490768 206 ) (3885.774902 -145.031464 206 ) +4 52 55 (3606.540527 -306.254089 202 ) (3501.819336 -366.717102 202 ) (3501.819092 -366.716858 206 ) (3606.539795 -306.253967 206 ) +4 52 54 (4096 -23.654297 202 ) (3885.775391 -145.031982 202 ) (3885.774902 -145.031464 206 ) (4096 -23.653381 206 ) +4 52 53 (3501.819336 -366.717102 202 ) (3088 -605.644531 202 ) (3088 -605.644531 206 ) (3501.819092 -366.716858 206 ) +4 53 65 (3088 -304 206 ) (3088 0 206 ) (3088 0 202 ) (3088 -304 202 ) +4 53 66 (3088 -605.644287 206 ) (3088 -320 206 ) (3088 -320 202 ) (3088 -605.644348 202 ) +4 53 60 (3088 -601.128967 202 ) (3088 0 202 ) (3290.100830 0 202 ) (3499.871338 -363.342590 202 ) +4 53 59 (3088 -605.644287 202 ) (3088 -601.128967 202 ) (3499.871338 -363.342590 202 ) (3501.819336 -366.716644 202 ) +4 53 56 (3340.600342 -87.468491 202 ) (3290.101807 0 202 ) (3290.101807 0 206 ) (3340.600342 -87.468483 206 ) +4 53 55 (3501.820313 -366.716797 206 ) (3501.820313 -366.716797 202 ) (3441.361572 -261.996399 202 ) (3441.361572 -261.996399 206 ) +4 54 58 (3802.043213 0 202 ) (4096 0 202 ) (4096 -23.653263 202 ) (3885.774902 -145.031357 202 ) +4 54 57 (3825.321045 -40.315136 202 ) (3885.776367 -145.029297 202 ) (3885.776367 -145.029297 206 ) (3825.321045 -40.315132 206 ) +3 55 61 (3446.679199 -263.421204 202 ) (3601.222656 -304.829285 202 ) (3503.246582 -361.393921 202 ) +4 55 60 (3499.871338 -363.342590 202 ) (3441.360352 -261.996094 202 ) (3446.679199 -263.421204 202 ) (3503.246582 -361.393921 202 ) +4 55 59 (3606.539795 -306.253967 202 ) (3501.819336 -366.716644 202 ) (3499.871338 -363.342590 202 ) (3601.222656 -304.829285 202 ) +3 56 62 (3294.585693 0 202 ) (3364.038574 0 202 ) (3342.022949 -82.159615 202 ) +4 56 60 (3290.100830 0 202 ) (3294.585693 0 202 ) (3342.022949 -82.159615 202 ) (3340.600098 -87.469772 202 ) +3 57 63 (3782.482666 -200.182373 202 ) (3823.897217 -45.628082 202 ) (3880.470459 -143.611038 202 ) +4 57 59 (3882.411621 -146.973190 202 ) (3781.060303 -205.490692 202 ) (3782.482666 -200.182373 202 ) (3880.470459 -143.611038 202 ) +4 57 58 (3825.320068 -40.317902 202 ) (3885.774902 -145.031357 202 ) (3882.411621 -146.973190 202 ) (3823.897217 -45.628082 202 ) +4 58 63 (3821.069580 -40.733746 144 ) (3880.468994 -143.611633 144 ) (3880.468506 -143.612000 202 ) (3821.069336 -40.734657 202 ) +4 58 59 (3880.468994 -143.611633 144 ) (4096 -516.904175 144 ) (4096 -516.905518 202 ) (3880.468506 -143.612000 202 ) +3 58 64 (3797.552490 0 144 ) (4096 0 144 ) (4096 -516.901184 144 ) +4 59 886 (4096 -1024 144 ) (4096 -1024 202 ) (3088 -1024 202 ) (3088 -1024 144 ) +4 59 69 (3088 -1024 144 ) (3088 -1024 192 ) (3088 -601.128845 192 ) (3088 -601.128845 144 ) +4 59 66 (3088 -1024 192 ) (3088 -1024 202 ) (3088 -601.128845 202 ) (3088 -601.128845 192 ) +4 59 63 (3880.466797 -143.612305 202 ) (3880.466797 -143.612305 144 ) (3777.590332 -203.006073 144 ) (3777.590332 -203.006180 202 ) +4 59 61 (3606.119141 -302.001770 144 ) (3503.246338 -361.393524 144 ) (3503.246582 -361.393738 202 ) (3606.119385 -302.001892 202 ) +4 59 60 (3503.246338 -361.393524 144 ) (3088 -601.128296 144 ) (3088 -601.128906 202 ) (3503.246582 -361.393738 202 ) +5 59 64 (3088 -1024 144 ) (3088 -601.128845 144 ) (3880.470215 -143.610901 144 ) (4096 -516.901184 144 ) (4096 -1024 144 ) +4 60 67 (3088 0 192 ) (3088 0 144 ) (3088 -312 144 ) (3088 -312 192 ) +4 60 69 (3088 -320 144 ) (3088 -601.128845 144 ) (3088 -601.128845 192 ) (3088 -320 192 ) +4 60 65 (3088 -304 202 ) (3088 0 202 ) (3088 0 192 ) (3088 -304 192 ) +4 60 66 (3088 -601.128845 202 ) (3088 -320 202 ) (3088 -320 192 ) (3088 -601.128845 192 ) +4 60 62 (3344.850098 -87.055862 144 ) (3294.585938 0 144 ) (3294.584961 0 202 ) (3344.849854 -87.056717 202 ) +4 60 61 (3503.246094 -361.392578 202 ) (3503.246094 -361.392578 144 ) (3443.850342 -258.521088 144 ) (3443.850098 -258.520996 202 ) +4 60 64 (3088 -601.128845 144 ) (3088 0 144 ) (3294.585693 0 144 ) (3503.246582 -361.393951 144 ) +3 61 64 (3606.119873 -302.001953 144 ) (3503.246582 -361.393951 144 ) (3443.850098 -258.520996 144 ) +3 62 64 (3294.585693 0 144 ) (3368.175781 0 144 ) (3344.850098 -87.056122 144 ) +3 63 64 (3821.070068 -40.731697 144 ) (3880.470215 -143.610901 144 ) (3777.590332 -203.006744 144 ) +4 64 886 (4096 -1024 -1284 ) (4096 -1024 144 ) (3088 -1024 144 ) (3088 -1024 -1284 ) +4 64 68 (3088 -312 96 ) (3088 -312 -1284 ) (3088 -320 -1284 ) (3088 -320 96 ) +4 64 67 (3088 -312 144 ) (3088 0 144 ) (3088 0 -1284 ) (3088 -312 -1284 ) +4 64 69 (3088 -1024 -1284 ) (3088 -1024 144 ) (3088 -320 144 ) (3088 -320 -1284 ) +4 65 667 (3072 -304 206 ) (3072 0 206 ) (3072 0 192 ) (3072 -304 192 ) +4 65 67 (3072 -304 192 ) (3072 0 192 ) (3088 0 192 ) (3088 -304 192 ) +4 66 886 (3088 -1024 192 ) (3088 -1024 206 ) (3072 -1024 206 ) (3072 -1024 192 ) +4 66 703 (3072 -1024 192 ) (3072 -1024 206 ) (3072 -912 206 ) (3072 -912 192 ) +4 66 692 (3072 -896 206 ) (3072 -760 206 ) (3072 -760 192 ) (3072 -896 192 ) +4 66 689 (3072 -760 206 ) (3072 -680 206 ) (3072 -680 192 ) (3072 -760 192 ) +4 66 676 (3072 -680 206 ) (3072 -544 206 ) (3072 -544 192 ) (3072 -680 192 ) +4 66 675 (3072 -528 206 ) (3072 -320 206 ) (3072 -320 192 ) (3072 -528 192 ) +4 66 69 (3072 -1024 192 ) (3072 -320 192 ) (3088 -320 192 ) (3088 -1024 192 ) +4 67 737 (3072 0 64 ) (3072 0 -1284 ) (3072 -312 -1284 ) (3072 -312 64 ) +4 67 733 (3072 0 96 ) (3072 0 64 ) (3072 -312 64 ) (3072 -312 96 ) +4 67 674 (3072 -312 192 ) (3072 0 192 ) (3072 0 96 ) (3072 -312 96 ) +4 67 68 (3072 -312 -1284 ) (3088 -312 -1284 ) (3088 -312 96 ) (3072 -312 96 ) +4 68 737 (3072 -312 64 ) (3072 -312 -1284 ) (3072 -320 -1284 ) (3072 -320 64 ) +4 68 733 (3072 -312 96 ) (3072 -312 64 ) (3072 -320 64 ) (3072 -320 96 ) +4 68 69 (3072 -320 -1284 ) (3088 -320 -1284 ) (3088 -320 96 ) (3072 -320 96 ) +4 69 886 (3088 -1024 -1284 ) (3088 -1024 192 ) (3072 -1024 192 ) (3072 -1024 -1284 ) +4 69 737 (3072 -1024 -1284 ) (3072 -1024 64 ) (3072 -320 64 ) (3072 -320 -1284 ) +4 69 736 (3072 -912 96 ) (3072 -768 96 ) (3072 -768 64 ) (3072 -912 64 ) +4 69 734 (3072 -768 96 ) (3072 -528 96 ) (3072 -528 64 ) (3072 -768 64 ) +4 69 703 (3072 -1024 96 ) (3072 -1024 192 ) (3072 -912 192 ) (3072 -912 96 ) +4 69 692 (3072 -896 192 ) (3072 -760 192 ) (3072 -760 96 ) (3072 -896 96 ) +4 69 689 (3072 -760 192 ) (3072 -680 192 ) (3072 -680 96 ) (3072 -760 96 ) +4 69 676 (3072 -680 192 ) (3072 -544 192 ) (3072 -544 96 ) (3072 -680 96 ) +4 69 675 (3072 -528 192 ) (3072 -320 192 ) (3072 -320 96 ) (3072 -528 96 ) +4 70 664 (2752 0 228 ) (2752 0 224 ) (2800 0 224 ) (2800 0 228 ) +4 70 649 (2800 0 384 ) (2752 0 384 ) (2752 0 228 ) (2800 0 228 ) +4 70 636 (3072 0 224 ) (3072 0 384 ) (2800 0 384 ) (2800 0 224 ) +4 70 635 (3072 0 384 ) (3072 0 5542.669922 ) (2752 0 5542.669922 ) (2752 0 384 ) +4 70 84 (2752 0 224 ) (2752 0 5542.669922 ) (2752 768 5542.669922 ) (2752 768 224 ) +4 70 80 (2752 1024 256 ) (2752 1024 224 ) (2752 768 224 ) (2752 768 256 ) +4 70 79 (2752 768 5542.669922 ) (2752 1024 5542.669922 ) (2752 1024 256 ) (2752 768 256 ) +4 70 74 (2768 0 224 ) (2752 0 224 ) (2752 16 224 ) (2768 16 224 ) +4 70 72 (2752 64 224 ) (2752 1024 224 ) (2768 1024 224 ) (2768 64 224 ) +4 70 73 (2752 32 224 ) (2752 48 224 ) (2768 48 224 ) (2768 32 224 ) +4 70 71 (3072 0 224 ) (2768 0 224 ) (2768 1024 224 ) (3072 1024 224 ) +4 71 667 (3072 0 192 ) (3072 0 224 ) (2768 0 224 ) (2768 0 192 ) +4 71 75 (2768 1024 192 ) (3072 1024 192 ) (3072 0 192 ) (2768 0 192 ) +4 71 74 (2768 16 192 ) (2768 0 192 ) (2768 0 224 ) (2768 16 224 ) +4 71 72 (2768 1024 192 ) (2768 64 192 ) (2768 64 224 ) (2768 1024 224 ) +4 71 73 (2768 48 192 ) (2768 32 192 ) (2768 32 224 ) (2768 48 224 ) +4 72 84 (2752 64 224 ) (2752 768 224 ) (2752 768 192 ) (2752 64 192 ) +4 72 80 (2752 768 224 ) (2752 1024 224 ) (2752 1024 192 ) (2752 768 192 ) +4 72 76 (2752 200 192 ) (2752 1024 192 ) (2760 1024 192 ) (2760 200 192 ) +4 72 75 (2760 1024 192 ) (2768 1024 192 ) (2768 64 192 ) (2760 64 192 ) +4 73 84 (2752 32 224 ) (2752 48 224 ) (2752 48 192 ) (2752 32 192 ) +4 73 75 (2760 48 192 ) (2768 48 192 ) (2768 32 192 ) (2760 32 192 ) +4 74 704 (2760 0 224 ) (2752 0 224 ) (2752 0 192 ) (2760 0 192 ) +4 74 671 (2768 0 224 ) (2760 0 224 ) (2760 0 192 ) (2768 0 192 ) +4 74 84 (2752 0 192 ) (2752 0 224 ) (2752 16 224 ) (2752 16 192 ) +4 74 75 (2760 16 192 ) (2768 16 192 ) (2768 0 192 ) (2760 0 192 ) +4 75 674 (3072 0 96 ) (3072 0 192 ) (2760 0 192 ) (2760 0 96 ) +4 75 78 (3072 0 96 ) (2760 0 96 ) (2760 1024 96 ) (3072 1024 96 ) +4 75 77 (2760 200 96 ) (2760 168 96 ) (2760 168 160 ) (2760 200 160 ) +4 75 76 (2760 1024 96 ) (2760 200 96 ) (2760 200 192 ) (2760 1024 192 ) +4 76 84 (2752 200 192 ) (2752 768 192 ) (2752 768 128 ) (2752 200 128 ) +4 76 80 (2752 768 192 ) (2752 1024 192 ) (2752 1024 96 ) (2752 768 96 ) +4 76 78 (2752 200 96 ) (2752 1024 96 ) (2760 1024 96 ) (2760 200 96 ) +4 76 77 (2752 200 96 ) (2760 200 96 ) (2760 200 160 ) (2752 200 160 ) +4 77 84 (2752 200 160 ) (2752 200 128 ) (2752 168 128 ) (2752 168 160 ) +4 77 78 (2752 168 96 ) (2752 200 96 ) (2760 200 96 ) (2760 168 96 ) +4 78 737 (3072 0 -1284 ) (3072 0 64 ) (2752 0 64 ) (2752 0 -1284 ) +4 78 733 (3072 0 64 ) (3072 0 96 ) (2752 0 96 ) (2752 0 64 ) +4 78 102 (2752 0 -1284 ) (2752 0 64 ) (2752 1024 64 ) (2752 1024 -1284 ) +4 78 101 (2752 320 96 ) (2752 352 96 ) (2752 352 64 ) (2752 320 64 ) +4 78 100 (2752 352 96 ) (2752 448 96 ) (2752 448 64 ) (2752 352 64 ) +4 78 99 (2752 448 96 ) (2752 768 96 ) (2752 768 64 ) (2752 448 64 ) +4 78 80 (2752 768 96 ) (2752 1024 96 ) (2752 1024 64 ) (2752 768 64 ) +4 79 259 (2048 792 256 ) (2048 768 256 ) (2048 768 440 ) (2048 792 440 ) +4 79 255 (2048 768 440 ) (2048 768 460 ) (2048 792 460 ) (2048 792 440 ) +4 79 253 (2048 768 460 ) (2048 768 5542.669922 ) (2048 792 5542.669922 ) (2048 792 460 ) +4 79 109 (2048 948 256 ) (2048 792 256 ) (2048 792 440 ) (2048 948 440 ) +4 79 107 (2048 792 440 ) (2048 792 460 ) (2048 948 460 ) (2048 948 440 ) +4 79 106 (2048 792 460 ) (2048 792 5542.669922 ) (2048 948 5542.669922 ) (2048 948 460 ) +4 79 104 (2048 1024 460 ) (2048 1024 256 ) (2048 960 256 ) (2048 960 460 ) +4 79 105 (2048 960 256 ) (2048 948 256 ) (2048 948 460 ) (2048 960 460 ) +4 79 103 (2048 1024 5542.669922 ) (2048 1024 460 ) (2048 948 460 ) (2048 948 5542.669922 ) +4 79 91 (2368 768 5542.669922 ) (2048 768 5542.669922 ) (2048 768 256 ) (2368 768 256 ) +4 79 84 (2752 768 256 ) (2752 768 5542.669922 ) (2368 768 5542.669922 ) (2368 768 256 ) +4 79 83 (2048 960 256 ) (2048 1024 256 ) (2176 1024 256 ) (2176 960 256 ) +4 79 81 (2176 832 256 ) (2176 1024 256 ) (2464 1024 256 ) (2464 832 256 ) +4 79 80 (2752 768 256 ) (2464 768 256 ) (2464 1024 256 ) (2752 1024 256 ) +4 80 102 (2464 1024 64 ) (2752 1024 64 ) (2752 768 64 ) (2464 768 64 ) +4 80 99 (2464 768 64 ) (2752 768 64 ) (2752 768 96 ) (2464 768 96 ) +4 80 84 (2752 768 128 ) (2752 768 256 ) (2464 768 256 ) (2464 768 128 ) +4 80 82 (2464 832 64 ) (2464 768 64 ) (2464 768 128 ) (2464 832 128 ) +4 80 81 (2464 1024 64 ) (2464 832 64 ) (2464 832 256 ) (2464 1024 256 ) +4 81 102 (2176 1024 64 ) (2464 1024 64 ) (2464 832 64 ) (2176 832 64 ) +4 81 83 (2176 1024 64 ) (2176 960 64 ) (2176 960 256 ) (2176 1024 256 ) +4 81 82 (2176 832 128 ) (2176 832 64 ) (2464 832 64 ) (2464 832 128 ) +4 82 102 (2464 832 64 ) (2464 768 64 ) (2176 768 64 ) (2176 832 64 ) +4 82 99 (2176 768 64 ) (2464 768 64 ) (2464 768 96 ) (2176 768 96 ) +4 83 102 (2048 960 64 ) (2048 1024 64 ) (2176 1024 64 ) (2176 960 64 ) +4 84 743 (2752 0 128 ) (2752 0 384 ) (2368 0 384 ) (2368 0 128 ) +4 84 738 (2752 0 384 ) (2752 0 5542.669922 ) (2368 0 5542.669922 ) (2368 0 384 ) +4 84 96 (2368 160 128 ) (2368 0 128 ) (2368 0 144 ) (2368 160 144 ) +4 84 95 (2368 0 144 ) (2368 0 5542.669922 ) (2368 160 5542.669922 ) (2368 160 144 ) +4 84 94 (2368 448 128 ) (2368 352 128 ) (2368 352 224 ) (2368 448 224 ) +4 84 93 (2368 160 224 ) (2368 160 5542.669922 ) (2368 448 5542.669922 ) (2368 448 224 ) +4 84 91 (2368 768 5542.669922 ) (2368 768 128 ) (2368 448 128 ) (2368 448 5542.669922 ) +4 84 89 (2368 160 128 ) (2368 176 128 ) (2544 176 128 ) (2544 160 128 ) +4 84 90 (2368 0 128 ) (2368 160 128 ) (2544 160 128 ) (2544 0 128 ) +4 84 88 (2368 176 128 ) (2368 192 128 ) (2544 192 128 ) (2544 176 128 ) +4 84 87 (2368 192 128 ) (2368 208 128 ) (2544 208 128 ) (2544 192 128 ) +4 84 86 (2544 208 128 ) (2728 208 128 ) (2728 0 128 ) (2544 0 128 ) +4 84 85 (2752 168 128 ) (2752 0 128 ) (2728 0 128 ) (2728 168 128 ) +4 85 743 (2752 0 96 ) (2752 0 128 ) (2728 0 128 ) (2728 0 96 ) +5 85 86 (2728 144 96 ) (2728 0 96 ) (2728 0 128 ) (2728 168 128 ) (2728 168 108 ) +4 86 743 (2728 0 128 ) (2544 0 128 ) (2544 0 96 ) (2728 0 96 ) +4 86 89 (2544 176 112 ) (2544 160 104 ) (2544 160 128 ) (2544 176 128 ) +5 86 90 (2544 160 104 ) (2544 144 96 ) (2544 0 96 ) (2544 0 128 ) (2544 160 128 ) +4 86 88 (2544 192 120 ) (2544 176 112 ) (2544 176 128 ) (2544 192 128 ) +3 86 87 (2544 208 128 ) (2544 192 120 ) (2544 192 128 ) +4 87 88 (2544 192 120 ) (2544 192 128 ) (2368 192 128 ) (2368 192 120 ) +4 88 89 (2544 176 112 ) (2544 176 128 ) (2368 176 128 ) (2368 176 112 ) +4 89 90 (2544 160 104 ) (2544 160 128 ) (2368 160 128 ) (2368 160 104 ) +4 90 743 (2544 0 128 ) (2368 0 128 ) (2368 0 96 ) (2544 0 96 ) +4 90 96 (2368 160 96 ) (2368 0 96 ) (2368 0 128 ) (2368 160 128 ) +4 91 534 (2048 768 320 ) (2048 768 128 ) (2048 448 128 ) (2048 448 320 ) +4 91 528 (2048 768 460 ) (2048 768 320 ) (2048 448 320 ) (2048 448 460 ) +3 91 527 (2048 768 466.666504 ) (2048 768 460 ) (2048 764 460 ) +5 91 526 (2048 768 5542.669922 ) (2048 768 466.666504 ) (2048 764 460 ) (2048 448 460 ) (2048 448 5542.669922 ) +4 91 94 (2048 448 224 ) (2048 448 128 ) (2368 448 128 ) (2368 448 224 ) +4 91 93 (2048 448 5542.669922 ) (2048 448 224 ) (2368 448 224 ) (2368 448 5542.669922 ) +4 91 92 (2112 448 128 ) (2048 448 128 ) (2048 768 128 ) (2112 768 128 ) +4 92 534 (2048 768 128 ) (2048 768 120 ) (2048 448 120 ) (2048 448 128 ) +4 93 591 (2048 320 224 ) (2048 160 224 ) (2048 160 5542.669922 ) (2048 320 5542.669922 ) +4 93 586 (2048 448 320 ) (2048 448 224 ) (2048 320 224 ) (2048 320 320 ) +4 93 528 (2048 448 460 ) (2048 448 320 ) (2048 320 320 ) (2048 320 460 ) +4 93 526 (2048 448 5542.669922 ) (2048 448 460 ) (2048 320 460 ) (2048 320 5542.669922 ) +4 93 95 (2368 160 224 ) (2368 160 5542.669922 ) (2048 160 5542.669922 ) (2048 160 224 ) +4 93 94 (2048 352 224 ) (2048 448 224 ) (2368 448 224 ) (2368 352 224 ) +4 94 586 (2048 448 224 ) (2048 448 128 ) (2048 352 128 ) (2048 352 224 ) +4 95 743 (2048 0 384 ) (2048 0 144 ) (2368 0 144 ) (2368 0 384 ) +4 95 738 (2048 0 5542.669922 ) (2048 0 384 ) (2368 0 384 ) (2368 0 5542.669922 ) +4 95 600 (2048 0 144 ) (2048 0 155.519012 ) (2048 60 155.519012 ) (2048 60 144 ) +4 95 598 (2048 60 155.519012 ) (2048 160 155.519012 ) (2048 160 144 ) (2048 60 144 ) +4 95 595 (2048 0 155.519012 ) (2048 0 168 ) (2048 4 168 ) (2048 4 155.519012 ) +4 95 593 (2048 4 168 ) (2048 72 168 ) (2048 59.519005 155.519012 ) (2048 4 155.519012 ) +4 95 592 (2048 72 168 ) (2048 160 168 ) (2048 160 155.519012 ) (2048 59.519005 155.519012 ) +4 95 591 (2048 0 168 ) (2048 0 5542.669922 ) (2048 160 5542.669922 ) (2048 160 168 ) +4 95 97 (2224 64 144 ) (2224 0 144 ) (2208 0 144 ) (2208 64 144 ) +4 95 96 (2224 160 144 ) (2368 160 144 ) (2368 0 144 ) (2224 0 144 ) +4 95 98 (2048 0 144 ) (2048 160 144 ) (2208 160 144 ) (2208 0 144 ) +4 96 743 (2224 0 96 ) (2368 0 96 ) (2368 0 144 ) (2224 0 144 ) +4 96 97 (2224 0 144 ) (2224 64 144 ) (2224 64 96 ) (2224 0 96 ) +4 97 743 (2208 0 96 ) (2224 0 96 ) (2224 0 144 ) (2208 0 144 ) +4 97 98 (2208 0 144 ) (2208 64 144 ) (2208 64 96 ) (2208 0 96 ) +4 98 743 (2048 0 144 ) (2048 0 96 ) (2208 0 96 ) (2208 0 144 ) +4 98 604 (2048 0 96 ) (2048 0 100 ) (2048 68 100 ) (2048 68 96 ) +4 98 603 (2048 68 100 ) (2048 160 100 ) (2048 160 96 ) (2048 68 96 ) +4 98 600 (2048 0 100 ) (2048 0 144 ) (2048 60 144 ) (2048 60 100 ) +4 98 598 (2048 60 144 ) (2048 160 144 ) (2048 160 100 ) (2048 60 100 ) +4 99 102 (2176 768 64 ) (2752 768 64 ) (2752 448 64 ) (2176 448 64 ) +4 99 100 (2176 448 64 ) (2752 448 64 ) (2752 448 96 ) (2176 448 96 ) +4 100 102 (2176 448 64 ) (2752 448 64 ) (2752 352 64 ) (2176 352 64 ) +4 100 101 (2368 352 64 ) (2752 352 64 ) (2752 352 96 ) (2368 352 96 ) +4 101 102 (2368 352 64 ) (2752 352 64 ) (2752 320 64 ) (2368 320 64 ) +4 102 802 (2752 0 -1284 ) (2752 0 0 ) (2048 0 0 ) (2048 0 -1284 ) +4 102 798 (2240 0 64 ) (2048 0 64 ) (2048 0 0 ) (2240 0 0 ) +4 102 797 (2752 0 0 ) (2752 0 64 ) (2240 0 64 ) (2240 0 0 ) +4 102 634 (2048 768 -1284 ) (2048 0 -1284 ) (2048 0 0 ) (2048 768 0 ) +4 102 630 (2048 0 0 ) (2048 0 64 ) (2048 448 64 ) (2048 448 0 ) +4 102 629 (2048 448 64 ) (2048 768 64 ) (2048 768 0 ) (2048 448 0 ) +4 102 288 (2048 1024 64 ) (2048 1024 -1284 ) (2048 768 -1284 ) (2048 768 64 ) +4 103 299 (1328 952 486.666351 ) (1328 948 486.666351 ) (1328 948 560 ) (1328 952 560 ) +4 103 297 (1328 1024 560 ) (1328 1024 486.666504 ) (1328 952 486.666351 ) (1328 952 560 ) +4 103 293 (1328 1024 568 ) (1328 1024 560 ) (1328 948 560 ) (1328 948 568 ) +4 103 292 (1328 1024 5542.669922 ) (1328 1024 568 ) (1328 948 568 ) (1328 948 5542.669922 ) +4 103 113 (1328 948 5542.669922 ) (1328 948 486.666504 ) (1340 948 466.666321 ) (1340 948 5542.669922 ) +5 103 106 (1340 948 466.666321 ) (1344 948 460 ) (2048 948 460 ) (2048 948 5542.669922 ) (1340 948 5542.669922 ) +4 103 104 (1352 960 460 ) (1352 1024 460 ) (2048 1024 460 ) (2048 960 460 ) +4 103 105 (2048 948 460 ) (1352 948 460 ) (1352 960 460 ) (2048 960 460 ) +4 104 105 (1352 960 460 ) (1352 960 256 ) (2048 960 256 ) (2048 960 460 ) +4 105 282 (1728 948 116 ) (1664 948 116 ) (1664 960 116 ) (1728 960 116 ) +4 105 283 (1664 948 116 ) (1352 948 116 ) (1352 960 116 ) (1664 960 116 ) +4 105 281 (1792 948 116 ) (1728 948 116 ) (1728 960 116 ) (1792 960 116 ) +4 105 280 (1856 948 116 ) (1792 948 116 ) (1792 960 116 ) (1856 960 116 ) +4 105 279 (1920 948 116 ) (1856 948 116 ) (1856 960 116 ) (1920 960 116 ) +4 105 278 (1984 948 116 ) (1920 948 116 ) (1920 960 116 ) (1984 960 116 ) +4 105 277 (2048 960 116 ) (2048 948 116 ) (1984 948 116 ) (1984 960 116 ) +4 105 109 (1352 948 116 ) (2048 948 116 ) (2048 948 440 ) (1352 948 440 ) +4 105 107 (2048 948 440 ) (2048 948 460 ) (1352 948 460 ) (1352 948 440 ) +5 106 253 (2048 792 460 ) (2048 792 5542.669922 ) (1340 792 5542.669922 ) (1340 792 466.666504 ) (1344 792 460 ) +4 106 183 (1340 856 466.666565 ) (1340 792 466.666595 ) (1340 792 5542.669922 ) (1340 856 5542.669922 ) +4 106 175 (1340 884 466.666534 ) (1340 856 466.666565 ) (1340 856 5542.669922 ) (1340 884 5542.669922 ) +4 106 113 (1340 948 5542.669922 ) (1340 948 466.666504 ) (1340 884 466.666534 ) (1340 884 5542.669922 ) +4 106 107 (2048 792 460 ) (1348 792 460 ) (1348 948 460 ) (2048 948 460 ) +5 107 255 (2048 792 440 ) (2048 792 460 ) (1348 792 460 ) (1344 792 452 ) (1344 792 440 ) +4 107 109 (2048 792 440 ) (1344 792 440 ) (1344 948 440 ) (2048 948 440 ) +4 107 108 (1344 948 440 ) (1344 792 440 ) (1344 792 448 ) (1344 948 448 ) +3 108 256 (1340 792 440 ) (1344 792 440 ) (1344 792 448 ) +4 108 112 (1342 792 440 ) (1340 792 440 ) (1340 856 440 ) (1342 856 440 ) +4 108 111 (1340 856 440 ) (1340 884 440 ) (1342 884 440 ) (1342 856 440 ) +4 108 110 (1340 884 440 ) (1340 948 440 ) (1342 948 440 ) (1342 884 440 ) +4 108 109 (1344 792 440 ) (1342 792 440 ) (1342 948 440 ) (1344 948 440 ) +4 109 285 (1342 948 116 ) (1344 948 116 ) (1344 792 116 ) (1342 792 116 ) +4 109 284 (1344 948 116 ) (1352 948 116 ) (1352 792 116 ) (1344 792 116 ) +4 109 282 (1664 948 116 ) (1728 948 116 ) (1728 792 116 ) (1664 792 116 ) +4 109 283 (1352 948 116 ) (1664 948 116 ) (1664 792 116 ) (1352 792 116 ) +4 109 281 (1728 948 116 ) (1792 948 116 ) (1792 792 116 ) (1728 792 116 ) +4 109 280 (1792 948 116 ) (1856 948 116 ) (1856 792 116 ) (1792 792 116 ) +4 109 279 (1856 948 116 ) (1920 948 116 ) (1920 792 116 ) (1856 792 116 ) +4 109 278 (1920 948 116 ) (1984 948 116 ) (1984 792 116 ) (1920 792 116 ) +4 109 277 (1984 948 116 ) (2048 948 116 ) (2048 792 116 ) (1984 792 116 ) +4 109 267 (1342 792 116 ) (2048 792 116 ) (2048 792 176 ) (1342 792 176 ) +4 109 259 (2048 792 176 ) (2048 792 440 ) (1342 792 440 ) (1342 792 176 ) +4 109 112 (1342 792 118 ) (1342 792 440 ) (1342 856 440 ) (1342 856 118 ) +4 109 111 (1342 856 440 ) (1342 884 440 ) (1342 884 116 ) (1342 856 116 ) +4 109 110 (1342 884 440 ) (1342 948 440 ) (1342 948 118 ) (1342 884 118 ) +4 110 163 (1340 948 125 ) (1340 948 120 ) (1340 884 120 ) (1340 884 125 ) +4 110 121 (1340 948 233 ) (1340 948 197 ) (1340 884 197 ) (1340 884 233 ) +4 110 122 (1340 948 194 ) (1340 948 125 ) (1340 884 125 ) (1340 884 194 ) +4 110 116 (1340 948 234 ) (1340 948 233 ) (1340 884 233 ) (1340 884 234 ) +4 110 115 (1340 948 236 ) (1340 948 234 ) (1340 884 234 ) (1340 884 236 ) +4 110 111 (1342 884 118 ) (1342 884 440 ) (1340 884 440 ) (1340 884 120 ) +4 111 285 (1342 884 116 ) (1342 856 116 ) (1340 856 116 ) (1340 884 116 ) +4 111 179 (1340 882 182 ) (1340 884 182 ) (1340 884 128 ) (1340 882 128 ) +4 111 178 (1340 856 128 ) (1340 856 182 ) (1340 858 182 ) (1340 858 128 ) +4 111 177 (1340 882 236 ) (1340 884 236 ) (1340 884 199 ) (1340 882 199 ) +4 111 176 (1340 856 199 ) (1340 856 236 ) (1340 858 236 ) (1340 858 199 ) +4 111 112 (1342 856 118 ) (1342 856 440 ) (1340 856 440 ) (1340 856 120 ) +4 112 267 (1342 792 118 ) (1342 792 176 ) (1340 792 176 ) (1340 792 120 ) +4 112 259 (1342 792 176 ) (1342 792 440 ) (1340 792 440 ) (1340 792 176 ) +4 112 241 (1340 792 120 ) (1340 792 125 ) (1340 856 125 ) (1340 856 120 ) +4 112 191 (1340 792 197 ) (1340 792 233 ) (1340 856 233 ) (1340 856 197 ) +4 112 192 (1340 792 125 ) (1340 792 194 ) (1340 856 194 ) (1340 856 125 ) +4 112 186 (1340 792 233 ) (1340 792 234 ) (1340 856 234 ) (1340 856 233 ) +4 112 185 (1340 792 234 ) (1340 792 236 ) (1340 856 236 ) (1340 856 234 ) +4 113 299 (1328 884 486.666351 ) (1328 884 560 ) (1328 948 560 ) (1328 948 486.666504 ) +4 113 293 (1328 884 560 ) (1328 884 568 ) (1328 948 568 ) (1328 948 560 ) +4 113 292 (1328 884 568 ) (1328 884 5542.669922 ) (1328 948 5542.669922 ) (1328 948 568 ) +4 113 180 (1328 884 5542.669922 ) (1328 884 486.666504 ) (1332 884 480 ) (1332 884 5542.669922 ) +4 113 175 (1332 884 480 ) (1340 884 466.666595 ) (1340 884 5542.669922 ) (1332 884 5542.669922 ) +4 114 344 (1328 884 236 ) (1328 884 288 ) (1328 948 288 ) (1328 948 236 ) +4 114 303 (1328 884 288 ) (1328 884 420 ) (1328 948 420 ) (1328 948 288 ) +4 114 301 (1328 884 420 ) (1328 884 460 ) (1328 948 460 ) (1328 948 420 ) +4 114 181 (1328 884 460 ) (1328 884 236 ) (1332 884 236 ) (1332 884 460 ) +4 115 177 (1338 884 234 ) (1340 884 234 ) (1340 884 236 ) (1338 884 236 ) +4 115 119 (1338 884 234 ) (1337 884 234 ) (1337 913 234 ) (1338 913 234 ) +4 115 117 (1337 919 234 ) (1337 948 234 ) (1338 948 234 ) (1338 919 234 ) +4 115 116 (1340 884 234 ) (1338 884 234 ) (1338 948 234 ) (1340 948 234 ) +4 116 177 (1338 884 233 ) (1340 884 233 ) (1340 884 234 ) (1338 884 234 ) +4 116 121 (1340 884 233 ) (1338 884 233 ) (1338 948 233 ) (1340 948 233 ) +4 116 119 (1338 913 233 ) (1338 884 233 ) (1338 884 234 ) (1338 913 234 ) +4 116 117 (1338 948 233 ) (1338 919 233 ) (1338 919 234 ) (1338 948 234 ) +4 117 123 (1337 948 233 ) (1338 948 233 ) (1338 919 233 ) (1337 919 233 ) +4 117 118 (1337 948 233 ) (1337 919 233 ) (1337 919 234 ) (1337 948 234 ) +4 118 123 (1336 948 233 ) (1337 948 233 ) (1337 919 233 ) (1336 919 233 ) +4 119 124 (1338 884 233 ) (1337 884 233 ) (1337 913 233 ) (1338 913 233 ) +4 119 120 (1337 913 234 ) (1337 913 233 ) (1337 884 233 ) (1337 884 234 ) +4 120 124 (1337 884 233 ) (1336 884 233 ) (1336 913 233 ) (1337 913 233 ) +4 121 177 (1340 884 199 ) (1340 884 233 ) (1338 884 233 ) (1338 884 199 ) +4 121 134 (1338 884 197 ) (1338 884 228 ) (1338 948 228 ) (1338 948 197 ) +3 121 128 (1338 919 229 ) (1338 919 228 ) (1338 918 228 ) +3 121 127 (1338 914 228 ) (1338 913 228 ) (1338 913 229 ) +4 121 129 (1338 884 228 ) (1338 884 231 ) (1338 913 231 ) (1338 913 228 ) +4 121 125 (1338 919 231 ) (1338 948 231 ) (1338 948 228 ) (1338 919 228 ) +4 121 124 (1338 884 231 ) (1338 884 233 ) (1338 913 233 ) (1338 913 231 ) +4 121 123 (1338 919 233 ) (1338 948 233 ) (1338 948 231 ) (1338 919 231 ) +4 122 179 (1340 884 128 ) (1340 884 182 ) (1338 884 182 ) (1338 884 128 ) +4 122 163 (1340 884 125 ) (1338 884 125 ) (1338 948 125 ) (1340 948 125 ) +4 122 136 (1338 913 126 ) (1338 913 194 ) (1338 919 194 ) (1338 919 126 ) +4 122 135 (1338 948 125 ) (1338 919 125 ) (1338 919 194 ) (1338 948 194 ) +4 122 137 (1338 913 125 ) (1338 884 125 ) (1338 884 194 ) (1338 913 194 ) +4 123 125 (1335 948 231 ) (1338 948 231 ) (1338 919 231 ) (1335 919 231 ) +4 124 129 (1335 913 231 ) (1338 913 231 ) (1338 884 231 ) (1335 884 231 ) +4 125 138 (1334 948 228 ) (1337 948 228 ) (1337 919 228 ) (1334 919 228 ) +4 125 134 (1337 948 228 ) (1338 948 228 ) (1338 919 228 ) (1337 919 228 ) +4 125 128 (1334 919 229 ) (1334 919 228 ) (1338 919 228 ) (1338 919 229 ) +4 125 126 (1334 946 228 ) (1334 919 228 ) (1334 919 231 ) (1334 946 231 ) +4 126 139 (1334 946 228 ) (1334 919 228 ) (1333 919 228 ) (1333 946 228 ) +4 126 128 (1333 919 229 ) (1333 919 228 ) (1334 919 228 ) (1334 919 229 ) +4 127 143 (1337 913 228 ) (1333 913 228 ) (1333 914 228 ) (1337 914 228 ) +4 127 134 (1338 914 228 ) (1338 913 228 ) (1337 913 228 ) (1337 914 228 ) +4 127 129 (1333 913 229 ) (1333 913 228 ) (1338 913 228 ) (1338 913 229 ) +4 128 139 (1334 918 228 ) (1333 918 228 ) (1333 919 228 ) (1334 919 228 ) +4 128 138 (1337 918 228 ) (1334 918 228 ) (1334 919 228 ) (1337 919 228 ) +4 128 134 (1338 919 228 ) (1338 918 228 ) (1337 918 228 ) (1337 919 228 ) +4 129 143 (1337 884 228 ) (1333 884 228 ) (1333 913 228 ) (1337 913 228 ) +4 129 134 (1338 913 228 ) (1338 884 228 ) (1337 884 228 ) (1337 913 228 ) +4 130 344 (1328 919 233 ) (1328 948 233 ) (1328 948 228 ) (1328 919 228 ) +4 130 145 (1328 948 228 ) (1332 948 228 ) (1332 919 228 ) (1328 919 228 ) +4 130 132 (1328 919 228 ) (1332 919 228 ) (1332 919 229 ) (1328 919 229 ) +3 131 344 (1328 914 228 ) (1328 913 228 ) (1328 913 229 ) +4 131 146 (1332 913 228 ) (1328 913 228 ) (1328 914 228 ) (1332 914 228 ) +4 131 133 (1328 913 228 ) (1332 913 228 ) (1332 913 229 ) (1328 913 229 ) +3 132 344 (1328 919 229 ) (1328 919 228 ) (1328 918 228 ) +4 132 145 (1328 918 228 ) (1328 919 228 ) (1332 919 228 ) (1332 918 228 ) +4 133 344 (1328 884 228 ) (1328 884 233 ) (1328 913 233 ) (1328 913 228 ) +4 133 181 (1328 884 233 ) (1328 884 228 ) (1332 884 228 ) (1332 884 233 ) +4 133 146 (1332 884 228 ) (1328 884 228 ) (1328 913 228 ) (1332 913 228 ) +4 134 143 (1337 884 197 ) (1337 884 228 ) (1337 914 228 ) (1337 914 197 ) +4 134 142 (1337 917 228 ) (1337 918 228 ) (1337 918 197 ) (1337 917 197 ) +4 134 141 (1337 914 228 ) (1337 915 228 ) (1337 915 197 ) (1337 914 197 ) +4 134 138 (1337 918 228 ) (1337 948 228 ) (1337 948 197 ) (1337 918 197 ) +4 135 164 (1337 919 125 ) (1337 948 125 ) (1338 948 125 ) (1338 919 125 ) +4 135 150 (1337 920 125 ) (1337 919 125 ) (1337 919 189 ) (1337 920 189 ) +4 135 148 (1337 948 125 ) (1337 920 125 ) (1337 920 189 ) (1337 948 189 ) +4 135 147 (1337 919 189 ) (1337 919 191 ) (1337 948 191 ) (1337 948 189 ) +4 135 140 (1337 919 191 ) (1337 919 192 ) (1337 948 192 ) (1337 948 191 ) +4 135 136 (1338 919 126 ) (1338 919 194 ) (1337 919 194 ) (1337 919 126 ) +4 136 157 (1337 913 126 ) (1337 913 189 ) (1337 914 189 ) (1337 914 126 ) +4 136 156 (1337 913 189 ) (1337 913 191 ) (1337 914 191 ) (1337 914 189 ) +4 136 155 (1337 917 191 ) (1337 918 191 ) (1337 918 126 ) (1337 917 126 ) +4 136 154 (1337 914 191 ) (1337 915 191 ) (1337 915 126 ) (1337 914 126 ) +4 136 151 (1337 919 189 ) (1337 919 126 ) (1337 918 126 ) (1337 918 189 ) +4 136 147 (1337 918 191 ) (1337 919 191 ) (1337 919 189 ) (1337 918 189 ) +4 136 144 (1337 913 191 ) (1337 913 192 ) (1337 914 192 ) (1337 914 191 ) +4 136 140 (1337 919 192 ) (1337 919 191 ) (1337 918 191 ) (1337 918 192 ) +4 136 137 (1338 913 126 ) (1338 913 194 ) (1337 913 194 ) (1337 913 126 ) +4 137 166 (1338 884 125 ) (1337 884 125 ) (1337 913 125 ) (1338 913 125 ) +4 137 158 (1337 913 125 ) (1337 912 125 ) (1337 912 189 ) (1337 913 189 ) +4 137 159 (1337 912 125 ) (1337 884 125 ) (1337 884 189 ) (1337 912 189 ) +4 137 156 (1337 884 189 ) (1337 884 191 ) (1337 913 191 ) (1337 913 189 ) +4 137 144 (1337 884 191 ) (1337 884 192 ) (1337 913 192 ) (1337 913 191 ) +4 138 142 (1337 918 197 ) (1337 918 228 ) (1336 918 228 ) (1336 918 197 ) +4 138 139 (1334 918 197 ) (1334 918 228 ) (1334 946 228 ) (1334 946 197 ) +4 140 147 (1336 948 191 ) (1337 948 191 ) (1337 918 191 ) (1336 918 191 ) +4 141 143 (1336 914 197 ) (1337 914 197 ) (1337 914 228 ) (1336 914 228 ) +4 144 156 (1337 914 191 ) (1337 884 191 ) (1336 884 191 ) (1336 914 191 ) +4 145 344 (1328 918 228 ) (1328 948 228 ) (1328 948 197 ) (1328 918 197 ) +4 146 344 (1328 884 197 ) (1328 884 228 ) (1328 914 228 ) (1328 914 197 ) +4 146 181 (1328 884 228 ) (1328 884 197 ) (1332 884 197 ) (1332 884 228 ) +4 147 155 (1337 918 189 ) (1337 918 191 ) (1336 918 191 ) (1336 918 189 ) +4 147 151 (1337 918 189 ) (1335 918 189 ) (1335 919 189 ) (1337 919 189 ) +4 147 150 (1335 919 189 ) (1335 920 189 ) (1337 920 189 ) (1337 919 189 ) +4 147 148 (1335 920 189 ) (1335 948 189 ) (1337 948 189 ) (1337 920 189 ) +4 148 165 (1334 948 125 ) (1335 948 125 ) (1335 920 125 ) (1334 920 125 ) +4 148 164 (1335 948 125 ) (1337 948 125 ) (1337 920 125 ) (1335 920 125 ) +4 148 150 (1337 920 125 ) (1337 920 189 ) (1334 920 189 ) (1334 920 125 ) +4 148 149 (1334 946 125 ) (1334 920 125 ) (1334 920 189 ) (1334 946 189 ) +4 150 165 (1335 919 125 ) (1334 919 125 ) (1334 920 125 ) (1335 920 125 ) +4 150 164 (1337 920 125 ) (1337 919 125 ) (1335 919 125 ) (1335 920 125 ) +4 150 151 (1337 919 125 ) (1337 919 189 ) (1334 919 189 ) (1334 919 125 ) +4 151 155 (1337 918 126 ) (1337 918 189 ) (1336 918 189 ) (1336 918 126 ) +4 152 344 (1328 919 191 ) (1328 948 191 ) (1328 948 125 ) (1328 919 125 ) +4 152 172 (1328 919 125 ) (1328 948 125 ) (1332 948 125 ) (1332 919 125 ) +4 152 153 (1328 919 125 ) (1332 919 125 ) (1332 919 191 ) (1328 919 191 ) +4 153 344 (1328 918 191 ) (1328 919 191 ) (1328 919 125 ) (1328 918 126 ) +4 154 157 (1336 914 126 ) (1337 914 126 ) (1337 914 189 ) (1336 914 189 ) +4 154 156 (1337 914 189 ) (1337 914 191 ) (1336 914 191 ) (1336 914 189 ) +4 156 158 (1337 913 189 ) (1337 912 189 ) (1335 912 189 ) (1335 913 189 ) +4 156 157 (1335 914 189 ) (1337 914 189 ) (1337 913 189 ) (1335 913 189 ) +4 156 159 (1337 912 189 ) (1337 884 189 ) (1335 884 189 ) (1335 912 189 ) +4 157 158 (1337 913 125 ) (1337 913 189 ) (1334 913 189 ) (1334 913 125 ) +4 158 167 (1334 913 125 ) (1335 913 125 ) (1335 912 125 ) (1334 912 125 ) +4 158 166 (1335 913 125 ) (1337 913 125 ) (1337 912 125 ) (1335 912 125 ) +4 158 159 (1337 912 125 ) (1337 912 189 ) (1334 912 189 ) (1334 912 125 ) +4 159 167 (1335 884 125 ) (1334 884 125 ) (1334 912 125 ) (1335 912 125 ) +4 159 166 (1337 884 125 ) (1335 884 125 ) (1335 912 125 ) (1337 912 125 ) +4 160 344 (1328 884 126 ) (1328 884 191 ) (1328 914 191 ) (1328 914 126 ) +4 160 182 (1328 884 191 ) (1328 884 126 ) (1332 884 126 ) (1332 884 191 ) +4 160 162 (1332 913 126 ) (1332 884 126 ) (1328 884 126 ) (1328 913 126 ) +4 160 161 (1332 914 126 ) (1332 913 126 ) (1328 913 126 ) (1328 914 126 ) +3 161 344 (1328 913 126 ) (1328 914 126 ) (1328 913 125 ) +4 161 162 (1328 913 125 ) (1332 913 125 ) (1332 913 126 ) (1328 913 126 ) +4 162 344 (1328 884 125 ) (1328 884 126 ) (1328 913 126 ) (1328 913 125 ) +4 162 182 (1328 884 126 ) (1328 884 125 ) (1332 884 125 ) (1332 884 126 ) +4 162 173 (1332 884 125 ) (1328 884 125 ) (1328 913 125 ) (1332 913 125 ) +4 163 171 (1338 913 120 ) (1338 884 120 ) (1338 884 122 ) (1338 913 122 ) +4 163 170 (1338 948 120 ) (1338 919 120 ) (1338 919 122 ) (1338 948 122 ) +4 163 169 (1338 884 122 ) (1338 884 123 ) (1338 913 123 ) (1338 913 122 ) +4 163 168 (1338 919 123 ) (1338 948 123 ) (1338 948 122 ) (1338 919 122 ) +4 163 166 (1338 884 123 ) (1338 884 125 ) (1338 913 125 ) (1338 913 123 ) +4 163 164 (1338 919 125 ) (1338 948 125 ) (1338 948 123 ) (1338 919 123 ) +4 164 168 (1335 948 123 ) (1338 948 123 ) (1338 919 123 ) (1335 919 123 ) +4 164 165 (1335 919 124 ) (1335 919 125 ) (1335 948 125 ) (1335 948 124 ) +4 166 169 (1335 913 123 ) (1338 913 123 ) (1338 884 123 ) (1335 884 123 ) +4 166 167 (1335 913 125 ) (1335 913 124 ) (1335 884 124 ) (1335 884 125 ) +4 168 170 (1335 948 122 ) (1338 948 122 ) (1338 919 122 ) (1335 919 122 ) +4 169 171 (1335 913 122 ) (1338 913 122 ) (1338 884 122 ) (1335 884 122 ) +4 172 344 (1328 919 125 ) (1328 948 125 ) (1328 948 120 ) (1328 919 120 ) +4 172 174 (1328 919 120 ) (1328 948 120 ) (1332 948 120 ) (1332 919 120 ) +4 173 344 (1328 884 120 ) (1328 884 125 ) (1328 913 125 ) (1328 913 120 ) +4 173 182 (1328 884 125 ) (1328 884 120 ) (1332 884 120 ) (1332 884 125 ) +4 173 174 (1332 884 120 ) (1328 884 120 ) (1328 913 120 ) (1332 913 120 ) +4 174 407 (1328 948 116 ) (1328 884 116 ) (1328 884 120 ) (1328 948 120 ) +4 174 182 (1328 884 120 ) (1328 884 116 ) (1332 884 116 ) (1332 884 120 ) +4 175 183 (1340 856 466.666595 ) (1340 856 5542.669922 ) (1332 856 5542.669922 ) (1332 856 480 ) +4 175 180 (1332 884 5542.669922 ) (1332 884 480 ) (1332 856 480 ) (1332 856 5542.669922 ) +4 176 191 (1340 856 199 ) (1340 856 233 ) (1338 856 233 ) (1338 856 199 ) +4 176 186 (1340 856 233 ) (1340 856 234 ) (1338 856 234 ) (1338 856 233 ) +4 176 185 (1340 856 234 ) (1340 856 236 ) (1338 856 236 ) (1338 856 234 ) +4 178 192 (1340 856 128 ) (1340 856 182 ) (1338 856 182 ) (1338 856 128 ) +4 180 299 (1328 856 486.666351 ) (1328 856 560 ) (1328 884 560 ) (1328 884 486.666504 ) +4 180 293 (1328 856 560 ) (1328 856 568 ) (1328 884 568 ) (1328 884 560 ) +4 180 292 (1328 856 568 ) (1328 856 5542.669922 ) (1328 884 5542.669922 ) (1328 884 568 ) +4 180 183 (1328 856 5542.669922 ) (1328 856 486.666504 ) (1332 856 480 ) (1332 856 5542.669922 ) +4 181 344 (1328 856 197 ) (1328 856 288 ) (1328 884 288 ) (1328 884 197 ) +4 181 303 (1328 856 288 ) (1328 856 420 ) (1328 884 420 ) (1328 884 288 ) +4 181 301 (1328 856 420 ) (1328 856 460 ) (1328 884 460 ) (1328 884 420 ) +4 181 233 (1328 856 228 ) (1328 856 197 ) (1332 856 197 ) (1332 856 228 ) +4 181 198 (1328 856 231 ) (1328 856 228 ) (1332 856 228 ) (1332 856 231 ) +4 181 195 (1328 856 233 ) (1328 856 231 ) (1332 856 231 ) (1332 856 233 ) +4 181 184 (1328 856 460 ) (1328 856 236 ) (1332 856 236 ) (1332 856 460 ) +4 182 407 (1328 884 116 ) (1328 856 116 ) (1328 856 120 ) (1328 884 120 ) +4 182 344 (1328 856 120 ) (1328 856 194 ) (1328 884 194 ) (1328 884 120 ) +4 182 252 (1328 856 120 ) (1328 856 116 ) (1332 856 116 ) (1332 856 120 ) +4 182 250 (1328 856 125 ) (1328 856 120 ) (1332 856 120 ) (1332 856 125 ) +4 182 237 (1328 856 126 ) (1328 856 125 ) (1332 856 125 ) (1332 856 126 ) +4 182 235 (1328 856 191 ) (1328 856 126 ) (1332 856 126 ) (1332 856 191 ) +4 183 299 (1328 792 486.666351 ) (1328 792 560 ) (1328 856 560 ) (1328 856 486.666504 ) +4 183 295 (1328 792 560 ) (1328 792 568 ) (1328 832 568 ) (1328 832 560 ) +4 183 293 (1328 832 568 ) (1328 856 568 ) (1328 856 560 ) (1328 832 560 ) +4 183 292 (1328 792 568 ) (1328 792 5542.669922 ) (1328 856 5542.669922 ) (1328 856 568 ) +4 183 253 (1328 792 5542.669922 ) (1328 792 486.666504 ) (1340 792 466.666595 ) (1340 792 5542.669922 ) +4 184 344 (1328 792 236 ) (1328 792 288 ) (1328 856 288 ) (1328 856 236 ) +4 184 303 (1328 792 288 ) (1328 792 420 ) (1328 856 420 ) (1328 856 288 ) +4 184 301 (1328 792 420 ) (1328 792 460 ) (1328 856 460 ) (1328 856 420 ) +4 184 261 (1328 792 440 ) (1328 792 236 ) (1332 792 236 ) (1332 792 440 ) +4 184 257 (1328 792 460 ) (1328 792 440 ) (1332 792 440 ) (1332 792 460 ) +4 185 189 (1338 821 234 ) (1338 792 234 ) (1337 792 234 ) (1337 821 234 ) +4 185 187 (1337 856 234 ) (1338 856 234 ) (1338 827 234 ) (1337 827 234 ) +4 185 186 (1338 856 234 ) (1340 856 234 ) (1340 792 234 ) (1338 792 234 ) +4 186 191 (1338 856 233 ) (1340 856 233 ) (1340 792 233 ) (1338 792 233 ) +4 186 189 (1338 821 233 ) (1338 792 233 ) (1338 792 234 ) (1338 821 234 ) +4 186 187 (1338 856 233 ) (1338 827 233 ) (1338 827 234 ) (1338 856 234 ) +4 187 193 (1337 856 233 ) (1338 856 233 ) (1338 827 233 ) (1337 827 233 ) +4 187 188 (1337 856 233 ) (1337 827 233 ) (1337 827 234 ) (1337 856 234 ) +4 188 193 (1336 856 233 ) (1337 856 233 ) (1337 827 233 ) (1336 827 233 ) +4 189 194 (1338 821 233 ) (1338 792 233 ) (1337 792 233 ) (1337 821 233 ) +4 189 190 (1337 821 234 ) (1337 821 233 ) (1337 792 233 ) (1337 792 234 ) +4 190 194 (1337 792 233 ) (1336 792 233 ) (1336 821 233 ) (1337 821 233 ) +4 191 209 (1338 792 197 ) (1338 792 228 ) (1338 856 228 ) (1338 856 197 ) +4 191 207 (1338 792 228 ) (1338 792 231 ) (1338 794 231 ) (1338 794 228 ) +4 191 205 (1338 794 231 ) (1338 821 231 ) (1338 821 228 ) (1338 794 228 ) +3 191 202 (1338 827 229 ) (1338 827 228 ) (1338 826 228 ) +3 191 201 (1338 822 228 ) (1338 821 228 ) (1338 821 229 ) +4 191 199 (1338 827 231 ) (1338 854 231 ) (1338 854 228 ) (1338 827 228 ) +4 191 197 (1338 854 231 ) (1338 856 231 ) (1338 856 228 ) (1338 854 228 ) +4 191 194 (1338 792 231 ) (1338 792 233 ) (1338 821 233 ) (1338 821 231 ) +4 191 193 (1338 827 233 ) (1338 856 233 ) (1338 856 231 ) (1338 827 231 ) +4 192 272 (1340 792 128 ) (1340 792 136 ) (1338 792 136 ) (1338 792 128 ) +4 192 268 (1340 792 136 ) (1340 792 176 ) (1338 792 176 ) (1338 792 136 ) +4 192 260 (1340 792 176 ) (1340 792 182 ) (1338 792 182 ) (1338 792 176 ) +4 192 241 (1338 856 125 ) (1340 856 125 ) (1340 792 125 ) (1338 792 125 ) +4 192 211 (1338 856 125 ) (1338 827 125 ) (1338 827 126 ) (1338 856 126 ) +4 192 212 (1338 821 125 ) (1338 792 125 ) (1338 792 126 ) (1338 821 126 ) +4 192 210 (1338 792 126 ) (1338 792 194 ) (1338 856 194 ) (1338 856 126 ) +4 193 199 (1338 854 231 ) (1338 827 231 ) (1335 827 231 ) (1335 854 231 ) +4 193 197 (1335 856 231 ) (1338 856 231 ) (1338 854 231 ) (1335 854 231 ) +4 194 207 (1338 794 231 ) (1338 792 231 ) (1335 792 231 ) (1335 794 231 ) +4 194 205 (1338 821 231 ) (1338 794 231 ) (1335 794 231 ) (1335 821 231 ) +4 195 344 (1328 827 233 ) (1328 856 233 ) (1328 856 231 ) (1328 827 231 ) +4 195 200 (1332 854 231 ) (1332 827 231 ) (1328 827 231 ) (1328 854 231 ) +4 195 198 (1328 856 231 ) (1332 856 231 ) (1332 854 231 ) (1328 854 231 ) +4 196 344 (1328 792 231 ) (1328 792 233 ) (1328 821 233 ) (1328 821 231 ) +4 196 261 (1328 792 233 ) (1328 792 231 ) (1332 792 231 ) (1332 792 233 ) +4 196 208 (1332 792 231 ) (1328 792 231 ) (1328 794 231 ) (1332 794 231 ) +4 196 206 (1328 794 231 ) (1328 821 231 ) (1332 821 231 ) (1332 794 231 ) +4 197 213 (1334 856 228 ) (1337 856 228 ) (1337 854 228 ) (1334 854 228 ) +4 197 209 (1337 856 228 ) (1338 856 228 ) (1338 854 228 ) (1337 854 228 ) +4 197 199 (1334 854 228 ) (1338 854 228 ) (1338 854 231 ) (1334 854 231 ) +4 198 344 (1328 854 231 ) (1328 856 231 ) (1328 856 228 ) (1328 854 228 ) +4 198 233 (1328 856 228 ) (1332 856 228 ) (1332 854 228 ) (1328 854 228 ) +4 198 200 (1328 854 228 ) (1332 854 228 ) (1332 854 231 ) (1328 854 231 ) +4 199 217 (1334 827 228 ) (1333 827 228 ) (1333 854 228 ) (1334 854 228 ) +4 199 213 (1337 827 228 ) (1334 827 228 ) (1334 854 228 ) (1337 854 228 ) +4 199 209 (1338 854 228 ) (1338 827 228 ) (1337 827 228 ) (1337 854 228 ) +4 199 202 (1333 827 228 ) (1338 827 228 ) (1338 827 229 ) (1333 827 229 ) +4 200 344 (1328 827 231 ) (1328 854 231 ) (1328 854 228 ) (1328 827 228 ) +4 200 233 (1332 827 228 ) (1328 827 228 ) (1328 854 228 ) (1332 854 228 ) +4 200 204 (1328 827 228 ) (1332 827 228 ) (1332 827 229 ) (1328 827 229 ) +4 201 226 (1334 821 228 ) (1333 821 228 ) (1333 822 228 ) (1334 822 228 ) +4 201 225 (1337 821 228 ) (1334 821 228 ) (1334 822 228 ) (1337 822 228 ) +4 201 209 (1338 822 228 ) (1338 821 228 ) (1337 821 228 ) (1337 822 228 ) +4 201 205 (1333 821 228 ) (1338 821 228 ) (1338 821 229 ) (1333 821 229 ) +4 202 217 (1334 826 228 ) (1333 826 228 ) (1333 827 228 ) (1334 827 228 ) +4 202 213 (1337 826 228 ) (1334 826 228 ) (1334 827 228 ) (1337 827 228 ) +4 202 209 (1338 827 228 ) (1338 826 228 ) (1337 826 228 ) (1337 827 228 ) +3 203 344 (1328 822 228 ) (1328 821 228 ) (1328 821 229 ) +4 203 234 (1332 821 228 ) (1328 821 228 ) (1328 822 228 ) (1332 822 228 ) +4 203 206 (1328 821 228 ) (1332 821 228 ) (1332 821 229 ) (1328 821 229 ) +3 204 344 (1328 827 229 ) (1328 827 228 ) (1328 826 228 ) +4 204 233 (1328 826 228 ) (1328 827 228 ) (1332 827 228 ) (1332 826 228 ) +4 205 226 (1334 794 228 ) (1333 794 228 ) (1333 821 228 ) (1334 821 228 ) +4 205 225 (1337 794 228 ) (1334 794 228 ) (1334 821 228 ) (1337 821 228 ) +4 205 209 (1338 821 228 ) (1338 794 228 ) (1337 794 228 ) (1337 821 228 ) +4 205 207 (1334 794 228 ) (1338 794 228 ) (1338 794 231 ) (1334 794 231 ) +4 206 344 (1328 794 231 ) (1328 821 231 ) (1328 821 228 ) (1328 794 228 ) +4 206 234 (1332 794 228 ) (1328 794 228 ) (1328 821 228 ) (1332 821 228 ) +4 206 208 (1328 794 228 ) (1332 794 228 ) (1332 794 231 ) (1328 794 231 ) +4 207 225 (1337 792 228 ) (1334 792 228 ) (1334 794 228 ) (1337 794 228 ) +4 207 209 (1338 794 228 ) (1338 792 228 ) (1337 792 228 ) (1337 794 228 ) +4 208 344 (1328 792 228 ) (1328 792 231 ) (1328 794 231 ) (1328 794 228 ) +4 208 261 (1328 792 231 ) (1328 792 228 ) (1332 792 228 ) (1332 792 231 ) +4 208 234 (1332 792 228 ) (1328 792 228 ) (1328 794 228 ) (1332 794 228 ) +4 209 225 (1337 792 197 ) (1337 792 228 ) (1337 822 228 ) (1337 822 197 ) +4 209 215 (1337 825 228 ) (1337 826 228 ) (1337 826 197 ) (1337 825 197 ) +4 209 214 (1337 822 228 ) (1337 823 228 ) (1337 823 197 ) (1337 822 197 ) +4 209 213 (1337 826 228 ) (1337 856 228 ) (1337 856 197 ) (1337 826 197 ) +4 210 232 (1337 792 126 ) (1337 792 189 ) (1337 794 189 ) (1337 794 126 ) +4 210 230 (1337 820 189 ) (1337 821 189 ) (1337 821 126 ) (1337 820 126 ) +4 210 229 (1337 821 189 ) (1337 822 189 ) (1337 822 126 ) (1337 821 126 ) +4 210 231 (1337 794 189 ) (1337 820 189 ) (1337 820 126 ) (1337 794 126 ) +4 210 228 (1337 792 189 ) (1337 792 191 ) (1337 822 191 ) (1337 822 189 ) +4 210 227 (1337 792 191 ) (1337 792 192 ) (1337 822 192 ) (1337 822 191 ) +4 210 224 (1337 826 126 ) (1337 825 126 ) (1337 825 191 ) (1337 826 191 ) +4 210 223 (1337 823 126 ) (1337 822 126 ) (1337 822 191 ) (1337 823 191 ) +4 210 222 (1337 827 126 ) (1337 826 126 ) (1337 826 189 ) (1337 827 189 ) +4 210 221 (1337 828 126 ) (1337 827 126 ) (1337 827 189 ) (1337 828 189 ) +4 210 220 (1337 854 126 ) (1337 828 126 ) (1337 828 189 ) (1337 854 189 ) +4 210 219 (1337 856 189 ) (1337 856 126 ) (1337 854 126 ) (1337 854 189 ) +4 210 218 (1337 856 191 ) (1337 856 189 ) (1337 826 189 ) (1337 826 191 ) +4 210 216 (1337 856 192 ) (1337 856 191 ) (1337 826 191 ) (1337 826 192 ) +4 210 211 (1337 827 126 ) (1337 856 126 ) (1338 856 126 ) (1338 827 126 ) +4 210 212 (1337 792 126 ) (1337 821 126 ) (1338 821 126 ) (1338 792 126 ) +4 211 242 (1337 856 125 ) (1338 856 125 ) (1338 827 125 ) (1337 827 125 ) +4 211 221 (1337 828 125 ) (1337 827 125 ) (1337 827 126 ) (1337 828 126 ) +4 211 220 (1337 854 125 ) (1337 828 125 ) (1337 828 126 ) (1337 854 126 ) +4 211 219 (1337 856 125 ) (1337 854 125 ) (1337 854 126 ) (1337 856 126 ) +4 212 244 (1338 821 125 ) (1338 792 125 ) (1337 792 125 ) (1337 821 125 ) +4 212 232 (1337 794 125 ) (1337 792 125 ) (1337 792 126 ) (1337 794 126 ) +4 212 230 (1337 821 125 ) (1337 820 125 ) (1337 820 126 ) (1337 821 126 ) +4 212 231 (1337 820 125 ) (1337 794 125 ) (1337 794 126 ) (1337 820 126 ) +4 213 217 (1334 826 228 ) (1334 854 228 ) (1334 854 197 ) (1334 826 197 ) +4 213 215 (1336 826 197 ) (1337 826 197 ) (1337 826 228 ) (1336 826 228 ) +4 214 225 (1337 822 197 ) (1337 822 228 ) (1336 822 228 ) (1336 822 197 ) +4 216 218 (1336 856 191 ) (1337 856 191 ) (1337 826 191 ) (1336 826 191 ) +4 218 224 (1337 826 189 ) (1337 826 191 ) (1336 826 191 ) (1336 826 189 ) +4 218 222 (1337 826 189 ) (1335 826 189 ) (1335 827 189 ) (1337 827 189 ) +4 218 221 (1335 827 189 ) (1335 828 189 ) (1337 828 189 ) (1337 827 189 ) +4 218 220 (1335 828 189 ) (1335 854 189 ) (1337 854 189 ) (1337 828 189 ) +4 218 219 (1335 854 189 ) (1335 856 189 ) (1337 856 189 ) (1337 854 189 ) +4 219 243 (1334 856 125 ) (1335 856 125 ) (1335 854 125 ) (1334 854 125 ) +4 219 242 (1335 856 125 ) (1337 856 125 ) (1337 854 125 ) (1335 854 125 ) +4 219 220 (1337 854 125 ) (1337 854 189 ) (1334 854 189 ) (1334 854 125 ) +4 220 243 (1335 828 125 ) (1334 828 125 ) (1334 854 125 ) (1335 854 125 ) +4 220 242 (1337 854 125 ) (1337 828 125 ) (1335 828 125 ) (1335 854 125 ) +4 220 221 (1337 828 125 ) (1337 828 189 ) (1334 828 189 ) (1334 828 125 ) +4 221 243 (1335 827 125 ) (1334 827 125 ) (1334 828 125 ) (1335 828 125 ) +4 221 242 (1337 828 125 ) (1337 827 125 ) (1335 827 125 ) (1335 828 125 ) +4 221 222 (1337 827 125 ) (1337 827 189 ) (1334 827 189 ) (1334 827 125 ) +4 222 224 (1337 826 126 ) (1337 826 189 ) (1336 826 189 ) (1336 826 126 ) +4 223 229 (1336 822 126 ) (1337 822 126 ) (1337 822 189 ) (1336 822 189 ) +4 223 228 (1337 822 189 ) (1337 822 191 ) (1336 822 191 ) (1336 822 189 ) +4 225 226 (1334 822 228 ) (1334 822 197 ) (1334 794 197 ) (1334 794 228 ) +4 227 228 (1336 822 191 ) (1337 822 191 ) (1337 792 191 ) (1336 792 191 ) +4 228 232 (1337 794 189 ) (1337 792 189 ) (1335 792 189 ) (1335 794 189 ) +4 228 230 (1337 821 189 ) (1337 820 189 ) (1335 820 189 ) (1335 821 189 ) +4 228 229 (1335 822 189 ) (1337 822 189 ) (1337 821 189 ) (1335 821 189 ) +4 228 231 (1337 820 189 ) (1337 794 189 ) (1335 794 189 ) (1335 820 189 ) +4 229 230 (1337 821 125 ) (1337 821 189 ) (1334 821 189 ) (1334 821 125 ) +4 230 245 (1335 820 125 ) (1334 820 125 ) (1334 821 125 ) (1335 821 125 ) +4 230 244 (1337 821 125 ) (1337 820 125 ) (1335 820 125 ) (1335 821 125 ) +4 230 231 (1337 820 125 ) (1337 820 189 ) (1334 820 189 ) (1334 820 125 ) +4 231 245 (1335 794 125 ) (1334 794 125 ) (1334 820 125 ) (1335 820 125 ) +4 231 244 (1337 820 125 ) (1337 794 125 ) (1335 794 125 ) (1335 820 125 ) +4 231 232 (1337 794 125 ) (1337 794 189 ) (1334 794 189 ) (1334 794 125 ) +4 232 245 (1335 792 125 ) (1334 792 125 ) (1334 794 125 ) (1335 794 125 ) +4 232 244 (1337 794 125 ) (1337 792 125 ) (1335 792 125 ) (1335 794 125 ) +4 233 344 (1328 826 228 ) (1328 856 228 ) (1328 856 197 ) (1328 826 197 ) +4 234 344 (1328 792 197 ) (1328 792 228 ) (1328 822 228 ) (1328 822 197 ) +4 234 261 (1328 792 228 ) (1328 792 197 ) (1332 792 197 ) (1332 792 228 ) +4 235 344 (1328 826 191 ) (1328 856 191 ) (1328 856 126 ) (1328 826 126 ) +4 235 239 (1332 827 126 ) (1332 826 126 ) (1328 826 126 ) (1328 827 126 ) +4 235 237 (1328 856 126 ) (1332 856 126 ) (1332 827 126 ) (1328 827 126 ) +4 236 344 (1328 792 126 ) (1328 792 191 ) (1328 822 191 ) (1328 822 126 ) +4 236 276 (1328 792 128 ) (1328 792 126 ) (1332 792 126 ) (1332 792 128 ) +4 236 275 (1328 792 136 ) (1328 792 128 ) (1332 792 128 ) (1332 792 136 ) +4 236 269 (1328 792 176 ) (1328 792 136 ) (1332 792 136 ) (1332 792 176 ) +4 236 261 (1328 792 191 ) (1328 792 176 ) (1332 792 176 ) (1332 792 191 ) +4 236 240 (1332 792 126 ) (1328 792 126 ) (1328 821 126 ) (1332 821 126 ) +4 236 238 (1328 821 126 ) (1328 822 126 ) (1332 822 126 ) (1332 821 126 ) +4 237 344 (1328 827 126 ) (1328 856 126 ) (1328 856 125 ) (1328 827 125 ) +4 237 250 (1328 856 125 ) (1332 856 125 ) (1332 827 125 ) (1328 827 125 ) +4 237 239 (1328 827 125 ) (1332 827 125 ) (1332 827 126 ) (1328 827 126 ) +3 238 344 (1328 821 126 ) (1328 822 126 ) (1328 821 125 ) +4 238 240 (1328 821 125 ) (1332 821 125 ) (1332 821 126 ) (1328 821 126 ) +3 239 344 (1328 826 126 ) (1328 827 126 ) (1328 827 125 ) +4 240 344 (1328 792 125 ) (1328 792 126 ) (1328 821 126 ) (1328 821 125 ) +4 240 276 (1328 792 126 ) (1328 792 125 ) (1332 792 125 ) (1332 792 126 ) +4 240 251 (1332 792 125 ) (1328 792 125 ) (1328 821 125 ) (1332 821 125 ) +4 241 249 (1338 821 120 ) (1338 792 120 ) (1338 792 122 ) (1338 821 122 ) +4 241 248 (1338 856 120 ) (1338 827 120 ) (1338 827 122 ) (1338 856 122 ) +4 241 247 (1338 792 122 ) (1338 792 123 ) (1338 821 123 ) (1338 821 122 ) +4 241 246 (1338 827 123 ) (1338 856 123 ) (1338 856 122 ) (1338 827 122 ) +4 241 244 (1338 792 123 ) (1338 792 125 ) (1338 821 125 ) (1338 821 123 ) +4 241 242 (1338 827 125 ) (1338 856 125 ) (1338 856 123 ) (1338 827 123 ) +4 242 246 (1335 856 123 ) (1338 856 123 ) (1338 827 123 ) (1335 827 123 ) +4 242 243 (1335 827 124 ) (1335 827 125 ) (1335 856 125 ) (1335 856 124 ) +4 244 247 (1335 821 123 ) (1338 821 123 ) (1338 792 123 ) (1335 792 123 ) +4 244 245 (1335 821 125 ) (1335 821 124 ) (1335 792 124 ) (1335 792 125 ) +4 246 248 (1335 856 122 ) (1338 856 122 ) (1338 827 122 ) (1335 827 122 ) +4 247 249 (1335 821 122 ) (1338 821 122 ) (1338 792 122 ) (1335 792 122 ) +4 250 344 (1328 827 125 ) (1328 856 125 ) (1328 856 120 ) (1328 827 120 ) +4 250 252 (1328 856 120 ) (1332 856 120 ) (1332 827 120 ) (1328 827 120 ) +4 251 344 (1328 792 120 ) (1328 792 125 ) (1328 821 125 ) (1328 821 120 ) +4 251 276 (1328 792 125 ) (1328 792 124 ) (1332 792 124 ) (1332 792 125 ) +4 251 252 (1332 792 120 ) (1328 792 120 ) (1328 821 120 ) (1332 821 120 ) +4 252 407 (1328 856 116 ) (1328 792 116 ) (1328 792 120 ) (1328 856 120 ) +4 253 527 (2048 768 460 ) (2048 768 466.666718 ) (1340 768 466.666718 ) (1344 768 460 ) +5 253 526 (2048 768 466.666718 ) (2048 768 5542.669922 ) (1328 768 5542.669922 ) (1328 768 486.666504 ) (1340 768 466.666718 ) +4 253 305 (1328 768 486.666351 ) (1328 768 5542.669922 ) (1328 776 5542.669922 ) (1328 776 486.666412 ) +4 253 299 (1328 792 560 ) (1328 792 486.666504 ) (1328 776 486.666412 ) (1328 776 560 ) +4 253 295 (1328 792 568 ) (1328 792 560 ) (1328 776 560 ) (1328 776 568 ) +4 253 292 (1328 776 5542.669922 ) (1328 792 5542.669922 ) (1328 792 568 ) (1328 776 568 ) +4 253 255 (2048 768 460 ) (1348 768 460 ) (1348 792 460 ) (2048 792 460 ) +3 253 254 (1340 768 466.666718 ) (1328 768 486.666992 ) (1328 780 486.666992 ) +3 254 526 (1328 768 486.666504 ) (1328 768 466.666718 ) (1340 768 466.666718 ) +4 254 305 (1328 768 466.666718 ) (1328 768 486.666351 ) (1328 776 486.666382 ) (1328 776 480 ) +3 254 300 (1328 776 486.666382 ) (1328 780 486.666412 ) (1328 776 480 ) +5 255 528 (2048 768 440 ) (2048 768 460 ) (1348 768 460 ) (1344 768 452 ) (1344 768 440 ) +4 255 259 (2048 768 440 ) (1344 768 440 ) (1344 792 440 ) (2048 792 440 ) +4 255 258 (1344 776 440 ) (1344 768 440 ) (1344 768 448 ) (1344 776 448 ) +4 255 256 (1344 792 440 ) (1344 776 440 ) (1344 776 448 ) (1344 792 448 ) +4 256 259 (1340 792 440 ) (1344 792 440 ) (1344 776 440 ) (1340 776 440 ) +3 256 258 (1340 776 440 ) (1344 776 440 ) (1344 776 448 ) +4 257 302 (1328 776 460 ) (1328 780 460 ) (1328 780 440 ) (1328 776 440 ) +4 257 301 (1328 780 460 ) (1328 792 460 ) (1328 792 440 ) (1328 780 440 ) +4 257 261 (1328 780 440 ) (1328 792 440 ) (1332 792 440 ) (1332 780 440 ) +3 258 533 (1344 768 444 ) (1344 768 448 ) (1342 768 444 ) +4 258 531 (1340 768 440 ) (1344 768 440 ) (1344 768 444 ) (1342 768 444 ) +4 258 259 (1344 768 440 ) (1340 768 440 ) (1340 776 440 ) (1344 776 440 ) +4 259 559 (1340 768 259 ) (1340 768 180.900253 ) (1345.104980 768 176 ) (1469.814209 768 176 ) +4 259 558 (1340 768 265.099884 ) (1340 768 259 ) (1469.814209 768 176 ) (1618.494629 768 176 ) +5 259 557 (1340 768 276 ) (1340 768 265.099884 ) (1618.494629 768 176 ) (1664 768 176 ) (1664 768 276 ) +3 259 550 (1340 768 180.900253 ) (1340 768 176 ) (1345.104980 768 176 ) +4 259 540 (1664 768 320 ) (1340 768 320 ) (1340 768 288 ) (1664 768 288 ) +4 259 544 (1340 768 288 ) (1340 768 276 ) (1664 768 276 ) (1664 768 288 ) +4 259 539 (1728 768 320 ) (1664 768 320 ) (1664 768 176 ) (1728 768 176 ) +4 259 538 (1792 768 320 ) (1728 768 320 ) (1728 768 176 ) (1792 768 176 ) +4 259 537 (1856 768 320 ) (1792 768 320 ) (1792 768 176 ) (1856 768 176 ) +4 259 536 (1920 768 320 ) (1856 768 320 ) (1856 768 176 ) (1920 768 176 ) +4 259 535 (1984 768 320 ) (1920 768 320 ) (1920 768 176 ) (1984 768 176 ) +4 259 534 (2048 768 176 ) (2048 768 320 ) (1984 768 320 ) (1984 768 176 ) +4 259 530 (1344 768 440 ) (1340 768 440 ) (1340 768 320 ) (1344 768 320 ) +4 259 528 (2048 768 320 ) (2048 768 440 ) (1344 768 440 ) (1344 768 320 ) +4 259 267 (2048 768 176 ) (1340 768 176 ) (1340 792 176 ) (2048 792 176 ) +4 259 264 (1340 770 176 ) (1340 768 176 ) (1340 768 288 ) (1340 770 288 ) +4 259 263 (1340 768 288 ) (1340 768 420 ) (1340 770 420 ) (1340 770 288 ) +4 259 262 (1340 768 420 ) (1340 768 440 ) (1340 770 440 ) (1340 770 420 ) +4 259 260 (1340 792 176 ) (1340 790 176 ) (1340 790 182 ) (1340 792 182 ) +3 260 268 (1338 792 176 ) (1340 792 176 ) (1340 790 176 ) +4 261 344 (1328 792 288 ) (1328 792 176 ) (1328 780 176 ) (1328 780 288 ) +4 261 303 (1328 792 420 ) (1328 792 288 ) (1328 780 288 ) (1328 780 420 ) +4 261 301 (1328 780 440 ) (1328 792 440 ) (1328 792 420 ) (1328 780 420 ) +4 261 269 (1328 780 176 ) (1328 792 176 ) (1332 792 176 ) (1332 780 176 ) +4 261 265 (1328 780 176 ) (1332 780 176 ) (1332 780 288 ) (1328 780 288 ) +4 262 530 (1340 768 440 ) (1338 768 440 ) (1338 768 420 ) (1340 768 420 ) +3 262 263 (1340 770 420 ) (1340 768 420 ) (1338 768 420 ) +4 263 540 (1338 768 288 ) (1340 768 288 ) (1340 768 320 ) (1338 768 320 ) +4 263 530 (1340 768 320 ) (1340 768 420 ) (1338 768 420 ) (1338 768 320 ) +3 263 264 (1340 770 288 ) (1340 768 288 ) (1338 768 288 ) +4 264 559 (1340 768 180.900253 ) (1340 768 259 ) (1338 768 260.278534 ) (1338 768 182.820084 ) +4 264 558 (1340 768 259 ) (1340 768 265.099915 ) (1338 768 265.739777 ) (1338 768 260.278534 ) +4 264 557 (1340 768 265.099915 ) (1340 768 276 ) (1338 768 276 ) (1338 768 265.739777 ) +4 264 550 (1338 768 176 ) (1340 768 176 ) (1340 768 180.900253 ) (1338 768 182.820084 ) +4 264 544 (1340 768 276 ) (1340 768 288 ) (1338 768 288 ) (1338 768 276 ) +3 264 271 (1340 768 176 ) (1338 768 176 ) (1340 770 176 ) +4 265 367 (1328 780 191 ) (1328 780 176 ) (1328 776 176 ) (1328 776 191 ) +4 265 365 (1328 780 228 ) (1328 780 197 ) (1328 776 197 ) (1328 776 228 ) +4 265 355 (1328 780 231 ) (1328 780 228 ) (1328 776 228 ) (1328 776 231 ) +4 265 351 (1328 780 233 ) (1328 780 231 ) (1328 776 231 ) (1328 776 233 ) +4 265 345 (1328 780 288 ) (1328 780 236 ) (1328 776 236 ) (1328 776 288 ) +4 266 550 (1328 768 182 ) (1328 768 176 ) (1330 768 176 ) (1330 768 182 ) +4 266 395 (1328 768 176 ) (1328 768 182 ) (1328 770 182 ) (1328 770 176 ) +3 266 270 (1330 768 176 ) (1328 768 176 ) (1328 770 176 ) +4 267 568 (1340 768 120 ) (1340 768 116 ) (1664 768 116 ) (1664 768 120 ) +4 267 559 (1469.814209 768 176 ) (1345.104980 768 176 ) (1403.444458 768 120 ) (1557.399658 768 120 ) +5 267 558 (1618.494629 768 176 ) (1469.814209 768 176 ) (1557.399658 768 120 ) (1664 768 120 ) (1664 768 161.441284 ) +3 267 557 (1664 768 176 ) (1618.494629 768 176 ) (1664 768 161.441284 ) +4 267 550 (1345.104980 768 176 ) (1340 768 176 ) (1340 768 120 ) (1403.444458 768 120 ) +4 267 539 (1728 768 176 ) (1664 768 176 ) (1664 768 116 ) (1728 768 116 ) +4 267 538 (1792 768 176 ) (1728 768 176 ) (1728 768 116 ) (1792 768 116 ) +4 267 537 (1856 768 176 ) (1792 768 176 ) (1792 768 116 ) (1856 768 116 ) +4 267 536 (1920 768 176 ) (1856 768 176 ) (1856 768 116 ) (1920 768 116 ) +4 267 535 (1984 768 176 ) (1920 768 176 ) (1920 768 116 ) (1984 768 116 ) +4 267 534 (2048 768 116 ) (2048 768 176 ) (1984 768 176 ) (1984 768 116 ) +4 267 285 (1344 768 116 ) (1340 768 116 ) (1340 792 116 ) (1344 792 116 ) +4 267 284 (1352 768 116 ) (1344 768 116 ) (1344 792 116 ) (1352 792 116 ) +4 267 282 (1728 768 116 ) (1664 768 116 ) (1664 792 116 ) (1728 792 116 ) +4 267 283 (1664 768 116 ) (1352 768 116 ) (1352 792 116 ) (1664 792 116 ) +4 267 281 (1792 768 116 ) (1728 768 116 ) (1728 792 116 ) (1792 792 116 ) +4 267 280 (1856 768 116 ) (1792 768 116 ) (1792 792 116 ) (1856 792 116 ) +4 267 279 (1920 768 116 ) (1856 768 116 ) (1856 792 116 ) (1920 792 116 ) +4 267 278 (1984 768 116 ) (1920 768 116 ) (1920 792 116 ) (1984 792 116 ) +4 267 277 (2048 768 116 ) (1984 768 116 ) (1984 792 116 ) (2048 792 116 ) +4 267 273 (1340 770 128 ) (1340 768 128 ) (1340 768 136 ) (1340 770 136 ) +4 267 272 (1340 792 136 ) (1340 792 128 ) (1340 790 128 ) (1340 790 136 ) +4 267 271 (1340 768 176 ) (1340 770 176 ) (1340 770 136 ) (1340 768 136 ) +4 267 268 (1340 790 176 ) (1340 792 176 ) (1340 792 136 ) (1340 790 136 ) +3 268 272 (1338 792 136 ) (1340 792 136 ) (1340 790 136 ) +4 269 344 (1328 780 176 ) (1328 792 176 ) (1328 792 136 ) (1328 780 136 ) +4 269 275 (1328 780 136 ) (1328 792 136 ) (1332 792 136 ) (1332 780 136 ) +4 270 550 (1330 768 176 ) (1328 768 176 ) (1328 768 136 ) (1330 768 136 ) +4 270 395 (1328 768 136 ) (1328 768 176 ) (1328 770 176 ) (1328 770 136 ) +3 270 274 (1328 768 136 ) (1328 770 136 ) (1330 768 136 ) +4 271 550 (1340 768 176 ) (1338 768 176 ) (1338 768 136 ) (1340 768 136 ) +3 271 273 (1340 770 136 ) (1340 768 136 ) (1338 768 136 ) +4 273 550 (1338 768 128 ) (1340 768 128 ) (1340 768 136 ) (1338 768 136 ) +4 274 550 (1328 768 136 ) (1328 768 128 ) (1330 768 128 ) (1330 768 136 ) +4 274 395 (1328 768 128 ) (1328 768 136 ) (1328 770 136 ) (1328 770 128 ) +4 275 367 (1328 776 136 ) (1328 780 136 ) (1328 780 128 ) (1328 776 128 ) +4 275 344 (1328 780 136 ) (1328 792 136 ) (1328 792 128 ) (1328 780 128 ) +4 275 276 (1328 776 128 ) (1328 792 128 ) (1332 792 128 ) (1332 772 128 ) +4 276 396 (1328 780 125 ) (1328 780 124 ) (1328 776 124 ) (1328 776 125 ) +4 276 369 (1328 780 126 ) (1328 780 125 ) (1328 776 125 ) (1328 776 126 ) +4 276 367 (1328 776 128 ) (1328 780 128 ) (1328 780 126 ) (1328 776 126 ) +4 276 344 (1328 780 128 ) (1328 792 128 ) (1328 792 124 ) (1328 780 124 ) +4 277 534 (2048 768 112 ) (2048 768 116 ) (1984 768 116 ) (1984 768 112 ) +4 277 278 (1984 960 116 ) (1984 960 112 ) (1984 768 112 ) (1984 768 116 ) +4 278 535 (1984 768 116 ) (1920 768 116 ) (1920 768 104 ) (1984 768 104 ) +4 278 279 (1920 960 116 ) (1920 960 104 ) (1920 768 104 ) (1920 768 116 ) +4 279 536 (1920 768 116 ) (1856 768 116 ) (1856 768 96 ) (1920 768 96 ) +4 279 280 (1856 960 116 ) (1856 960 96 ) (1856 768 96 ) (1856 768 116 ) +4 280 537 (1856 768 116 ) (1792 768 116 ) (1792 768 88 ) (1856 768 88 ) +4 280 281 (1792 960 116 ) (1792 960 88 ) (1792 768 88 ) (1792 768 116 ) +4 281 538 (1792 768 116 ) (1728 768 116 ) (1728 768 80 ) (1792 768 80 ) +4 281 282 (1728 960 116 ) (1728 960 80 ) (1728 768 80 ) (1728 768 116 ) +4 282 539 (1728 768 116 ) (1664 768 116 ) (1664 768 72 ) (1728 768 72 ) +4 282 283 (1664 960 116 ) (1664 960 72 ) (1664 768 72 ) (1664 768 116 ) +4 283 576 (1352 768 96 ) (1352 768 64 ) (1664 768 64 ) (1664 768 96 ) +4 283 575 (1352 768 112 ) (1352 768 96 ) (1664 768 96 ) (1664 768 112 ) +4 283 574 (1664 768 116 ) (1352 768 116 ) (1352 768 112 ) (1664 768 112 ) +4 283 284 (1352 948 64 ) (1352 768 64 ) (1352 768 116 ) (1352 948 116 ) +4 284 576 (1344 768 96 ) (1344 768 64 ) (1352 768 64 ) (1352 768 96 ) +4 284 575 (1344 768 112 ) (1344 768 96 ) (1352 768 96 ) (1352 768 112 ) +4 284 574 (1352 768 116 ) (1344 768 116 ) (1344 768 112 ) (1352 768 112 ) +4 284 287 (1344 768 92 ) (1344 768 108 ) (1344 792 108 ) (1344 792 92 ) +4 284 286 (1344 856 92 ) (1344 856 108 ) (1344 884 108 ) (1344 884 92 ) +4 284 285 (1344 768 108 ) (1344 768 116 ) (1344 948 116 ) (1344 948 108 ) +3 285 575 (1340 768 112 ) (1344 768 108 ) (1344 768 112 ) +4 285 574 (1344 768 116 ) (1340 768 116 ) (1340 768 112 ) (1344 768 112 ) +4 285 287 (1344 792 108 ) (1344 768 108 ) (1340 768 112 ) (1340 792 112 ) +4 285 286 (1344 884 108 ) (1344 856 108 ) (1340 856 112 ) (1340 884 112 ) +3 287 577 (1340 768 96 ) (1344 768 92 ) (1344 768 96 ) +4 287 575 (1340 768 112 ) (1340 768 96 ) (1344 768 96 ) (1344 768 108 ) +4 288 634 (2048 768 -1284 ) (2048 768 0 ) (1664 768 0 ) (1664 768 -1284 ) +4 288 629 (2048 768 0 ) (2048 768 64 ) (1664 768 64 ) (1664 768 0 ) +4 288 290 (1664 960 -1284 ) (1664 768 -1284 ) (1664 768 0 ) (1664 960 0 ) +4 288 289 (1664 1024 -1284 ) (1664 960 -1284 ) (1664 960 64 ) (1664 1024 64 ) +4 289 290 (1344 960 0 ) (1344 960 -1284 ) (1664 960 -1284 ) (1664 960 0 ) +4 289 291 (1344 1024 -1284 ) (1344 960 -1284 ) (1344 960 64 ) (1344 1024 64 ) +4 290 634 (1344 768 0 ) (1344 768 -1284 ) (1664 768 -1284 ) (1664 768 0 ) +4 290 291 (1344 960 -1284 ) (1344 768 -1284 ) (1344 768 0 ) (1344 960 0 ) +4 291 634 (1328 768 0 ) (1328 768 -1284 ) (1344 768 -1284 ) (1344 768 0 ) +4 291 410 (1328 1024 64 ) (1328 1024 -1284 ) (1328 768 -1284 ) (1328 768 64 ) +4 292 1475 (1024 1024 5542.669922 ) (1024 1024 568 ) (1024 776 568 ) (1024 776 5542.669922 ) +4 292 305 (1328 776 568 ) (1328 776 5542.669922 ) (1024 776 5542.669922 ) (1024 776 568 ) +4 292 296 (1282 776 568 ) (1024 776 568 ) (1024 820 568 ) (1282 820 568 ) +4 292 295 (1328 776 568 ) (1282 776 568 ) (1282 832 568 ) (1328 832 568 ) +4 292 293 (1282 1024 568 ) (1328 1024 568 ) (1328 832 568 ) (1282 832 568 ) +4 292 294 (1024 832 568 ) (1024 1024 568 ) (1270 1024 568 ) (1270 832 568 ) +4 293 299 (1328 952 560 ) (1328 832 560 ) (1284 832 560 ) (1284 952 560 ) +4 293 297 (1284 1024 560 ) (1328 1024 560 ) (1328 952 560 ) (1284 952 560 ) +4 293 295 (1278 832 560 ) (1328 832 560 ) (1328 832 568 ) (1282 832 568 ) +4 294 1477 (1024 992 560 ) (1024 832 560 ) (1024 832 568 ) (1024 992 568 ) +4 294 1476 (1024 1024 568 ) (1024 1024 560 ) (1024 992 560 ) (1024 992 568 ) +4 294 298 (1024 952 560 ) (1024 1024 560 ) (1156 1024 560 ) (1156 952 560 ) +4 295 305 (1328 776 560 ) (1328 776 568 ) (1282 776 568 ) (1278 776 560 ) +4 295 300 (1284 776 560 ) (1278 776 560 ) (1278 824 560 ) (1284 824 560 ) +4 295 299 (1328 776 560 ) (1284 776 560 ) (1284 832 560 ) (1328 832 560 ) +4 295 296 (1278 824 560 ) (1278 776 560 ) (1282 776 568 ) (1282 820 568 ) +4 296 1478 (1024 824 560 ) (1024 776 560 ) (1024 776 568 ) (1024 820 568 ) +4 296 305 (1282 776 568 ) (1024 776 568 ) (1024 776 560 ) (1278 776 560 ) +4 296 300 (1278 776 560 ) (1024 776 560 ) (1024 824 560 ) (1278 824 560 ) +3 297 299 (1328 952 486.666412 ) (1328 952 560 ) (1284 952 560 ) +4 298 1482 (1024 1024 560 ) (1024 1024 460 ) (1024 952 460 ) (1024 952 560 ) +4 298 301 (1024 952 460 ) (1024 1024 460 ) (1156 1024 460 ) (1156 952 460 ) +3 299 305 (1328 776 486.666412 ) (1328 776 560 ) (1284 776 560 ) +4 299 300 (1328 780 486.666656 ) (1328 776 486.666656 ) (1284 776 560 ) (1284 824 560 ) +3 300 1493 (1024 776 480 ) (1024 776 560 ) (1024 824 560 ) +5 300 305 (1328 776 480 ) (1328 776 486.666412 ) (1284 776 560 ) (1024 776 560 ) (1024 776 480 ) +4 301 1494 (1024 1024 460 ) (1024 1024 420 ) (1024 780 420 ) (1024 780 460 ) +4 301 303 (1220 1024 420 ) (1328 1024 420 ) (1328 780 420 ) (1220 780 420 ) +4 301 304 (1024 780 420 ) (1024 1024 420 ) (1220 1024 420 ) (1220 780 420 ) +4 301 302 (1328 780 440 ) (1328 780 460 ) (1024 780 460 ) (1024 780 440 ) +4 302 1501 (1024 776 440 ) (1024 776 460 ) (1024 780 460 ) (1024 780 440 ) +4 303 421 (1236 780 288 ) (1220 780 288 ) (1220 1024 288 ) (1236 1024 288 ) +4 303 411 (1264 780 288 ) (1236 780 288 ) (1236 1024 288 ) (1264 1024 288 ) +4 303 344 (1328 1024 288 ) (1328 780 288 ) (1264 780 288 ) (1264 1024 288 ) +4 303 304 (1220 1024 288 ) (1220 780 288 ) (1220 780 420 ) (1220 1024 420 ) +4 304 1502 (1024 780 288 ) (1024 776 288 ) (1024 776 420 ) (1024 780 420 ) +4 304 1494 (1024 1024 420 ) (1024 1024 288 ) (1024 780 288 ) (1024 780 420 ) +4 304 497 (1160 776 288 ) (1024 776 288 ) (1024 784 288 ) (1160 784 288 ) +4 304 493 (1172 776 288 ) (1160 776 288 ) (1160 780 288 ) (1172 780 288 ) +4 304 492 (1160 780 288 ) (1160 784 288 ) (1172 784 288 ) (1172 780 288 ) +4 304 491 (1024 784 288 ) (1024 1024 288 ) (1172 1024 288 ) (1172 784 288 ) +4 304 422 (1220 776 288 ) (1172 776 288 ) (1172 780 288 ) (1220 780 288 ) +4 304 421 (1172 780 288 ) (1172 1024 288 ) (1220 1024 288 ) (1220 780 288 ) +4 305 1504 (1024 768 466.666718 ) (1024 768 940 ) (1024 776 940 ) (1024 776 480 ) +4 305 1503 (1024 768 940 ) (1024 768 5542.669922 ) (1024 776 5542.669922 ) (1024 776 940 ) +4 305 526 (1024 768 5542.669922 ) (1024 768 466.666504 ) (1328 768 466.666718 ) (1328 768 5542.669922 ) +4 306 530 (1186 768 412 ) (1184 768 412 ) (1184 768 376 ) (1186 768 376 ) +4 306 310 (1184 768 412 ) (1184 770 412 ) (1184 770 376 ) (1184 768 376 ) +4 307 540 (1184 768 320 ) (1184 768 304 ) (1186 768 304 ) (1186 768 320 ) +4 307 530 (1186 768 368 ) (1184 768 368 ) (1184 768 320 ) (1186 768 320 ) +4 307 311 (1184 770 304 ) (1184 768 304 ) (1184 768 368 ) (1184 770 368 ) +4 308 312 (1176 772 376 ) (1176 770 376 ) (1176 770 412 ) (1176 772 412 ) +4 308 310 (1176 770 412 ) (1176 770 376 ) (1178 770 376 ) (1178 770 412 ) +4 309 313 (1176 772 292 ) (1176 770 292 ) (1176 770 368 ) (1176 772 368 ) +4 309 311 (1176 770 368 ) (1176 770 292 ) (1178 770 292 ) (1178 770 368 ) +4 310 530 (1184 768 376 ) (1184 768 412 ) (1176 768 412 ) (1176 768 376 ) +4 310 312 (1176 768 376 ) (1176 768 412 ) (1176 770 412 ) (1176 770 376 ) +4 311 541 (1184 768 292 ) (1184 768 320 ) (1176 768 320 ) (1176 768 292 ) +4 311 530 (1184 768 320 ) (1184 768 368 ) (1176 768 368 ) (1176 768 320 ) +4 311 313 (1176 770 292 ) (1176 768 292 ) (1176 768 368 ) (1176 770 368 ) +4 312 530 (1176 768 412 ) (1150 768 412 ) (1150 768 376 ) (1176 768 376 ) +4 312 315 (1150 775 412 ) (1150 775 376 ) (1150 768 376 ) (1150 768 412 ) +5 313 541 (1150 768 320 ) (1150 768 298 ) (1156 768 292 ) (1176 768 292 ) (1176 768 320 ) +4 313 530 (1150 768 368 ) (1150 768 320 ) (1176 768 320 ) (1176 768 368 ) +4 313 317 (1150 770 298 ) (1150 769 298 ) (1150 769 368 ) (1150 770 368 ) +4 313 318 (1150 769 298 ) (1150 768 298 ) (1150 768 368 ) (1150 769 368 ) +4 313 314 (1151 775 297 ) (1156 775 292 ) (1156 768 292 ) (1151 768 297 ) +3 314 541 (1151 768 292 ) (1156 768 292 ) (1151 768 297 ) +4 315 530 (1150 768 412 ) (1146 768 412 ) (1146 768 376 ) (1150 768 376 ) +4 315 319 (1146 775 412 ) (1146 775 376 ) (1146 768 376 ) (1146 768 412 ) +4 316 320 (1146 770 298 ) (1146 769 298 ) (1146 769 368 ) (1146 770 368 ) +4 316 318 (1146 769 298 ) (1147 769 298 ) (1147 769 368 ) (1146 769 368 ) +4 317 318 (1149 769 298 ) (1150 769 298 ) (1150 769 368 ) (1149 769 368 ) +4 318 541 (1146 768 320 ) (1146 768 298 ) (1150 768 298 ) (1150 768 320 ) +4 318 530 (1146 768 368 ) (1146 768 320 ) (1150 768 320 ) (1150 768 368 ) +4 318 320 (1146 769 298 ) (1146 768 298 ) (1146 768 368 ) (1146 769 368 ) +4 319 530 (1146 768 412 ) (1120 768 412 ) (1120 768 376 ) (1146 768 376 ) +4 319 322 (1120 770 376 ) (1120 768 376 ) (1120 768 412 ) (1120 770 412 ) +4 319 321 (1120 772 376 ) (1120 770 376 ) (1120 770 412 ) (1120 772 412 ) +5 320 541 (1120 768 320 ) (1120 768 292 ) (1140 768 292 ) (1146 768 298 ) (1146 768 320 ) +4 320 530 (1120 768 368 ) (1120 768 320 ) (1146 768 320 ) (1146 768 368 ) +4 320 325 (1140 768 292 ) (1140 775 292 ) (1145 775 297 ) (1145 768 297 ) +4 320 323 (1120 772 292 ) (1120 770 292 ) (1120 770 368 ) (1120 772 368 ) +4 320 324 (1120 770 292 ) (1120 768 292 ) (1120 768 368 ) (1120 770 368 ) +4 321 322 (1118 770 376 ) (1120 770 376 ) (1120 770 412 ) (1118 770 412 ) +4 322 530 (1120 768 412 ) (1112 768 412 ) (1112 768 376 ) (1120 768 376 ) +4 322 326 (1112 768 412 ) (1112 770 412 ) (1112 770 376 ) (1112 768 376 ) +4 323 324 (1118 770 292 ) (1120 770 292 ) (1120 770 368 ) (1118 770 368 ) +4 324 541 (1112 768 320 ) (1112 768 292 ) (1120 768 292 ) (1120 768 320 ) +4 324 530 (1112 768 368 ) (1112 768 320 ) (1120 768 320 ) (1120 768 368 ) +4 324 328 (1112 768 304 ) (1112 768 368 ) (1112 770 368 ) (1112 770 304 ) +3 325 541 (1140 768 292 ) (1145 768 292 ) (1145 768 297 ) +4 326 530 (1112 768 376 ) (1112 768 412 ) (1110 768 412 ) (1110 768 376 ) +4 327 530 (1070 768 412 ) (1068 768 412 ) (1068 768 376 ) (1070 768 376 ) +4 327 331 (1068 768 412 ) (1068 770 412 ) (1068 770 376 ) (1068 768 376 ) +4 328 542 (1112 768 304 ) (1112 768 320 ) (1110 768 320 ) (1110 768 304 ) +4 328 530 (1112 768 320 ) (1112 768 368 ) (1110 768 368 ) (1110 768 320 ) +4 329 542 (1068 768 320 ) (1068 768 304 ) (1070 768 304 ) (1070 768 320 ) +4 329 530 (1070 768 368 ) (1068 768 368 ) (1068 768 320 ) (1070 768 320 ) +4 329 333 (1068 770 304 ) (1068 768 304 ) (1068 768 368 ) (1068 770 368 ) +4 330 334 (1060 772 376 ) (1060 770 376 ) (1060 770 412 ) (1060 772 412 ) +4 330 331 (1060 770 412 ) (1060 770 376 ) (1062 770 376 ) (1062 770 412 ) +4 331 530 (1068 768 376 ) (1068 768 412 ) (1060 768 412 ) (1060 768 376 ) +4 331 334 (1060 768 376 ) (1060 768 412 ) (1060 770 412 ) (1060 770 376 ) +4 332 335 (1060 772 292 ) (1060 770 292 ) (1060 770 368 ) (1060 772 368 ) +4 332 333 (1062 770 368 ) (1060 770 368 ) (1060 770 292 ) (1062 770 292 ) +4 333 543 (1060 768 292 ) (1068 768 292 ) (1068 768 320 ) (1060 768 320 ) +4 333 530 (1068 768 320 ) (1068 768 368 ) (1060 768 368 ) (1060 768 320 ) +4 333 335 (1060 770 292 ) (1060 768 292 ) (1060 768 368 ) (1060 770 368 ) +4 334 530 (1060 768 376 ) (1060 768 412 ) (1034 768 412 ) (1034 768 376 ) +4 334 337 (1034 775 412 ) (1034 775 376 ) (1034 768 376 ) (1034 768 412 ) +5 335 543 (1040 768 292 ) (1060 768 292 ) (1060 768 320 ) (1034 768 320 ) (1034 768 298 ) +4 335 530 (1060 768 320 ) (1060 768 368 ) (1034 768 368 ) (1034 768 320 ) +4 335 339 (1034 770 298 ) (1034 769 298 ) (1034 769 368 ) (1034 770 368 ) +4 335 340 (1034 769 298 ) (1034 768 298 ) (1034 768 368 ) (1034 769 368 ) +4 335 336 (1035 775 297 ) (1040 775 292 ) (1040 768 292 ) (1035 768 297 ) +3 336 543 (1035 768 292 ) (1040 768 292 ) (1035 768 297 ) +4 337 1505 (1024 768 376 ) (1024 768 412 ) (1024 775 412 ) (1024 775 376 ) +4 337 530 (1024 768 412 ) (1024 768 376 ) (1034 768 376 ) (1034 768 412 ) +4 338 340 (1030 769 368 ) (1030 769 298 ) (1031 769 298 ) (1031 769 368 ) +4 338 341 (1030 770 298 ) (1030 769 298 ) (1030 769 368 ) (1030 770 368 ) +4 339 340 (1033 769 298 ) (1034 769 298 ) (1034 769 368 ) (1033 769 368 ) +4 340 543 (1030 768 298 ) (1034 768 298 ) (1034 768 320 ) (1030 768 320 ) +4 340 530 (1034 768 320 ) (1034 768 368 ) (1030 768 368 ) (1030 768 320 ) +4 340 341 (1030 769 298 ) (1030 768 298 ) (1030 768 368 ) (1030 769 368 ) +4 341 1506 (1024 768 298 ) (1024 768 368 ) (1024 775 368 ) (1024 775 298 ) +4 341 543 (1024 768 320 ) (1024 768 298 ) (1030 768 298 ) (1030 768 320 ) +4 341 530 (1024 768 368 ) (1024 768 320 ) (1030 768 320 ) (1030 768 368 ) +4 341 342 (1029 775 298 ) (1030 775 298 ) (1030 768 298 ) (1029 768 298 ) +4 341 343 (1024 775 298 ) (1029 775 298 ) (1029 768 298 ) (1024 768 298 ) +3 342 543 (1030 768 298 ) (1029 768 298 ) (1029 768 297 ) +4 342 343 (1029 768 298 ) (1029 775 298 ) (1029 775 297 ) (1029 768 297 ) +4 343 1506 (1024 768 292 ) (1024 768 298 ) (1024 775 298 ) (1024 775 292 ) +4 343 543 (1024 768 298 ) (1024 768 292 ) (1029 768 292 ) (1029 768 298 ) +4 344 414 (1264 784 120 ) (1264 780 120 ) (1264 780 194 ) (1264 784 194 ) +4 344 413 (1264 1024 194 ) (1264 1024 120 ) (1264 784 120 ) (1264 784 194 ) +4 344 411 (1264 780 288 ) (1264 1024 288 ) (1264 1024 194 ) (1264 780 194 ) +4 344 407 (1264 780 120 ) (1264 1024 120 ) (1328 1024 120 ) (1328 780 120 ) +4 344 397 (1264 780 125 ) (1264 780 120 ) (1293 780 120 ) (1293 780 125 ) +4 344 396 (1299 780 120 ) (1328 780 120 ) (1328 780 125 ) (1299 780 125 ) +4 344 371 (1264 780 126 ) (1264 780 125 ) (1293 780 125 ) (1293 780 126 ) +3 344 370 (1293 780 125 ) (1294 780 126 ) (1293 780 126 ) +4 344 369 (1299 780 125 ) (1328 780 125 ) (1328 780 126 ) (1298 780 126 ) +4 344 368 (1264 780 191 ) (1264 780 126 ) (1294 780 126 ) (1294 780 191 ) +4 344 367 (1298 780 126 ) (1328 780 126 ) (1328 780 191 ) (1298 780 191 ) +4 344 366 (1264 780 228 ) (1264 780 197 ) (1294 780 197 ) (1294 780 228 ) +4 344 365 (1328 780 197 ) (1328 780 228 ) (1298 780 228 ) (1298 780 197 ) +4 344 358 (1264 780 231 ) (1264 780 228 ) (1293 780 228 ) (1293 780 231 ) +3 344 357 (1298 780 228 ) (1299 780 228 ) (1299 780 229 ) +3 344 356 (1293 780 228 ) (1294 780 228 ) (1293 780 229 ) +4 344 355 (1299 780 228 ) (1328 780 228 ) (1328 780 231 ) (1299 780 231 ) +4 344 352 (1264 780 233 ) (1264 780 231 ) (1293 780 231 ) (1293 780 233 ) +4 344 351 (1299 780 231 ) (1328 780 231 ) (1328 780 233 ) (1299 780 233 ) +4 344 345 (1264 780 288 ) (1264 780 236 ) (1328 780 236 ) (1328 780 288 ) +4 345 412 (1264 776 288 ) (1264 780 288 ) (1264 780 236 ) (1264 776 236 ) +4 346 353 (1328 772 233 ) (1328 771 233 ) (1299 771 233 ) (1299 772 233 ) +4 346 348 (1299 771 233 ) (1328 771 233 ) (1328 771 234 ) (1299 771 234 ) +4 347 354 (1264 771 233 ) (1264 772 233 ) (1293 772 233 ) (1293 771 233 ) +4 347 349 (1264 771 233 ) (1293 771 233 ) (1293 771 234 ) (1264 771 234 ) +4 348 353 (1299 771 233 ) (1328 771 233 ) (1328 770 233 ) (1299 770 233 ) +4 348 350 (1299 770 233 ) (1328 770 233 ) (1328 770 236 ) (1299 770 236 ) +4 349 354 (1264 770 233 ) (1264 771 233 ) (1293 771 233 ) (1293 770 233 ) +4 349 350 (1264 770 233 ) (1293 770 233 ) (1293 770 236 ) (1264 770 236 ) +4 350 560 (1309.255859 768 236 ) (1282.598511 768 236 ) (1285.723755 768 233 ) (1306.130249 768 233 ) +4 350 559 (1328 768 233 ) (1328 768 236 ) (1309.255859 768 236 ) (1306.130249 768 233 ) +4 350 550 (1282.598511 768 236 ) (1264 768 236 ) (1264 768 233 ) (1285.723755 768 233 ) +4 350 417 (1264 768 233 ) (1264 768 236 ) (1264 770 236 ) (1264 770 233 ) +4 350 394 (1264 768 233 ) (1264 770 233 ) (1328 770 233 ) (1328 768 233 ) +4 351 355 (1299 780 231 ) (1328 780 231 ) (1328 776 231 ) (1299 776 231 ) +4 352 412 (1264 776 233 ) (1264 780 233 ) (1264 780 231 ) (1264 776 231 ) +4 352 358 (1264 776 231 ) (1264 780 231 ) (1293 780 231 ) (1293 776 231 ) +4 353 394 (1328 770 231 ) (1328 770 233 ) (1299 770 233 ) (1299 770 231 ) +4 353 359 (1328 770 231 ) (1326 770 231 ) (1326 773 231 ) (1328 773 231 ) +4 353 360 (1326 770 231 ) (1299 770 231 ) (1299 773 231 ) (1326 773 231 ) +4 354 394 (1293 770 233 ) (1264 770 233 ) (1264 770 231 ) (1293 770 231 ) +4 354 364 (1266 770 231 ) (1264 770 231 ) (1264 773 231 ) (1266 773 231 ) +4 354 363 (1293 770 231 ) (1266 770 231 ) (1266 773 231 ) (1293 773 231 ) +4 355 365 (1299 780 228 ) (1328 780 228 ) (1328 776 228 ) (1299 776 228 ) +4 355 357 (1299 780 228 ) (1299 776 228 ) (1299 776 229 ) (1299 780 229 ) +4 356 366 (1293 780 228 ) (1294 780 228 ) (1294 776 228 ) (1293 776 228 ) +4 356 358 (1293 780 228 ) (1293 776 228 ) (1293 776 229 ) (1293 780 229 ) +4 357 365 (1298 780 228 ) (1299 780 228 ) (1299 776 228 ) (1298 776 228 ) +4 358 412 (1264 780 231 ) (1264 780 228 ) (1264 776 228 ) (1264 776 231 ) +4 358 366 (1264 776 228 ) (1264 780 228 ) (1293 780 228 ) (1293 776 228 ) +4 359 394 (1328 770 228 ) (1328 770 231 ) (1326 770 231 ) (1326 770 228 ) +4 359 390 (1328 770 228 ) (1326 770 228 ) (1326 771 228 ) (1328 771 228 ) +4 359 372 (1326 771 228 ) (1326 774 228 ) (1328 774 228 ) (1328 771 228 ) +4 359 360 (1326 774 228 ) (1326 770 228 ) (1326 770 231 ) (1326 774 231 ) +4 360 394 (1326 770 231 ) (1299 770 231 ) (1299 770 228 ) (1326 770 228 ) +4 360 390 (1326 770 228 ) (1299 770 228 ) (1299 771 228 ) (1326 771 228 ) +4 360 373 (1299 771 228 ) (1299 775 228 ) (1326 775 228 ) (1326 771 228 ) +4 360 362 (1299 775 229 ) (1299 775 228 ) (1299 770 228 ) (1299 770 229 ) +3 361 394 (1293 770 229 ) (1293 770 228 ) (1294 770 228 ) +4 361 390 (1294 770 228 ) (1293 770 228 ) (1293 771 228 ) (1294 771 228 ) +4 361 377 (1293 771 228 ) (1293 775 228 ) (1294 775 228 ) (1294 771 228 ) +4 361 363 (1293 775 229 ) (1293 775 228 ) (1293 770 228 ) (1293 770 229 ) +3 362 394 (1298 770 228 ) (1299 770 228 ) (1299 770 229 ) +4 362 390 (1299 770 228 ) (1298 770 228 ) (1298 771 228 ) (1299 771 228 ) +4 362 373 (1298 771 228 ) (1298 775 228 ) (1299 775 228 ) (1299 771 228 ) +4 363 394 (1293 770 231 ) (1266 770 231 ) (1266 770 228 ) (1293 770 228 ) +4 363 390 (1293 770 228 ) (1266 770 228 ) (1266 771 228 ) (1293 771 228 ) +4 363 377 (1266 771 228 ) (1266 775 228 ) (1293 775 228 ) (1293 771 228 ) +4 363 364 (1266 774 228 ) (1266 770 228 ) (1266 770 231 ) (1266 774 231 ) +4 364 394 (1266 770 231 ) (1264 770 231 ) (1264 770 228 ) (1266 770 228 ) +4 364 390 (1266 770 228 ) (1264 770 228 ) (1264 771 228 ) (1266 771 228 ) +4 364 378 (1264 771 228 ) (1264 774 228 ) (1266 774 228 ) (1266 771 228 ) +4 366 412 (1264 780 228 ) (1264 780 197 ) (1264 776 197 ) (1264 776 228 ) +4 367 369 (1298 776 126 ) (1298 780 126 ) (1328 780 126 ) (1328 776 126 ) +4 368 414 (1264 780 191 ) (1264 780 126 ) (1264 776 126 ) (1264 776 191 ) +4 368 371 (1264 776 126 ) (1264 780 126 ) (1293 780 126 ) (1293 776 126 ) +4 368 370 (1293 780 126 ) (1294 780 126 ) (1294 776 126 ) (1293 776 126 ) +4 369 396 (1299 780 125 ) (1328 780 125 ) (1328 776 125 ) (1299 776 125 ) +4 370 371 (1293 780 125 ) (1293 776 125 ) (1293 776 126 ) (1293 780 126 ) +4 371 414 (1264 780 126 ) (1264 780 125 ) (1264 776 125 ) (1264 776 126 ) +4 371 397 (1264 776 125 ) (1264 780 125 ) (1293 780 125 ) (1293 776 125 ) +4 372 390 (1328 771 197 ) (1328 771 228 ) (1326 771 228 ) (1326 771 197 ) +4 372 373 (1326 771 197 ) (1326 771 228 ) (1326 774 228 ) (1326 774 197 ) +4 373 390 (1326 771 228 ) (1298 771 228 ) (1298 771 197 ) (1326 771 197 ) +4 373 375 (1298 772 197 ) (1298 771 197 ) (1298 771 228 ) (1298 772 228 ) +4 374 390 (1295 771 228 ) (1294 771 228 ) (1294 771 197 ) (1295 771 197 ) +4 374 377 (1294 772 197 ) (1294 771 197 ) (1294 771 228 ) (1294 772 228 ) +4 375 390 (1298 771 228 ) (1297 771 228 ) (1297 771 197 ) (1298 771 197 ) +4 376 391 (1298 771 191 ) (1326 771 191 ) (1326 771 192 ) (1298 771 192 ) +4 376 381 (1326 771 191 ) (1298 771 191 ) (1298 772 191 ) (1326 772 191 ) +4 377 390 (1294 771 228 ) (1266 771 228 ) (1266 771 197 ) (1294 771 197 ) +4 377 378 (1266 774 197 ) (1266 771 197 ) (1266 771 228 ) (1266 774 228 ) +4 378 390 (1266 771 228 ) (1264 771 228 ) (1264 771 197 ) (1266 771 197 ) +4 379 391 (1264 771 192 ) (1264 771 191 ) (1294 771 191 ) (1294 771 192 ) +4 379 385 (1294 771 191 ) (1264 771 191 ) (1264 772 191 ) (1294 772 191 ) +4 380 382 (1300 774 125 ) (1326 774 125 ) (1326 774 189 ) (1300 774 189 ) +4 381 391 (1328 771 189 ) (1328 771 191 ) (1298 771 191 ) (1298 771 189 ) +4 381 384 (1298 771 189 ) (1298 771 191 ) (1298 772 191 ) (1298 772 189 ) +4 381 382 (1328 771 189 ) (1298 771 189 ) (1298 773 189 ) (1328 773 189 ) +4 382 399 (1328 773 125 ) (1328 771 125 ) (1299 771 125 ) (1299 773 125 ) +4 382 398 (1328 774 125 ) (1328 773 125 ) (1299 773 125 ) (1299 774 125 ) +4 382 392 (1299 771 125 ) (1328 771 125 ) (1328 771 126 ) (1298 771 126 ) +4 382 391 (1328 771 126 ) (1328 771 189 ) (1298 771 189 ) (1298 771 126 ) +4 382 384 (1298 771 126 ) (1298 771 189 ) (1298 772 189 ) (1298 772 126 ) +4 383 391 (1295 771 191 ) (1294 771 191 ) (1294 771 126 ) (1295 771 126 ) +4 383 386 (1294 771 126 ) (1294 771 189 ) (1294 772 189 ) (1294 772 126 ) +4 383 385 (1294 771 189 ) (1294 771 191 ) (1294 772 191 ) (1294 772 189 ) +4 384 391 (1298 771 126 ) (1298 771 191 ) (1297 771 191 ) (1297 771 126 ) +4 385 391 (1294 771 189 ) (1294 771 191 ) (1264 771 191 ) (1264 771 189 ) +4 385 389 (1266 771 189 ) (1264 771 189 ) (1264 773 189 ) (1266 773 189 ) +4 385 387 (1293 771 189 ) (1292 771 189 ) (1292 773 189 ) (1293 773 189 ) +4 385 386 (1294 773 189 ) (1294 771 189 ) (1293 771 189 ) (1293 773 189 ) +4 385 388 (1292 771 189 ) (1266 771 189 ) (1266 773 189 ) (1292 773 189 ) +4 386 391 (1294 771 126 ) (1294 771 189 ) (1293 771 189 ) (1293 771 126 ) +4 386 387 (1293 771 125 ) (1293 771 189 ) (1293 774 189 ) (1293 774 125 ) +4 387 400 (1293 774 125 ) (1293 773 125 ) (1292 773 125 ) (1292 774 125 ) +4 387 401 (1293 773 125 ) (1293 771 125 ) (1292 771 125 ) (1292 773 125 ) +4 387 393 (1292 771 125 ) (1293 771 125 ) (1293 771 126 ) (1292 771 126 ) +4 387 391 (1293 771 126 ) (1293 771 189 ) (1292 771 189 ) (1292 771 126 ) +4 387 388 (1292 771 125 ) (1292 771 189 ) (1292 774 189 ) (1292 774 125 ) +4 388 400 (1292 774 125 ) (1292 773 125 ) (1266 773 125 ) (1266 774 125 ) +4 388 401 (1292 773 125 ) (1292 771 125 ) (1266 771 125 ) (1266 773 125 ) +4 388 393 (1266 771 125 ) (1292 771 125 ) (1292 771 126 ) (1266 771 126 ) +4 388 391 (1292 771 126 ) (1292 771 189 ) (1266 771 189 ) (1266 771 126 ) +4 388 389 (1266 771 125 ) (1266 771 189 ) (1266 774 189 ) (1266 774 125 ) +4 389 400 (1264 773 125 ) (1264 774 125 ) (1266 774 125 ) (1266 773 125 ) +4 389 401 (1264 771 125 ) (1264 773 125 ) (1266 773 125 ) (1266 771 125 ) +4 389 393 (1264 771 125 ) (1266 771 125 ) (1266 771 126 ) (1264 771 126 ) +4 389 391 (1266 771 126 ) (1266 771 189 ) (1264 771 189 ) (1264 771 126 ) +4 390 394 (1328 770 197 ) (1328 770 228 ) (1264 770 228 ) (1264 770 197 ) +4 391 395 (1328 770 126 ) (1328 770 194 ) (1264 770 194 ) (1264 770 126 ) +4 391 392 (1328 770 126 ) (1298 770 126 ) (1298 771 126 ) (1328 771 126 ) +4 391 393 (1293 770 126 ) (1264 770 126 ) (1264 771 126 ) (1293 771 126 ) +4 392 399 (1299 771 125 ) (1328 771 125 ) (1328 770 125 ) (1299 770 125 ) +4 392 395 (1299 770 125 ) (1328 770 125 ) (1328 770 126 ) (1298 770 126 ) +4 393 401 (1264 770 125 ) (1264 771 125 ) (1293 771 125 ) (1293 770 125 ) +4 393 395 (1264 770 125 ) (1293 770 125 ) (1293 770 126 ) (1264 770 126 ) +3 394 560 (1306.130249 768 233 ) (1285.723755 768 233 ) (1295.926392 768 223.206451 ) +5 394 559 (1328 768 197 ) (1328 768 233 ) (1306.130249 768 233 ) (1295.926392 768 223.206451 ) (1323.227661 768 197 ) +4 394 550 (1285.723755 768 233 ) (1264 768 233 ) (1264 768 197 ) (1323.227661 768 197 ) +4 394 417 (1264 768 199 ) (1264 768 233 ) (1264 770 233 ) (1264 770 199 ) +3 395 559 (1328 768 192.419098 ) (1328 768 194 ) (1326.353027 768 194 ) +5 395 550 (1328 768 125 ) (1328 768 192.419098 ) (1326.353027 768 194 ) (1264 768 194 ) (1264 768 125 ) +4 395 418 (1264 768 128 ) (1264 768 182 ) (1264 770 182 ) (1264 770 128 ) +4 395 406 (1264 768 125 ) (1264 770 125 ) (1328 770 125 ) (1328 768 125 ) +4 396 407 (1299 780 120 ) (1328 780 120 ) (1328 776 120 ) (1299 776 120 ) +4 397 414 (1264 776 125 ) (1264 780 125 ) (1264 780 120 ) (1264 776 120 ) +4 397 407 (1264 776 120 ) (1264 780 120 ) (1293 780 120 ) (1293 776 120 ) +4 398 399 (1328 773 124 ) (1328 773 125 ) (1299 773 125 ) (1299 773 124 ) +4 399 402 (1328 770 123 ) (1299 770 123 ) (1299 773 123 ) (1328 773 123 ) +4 399 406 (1328 770 123 ) (1328 770 125 ) (1299 770 125 ) (1299 770 123 ) +4 400 401 (1293 773 124 ) (1293 773 125 ) (1264 773 125 ) (1264 773 124 ) +4 401 403 (1293 770 123 ) (1264 770 123 ) (1264 773 123 ) (1293 773 123 ) +4 401 406 (1293 770 125 ) (1264 770 125 ) (1264 770 123 ) (1293 770 123 ) +4 402 404 (1328 770 122 ) (1299 770 122 ) (1299 773 122 ) (1328 773 122 ) +4 402 406 (1328 770 122 ) (1328 770 123 ) (1299 770 123 ) (1299 770 122 ) +4 403 405 (1293 770 122 ) (1264 770 122 ) (1264 773 122 ) (1293 773 122 ) +4 403 406 (1293 770 123 ) (1264 770 123 ) (1264 770 122 ) (1293 770 122 ) +4 404 406 (1299 770 120 ) (1328 770 120 ) (1328 770 122 ) (1299 770 122 ) +4 405 406 (1264 770 120 ) (1293 770 120 ) (1293 770 122 ) (1264 770 122 ) +4 406 550 (1328 768 120 ) (1328 768 125 ) (1264 768 125 ) (1264 768 120 ) +4 407 414 (1264 776 120 ) (1264 784 120 ) (1264 784 116 ) (1264 776 116 ) +4 407 413 (1264 784 120 ) (1264 1024 120 ) (1264 1024 116 ) (1264 784 116 ) +4 407 409 (1264 784 116 ) (1264 964 116 ) (1324 964 116 ) (1324 784 116 ) +4 407 408 (1264 964 116 ) (1264 1024 116 ) (1328 1024 116 ) (1328 964 116 ) +4 408 413 (1264 964 116 ) (1264 1024 116 ) (1264 1024 64 ) (1264 964 64 ) +4 408 410 (1264 964 64 ) (1264 1024 64 ) (1328 1024 64 ) (1328 964 64 ) +4 408 409 (1264 964 64 ) (1324 964 64 ) (1324 964 116 ) (1264 964 116 ) +4 409 413 (1264 784 116 ) (1264 964 116 ) (1264 964 64 ) (1264 784 64 ) +4 409 410 (1264 784 64 ) (1264 964 64 ) (1324 964 64 ) (1324 784 64 ) +4 410 634 (1328 768 -1284 ) (1328 768 0 ) (1264 768 0 ) (1264 768 -1284 ) +4 410 420 (1264 768 -1284 ) (1264 768 64 ) (1264 776 64 ) (1264 776 -1284 ) +4 410 415 (1264 776 64 ) (1264 784 64 ) (1264 784 -1284 ) (1264 776 -1284 ) +4 410 413 (1264 784 64 ) (1264 1024 64 ) (1264 1024 -1284 ) (1264 784 -1284 ) +4 411 421 (1236 780 288 ) (1236 1024 288 ) (1236 1024 194 ) (1236 780 194 ) +4 411 414 (1236 780 194 ) (1236 784 194 ) (1264 784 194 ) (1264 780 194 ) +4 411 413 (1236 784 194 ) (1236 1024 194 ) (1264 1024 194 ) (1264 784 194 ) +4 411 412 (1236 780 288 ) (1236 780 197 ) (1264 780 197 ) (1264 780 288 ) +4 412 443 (1236 780 228 ) (1236 780 197 ) (1236 776 197 ) (1236 776 228 ) +4 412 432 (1236 780 231 ) (1236 780 228 ) (1236 776 228 ) (1236 776 231 ) +4 412 428 (1236 780 233 ) (1236 780 231 ) (1236 776 231 ) (1236 776 233 ) +4 412 422 (1236 776 288 ) (1236 780 288 ) (1236 780 236 ) (1236 776 236 ) +4 413 489 (1236 1024 116 ) (1236 1024 -1284 ) (1236 784 -1284 ) (1236 784 116 ) +4 413 488 (1236 1024 120 ) (1236 1024 116 ) (1236 784 116 ) (1236 784 120 ) +4 413 421 (1236 1024 194 ) (1236 1024 120 ) (1236 784 120 ) (1236 784 194 ) +4 413 414 (1264 784 116 ) (1264 784 194 ) (1236 784 194 ) (1236 784 116 ) +4 413 415 (1236 784 -1284 ) (1264 784 -1284 ) (1264 784 64 ) (1236 784 64 ) +4 414 488 (1236 776 116 ) (1236 776 120 ) (1236 784 120 ) (1236 784 116 ) +4 414 477 (1236 776 120 ) (1236 776 125 ) (1236 780 125 ) (1236 780 120 ) +4 414 447 (1236 776 125 ) (1236 776 126 ) (1236 780 126 ) (1236 780 125 ) +4 414 445 (1236 776 126 ) (1236 776 191 ) (1236 780 191 ) (1236 780 126 ) +4 414 421 (1236 780 194 ) (1236 784 194 ) (1236 784 120 ) (1236 780 120 ) +4 415 490 (1236 784 -1284 ) (1236 776 -1284 ) (1236 776 64 ) (1236 784 64 ) +4 415 420 (1236 776 64 ) (1236 776 -1284 ) (1264 776 -1284 ) (1264 776 64 ) +4 416 550 (1238 768 236 ) (1236 768 236 ) (1236 768 199 ) (1238 768 199 ) +4 416 475 (1236 768 199 ) (1236 768 233 ) (1236 770 233 ) (1236 770 199 ) +4 416 427 (1236 768 233 ) (1236 768 236 ) (1236 770 236 ) (1236 770 233 ) +4 417 550 (1264 768 199 ) (1264 768 236 ) (1262 768 236 ) (1262 768 199 ) +4 418 550 (1264 768 128 ) (1264 768 182 ) (1262 768 182 ) (1262 768 128 ) +4 419 550 (1238 768 182 ) (1236 768 182 ) (1236 768 128 ) (1238 768 128 ) +4 419 476 (1236 768 128 ) (1236 768 182 ) (1236 770 182 ) (1236 770 128 ) +4 420 634 (1264 768 -1284 ) (1264 768 0 ) (1236 768 0 ) (1236 768 -1284 ) +4 420 490 (1236 768 -1284 ) (1236 768 64 ) (1236 776 64 ) (1236 776 -1284 ) +4 421 492 (1172 780 288 ) (1172 784 288 ) (1172 784 120 ) (1172 780 120 ) +4 421 491 (1172 784 288 ) (1172 1024 288 ) (1172 1024 120 ) (1172 784 120 ) +4 421 488 (1172 780 120 ) (1172 1024 120 ) (1236 1024 120 ) (1236 780 120 ) +4 421 478 (1172 780 125 ) (1172 780 120 ) (1201 780 120 ) (1201 780 125 ) +4 421 477 (1207 780 120 ) (1236 780 120 ) (1236 780 125 ) (1207 780 125 ) +4 421 450 (1172 780 126 ) (1172 780 125 ) (1201 780 125 ) (1201 780 126 ) +3 421 449 (1207 780 125 ) (1207 780 126 ) (1206 780 126 ) +3 421 448 (1201 780 125 ) (1202 780 126 ) (1201 780 126 ) +4 421 447 (1207 780 125 ) (1236 780 125 ) (1236 780 126 ) (1207 780 126 ) +4 421 446 (1172 780 191 ) (1172 780 126 ) (1202 780 126 ) (1202 780 191 ) +4 421 445 (1206 780 126 ) (1236 780 126 ) (1236 780 191 ) (1206 780 191 ) +4 421 444 (1172 780 228 ) (1172 780 197 ) (1202 780 197 ) (1202 780 228 ) +4 421 443 (1236 780 197 ) (1236 780 228 ) (1206 780 228 ) (1206 780 197 ) +4 421 441 (1172 780 231 ) (1172 780 228 ) (1174 780 228 ) (1174 780 231 ) +4 421 439 (1174 780 228 ) (1201 780 228 ) (1201 780 231 ) (1174 780 231 ) +3 421 436 (1206 780 228 ) (1207 780 228 ) (1207 780 229 ) +3 421 435 (1201 780 228 ) (1202 780 228 ) (1201 780 229 ) +4 421 432 (1207 780 228 ) (1236 780 228 ) (1236 780 231 ) (1207 780 231 ) +4 421 429 (1172 780 233 ) (1172 780 231 ) (1201 780 231 ) (1201 780 233 ) +4 421 428 (1207 780 231 ) (1236 780 231 ) (1236 780 233 ) (1207 780 233 ) +4 421 422 (1172 780 288 ) (1172 780 236 ) (1236 780 236 ) (1236 780 288 ) +4 422 493 (1172 776 288 ) (1172 780 288 ) (1172 780 236 ) (1172 776 236 ) +4 423 430 (1236 772 233 ) (1236 771 233 ) (1207 771 233 ) (1207 772 233 ) +4 423 425 (1207 771 233 ) (1236 771 233 ) (1236 771 234 ) (1207 771 234 ) +4 424 431 (1172 771 233 ) (1172 772 233 ) (1201 772 233 ) (1201 771 233 ) +4 424 426 (1172 771 233 ) (1201 771 233 ) (1201 771 234 ) (1172 771 234 ) +4 425 430 (1207 771 233 ) (1236 771 233 ) (1236 770 233 ) (1207 770 233 ) +4 425 427 (1207 770 233 ) (1236 770 233 ) (1236 770 236 ) (1207 770 236 ) +4 426 431 (1172 770 233 ) (1172 771 233 ) (1201 771 233 ) (1201 770 233 ) +4 426 427 (1172 770 233 ) (1201 770 233 ) (1201 770 236 ) (1172 770 236 ) +4 427 552 (1217.256836 768 236 ) (1190.596680 768 236 ) (1193.721680 768 233 ) (1214.131226 768 233 ) +4 427 551 (1190.596680 768 236 ) (1172 768 236 ) (1172 768 233 ) (1193.721680 768 233 ) +4 427 550 (1236 768 233 ) (1236 768 236 ) (1217.256836 768 236 ) (1214.131226 768 233 ) +4 427 475 (1172 768 233 ) (1172 770 233 ) (1236 770 233 ) (1236 768 233 ) +4 428 432 (1207 780 231 ) (1236 780 231 ) (1236 776 231 ) (1207 776 231 ) +4 429 493 (1172 776 233 ) (1172 780 233 ) (1172 780 231 ) (1172 776 231 ) +4 429 441 (1172 776 231 ) (1172 780 231 ) (1174 780 231 ) (1174 776 231 ) +4 429 439 (1174 780 231 ) (1201 780 231 ) (1201 776 231 ) (1174 776 231 ) +4 430 475 (1236 770 231 ) (1236 770 233 ) (1207 770 233 ) (1207 770 231 ) +4 430 433 (1236 770 231 ) (1234 770 231 ) (1234 773 231 ) (1236 773 231 ) +4 430 434 (1234 770 231 ) (1207 770 231 ) (1207 773 231 ) (1234 773 231 ) +4 431 475 (1201 770 233 ) (1172 770 233 ) (1172 770 231 ) (1201 770 231 ) +4 431 442 (1174 770 231 ) (1172 770 231 ) (1172 773 231 ) (1174 773 231 ) +4 431 440 (1201 770 231 ) (1174 770 231 ) (1174 773 231 ) (1201 773 231 ) +4 432 443 (1207 776 228 ) (1207 780 228 ) (1236 780 228 ) (1236 776 228 ) +4 432 436 (1207 780 228 ) (1207 776 228 ) (1207 776 229 ) (1207 780 229 ) +4 433 475 (1236 770 228 ) (1236 770 231 ) (1234 770 231 ) (1234 770 228 ) +4 433 471 (1236 770 228 ) (1234 770 228 ) (1234 771 228 ) (1236 771 228 ) +4 433 451 (1234 771 228 ) (1234 774 228 ) (1236 774 228 ) (1236 771 228 ) +4 433 434 (1234 774 228 ) (1234 770 228 ) (1234 770 231 ) (1234 774 231 ) +4 434 475 (1234 770 231 ) (1207 770 231 ) (1207 770 228 ) (1234 770 228 ) +4 434 471 (1234 770 228 ) (1207 770 228 ) (1207 771 228 ) (1234 771 228 ) +4 434 452 (1207 771 228 ) (1207 775 228 ) (1234 775 228 ) (1234 771 228 ) +4 434 438 (1207 775 228 ) (1207 770 228 ) (1207 770 229 ) (1207 775 229 ) +4 435 444 (1201 776 228 ) (1201 780 228 ) (1202 780 228 ) (1202 776 228 ) +4 435 439 (1201 780 228 ) (1201 776 228 ) (1201 776 229 ) (1201 780 229 ) +4 436 443 (1206 780 228 ) (1207 780 228 ) (1207 776 228 ) (1206 776 228 ) +3 437 475 (1201 770 229 ) (1201 770 228 ) (1202 770 228 ) +4 437 471 (1202 770 228 ) (1201 770 228 ) (1201 771 228 ) (1202 771 228 ) +4 437 463 (1201 771 228 ) (1201 775 228 ) (1202 775 228 ) (1202 771 228 ) +4 437 440 (1201 775 228 ) (1201 770 228 ) (1201 770 229 ) (1201 775 229 ) +3 438 475 (1206 770 228 ) (1207 770 228 ) (1207 770 229 ) +4 438 471 (1207 770 228 ) (1206 770 228 ) (1206 771 228 ) (1207 771 228 ) +4 438 452 (1206 771 228 ) (1206 775 228 ) (1207 775 228 ) (1207 771 228 ) +4 439 444 (1174 776 228 ) (1174 780 228 ) (1201 780 228 ) (1201 776 228 ) +4 439 441 (1174 780 228 ) (1174 776 228 ) (1174 776 231 ) (1174 780 231 ) +4 440 475 (1201 770 231 ) (1174 770 231 ) (1174 770 228 ) (1201 770 228 ) +4 440 471 (1201 770 228 ) (1174 770 228 ) (1174 771 228 ) (1201 771 228 ) +4 440 463 (1174 771 228 ) (1174 775 228 ) (1201 775 228 ) (1201 771 228 ) +4 440 442 (1174 774 228 ) (1174 770 228 ) (1174 770 231 ) (1174 774 231 ) +4 441 493 (1172 780 231 ) (1172 780 228 ) (1172 776 228 ) (1172 776 231 ) +4 441 444 (1172 776 228 ) (1172 780 228 ) (1174 780 228 ) (1174 776 228 ) +4 442 475 (1174 770 231 ) (1172 770 231 ) (1172 770 228 ) (1174 770 228 ) +4 442 471 (1174 770 228 ) (1172 770 228 ) (1172 771 228 ) (1174 771 228 ) +4 442 464 (1172 771 228 ) (1172 774 228 ) (1174 774 228 ) (1174 771 228 ) +4 444 493 (1172 780 228 ) (1172 780 197 ) (1172 776 197 ) (1172 776 228 ) +4 445 449 (1206 776 126 ) (1206 780 126 ) (1207 780 126 ) (1207 776 126 ) +4 445 447 (1207 780 126 ) (1236 780 126 ) (1236 776 126 ) (1207 776 126 ) +4 446 493 (1172 780 191 ) (1172 780 126 ) (1172 776 126 ) (1172 776 191 ) +4 446 450 (1172 776 126 ) (1172 780 126 ) (1201 780 126 ) (1201 776 126 ) +4 446 448 (1201 780 126 ) (1202 780 126 ) (1202 776 126 ) (1201 776 126 ) +4 447 477 (1207 780 125 ) (1236 780 125 ) (1236 776 125 ) (1207 776 125 ) +4 447 449 (1207 780 125 ) (1207 776 125 ) (1207 776 126 ) (1207 780 126 ) +4 448 450 (1201 780 125 ) (1201 776 125 ) (1201 776 126 ) (1201 780 126 ) +4 450 493 (1172 780 126 ) (1172 780 125 ) (1172 776 125 ) (1172 776 126 ) +4 450 478 (1172 776 125 ) (1172 780 125 ) (1201 780 125 ) (1201 776 125 ) +4 451 471 (1236 771 197 ) (1236 771 228 ) (1234 771 228 ) (1234 771 197 ) +4 451 452 (1234 774 197 ) (1234 771 197 ) (1234 771 228 ) (1234 774 228 ) +4 452 471 (1234 771 228 ) (1206 771 228 ) (1206 771 197 ) (1234 771 197 ) +4 452 455 (1206 772 197 ) (1206 771 197 ) (1206 771 228 ) (1206 772 228 ) +4 453 473 (1207 771 192 ) (1206 771 192 ) (1206 771 191 ) (1207 771 191 ) +4 453 472 (1236 771 191 ) (1236 771 192 ) (1207 771 192 ) (1207 771 191 ) +4 453 456 (1236 771 191 ) (1206 771 191 ) (1206 772 191 ) (1236 772 191 ) +4 454 471 (1203 771 228 ) (1202 771 228 ) (1202 771 197 ) (1203 771 197 ) +4 454 463 (1202 772 197 ) (1202 771 197 ) (1202 771 228 ) (1202 772 228 ) +4 455 471 (1206 771 228 ) (1205 771 228 ) (1205 771 197 ) (1206 771 197 ) +4 456 473 (1207 771 191 ) (1206 771 191 ) (1206 771 189 ) (1207 771 189 ) +4 456 472 (1236 771 189 ) (1236 771 191 ) (1207 771 191 ) (1207 771 189 ) +4 456 462 (1206 771 189 ) (1206 771 191 ) (1206 772 191 ) (1206 772 189 ) +4 456 460 (1207 771 189 ) (1206 771 189 ) (1206 773 189 ) (1207 773 189 ) +4 456 459 (1208 771 189 ) (1207 771 189 ) (1207 773 189 ) (1208 773 189 ) +4 456 457 (1236 771 189 ) (1234 771 189 ) (1234 773 189 ) (1236 773 189 ) +4 456 458 (1234 771 189 ) (1208 771 189 ) (1208 773 189 ) (1234 773 189 ) +4 457 480 (1236 773 125 ) (1236 771 125 ) (1234 771 125 ) (1234 773 125 ) +4 457 479 (1236 774 125 ) (1236 773 125 ) (1234 773 125 ) (1234 774 125 ) +4 457 472 (1234 771 125 ) (1236 771 125 ) (1236 771 189 ) (1234 771 189 ) +4 457 458 (1234 771 125 ) (1234 771 189 ) (1234 774 189 ) (1234 774 125 ) +4 458 480 (1234 773 125 ) (1234 771 125 ) (1208 771 125 ) (1208 773 125 ) +4 458 479 (1234 774 125 ) (1234 773 125 ) (1208 773 125 ) (1208 774 125 ) +4 458 472 (1208 771 125 ) (1234 771 125 ) (1234 771 189 ) (1208 771 189 ) +4 458 459 (1208 771 125 ) (1208 771 189 ) (1208 774 189 ) (1208 774 125 ) +4 459 480 (1208 773 125 ) (1208 771 125 ) (1207 771 125 ) (1207 773 125 ) +4 459 479 (1208 774 125 ) (1208 773 125 ) (1207 773 125 ) (1207 774 125 ) +4 459 472 (1207 771 125 ) (1208 771 125 ) (1208 771 189 ) (1207 771 189 ) +4 459 460 (1207 771 125 ) (1207 771 189 ) (1207 774 189 ) (1207 774 125 ) +4 460 473 (1207 771 126 ) (1207 771 189 ) (1206 771 189 ) (1206 771 126 ) +4 460 462 (1206 771 126 ) (1206 771 189 ) (1206 772 189 ) (1206 772 126 ) +4 461 473 (1203 771 191 ) (1202 771 191 ) (1202 771 126 ) (1203 771 126 ) +4 461 467 (1202 772 126 ) (1202 771 126 ) (1202 771 189 ) (1202 772 189 ) +4 461 466 (1202 771 189 ) (1202 771 191 ) (1202 772 191 ) (1202 772 189 ) +4 462 473 (1206 771 126 ) (1206 771 191 ) (1205 771 191 ) (1205 771 126 ) +4 463 471 (1202 771 197 ) (1202 771 228 ) (1174 771 228 ) (1174 771 197 ) +4 463 464 (1174 774 197 ) (1174 771 197 ) (1174 771 228 ) (1174 774 228 ) +4 464 471 (1174 771 228 ) (1172 771 228 ) (1172 771 197 ) (1174 771 197 ) +4 465 473 (1202 771 191 ) (1202 771 192 ) (1201 771 192 ) (1201 771 191 ) +4 465 474 (1201 771 192 ) (1172 771 192 ) (1172 771 191 ) (1201 771 191 ) +4 465 466 (1202 772 191 ) (1202 771 191 ) (1172 771 191 ) (1172 772 191 ) +4 466 473 (1202 771 189 ) (1202 771 191 ) (1201 771 191 ) (1201 771 189 ) +4 466 474 (1201 771 191 ) (1172 771 191 ) (1172 771 189 ) (1201 771 189 ) +4 466 470 (1174 771 189 ) (1172 771 189 ) (1172 773 189 ) (1174 773 189 ) +4 466 469 (1200 771 189 ) (1174 771 189 ) (1174 773 189 ) (1200 773 189 ) +4 466 468 (1201 771 189 ) (1200 771 189 ) (1200 773 189 ) (1201 773 189 ) +4 466 467 (1202 773 189 ) (1202 771 189 ) (1201 771 189 ) (1201 773 189 ) +4 467 473 (1202 771 126 ) (1202 771 189 ) (1201 771 189 ) (1201 771 126 ) +4 467 468 (1201 771 125 ) (1201 771 189 ) (1201 774 189 ) (1201 774 125 ) +4 468 481 (1201 774 125 ) (1201 773 125 ) (1200 773 125 ) (1200 774 125 ) +4 468 482 (1201 773 125 ) (1201 771 125 ) (1200 771 125 ) (1200 773 125 ) +4 468 474 (1200 771 125 ) (1201 771 125 ) (1201 771 189 ) (1200 771 189 ) +4 468 469 (1200 771 125 ) (1200 771 189 ) (1200 774 189 ) (1200 774 125 ) +4 469 481 (1200 774 125 ) (1200 773 125 ) (1174 773 125 ) (1174 774 125 ) +4 469 482 (1200 773 125 ) (1200 771 125 ) (1174 771 125 ) (1174 773 125 ) +4 469 474 (1174 771 125 ) (1200 771 125 ) (1200 771 189 ) (1174 771 189 ) +4 469 470 (1174 771 125 ) (1174 771 189 ) (1174 774 189 ) (1174 774 125 ) +4 470 481 (1172 773 125 ) (1172 774 125 ) (1174 774 125 ) (1174 773 125 ) +4 470 482 (1172 771 125 ) (1172 773 125 ) (1174 773 125 ) (1174 771 125 ) +4 470 474 (1172 771 125 ) (1174 771 125 ) (1174 771 189 ) (1172 771 189 ) +4 471 475 (1236 770 197 ) (1236 770 228 ) (1172 770 228 ) (1172 770 197 ) +4 472 480 (1207 771 125 ) (1236 771 125 ) (1236 770 125 ) (1207 770 125 ) +4 472 476 (1207 770 125 ) (1236 770 125 ) (1236 770 194 ) (1207 770 194 ) +4 472 473 (1207 770 126 ) (1207 770 194 ) (1207 771 194 ) (1207 771 126 ) +4 473 476 (1207 770 126 ) (1207 770 194 ) (1201 770 194 ) (1201 770 126 ) +4 473 474 (1201 770 126 ) (1201 770 194 ) (1201 771 194 ) (1201 771 126 ) +4 474 482 (1172 770 125 ) (1172 771 125 ) (1201 771 125 ) (1201 770 125 ) +4 474 476 (1172 770 125 ) (1201 770 125 ) (1201 770 194 ) (1172 770 194 ) +3 475 552 (1214.131226 768 233 ) (1193.721680 768 233 ) (1203.925415 768 223.204483 ) +5 475 551 (1193.721680 768 233 ) (1172 768 233 ) (1172 768 197 ) (1176.623291 768 197 ) (1203.925415 768 223.204483 ) +4 475 550 (1236 768 197 ) (1236 768 233 ) (1214.131226 768 233 ) (1176.623291 768 197 ) +3 476 551 (1173.497681 768 194 ) (1172 768 194 ) (1172 768 192.562561 ) +5 476 550 (1236 768 125 ) (1236 768 194 ) (1173.497681 768 194 ) (1172 768 192.562561 ) (1172 768 125 ) +4 476 495 (1172 768 128 ) (1172 768 182 ) (1172 770 182 ) (1172 770 128 ) +4 476 487 (1172 768 125 ) (1172 770 125 ) (1236 770 125 ) (1236 768 125 ) +4 477 488 (1207 780 120 ) (1236 780 120 ) (1236 776 120 ) (1207 776 120 ) +4 478 493 (1172 776 125 ) (1172 780 125 ) (1172 780 124 ) (1172 776 124 ) +4 478 488 (1172 776 120 ) (1172 780 120 ) (1201 780 120 ) (1201 776 120 ) +4 479 480 (1236 773 124 ) (1236 773 125 ) (1207 773 125 ) (1207 773 124 ) +4 480 483 (1236 770 123 ) (1207 770 123 ) (1207 773 123 ) (1236 773 123 ) +4 480 487 (1236 770 123 ) (1236 770 125 ) (1207 770 125 ) (1207 770 123 ) +4 481 482 (1201 773 124 ) (1201 773 125 ) (1172 773 125 ) (1172 773 124 ) +4 482 484 (1201 770 123 ) (1172 770 123 ) (1172 773 123 ) (1201 773 123 ) +4 482 487 (1201 770 125 ) (1172 770 125 ) (1172 770 123 ) (1201 770 123 ) +4 483 485 (1236 770 122 ) (1207 770 122 ) (1207 773 122 ) (1236 773 122 ) +4 483 487 (1236 770 122 ) (1236 770 123 ) (1207 770 123 ) (1207 770 122 ) +4 484 486 (1201 770 122 ) (1172 770 122 ) (1172 773 122 ) (1201 773 122 ) +4 484 487 (1201 770 123 ) (1172 770 123 ) (1172 770 122 ) (1201 770 122 ) +4 485 487 (1207 770 120 ) (1236 770 120 ) (1236 770 122 ) (1207 770 122 ) +4 486 487 (1172 770 120 ) (1201 770 120 ) (1201 770 122 ) (1172 770 122 ) +4 487 550 (1236 768 120 ) (1236 768 125 ) (1172 768 125 ) (1172 768 120 ) +4 488 492 (1172 780 120 ) (1172 784 120 ) (1172 784 116 ) (1172 780 116 ) +4 488 491 (1172 784 120 ) (1172 1024 120 ) (1172 1024 116 ) (1172 784 116 ) +4 488 489 (1172 784 116 ) (1172 1024 116 ) (1236 1024 116 ) (1236 784 116 ) +4 489 491 (1172 784 116 ) (1172 1024 116 ) (1172 1024 -1284 ) (1172 784 -1284 ) +4 489 490 (1172 784 -1284 ) (1236 784 -1284 ) (1236 784 64 ) (1172 784 64 ) +4 490 634 (1236 768 -1284 ) (1236 768 0 ) (1172 768 0 ) (1172 768 -1284 ) +4 490 496 (1172 768 -1284 ) (1172 768 64 ) (1172 776 64 ) (1172 776 -1284 ) +4 490 494 (1172 776 64 ) (1172 784 64 ) (1172 784 -1284 ) (1172 776 -1284 ) +4 491 1557 (1024 784 -1284 ) (1024 784 202 ) (1024 1024 202 ) (1024 1024 -1284 ) +4 491 1556 (1024 784 202 ) (1024 784 288 ) (1024 1024 288 ) (1024 1024 202 ) +4 491 525 (1024 784 64 ) (1024 784 -1284 ) (1160 784 -1284 ) (1160 784 64 ) +4 491 524 (1144 784 124 ) (1144 784 176 ) (1140 784 202 ) (1132 784 202 ) +4 491 523 (1036 784 124 ) (1048 784 202 ) (1040 784 202 ) (1036 784 176 ) +6 491 518 (1144 784 68 ) (1144 784 124 ) (1132 784 202 ) (1048 784 202 ) (1036 784 124 ) (1036 784 68 ) +3 491 510 (1024 784 213.500061 ) (1024 784 202 ) (1036 784 224 ) +3 491 509 (1024 784 220.183685 ) (1024 784 213.500061 ) (1052.007446 784 238.006622 ) +3 491 508 (1024 784 252 ) (1024 784 220.183685 ) (1073.997070 784 252 ) +5 491 507 (1078 784 239.272720 ) (1078 784 244.363617 ) (1068 784 238 ) (1052 784 224 ) (1050.936523 784 222.050522 ) +4 491 506 (1040 784 202 ) (1078 784 202 ) (1078 784 239.272720 ) (1050.936523 784 222.050522 ) +5 491 505 (1078 784 202 ) (1102 784 202 ) (1102 784 238 ) (1090 784 242 ) (1078 784 238 ) +3 491 503 (1144 784 224 ) (1140.810181 784 229.847992 ) (1128 784 238 ) +4 491 502 (1156 784 202 ) (1160 784 202 ) (1160 784 217.636322 ) (1140.810181 784 229.847992 ) +5 491 501 (1102 784 202 ) (1140 784 202 ) (1128 784 224 ) (1112 784 238 ) (1102 784 244.363647 ) +3 491 500 (1160 784 217.636322 ) (1160 784 252 ) (1106 784 252 ) +4 491 499 (1024 784 254 ) (1024 784 252 ) (1078 784 252 ) (1078 784 254 ) +4 491 498 (1102 784 252 ) (1160 784 252 ) (1160 784 254 ) (1102 784 254 ) +4 491 497 (1160 784 288 ) (1024 784 288 ) (1024 784 254 ) (1160 784 254 ) +4 491 494 (1172 784 -1284 ) (1172 784 64 ) (1160 784 64 ) (1160 784 -1284 ) +4 491 492 (1172 784 116 ) (1172 784 288 ) (1160 784 288 ) (1160 784 116 ) +4 492 502 (1160 784 217.636322 ) (1160 784 202 ) (1160 780 202 ) (1160 780 217.636322 ) +4 492 500 (1160 784 252 ) (1160 784 217.636322 ) (1160 780 217.636322 ) (1160 780 252 ) +4 492 498 (1160 784 254 ) (1160 784 252 ) (1160 780 252 ) (1160 780 254 ) +4 492 497 (1160 784 288 ) (1160 784 254 ) (1160 780 254 ) (1160 780 288 ) +4 492 493 (1160 780 288 ) (1160 780 124 ) (1172 780 124 ) (1172 780 288 ) +4 493 502 (1160 776 202 ) (1160 776 217.636322 ) (1160 780 217.636322 ) (1160 780 202 ) +4 493 500 (1160 776 217.636322 ) (1160 776 252 ) (1160 780 252 ) (1160 780 217.636322 ) +4 493 498 (1160 776 252 ) (1160 776 254 ) (1160 780 254 ) (1160 780 252 ) +4 493 497 (1160 776 254 ) (1160 776 288 ) (1160 780 288 ) (1160 780 254 ) +4 494 525 (1160 784 64 ) (1160 784 -1284 ) (1160 776 -1284 ) (1160 776 64 ) +4 494 496 (1160 776 64 ) (1160 776 -1284 ) (1172 776 -1284 ) (1172 776 64 ) +4 495 550 (1172 768 128 ) (1172 768 182 ) (1170 768 182 ) (1170 768 128 ) +4 496 634 (1172 768 -1284 ) (1172 768 0 ) (1160 768 0 ) (1160 768 -1284 ) +4 496 525 (1160 768 -1284 ) (1160 768 64 ) (1160 776 64 ) (1160 776 -1284 ) +4 497 1556 (1024 776 288 ) (1024 784 288 ) (1024 784 254 ) (1024 776 254 ) +4 497 499 (1024 784 254 ) (1078 784 254 ) (1078 776 254 ) (1024 776 254 ) +4 497 498 (1102 784 254 ) (1160 784 254 ) (1160 776 254 ) (1102 776 254 ) +4 498 500 (1106 784 252 ) (1160 784 252 ) (1160 776 252 ) (1106 776 252 ) +4 499 1556 (1024 776 254 ) (1024 784 254 ) (1024 784 252 ) (1024 776 252 ) +4 499 508 (1024 784 252 ) (1073.997070 784 252 ) (1073.997070 776 252 ) (1024 776 252 ) +4 500 503 (1140.812378 776 229.843842 ) (1128.011597 776 237.989944 ) (1128.011597 784 237.989944 ) (1140.812378 784 229.843842 ) +4 500 502 (1160 776 217.633392 ) (1140.812378 776 229.843842 ) (1140.812378 784 229.843842 ) (1160 784 217.633392 ) +3 501 524 (1132 784 202 ) (1140 784 202 ) (1140 776 202 ) +4 501 518 (1102 784 202 ) (1132 784 202 ) (1140 776 202 ) (1102 776 202 ) +4 501 505 (1102 784 202 ) (1102 776 202 ) (1102 776 238 ) (1102 784 238 ) +5 501 504 (1102 776 244.363647 ) (1102 776 202 ) (1140 776 202 ) (1128 776 224 ) (1112 776 238 ) +4 502 503 (1143.997925 776 224.001877 ) (1140.808960 776 229.848145 ) (1140.808960 784 229.848145 ) (1143.997925 784 224.001877 ) +5 504 551 (1102 768 202 ) (1148 768 202 ) (1136 768 224 ) (1120.001099 768 238 ) (1102 768 249.454514 ) +5 504 518 (1144 768 202 ) (1102 768 202 ) (1102 776 202 ) (1140 776 202 ) (1144 772 202 ) +3 504 517 (1148 768 202 ) (1144 768 202 ) (1144 772 202 ) +4 504 505 (1102 776 202 ) (1102 768 202 ) (1102 768 238 ) (1102 776 238 ) +5 505 555 (1078 768 202 ) (1102 768 202 ) (1102 768 238 ) (1090 768 242 ) (1078 768 238 ) +4 505 518 (1078 784 202 ) (1102 784 202 ) (1102 768 202 ) (1078 768 202 ) +4 505 511 (1078 776 202 ) (1078 768 202 ) (1078 768 238 ) (1078 776 238 ) +4 505 506 (1078 784 202 ) (1078 776 202 ) (1078 776 238 ) (1078 784 238 ) +3 506 523 (1040 784 202 ) (1048 784 202 ) (1040 776 202 ) +4 506 518 (1048 784 202 ) (1078 784 202 ) (1078 776 202 ) (1040 776 202 ) +5 506 511 (1040 776 202 ) (1078 776 202 ) (1078 776 244.363647 ) (1068 776 238 ) (1052 776 224 ) +5 506 507 (1050.931030 784 222.050354 ) (1051.990234 782.007813 223.992188 ) (1068.011108 776 238.010406 ) (1078 776 244.366974 ) (1078 784 239.276062 ) +4 508 1556 (1024 776 252 ) (1024 784 252 ) (1024 784 220.183685 ) (1024 776 220.183685 ) +4 508 509 (1052.003418 776 238.003021 ) (1024 776 220.182663 ) (1024 784 220.182663 ) (1052.003418 784 238.003021 ) +4 509 1556 (1024 784 220.183685 ) (1024 784 213.500061 ) (1024 776 213.500061 ) (1024 776 220.183685 ) +4 509 510 (1036 776 224.001404 ) (1024 776 213.500763 ) (1024 784 213.500763 ) (1036 784 224.001404 ) +4 510 1556 (1024 784 213.500061 ) (1024 784 202 ) (1024 776 202 ) (1024 776 213.500061 ) +4 511 556 (1040 768 202 ) (1078 768 202 ) (1078 768 246.749969 ) (1052 768 224 ) +4 511 518 (1078 776 202 ) (1078 768 202 ) (1040 768 202 ) (1040 776 202 ) +4 511 513 (1052 776 224 ) (1040 776 202 ) (1040 768 202 ) (1052 768 224 ) +5 511 512 (1052.001953 776 224.001923 ) (1052.001953 768 224.001923 ) (1078 768 246.749878 ) (1078 772.250183 246.749878 ) (1068 776 238 ) +5 512 556 (1078 768 246.749969 ) (1078 768 249.454559 ) (1060.003662 768 238.002319 ) (1059.303345 768 237.389618 ) (1052 768 224 ) +3 512 514 (1052 776 224 ) (1052 768 224 ) (1059.302490 768 237.388779 ) +4 513 556 (1032 768 202 ) (1040 768 202 ) (1052 768 224 ) (1036.695557 768 210.608566 ) +3 513 519 (1036 768 202 ) (1032 768 202 ) (1036 772 202 ) +4 513 518 (1040 768 202 ) (1036 768 202 ) (1036 772 202 ) (1040 776 202 ) +3 513 514 (1052.001953 768 224.001923 ) (1052.001953 776 224.001923 ) (1036.695190 768 210.607910 ) +4 514 556 (1036.695557 768 210.608566 ) (1052 768 224 ) (1059.303467 768 237.389618 ) (1044 768 223.998215 ) +4 515 518 (1144 772 68 ) (1144 772 202 ) (1144 776 176 ) (1144 776 68 ) +4 515 516 (1148 772 68 ) (1144 772 68 ) (1144 774 68 ) (1146 774 68 ) +4 515 517 (1148 772 68 ) (1148 772 176 ) (1144 772 202 ) (1144 772 68 ) +3 516 520 (1144 772 66 ) (1144 772 68 ) (1144 774 68 ) +4 516 517 (1148 772 66 ) (1148 772 68 ) (1144 772 68 ) (1144 772 66 ) +4 517 581 (1144 768 64 ) (1152 768 64 ) (1152 768 116 ) (1144 768 116 ) +4 517 572 (1152 768 116 ) (1152 768 120 ) (1144 768 120 ) (1144 768 116 ) +5 517 551 (1152 768 173.366409 ) (1152 768 176 ) (1148 768 202 ) (1144 768 202 ) (1144 768 165.688171 ) +4 517 550 (1152 768 120 ) (1152 768 173.366409 ) (1144 768 165.688171 ) (1144 768 120 ) +4 517 525 (1152 768 64 ) (1144 768 64 ) (1144 772 64 ) (1148 772 64 ) +4 517 522 (1144 772 64 ) (1144 768 64 ) (1144 768 68 ) (1144 772 68 ) +4 517 518 (1144 768 68 ) (1144 768 202 ) (1144 772 202 ) (1144 772 68 ) +4 518 582 (1056 768 72 ) (1056 768 116 ) (1036 768 116 ) (1036 768 72 ) +4 518 581 (1056 768 68 ) (1144 768 68 ) (1144 768 116 ) (1056 768 116 ) +4 518 572 (1144 768 116 ) (1144 768 120 ) (1036 768 120 ) (1036 768 116 ) +4 518 555 (1102 768 202 ) (1078 768 202 ) (1078 768 120 ) (1102 768 120 ) +4 518 556 (1078 768 202 ) (1036 768 202 ) (1036 768 120 ) (1078 768 120 ) +4 518 551 (1144 768 165.688171 ) (1144 768 202 ) (1102 768 202 ) (1102 768 125.376648 ) +4 518 550 (1144 768 120 ) (1144 768 165.688171 ) (1102 768 125.376648 ) (1102 768 120 ) +4 518 524 (1144 776 176 ) (1144 784 123.996140 ) (1132 784 202 ) (1140 776 202 ) +4 518 523 (1040 776.003906 202 ) (1047.996094 784 202 ) (1036 784 124.024361 ) (1036 776.003845 176 ) +4 518 522 (1144 772 68 ) (1144 768 68 ) (1036 768 68 ) (1036 772 68 ) +4 518 520 (1144 774 68 ) (1144 772 68 ) (1036 772 68 ) (1036 774 68 ) +5 518 519 (1036 771.998047 202 ) (1036 776 175.986969 ) (1036 776 68 ) (1036 768 68 ) (1036 768 202 ) +4 519 582 (1036 768 72 ) (1036 768 116 ) (1028 768 116 ) (1028 768 72 ) +4 519 572 (1036 768 116 ) (1036 768 120 ) (1028 768 120 ) (1028 768 116 ) +5 519 556 (1036 768 120 ) (1036 768 202 ) (1032 768 202 ) (1028 768 176 ) (1028 768 120 ) +4 519 522 (1036 772 68 ) (1036 768 68 ) (1028 768 68 ) (1032 772 68 ) +4 519 521 (1036 774 68 ) (1036 772 68 ) (1032 772 68 ) (1034 774 68 ) +4 520 522 (1144 772 66 ) (1144 772 68 ) (1036 772 68 ) (1036 772 66 ) +3 520 521 (1036 772 66 ) (1036 772 68 ) (1036 774 68 ) +4 521 522 (1036 772 68 ) (1032 772 68 ) (1032 772 66 ) (1036 772 66 ) +4 522 581 (1056 768 64 ) (1144 768 64 ) (1144 768 68 ) (1056 768 68 ) +4 522 525 (1144 772 64 ) (1144 768 64 ) (1028 768 64 ) (1032 772 64 ) +4 525 1558 (1024 768 -1284 ) (1024 768 64 ) (1024 784 64 ) (1024 784 -1284 ) +4 525 634 (1024 768 0 ) (1024 768 -1284 ) (1160 768 -1284 ) (1160 768 0 ) +4 525 632 (1024 768 64 ) (1024 768 0 ) (1056 768 0 ) (1056 768 64 ) +4 526 1835 (1024 512 460 ) (1024 320 460 ) (1024 320 5542.669922 ) (1024 512 5542.669922 ) +5 526 1793 (1024 768 5542.669922 ) (1024 768 466.666504 ) (1024 764 460 ) (1024 512 460 ) (1024 512 5542.669922 ) +4 526 620 (1024 320 5542.669922 ) (1024 320 460 ) (1664 320 460 ) (1664 320 5542.669922 ) +4 526 615 (1664 320 460 ) (1728 320 460 ) (1728 320 5542.669922 ) (1664 320 5542.669922 ) +4 526 591 (1728 320 460 ) (2048 320 460 ) (2048 320 5542.669922 ) (1728 320 5542.669922 ) +4 526 532 (1344 320 460 ) (1024 320 460 ) (1024 760 460 ) (1344 760 460 ) +4 526 529 (1348 320 460 ) (1344 320 460 ) (1344 760 460 ) (1348 760 460 ) +4 526 528 (2048 320 460 ) (1348 320 460 ) (1348 764 460 ) (2048 764 460 ) +4 526 527 (2048 763.998718 460 ) (1344 763.998718 460 ) (1339.998535 768 466.668823 ) (2048 768 466.668854 ) +4 527 528 (1348 768 460 ) (2048 768 460 ) (2048 764 460 ) (1348 764 460 ) +5 528 620 (1344 320 320 ) (1664 320 320 ) (1664 320 460 ) (1348 320 460 ) (1344 320 452 ) +4 528 615 (1664 320 320 ) (1728 320 320 ) (1728 320 460 ) (1664 320 460 ) +4 528 591 (1728 320 320 ) (2048 320 320 ) (2048 320 460 ) (1728 320 460 ) +4 528 586 (2048 320 320 ) (1856 320 320 ) (1856 448 320 ) (2048 448 320 ) +5 528 545 (1344 448 320 ) (1344 766 320 ) (1664 766 320 ) (1664 576 320 ) (1536 448 320 ) +4 528 540 (1344 766 320 ) (1344 768 320 ) (1664 768 320 ) (1664 766 320 ) +4 528 539 (1664 768 320 ) (1728 768 320 ) (1728 672 320 ) (1664 672 320 ) +4 528 538 (1728 768 320 ) (1792 768 320 ) (1792 608 320 ) (1728 672 320 ) +4 528 537 (1792 768 320 ) (1856 768 320 ) (1856 544 320 ) (1792 608 320 ) +4 528 536 (1856 768 320 ) (1920 768 320 ) (1920 448 320 ) (1856 448 320 ) +4 528 535 (1920 768 320 ) (1984 768 320 ) (1984 448 320 ) (1920 448 320 ) +4 528 534 (1984 768 320 ) (2048 768 320 ) (2048 448 320 ) (1984 448 320 ) +3 528 533 (1344 768 448 ) (1344 768 444 ) (1344 766 448 ) +4 528 531 (1344 764 448 ) (1344 766 448 ) (1344 768 444 ) (1344 768 440 ) +4 528 530 (1344 768 320 ) (1344 764 320 ) (1344 764 448 ) (1344 768 440 ) +4 528 532 (1344 764 320 ) (1344 320 320 ) (1344 320 452 ) (1344 764 452 ) +4 528 529 (1344 764 452 ) (1344 320 452 ) (1348 320 460 ) (1348 760 460 ) +3 529 620 (1348 320 460 ) (1344 320 460 ) (1344 320 452 ) +4 529 532 (1344 320 452 ) (1344 320 460 ) (1344 760 460 ) (1344 764 452 ) +4 530 1795 (1024 768 440 ) (1024 768 320 ) (1024 764 320 ) (1024 764 448 ) +4 530 545 (1024 764 320 ) (1024 766 320 ) (1344 766 320 ) (1344 764 320 ) +4 530 543 (1024 766 320 ) (1024 768 320 ) (1068 768 320 ) (1068 766 320 ) +4 530 542 (1068 768 320 ) (1112 768 320 ) (1112 766 320 ) (1068 766 320 ) +4 530 541 (1112 768 320 ) (1184 768 320 ) (1184 766 320 ) (1112 766 320 ) +4 530 540 (1184 768 320 ) (1344 768 320 ) (1344 766 320 ) (1184 766 320 ) +3 530 531 (1344 764 448 ) (1344 768 440 ) (1340 768 440 ) +4 530 532 (1024 764 320 ) (1344 764 320 ) (1344 764 448 ) (1024 764 448 ) +3 531 533 (1344 766 448 ) (1344 768 444 ) (1342 768 444 ) +4 532 1835 (1024 512 320 ) (1024 320 320 ) (1024 320 460 ) (1024 512 460 ) +5 532 1796 (1024 764 320 ) (1024 512 320 ) (1024 512 460 ) (1024 760 460 ) (1024 764 452 ) +4 532 620 (1024 320 460 ) (1024 320 320 ) (1344 320 320 ) (1344 320 460 ) +4 532 587 (1024 384 320 ) (1024 448 320 ) (1184 448 320 ) (1184 384 320 ) +4 532 545 (1024 448 320 ) (1024 764 320 ) (1344 764 320 ) (1344 448 320 ) +4 534 586 (2048 448 128 ) (2048 448 320 ) (1984 448 320 ) (1984 448 128 ) +4 534 535 (1984 448 112 ) (1984 448 320 ) (1984 768 320 ) (1984 768 112 ) +4 535 586 (1984 448 128 ) (1984 448 320 ) (1920 448 320 ) (1920 448 128 ) +4 535 536 (1920 448 104 ) (1920 448 320 ) (1920 768 320 ) (1920 768 104 ) +4 536 586 (1920 448 128 ) (1920 448 320 ) (1856 448 320 ) (1856 448 128 ) +4 536 537 (1856 544 320 ) (1856 768 320 ) (1856 768 96 ) (1856 544 96 ) +4 537 538 (1792 607.994141 88 ) (1792 607.994141 320 ) (1792 768 320 ) (1792 768 88 ) +4 538 539 (1728 672 80 ) (1728 672 320 ) (1728 768 320 ) (1728 768 80 ) +4 539 576 (1664 768 96 ) (1664 768 72 ) (1664 764 72 ) (1664 764 92 ) +4 539 575 (1664 768 112 ) (1664 768 96 ) (1664 764 92 ) (1664 764 108 ) +4 539 574 (1664 764 116 ) (1664 768 116 ) (1664 768 112 ) (1664 764 108 ) +4 539 580 (1664 672 72 ) (1664 672 116 ) (1664 764 116 ) (1664 764 72 ) +4 539 568 (1664 766 120 ) (1664 768 120 ) (1664 768 116 ) (1664 766 116 ) +4 539 573 (1664 672 116 ) (1664 672 120 ) (1664 766 120 ) (1664 766 116 ) +4 539 567 (1664 672 120 ) (1664 672 276 ) (1664 766 276 ) (1664 766 120 ) +4 539 564 (1664 767 254 ) (1664 767 120 ) (1664 766 120 ) (1664 766 254 ) +4 539 563 (1664 766 276 ) (1664 767 276 ) (1664 767 254 ) (1664 766 254 ) +4 539 558 (1664 768 161.441269 ) (1664 768 120 ) (1664 767 120 ) (1664 767 161.442444 ) +4 539 557 (1664 767 276 ) (1664 768 276 ) (1664 768 161.441269 ) (1664 767 161.442444 ) +4 539 545 (1664 672 276 ) (1664 672 320 ) (1664 766 320 ) (1664 766 276 ) +4 539 540 (1664 766 320 ) (1664 768 320 ) (1664 768 288 ) (1664 766 288 ) +4 539 544 (1664 768 288 ) (1664 768 276 ) (1664 766 276 ) (1664 766 288 ) +4 540 545 (1664 766 288 ) (1664 766 320 ) (1184 766 320 ) (1184 766 288 ) +4 540 541 (1184 766 290 ) (1184 766 320 ) (1184 768 320 ) (1184 768 292 ) +4 540 544 (1664 766 288 ) (1184 766 288 ) (1184 768 288 ) (1664 768 288 ) +4 541 545 (1184 766 320 ) (1112 766 320 ) (1112 766 290 ) (1184 766 290 ) +4 541 542 (1112 766 290 ) (1112 766 320 ) (1112 768 320 ) (1112 768 292 ) +4 542 545 (1112 766 320 ) (1068 766 320 ) (1068 766 288 ) (1112 766 288 ) +4 542 543 (1068 766 290 ) (1068 766 320 ) (1068 768 320 ) (1068 768 292 ) +4 542 544 (1112 766 288 ) (1068 766 288 ) (1068 768 288 ) (1112 768 288 ) +4 543 1795 (1024 768 320 ) (1024 768 292 ) (1024 766 290 ) (1024 766 320 ) +4 543 545 (1068 766 320 ) (1024 766 320 ) (1024 766 290 ) (1068 766 290 ) +4 544 1803 (1024 768 280 ) (1024 768 276 ) (1024 767 276 ) (1024 767 280 ) +4 544 1818 (1024 767 276 ) (1024 766 276 ) (1024 766 280 ) (1024 767 280 ) +4 544 1801 (1024 768 288 ) (1024 768 280 ) (1024 766 280 ) (1024 766 288 ) +4 544 563 (1664 767 276 ) (1664 766 276 ) (1024 766 276 ) (1024 767 276 ) +4 544 562 (1278.440308 768 276 ) (1285.930054 768 276 ) (1285.930054 767 276 ) (1278.434082 767 276 ) +4 544 561 (1240.927490 768 276 ) (1278.440308 768 276 ) (1278.434082 767 276 ) (1240.927490 767 276 ) +4 544 557 (1305.930054 768 276 ) (1664 768 276 ) (1664 767 276 ) (1305.933838 767 276 ) +4 544 554 (1024 768 276 ) (1102 768 276 ) (1102 767 276 ) (1024 767 276 ) +4 544 548 (1102 768 276 ) (1193.930054 768 276 ) (1193.930054 767 276 ) (1102 767 276 ) +4 544 546 (1213.929932 768 276 ) (1240.927490 768 276 ) (1240.927490 767 276 ) (1213.936646 767 276 ) +4 544 545 (1024 766 276 ) (1664 766 276 ) (1664 766 288 ) (1024 766 288 ) +4 545 1837 (1024 512 276 ) (1024 448 276 ) (1024 448 288 ) (1024 512 288 ) +4 545 1836 (1024 448 288 ) (1024 448 320 ) (1024 512 320 ) (1024 512 288 ) +4 545 1818 (1024 766 276 ) (1024 512 276 ) (1024 512 280 ) (1024 766 280 ) +3 545 1802 (1024 766 290 ) (1024 766 280 ) (1024 756 280 ) +5 545 1796 (1024 512 280 ) (1024 512 320 ) (1024 764 320 ) (1024 764 288 ) (1024 756 280 ) +4 545 1795 (1024 764 320 ) (1024 766 320 ) (1024 766 290 ) (1024 764 288 ) +4 545 588 (1152 448 276 ) (1184 448 276 ) (1184 448 288 ) (1152 448 288 ) +4 545 590 (1024 448 288 ) (1024 448 276 ) (1152 448 276 ) (1152 448 288 ) +4 545 587 (1184 448 320 ) (1024 448 320 ) (1024 448 288 ) (1184 448 288 ) +5 545 567 (1664 766 276 ) (1664 576 276 ) (1536 448 276 ) (1024 448 276 ) (1024 766 276 ) +3 546 563 (1254.425049 767 263.043762 ) (1240.927490 767 276 ) (1213.936646 767 276 ) +4 546 561 (1240.929688 768 276 ) (1240.929688 767 276 ) (1254.427979 767 263.042847 ) (1254.431396 768 263.039551 ) +4 546 547 (1254.429810 768 263.039185 ) (1254.426392 767 263.042419 ) (1228.913696 767 271.206482 ) (1228.929932 768 271.199127 ) +3 547 564 (1279.925781 767 238.565552 ) (1263.846558 767 254 ) (1255.804443 767 254 ) +4 547 563 (1263.846558 767 254 ) (1254.425049 767 263.043762 ) (1228.910889 767 271.208282 ) (1255.804443 767 254 ) +4 547 561 (1254.427979 767 263.042847 ) (1255.929565 767 261.601501 ) (1255.931885 768 261.599182 ) (1254.431396 768 263.039551 ) +4 547 560 (1265.931274 767 252 ) (1279.931274 767 238.561996 ) (1279.921631 768 238.571289 ) (1265.932617 768 252 ) +4 547 550 (1243.929077 768 261.600067 ) (1279.921509 768 238.569763 ) (1279.930908 767 238.560699 ) (1243.929077 767 261.597046 ) +4 548 563 (1193.930054 767 276 ) (1102 767 276 ) (1102 767 264 ) (1156.437744 767 264 ) +4 548 554 (1102 767 264 ) (1102 767 276 ) (1102 768 276 ) (1102 768 264 ) +4 548 551 (1156.437744 767 264 ) (1102 767 264 ) (1102 768 264 ) (1156.437744 768 264 ) +4 548 549 (1156.435547 767 264 ) (1156.435547 768 264 ) (1178.935425 768 271.201447 ) (1178.944702 767 271.204407 ) +3 549 563 (1178.942627 767 271.203033 ) (1156.437744 767 264 ) (1167.692627 767 264 ) +4 549 553 (1167.692627 767 264 ) (1161.430176 767 264 ) (1161.430176 768 264 ) (1167.687988 768 264 ) +4 549 551 (1161.430176 767 264 ) (1156.437744 767 264 ) (1156.437744 768 264 ) (1161.430176 768 264 ) +4 550 571 (1172 768 120 ) (1236 768 120 ) (1236 767 120 ) (1172 767 120 ) +4 550 572 (1102 768 120 ) (1172 768 120 ) (1172 767 120 ) (1102 767 120 ) +4 550 569 (1264 768 120 ) (1328 768 120 ) (1328 767 120 ) (1264 767 120 ) +4 550 568 (1328 768 120 ) (1403.444458 768 120 ) (1403.444458 767 120 ) (1328 767 120 ) +4 550 570 (1236 768 120 ) (1264 768 120 ) (1264 767 120 ) (1236 767 120 ) +6 550 564 (1102 767 120 ) (1403.444458 767 120 ) (1279.925781 767 238.565552 ) (1255.804443 767 254 ) (1236.013794 767 254 ) (1102 767 125.373596 ) +3 550 563 (1255.804443 767 254 ) (1243.930054 767 261.597992 ) (1236.013794 767 254 ) +4 550 560 (1279.931274 767 238.561996 ) (1295.929321 767 223.205322 ) (1295.927246 768 223.207336 ) (1279.921631 768 238.571289 ) +4 550 559 (1295.929321 767 223.205322 ) (1403.445313 767 120 ) (1403.445313 768 120 ) (1295.927246 768 223.207336 ) +4 550 555 (1102 768 120 ) (1102 767 120 ) (1102 767 125.373604 ) (1102 768 125.376648 ) +4 550 552 (1233.927002 768 252.001831 ) (1203.924438 768 223.205353 ) (1203.926025 767 223.203918 ) (1233.928955 767 252 ) +4 550 551 (1203.924438 768 223.205353 ) (1102 768 125.378304 ) (1102 767 125.375282 ) (1203.926025 767 223.203918 ) +4 551 564 (1102 767 254 ) (1102 767 125.373596 ) (1203.926880 767 223.203003 ) (1171.846680 767 254 ) +4 551 563 (1161.430054 767 264 ) (1102 767 264 ) (1102 767 254 ) (1171.846680 767 254 ) +4 551 555 (1102 767 125.373604 ) (1102 767 238 ) (1102 768 238 ) (1102 768 125.376648 ) +4 551 554 (1102 767 254 ) (1102 767 264 ) (1102 768 264 ) (1102 768 254 ) +4 551 553 (1161.431396 768 264 ) (1161.431396 767 264 ) (1163.936523 767 261.595093 ) (1163.934692 768 261.596863 ) +4 551 552 (1173.930908 767 252 ) (1203.927612 767 223.203644 ) (1203.926025 768 223.205154 ) (1173.928955 768 252.002335 ) +5 552 564 (1177.402222 767 254 ) (1173.930054 767 252 ) (1203.926880 767 223.203003 ) (1233.930054 767 252 ) (1230.457031 767 254 ) +6 552 563 (1211.429932 767 264 ) (1196.430176 767 264 ) (1186.408691 767 259.187683 ) (1177.402222 767 254 ) (1230.457031 767 254 ) (1221.371460 767 259.231812 ) +3 553 563 (1167.692505 767 264 ) (1161.430054 767 264 ) (1163.935669 767 261.594604 ) +4 554 1803 (1024 768 276 ) (1024 768 254 ) (1024 767 254 ) (1024 767 276 ) +4 554 563 (1102 767 254 ) (1102 767 276 ) (1024 767 276 ) (1024 767 254 ) +4 554 556 (1024 768 254 ) (1078 768 254 ) (1078 767 254 ) (1024 767 254 ) +4 555 572 (1078 768 120 ) (1102 768 120 ) (1102 767 120 ) (1078 767 120 ) +5 555 565 (1078 767 120 ) (1102 767 120 ) (1102 767 238 ) (1090 767 242 ) (1078 767 238 ) +4 555 556 (1078 768 120 ) (1078 767 120 ) (1078 767 238 ) (1078 768 238 ) +4 556 1808 (1024 768 219.459991 ) (1024 768 120 ) (1024 767 120 ) (1024 767 219.462967 ) +4 556 1803 (1024 768 254 ) (1024 768 219.459991 ) (1024 767 219.462967 ) (1024 767 254 ) +4 556 572 (1024 768 120 ) (1078 768 120 ) (1078 767 120 ) (1024 767 120 ) +4 556 566 (1024 767 120 ) (1078 767 120 ) (1078 767 254 ) (1024 767 254 ) +3 557 564 (1664 767 161.442444 ) (1664 767 254 ) (1374.697998 767 254 ) +4 557 563 (1664 767 254 ) (1664 767 276 ) (1305.933838 767 276 ) (1374.697998 767 254 ) +4 557 558 (1664 767 161.442581 ) (1320.888184 767 271.215424 ) (1320.904419 768 271.209045 ) (1664 768 161.441406 ) +4 558 568 (1557.399658 768 120 ) (1664 768 120 ) (1664 767 120 ) (1557.393433 767 120 ) +5 558 564 (1557.393433 767 120 ) (1664 767 120 ) (1664 767 161.442444 ) (1374.697998 767 254 ) (1347.813599 767 254 ) +3 558 563 (1374.697998 767 254 ) (1320.887695 767 271.215759 ) (1347.813599 767 254 ) +4 558 559 (1557.394531 767 120 ) (1335.931030 767 261.598816 ) (1335.931030 768 261.602814 ) (1557.400757 768 120 ) +4 559 568 (1403.444458 768 120 ) (1557.399658 768 120 ) (1557.393433 767 120 ) (1403.444458 767 120 ) +5 559 564 (1403.444458 767 120 ) (1557.393433 767 120 ) (1347.813721 767 254 ) (1328.013916 767 254 ) (1295.928589 767 223.204498 ) +3 559 563 (1347.813721 767 254 ) (1335.930176 767 261.598022 ) (1328.013916 767 254 ) +4 559 560 (1325.927368 768 252.001587 ) (1295.926392 768 223.206589 ) (1295.928467 767 223.204590 ) (1325.930054 767 252 ) +5 560 564 (1269.403198 767 254 ) (1265.930054 767 252 ) (1295.928589 767 223.204498 ) (1325.930176 767 252 ) (1322.457886 767 254 ) +6 560 563 (1303.430054 767 264 ) (1288.430054 767 264 ) (1278.430054 767 259.197998 ) (1269.403198 767 254 ) (1322.457886 767 254 ) (1313.381226 767 259.228149 ) +3 561 563 (1278.434082 767 276 ) (1240.927490 767 276 ) (1255.928223 767 261.600769 ) +4 561 562 (1278.441895 768 276 ) (1278.435669 767 276 ) (1270.933472 767 271.200073 ) (1270.945923 768 271.204071 ) +3 562 563 (1285.930054 767 276 ) (1278.434082 767 276 ) (1270.930298 767 271.199066 ) +4 563 1818 (1024 766 254 ) (1024 766 276 ) (1024 767 276 ) (1024 767 254 ) +4 563 567 (1664 766 254 ) (1664 766 276 ) (1024 766 276 ) (1024 766 254 ) +4 563 566 (1078 766 254 ) (1024 766 254 ) (1024 767 254 ) (1078 767 254 ) +4 563 564 (1664 766 254 ) (1102 766 254 ) (1102 767 254 ) (1664 767 254 ) +4 564 571 (1236 766 120 ) (1172 766 120 ) (1172 767 120 ) (1236 767 120 ) +4 564 572 (1172 766 120 ) (1102 766 120 ) (1102 767 120 ) (1172 767 120 ) +4 564 569 (1328 766 120 ) (1264 766 120 ) (1264 767 120 ) (1328 767 120 ) +4 564 568 (1664 767 120 ) (1664 766 120 ) (1328 766 120 ) (1328 767 120 ) +4 564 570 (1264 766 120 ) (1236 766 120 ) (1236 767 120 ) (1264 767 120 ) +4 564 567 (1102 766 120 ) (1664 766 120 ) (1664 766 254 ) (1102 766 254 ) +4 564 565 (1102 766 120 ) (1102 766 238 ) (1102 767 238 ) (1102 767 120 ) +4 565 572 (1102 766 120 ) (1078 766 120 ) (1078 767 120 ) (1102 767 120 ) +5 565 567 (1078 766 120 ) (1102 766 120 ) (1102 766 238 ) (1090 766 242 ) (1078 766 238 ) +4 565 566 (1078 766 120 ) (1078 766 238 ) (1078 767 238 ) (1078 767 120 ) +4 566 1818 (1024 767 120 ) (1024 766 120 ) (1024 766 254 ) (1024 767 254 ) +4 566 572 (1078 766 120 ) (1024 766 120 ) (1024 767 120 ) (1078 767 120 ) +4 566 567 (1024 766 120 ) (1078 766 120 ) (1078 766 254 ) (1024 766 254 ) +4 567 1837 (1024 512 120 ) (1024 448 120 ) (1024 448 276 ) (1024 512 276 ) +4 567 1818 (1024 766 120 ) (1024 512 120 ) (1024 512 276 ) (1024 766 276 ) +4 567 588 (1184 448 276 ) (1152 448 276 ) (1152 448 120 ) (1184 448 120 ) +4 567 590 (1152 448 276 ) (1024 448 276 ) (1024 448 120 ) (1152 448 120 ) +4 567 584 (1184 448 120 ) (1024 448 120 ) (1024 640 120 ) (1184 640 120 ) +5 567 583 (1664 640 120 ) (1664 576 120 ) (1536 448 120 ) (1184 448 120 ) (1184 640 120 ) +4 567 573 (1664 766 120 ) (1664 640 120 ) (1024 640 120 ) (1024 766 120 ) +4 568 574 (1328 768 116 ) (1664 768 116 ) (1664 766 116 ) (1328 766 116 ) +3 568 569 (1328 766 118 ) (1328 766 120 ) (1328 768 120 ) +4 568 573 (1328 766 116 ) (1664 766 116 ) (1664 766 120 ) (1328 766 120 ) +4 569 573 (1328 766 118 ) (1328 766 120 ) (1264 766 120 ) (1264 766 118 ) +3 569 570 (1264 766 118 ) (1264 766 120 ) (1264 768 120 ) +4 570 574 (1236 768 116 ) (1264 768 116 ) (1264 766 116 ) (1236 766 116 ) +3 570 571 (1236 766 118 ) (1236 766 120 ) (1236 768 120 ) +4 570 573 (1236 766 116 ) (1264 766 116 ) (1264 766 120 ) (1236 766 120 ) +3 571 572 (1172 766 118 ) (1172 766 120 ) (1172 768 120 ) +4 571 573 (1236 766 118 ) (1236 766 120 ) (1172 766 120 ) (1172 766 118 ) +4 572 1821 (1024 768 120 ) (1024 768 116 ) (1024 766 116 ) (1024 766 118 ) +4 572 1808 (1024 768 120 ) (1024 767.612732 119.612755 ) (1024 767 119.612755 ) (1024 767 120 ) +3 572 1807 (1024 767.612732 119.612755 ) (1024 767 119 ) (1024 767 119.612755 ) +4 572 1818 (1024 767 119 ) (1024 766 118 ) (1024 766 120 ) (1024 767 120 ) +4 572 582 (1024 766 116 ) (1024 768 116 ) (1056 768 116 ) (1056 766 116 ) +4 572 581 (1056 768 116 ) (1156 768 116 ) (1156 766 116 ) (1056 766 116 ) +4 572 574 (1156 768 116 ) (1172 768 116 ) (1172 766 116 ) (1156 766 116 ) +4 572 573 (1024 766 116 ) (1172 766 116 ) (1172 766 120 ) (1024 766 120 ) +3 573 1822 (1024 766 116 ) (1024 764 116 ) (1024 766 118 ) +5 573 1818 (1024 764 116 ) (1024 640 116 ) (1024 640 120 ) (1024 766 120 ) (1024 766 118 ) +4 573 584 (1184 640 120 ) (1024 640 120 ) (1024 640 116 ) (1184 640 116 ) +4 573 583 (1664 640 116 ) (1664 640 120 ) (1184 640 120 ) (1184 640 116 ) +4 573 582 (1056 640 116 ) (1024 640 116 ) (1024 766 116 ) (1056 766 116 ) +4 573 581 (1156 640 116 ) (1056 640 116 ) (1056 766 116 ) (1156 766 116 ) +4 573 574 (1156 764 116 ) (1156 766 116 ) (1664 766 116 ) (1664 764 116 ) +4 573 580 (1664 640 116 ) (1156 640 116 ) (1156 764 116 ) (1664 764 116 ) +4 574 581 (1156 764 108 ) (1156 764 116 ) (1156 768 116 ) (1156 768 112 ) +4 574 579 (1172 764 107.998085 ) (1156 764 107.998085 ) (1156 768 111.998093 ) (1172 768 111.998093 ) +4 574 578 (1264 764 107.998085 ) (1236 764 107.998085 ) (1236 768 111.998093 ) (1264 768 111.998093 ) +4 574 575 (1664 764 107.998100 ) (1328 764 107.998085 ) (1328 768 111.998093 ) (1664 768 111.998108 ) +4 574 580 (1156 764 116 ) (1156 764 108 ) (1664 764 108 ) (1664 764 116 ) +3 575 577 (1344 764 92 ) (1340 768 96 ) (1344 768 96 ) +4 575 576 (1664 764 92 ) (1344 764 92 ) (1344 768 96 ) (1664 768 96 ) +4 575 580 (1664 764 92 ) (1664 764 108 ) (1328 764 108 ) (1328 764 92 ) +4 576 577 (1344 764 92 ) (1344 764 92.007813 ) (1344 768 96.007813 ) (1344 768 92 ) +4 576 580 (1344 764 64 ) (1664 764 64 ) (1664 764 92 ) (1344 764 92 ) +4 578 580 (1264 764 92 ) (1264 764 108 ) (1236 764 108 ) (1236 764 92 ) +4 579 581 (1156 764 92 ) (1156 764 108 ) (1156 768 112 ) (1156 768 96 ) +4 579 580 (1156 764 108 ) (1156 764 92 ) (1172 764 92 ) (1172 764 108 ) +4 580 585 (1156 640 64 ) (1184 640 64 ) (1184 640 96 ) (1156 640 96 ) +4 580 584 (1184 640 96 ) (1184 640 116 ) (1156 640 116 ) (1156 640 96 ) +4 580 583 (1184 640 64 ) (1664 640 64 ) (1664 640 116 ) (1184 640 116 ) +4 580 581 (1156 764 64 ) (1156 640 64 ) (1156 640 116 ) (1156 764 116 ) +4 581 585 (1152 640 64 ) (1156 640 64 ) (1156 640 96 ) (1152 640 96 ) +4 581 584 (1156 640 96 ) (1156 640 116 ) (1056 640 116 ) (1056 640 96 ) +4 581 582 (1056 640 72 ) (1056 640 116 ) (1056 768 116 ) (1056 768 72 ) +4 582 1823 (1024 768 116 ) (1024 768 80 ) (1024 640 80 ) (1024 640 116 ) +4 582 584 (1056 640 96 ) (1056 640 116 ) (1024 640 116 ) (1024 640 96 ) +4 583 585 (1184 640 96 ) (1184 640 64 ) (1184 608 64 ) (1184 608 96 ) +5 583 584 (1184 640 120 ) (1184 640 96 ) (1184 512 96 ) (1184 448 106.666664 ) (1184 448 120 ) +4 584 1837 (1024 448 106.666664 ) (1024 448 120 ) (1024 512 120 ) (1024 512 96 ) +4 584 1827 (1024 640 116 ) (1024 640 96 ) (1024 512 96 ) (1024 512 116 ) +4 584 1818 (1024 512 120 ) (1024 640 120 ) (1024 640 116 ) (1024 512 116 ) +4 584 588 (1184 448 106.666664 ) (1184 448 120 ) (1152 448 120 ) (1152 448 106.666664 ) +4 584 590 (1152 448 120 ) (1024 448 120 ) (1024 448 106.666664 ) (1152 448 106.666664 ) +3 584 585 (1152 640 96 ) (1184 640 96 ) (1184 608 96 ) +4 586 606 (1928 320 168 ) (1856 320 168 ) (1856 320 128 ) (1928 320 128 ) +4 586 597 (2048 320 128 ) (2048 320 155.519012 ) (1928 320 155.519012 ) (1928 320 128 ) +4 586 594 (1932 320 168 ) (1928 320 168 ) (1928 320 155.519012 ) (1932 320 155.519012 ) +4 586 592 (2048 320 155.519012 ) (2048 320 168 ) (1932 320 168 ) (1932 320 155.519012 ) +4 586 591 (2048 320 168 ) (2048 320 320 ) (1856 320 320 ) (1856 320 168 ) +4 587 1836 (1024 384 320 ) (1024 448 320 ) (1024 448 288 ) (1024 384 288 ) +4 587 588 (1152 448 288 ) (1184 448 288 ) (1184 384 288 ) (1152 384 288 ) +4 587 590 (1024 448 288 ) (1152 448 288 ) (1152 384 288 ) (1024 384 288 ) +4 588 590 (1152 448 106.669922 ) (1152 384 117.336548 ) (1152 384 288 ) (1152 448 288 ) +4 589 624 (1152 320 128 ) (1184 320 128 ) (1184 320 288 ) (1152 320 288 ) +4 589 590 (1152 352 122.669861 ) (1152 320 128.003174 ) (1152 320 288 ) (1152 352 288 ) +4 590 1837 (1024 320 128 ) (1024 320 288 ) (1024 448 288 ) (1024 448 106.666656 ) +4 590 624 (1024 320 288 ) (1024 320 128 ) (1152 320 128 ) (1152 320 288 ) +4 591 805 (2048 0 168 ) (2048 0 240 ) (1728 0 240 ) (1728 0 168 ) +4 591 804 (2048 0 240 ) (2048 0 320 ) (1728 0 320 ) (1728 0 240 ) +4 591 803 (2048 0 320 ) (2048 0 5542.669922 ) (1728 0 5542.669922 ) (1728 0 320 ) +4 591 618 (1728 48 168 ) (1728 0 168 ) (1728 0 240 ) (1728 48 240 ) +4 591 617 (1728 0 320 ) (1728 0 5542.669922 ) (1728 48 5542.669922 ) (1728 48 320 ) +4 591 616 (1728 224 168 ) (1728 64 168 ) (1728 64 288 ) (1728 224 288 ) +4 591 615 (1728 320 5542.669922 ) (1728 320 320 ) (1728 48 320 ) (1728 48 5542.669922 ) +4 591 613 (1728 0 168 ) (1728 4 168 ) (1804 4 168 ) (1804 0 168 ) +4 591 612 (1804 320 168 ) (1808 320 168 ) (1808 72 168 ) (1804 72 168 ) +4 591 611 (1728 4 168 ) (1728 320 168 ) (1804 320 168 ) (1804 4 168 ) +4 591 610 (1808 320 168 ) (1856 320 168 ) (1856 72 168 ) (1808 72 168 ) +4 591 606 (1856 320 168 ) (1928 320 168 ) (1928 72 168 ) (1856 72 168 ) +4 591 595 (2048 4 168 ) (2048 0 168 ) (1936 0 168 ) (1936 4 168 ) +4 591 594 (1928 320 168 ) (1932 320 168 ) (1932 72 168 ) (1928 72 168 ) +4 591 593 (2048 72 168 ) (2048 4 168 ) (1936 4 168 ) (1936 72 168 ) +4 591 592 (1932 320 168 ) (2048 320 168 ) (2048 72 168 ) (1932 72 168 ) +4 592 600 (2048 60 155.519012 ) (2048 59.519012 155.519012 ) (1932 59.519009 155.519012 ) (1932 60 155.519012 ) +4 592 598 (2048 288 155.519012 ) (2048 60 155.519012 ) (1932 60 155.519012 ) (1932 288 155.519012 ) +4 592 597 (1932 320 155.519012 ) (2048 320 155.519012 ) (2048 288 155.519012 ) (1932 288 155.519012 ) +5 592 594 (1932 320 155.519012 ) (1932 68 155.519012 ) (1932 68 164 ) (1932 72 168 ) (1932 320 168 ) +5 592 593 (1932 68 164 ) (1932 59.519531 155.519012 ) (2048 59.519531 155.519012 ) (2048 72 168 ) (1936 72 168 ) +4 593 600 (2048 59.519012 155.519012 ) (2048 4 155.519012 ) (1932 4 155.519012 ) (1932 59.519009 155.519012 ) +5 593 595 (1932 4 155.519012 ) (2048 4 155.519012 ) (2048 4 168 ) (1936 4 168 ) (1932 4 164 ) +5 594 606 (1928 72 168 ) (1928 320 168 ) (1928 320 155.519012 ) (1928 68 155.519012 ) (1928 68 164 ) +4 594 599 (1928 68 155.519012 ) (1928 288 155.519012 ) (1932 288 155.519012 ) (1932 68 155.519012 ) +4 594 597 (1928 288 155.519012 ) (1928 320 155.519012 ) (1932 320 155.519012 ) (1932 288 155.519012 ) +4 595 807 (2048 0 155.519012 ) (2048 0 160 ) (1928 0 160 ) (1928 0 155.519012 ) +4 595 805 (2048 0 160 ) (2048 0 168 ) (1936 0 168 ) (1928 0 160 ) +4 595 607 (1928 4 160 ) (1928 4 155.519012 ) (1928 0 155.519012 ) (1928 0 160 ) +4 595 602 (1928 0 155.519012 ) (1928 4 155.519012 ) (1932 4 155.519012 ) (1932 0 155.519012 ) +4 595 600 (1932 4 155.519012 ) (2048 4 155.519012 ) (2048 0 155.519012 ) (1932 0 155.519012 ) +4 595 596 (1932 4 164 ) (1928 4 160 ) (1928 0 160 ) (1936 0 168 ) +3 596 805 (1936 0 168 ) (1928 0 168 ) (1928 0 160 ) +4 596 607 (1928 0 168 ) (1928 4 164 ) (1928 4 160 ) (1928 0 160 ) +4 597 606 (1928 320 155.519012 ) (1928 320 112 ) (1928 288 112 ) (1928 288 155.519012 ) +4 597 599 (1932 288 155.519012 ) (1928 288 155.519012 ) (1928 288 112 ) (1932 288 112 ) +4 597 598 (2048 288 112 ) (2048 288 155.519012 ) (1932 288 155.519012 ) (1932 288 112 ) +4 598 604 (2048 68 100 ) (2048 60 100 ) (1932 60 100 ) (1932 68 100 ) +4 598 603 (1932 288 100 ) (2048 288 100 ) (2048 68 100 ) (1932 68 100 ) +4 598 600 (1932 60 100 ) (2048 60 100 ) (2048 60 155.519012 ) (1932 60 155.519012 ) +4 598 599 (1932 288 155.519012 ) (1932 288 100 ) (1932 68 100 ) (1932 68 155.519012 ) +4 599 608 (1928 288 100 ) (1928 68 100 ) (1928 68 112 ) (1928 288 112 ) +4 599 606 (1928 68 112 ) (1928 68 155.519012 ) (1928 288 155.519012 ) (1928 288 112 ) +4 599 603 (1928 68 100 ) (1928 288 100 ) (1932 288 100 ) (1932 68 100 ) +4 600 812 (2048 0 100 ) (2048 0 128 ) (1932 0 128 ) (1932 0 100 ) +4 600 807 (2048 0 128 ) (2048 0 155.519012 ) (1932 0 155.519012 ) (1932 0 128 ) +4 600 604 (1932 60 100 ) (2048 60 100 ) (2048 0 100 ) (1932 0 100 ) +4 600 601 (1932 60 155.519012 ) (1932 60 100 ) (1932 12 100 ) (1932 12 155.519012 ) +4 600 602 (1932 4 100 ) (1932 0 100 ) (1932 0 155.519012 ) (1932 4 155.519012 ) +4 602 812 (1928 0 128 ) (1928 0 100 ) (1932 0 100 ) (1932 0 128 ) +4 602 807 (1932 0 155.519012 ) (1928 0 155.519012 ) (1928 0 128 ) (1932 0 128 ) +4 602 609 (1928 4 100 ) (1928 0 100 ) (1928 0 112 ) (1928 4 112 ) +4 602 607 (1928 0 112 ) (1928 0 155.519012 ) (1928 4 155.519012 ) (1928 4 112 ) +4 602 605 (1928 0 100 ) (1928 4 100 ) (1932 4 100 ) (1932 0 100 ) +4 603 608 (1928 288 96 ) (1928 68 96 ) (1928 68 100 ) (1928 288 100 ) +4 603 604 (1932 68 96 ) (2048 68 96 ) (2048 68 100 ) (1932 68 100 ) +4 604 812 (2048 0 96 ) (2048 0 100 ) (1932 0 100 ) (1932 0 96 ) +4 604 605 (1932 4 96 ) (1932 0 96 ) (1932 0 100 ) (1932 4 100 ) +4 605 812 (1932 0 100 ) (1928 0 100 ) (1928 0 96 ) (1932 0 96 ) +4 605 609 (1928 4 96 ) (1928 0 96 ) (1928 0 100 ) (1928 4 100 ) +5 606 610 (1856 72 168 ) (1856 320 168 ) (1856 320 128 ) (1856 68 128 ) (1856 68 164 ) +4 606 608 (1928 288 112 ) (1928 68 112 ) (1888 68 112 ) (1888 288 112 ) +4 607 813 (1888 0 128 ) (1856 0 128 ) (1856 0 112 ) (1888 0 112 ) +4 607 812 (1928 0 112 ) (1928 0 128 ) (1888 0 128 ) (1888 0 112 ) +4 607 807 (1928 0 128 ) (1928 0 160 ) (1856 0 160 ) (1856 0 128 ) +4 607 805 (1928 0 160 ) (1928 0 168 ) (1856 0 168 ) (1856 0 160 ) +4 607 614 (1856 0 168 ) (1856 4 164 ) (1856 4 128 ) (1856 0 128 ) +4 607 609 (1888 4 112 ) (1928 4 112 ) (1928 0 112 ) (1888 0 112 ) +4 609 812 (1928 0 96 ) (1928 0 112 ) (1888 0 112 ) (1888 0 96 ) +4 610 612 (1808 68 164 ) (1808 72 168 ) (1808 320 168 ) (1808 320 164 ) +4 610 611 (1808 320 128 ) (1808 68 128 ) (1808 68 164 ) (1808 320 164 ) +4 611 618 (1728 4 160 ) (1728 4 168 ) (1728 48 168 ) (1728 48 160 ) +4 611 616 (1728 224 128 ) (1728 64 128 ) (1728 64 168 ) (1728 224 168 ) +5 611 613 (1804 4 168 ) (1728 4 168 ) (1728 4 128 ) (1808 4 128 ) (1808 4 164 ) +4 611 612 (1808 68 164 ) (1808 320 164 ) (1804 320 168 ) (1804 72 168 ) +4 613 807 (1728 0 160 ) (1728 0 128 ) (1844 0 128 ) (1812 0 160 ) +4 613 805 (1804 0 168 ) (1728 0 168 ) (1728 0 160 ) (1812 0 160 ) +4 613 618 (1728 0 160 ) (1728 0 168 ) (1728 4 168 ) (1728 4 160 ) +4 613 614 (1844.001953 0 128 ) (1844.001953 4 128 ) (1808.001953 4 164 ) (1804.001953 0 168 ) +4 614 807 (1856 0 128 ) (1856 0 160 ) (1812 0 160 ) (1844 0 128 ) +4 614 805 (1856 0 160 ) (1856 0 168 ) (1804 0 168 ) (1812 0 160 ) +4 615 620 (1664 320 5542.669922 ) (1664 320 320 ) (1664 48 320 ) (1664 48 5542.669922 ) +4 615 617 (1664 48 5542.669922 ) (1664 48 320 ) (1728 48 320 ) (1728 48 5542.669922 ) +4 616 621 (1664 224 128 ) (1664 64 128 ) (1664 64 288 ) (1664 224 288 ) +4 617 803 (1728 0 320 ) (1728 0 5542.669922 ) (1664 0 5542.669922 ) (1664 0 320 ) +4 617 620 (1664 0 320 ) (1664 0 5542.669922 ) (1664 48 5542.669922 ) (1664 48 320 ) +4 618 805 (1728 0 160 ) (1728 0 240 ) (1726 0 240 ) (1726 0 160 ) +4 619 806 (1666 0 240 ) (1664 0 240 ) (1664 0 160 ) (1666 0 160 ) +4 619 621 (1664 0 160 ) (1664 0 240 ) (1664 48 240 ) (1664 48 160 ) +4 620 1835 (1024 0 320 ) (1024 0 5542.669922 ) (1024 320 5542.669922 ) (1024 320 320 ) +4 620 803 (1024 0 5542.669922 ) (1024 0 320 ) (1664 0 320 ) (1664 0 5542.669922 ) +4 620 626 (1408 64 320 ) (1408 0 320 ) (1296 0 320 ) (1296 64 320 ) +4 620 625 (1408 128 320 ) (1408 64 320 ) (1296 64 320 ) (1296 128 320 ) +4 620 621 (1664 256 320 ) (1664 0 320 ) (1408 0 320 ) (1408 256 320 ) +4 621 809 (1664 0 128 ) (1664 0 320 ) (1408 0 320 ) (1408 0 128 ) +4 621 626 (1408 0 320 ) (1408 64 320 ) (1408 64 128 ) (1408 0 128 ) +4 621 625 (1408 64 320 ) (1408 128 320 ) (1408 128 128 ) (1408 64 128 ) +4 622 630 (1408 256 64 ) (1408 320 64 ) (1664 320 64 ) (1664 256 64 ) +4 623 628 (1280 128 128 ) (1280 128 288 ) (1184 128 288 ) (1184 128 128 ) +4 623 624 (1184 128 128 ) (1184 128 288 ) (1184 224 288 ) (1184 224 128 ) +3 624 1840 (1024 320 128 ) (1024 128 128 ) (1024 128 160 ) +4 624 1837 (1024 320 288 ) (1024 320 128 ) (1024 128 160 ) (1024 128 288 ) +4 624 628 (1184 128 128 ) (1184 128 288 ) (1024 128 288 ) (1024 128 128 ) +4 625 626 (1296 64 128 ) (1408 64 128 ) (1408 64 320 ) (1296 64 320 ) +4 626 809 (1408 0 128 ) (1408 0 320 ) (1296 0 320 ) (1296 0 128 ) +4 626 627 (1296 64 244 ) (1296 64 128 ) (1296 0 128 ) (1296 0 244 ) +4 627 628 (1280 64 128 ) (1280 0 128 ) (1280 0 244 ) (1280 64 244 ) +4 628 1841 (1024 0 128 ) (1024 0 288 ) (1024 128 288 ) (1024 128 128 ) +4 628 810 (1024 0 288 ) (1024 0 128 ) (1280 0 128 ) (1280 0 288 ) +4 629 634 (1664 768 0 ) (2048 768 0 ) (2048 448 0 ) (1664 448 0 ) +4 629 630 (1664 448 0 ) (2048 448 0 ) (2048 448 64 ) (1664 448 64 ) +4 630 877 (1344 0 0 ) (1472 0 0 ) (1472 0 64 ) (1344 0 64 ) +4 630 869 (1472 0 0 ) (2048 0 0 ) (2048 0 64 ) (1472 0 64 ) +5 630 634 (2048 448 0 ) (2048 0 0 ) (1344 0 0 ) (1344 320 0 ) (1472 448 0 ) +4 630 631 (1344 320 0 ) (1344 0 0 ) (1344 0 64 ) (1344 320 64 ) +4 631 877 (1184 0 0 ) (1344 0 0 ) (1344 0 64 ) (1184 0 64 ) +4 631 634 (1344 448 0 ) (1344 0 0 ) (1184 0 0 ) (1184 448 0 ) +4 631 633 (1184 448 0 ) (1184 0 0 ) (1184 0 64 ) (1184 448 64 ) +4 632 1870 (1024 640 64 ) (1024 768 64 ) (1024 768 0 ) (1024 640 0 ) +4 632 634 (1024 768 0 ) (1056 768 0 ) (1056 640 0 ) (1024 640 0 ) +4 632 633 (1024 640 0 ) (1056 640 0 ) (1056 640 64 ) (1024 640 64 ) +4 633 1870 (1024 0 0 ) (1024 0 64 ) (1024 640 64 ) (1024 640 0 ) +4 633 877 (1024 0 64 ) (1024 0 0 ) (1184 0 0 ) (1184 0 64 ) +5 633 634 (1184 608 0 ) (1184 0 0 ) (1024 0 0 ) (1024 640 0 ) (1152 640 0 ) +4 634 1878 (1024 0 -1284 ) (1024 0 0 ) (1024 768 0 ) (1024 768 -1284 ) +4 634 877 (1024 0 0 ) (1024 0 -1284 ) (1472 0 -1284 ) (1472 0 0 ) +4 634 875 (1472 0 -1284 ) (1536 0 -1284 ) (1536 0 0 ) (1472 0 0 ) +4 634 874 (1536 0 -1284 ) (2048 0 -1284 ) (2048 0 0 ) (1536 0 0 ) +4 635 896 (3072 -1024 384 ) (3072 -1024 448 ) (2752 -1024 448 ) (2752 -1024 384 ) +4 635 887 (3072 -1024 464 ) (3072 -1024 5542.669922 ) (2752 -1024 5542.669922 ) (2752 -1024 464 ) +4 635 892 (3072 -1024 448 ) (3072 -1024 464 ) (2752 -1024 464 ) (2752 -1024 448 ) +4 635 752 (2752 -1024 384 ) (2752 -1024 5542.669922 ) (2752 -576 5542.669922 ) (2752 -576 384 ) +4 635 741 (2752 -448 384 ) (2752 -576 384 ) (2752 -576 1183.991089 ) (2752 -448 927.993958 ) +3 635 739 (2752 -176 384 ) (2752 -448 384 ) (2752 -448 927.993958 ) +5 635 738 (2752 -576 5542.669922 ) (2752 0 5542.669922 ) (2752 0 384 ) (2752 -176 384 ) (2752 -576 1183.991089 ) +4 635 653 (2752 -916 384 ) (2752 -524 384 ) (2796 -524 384 ) (2796 -916 384 ) +4 635 663 (2800 -1024 384 ) (2752 -1024 384 ) (2752 -916 384 ) (2800 -916 384 ) +4 635 649 (2752 -524 384 ) (2752 0 384 ) (2800 0 384 ) (2800 -524 384 ) +4 635 648 (3072 -1024 384 ) (2800 -1024 384 ) (2800 -916 384 ) (3072 -916 384 ) +4 635 644 (2816 -776 384 ) (3072 -776 384 ) (3072 -896 384 ) (2816 -896 384 ) +4 635 641 (2816 -664 384 ) (3072 -664 384 ) (3072 -776 384 ) (2816 -776 384 ) +4 635 638 (3072 -544 384 ) (3072 -664 384 ) (2816 -664 384 ) (2816 -544 384 ) +4 635 636 (2800 -524 384 ) (2800 0 384 ) (3072 0 384 ) (3072 -524 384 ) +4 636 675 (3072 -320 224 ) (3072 -524 224 ) (2800 -524 224 ) (2800 -320 224 ) +4 636 670 (2896 -320 224 ) (2800 -320 224 ) (2800 -304 224 ) (2896 -304 224 ) +4 636 668 (3072 -304 224 ) (3072 -320 224 ) (2944 -320 224 ) (2944 -304 224 ) +4 636 669 (2928 -320 224 ) (2912 -320 224 ) (2912 -304 224 ) (2928 -304 224 ) +4 636 667 (2800 0 224 ) (3072 0 224 ) (3072 -304 224 ) (2800 -304 224 ) +4 636 664 (2800 0 224 ) (2800 -524 224 ) (2800 -524 228 ) (2800 0 228 ) +4 636 649 (2800 -524 228 ) (2800 -524 384 ) (2800 0 384 ) (2800 0 228 ) +4 636 637 (2800 -524 380 ) (2800 -524 224 ) (3072 -524 224 ) (3072 -524 380 ) +4 637 675 (3072 -524 224 ) (3072 -528 224 ) (2800 -528 224 ) (2800 -524 224 ) +4 637 664 (2800 -524 224 ) (2800 -528 224 ) (2800 -528 228 ) (2800 -524 228 ) +4 637 654 (2800 -528 228 ) (2800 -528 270.665955 ) (2800 -524 270.665955 ) (2800 -524 228 ) +3 637 652 (2800 -528 376 ) (2800 -524 380 ) (2800 -524 376 ) +4 637 651 (2800 -528 270.665955 ) (2800 -528 376 ) (2800 -524 376 ) (2800 -524 270.665955 ) +4 637 639 (2800 -528 256 ) (2800 -528 224 ) (2816 -528 224 ) (2816 -528 256 ) +4 638 678 (2832 -664 224 ) (2816 -664 224 ) (2816 -544 224 ) (2832 -544 224 ) +4 638 676 (3072 -544 224 ) (3072 -664 224 ) (2848 -664 224 ) (2848 -544 224 ) +4 638 642 (2832 -664 224 ) (3072 -664 224 ) (3072 -664 272 ) (2832 -664 272 ) +4 638 641 (3072 -664 272 ) (3072 -664 384 ) (2816 -664 384 ) (2816 -664 272 ) +4 638 640 (2816 -664 228 ) (2816 -664 256 ) (2816 -544 256 ) (2816 -544 228 ) +4 639 664 (2800 -528 224 ) (2800 -544 224 ) (2800 -544 228 ) (2800 -528 228 ) +4 639 654 (2800 -544 228 ) (2800 -544 256 ) (2800 -528 256 ) (2800 -528 228 ) +4 639 640 (2816 -544 228 ) (2816 -544 256 ) (2800 -544 256 ) (2800 -544 228 ) +4 640 654 (2800 -664 228 ) (2800 -664 256 ) (2800 -544 256 ) (2800 -544 228 ) +4 641 644 (2816 -776 272 ) (3072 -776 272 ) (3072 -776 384 ) (2816 -776 384 ) +4 641 642 (3072 -776 272 ) (2832 -776 272 ) (2832 -664 272 ) (3072 -664 272 ) +4 642 693 (2832 -768 224 ) (2832 -760 224 ) (2848 -760 224 ) (2848 -768 224 ) +4 642 692 (3072 -760 224 ) (3072 -776 224 ) (2848 -776 224 ) (2848 -760 224 ) +4 642 687 (3072 -680 224 ) (3072 -760 224 ) (2832 -760 224 ) (2832 -680 224 ) +4 642 677 (2848 -680 224 ) (2832 -680 224 ) (2832 -672 224 ) (2848 -672 224 ) +4 642 676 (3072 -664 224 ) (3072 -680 224 ) (2848 -680 224 ) (2848 -664 224 ) +4 642 644 (2832 -776 224 ) (3072 -776 224 ) (3072 -776 272 ) (2832 -776 272 ) +4 643 688 (2800 -760 224 ) (2800 -680 224 ) (2816 -680 224 ) (2816 -760 224 ) +4 643 665 (2800 -680 224 ) (2800 -760 224 ) (2800 -760 228 ) (2800 -680 228 ) +4 643 658 (2800 -760 228 ) (2800 -760 270.665955 ) (2800 -680 270.665955 ) (2800 -680 228 ) +4 643 651 (2800 -760 270.665955 ) (2800 -760 272 ) (2800 -680 272 ) (2800 -680 270.665955 ) +4 644 694 (2832 -896 224 ) (2816 -896 224 ) (2816 -776 224 ) (2832 -776 224 ) +4 644 692 (3072 -776 224 ) (3072 -896 224 ) (2848 -896 224 ) (2848 -776 224 ) +4 644 645 (2816 -776 256 ) (2816 -776 228 ) (2816 -896 228 ) (2816 -896 256 ) +4 645 662 (2800 -912 228 ) (2800 -912 256 ) (2800 -776 256 ) (2800 -776 228 ) +4 645 647 (2800 -912 256 ) (2800 -912 228 ) (2816 -912 228 ) (2816 -912 256 ) +4 645 646 (2816 -896 228 ) (2816 -912 228 ) (2800 -912 228 ) (2800 -896 228 ) +4 646 666 (2800 -896 224 ) (2800 -912 224 ) (2800 -912 228 ) (2800 -896 228 ) +4 646 647 (2800 -912 228 ) (2800 -912 224 ) (2816 -912 224 ) (2816 -912 228 ) +4 647 703 (3072 -912 224 ) (3072 -916 224 ) (2800 -916 224 ) (2800 -912 224 ) +4 647 666 (2800 -912 224 ) (2800 -916 224 ) (2800 -916 228 ) (2800 -912 228 ) +4 647 662 (2800 -916 228 ) (2800 -916 270.665955 ) (2800 -912 270.665955 ) (2800 -912 228 ) +4 647 650 (2800 -916 270.665955 ) (2800 -916 380.003113 ) (2800 -912 376.003113 ) (2800 -912 270.665955 ) +4 647 648 (2800 -916 380.003082 ) (2800 -916 224 ) (3072 -916 224 ) (3072 -916 380.003113 ) +4 648 912 (3072 -1024 224 ) (3072 -1024 256 ) (2800 -1024 256 ) (2800 -1024 224 ) +4 648 896 (3072 -1024 256 ) (3072 -1024 384 ) (2800 -1024 384 ) (2800 -1024 256 ) +4 648 703 (3072 -916 224 ) (3072 -1024 224 ) (2800 -1024 224 ) (2800 -916 224 ) +4 648 666 (2800 -916 224 ) (2800 -1024 224 ) (2800 -1024 228 ) (2800 -916 228 ) +4 648 663 (2800 -1024 228 ) (2800 -1024 384 ) (2800 -916 384 ) (2800 -916 228 ) +4 649 744 (2752 -524 384 ) (2752 -192 384 ) (2752 -192 228 ) (2752 -524 228 ) +4 649 743 (2752 -192 384 ) (2752 0 384 ) (2752 0 228 ) (2752 -192 228 ) +4 649 664 (2752 -524 228 ) (2752 0 228 ) (2800 0 228 ) (2800 -524 228 ) +4 649 654 (2752 -524 228 ) (2800 -524 228 ) (2800 -524 270.665955 ) (2752 -524 254.670090 ) +3 649 652 (2800 -524 376 ) (2800 -524 380 ) (2796 -524 380 ) +4 649 651 (2800 -524 270.665955 ) (2800 -524 376 ) (2796 -524 380 ) (2796 -524 269.332977 ) +4 649 653 (2796 -524 384 ) (2752 -524 384 ) (2752 -524 254.670090 ) (2796 -524 269.332977 ) +4 650 662 (2800 -916 270.664063 ) (2796 -916 269.331085 ) (2796 -805.326904 269.331665 ) (2800 -806.659912 270.664642 ) +4 650 651 (2800 -806.657227 270.661133 ) (2796 -805.324219 269.328125 ) (2796 -915.997559 380 ) (2800 -911.997620 376 ) +3 650 653 (2796 -805.325256 269.330048 ) (2796 -916 269.330048 ) (2796 -916 380.003082 ) +4 650 663 (2800 -916 270.665955 ) (2800 -916 380.003082 ) (2796 -916 380.003082 ) (2796 -916 269.332977 ) +4 651 662 (2796 -805.326904 269.331665 ) (2796 -776 269.331818 ) (2800 -776 270.664825 ) (2800 -806.659912 270.664642 ) +4 651 654 (2796 -664 269.332428 ) (2796 -524 269.333191 ) (2800 -524 270.666168 ) (2800 -664 270.665405 ) +4 651 658 (2796 -768 269.331879 ) (2796 -672 269.332397 ) (2800 -672 270.665375 ) (2800 -768 270.664856 ) +3 651 652 (2800 -527.996094 376.003876 ) (2800 -524 376.003876 ) (2796.003906 -524 380 ) +4 651 653 (2796 -524 380 ) (2796 -524 269.330048 ) (2796 -805.325256 269.330048 ) (2796 -915.996887 380 ) +4 653 767 (2752 -912 254.670090 ) (2752 -916 254.670090 ) (2752 -916 256 ) (2752 -912 256 ) +4 653 760 (2752 -896 254.670090 ) (2752 -912 254.670090 ) (2752 -912 256 ) (2752 -896 256 ) +4 653 759 (2752 -576 256 ) (2752 -576 254.670090 ) (2752 -896 254.670090 ) (2752 -896 256 ) +4 653 752 (2752 -916 384 ) (2752 -576 384 ) (2752 -576 256 ) (2752 -916 256 ) +4 653 745 (2752 -544 384 ) (2752 -528 384 ) (2752 -528 254.670090 ) (2752 -544 254.670090 ) +4 653 744 (2752 -528 384 ) (2752 -524 384 ) (2752 -524 254.670090 ) (2752 -528 254.670090 ) +4 653 747 (2752 -576 384 ) (2752 -544 384 ) (2752 -544 254.670090 ) (2752 -576 254.670090 ) +4 653 661 (2780 -768 264 ) (2791.996094 -768 267.997589 ) (2791.996094 -776 267.997559 ) (2780 -776 264 ) +4 653 660 (2768 -768 260.001343 ) (2780 -768 264 ) (2780 -776 264 ) (2768 -776 260.001312 ) +4 653 659 (2752 -776 254.669113 ) (2752 -768 254.669144 ) (2768 -768 260.001343 ) (2768 -776 260.001312 ) +4 653 662 (2796 -916 269.331085 ) (2752 -916 254.668457 ) (2752 -776 254.669113 ) (2796 -776 269.331848 ) +4 653 657 (2780 -664 264 ) (2791.998047 -664 267.998749 ) (2791.998047 -672 267.998718 ) (2780 -672 264 ) +4 653 656 (2768 -664 260.001892 ) (2780 -664 264 ) (2780 -672 264 ) (2768 -672 260.001862 ) +4 653 655 (2752 -672 254.669586 ) (2752 -664 254.669617 ) (2768 -664 260.001892 ) (2768 -672 260.001862 ) +4 653 654 (2752 -664 254.669617 ) (2752 -524 254.670258 ) (2796 -524 269.333191 ) (2796 -664 269.332428 ) +4 653 658 (2752 -768 254.669144 ) (2752 -672 254.669586 ) (2796 -672 269.332397 ) (2796 -768 269.331879 ) +4 653 663 (2796 -916 384 ) (2752 -916 384 ) (2752 -916 254.670090 ) (2796 -916 269.332977 ) +4 654 759 (2752 -576 228 ) (2752 -664 228 ) (2752 -664 254.670090 ) (2752 -576 254.670090 ) +4 654 745 (2752 -528 228 ) (2752 -544 228 ) (2752 -544 254.670090 ) (2752 -528 254.670090 ) +4 654 744 (2752 -524 254.670090 ) (2752 -524 228 ) (2752 -528 228 ) (2752 -528 254.670090 ) +4 654 747 (2752 -544 228 ) (2752 -576 228 ) (2752 -576 254.670090 ) (2752 -544 254.670090 ) +4 654 664 (2752 -544 228 ) (2752 -524 228 ) (2800 -524 228 ) (2800 -544 228 ) +3 654 657 (2791.993408 -664 267.995911 ) (2779.998779 -664 263.998871 ) (2772 -664 256 ) +3 654 656 (2779.998779 -664 263.998871 ) (2768 -664 260 ) (2760 -664 244 ) +3 654 655 (2768 -664 260 ) (2752 -664 254.668457 ) (2752 -664 228 ) +4 655 759 (2752 -664 228 ) (2752 -672 228 ) (2752 -672 254.670090 ) (2752 -664 254.670090 ) +4 655 656 (2768 -672 260 ) (2760 -672 244 ) (2760 -664 244 ) (2768 -664 260 ) +3 655 658 (2768 -672 260 ) (2752 -672 254.668457 ) (2752 -672 228 ) +4 656 657 (2780 -672 264 ) (2772 -672 256 ) (2772 -664 256 ) (2780.001465 -664 264.001465 ) +3 656 658 (2779.998779 -672 263.998871 ) (2768 -672 260 ) (2760 -672 244 ) +3 657 658 (2791.993408 -672 267.995911 ) (2779.998779 -672 263.998871 ) (2772 -672 256 ) +4 658 759 (2752 -672 228 ) (2752 -768 228 ) (2752 -768 254.670090 ) (2752 -672 254.670090 ) +4 658 665 (2752 -768 228 ) (2752 -672 228 ) (2800 -672 228 ) (2800 -768 228 ) +3 658 661 (2791.993408 -768 267.995911 ) (2779.998779 -768 263.998871 ) (2772 -768 256 ) +3 658 660 (2779.998779 -768 263.998871 ) (2768 -768 260 ) (2760 -768 244 ) +3 658 659 (2768 -768 260 ) (2752 -768 254.668457 ) (2752 -768 228 ) +4 659 759 (2752 -768 228 ) (2752 -776 228 ) (2752 -776 254.670090 ) (2752 -768 254.670090 ) +4 659 660 (2768 -776 260 ) (2760 -776 244 ) (2760 -768 244 ) (2768 -768 260 ) +3 659 662 (2768 -776 260 ) (2752 -776 254.668457 ) (2752 -776 228 ) +4 660 661 (2780 -776 264 ) (2772 -776 256 ) (2772 -768 256 ) (2780.001465 -768 264.001465 ) +3 660 662 (2779.998779 -776 263.998871 ) (2768 -776 260 ) (2760 -776 244 ) +3 661 662 (2791.993408 -776 267.995911 ) (2779.998779 -776 263.998871 ) (2772 -776 256 ) +4 662 767 (2752 -912 228 ) (2752 -916 228 ) (2752 -916 254.670090 ) (2752 -912 254.670090 ) +4 662 760 (2752 -896 228 ) (2752 -912 228 ) (2752 -912 254.670090 ) (2752 -896 254.670090 ) +4 662 759 (2752 -776 228 ) (2752 -896 228 ) (2752 -896 254.670090 ) (2752 -776 254.670090 ) +4 662 666 (2752 -916 228 ) (2752 -896 228 ) (2800 -896 228 ) (2800 -916 228 ) +4 662 663 (2752 -916 228 ) (2800 -916 228 ) (2800 -916 270.665955 ) (2752 -916 254.670090 ) +4 663 912 (2752 -1024 256 ) (2752 -1024 228 ) (2800 -1024 228 ) (2800 -1024 256 ) +4 663 896 (2800 -1024 384 ) (2752 -1024 384 ) (2752 -1024 256 ) (2800 -1024 256 ) +4 663 773 (2752 -1024 228 ) (2752 -1024 256 ) (2752 -960 256 ) (2752 -960 228 ) +4 663 767 (2752 -960 256 ) (2752 -916 256 ) (2752 -916 228 ) (2752 -960 228 ) +4 663 752 (2752 -1024 256 ) (2752 -1024 384 ) (2752 -916 384 ) (2752 -916 256 ) +4 663 666 (2752 -1024 228 ) (2752 -916 228 ) (2800 -916 228 ) (2800 -1024 228 ) +4 664 745 (2752 -544 228 ) (2752 -528 228 ) (2752 -528 224 ) (2752 -544 224 ) +4 664 744 (2752 -528 228 ) (2752 -192 228 ) (2752 -192 224 ) (2752 -528 224 ) +4 664 743 (2752 -192 228 ) (2752 0 228 ) (2752 0 224 ) (2752 -192 224 ) +4 664 707 (2752 -528 224 ) (2752 -320 224 ) (2760 -320 224 ) (2760 -528 224 ) +4 664 706 (2752 -304 224 ) (2752 -176 224 ) (2760 -176 224 ) (2760 -304 224 ) +4 664 704 (2752 -120 224 ) (2752 0 224 ) (2760 0 224 ) (2760 -120 224 ) +4 664 705 (2752 -160 224 ) (2752 -136 224 ) (2760 -136 224 ) (2760 -160 224 ) +4 664 675 (2800 -320 224 ) (2800 -528 224 ) (2760 -528 224 ) (2760 -320 224 ) +4 664 673 (2768 -176 224 ) (2768 -304 224 ) (2760 -304 224 ) (2760 -176 224 ) +4 664 672 (2768 -136 224 ) (2768 -160 224 ) (2760 -160 224 ) (2760 -136 224 ) +4 664 671 (2760 0 224 ) (2768 0 224 ) (2768 -120 224 ) (2760 -120 224 ) +4 664 670 (2800 -304 224 ) (2800 -320 224 ) (2768 -320 224 ) (2768 -304 224 ) +4 664 667 (2768 0 224 ) (2800 0 224 ) (2800 -304 224 ) (2768 -304 224 ) +4 665 759 (2752 -768 228 ) (2752 -672 228 ) (2752 -672 224 ) (2752 -768 224 ) +4 665 724 (2752 -768 224 ) (2752 -672 224 ) (2756 -672 224 ) (2756 -768 224 ) +4 665 719 (2756 -672 224 ) (2760 -672 224 ) (2760 -768 224 ) (2756 -768 224 ) +4 665 697 (2796 -768 224 ) (2760 -768 224 ) (2760 -760 224 ) (2796 -760 224 ) +4 665 695 (2800 -760 224 ) (2800 -768 224 ) (2796 -768 224 ) (2796 -760 224 ) +4 665 688 (2800 -680 224 ) (2800 -760 224 ) (2760 -760 224 ) (2760 -680 224 ) +4 665 683 (2760 -672 224 ) (2796 -672 224 ) (2796 -680 224 ) (2760 -680 224 ) +4 665 680 (2796 -672 224 ) (2800 -672 224 ) (2800 -680 224 ) (2796 -680 224 ) +4 666 912 (2752 -1024 228 ) (2752 -1024 224 ) (2800 -1024 224 ) (2800 -1024 228 ) +4 666 773 (2752 -1024 224 ) (2752 -1024 228 ) (2752 -960 228 ) (2752 -960 224 ) +4 666 767 (2752 -960 228 ) (2752 -912 228 ) (2752 -912 224 ) (2752 -960 224 ) +4 666 760 (2752 -912 228 ) (2752 -896 228 ) (2752 -896 224 ) (2752 -912 224 ) +4 666 732 (2752 -1024 224 ) (2752 -912 224 ) (2756 -912 224 ) (2756 -1024 224 ) +4 666 723 (2760 -912 224 ) (2760 -1024 224 ) (2756 -1024 224 ) (2756 -912 224 ) +4 666 703 (2800 -912 224 ) (2800 -1024 224 ) (2760 -1024 224 ) (2760 -912 224 ) +4 667 674 (2768 -304 192 ) (2768 0 192 ) (3072 0 192 ) (3072 -304 192 ) +4 667 673 (2768 -176 192 ) (2768 -304 192 ) (2768 -304 224 ) (2768 -176 224 ) +4 667 672 (2768 -136 192 ) (2768 -160 192 ) (2768 -160 224 ) (2768 -136 224 ) +4 667 671 (2768 0 192 ) (2768 -120 192 ) (2768 -120 224 ) (2768 0 224 ) +4 667 670 (2768 -304 224 ) (2768 -304 192 ) (2896 -304 192 ) (2896 -304 224 ) +4 667 668 (2944 -304 192 ) (3072 -304 192 ) (3072 -304 224 ) (2944 -304 224 ) +4 667 669 (2912 -304 192 ) (2928 -304 192 ) (2928 -304 224 ) (2912 -304 224 ) +4 668 675 (2944 -320 192 ) (3072 -320 192 ) (3072 -320 224 ) (2944 -320 224 ) +4 668 674 (2944 -312 192 ) (2944 -304 192 ) (3072 -304 192 ) (3072 -312 192 ) +4 669 675 (2912 -320 192 ) (2928 -320 192 ) (2928 -320 224 ) (2912 -320 224 ) +4 669 674 (2912 -312 192 ) (2912 -304 192 ) (2928 -304 192 ) (2928 -312 192 ) +4 670 675 (2768 -320 192 ) (2896 -320 192 ) (2896 -320 224 ) (2768 -320 224 ) +4 670 674 (2768 -312 192 ) (2768 -304 192 ) (2896 -304 192 ) (2896 -312 192 ) +4 671 704 (2760 -120 224 ) (2760 0 224 ) (2760 0 192 ) (2760 -120 192 ) +4 671 674 (2760 -120 192 ) (2760 0 192 ) (2768 0 192 ) (2768 -120 192 ) +4 672 705 (2760 -160 224 ) (2760 -136 224 ) (2760 -136 192 ) (2760 -160 192 ) +4 672 674 (2760 -160 192 ) (2760 -136 192 ) (2768 -136 192 ) (2768 -160 192 ) +4 673 706 (2760 -304 224 ) (2760 -176 224 ) (2760 -176 192 ) (2760 -304 192 ) +4 673 674 (2760 -304 192 ) (2760 -176 192 ) (2768 -176 192 ) (2768 -304 192 ) +4 674 733 (2760 -312 96 ) (2760 0 96 ) (3072 0 96 ) (3072 -312 96 ) +4 675 708 (2760 -320 96 ) (2760 -528 96 ) (2760 -528 192 ) (2760 -320 192 ) +4 675 707 (2760 -528 192 ) (2760 -528 224 ) (2760 -320 224 ) (2760 -320 192 ) +4 676 734 (2848 -544 96 ) (3072 -544 96 ) (3072 -680 96 ) (2848 -680 96 ) +4 676 689 (2848 -680 96 ) (3072 -680 96 ) (3072 -680 212 ) (2848 -680 212 ) +4 676 687 (3072 -680 212 ) (3072 -680 224 ) (2848 -680 224 ) (2848 -680 212 ) +4 676 677 (2848 -672 96 ) (2848 -680 96 ) (2848 -680 224 ) (2848 -672 224 ) +4 677 734 (2848 -672 96 ) (2848 -680 96 ) (2832 -680 96 ) (2832 -672 96 ) +4 677 689 (2832 -680 96 ) (2848 -680 96 ) (2848 -680 212 ) (2832 -680 212 ) +4 677 687 (2848 -680 212 ) (2848 -680 224 ) (2832 -680 224 ) (2832 -680 212 ) +4 678 735 (2800 -544 96 ) (2832 -544 96 ) (2832 -664 96 ) (2800 -664 96 ) +4 678 684 (2800 -544 128 ) (2800 -544 96 ) (2800 -664 96 ) (2800 -664 128 ) +4 678 679 (2800 -544 224 ) (2800 -544 128 ) (2800 -664 128 ) (2800 -664 224 ) +4 679 684 (2796 -544 128 ) (2800 -544 128 ) (2800 -664 128 ) (2796 -664 128 ) +4 679 681 (2796 -544 224 ) (2796 -544 128 ) (2796 -664 128 ) (2796 -664 224 ) +4 680 691 (2796 -680 128 ) (2800 -680 128 ) (2800 -680 212 ) (2796 -680 212 ) +4 680 688 (2800 -680 212 ) (2800 -680 224 ) (2796 -680 224 ) (2796 -680 212 ) +4 680 685 (2800 -668 128 ) (2800 -672 128 ) (2796 -672 128 ) (2796 -668 128 ) +4 680 686 (2800 -672 128 ) (2800 -680 128 ) (2796 -680 128 ) (2796 -672 128 ) +4 680 683 (2796 -668 128 ) (2796 -680 128 ) (2796 -680 224 ) (2796 -668 224 ) +4 681 709 (2760 -664 224 ) (2760 -548 224 ) (2760 -548 128 ) (2760 -664 128 ) +4 681 684 (2760 -544 128 ) (2796 -544 128 ) (2796 -664 128 ) (2760 -664 128 ) +4 681 682 (2760 -664 224 ) (2760 -664 128 ) (2796 -664 128 ) (2796 -664 224 ) +4 682 683 (2760 -666 224 ) (2760 -666 128 ) (2796 -666 128 ) (2796 -666 224 ) +4 683 719 (2760 -680 128 ) (2760 -680 224 ) (2760 -672 224 ) (2760 -672 128 ) +4 683 711 (2760 -672 224 ) (2760 -668 224 ) (2760 -668 128 ) (2760 -672 128 ) +4 683 691 (2760 -680 212 ) (2760 -680 128 ) (2796 -680 128 ) (2796 -680 212 ) +4 683 688 (2760 -680 224 ) (2760 -680 212 ) (2796 -680 212 ) (2796 -680 224 ) +4 683 685 (2796 -668 128 ) (2796 -672 128 ) (2760 -672 128 ) (2760 -668 128 ) +4 683 686 (2796 -672 128 ) (2796 -680 128 ) (2760 -680 128 ) (2760 -672 128 ) +4 684 735 (2760 -664 96 ) (2760 -544 96 ) (2800 -544 96 ) (2800 -664 96 ) +3 685 712 (2760 -672 124 ) (2760 -672 128 ) (2760 -668 128 ) +4 685 686 (2800 -672 124 ) (2800 -672 128 ) (2760 -672 128 ) (2760 -672 124 ) +4 686 719 (2760 -672 96 ) (2760 -680 96 ) (2760 -680 128 ) (2760 -672 128 ) +4 686 691 (2760 -680 128 ) (2760 -680 96 ) (2800 -680 96 ) (2800 -680 128 ) +4 687 693 (2832 -760 212 ) (2848 -760 212 ) (2848 -760 224 ) (2832 -760 224 ) +4 687 692 (2848 -760 212 ) (3072 -760 212 ) (3072 -760 224 ) (2848 -760 224 ) +4 687 689 (3072 -760 212 ) (2832 -760 212 ) (2832 -680 212 ) (3072 -680 212 ) +4 688 719 (2760 -760 212 ) (2760 -760 224 ) (2760 -680 224 ) (2760 -680 212 ) +4 688 697 (2760 -760 224 ) (2760 -760 212 ) (2796 -760 212 ) (2796 -760 224 ) +4 688 695 (2796 -760 212 ) (2800 -760 212 ) (2800 -760 224 ) (2796 -760 224 ) +4 688 691 (2816 -760 212 ) (2760 -760 212 ) (2760 -680 212 ) (2816 -680 212 ) +4 689 734 (2832 -680 96 ) (3072 -680 96 ) (3072 -760 96 ) (2832 -760 96 ) +4 689 693 (2832 -760 96 ) (2848 -760 96 ) (2848 -760 212 ) (2832 -760 212 ) +4 689 692 (2848 -760 96 ) (3072 -760 96 ) (3072 -760 212 ) (2848 -760 212 ) +4 689 690 (2832 -752 212 ) (2832 -688 212 ) (2832 -688 96 ) (2832 -752 96 ) +4 690 691 (2816 -752 212 ) (2816 -688 212 ) (2816 -688 96 ) (2816 -752 96 ) +4 691 719 (2760 -680 96 ) (2760 -760 96 ) (2760 -760 212 ) (2760 -680 212 ) +4 691 700 (2760 -760 128 ) (2760 -760 96 ) (2800 -760 96 ) (2800 -760 128 ) +4 691 697 (2760 -760 212 ) (2760 -760 128 ) (2796 -760 128 ) (2796 -760 212 ) +4 691 695 (2796 -760 128 ) (2800 -760 128 ) (2800 -760 212 ) (2796 -760 212 ) +4 692 736 (3072 -768 96 ) (3072 -896 96 ) (2848 -896 96 ) (2848 -768 96 ) +4 692 734 (2848 -760 96 ) (3072 -760 96 ) (3072 -768 96 ) (2848 -768 96 ) +4 692 693 (2848 -760 224 ) (2848 -760 96 ) (2848 -768 96 ) (2848 -768 224 ) +4 693 734 (2832 -760 96 ) (2848 -760 96 ) (2848 -768 96 ) (2832 -768 96 ) +4 694 736 (2832 -776 96 ) (2832 -896 96 ) (2800 -896 96 ) (2800 -776 96 ) +4 694 702 (2800 -776 96 ) (2800 -896 96 ) (2800 -896 128 ) (2800 -776 128 ) +4 694 696 (2800 -896 128 ) (2800 -896 224 ) (2800 -776 224 ) (2800 -776 128 ) +4 695 701 (2800 -768 128 ) (2800 -772 128 ) (2796 -772 128 ) (2796 -768 128 ) +4 695 700 (2796 -760 128 ) (2800 -760 128 ) (2800 -768 128 ) (2796 -768 128 ) +4 695 697 (2796 -760 224 ) (2796 -760 128 ) (2796 -772 128 ) (2796 -772 224 ) +4 696 702 (2800 -776 128 ) (2800 -896 128 ) (2796 -896 128 ) (2796 -776 128 ) +4 696 699 (2796 -776 128 ) (2796 -896 128 ) (2796 -896 224 ) (2796 -776 224 ) +4 697 720 (2760 -772 224 ) (2760 -768 224 ) (2760 -768 128 ) (2760 -772 128 ) +4 697 719 (2760 -768 224 ) (2760 -760 224 ) (2760 -760 128 ) (2760 -768 128 ) +4 697 701 (2796 -768 128 ) (2796 -772 128 ) (2760 -772 128 ) (2760 -768 128 ) +4 697 700 (2760 -760 128 ) (2796 -760 128 ) (2796 -768 128 ) (2760 -768 128 ) +4 697 698 (2760 -774 224 ) (2760 -774 128 ) (2796 -774 128 ) (2796 -774 224 ) +4 698 699 (2760 -776 224 ) (2760 -776 128 ) (2796 -776 128 ) (2796 -776 224 ) +4 699 721 (2760 -892 224 ) (2760 -776 224 ) (2760 -776 128 ) (2760 -892 128 ) +4 699 702 (2796 -776 128 ) (2796 -896 128 ) (2760 -896 128 ) (2760 -776 128 ) +4 700 719 (2760 -760 96 ) (2760 -768 96 ) (2760 -768 128 ) (2760 -760 128 ) +4 700 701 (2800 -768 124 ) (2800 -768 128 ) (2760 -768 128 ) (2760 -768 124 ) +3 701 720 (2760 -772 128 ) (2760 -768 128 ) (2760 -768 124 ) +4 702 736 (2760 -896 96 ) (2760 -776 96 ) (2800 -776 96 ) (2800 -896 96 ) +4 703 912 (3072 -1024 96 ) (3072 -1024 224 ) (2760 -1024 224 ) (2760 -1024 96 ) +4 703 723 (2760 -912 96 ) (2760 -1024 96 ) (2760 -1024 224 ) (2760 -912 224 ) +4 704 743 (2752 -120 224 ) (2752 0 224 ) (2752 0 192 ) (2752 -120 192 ) +4 705 743 (2752 -160 224 ) (2752 -136 224 ) (2752 -136 192 ) (2752 -160 192 ) +4 706 744 (2752 -304 224 ) (2752 -192 224 ) (2752 -192 192 ) (2752 -304 192 ) +4 706 743 (2752 -192 224 ) (2752 -176 224 ) (2752 -176 192 ) (2752 -192 192 ) +4 707 744 (2752 -528 224 ) (2752 -320 224 ) (2752 -320 192 ) (2752 -528 192 ) +4 707 708 (2752 -528 192 ) (2752 -320 192 ) (2760 -320 192 ) (2760 -528 192 ) +4 708 744 (2752 -320 96 ) (2752 -528 96 ) (2752 -528 192 ) (2752 -320 192 ) +4 709 710 (2758 -548 224 ) (2758 -548 128 ) (2758 -664 128 ) (2758 -664 224 ) +4 710 718 (2756 -600 128 ) (2756 -616 128 ) (2756 -616 224 ) (2756 -600 224 ) +4 710 716 (2756 -548 128 ) (2756 -600 128 ) (2756 -600 224 ) (2756 -548 224 ) +4 710 714 (2756 -616 128 ) (2756 -664 128 ) (2756 -664 132 ) (2756 -616 180 ) +4 710 713 (2756 -664 132 ) (2756 -664 224 ) (2756 -616 224 ) (2756 -616 180 ) +4 711 719 (2760 -672 128 ) (2760 -672 224 ) (2756 -672 224 ) (2756 -672 128 ) +4 711 713 (2756 -668 128 ) (2756 -672 128 ) (2756 -672 224 ) (2756 -668 224 ) +4 711 712 (2760 -672 128 ) (2756 -672 128 ) (2756 -668 128 ) (2760 -668 128 ) +4 712 719 (2760 -672 124 ) (2760 -672 128 ) (2756 -672 128 ) (2756 -672 124 ) +3 712 713 (2756 -672 124 ) (2756 -672 128 ) (2756 -668 128 ) +4 713 759 (2752 -672 224 ) (2752 -612 224 ) (2752 -612 184 ) (2752 -672 124 ) +4 713 724 (2756 -672 124 ) (2756 -672 224 ) (2752 -672 224 ) (2752 -672 124 ) +4 713 718 (2756 -616.001953 224 ) (2756 -616.001953 179.998047 ) (2752 -612.001953 183.998047 ) (2752 -612.001953 224 ) +4 713 714 (2752 -612 184 ) (2756 -616 180 ) (2756 -668 128 ) (2752 -672 124 ) +3 714 759 (2752 -612 184 ) (2752 -612 124 ) (2752 -672 124 ) +4 714 718 (2756 -616.001953 179.998047 ) (2756 -616.001953 128 ) (2752 -612.001953 124 ) (2752 -612.001953 183.998047 ) +4 715 759 (2752 -612 120 ) (2752 -612 104 ) (2752 -664 104 ) (2752 -664 120 ) +4 716 759 (2752 -604 224 ) (2752 -576 224 ) (2752 -576 124 ) (2752 -604 124 ) +4 716 747 (2752 -576 224 ) (2752 -544 224 ) (2752 -544 124 ) (2752 -576 124 ) +4 716 718 (2756 -600 128 ) (2756 -600 224 ) (2752 -604 224 ) (2752 -604 124 ) +4 717 759 (2752 -604 104 ) (2752 -604 120 ) (2752 -576 120 ) (2752 -576 104 ) +4 717 747 (2752 -576 120 ) (2752 -552 120 ) (2752 -552 104 ) (2752 -576 104 ) +4 718 759 (2752 -612 224 ) (2752 -604 224 ) (2752 -604 124 ) (2752 -612 124 ) +4 719 724 (2756 -672 224 ) (2756 -672 96 ) (2756 -768 96 ) (2756 -768 224 ) +4 719 720 (2756 -768 224 ) (2756 -768 124 ) (2760 -768 124 ) (2760 -768 224 ) +3 720 728 (2756 -772 128 ) (2756 -768 128 ) (2756 -768 124 ) +4 720 727 (2756 -772 128 ) (2756 -772 224 ) (2756 -768 224 ) (2756 -768 128 ) +4 721 722 (2758 -776 224 ) (2758 -776 128 ) (2758 -892 128 ) (2758 -892 224 ) +4 722 731 (2756 -892 224 ) (2756 -884 224 ) (2756 -884 128 ) (2756 -892 128 ) +4 722 729 (2756 -884 224 ) (2756 -824 224 ) (2756 -824 128 ) (2756 -884 128 ) +4 722 727 (2756 -780 224 ) (2756 -776 224 ) (2756 -776 128 ) (2756 -780 128 ) +4 722 726 (2756 -824 224 ) (2756 -780 224 ) (2756 -780 128 ) (2756 -824 128 ) +4 723 912 (2760 -1024 224 ) (2756 -1024 224 ) (2756 -1024 96 ) (2760 -1024 96 ) +4 723 732 (2756 -912 96 ) (2756 -1024 96 ) (2756 -1024 224 ) (2756 -912 224 ) +4 724 759 (2752 -768 224 ) (2752 -672 224 ) (2752 -672 96 ) (2752 -768 96 ) +3 724 728 (2756 -768 124 ) (2756 -768 128 ) (2752 -768 124 ) +4 724 727 (2756 -768 128 ) (2756 -768 224 ) (2752 -768 224 ) (2752 -768 124 ) +4 725 759 (2752 -776 104 ) (2752 -828 104 ) (2752 -828 120 ) (2752 -776 120 ) +4 726 759 (2752 -828 224 ) (2752 -776 224 ) (2752 -776 124 ) (2752 -828 124 ) +4 726 729 (2756 -824 128 ) (2756 -824 224 ) (2752 -828 224 ) (2752 -828 124 ) +4 726 727 (2756 -780 224 ) (2756 -780 128 ) (2752 -776 124 ) (2752 -776 224 ) +4 727 759 (2752 -776 224 ) (2752 -768 224 ) (2752 -768 124 ) (2752 -776 124 ) +3 727 728 (2752 -768 124 ) (2756 -768 128 ) (2756 -772 128 ) +4 729 759 (2752 -888 224 ) (2752 -828 224 ) (2752 -828 124 ) (2752 -888 124 ) +4 729 731 (2756 -883.998047 128 ) (2756 -883.998047 224 ) (2752 -887.998047 224 ) (2752 -887.998047 124 ) +4 730 759 (2752 -836 104 ) (2752 -888 104 ) (2752 -888 120 ) (2752 -836 120 ) +4 731 759 (2752 -896 224 ) (2752 -888 224 ) (2752 -888 124 ) (2752 -896 124 ) +4 732 912 (2756 -1024 224 ) (2752 -1024 224 ) (2752 -1024 96 ) (2756 -1024 96 ) +4 732 773 (2752 -1024 96 ) (2752 -1024 224 ) (2752 -960 224 ) (2752 -960 96 ) +4 732 769 (2752 -916 96 ) (2752 -960 96 ) (2752 -960 201.500000 ) (2752 -916 201.500000 ) +4 732 768 (2752 -912 201.500000 ) (2752 -912 96 ) (2752 -916 96 ) (2752 -916 201.500000 ) +4 732 767 (2752 -960 224 ) (2752 -912 224 ) (2752 -912 201.500000 ) (2752 -960 201.500000 ) +4 733 737 (2752 -320 64 ) (2752 0 64 ) (3072 0 64 ) (3072 -320 64 ) +4 734 737 (2832 -528 64 ) (3072 -528 64 ) (3072 -768 64 ) (2832 -768 64 ) +4 734 736 (2832 -768 64 ) (3072 -768 64 ) (3072 -768 96 ) (2832 -768 96 ) +4 734 735 (2832 -528 96 ) (2832 -528 64 ) (2832 -672 64 ) (2832 -672 96 ) +4 735 737 (2752 -672 64 ) (2752 -528 64 ) (2832 -528 64 ) (2832 -672 64 ) +4 736 766 (2752 -912 96 ) (2752 -896 96 ) (2752 -896 64 ) (2752 -912 64 ) +4 736 737 (2752 -912 64 ) (2752 -768 64 ) (3072 -768 64 ) (3072 -912 64 ) +4 737 938 (3072 -1024 -1284 ) (3072 -1024 0 ) (2752 -1024 0 ) (2752 -1024 -1284 ) +4 737 932 (3072 -1024 0 ) (3072 -1024 64 ) (2752 -1024 64 ) (2752 -1024 0 ) +4 737 802 (2752 -1024 -1284 ) (2752 -1024 0 ) (2752 0 0 ) (2752 0 -1284 ) +4 737 800 (2752 -1024 0 ) (2752 -1024 64 ) (2752 -512 64 ) (2752 -512 0 ) +4 737 799 (2752 -512 64 ) (2752 -256 64 ) (2752 -256 0 ) (2752 -512 0 ) +4 737 797 (2752 -256 64 ) (2752 0 64 ) (2752 0 0 ) (2752 -256 0 ) +5 738 817 (2048 -128 384 ) (2048 -176 384 ) (2048 -256 543.998169 ) (2048 -256 5542.669922 ) (2048 -128 5542.669922 ) +4 738 818 (2048 -256 543.998169 ) (2048 -576 1183.991089 ) (2048 -576 5542.669922 ) (2048 -256 5542.669922 ) +4 738 803 (2048 0 5542.669922 ) (2048 0 384 ) (2048 -128 384 ) (2048 -128 5542.669922 ) +4 738 752 (2752 -576 1183.991089 ) (2752 -576 5542.669922 ) (2048 -576 5542.669922 ) (2048 -576 1183.991211 ) +4 738 743 (2048 -176 384 ) (2048 0 384 ) (2752 0 384 ) (2752 -176 384 ) +4 738 742 (2048.007568 -576 1183.990601 ) (2048 -576 1183.990601 ) (2048 -448 927.993286 ) (2176.006592 -448 927.993286 ) +4 738 741 (2752 -448 927.993286 ) (2752 -576 1183.990601 ) (2048.007568 -576 1183.990601 ) (2176.006592 -448 927.993286 ) +4 738 740 (2368 -256 543.997314 ) (2368 -448 927.993286 ) (2048 -448 927.993286 ) (2048 -256 543.997192 ) +5 738 739 (2448.003662 -176 384 ) (2752 -176 384 ) (2752 -448 927.993286 ) (2368 -448 927.993286 ) (2368 -256.004852 544.006958 ) +4 739 744 (2752 -192 384 ) (2752 -448 384 ) (2736 -448 384 ) (2736 -192 384 ) +4 739 746 (2736 -448 384 ) (2448.003662 -448 384 ) (2448.003662 -192 384 ) (2736 -192 384 ) +4 739 743 (2448.003662 -176 384 ) (2752 -176 384 ) (2752 -192 384 ) (2448.003662 -192 384 ) +5 739 741 (2448.003662 -448 384 ) (2752 -448 384 ) (2752 -448 927.994080 ) (2368 -448 927.994080 ) (2368 -448 544.007080 ) +3 739 740 (2368 -448 544.006958 ) (2368 -448 927.992188 ) (2368 -256.005280 544.006958 ) +4 740 827 (2048 -384 384 ) (2048 -448 384 ) (2048 -448 448 ) (2048 -384 448 ) +4 740 826 (2048 -336 384 ) (2048 -384 384 ) (2048 -384 448 ) (2048 -368 448 ) +4 740 821 (2048 -448 448 ) (2048 -448 544 ) (2048 -416 544 ) (2048 -368 448 ) +3 740 820 (2048 -448 544 ) (2048 -448 608 ) (2048 -416 544 ) +5 740 818 (2048 -256 384 ) (2048 -336 384 ) (2048 -448 608 ) (2048 -448 927.993958 ) (2048 -256 543.998169 ) +5 740 742 (2368 -448 544 ) (2368 -448 544.007019 ) (2176.006348 -448 927.994080 ) (2048 -448 927.994080 ) (2048 -448 544 ) +3 740 741 (2368 -448 544.007019 ) (2368 -448 927.994080 ) (2176.006348 -448 927.994080 ) +3 741 754 (2384.010498 -576 511.985901 ) (2448.003662 -576 384 ) (2479.998047 -576 384 ) +5 741 752 (2752 -576 384 ) (2752 -576 1183.991089 ) (2048.007324 -576 1183.991211 ) (2384.010498 -576 511.985901 ) (2479.998047 -576 384 ) +4 741 745 (2752 -528 384 ) (2752 -544 384 ) (2736 -544 384 ) (2736 -528 384 ) +4 741 744 (2736 -448 384 ) (2752 -448 384 ) (2752 -528 384 ) (2736 -528 384 ) +4 741 746 (2448.003662 -544 384 ) (2448.003662 -448 384 ) (2736 -448 384 ) (2736 -544 384 ) +4 741 747 (2752 -576 384 ) (2448.003662 -576 384 ) (2448.003662 -544 384 ) (2752 -544 384 ) +5 741 742 (2048.007080 -576 1183.993652 ) (2176.005859 -448 927.996094 ) (2368.004150 -448 544 ) (2448.004395 -528 384 ) (2448.004395 -576 384 ) +4 742 828 (2048 -528 384 ) (2048 -576 384 ) (2048 -576 448 ) (2048 -496 448 ) +4 742 824 (2048 -576 448 ) (2048 -576 544 ) (2048 -448 544 ) (2048 -496 448 ) +4 742 823 (2048 -576 544 ) (2048 -576 864 ) (2048 -448 608 ) (2048 -448 544 ) +4 742 818 (2048 -576 864 ) (2048 -576 1183.991089 ) (2048 -448 927.993958 ) (2048 -448 608 ) +4 742 754 (2048 -576 960.009155 ) (2048 -576 384 ) (2448.003662 -576 384 ) (2384.010498 -576 511.985901 ) +4 742 752 (2048.007324 -576 1183.991211 ) (2048 -576 1183.991211 ) (2048 -576 960.009155 ) (2384.010498 -576 511.985901 ) +4 742 751 (2304 -576 384 ) (2048 -576 384 ) (2048 -528 384 ) (2304 -528 384 ) +4 742 748 (2432 -576 384 ) (2304 -576 384 ) (2304 -528 384 ) (2432 -528 384 ) +4 742 746 (2432 -544 384 ) (2432 -528 384 ) (2448.003662 -528 384 ) (2448.003662 -544 384 ) +4 742 747 (2448.003662 -576 384 ) (2432 -576 384 ) (2432 -544 384 ) (2448.003662 -544 384 ) +4 743 838 (2048 -128 96 ) (2048 -192 96 ) (2048 -192 320 ) (2048 -128 320 ) +4 743 832 (2048 -192 320 ) (2048 -192 384 ) (2048 -128 384 ) (2048 -128 320 ) +4 743 812 (2048 0 128 ) (2048 0 96 ) (2048 -128 96 ) (2048 -128 128 ) +4 743 808 (2048 -32 128 ) (2048 -128 128 ) (2048 -128 320 ) (2048 -32 320 ) +4 743 807 (2048 0 160 ) (2048 0 128 ) (2048 -32 128 ) (2048 -32 160 ) +4 743 805 (2048 0 240 ) (2048 0 160 ) (2048 -32 160 ) (2048 -32 240 ) +4 743 804 (2048 0 320 ) (2048 0 240 ) (2048 -32 240 ) (2048 -32 320 ) +4 743 803 (2048 0 384 ) (2048 0 320 ) (2048 -128 320 ) (2048 -128 384 ) +4 743 749 (2048 -192 320 ) (2048 -192 96 ) (2208 -192 96 ) (2208 -192 320 ) +4 743 744 (2752 -192 96 ) (2752 -192 384 ) (2736 -192 384 ) (2736 -192 96 ) +4 743 746 (2736 -192 384 ) (2432 -192 384 ) (2432 -192 96 ) (2736 -192 96 ) +4 744 745 (2736 -528 384 ) (2736 -528 224 ) (2752 -528 224 ) (2752 -528 384 ) +4 744 746 (2736 -192 384 ) (2736 -192 96 ) (2736 -528 96 ) (2736 -528 384 ) +4 745 747 (2752 -544 224 ) (2752 -544 384 ) (2736 -544 384 ) (2736 -544 224 ) +4 745 746 (2736 -544 224 ) (2736 -544 384 ) (2736 -528 384 ) (2736 -528 224 ) +4 746 748 (2432 -512 256 ) (2432 -544 256 ) (2432 -544 384 ) (2432 -512 384 ) +4 746 747 (2432 -544 384 ) (2432 -544 96 ) (2736 -544 96 ) (2736 -544 384 ) +4 747 761 (2736 -576 256 ) (2496 -576 256 ) (2496 -576 96 ) (2736 -576 96 ) +4 747 759 (2752 -576 96 ) (2752 -576 256 ) (2736 -576 256 ) (2736 -576 96 ) +5 747 754 (2479.998047 -576 384 ) (2432 -576 384 ) (2432 -576 256 ) (2528 -576 256 ) (2528 -576 319.996246 ) +3 747 753 (2528 -576 256 ) (2575.996338 -576 256 ) (2528 -576 319.996246 ) +4 747 752 (2752 -576 256 ) (2752 -576 384 ) (2479.998047 -576 384 ) (2575.996338 -576 256 ) +4 747 748 (2432 -576 256 ) (2432 -576 384 ) (2432 -544 384 ) (2432 -544 256 ) +4 748 754 (2432 -576 384 ) (2304 -576 384 ) (2304 -576 256 ) (2432 -576 256 ) +4 748 751 (2304 -576 320 ) (2304 -576 384 ) (2304 -512 384 ) (2304 -512 320 ) +4 749 840 (2048 -256 96 ) (2048 -256 320 ) (2048 -192 320 ) (2048 -192 96 ) +4 749 750 (2208 -256 320 ) (2048 -256 320 ) (2048 -256 96 ) (2208 -256 96 ) +4 750 841 (2048 -512 96 ) (2048 -512 320 ) (2048 -256 320 ) (2048 -256 96 ) +4 751 833 (2048 -576 320 ) (2048 -576 384 ) (2048 -512 384 ) (2048 -512 320 ) +4 751 754 (2304 -576 320 ) (2304 -576 384 ) (2048 -576 384 ) (2048 -576 320 ) +3 752 899 (2528 -1024 448 ) (2432 -1024 448 ) (2528 -1024 319.996399 ) +5 752 896 (2752 -1024 256 ) (2752 -1024 448 ) (2528 -1024 448 ) (2528 -1024 319.996399 ) (2575.996338 -1024 256 ) +5 752 887 (2752 -1024 464 ) (2752 -1024 5542.669922 ) (2048 -1024 5542.669922 ) (2048 -1024 960.009277 ) (2420 -1024 464 ) +4 752 892 (2752 -1024 448 ) (2752 -1024 464 ) (2420 -1024 464 ) (2432 -1024 448 ) +3 752 823 (2048 -1024 960.009033 ) (2048 -1024 1760 ) (2048 -624.004639 960.009277 ) +5 752 818 (2048 -1024 1760 ) (2048 -1024 5542.669922 ) (2048 -576 5542.669922 ) (2048 -576 960.009277 ) (2048 -624.004639 960.009277 ) +4 752 773 (2752 -960 256 ) (2752 -1024 256 ) (2575.996338 -1024 256 ) (2575.996338 -960 256 ) +4 752 767 (2752 -912 256 ) (2752 -960 256 ) (2575.996338 -960 256 ) (2575.996338 -912 256 ) +4 752 762 (2736 -640 256 ) (2736 -912 256 ) (2575.996338 -912 256 ) (2575.996338 -640 256 ) +4 752 761 (2575.996338 -576 256 ) (2736 -576 256 ) (2736 -640 256 ) (2575.996338 -640 256 ) +4 752 760 (2752 -896 256 ) (2752 -912 256 ) (2736 -912 256 ) (2736 -896 256 ) +4 752 759 (2736 -576 256 ) (2752 -576 256 ) (2752 -896 256 ) (2736 -896 256 ) +4 752 758 (2528 -1024 319.990234 ) (2474.662598 -1024 391.108246 ) (2485.329102 -992 376.885925 ) (2528 -992 319.990234 ) +4 752 757 (2474.662598 -1024 391.108246 ) (2048 -1024 960.003418 ) (2048 -992 960.003418 ) (2485.329102 -992 376.885925 ) +3 752 755 (2528 -863.985718 319.990234 ) (2528 -992 319.990234 ) (2485.329102 -992 376.885895 ) +5 752 754 (2048 -992 960.003418 ) (2048 -576 960.003418 ) (2528 -576 319.990234 ) (2528 -863.985718 319.990234 ) (2485.329102 -992 376.885895 ) +4 752 753 (2575.991699 -576 256 ) (2575.991699 -944 256 ) (2528 -991.992676 319.990234 ) (2528 -576 319.990234 ) +4 753 767 (2575.996338 -912 256 ) (2575.996338 -944 256 ) (2528 -944 256 ) (2528 -912 256 ) +4 753 762 (2575.996338 -640 256 ) (2575.996338 -912 256 ) (2528 -912 256 ) (2528 -640 256 ) +4 753 761 (2528 -576 256 ) (2575.996338 -576 256 ) (2575.996338 -640 256 ) (2528 -640 256 ) +4 753 756 (2528 -768 256 ) (2528 -864 256 ) (2528 -864 319.998077 ) (2528 -863.997192 319.998077 ) +4 753 755 (2528 -864 256 ) (2528 -944 256 ) (2528 -991.998596 319.998077 ) (2528 -864 319.998077 ) +4 753 754 (2528 -576 256 ) (2528 -768 256 ) (2528 -863.997192 319.998077 ) (2528 -576 319.998077 ) +4 754 862 (2048 -896 256 ) (2048 -992 256 ) (2048 -992 280 ) (2048 -896 280 ) +4 754 861 (2048 -992 280 ) (2048 -992 320 ) (2048 -896 320 ) (2048 -896 280 ) +4 754 852 (2048 -800 256 ) (2048 -832 256 ) (2048 -832 320 ) (2048 -800 320 ) +4 754 854 (2048 -832 256 ) (2048 -896 256 ) (2048 -896 320 ) (2048 -832 320 ) +4 754 849 (2048 -576 320 ) (2048 -576 256 ) (2048 -800 256 ) (2048 -800 320 ) +4 754 833 (2048 -576 384 ) (2048 -576 320 ) (2048 -992 320 ) (2048 -992 384 ) +4 754 828 (2048 -576 448 ) (2048 -576 384 ) (2048 -640 384 ) (2048 -640 448 ) +4 754 829 (2048 -640 384 ) (2048 -992 384 ) (2048 -992 448 ) (2048 -640 448 ) +4 754 824 (2048 -576 544 ) (2048 -576 448 ) (2048 -992 448 ) (2048 -992 544 ) +5 754 823 (2048 -992 960.009033 ) (2048 -624.004639 960.009277 ) (2048 -576 864 ) (2048 -576 544 ) (2048 -992 544 ) +3 754 818 (2048 -624.004639 960.009277 ) (2048 -576 960.009277 ) (2048 -576 864 ) +5 754 796 (2048 -992 256 ) (2048 -940 256 ) (2171.428711 -832 256 ) (2240 -832 256 ) (2240 -992 256 ) +3 754 795 (2048 -940 256 ) (2048 -832 256 ) (2171.428711 -832 256 ) +5 754 793 (2240 -800 256 ) (2240 -832 256 ) (2176 -832 256 ) (2207.997314 -800.002502 256 ) (2208 -800 256 ) +5 754 782 (2464 -832 256 ) (2304 -992 256 ) (2240 -992 256 ) (2240 -704 256 ) (2464 -704 256 ) +4 754 778 (2496 -704 256 ) (2496 -800 256 ) (2464 -832 256 ) (2464 -704 256 ) +4 754 775 (2496 -640 256 ) (2496 -704 256 ) (2240 -704 256 ) (2240 -640 256 ) +4 754 762 (2528 -640 256 ) (2528 -768 256 ) (2496 -800 256 ) (2496 -640 256 ) +4 754 761 (2496 -576 256 ) (2528 -576 256 ) (2528 -640 256 ) (2496 -640 256 ) +4 754 757 (2048 -992 256 ) (2304 -992 256 ) (2485.333984 -992 376.889160 ) (2048 -992 960.012878 ) +5 754 756 (2400 -992 319.998627 ) (2352.002441 -944 256 ) (2528 -768.003906 256 ) (2528 -863.996094 319.996094 ) (2527.998047 -864.001770 319.998627 ) +3 754 755 (2485.332520 -992 376.887085 ) (2400 -992 319.998627 ) (2527.998047 -864.001770 319.998627 ) +3 755 783 (2464 -944 256 ) (2448 -944 256 ) (2464 -928 256 ) +4 755 778 (2496 -944 256 ) (2464 -944 256 ) (2464 -928 256 ) (2496 -896 256 ) +4 755 767 (2528 -912 256 ) (2528 -944 256 ) (2496 -944 256 ) (2496 -912 256 ) +4 755 762 (2528 -864 256 ) (2528 -912 256 ) (2496 -912 256 ) (2496 -896 256 ) +3 755 758 (2528 -992 320 ) (2485.333984 -992 376.889160 ) (2400 -992 320 ) +6 755 756 (2400.003906 -992 320 ) (2400.003906 -992 320.001984 ) (2527.995361 -864.008484 320.001984 ) (2528 -864.003906 319.995880 ) (2528 -864.003906 256 ) (2448.003906 -944 256 ) +4 756 783 (2464 -928 256 ) (2448 -944 256 ) (2384 -944 256 ) (2464 -864 256 ) +4 756 782 (2384 -944 256 ) (2352 -944 256 ) (2464 -832 256 ) (2464 -864 256 ) +4 756 778 (2496 -896 256 ) (2464 -928 256 ) (2464 -832 256 ) (2496 -800 256 ) +4 756 762 (2528 -768 256 ) (2528 -864 256 ) (2496 -896 256 ) (2496 -800 256 ) +5 757 902 (2048 -1024 448 ) (2048 -1024 256 ) (2272 -1024 256 ) (2368 -1024 320 ) (2368 -1024 448 ) +4 757 899 (2368 -1024 320 ) (2474.665527 -1024 391.110382 ) (2432 -1024 448 ) (2368 -1024 448 ) +3 757 887 (2048 -1024 960.009277 ) (2048 -1024 464 ) (2420 -1024 464 ) +4 757 892 (2048 -1024 464 ) (2048 -1024 448 ) (2432 -1024 448 ) (2420 -1024 464 ) +4 757 862 (2048 -1024 256 ) (2048 -1024 280 ) (2048 -992 280 ) (2048 -992 256 ) +4 757 861 (2048 -1024 280 ) (2048 -1024 320 ) (2048 -992 320 ) (2048 -992 280 ) +4 757 833 (2048 -1024 320 ) (2048 -1024 384 ) (2048 -992 384 ) (2048 -992 320 ) +4 757 829 (2048 -1024 384 ) (2048 -1024 448 ) (2048 -992 448 ) (2048 -992 384 ) +4 757 824 (2048 -1024 448 ) (2048 -1024 544 ) (2048 -992 544 ) (2048 -992 448 ) +4 757 823 (2048 -1024 544 ) (2048 -1024 960.009033 ) (2048 -992 960.009033 ) (2048 -992 544 ) +4 757 796 (2048 -1024 256 ) (2048 -992 256 ) (2240 -992 256 ) (2240 -1024 256 ) +4 757 786 (2240 -992 256 ) (2304 -992 256 ) (2272 -1024 256 ) (2240 -1024 256 ) +4 757 758 (2400 -992 320.002594 ) (2485.332031 -992 376.890625 ) (2474.665527 -1024 391.112946 ) (2368 -1024 320.002533 ) +5 758 899 (2368 -1024 256 ) (2528 -1024 256 ) (2528 -1024 319.996399 ) (2474.665527 -1024 391.110382 ) (2368 -1024 320 ) +4 758 787 (2400 -992 256 ) (2496 -992 256 ) (2496 -1024 256 ) (2368 -1024 256 ) +4 758 774 (2496 -992 256 ) (2528 -992 256 ) (2528 -1024 256 ) (2496 -1024 256 ) +4 759 764 (2736 -704 116 ) (2736 -640 116 ) (2736 -640 112 ) (2736 -706 112 ) +4 759 763 (2736 -896 112 ) (2736 -896 116 ) (2736 -704 116 ) (2736 -706 112 ) +4 759 762 (2736 -896 116 ) (2736 -896 256 ) (2736 -640 256 ) (2736 -640 116 ) +4 759 765 (2736 -640 96 ) (2736 -896 96 ) (2736 -896 112 ) (2736 -640 112 ) +4 759 761 (2736 -576 96 ) (2736 -640 96 ) (2736 -640 256 ) (2736 -576 256 ) +4 759 760 (2736 -896 256 ) (2736 -896 224 ) (2752 -896 224 ) (2752 -896 256 ) +4 760 767 (2752 -912 224 ) (2752 -912 256 ) (2736 -912 256 ) (2736 -912 224 ) +4 760 762 (2736 -912 224 ) (2736 -912 256 ) (2736 -896 256 ) (2736 -896 224 ) +4 761 764 (2496 -640 116 ) (2498 -640 112 ) (2736 -640 112 ) (2736 -640 116 ) +4 761 762 (2496 -640 256 ) (2496 -640 116 ) (2736 -640 116 ) (2736 -640 256 ) +4 761 765 (2496 -640 112 ) (2496 -640 96 ) (2736 -640 96 ) (2736 -640 112 ) +4 762 778 (2496 -912 256 ) (2496 -704 256 ) (2496 -704 116 ) (2496 -912 116 ) +4 762 775 (2496 -704 256 ) (2496 -640 256 ) (2496 -640 116 ) (2496 -704 116 ) +4 762 770 (2496 -912 201.500000 ) (2496 -912 116 ) (2732 -912 116 ) (2732 -912 201.500000 ) +4 762 767 (2496 -912 256 ) (2496 -912 201.500000 ) (2736 -912 201.500000 ) (2736 -912 256 ) +4 762 764 (2496 -640 116 ) (2736 -640 116 ) (2736 -704 116 ) (2496 -704 116 ) +4 762 763 (2736 -704 116 ) (2736 -912 116 ) (2496 -912 116 ) (2496 -704 116 ) +4 763 779 (2496 -706 112 ) (2496 -912 112 ) (2496 -912 116 ) (2496 -704 116 ) +4 763 770 (2496 -912 116 ) (2496 -912 112 ) (2732 -912 112 ) (2732 -912 116 ) +4 763 764 (2736 -706 112 ) (2498 -706 112 ) (2496 -704 116 ) (2736 -704 116 ) +4 763 765 (2736 -706 112 ) (2736 -912 112 ) (2496 -912 112 ) (2496 -706 112 ) +4 764 765 (2498 -640 112 ) (2736 -640 112 ) (2736 -706 112 ) (2498 -706 112 ) +4 765 781 (2496 -704 96 ) (2496 -912 96 ) (2496 -912 112 ) (2496 -704 112 ) +4 765 770 (2496 -912 112 ) (2496 -912 96 ) (2732 -912 96 ) (2732 -912 112 ) +3 766 800 (2752 -896 64 ) (2752 -912 64 ) (2736 -912 64 ) +4 767 778 (2496 -960 256 ) (2496 -912 256 ) (2496 -912 201.500000 ) (2496 -960 201.500000 ) +4 767 773 (2560 -960 201.500000 ) (2752 -960 201.500000 ) (2752 -960 256 ) (2560 -960 256 ) +4 767 771 (2688 -960 201.500000 ) (2560 -960 201.500000 ) (2560 -956 201.500000 ) (2688 -956 201.500000 ) +4 767 772 (2556 -960 201.500000 ) (2496 -960 201.500000 ) (2496 -956 201.500000 ) (2556 -956 201.500000 ) +5 767 770 (2496 -956 201.500000 ) (2496 -912 201.500000 ) (2732 -912 201.500000 ) (2732 -916 201.500000 ) (2692 -956 201.500000 ) +5 767 769 (2752 -960 201.500000 ) (2692 -960 201.500000 ) (2692 -956 201.500000 ) (2732 -916 201.500000 ) (2752 -916 201.500000 ) +4 767 768 (2736 -912 201.500000 ) (2752 -912 201.500000 ) (2752 -916 201.500000 ) (2736 -916 201.500000 ) +4 768 769 (2752 -916 96 ) (2752 -916 201.500000 ) (2736 -916 201.500000 ) (2736 -916 96 ) +4 769 773 (2752 -960 96 ) (2752 -960 201.500000 ) (2692 -960 201.500000 ) (2692 -960 96 ) +4 769 770 (2692 -956.003906 201.500000 ) (2732.003906 -916 201.500000 ) (2732.003906 -916 96 ) (2692 -956.003906 96 ) +4 770 779 (2496 -912 116 ) (2496 -912 112 ) (2496 -956 112 ) (2496 -956 116 ) +4 770 778 (2496 -912 201.500000 ) (2496 -912 116 ) (2496 -956 116 ) (2496 -956 201.500000 ) +4 770 781 (2496 -912 112 ) (2496 -912 96 ) (2496 -956 96 ) (2496 -956 112 ) +4 770 771 (2688 -956 201.500000 ) (2560 -956 201.500000 ) (2560 -956 96 ) (2688 -956 96 ) +4 770 772 (2556 -956 201.500000 ) (2496 -956 201.500000 ) (2496 -956 96 ) (2556 -956 96 ) +4 771 773 (2560 -960 96 ) (2688 -960 96 ) (2688 -960 201.500000 ) (2560 -960 201.500000 ) +4 772 779 (2496 -960 112 ) (2496 -960 116 ) (2496 -956 116 ) (2496 -956 112 ) +4 772 778 (2496 -960 116 ) (2496 -960 201.500000 ) (2496 -956 201.500000 ) (2496 -956 116 ) +4 772 781 (2496 -960 96 ) (2496 -960 112 ) (2496 -956 112 ) (2496 -956 96 ) +4 773 912 (2752 -1024 96 ) (2752 -1024 256 ) (2560 -1024 256 ) (2560 -1024 96 ) +4 774 913 (2528 -1024 256 ) (2496 -1024 256 ) (2496 -1024 64 ) (2528 -1024 64 ) +4 774 800 (2528 -1024 64 ) (2496 -1024 64 ) (2496 -992 64 ) (2528 -992 64 ) +4 774 789 (2496 -992 72 ) (2496 -992 64 ) (2496 -1024 64 ) (2496 -1024 72 ) +4 774 787 (2496 -1024 256 ) (2496 -992 256 ) (2496 -992 72 ) (2496 -1024 72 ) +4 775 782 (2240 -704 256 ) (2240 -704 116 ) (2464 -704 116 ) (2464 -704 256 ) +4 775 778 (2464 -704 116 ) (2496 -704 116 ) (2496 -704 256 ) (2464 -704 256 ) +4 775 776 (2480 -704 116 ) (2240 -704 116 ) (2240 -640 116 ) (2480 -640 116 ) +4 776 782 (2240 -704 116 ) (2240 -704 112 ) (2464 -704 112 ) (2464 -704 116 ) +4 776 780 (2464 -704 112 ) (2478 -704 112 ) (2480 -704 116 ) (2464 -704 116 ) +4 776 777 (2478 -704 112 ) (2240 -704 112 ) (2240 -640 112 ) (2478 -640 112 ) +4 777 784 (2240 -704 80 ) (2240 -704 72 ) (2432 -704 72 ) (2432 -704 80 ) +4 777 782 (2240 -704 112 ) (2240 -704 80 ) (2464 -704 80 ) (2464 -704 112 ) +4 777 781 (2480 -704 88 ) (2480 -704 112 ) (2464 -704 112 ) (2464 -704 88 ) +4 778 783 (2464 -864 116 ) (2464 -960 116 ) (2464 -960 256 ) (2464 -864 256 ) +4 778 782 (2464 -704 256 ) (2464 -704 116 ) (2464 -864 116 ) (2464 -864 256 ) +4 778 779 (2496 -960 116 ) (2464 -960 116 ) (2464 -704 116 ) (2496 -704 116 ) +4 779 783 (2464 -864 112 ) (2464 -960 112 ) (2464 -960 116 ) (2464 -864 116 ) +4 779 782 (2464 -704 116 ) (2464 -706 112 ) (2464 -864 112 ) (2464 -864 116 ) +4 779 780 (2478 -706 112 ) (2464 -706 112 ) (2464 -704 116 ) (2480 -704 116 ) +4 779 781 (2496 -960 112 ) (2464 -960 112 ) (2464 -706 112 ) (2496 -706 112 ) +3 780 782 (2464 -704 116 ) (2464 -704 112 ) (2464 -706 112 ) +4 780 781 (2464 -706 112 ) (2464 -704 112 ) (2478 -704 112 ) (2478 -706 112 ) +4 781 783 (2464 -864 88 ) (2464 -960 88 ) (2464 -960 112 ) (2464 -864 112 ) +4 781 782 (2464 -704 112 ) (2464 -704 88 ) (2464 -864 88 ) (2464 -864 112 ) +4 782 796 (2240 -992 256 ) (2240 -832 256 ) (2240 -832 80 ) (2240 -992 80 ) +4 782 793 (2240 -832 256 ) (2240 -800 256 ) (2240 -800 80 ) (2240 -832 80 ) +4 782 786 (2240 -992 256 ) (2240 -992 80 ) (2336 -992 80 ) (2336 -992 256 ) +5 782 784 (2336 -992 80 ) (2240 -992 80 ) (2240 -704 80 ) (2432 -704 80 ) (2432 -896 80 ) +4 782 783 (2368.003418 -960 80 ) (2464 -864.001953 80 ) (2464 -864.001953 256 ) (2368.003418 -960 256 ) +3 783 785 (2368 -960 80 ) (2432 -896 80 ) (2432 -960 80 ) +4 784 796 (2240 -832 72 ) (2240 -992 72 ) (2240 -992 80 ) (2240 -832 80 ) +4 784 793 (2240 -800 72 ) (2240 -832 72 ) (2240 -832 80 ) (2240 -800 80 ) +4 784 791 (2240 -992 72 ) (2240 -832 72 ) (2368 -960 72 ) (2336 -992 72 ) +4 784 786 (2240 -992 80 ) (2240 -992 72 ) (2336 -992 72 ) (2336 -992 80 ) +4 784 785 (2432 -896 72 ) (2432 -896 80 ) (2368 -960 80 ) (2368 -960 72 ) +4 786 915 (2294.857178 -1024 256 ) (2240 -1024 256 ) (2240 -1024 72 ) (2294.857178 -1024 72 ) +4 786 914 (2304 -1024 256 ) (2294.857178 -1024 256 ) (2294.857178 -1024 72 ) (2304 -1024 72 ) +4 786 796 (2240 -1024 256 ) (2240 -992 256 ) (2240 -992 72 ) (2240 -1024 72 ) +4 786 791 (2240 -1024 72 ) (2240 -992 72 ) (2336 -992 72 ) (2304 -1024 72 ) +4 787 913 (2496 -1024 256 ) (2336 -1024 256 ) (2336 -1024 72 ) (2496 -1024 72 ) +4 787 790 (2368 -992 72 ) (2480 -992 72 ) (2480 -1024 72 ) (2336 -1024 72 ) +4 787 789 (2480 -992 72 ) (2496 -992 72 ) (2496 -1024 72 ) (2480 -1024 72 ) +4 788 800 (2496 -704 64 ) (2496 -960 64 ) (2480 -960 64 ) (2480 -704 64 ) +4 789 913 (2480 -1024 64 ) (2496 -1024 64 ) (2496 -1024 72 ) (2480 -1024 72 ) +4 789 800 (2496 -992 64 ) (2496 -1024 64 ) (2480 -1024 64 ) (2480 -992 64 ) +4 789 790 (2480 -1024 72 ) (2480 -992 72 ) (2480 -992 64 ) (2480 -1024 64 ) +4 790 913 (2336 -1024 64 ) (2480 -1024 64 ) (2480 -1024 72 ) (2336 -1024 72 ) +4 790 800 (2480 -1024 64 ) (2336 -1024 64 ) (2368 -992 64 ) (2480 -992 64 ) +4 791 915 (2240 -1024 72 ) (2240 -1024 67.599998 ) (2294.856934 -1024 68.285713 ) (2294.856934 -1024 72 ) +4 791 914 (2294.856934 -1024 68.285713 ) (2304 -1024 68.399994 ) (2304 -1024 72 ) (2294.856934 -1024 72 ) +4 791 796 (2240 -832 70 ) (2240 -1024 67.599998 ) (2240 -1024 72 ) (2240 -832 72 ) +3 791 792 (2304 -1024 68.400024 ) (2294.857178 -1024 68.285736 ) (2368 -960 70 ) +4 792 914 (2294.856934 -1024 64 ) (2304 -1024 64 ) (2304 -1024 68.400002 ) (2294.856934 -1024 68.285713 ) +3 792 800 (2304 -1024 64 ) (2294.856934 -1024 64 ) (2368 -960 64 ) +4 793 796 (2240 -832 72 ) (2240 -832 256 ) (2176 -832 256 ) (2176 -832 72 ) +4 793 794 (2240 -832 72 ) (2176 -832 72 ) (2207.996094 -800.003906 72 ) (2208 -800 72 ) +4 794 796 (2240 -832 70 ) (2240 -832 72 ) (2176 -832 72 ) (2176 -832 69.199997 ) +4 795 867 (2048 -896 64 ) (2048 -940 64 ) (2048 -940 192 ) (2048 -896 192 ) +4 795 864 (2048 -940 192 ) (2048 -940 256 ) (2048 -896 256 ) (2048 -896 192 ) +4 795 854 (2048 -832 64 ) (2048 -896 64 ) (2048 -896 256 ) (2048 -832 256 ) +4 795 801 (2048 -940 64 ) (2048 -832 64 ) (2112 -832 64 ) (2112 -884 64 ) +3 795 800 (2112 -832 64 ) (2171.428711 -832 64 ) (2112 -884 64 ) +4 795 796 (2171.427734 -832 69.142845 ) (2171.427734 -832 256 ) (2048 -940 256 ) (2048 -940 66.250000 ) +4 796 915 (2240 -1024 256 ) (2048 -1024 256 ) (2048 -1024 65.200012 ) (2240 -1024 67.600006 ) +4 796 868 (2048 -1024 65.200005 ) (2048 -1024 192 ) (2048 -940 192 ) (2048 -940 66.250000 ) +4 796 864 (2048 -1024 192 ) (2048 -1024 256 ) (2048 -940 256 ) (2048 -940 192 ) +4 797 802 (2240 0 0 ) (2752 0 0 ) (2752 -256 0 ) (2240 -256 0 ) +4 797 799 (2240 -256 0 ) (2752 -256 0 ) (2752 -256 64 ) (2240 -256 64 ) +4 797 798 (2240 0 0 ) (2240 -192 0 ) (2240 -192 64 ) (2240 0 64 ) +4 798 869 (2048 0 64 ) (2048 0 0 ) (2048 -192 0 ) (2048 -192 64 ) +4 798 802 (2048 0 0 ) (2240 0 0 ) (2240 -192 0 ) (2048 -192 0 ) +4 799 802 (2752 -256 0 ) (2752 -512 0 ) (2240 -512 0 ) (2240 -256 0 ) +4 799 800 (2240 -512 0 ) (2752 -512 0 ) (2752 -512 64 ) (2240 -512 64 ) +4 800 932 (2752 -1024 0 ) (2752 -1024 64 ) (2112 -1024 64 ) (2112 -1024 0 ) +4 800 802 (2752 -512 0 ) (2752 -1024 0 ) (2112 -1024 0 ) (2112 -512 0 ) +4 800 801 (2112 -512 64 ) (2112 -512 0 ) (2112 -960 0 ) (2112 -960 64 ) +4 801 873 (2048 -512 0 ) (2048 -960 0 ) (2048 -960 64 ) (2048 -512 64 ) +4 801 802 (2048 -960 0 ) (2048 -512 0 ) (2112 -512 0 ) (2112 -960 0 ) +4 802 938 (2752 -1024 -1284 ) (2752 -1024 0 ) (2048 -1024 0 ) (2048 -1024 -1284 ) +4 802 874 (2048 0 0 ) (2048 0 -1284 ) (2048 -1024 -1284 ) (2048 -1024 0 ) +4 803 1883 (1024 0 448 ) (1024 0 320 ) (1024 -128 320 ) (1024 -128 448 ) +4 803 1880 (1024 0 544 ) (1024 0 448 ) (1024 -128 448 ) (1024 -128 544 ) +4 803 1879 (1024 0 5542.669922 ) (1024 0 544 ) (1024 -128 544 ) (1024 -128 5542.669922 ) +4 803 836 (1408 -128 384 ) (1024 -128 384 ) (1024 -128 320 ) (1408 -128 320 ) +4 803 834 (1472 -128 384 ) (1408 -128 384 ) (1408 -128 320 ) (1472 -128 320 ) +4 803 832 (2048 -128 320 ) (2048 -128 384 ) (1856 -128 384 ) (1856 -128 320 ) +4 803 817 (2048 -128 384 ) (2048 -128 5542.669922 ) (1472 -128 5542.669922 ) (1472 -128 384 ) +4 803 819 (1472 -128 5542.669922 ) (1024 -128 5542.669922 ) (1024 -128 384 ) (1472 -128 384 ) +4 803 809 (1296 0 320 ) (1664 0 320 ) (1664 -64 320 ) (1296 -64 320 ) +4 803 808 (2048 -128 320 ) (1728 -128 320 ) (1728 -32 320 ) (2048 -32 320 ) +4 803 804 (1728 0 320 ) (2048 0 320 ) (2048 -32 320 ) (1728 -32 320 ) +4 804 808 (1728 -32 240 ) (2048 -32 240 ) (2048 -32 320 ) (1728 -32 320 ) +4 804 805 (2048 -32 240 ) (1728 -32 240 ) (1728 0 240 ) (2048 0 240 ) +4 805 808 (1728 -32 160 ) (2048 -32 160 ) (2048 -32 240 ) (1728 -32 240 ) +4 805 807 (2048 -32 160 ) (1728 -32 160 ) (1728 0 160 ) (2048 0 160 ) +4 806 809 (1664 -32 160 ) (1664 -32 240 ) (1664 0 240 ) (1664 0 160 ) +4 807 813 (1856 0 128 ) (1888 0 128 ) (1888 -32 128 ) (1856 -32 128 ) +4 807 812 (1888 0 128 ) (2048 0 128 ) (2048 -32 128 ) (1888 -32 128 ) +4 807 808 (1728 -32 128 ) (2048 -32 128 ) (2048 -32 160 ) (1728 -32 160 ) +4 808 839 (1888 -128 320 ) (1856 -128 320 ) (1856 -128 128 ) (1888 -128 128 ) +4 808 838 (2048 -128 128 ) (2048 -128 320 ) (1888 -128 320 ) (1888 -128 128 ) +4 808 813 (1888 -128 128 ) (1856 -128 128 ) (1856 -32 128 ) (1888 -32 128 ) +4 808 812 (2048 -128 128 ) (1888 -128 128 ) (1888 -32 128 ) (2048 -32 128 ) +4 810 1921 (1024 0 288 ) (1024 0 128 ) (1024 -64 128 ) (1024 -64 288 ) +4 810 811 (1088 -64 128 ) (1152 -64 128 ) (1152 -64 256 ) (1088 -64 256 ) +4 812 838 (2048 -128 96 ) (2048 -128 128 ) (1888 -128 128 ) (1888 -128 96 ) +4 812 813 (1888 -128 112 ) (1888 -128 128 ) (1888 0 128 ) (1888 0 112 ) +4 813 839 (1888 -128 128 ) (1856 -128 128 ) (1856 -128 112 ) (1888 -128 112 ) +4 814 877 (1152 -64 64 ) (1472 -64 64 ) (1472 -128 64 ) (1152 -128 64 ) +4 814 869 (1472 -64 64 ) (1664 -64 64 ) (1664 -128 64 ) (1472 -128 64 ) +4 814 847 (1408 -128 64 ) (1472 -128 64 ) (1472 -128 128 ) (1408 -128 128 ) +4 814 848 (1152 -128 64 ) (1408 -128 64 ) (1408 -128 128 ) (1152 -128 128 ) +4 814 815 (1152 -80 64 ) (1152 -128 64 ) (1152 -128 128 ) (1152 -80 128 ) +4 815 877 (1152 -80 64 ) (1152 -128 64 ) (1088 -128 64 ) (1088 -80 64 ) +4 815 848 (1088 -128 64 ) (1152 -128 64 ) (1152 -128 128 ) (1088 -128 128 ) +4 815 816 (1088 -80 64 ) (1088 -128 64 ) (1088 -128 128 ) (1088 -80 128 ) +4 816 2042 (1024 -64 64 ) (1024 -128 64 ) (1024 -128 96 ) (1024 -64 96 ) +4 816 1922 (1024 -128 96 ) (1024 -128 128 ) (1024 -64 128 ) (1024 -64 96 ) +4 816 877 (1024 -128 64 ) (1024 -64 64 ) (1088 -64 64 ) (1088 -128 64 ) +4 816 848 (1024 -128 64 ) (1088 -128 64 ) (1088 -128 128 ) (1024 -128 128 ) +4 817 832 (1856 -128 384 ) (2048 -128 384 ) (2048 -176 384 ) (1856 -176 384 ) +4 817 818 (1472 -256 5542.669922 ) (1472 -256 543.998047 ) (2048 -256 543.998230 ) (2048 -256 5542.669922 ) +5 817 819 (1472 -128 384 ) (1472 -176 384 ) (1472 -256 543.998230 ) (1472 -256 5542.669922 ) (1472 -128 5542.669922 ) +4 818 939 (2048 -1024 1760 ) (2048 -1024 5542.669922 ) (1472 -1024 5542.669922 ) (1472 -1024 1760 ) +4 818 826 (1472 -336 384 ) (2048 -336 384 ) (2048 -368 448 ) (1472 -368 448 ) +5 818 823 (2048 -448 608 ) (2048 -1024 1760 ) (1600 -1024 1760 ) (1472 -896 1504 ) (1472 -448 608 ) +3 818 822 (1600 -1024 1760 ) (1472 -1024 1760 ) (1472 -896 1504 ) +5 818 821 (2048 -368 448 ) (2048 -416 544 ) (1472 -416 544 ) (1472 -384 480 ) (1488 -368 448 ) +4 818 820 (2048 -416 544 ) (2048 -448 608 ) (1472 -448 608 ) (1472 -416 544 ) +5 818 819 (1472 -256 384 ) (1472 -336 384 ) (1472 -1024 1760 ) (1472 -1024 5542.669922 ) (1472 -256 5542.669922 ) +4 819 2291 (1024 -1024 1760 ) (1024 -1024 5542.669922 ) (1024 -928 5542.669922 ) (1024 -928 1568 ) +4 819 2093 (1024 -928 5542.669922 ) (1024 -692 5542.669922 ) (1024 -692 1096 ) (1024 -928 1568 ) +4 819 2092 (1024 -692 5542.669922 ) (1024 -640 5542.669922 ) (1024 -640 992 ) (1024 -692 1096 ) +4 819 1883 (1024 -128 448 ) (1024 -128 384 ) (1024 -336 384 ) (1024 -368 448 ) +4 819 1880 (1024 -128 544 ) (1024 -128 448 ) (1024 -368 448 ) (1024 -416 544 ) +5 819 1879 (1024 -448 5542.669922 ) (1024 -128 5542.669922 ) (1024 -128 544 ) (1024 -416 544 ) (1024 -448 608 ) +4 819 1882 (1024 -640 5542.669922 ) (1024 -448 5542.669922 ) (1024 -448 608 ) (1024 -640 992 ) +4 819 974 (1472 -1024 5542.669922 ) (1024 -1024 5542.669922 ) (1024 -1024 1760 ) (1472 -1024 1760 ) +4 819 836 (1024 -336 384 ) (1024 -128 384 ) (1408 -128 384 ) (1408 -336 384 ) +4 819 834 (1408 -128 384 ) (1472 -128 384 ) (1472 -336 384 ) (1408 -336 384 ) +4 819 830 (1024 -368 448 ) (1024 -336 384 ) (1408 -336 384 ) (1408 -368 448 ) +4 819 826 (1408 -336 384 ) (1472 -336 384 ) (1472 -368 448 ) (1408 -368 448 ) +4 819 823 (1408 -448 608 ) (1472 -448 608 ) (1472 -896 1504 ) (1408 -832 1376 ) +4 819 822 (1472 -896 1504 ) (1472 -1024 1760 ) (1408 -1024 1760 ) (1408 -832 1376 ) +4 819 825 (1024 -1024 1760 ) (1024 -448 608 ) (1408 -448 608 ) (1408 -1024 1760 ) +3 819 821 (1472 -384 480 ) (1472 -416 544 ) (1440 -416 544 ) +4 819 820 (1024 -448 608 ) (1024 -416 544 ) (1472 -416 544 ) (1472 -448 608 ) +3 820 1879 (1024 -448 608 ) (1024 -416 544 ) (1024 -448 544 ) +4 820 823 (2048 -448 544 ) (2048 -448 608 ) (1408 -448 608 ) (1408 -448 544 ) +4 820 825 (1408 -448 608 ) (1024 -448 608 ) (1024 -448 544 ) (1408 -448 544 ) +4 820 821 (2048 -448 544 ) (1440 -448 544 ) (1440 -416 544 ) (2048 -416 544 ) +4 821 827 (2048 -384 448 ) (2048 -448 448 ) (1488 -448 448 ) (1488 -384 448 ) +4 821 826 (1488 -368 448 ) (2048 -368 448 ) (2048 -384 448 ) (1488 -384 448 ) +4 822 974 (1472 -1024 1760 ) (1408 -1024 1760 ) (1408 -1024 448 ) (1472 -1024 448 ) +4 822 939 (1600 -1024 1760 ) (1472 -1024 1760 ) (1472 -1024 464 ) (1600 -1024 464 ) +4 822 940 (1472 -1024 464 ) (1472 -1024 448 ) (1600 -1024 448 ) (1600 -1024 464 ) +3 822 829 (1600 -1024 448 ) (1408 -1024 448 ) (1408 -832 448 ) +4 822 824 (1600 -1024 448 ) (1488 -912 448 ) (1440 -864 544 ) (1600 -1024 544 ) +4 822 823 (1408 -832 544 ) (1408 -832 1376 ) (1600 -1024 1760 ) (1600 -1024 544 ) +4 822 825 (1408 -1024 1760 ) (1408 -832 1376 ) (1408 -832 448 ) (1408 -1024 448 ) +4 823 939 (2048 -1024 544 ) (2048 -1024 1760 ) (1600 -1024 1760 ) (1600 -1024 544 ) +5 823 824 (1600 -1024 544 ) (1440 -864 544 ) (1440 -448 544 ) (2048 -448 544 ) (2048 -1024 544 ) +4 823 825 (1408 -832 1376 ) (1408 -448 608 ) (1408 -448 544 ) (1408 -832 544 ) +4 824 939 (2048 -1024 464 ) (2048 -1024 544 ) (1600 -1024 544 ) (1600 -1024 464 ) +4 824 940 (2048 -1024 448 ) (2048 -1024 464 ) (1600 -1024 464 ) (1600 -1024 448 ) +4 824 828 (1488 -640 448 ) (1488 -496 448 ) (2048 -496 448 ) (2048 -640 448 ) +5 824 829 (2048 -1024 448 ) (1600 -1024 448 ) (1488 -912 448 ) (1488 -640 448 ) (2048 -640 448 ) +4 825 2291 (1024 -1024 448 ) (1024 -1024 1760 ) (1024 -928 1568 ) (1024 -928 448 ) +4 825 2093 (1024 -928 1568 ) (1024 -692 1096 ) (1024 -692 448 ) (1024 -928 448 ) +4 825 2092 (1024 -692 1096 ) (1024 -640 992 ) (1024 -640 448 ) (1024 -692 448 ) +4 825 1882 (1024 -640 992 ) (1024 -448 608 ) (1024 -448 448 ) (1024 -640 448 ) +4 825 974 (1408 -1024 1760 ) (1024 -1024 1760 ) (1024 -1024 448 ) (1408 -1024 448 ) +4 825 831 (1408 -1024 448 ) (1024 -1024 448 ) (1024 -448 448 ) (1408 -448 448 ) +4 826 834 (1408 -384 384 ) (1408 -336 384 ) (1472 -336 384 ) (1472 -384 384 ) +4 826 830 (1408 -384 448 ) (1408 -368 448 ) (1408 -336 384 ) (1408 -384 384 ) +4 826 827 (1472 -384 384 ) (2048 -384 384 ) (2048 -384 448 ) (1472 -384 448 ) +4 828 833 (2048 -528 384 ) (2048 -640 384 ) (1472 -640 384 ) (1472 -528 384 ) +4 828 829 (1472 -640 384 ) (2048 -640 384 ) (2048 -640 448 ) (1472 -640 448 ) +4 829 974 (1472 -1024 448 ) (1408 -1024 448 ) (1408 -1024 384 ) (1472 -1024 384 ) +4 829 941 (2048 -1024 384 ) (2048 -1024 448 ) (1472 -1024 448 ) (1472 -1024 384 ) +4 829 835 (1472 -1024 384 ) (1408 -1024 384 ) (1408 -640 384 ) (1472 -640 384 ) +4 829 833 (2048 -1024 384 ) (1472 -1024 384 ) (1472 -640 384 ) (2048 -640 384 ) +4 829 831 (1408 -1024 448 ) (1408 -640 448 ) (1408 -640 384 ) (1408 -1024 384 ) +4 830 1883 (1024 -384 448 ) (1024 -368 448 ) (1024 -336 384 ) (1024 -384 384 ) +4 830 836 (1024 -384 384 ) (1024 -336 384 ) (1408 -336 384 ) (1408 -384 384 ) +4 831 2291 (1024 -1024 384 ) (1024 -1024 448 ) (1024 -928 448 ) (1024 -928 384 ) +4 831 2093 (1024 -928 448 ) (1024 -692 448 ) (1024 -692 384 ) (1024 -928 384 ) +4 831 2092 (1024 -692 448 ) (1024 -640 448 ) (1024 -640 384 ) (1024 -692 384 ) +4 831 1884 (1024 -640 448 ) (1024 -448 448 ) (1024 -448 384 ) (1024 -640 384 ) +4 831 974 (1408 -1024 448 ) (1024 -1024 448 ) (1024 -1024 384 ) (1408 -1024 384 ) +4 831 837 (1408 -1024 384 ) (1024 -1024 384 ) (1024 -448 384 ) (1408 -448 384 ) +4 832 839 (1856 -128 320 ) (1888 -128 320 ) (1888 -192 320 ) (1856 -192 320 ) +4 832 838 (1888 -128 320 ) (2048 -128 320 ) (2048 -192 320 ) (1888 -192 320 ) +4 833 942 (2048 -1024 320 ) (2048 -1024 384 ) (1472 -1024 384 ) (1472 -1024 320 ) +4 833 861 (2048 -896 320 ) (2048 -1024 320 ) (1472 -1024 320 ) (1472 -896 320 ) +4 833 852 (2048 -800 320 ) (2048 -832 320 ) (1472 -832 320 ) (1472 -800 320 ) +4 833 854 (2048 -832 320 ) (2048 -896 320 ) (1472 -896 320 ) (1472 -832 320 ) +4 833 851 (1728 -800 320 ) (1472 -800 320 ) (1472 -576 320 ) (1728 -576 320 ) +4 833 850 (1792 -800 320 ) (1728 -800 320 ) (1728 -576 320 ) (1792 -576 320 ) +4 833 849 (2048 -576 320 ) (2048 -800 320 ) (1792 -800 320 ) (1792 -576 320 ) +4 833 846 (1728 -576 320 ) (1472 -576 320 ) (1472 -512 320 ) (1728 -512 320 ) +4 833 835 (1472 -640 320 ) (1472 -1024 320 ) (1472 -1024 384 ) (1472 -640 384 ) +4 834 847 (1408 -128 320 ) (1472 -128 320 ) (1472 -288 320 ) (1408 -288 320 ) +4 834 836 (1408 -128 320 ) (1408 -384 320 ) (1408 -384 384 ) (1408 -128 384 ) +4 835 974 (1472 -1024 384 ) (1408 -1024 384 ) (1408 -1024 320 ) (1472 -1024 320 ) +4 835 861 (1472 -896 320 ) (1472 -1024 320 ) (1408 -1024 320 ) (1408 -896 320 ) +4 835 856 (1472 -640 320 ) (1472 -896 320 ) (1408 -896 320 ) (1408 -640 320 ) +4 835 837 (1408 -640 320 ) (1408 -1024 320 ) (1408 -1024 384 ) (1408 -640 384 ) +4 836 1883 (1024 -384 384 ) (1024 -128 384 ) (1024 -128 320 ) (1024 -384 320 ) +4 836 848 (1024 -384 320 ) (1024 -128 320 ) (1408 -128 320 ) (1408 -384 320 ) +4 837 2331 (1024 -1024 320 ) (1024 -1024 336 ) (1024 -928 336 ) (1024 -928 320 ) +4 837 2315 (1024 -1024 336 ) (1024 -1024 368 ) (1024 -928 368 ) (1024 -928 336 ) +4 837 2300 (1024 -1024 368 ) (1024 -1024 372 ) (1024 -928 372 ) (1024 -928 368 ) +4 837 2291 (1024 -1024 372 ) (1024 -1024 384 ) (1024 -928 384 ) (1024 -928 372 ) +4 837 2152 (1024 -832 320 ) (1024 -928 320 ) (1024 -928 336 ) (1024 -832 336 ) +4 837 2151 (1024 -716 320 ) (1024 -832 320 ) (1024 -832 336 ) (1024 -716 336 ) +4 837 2148 (1024 -640 336 ) (1024 -640 320 ) (1024 -716 320 ) (1024 -716 336 ) +4 837 2121 (1024 -640 368 ) (1024 -640 336 ) (1024 -928 336 ) (1024 -928 368 ) +4 837 2113 (1024 -640 372 ) (1024 -640 368 ) (1024 -928 368 ) (1024 -928 372 ) +4 837 2093 (1024 -928 384 ) (1024 -692 384 ) (1024 -692 372 ) (1024 -928 372 ) +4 837 2092 (1024 -692 384 ) (1024 -640 384 ) (1024 -640 372 ) (1024 -692 372 ) +4 837 1884 (1024 -640 384 ) (1024 -448 384 ) (1024 -448 320 ) (1024 -640 320 ) +4 837 974 (1408 -1024 384 ) (1024 -1024 384 ) (1024 -1024 320 ) (1408 -1024 320 ) +4 837 861 (1024 -1024 320 ) (1024 -896 320 ) (1408 -896 320 ) (1408 -1024 320 ) +4 837 856 (1024 -896 320 ) (1024 -640 320 ) (1408 -640 320 ) (1408 -896 320 ) +4 837 855 (1024 -640 320 ) (1024 -576 320 ) (1408 -576 320 ) (1408 -640 320 ) +4 837 848 (1024 -576 320 ) (1024 -448 320 ) (1408 -448 320 ) (1408 -576 320 ) +4 838 840 (2016 -192 96 ) (2048 -192 96 ) (2048 -192 320 ) (2016 -192 320 ) +4 838 839 (1888 -192 112 ) (1888 -192 320 ) (1888 -128 320 ) (1888 -128 112 ) +4 840 841 (2016 -256 96 ) (2048 -256 96 ) (2048 -256 320 ) (2016 -256 320 ) +4 841 844 (1856 -456 96 ) (1856 -512 96 ) (1856 -512 320 ) (1856 -456 320 ) +4 841 843 (1856 -256 96 ) (1856 -456 96 ) (1856 -456 320 ) (1856 -256 320 ) +4 842 845 (1664 -192 96 ) (1664 -256 96 ) (1664 -256 320 ) (1664 -192 320 ) +4 842 843 (1664 -256 320 ) (1664 -256 96 ) (1792 -256 96 ) (1792 -256 320 ) +4 843 845 (1664 -256 96 ) (1664 -456 96 ) (1664 -456 320 ) (1664 -256 320 ) +4 843 844 (1680 -456 96 ) (1856 -456 96 ) (1856 -456 320 ) (1680 -456 320 ) +4 845 846 (1472 -512 320 ) (1472 -512 96 ) (1664 -512 96 ) (1664 -512 320 ) +4 846 851 (1728 -576 96 ) (1728 -576 320 ) (1472 -576 320 ) (1472 -576 96 ) +4 847 877 (1408 -128 64 ) (1472 -128 64 ) (1472 -288 64 ) (1408 -288 64 ) +4 847 848 (1408 -288 320 ) (1408 -128 320 ) (1408 -128 64 ) (1408 -288 64 ) +4 848 2067 (1024 -448 64 ) (1024 -576 64 ) (1024 -576 80 ) (1024 -448 80 ) +4 848 2060 (1024 -416 64 ) (1024 -448 64 ) (1024 -448 80 ) (1024 -416 80 ) +4 848 2058 (1024 -240 64 ) (1024 -416 64 ) (1024 -416 80 ) (1024 -240 80 ) +4 848 2055 (1024 -576 80 ) (1024 -576 96 ) (1024 -240 96 ) (1024 -240 80 ) +4 848 2045 (1024 -192 64 ) (1024 -240 64 ) (1024 -240 80 ) (1024 -192 80 ) +4 848 2044 (1024 -240 80 ) (1024 -240 96 ) (1024 -192 96 ) (1024 -192 80 ) +4 848 2042 (1024 -128 96 ) (1024 -128 64 ) (1024 -192 64 ) (1024 -192 96 ) +4 848 2000 (1024 -576 320 ) (1024 -256 320 ) (1024 -256 96 ) (1024 -576 96 ) +4 848 1991 (1024 -240 240 ) (1024 -240 96 ) (1024 -256 96 ) (1024 -256 240 ) +4 848 1989 (1024 -240 241 ) (1024 -240 240 ) (1024 -256 240 ) (1024 -256 241 ) +4 848 1986 (1024 -256 320 ) (1024 -240 320 ) (1024 -240 241 ) (1024 -256 241 ) +4 848 1932 (1024 -240 320 ) (1024 -128 320 ) (1024 -128 96 ) (1024 -240 96 ) +4 848 877 (1024 -576 64 ) (1024 -128 64 ) (1408 -128 64 ) (1408 -576 64 ) +4 848 855 (1024 -576 64 ) (1408 -576 64 ) (1408 -576 320 ) (1024 -576 320 ) +4 849 852 (2048 -800 256 ) (2048 -800 320 ) (1792 -800 320 ) (1792 -800 256 ) +4 849 850 (1792 -576 320 ) (1792 -576 256 ) (1792 -800 256 ) (1792 -800 320 ) +4 850 873 (1728 -576 64 ) (1792 -576 64 ) (1792 -800 64 ) (1728 -800 64 ) +4 850 853 (1728 -800 64 ) (1792 -800 64 ) (1792 -800 256 ) (1728 -800 256 ) +4 850 852 (1792 -800 256 ) (1792 -800 320 ) (1728 -800 320 ) (1728 -800 256 ) +5 850 851 (1728 -576 320 ) (1728 -576 96 ) (1728 -704 64 ) (1728 -800 64 ) (1728 -800 320 ) +4 851 856 (1472 -800 256 ) (1472 -800 320 ) (1472 -640 320 ) (1472 -640 256 ) +4 851 853 (1472 -800 256 ) (1472 -800 64 ) (1728 -800 64 ) (1728 -800 256 ) +4 851 852 (1472 -800 320 ) (1472 -800 256 ) (1728 -800 256 ) (1728 -800 320 ) +4 852 856 (1472 -832 256 ) (1472 -832 320 ) (1472 -800 320 ) (1472 -800 256 ) +4 852 853 (1856 -832 256 ) (1472 -832 256 ) (1472 -800 256 ) (1824 -800 256 ) +4 852 854 (1472 -832 320 ) (1472 -832 256 ) (2048 -832 256 ) (2048 -832 320 ) +4 853 873 (1856 -832 64 ) (1728 -832 64 ) (1728 -800 64 ) (1824 -800 64 ) +4 853 854 (1472 -832 256 ) (1472 -832 64 ) (1856 -832 64 ) (1856 -832 256 ) +4 854 873 (2048 -832 64 ) (2048 -896 64 ) (1728 -896 64 ) (1728 -832 64 ) +4 854 867 (1472 -896 64 ) (2048 -896 64 ) (2048 -896 192 ) (1472 -896 192 ) +4 854 864 (2048 -896 192 ) (2048 -896 256 ) (1472 -896 256 ) (1472 -896 192 ) +5 854 862 (2048 -896 256 ) (2048 -896 280 ) (1472 -896 280 ) (1472 -896 279.982239 ) (1479.994141 -896 256 ) +4 854 861 (2048 -896 280 ) (2048 -896 320 ) (1472 -896 320 ) (1472 -896 280 ) +4 854 856 (1472 -896 256 ) (1472 -896 320 ) (1472 -832 320 ) (1472 -832 256 ) +4 855 2067 (1024 -576 80 ) (1024 -576 64 ) (1024 -640 64 ) (1024 -640 80 ) +4 855 2055 (1024 -576 96 ) (1024 -576 80 ) (1024 -640 80 ) (1024 -640 96 ) +4 855 2000 (1024 -640 320 ) (1024 -576 320 ) (1024 -576 96 ) (1024 -640 96 ) +4 855 877 (1024 -640 64 ) (1024 -576 64 ) (1408 -576 64 ) (1408 -640 64 ) +4 855 858 (1216 -640 64 ) (1344 -640 64 ) (1344 -640 256 ) (1216 -640 256 ) +4 855 860 (1024 -640 64 ) (1216 -640 64 ) (1216 -640 256 ) (1024 -640 256 ) +4 855 857 (1344 -640 64 ) (1408 -640 64 ) (1408 -640 256 ) (1344 -640 256 ) +4 855 856 (1408 -640 256 ) (1408 -640 320 ) (1024 -640 320 ) (1024 -640 256 ) +4 856 2153 (1024 -832 280 ) (1024 -832 256 ) (1024 -896 256 ) (1024 -896 280 ) +4 856 2152 (1024 -896 320 ) (1024 -832 320 ) (1024 -832 280 ) (1024 -896 280 ) +4 856 2151 (1024 -832 320 ) (1024 -716 320 ) (1024 -716 256 ) (1024 -832 256 ) +4 856 2148 (1024 -716 320 ) (1024 -640 320 ) (1024 -640 256 ) (1024 -716 256 ) +4 856 863 (1456 -896 280 ) (1024 -896 280 ) (1024 -896 256 ) (1448 -896 256 ) +4 856 861 (1472 -896 280 ) (1472 -896 320 ) (1024 -896 320 ) (1024 -896 280 ) +4 856 858 (1216 -640 256 ) (1344 -640 256 ) (1344 -832 256 ) (1216 -832 256 ) +4 856 860 (1024 -640 256 ) (1216 -640 256 ) (1216 -896 256 ) (1024 -896 256 ) +4 856 857 (1344 -640 256 ) (1440 -640 256 ) (1440 -832 256 ) (1344 -832 256 ) +4 857 877 (1344 -640 64 ) (1440 -640 64 ) (1440 -832 64 ) (1344 -832 64 ) +4 857 858 (1344 -832 256 ) (1344 -640 256 ) (1344 -640 64 ) (1344 -832 64 ) +4 858 877 (1216 -640 64 ) (1344 -640 64 ) (1344 -832 64 ) (1216 -832 64 ) +4 858 859 (1216 -832 128 ) (1216 -832 64 ) (1344 -832 64 ) (1344 -832 128 ) +4 858 860 (1216 -832 256 ) (1216 -640 256 ) (1216 -640 64 ) (1216 -832 64 ) +4 859 877 (1344 -832 64 ) (1344 -896 64 ) (1216 -896 64 ) (1216 -832 64 ) +4 859 867 (1216 -896 64 ) (1344 -896 64 ) (1344 -896 128 ) (1216 -896 128 ) +4 859 860 (1216 -896 64 ) (1216 -896 128 ) (1216 -832 128 ) (1216 -832 64 ) +4 860 2155 (1024 -716 64 ) (1024 -896 64 ) (1024 -896 256 ) (1024 -716 256 ) +4 860 2148 (1024 -640 256 ) (1024 -640 64 ) (1024 -716 64 ) (1024 -716 256 ) +4 860 877 (1024 -896 64 ) (1024 -640 64 ) (1216 -640 64 ) (1216 -896 64 ) +4 860 867 (1024 -896 64 ) (1216 -896 64 ) (1216 -896 192 ) (1024 -896 192 ) +4 860 866 (1136 -896 256 ) (1024 -896 256 ) (1024 -896 192 ) (1136 -896 192 ) +4 860 865 (1216 -896 192 ) (1216 -896 256 ) (1152 -896 256 ) (1152 -896 192 ) +4 861 2331 (1024 -1024 280 ) (1024 -1024 320 ) (1024 -928 320 ) (1024 -928 280 ) +4 861 2152 (1024 -928 320 ) (1024 -896 320 ) (1024 -896 280 ) (1024 -928 280 ) +4 861 974 (1472 -1024 320 ) (1024 -1024 320 ) (1024 -1024 280 ) (1472 -1024 280 ) +4 861 942 (2048 -1024 280 ) (2048 -1024 320 ) (1472 -1024 320 ) (1472 -1024 280 ) +4 861 863 (1024 -1024 280 ) (1024 -896 280 ) (1456 -896 280 ) (1456 -1024 280 ) +4 861 862 (1471.994019 -896 280 ) (2048 -896 280 ) (2048 -1024 280 ) (1471.994141 -1024 280 ) +4 862 942 (2048 -1024 256 ) (2048 -1024 280 ) (1471.994141 -1024 280 ) (1479.994141 -1024 256 ) +4 862 864 (2048 -1024 256 ) (1479.994141 -1024 256 ) (1479.994141 -896 256 ) (2048 -896 256 ) +4 863 2332 (1024 -1024 256 ) (1024 -1024 280 ) (1024 -928 280 ) (1024 -928 256 ) +4 863 2153 (1024 -928 280 ) (1024 -896 280 ) (1024 -896 256 ) (1024 -928 256 ) +4 863 975 (1456 -1024 280 ) (1024 -1024 280 ) (1024 -1024 256 ) (1448 -1024 256 ) +4 863 866 (1136 -1024 256 ) (1024 -1024 256 ) (1024 -896 256 ) (1136 -896 256 ) +4 863 865 (1448 -1024 256 ) (1152 -1024 256 ) (1152 -896 256 ) (1448 -896 256 ) +4 864 952 (1536 -1024 256 ) (1472 -1024 256 ) (1472 -1024 192 ) (1536 -1024 192 ) +4 864 949 (1792 -1024 256 ) (1536 -1024 256 ) (1536 -1024 192 ) (1792 -1024 192 ) +4 864 948 (1856 -1024 256 ) (1792 -1024 256 ) (1792 -1024 192 ) (1856 -1024 192 ) +4 864 945 (2048 -1024 192 ) (2048 -1024 256 ) (1856 -1024 256 ) (1856 -1024 192 ) +3 864 868 (2048 -940 192 ) (2048 -1024 192 ) (1952 -1024 192 ) +5 864 867 (1472 -896 192 ) (2048 -896 192 ) (2048 -940 192 ) (1952 -1024 192 ) (1472 -1024 192 ) +4 865 976 (1456 -1024 256 ) (1152 -1024 256 ) (1152 -1024 192 ) (1456 -1024 192 ) +4 865 867 (1152 -896 192 ) (1456 -896 192 ) (1456 -1024 192 ) (1152 -1024 192 ) +4 866 2381 (1024 -1024 192 ) (1024 -1024 240 ) (1024 -964 240 ) (1024 -964 192 ) +4 866 2356 (1024 -928 216 ) (1024 -928 192 ) (1024 -964 192 ) (1024 -964 216 ) +4 866 2353 (1024 -964 240 ) (1024 -928 240 ) (1024 -928 216 ) (1024 -964 216 ) +4 866 2334 (1024 -1024 240 ) (1024 -1024 256 ) (1024 -928 256 ) (1024 -928 240 ) +4 866 2155 (1024 -928 256 ) (1024 -896 256 ) (1024 -896 192 ) (1024 -928 192 ) +4 866 977 (1136 -1024 256 ) (1024 -1024 256 ) (1024 -1024 192 ) (1136 -1024 192 ) +4 866 867 (1024 -1024 192 ) (1024 -896 192 ) (1136 -896 192 ) (1136 -1024 192 ) +4 867 2381 (1024 -1024 64 ) (1024 -1024 192 ) (1024 -964 192 ) (1024 -964 64 ) +4 867 2373 (1024 -928 88 ) (1024 -928 64 ) (1024 -964 64 ) (1024 -964 88 ) +4 867 2356 (1024 -964 192 ) (1024 -928 192 ) (1024 -928 88 ) (1024 -964 88 ) +4 867 2155 (1024 -928 192 ) (1024 -896 192 ) (1024 -896 64 ) (1024 -928 64 ) +4 867 978 (1472 -1024 192 ) (1024 -1024 192 ) (1024 -1024 64 ) (1472 -1024 64 ) +4 867 952 (1536 -1024 192 ) (1472 -1024 192 ) (1472 -1024 64 ) (1536 -1024 64 ) +4 867 949 (1792 -1024 192 ) (1536 -1024 192 ) (1536 -1024 64 ) (1792 -1024 64 ) +4 867 948 (1856 -1024 192 ) (1792 -1024 192 ) (1792 -1024 64 ) (1856 -1024 64 ) +4 867 945 (1952 -1024 192 ) (1856 -1024 192 ) (1856 -1024 64 ) (1952 -1024 64 ) +4 867 878 (1024 -1024 64 ) (1024 -896 64 ) (1472 -896 64 ) (1472 -1024 64 ) +5 867 873 (1728 -896 64 ) (2048 -896 64 ) (2048 -940 64 ) (2025.142944 -960 64 ) (1728 -960 64 ) +4 867 868 (1952 -1024 64 ) (2048 -940 66.250008 ) (2048 -940 192 ) (1952 -1024 192 ) +4 868 945 (2048 -1024 65.200005 ) (2048 -1024 192 ) (1952 -1024 192 ) (1952 -1024 64 ) +4 869 877 (1472 -192 64 ) (1472 0 64 ) (1472 0 0 ) (1472 -192 0 ) +4 869 875 (1472 -192 0 ) (1472 0 0 ) (1536 0 0 ) (1536 -192 0 ) +4 869 874 (1536 0 0 ) (2048 0 0 ) (2048 -192 0 ) (1536 -192 0 ) +4 869 870 (1472 -192 64 ) (1472 -192 0 ) (1568 -192 0 ) (1568 -192 64 ) +4 869 871 (1664 -192 0 ) (1920 -192 0 ) (1920 -192 64 ) (1664 -192 64 ) +4 870 877 (1472 -256 64 ) (1472 -192 64 ) (1472 -192 0 ) (1472 -256 0 ) +5 870 875 (1472 -256 0 ) (1472 -192 0 ) (1536 -192 0 ) (1536 -224 0 ) (1504 -256 0 ) +3 870 874 (1536 -192 0 ) (1568 -192 0 ) (1536 -224 0 ) +4 870 872 (1472 -256 64 ) (1472 -256 0 ) (1504 -256 0 ) (1504 -256 64 ) +4 871 874 (1664 -192 0 ) (1920 -192 0 ) (1920 -256 0 ) (1792 -256 0 ) +4 872 877 (1472 -288 64 ) (1472 -256 64 ) (1472 -256 0 ) (1472 -288 0 ) +3 872 875 (1472 -288 0 ) (1472 -256 0 ) (1504 -256 0 ) +4 873 874 (1728 -512 0 ) (2048 -512 0 ) (2048 -960 0 ) (1728 -960 0 ) +4 874 966 (2048 -1024 -1284 ) (2048 -1024 -128 ) (1536 -1024 -128 ) (1536 -1024 -1284 ) +4 874 965 (2048 -1024 -128 ) (2048 -1024 0 ) (1536 -1024 0 ) (1536 -1024 -128 ) +4 874 876 (1536 -960 -1284 ) (1536 -1024 -1284 ) (1536 -1024 -128 ) (1536 -960 -128 ) +4 874 875 (1536 0 -1284 ) (1536 -960 -1284 ) (1536 -960 0 ) (1536 0 0 ) +4 875 880 (1472 -960 0 ) (1472 -896 0 ) (1472 -896 -1284 ) (1472 -960 -1284 ) +4 875 877 (1472 -896 0 ) (1472 0 0 ) (1472 0 -1284 ) (1472 -896 -1284 ) +4 875 876 (1472 -960 -1284 ) (1536 -960 -1284 ) (1536 -960 -128 ) (1472 -960 -128 ) +4 876 966 (1472 -1024 -128 ) (1472 -1024 -1284 ) (1536 -1024 -1284 ) (1536 -1024 -128 ) +4 876 880 (1472 -1024 -1284 ) (1472 -1024 -128 ) (1472 -960 -128 ) (1472 -960 -1284 ) +4 877 2290 (1024 -896 -1284 ) (1024 -896 -192 ) (1024 0 -192 ) (1024 0 -1284 ) +4 877 2288 (1024 -896 -192 ) (1024 -896 -128 ) (1024 0 -128 ) (1024 0 -192 ) +4 877 2265 (1024 -896 -128 ) (1024 -896 0 ) (1024 -832 0 ) (1024 -832 -128 ) +4 877 2264 (1024 -832 0 ) (1024 0 0 ) (1024 0 -128 ) (1024 -832 -128 ) +4 877 2251 (1024 -896 0 ) (1024 -896 64 ) (1024 0 64 ) (1024 0 0 ) +4 877 882 (1024 -896 32 ) (1024 -896 -1284 ) (1216 -896 -1284 ) (1216 -896 32 ) +4 877 881 (1216 -896 -16 ) (1216 -896 -1284 ) (1344 -896 -1284 ) (1344 -896 -16 ) +4 877 880 (1472 -896 -1284 ) (1472 -896 32 ) (1344 -896 32 ) (1344 -896 -1284 ) +4 877 879 (1344 -896 56 ) (1216 -896 56 ) (1232 -896 48 ) (1328 -896 48 ) +4 877 878 (1472 -896 64 ) (1024 -896 64 ) (1024 -896 56 ) (1456 -896 56 ) +4 878 2396 (1024 -1024 56 ) (1024 -1024 64 ) (1024 -928 64 ) (1024 -928 56 ) +4 878 2252 (1024 -928 64 ) (1024 -896 64 ) (1024 -896 56 ) (1024 -928 56 ) +4 878 978 (1472 -1024 64 ) (1024 -1024 64 ) (1024 -1024 56 ) (1456 -1024 56 ) +4 878 879 (1216 -896 56 ) (1344 -896 56 ) (1344 -1024 56 ) (1216 -1024 56 ) +4 879 983 (1344 -1024 56 ) (1216 -1024 56 ) (1232 -1024 48 ) (1328 -1024 48 ) +4 880 1031 (1472 -1024 -1284 ) (1472 -1024 -192 ) (1344 -1024 -192 ) (1344 -1024 -1284 ) +4 880 1030 (1472 -1024 -192 ) (1472 -1024 -128 ) (1344 -1024 -128 ) (1344 -1024 -192 ) +4 880 1025 (1472 -1024 -128 ) (1472 -1024 -64 ) (1344 -1024 -64 ) (1344 -1024 -128 ) +4 880 1009 (1472 -1024 -64 ) (1472 -1024 0 ) (1344 -1024 0 ) (1344 -1024 -64 ) +4 880 984 (1472 -1024 0 ) (1472 -1024 32 ) (1344 -1024 32 ) (1344 -1024 0 ) +4 880 881 (1344 -1024 -1284 ) (1344 -1024 -16 ) (1344 -896 -16 ) (1344 -896 -1284 ) +4 881 1031 (1344 -1024 -1284 ) (1344 -1024 -192 ) (1216 -1024 -192 ) (1216 -1024 -1284 ) +4 881 1030 (1344 -1024 -192 ) (1344 -1024 -128 ) (1216 -1024 -128 ) (1216 -1024 -192 ) +4 881 1026 (1344 -1024 -128 ) (1344 -1024 -64 ) (1216 -1024 -64 ) (1216 -1024 -128 ) +4 881 1010 (1344 -1024 -64 ) (1344 -1024 -16 ) (1216 -1024 -16 ) (1216 -1024 -64 ) +4 881 882 (1216 -896 -16 ) (1216 -896 -1284 ) (1216 -1024 -1284 ) (1216 -1024 -16 ) +4 882 2428 (1024 -1024 -1284 ) (1024 -1024 -192 ) (1024 -928 -192 ) (1024 -928 -1284 ) +4 882 2426 (1024 -1024 -192 ) (1024 -1024 -128 ) (1024 -928 -128 ) (1024 -928 -192 ) +4 882 2419 (1024 -1024 -128 ) (1024 -1024 -64 ) (1024 -928 -64 ) (1024 -928 -128 ) +4 882 2417 (1024 -1024 -64 ) (1024 -1024 -32 ) (1024 -928 -32 ) (1024 -928 -64 ) +4 882 2399 (1024 -1024 -32 ) (1024 -1024 0 ) (1024 -928 0 ) (1024 -928 -32 ) +4 882 2397 (1024 -1024 0 ) (1024 -1024 32 ) (1024 -928 32 ) (1024 -928 0 ) +4 882 2290 (1024 -896 -192 ) (1024 -896 -1284 ) (1024 -928 -1284 ) (1024 -928 -192 ) +4 882 2288 (1024 -896 -128 ) (1024 -896 -192 ) (1024 -928 -192 ) (1024 -928 -128 ) +4 882 2265 (1024 -896 0 ) (1024 -896 -128 ) (1024 -928 -128 ) (1024 -928 0 ) +4 882 2253 (1024 -928 32 ) (1024 -896 32 ) (1024 -896 0 ) (1024 -928 0 ) +4 882 1031 (1216 -1024 -1284 ) (1216 -1024 -192 ) (1024 -1024 -192 ) (1024 -1024 -1284 ) +4 882 1030 (1216 -1024 -192 ) (1216 -1024 -128 ) (1024 -1024 -128 ) (1024 -1024 -192 ) +4 882 1027 (1216 -1024 -128 ) (1216 -1024 -64 ) (1024 -1024 -64 ) (1024 -1024 -128 ) +4 882 1012 (1216 -1024 -64 ) (1216 -1024 0 ) (1024 -1024 0 ) (1024 -1024 -64 ) +4 882 985 (1216 -1024 0 ) (1216 -1024 32 ) (1024 -1024 32 ) (1024 -1024 0 ) +4 883 886 (4096 -2048 -1284 ) (4096 -2048 5542.669922 ) (4096 -1024 5542.669922 ) (4096 -1024 -1284 ) +4 883 884 (4112 -2048 5542.669922 ) (4096 -2048 5542.669922 ) (4096 -2048 -1284 ) (4112 -2048 -1284 ) +4 884 1032 (4096 -3072 -1284 ) (4096 -3072 5542.669922 ) (4096 -2048 5542.669922 ) (4096 -2048 -1284 ) +4 884 885 (4112 -3072 5542.669922 ) (4096 -3072 5542.669922 ) (4096 -3072 -1284 ) (4112 -3072 -1284 ) +4 885 1260 (4112 -4096 5542.669922 ) (4096 -4096 5542.669922 ) (4096 -4096 -1284 ) (4112 -4096 -1284 ) +4 885 1033 (4096 -4096 -1284 ) (4096 -4096 5542.669922 ) (4096 -3072 5542.669922 ) (4096 -3072 -1284 ) +4 886 1032 (4096 -2048 -1284 ) (4096 -2048 5542.669922 ) (3072 -2048 5542.669922 ) (3072 -2048 -1284 ) +4 886 938 (3072 -2048 -1284 ) (3072 -2048 0 ) (3072 -1024 0 ) (3072 -1024 -1284 ) +4 886 935 (3072 -2048 0 ) (3072 -2048 64 ) (3072 -1856 64 ) (3072 -1856 0 ) +4 886 934 (3072 -1856 64 ) (3072 -1728 64 ) (3072 -1728 0 ) (3072 -1856 0 ) +4 886 933 (3072 -1728 64 ) (3072 -1600 64 ) (3072 -1600 0 ) (3072 -1728 0 ) +4 886 932 (3072 -1600 64 ) (3072 -1024 64 ) (3072 -1024 0 ) (3072 -1600 0 ) +4 886 916 (3072 -2048 64 ) (3072 -2048 256 ) (3072 -1600 256 ) (3072 -1600 64 ) +4 886 912 (3072 -1216 256 ) (3072 -1024 256 ) (3072 -1024 96 ) (3072 -1216 96 ) +4 886 910 (3072 -2048 256 ) (3072 -2048 384 ) (3072 -1856 384 ) (3072 -1856 256 ) +4 886 906 (3072 -2048 384 ) (3072 -2048 448 ) (3072 -1856 448 ) (3072 -1856 384 ) +5 886 896 (3072 -1248 448 ) (3072 -1024 448 ) (3072 -1024 256 ) (3072 -1200 256 ) (3072 -1248 320 ) +5 886 897 (3072 -1472.003784 448 ) (3072 -1248 448 ) (3072 -1248 256 ) (3072 -1568 256 ) (3072 -1568 320.005157 ) +4 886 893 (3072 -1856 448 ) (3072 -1472.003784 448 ) (3072 -1616.003906 256 ) (3072 -1856 256 ) +4 886 888 (3072 -2048 464 ) (3072 -2048 5542.669922 ) (3072 -1664 5542.669922 ) (3072 -1664 464 ) +4 886 887 (3072 -1664 5542.669922 ) (3072 -1024 5542.669922 ) (3072 -1024 464 ) (3072 -1664 464 ) +4 886 892 (3072 -2048 448 ) (3072 -2048 464 ) (3072 -1024 464 ) (3072 -1024 448 ) +4 887 939 (2048 -1024 5542.669922 ) (2048 -1024 464 ) (2048 -1664 464 ) (2048 -1664 5542.669922 ) +3 887 891 (2368.017334 -1664 464 ) (2560 -1664 464 ) (2560 -1664 575.987854 ) +5 887 890 (2048 -1664 464 ) (2176 -1664 464 ) (2271.989990 -1664 575.988403 ) (2271.989990 -1664 5542.669922 ) (2048 -1664 5542.669922 ) +5 887 889 (2271.989990 -1664 464 ) (2368.017334 -1664 464 ) (2560 -1664 575.987854 ) (2560 -1664 5542.669922 ) (2271.989990 -1664 5542.669922 ) +4 887 888 (2560 -1664 464 ) (3072 -1664 464 ) (3072 -1664 5542.669922 ) (2560 -1664 5542.669922 ) +4 887 892 (2048 -1664 464 ) (2048 -1024 464 ) (3072 -1024 464 ) (3072 -1664 464 ) +4 888 1034 (3072 -2048 464 ) (3072 -2048 5542.669922 ) (2176 -2048 5542.669922 ) (2176 -2048 464 ) +4 888 891 (2560 -1664 575.987305 ) (2560 -1664 464 ) (2271.989990 -1952.010010 464 ) (2271.989990 -1952.010010 575.994141 ) +4 888 890 (2271.989990 -1952.010010 575.994141 ) (2176 -2048 575.996399 ) (2176 -2048 5542.669922 ) (2271.989990 -1952.010010 5542.669922 ) +4 888 889 (2560 -1664 5542.669922 ) (2560 -1664 575.987305 ) (2271.989990 -1952.010010 575.994141 ) (2271.989990 -1952.010010 5542.669922 ) +4 888 892 (2560 -1664 464 ) (3072 -1664 464 ) (3072 -2048 464 ) (2176 -2048 464 ) +4 889 891 (2560 -1664 575.989258 ) (2271.989990 -1952.010010 575.995789 ) (2271.989990 -1760.026001 464 ) (2368.019531 -1664 464 ) +5 889 890 (2271.989990 -1664 5542.669922 ) (2271.989990 -1664 575.988281 ) (2271.989990 -1952.002441 575.988403 ) (2271.989990 -1952.015625 575.996094 ) (2271.989990 -1952.015381 5542.669922 ) +3 889 892 (2271.989990 -1664 464 ) (2368.017334 -1664 464 ) (2271.989990 -1760.023560 464 ) +4 890 1035 (2176 -2048 5542.669922 ) (2048 -2048 5542.669922 ) (2048 -2048 501.331055 ) (2176 -2048 575.996399 ) +5 890 939 (2048 -1664 464 ) (2048 -1984.004883 464 ) (2048 -2048 501.331177 ) (2048 -2048 5542.669922 ) (2048 -1664 5542.669922 ) +4 890 892 (2048 -1984.004883 464 ) (2048 -1664 464 ) (2176 -1664 464 ) (2176 -1856.009888 464 ) +4 891 892 (2271.989990 -1760.023682 464 ) (2368.017334 -1664 464 ) (2560 -1664 464 ) (2271.989990 -1952.010010 464 ) +4 892 1036 (3072 -2048 448 ) (3072 -2048 464 ) (2048 -2048 464 ) (2048 -2048 448 ) +4 892 940 (2048 -1024 464 ) (2048 -1024 448 ) (2048 -2048 448 ) (2048 -2048 464 ) +3 892 907 (2239.989990 -1856 448 ) (2368.002930 -1856 448 ) (2239.989990 -1984 448 ) +4 892 906 (3072 -2048 448 ) (2175.982910 -2048 448 ) (2368.002930 -1856 448 ) (3072 -1856 448 ) +3 892 905 (2048 -1984 448 ) (2048 -1856 448 ) (2176 -1856 448 ) +3 892 902 (2048 -1344 448 ) (2048 -1024 448 ) (2368 -1024 448 ) +4 892 900 (2048 -1472.003784 448 ) (2048 -1344 448 ) (2144 -1248 448 ) (2144 -1472.003784 448 ) +6 892 899 (2144 -1248 448 ) (2368 -1024 448 ) (2528 -1024 448 ) (2528 -1472.003784 448 ) (2304.003906 -1472.003784 448 ) (2144 -1312 448 ) +3 892 898 (2304.003906 -1472.003784 448 ) (2144 -1472.003784 448 ) (2144 -1312 448 ) +4 892 896 (2528 -1024 448 ) (3072 -1024 448 ) (3072 -1248 448 ) (2528 -1248 448 ) +4 892 897 (3072 -1248 448 ) (3072 -1472.003784 448 ) (2528 -1472.003784 448 ) (2528 -1248 448 ) +4 892 894 (2176 -1472.003784 448 ) (2688 -1472.003784 448 ) (2688 -1664 448 ) (2176 -1664 448 ) +4 892 893 (2688 -1472.003784 448 ) (3072 -1472.003784 448 ) (3072 -1856 448 ) (2688 -1856 448 ) +4 892 895 (2048 -1856 448 ) (2048 -1472.003784 448 ) (2176 -1472.003784 448 ) (2176 -1856 448 ) +4 893 924 (2688 -1616.003906 256 ) (2752 -1616.003906 256 ) (2752 -1856 256 ) (2688 -1856 256 ) +4 893 916 (2752 -1616.003906 256 ) (3072 -1616.003906 256 ) (3072 -1856 256 ) (2752 -1856 256 ) +4 893 910 (2688 -1856 256 ) (3072 -1856 256 ) (3072 -1856 384 ) (2688 -1856 384 ) +4 893 906 (3072 -1856 384 ) (3072 -1856 448 ) (2688 -1856 448 ) (2688 -1856 384 ) +4 893 897 (2688 -1568 320.008606 ) (2688 -1472.006714 448 ) (3072 -1472.006714 448 ) (3072 -1568 320.008606 ) +4 893 894 (2688 -1472.007813 448 ) (2688 -1616.007080 256 ) (2688 -1664 256 ) (2688 -1664 448 ) +4 894 925 (2176 -1616.003906 256 ) (2688 -1616.003906 256 ) (2688 -1664 256 ) (2176 -1664 256 ) +3 894 904 (2176 -1600.012695 277.324982 ) (2176 -1568 320.008606 ) (2208.012695 -1568 320.008606 ) +4 894 899 (2304.006836 -1472.006714 448 ) (2528 -1472.006714 448 ) (2528 -1568 320.008606 ) (2208.012695 -1568 320.008606 ) +4 894 898 (2176 -1568 320.008606 ) (2176 -1472.006714 448 ) (2304.006836 -1472.006714 448 ) (2208.012695 -1568 320.008606 ) +4 894 897 (2528 -1568 320.008606 ) (2528 -1472.006714 448 ) (2688 -1472.006714 448 ) (2688 -1568 320.008606 ) +4 894 895 (2176 -1472.007813 448 ) (2176 -1616.007080 256 ) (2176 -1664 256 ) (2176 -1664 448 ) +4 895 944 (2048 -1616.003906 256 ) (2048 -1856 256 ) (2048 -1856 384 ) (2048 -1520.003784 384 ) +4 895 941 (2048 -1856 384 ) (2048 -1856 448 ) (2048 -1472.003784 448 ) (2048 -1520.003784 384 ) +4 895 926 (2048 -1856 256 ) (2048 -1616.003906 256 ) (2176 -1616.003906 256 ) (2176 -1856 256 ) +4 895 905 (2048 -1856 256 ) (2176 -1856 256 ) (2176 -1856 448 ) (2048 -1856 448 ) +5 895 904 (2160.006348 -1616.006348 256 ) (2048 -1616.006348 256 ) (2048 -1568 320.008606 ) (2176 -1568 320.008606 ) (2176 -1600.012695 277.324982 ) +4 895 900 (2048 -1568 320.008606 ) (2048 -1472.006714 448 ) (2144 -1472.006714 448 ) (2144 -1568 320.008606 ) +4 895 898 (2144 -1472.006714 448 ) (2176 -1472.006714 448 ) (2176 -1568 320.008606 ) (2144 -1568 320.008606 ) +4 896 912 (2575.996094 -1024 256 ) (3072 -1024 256 ) (3072 -1200 256 ) (2575.996094 -1200 256 ) +4 896 899 (2528 -1248 319.996216 ) (2528 -1248 448 ) (2528 -1024 448 ) (2528 -1024 319.996216 ) +4 896 897 (2528 -1248 448 ) (2528 -1248 320 ) (3072 -1248 320 ) (3072 -1248 448 ) +4 897 917 (2752 -1568 256 ) (2528 -1568 256 ) (2528 -1248 256 ) (2752 -1248 256 ) +5 897 899 (2528 -1248 256 ) (2528 -1568 256 ) (2528 -1568 320.003479 ) (2528 -1472.002441 448 ) (2528 -1248 448 ) +3 898 904 (2208.011719 -1568 320.007813 ) (2144 -1568 320.007813 ) (2144 -1568 277.333344 ) +3 898 901 (2144 -1568 277.333344 ) (2144 -1568 320 ) (2144 -1504 320 ) +5 898 900 (2144 -1568 320 ) (2144 -1568 320.007813 ) (2144 -1472.004395 448 ) (2144 -1312 448 ) (2144 -1504 320 ) +5 898 899 (2208.003906 -1568 320.005188 ) (2208 -1568 320.002533 ) (2144 -1504 320.002655 ) (2144 -1312.003906 448 ) (2304 -1472.003784 448 ) +6 899 918 (2144 -1248 256 ) (2176 -1216 256 ) (2528 -1216 256 ) (2528 -1568 256 ) (2208 -1568 256 ) (2144 -1504 256 ) +4 899 913 (2176 -1216 256 ) (2368 -1024 256 ) (2528 -1024 256 ) (2528 -1216 256 ) +4 899 902 (2144 -1247.998047 319.998718 ) (2144 -1247.998047 448 ) (2367.998047 -1024 448 ) (2367.998047 -1024 319.998718 ) +4 899 900 (2144 -1248.005859 448 ) (2144 -1248.005859 320 ) (2144 -1504 320 ) (2144 -1312 448 ) +5 900 944 (2048 -1344 256 ) (2048 -1568 256 ) (2048 -1568 320.005157 ) (2048 -1520.003784 384 ) (2048 -1344 384 ) +4 900 941 (2048 -1520.003784 384 ) (2048 -1472.003784 448 ) (2048 -1344 448 ) (2048 -1344 384 ) +3 900 920 (2048 -1344 256 ) (2096 -1296 256 ) (2096 -1344 256 ) +4 900 922 (2048 -1568 256 ) (2048 -1472 256 ) (2096 -1472 256 ) (2096 -1568 256 ) +5 900 904 (2048 -1568 256 ) (2096 -1568 256 ) (2144 -1568 320 ) (2144 -1568 320.007813 ) (2048 -1568 320.007813 ) +4 900 903 (2096 -1295.998047 256 ) (2048 -1343.998047 256 ) (2048 -1343.998047 319.998718 ) (2144 -1247.998047 320 ) +4 900 902 (2048 -1343.998047 319.998718 ) (2048 -1343.998047 448 ) (2144 -1247.998047 448 ) (2144 -1247.998047 320 ) +4 900 901 (2144 -1503.991211 320.005829 ) (2144 -1568 320.005829 ) (2095.995605 -1568 256 ) (2095.995605 -1551.995605 256 ) +3 901 922 (2112 -1568 256 ) (2096 -1568 256 ) (2096 -1552 256 ) +4 901 904 (2096 -1568 256 ) (2112 -1568 256 ) (2144 -1568 277.333313 ) (2144 -1568 320 ) +4 902 944 (2048 -1280 277.333344 ) (2048 -1344 320 ) (2048 -1344 384 ) (2048 -1280 384 ) +5 902 942 (2048 -1024 384 ) (2048 -1024 256 ) (2048 -1248 256 ) (2048 -1280 277.333344 ) (2048 -1280 384 ) +4 902 941 (2048 -1024 448 ) (2048 -1024 384 ) (2048 -1344 384 ) (2048 -1344 448 ) +3 902 920 (2048 -1248 256 ) (2048 -1216 256 ) (2080 -1216 256 ) +5 902 915 (2048 -1216 256 ) (2048 -1024 256 ) (2272 -1024 256 ) (2112 -1184 256 ) (2075.428711 -1216 256 ) +3 902 914 (2112 -1184 256 ) (2080 -1216 256 ) (2075.428711 -1216 256 ) +4 902 903 (2144 -1248 320 ) (2048 -1344 320 ) (2048 -1248 256 ) (2096 -1200 256 ) +4 903 944 (2048 -1280 256 ) (2048 -1344 256 ) (2048 -1344 320 ) (2048 -1280 277.333344 ) +3 903 942 (2048 -1248 256 ) (2048 -1280 256 ) (2048 -1280 277.333344 ) +5 903 920 (2048 -1344 256 ) (2048 -1248 256 ) (2080 -1216 256 ) (2096 -1216 256 ) (2096 -1296 256 ) +3 903 914 (2080 -1216 256 ) (2096 -1200 256 ) (2096 -1216 256 ) +3 904 944 (2048 -1568 256 ) (2048 -1616.003906 256 ) (2048 -1568 320.005157 ) +4 904 926 (2048 -1616.003906 256 ) (2048 -1600 256 ) (2144 -1600 256 ) (2160.003906 -1616.003906 256 ) +4 904 923 (2048 -1600 256 ) (2048 -1568 256 ) (2112 -1568 256 ) (2144 -1600 256 ) +4 905 944 (2048 -1856 256 ) (2048 -1984 256 ) (2048 -1984 384 ) (2048 -1856 384 ) +4 905 941 (2048 -1984 384 ) (2048 -1984 448 ) (2048 -1856 448 ) (2048 -1856 384 ) +3 905 927 (2048 -1984 256 ) (2048 -1856 256 ) (2176 -1856 256 ) +4 905 908 (2064 -1968 256 ) (2112 -1920 256 ) (2112 -1920 384 ) (2064 -1968 384 ) +4 906 1037 (3072 -2048 384 ) (3072 -2048 448 ) (2175.982910 -2048 448 ) (2175.992920 -2048 384 ) +5 906 910 (2368.012939 -1856 384 ) (3072 -1856 384 ) (3072 -2048 384 ) (2240 -2048 384 ) (2207.998047 -2015.998047 384 ) +3 906 908 (2240 -2048 384 ) (2175.992920 -2048 384 ) (2207.998047 -2015.998047 384 ) +4 906 907 (2368.001709 -1856 448 ) (2368.011719 -1856 384 ) (2239.989990 -1984.008423 384 ) (2239.989990 -1983.997559 448 ) +3 907 911 (2239.989990 -1856 384 ) (2368.012939 -1856 384 ) (2239.989990 -1984.009644 384 ) +4 908 1039 (2240 -2048 384 ) (2144 -2048 384 ) (2144 -2048 256 ) (2240 -2048 256 ) +3 908 928 (2208 -2016 256 ) (2240 -2048 256 ) (2176 -2048 256 ) +4 908 910 (2240 -2048 256 ) (2208 -2016 256 ) (2208 -2016 384 ) (2240 -2048 384 ) +4 909 1040 (2080 -2048 384 ) (2048 -2048 384 ) (2048 -2048 256 ) (2080 -2048 256 ) +4 909 943 (2048 -2016 256 ) (2048 -2048 256 ) (2048 -2048 384 ) (2048 -2016 384 ) +4 910 1039 (3072 -2048 256 ) (3072 -2048 384 ) (2240 -2048 384 ) (2240 -2048 256 ) +5 910 928 (2368 -1856 256 ) (2752 -1856 256 ) (2752 -2048 256 ) (2240 -2048 256 ) (2208 -2016 256 ) +4 910 916 (2752 -1856 256 ) (3072 -1856 256 ) (3072 -2048 256 ) (2752 -2048 256 ) +4 910 911 (2239.989990 -1984.010010 384 ) (2368 -1856 384 ) (2368 -1856 256 ) (2239.989990 -1984.010010 256 ) +3 911 929 (2239.989990 -1856 256 ) (2368 -1856 256 ) (2239.989990 -1984.010010 256 ) +4 913 932 (2336 -1024 64 ) (2528 -1024 64 ) (2528 -1216 64 ) (2144 -1216 64 ) +4 913 918 (2144 -1216 64 ) (2528 -1216 64 ) (2528 -1216 256 ) (2144 -1216 256 ) +4 914 932 (2294.857178 -1024 64 ) (2304 -1024 64 ) (2112 -1216 64 ) (2112 -1184 64 ) +4 914 920 (2075.428467 -1216 64 ) (2112 -1216 64 ) (2112 -1216 256 ) (2075.428467 -1216 256 ) +5 914 915 (2112 -1184 64 ) (2075.429199 -1216 64 ) (2075.429199 -1216 256 ) (2294.857422 -1024 256 ) (2294.857422 -1024 68.285721 ) +5 915 945 (2048 -1024 256 ) (2048 -1024 65.200012 ) (2048 -1120 64 ) (2048 -1216 64 ) (2048 -1216 256 ) +4 915 920 (2048 -1216 64 ) (2075.428467 -1216 64 ) (2075.428467 -1216 256 ) (2048 -1216 256 ) +4 916 1043 (3072 -2048 64 ) (3072 -2048 192 ) (2752 -2048 192 ) (2752 -2048 64 ) +4 916 1042 (3072 -2048 192 ) (3072 -2048 256 ) (2752 -2048 256 ) (2752 -2048 192 ) +4 916 935 (3072 -2048 64 ) (2752 -2048 64 ) (2752 -1856 64 ) (3072 -1856 64 ) +4 916 934 (2752 -1856 64 ) (2752 -1728 64 ) (3072 -1728 64 ) (3072 -1856 64 ) +4 916 933 (2752 -1728 64 ) (2752 -1600 64 ) (3072 -1600 64 ) (3072 -1728 64 ) +4 916 928 (2752 -1856 64 ) (2752 -2048 64 ) (2752 -2048 256 ) (2752 -1856 256 ) +4 916 924 (2752 -1600 64 ) (2752 -1856 64 ) (2752 -1856 256 ) (2752 -1600 256 ) +4 917 932 (2752 -1248 64 ) (2752 -1568 64 ) (2528 -1568 64 ) (2528 -1248 64 ) +4 917 918 (2528 -1248 64 ) (2528 -1568 64 ) (2528 -1568 256 ) (2528 -1248 256 ) +4 918 932 (2144 -1216 64 ) (2528 -1216 64 ) (2528 -1568 64 ) (2144 -1568 64 ) +3 919 932 (2144 -1568 64 ) (2112 -1568 64 ) (2112 -1536 64 ) +4 919 923 (2112 -1568 64 ) (2144 -1568 64 ) (2144 -1568 256 ) (2112 -1568 256 ) +4 919 922 (2112 -1536 64 ) (2112 -1568 64 ) (2112 -1568 256 ) (2112 -1536 256 ) +4 920 945 (2048 -1216 64 ) (2048 -1344 64 ) (2048 -1344 256 ) (2048 -1216 256 ) +4 920 921 (2048 -1344 64 ) (2112 -1344 64 ) (2112 -1344 192 ) (2048 -1344 192 ) +4 921 946 (2048 -1344 64 ) (2048 -1472 64 ) (2048 -1472 192 ) (2048 -1344 192 ) +4 921 922 (2048 -1472 64 ) (2112 -1472 64 ) (2112 -1472 192 ) (2048 -1472 192 ) +4 922 955 (2048 -1504 64 ) (2048 -1568 64 ) (2048 -1568 192 ) (2048 -1504 192 ) +4 922 954 (2048 -1568 192 ) (2048 -1568 256 ) (2048 -1504 256 ) (2048 -1504 192 ) +4 922 947 (2048 -1472 64 ) (2048 -1504 64 ) (2048 -1504 256 ) (2048 -1472 256 ) +4 922 923 (2048 -1568 64 ) (2112 -1568 64 ) (2112 -1568 256 ) (2048 -1568 256 ) +4 923 955 (2048 -1568 64 ) (2048 -1600 64 ) (2048 -1600 192 ) (2048 -1568 192 ) +4 923 954 (2048 -1600 192 ) (2048 -1600 256 ) (2048 -1568 256 ) (2048 -1568 192 ) +4 923 932 (2112 -1568 64 ) (2144 -1568 64 ) (2176 -1600 64 ) (2112 -1600 64 ) +4 923 926 (2048 -1600 64 ) (2176 -1600 64 ) (2176 -1600 256 ) (2048 -1600 256 ) +4 924 934 (2752 -1728 64 ) (2752 -1856 64 ) (2688 -1856 64 ) (2688 -1728 64 ) +4 924 933 (2688 -1600 64 ) (2752 -1600 64 ) (2752 -1728 64 ) (2688 -1728 64 ) +4 924 928 (2688 -1856 64 ) (2752 -1856 64 ) (2752 -1856 256 ) (2688 -1856 256 ) +4 924 925 (2688 -1600 256 ) (2688 -1600 64 ) (2688 -1664 64 ) (2688 -1664 256 ) +4 925 933 (2240 -1600 64 ) (2688 -1600 64 ) (2688 -1664 64 ) (2240 -1664 64 ) +4 925 926 (2176 -1600 256 ) (2176 -1600 64 ) (2176 -1664 64 ) (2176 -1664 256 ) +4 926 955 (2048 -1600 64 ) (2048 -1856 64 ) (2048 -1856 192 ) (2048 -1600 192 ) +4 926 954 (2048 -1856 192 ) (2048 -1856 256 ) (2048 -1600 256 ) (2048 -1600 192 ) +4 926 927 (2048 -1856 64 ) (2176 -1856 64 ) (2176 -1856 256 ) (2048 -1856 256 ) +4 927 955 (2048 -1856 64 ) (2048 -1984 64 ) (2048 -1984 192 ) (2048 -1856 192 ) +4 927 954 (2048 -1984 192 ) (2048 -1984 256 ) (2048 -1856 256 ) (2048 -1856 192 ) +4 927 931 (2048 -1984 64 ) (2144 -1888 64 ) (2144 -1888 192 ) (2048 -1984 192 ) +4 928 1043 (2176 -2048 192 ) (2176 -2048 64 ) (2752 -2048 64 ) (2752 -2048 192 ) +4 928 1042 (2752 -2048 256 ) (2176 -2048 256 ) (2176 -2048 192 ) (2752 -2048 192 ) +4 928 935 (2752 -2048 64 ) (2176 -2048 64 ) (2368 -1856 64 ) (2752 -1856 64 ) +4 928 931 (2239.989990 -1984.010010 64 ) (2176 -2048 64 ) (2176 -2048 192 ) (2239.989990 -1984.010010 192 ) +4 928 930 (2368 -1856 192 ) (2368 -1856 64 ) (2239.989990 -1984.010010 64 ) (2239.989990 -1984.010010 192 ) +4 928 929 (2368 -1856 256 ) (2368 -1856 192 ) (2239.989990 -1984.010010 192 ) (2239.989990 -1984.010010 256 ) +3 929 930 (2368 -1856 192 ) (2239.989990 -1984.010010 192 ) (2239.989990 -1856 192 ) +3 930 936 (2239.989990 -1856 64 ) (2304 -1856 64 ) (2239.989990 -1920.010010 64 ) +4 930 935 (2304 -1856 64 ) (2368 -1856 64 ) (2239.989990 -1984.010132 64 ) (2239.989990 -1920.010010 64 ) +4 931 1043 (2048 -2048 192 ) (2048 -2048 64 ) (2176 -2048 64 ) (2176 -2048 192 ) +4 931 955 (2048 -1984 64 ) (2048 -2048 64 ) (2048 -2048 192 ) (2048 -1984 192 ) +3 931 937 (2176 -2048 64 ) (2144 -2048 64 ) (2176 -2016 64 ) +5 931 935 (2176 -2048 64 ) (2176 -1984 64 ) (2207.996582 -1952.003418 64 ) (2239.989990 -1984 64 ) (2239.989990 -1984.010132 64 ) +4 932 938 (2112 -1024 0 ) (3072 -1024 0 ) (3072 -1600 0 ) (2112 -1600 0 ) +4 932 933 (2240 -1600 0 ) (3072 -1600 0 ) (3072 -1600 64 ) (2240 -1600 64 ) +4 933 938 (2240 -1600 0 ) (3072 -1600 0 ) (3072 -1728 0 ) (2240 -1728 0 ) +4 933 934 (2240 -1728 0 ) (3072 -1728 0 ) (3072 -1728 64 ) (2240 -1728 64 ) +4 934 938 (2240 -1728 0 ) (3072 -1728 0 ) (3072 -1856 0 ) (2240 -1856 0 ) +4 934 936 (2240 -1856 0 ) (2304 -1856 0 ) (2304 -1856 64 ) (2240 -1856 64 ) +4 934 935 (2304 -1856 0 ) (3072 -1856 0 ) (3072 -1856 64 ) (2304 -1856 64 ) +4 935 1044 (3072 -2048 0 ) (3072 -2048 64 ) (2176 -2048 64 ) (2176 -2048 0 ) +5 935 938 (2304 -1856 0 ) (3072 -1856 0 ) (3072 -2048 0 ) (2176 -2048 0 ) (2176 -1984 0 ) +4 935 937 (2176 -2016 0 ) (2176 -2048 0 ) (2176 -2048 64 ) (2176 -2016 64 ) +4 935 936 (2304 -1856 64 ) (2304 -1856 0 ) (2208 -1952 0 ) (2208 -1952 64 ) +4 936 938 (2176 -1856 0 ) (2304 -1856 0 ) (2208 -1952 0 ) (2176 -1920 0 ) +4 937 1044 (2176 -2048 64 ) (2144 -2048 64 ) (2144 -2048 0 ) (2176 -2048 0 ) +3 937 938 (2176 -2016 0 ) (2176 -2048 0 ) (2144 -2048 0 ) +4 938 1045 (3072 -2048 -1284 ) (3072 -2048 0 ) (2048 -2048 0 ) (2048 -2048 -1284 ) +4 938 972 (2048 -1856 -1284 ) (2048 -2048 -1284 ) (2048 -2048 0 ) (2048 -1856 0 ) +4 938 970 (2048 -1728 -1284 ) (2048 -1856 -1284 ) (2048 -1856 0 ) (2048 -1728 0 ) +4 938 969 (2048 -1600 -1284 ) (2048 -1728 -1284 ) (2048 -1728 -128 ) (2048 -1600 -128 ) +4 938 968 (2048 -1728 -128 ) (2048 -1728 0 ) (2048 -1600 0 ) (2048 -1600 -128 ) +4 938 966 (2048 -1024 -128 ) (2048 -1024 -1284 ) (2048 -1600 -1284 ) (2048 -1600 -128 ) +4 938 965 (2048 -1024 0 ) (2048 -1024 -128 ) (2048 -1600 -128 ) (2048 -1600 0 ) +4 939 1047 (2048 -2048 501.331177 ) (2048 -2048 1136 ) (1472 -2048 464 ) (1984.002441 -2048 464 ) +4 939 1046 (2048 -2048 1136 ) (2048 -2048 5542.669922 ) (1472 -2048 5542.669922 ) (1472 -2048 464 ) +4 939 1023 (1472 -2048 464 ) (1472 -2048 5542.669922 ) (1472 -1882 5542.669922 ) (1472 -1882 464 ) +4 939 1016 (1472 -1882 5542.669922 ) (1472 -1864 5542.669922 ) (1472 -1864 464 ) (1472 -1882 464 ) +4 939 1003 (1472 -1864 5542.669922 ) (1472 -1280 5542.669922 ) (1472 -1280 464 ) (1472 -1864 464 ) +4 939 986 (1472 -1280 5542.669922 ) (1472 -1152 5542.669922 ) (1472 -1152 464 ) (1472 -1280 464 ) +4 939 974 (1472 -1152 5542.669922 ) (1472 -1024 5542.669922 ) (1472 -1024 464 ) (1472 -1152 464 ) +5 939 940 (1472 -2048 464 ) (1472 -1024 464 ) (2048 -1024 464 ) (2048 -1984.004883 464 ) (1984.002441 -2048 464 ) +4 940 1053 (1536 -2048 464 ) (1472 -2048 464 ) (1472 -2048 448 ) (1536 -2048 448 ) +4 940 1051 (2048 -2048 448 ) (2048 -2048 464 ) (1536 -2048 464 ) (1536 -2048 448 ) +4 940 1023 (1472 -2048 448 ) (1472 -2048 464 ) (1472 -1882 464 ) (1472 -1882 448 ) +4 940 1016 (1472 -1882 464 ) (1472 -1864 464 ) (1472 -1864 448 ) (1472 -1882 448 ) +4 940 1003 (1472 -1864 464 ) (1472 -1280 464 ) (1472 -1280 448 ) (1472 -1864 448 ) +4 940 986 (1472 -1280 464 ) (1472 -1152 464 ) (1472 -1152 448 ) (1472 -1280 448 ) +4 940 974 (1472 -1152 464 ) (1472 -1024 464 ) (1472 -1024 448 ) (1472 -1152 448 ) +5 940 941 (1472 -2048 448 ) (1472 -1024 448 ) (2048 -1024 448 ) (2048 -1984 448 ) (1984 -2048 448 ) +4 941 1065 (1807.989990 -2048 448 ) (1472 -2048 448 ) (1472 -2048 384 ) (1807.989990 -2048 384 ) +4 941 1063 (1887.989990 -2048 448 ) (1807.989990 -2048 448 ) (1807.989990 -2048 384 ) (1887.989990 -2048 384 ) +4 941 1056 (1920 -2048 448 ) (1887.989990 -2048 448 ) (1887.989990 -2048 384 ) (1920 -2048 384 ) +4 941 1055 (1984 -2048 448 ) (1920 -2048 448 ) (1920 -2048 384 ) (1984 -2048 384 ) +4 941 1023 (1472 -2048 384 ) (1472 -2048 448 ) (1472 -1882 448 ) (1472 -1882 384 ) +4 941 1016 (1472 -1882 448 ) (1472 -1864 448 ) (1472 -1864 384 ) (1472 -1882 384 ) +4 941 1003 (1472 -1864 448 ) (1472 -1280 448 ) (1472 -1280 384 ) (1472 -1864 384 ) +4 941 986 (1472 -1280 448 ) (1472 -1152 448 ) (1472 -1152 384 ) (1472 -1280 384 ) +4 941 974 (1472 -1152 448 ) (1472 -1024 448 ) (1472 -1024 384 ) (1472 -1152 384 ) +5 941 944 (1472 -1440 384 ) (1472 -1280 384 ) (2048 -1280 384 ) (2048 -1984 384 ) (2032 -2000 384 ) +4 941 943 (1984 -2048 384 ) (1472 -2048 384 ) (1472 -1440 384 ) (2032 -2000 384 ) +4 941 942 (1472 -1280 384 ) (1472 -1024 384 ) (2048 -1024 384 ) (2048 -1280 384 ) +4 942 986 (1472 -1280 384 ) (1472 -1152 384 ) (1472 -1152 279.982269 ) (1472 -1280 279.982269 ) +4 942 974 (1472 -1152 384 ) (1472 -1024 384 ) (1472 -1024 279.982269 ) (1472 -1152 279.982269 ) +4 942 952 (1479.994141 -1024 256 ) (1536 -1024 256 ) (1536 -1280 256 ) (1479.994141 -1280 256 ) +4 942 949 (1536 -1024 256 ) (1792 -1024 256 ) (1792 -1280 256 ) (1536 -1280 256 ) +4 942 948 (1792 -1024 256 ) (1856 -1024 256 ) (1856 -1280 256 ) (1792 -1280 256 ) +4 942 945 (1856 -1024 256 ) (2048 -1024 256 ) (2048 -1280 256 ) (1856 -1280 256 ) +5 942 944 (1479.994141 -1280 256 ) (2048 -1280 256 ) (2048 -1280 384 ) (1472 -1280 384 ) (1472 -1280 279.982269 ) +4 943 1065 (1807.989990 -2048 384 ) (1472 -2048 384 ) (1472 -2048 256 ) (1807.989990 -2048 256 ) +4 943 1063 (1887.989990 -2048 384 ) (1807.989990 -2048 384 ) (1807.989990 -2048 256 ) (1887.989990 -2048 256 ) +4 943 1059 (1920 -2048 384 ) (1887.989990 -2048 384 ) (1887.989990 -2048 256 ) (1920 -2048 256 ) +4 943 1057 (1984 -2048 384 ) (1920 -2048 384 ) (1920 -2048 256 ) (1984 -2048 256 ) +4 943 1058 (2048 -2048 256 ) (2048 -2048 384 ) (1984 -2048 384 ) (1984 -2048 256 ) +4 943 1023 (1472 -2048 256 ) (1472 -2048 384 ) (1472 -1882 384 ) (1472 -1882 256 ) +4 943 1016 (1472 -1882 384 ) (1472 -1864 384 ) (1472 -1864 256 ) (1472 -1882 256 ) +4 943 1004 (1472 -1440 264 ) (1472 -1440 256 ) (1472 -1864 256 ) (1472 -1864 264 ) +4 943 1003 (1472 -1864 384 ) (1472 -1440 384 ) (1472 -1440 264 ) (1472 -1864 264 ) +4 943 962 (1472 -1600 256 ) (1472 -1504 256 ) (1536 -1504 256 ) (1632 -1600 256 ) +5 943 963 (1472 -2048 256 ) (1472 -1600 256 ) (1632 -1600 256 ) (1808 -1776 256 ) (1808 -2048 256 ) +4 943 960 (1808 -1776 256 ) (1840 -1808 256 ) (1840 -2048 256 ) (1808 -2048 256 ) +4 943 954 (1840 -1808 256 ) (2032 -2000 256 ) (1984 -2048 256 ) (1840 -2048 256 ) +4 943 953 (1472 -1504 256 ) (1472 -1472 256 ) (1504 -1472 256 ) (1536 -1504 256 ) +4 943 944 (2032 -2000 256 ) (1472 -1440 256 ) (1472 -1440 384 ) (2032 -2000 384 ) +4 944 1004 (1472 -1280 264 ) (1472 -1280 256 ) (1472 -1440 256 ) (1472 -1440 264 ) +4 944 1003 (1472 -1440 384 ) (1472 -1280 384 ) (1472 -1280 264 ) (1472 -1440 264 ) +4 944 961 (1800 -1504 256 ) (1808 -1504 256 ) (1808 -1600 256 ) (1800 -1600 256 ) +4 944 962 (1632 -1600 256 ) (1536 -1504 256 ) (1800 -1504 256 ) (1800 -1600 256 ) +3 944 963 (1808 -1776 256 ) (1632 -1600 256 ) (1808 -1600 256 ) +4 944 959 (1808 -1600 256 ) (1808 -1592 256 ) (1840 -1592 256 ) (1840 -1600 256 ) +4 944 960 (1840 -1808 256 ) (1808 -1776 256 ) (1808 -1600 256 ) (1840 -1600 256 ) +4 944 958 (1808 -1592 256 ) (1808 -1504 256 ) (1840 -1504 256 ) (1840 -1592 256 ) +5 944 954 (2048 -1504 256 ) (2048 -1984 256 ) (2032 -2000 256 ) (1840 -1808 256 ) (1840 -1504 256 ) +3 944 952 (1472 -1280 256 ) (1536 -1280 256 ) (1536 -1312 256 ) +3 944 953 (1536 -1472 256 ) (1536 -1504 256 ) (1504 -1472 256 ) +4 944 949 (1536 -1280 256 ) (1792 -1280 256 ) (1792 -1344 256 ) (1536 -1344 256 ) +4 944 951 (1792 -1472 256 ) (1792 -1504 256 ) (1536 -1504 256 ) (1536 -1472 256 ) +4 944 948 (1792 -1280 256 ) (1856 -1280 256 ) (1856 -1312 256 ) (1792 -1312 256 ) +4 944 947 (2048 -1472 256 ) (2048 -1504 256 ) (1856 -1504 256 ) (1856 -1472 256 ) +4 944 945 (1856 -1280 256 ) (2048 -1280 256 ) (2048 -1344 256 ) (1856 -1344 256 ) +4 945 948 (1856 -1024 64 ) (1856 -1312 64 ) (1856 -1312 256 ) (1856 -1024 256 ) +4 945 946 (1856 -1344 192 ) (1856 -1344 64 ) (2048 -1344 64 ) (2048 -1344 192 ) +4 946 947 (1856 -1472 192 ) (1856 -1472 64 ) (2048 -1472 64 ) (2048 -1472 192 ) +4 947 955 (1856 -1504 64 ) (2048 -1504 64 ) (2048 -1504 192 ) (1856 -1504 192 ) +4 947 954 (2048 -1504 192 ) (2048 -1504 256 ) (1856 -1504 256 ) (1856 -1504 192 ) +4 948 949 (1792 -1024 64 ) (1792 -1312 64 ) (1792 -1312 256 ) (1792 -1024 256 ) +4 949 952 (1536 -1024 64 ) (1536 -1312 64 ) (1536 -1312 256 ) (1536 -1024 256 ) +4 949 950 (1536 -1344 192 ) (1536 -1344 64 ) (1792 -1344 64 ) (1792 -1344 192 ) +4 950 951 (1536 -1472 192 ) (1536 -1472 64 ) (1792 -1472 64 ) (1792 -1472 192 ) +4 951 962 (1536 -1504 64 ) (1792 -1504 64 ) (1792 -1504 256 ) (1536 -1504 256 ) +4 951 953 (1536 -1472 64 ) (1536 -1504 64 ) (1536 -1504 256 ) (1536 -1472 256 ) +4 952 978 (1472 -1024 192 ) (1472 -1024 64 ) (1472 -1056 64 ) (1472 -1056 192 ) +4 953 1008 (1472 -1504 256 ) (1472 -1472 256 ) (1472 -1472 64 ) (1472 -1504 64 ) +4 953 962 (1472 -1504 64 ) (1536 -1504 64 ) (1536 -1504 256 ) (1472 -1504 256 ) +4 954 1063 (1887.989990 -2048 256 ) (1840 -2048 256 ) (1840 -2048 192 ) (1887.989990 -2048 192 ) +4 954 1062 (1920 -2048 256 ) (1887.989990 -2048 256 ) (1887.989990 -2048 192 ) (1920 -2048 192 ) +4 954 1060 (1984 -2048 256 ) (1920 -2048 256 ) (1920 -2048 192 ) (1984 -2048 192 ) +4 954 959 (1840 -1592 192 ) (1840 -1600 192 ) (1840 -1600 256 ) (1840 -1592 256 ) +4 954 960 (1840 -1600 192 ) (1840 -2048 192 ) (1840 -2048 256 ) (1840 -1600 256 ) +4 954 958 (1840 -1504 256 ) (1840 -1504 192 ) (1840 -1592 192 ) (1840 -1592 256 ) +4 954 956 (1840 -1600 192 ) (1840 -1504 192 ) (1848 -1504 192 ) (1848 -1600 192 ) +4 954 957 (1840 -2048 192 ) (1840 -1600 192 ) (1848 -1600 192 ) (1848 -2048 192 ) +5 954 955 (1848 -1504 192 ) (2048 -1504 192 ) (2048 -1984 192 ) (1984 -2048 192 ) (1848 -2048 192 ) +4 955 1063 (1887.989990 -2048 192 ) (1848 -2048 192 ) (1848 -2048 64 ) (1887.989990 -2048 64 ) +4 955 1062 (1920 -2048 192 ) (1887.989990 -2048 192 ) (1887.989990 -2048 64 ) (1920 -2048 64 ) +4 955 1061 (2048 -2048 64 ) (2048 -2048 192 ) (1920 -2048 192 ) (1920 -2048 64 ) +4 955 956 (1848 -1600 192 ) (1848 -1504 192 ) (1848 -1504 96 ) (1848 -1600 96 ) +4 955 957 (1848 -2048 192 ) (1848 -1600 192 ) (1848 -1600 64 ) (1848 -2048 64 ) +4 956 959 (1840 -1592 96 ) (1840 -1600 96 ) (1840 -1600 192 ) (1840 -1592 192 ) +4 956 958 (1840 -1504 192 ) (1840 -1504 96 ) (1840 -1592 96 ) (1840 -1592 192 ) +4 956 957 (1848 -1600 96 ) (1848 -1600 192 ) (1840 -1600 192 ) (1840 -1600 96 ) +4 957 1063 (1848 -2048 192 ) (1840 -2048 192 ) (1840 -2048 64 ) (1848 -2048 64 ) +4 957 960 (1840 -1600 64 ) (1840 -2048 64 ) (1840 -2048 192 ) (1840 -1600 192 ) +4 958 961 (1808 -1504 256 ) (1808 -1504 96 ) (1808 -1592 96 ) (1808 -1592 256 ) +4 958 959 (1808 -1592 256 ) (1808 -1592 96 ) (1840 -1592 96 ) (1840 -1592 256 ) +4 959 961 (1808 -1600 96 ) (1808 -1600 256 ) (1808 -1592 256 ) (1808 -1592 96 ) +4 959 960 (1808 -1600 256 ) (1808 -1600 96 ) (1840 -1600 96 ) (1840 -1600 256 ) +4 960 1063 (1840 -2048 256 ) (1808 -2048 256 ) (1808 -2048 64 ) (1840 -2048 64 ) +4 960 963 (1808 -1600 64 ) (1808 -2048 64 ) (1808 -2048 256 ) (1808 -1600 256 ) +4 961 962 (1800 -1504 256 ) (1800 -1504 96 ) (1800 -1600 96 ) (1800 -1600 256 ) +4 961 963 (1808 -1600 96 ) (1808 -1600 256 ) (1800 -1600 256 ) (1800 -1600 96 ) +4 962 1008 (1472 -1600 256 ) (1472 -1504 256 ) (1472 -1504 64 ) (1472 -1600 64 ) +4 962 963 (1472 -1600 64 ) (1800 -1600 64 ) (1800 -1600 256 ) (1472 -1600 256 ) +4 963 1065 (1808 -2048 256 ) (1472 -2048 256 ) (1472 -2048 64 ) (1808 -2048 64 ) +4 963 1023 (1472 -2048 64 ) (1472 -2048 256 ) (1472 -1882 256 ) (1472 -1882 64 ) +4 963 1020 (1472 -1864 138 ) (1472 -1864 90 ) (1472 -1882 90 ) (1472 -1882 138 ) +4 963 1017 (1472 -1864 194 ) (1472 -1864 138 ) (1472 -1882 138 ) (1472 -1882 194 ) +4 963 1016 (1472 -1882 256 ) (1472 -1864 256 ) (1472 -1864 194 ) (1472 -1882 194 ) +4 963 1008 (1472 -1864 256 ) (1472 -1600 256 ) (1472 -1600 64 ) (1472 -1864 64 ) +4 963 967 (1472 -1728 64 ) (1472 -1600 64 ) (1568 -1600 64 ) (1568 -1728 64 ) +4 964 965 (1792 -1504 0 ) (1792 -1312 0 ) (1856 -1312 0 ) (1856 -1504 0 ) +4 965 968 (2048 -1600 -128 ) (2048 -1600 0 ) (1536 -1600 0 ) (1536 -1600 -128 ) +4 965 966 (2048 -1600 -128 ) (1536 -1600 -128 ) (1536 -1024 -128 ) (2048 -1024 -128 ) +4 966 1031 (1472 -1600 -1284 ) (1472 -1600 -192 ) (1472 -1024 -192 ) (1472 -1024 -1284 ) +4 966 1030 (1472 -1312 -128 ) (1472 -1024 -128 ) (1472 -1024 -192 ) (1472 -1312 -192 ) +4 966 969 (2048 -1600 -1284 ) (2048 -1600 -128 ) (1472 -1600 -128 ) (1472 -1600 -1284 ) +4 967 1008 (1472 -1728 0 ) (1472 -1728 64 ) (1472 -1600 64 ) (1472 -1600 0 ) +4 967 968 (1568 -1728 0 ) (1536 -1728 0 ) (1536 -1600 0 ) (1568 -1600 0 ) +4 968 970 (2048 -1728 -128 ) (2048 -1728 0 ) (1536 -1728 0 ) (1536 -1728 -128 ) +4 968 969 (2048 -1728 -128 ) (1536 -1728 -128 ) (1536 -1600 -128 ) (2048 -1600 -128 ) +4 969 1031 (1472 -1728 -1284 ) (1472 -1728 -192 ) (1472 -1600 -192 ) (1472 -1600 -1284 ) +4 969 971 (1536 -1728 -128 ) (1472 -1728 -128 ) (1472 -1728 -1284 ) (1536 -1728 -1284 ) +4 969 970 (2048 -1728 -1284 ) (2048 -1728 -128 ) (1536 -1728 -128 ) (1536 -1728 -1284 ) +4 970 973 (1536 -1856 -128 ) (1536 -1856 -1284 ) (1664 -1856 -1284 ) (1664 -1856 -128 ) +4 970 972 (1664 -1856 -1284 ) (2048 -1856 -1284 ) (2048 -1856 0 ) (1664 -1856 0 ) +4 970 971 (1536 -1728 -128 ) (1536 -1728 -1284 ) (1536 -1856 -1284 ) (1536 -1856 -128 ) +4 971 1031 (1472 -1856 -1284 ) (1472 -1856 -192 ) (1472 -1728 -192 ) (1472 -1728 -1284 ) +4 971 973 (1472 -1856 -128 ) (1472 -1856 -1284 ) (1536 -1856 -1284 ) (1536 -1856 -128 ) +4 972 1160 (2048 -2048 -1284 ) (2048 -2048 -192 ) (1664 -2048 -192 ) (1664 -2048 -1284 ) +4 972 1159 (1984 -2048 -128 ) (1664 -2048 -128 ) (1664 -2048 -192 ) (1984 -2048 -192 ) +4 972 1158 (2048 -2048 -192 ) (2048 -2048 -128 ) (1984 -2048 -128 ) (1984 -2048 -192 ) +4 972 1150 (2048 -2048 -128 ) (2048 -2048 -64 ) (1664 -2048 -64 ) (1664 -2048 -128 ) +4 972 1107 (2048 -2048 -64 ) (2048 -2048 0 ) (1664 -2048 0 ) (1664 -2048 -64 ) +4 972 973 (1664 -1856 -128 ) (1664 -1856 -1284 ) (1664 -2048 -1284 ) (1664 -2048 -128 ) +4 973 1160 (1664 -2048 -1284 ) (1664 -2048 -192 ) (1472 -2048 -192 ) (1472 -2048 -1284 ) +4 973 1159 (1664 -2048 -192 ) (1664 -2048 -128 ) (1472 -2048 -128 ) (1472 -2048 -192 ) +4 973 1031 (1472 -2048 -1284 ) (1472 -2048 -192 ) (1472 -1856 -192 ) (1472 -1856 -1284 ) +4 974 3065 (1024 -1024 5542.669922 ) (1024 -1024 280 ) (1024 -1152 280 ) (1024 -1152 5542.669922 ) +4 974 986 (1472 -1152 280 ) (1472 -1152 5542.669922 ) (1024 -1152 5542.669922 ) (1024 -1152 280 ) +4 974 975 (1456 -1152 280 ) (1024 -1152 280 ) (1024 -1024 280 ) (1456 -1024 280 ) +4 975 3081 (1024 -1024 264 ) (1024 -1024 256 ) (1024 -1152 256 ) (1024 -1152 264 ) +4 975 3065 (1024 -1024 280 ) (1024 -1024 264 ) (1024 -1152 264 ) (1024 -1152 280 ) +4 975 987 (1456 -1152 280 ) (1024 -1152 280 ) (1024 -1152 256 ) (1448 -1152 256 ) +4 975 979 (1448 -1152 256 ) (1152 -1152 256 ) (1152 -1056 256 ) (1448 -1056 256 ) +4 975 980 (1136 -1152 256 ) (1024 -1152 256 ) (1024 -1056 256 ) (1136 -1056 256 ) +4 975 976 (1152 -1024 256 ) (1448 -1024 256 ) (1448 -1056 256 ) (1152 -1056 256 ) +4 975 977 (1024 -1056 256 ) (1024 -1024 256 ) (1136 -1024 256 ) (1136 -1056 256 ) +4 976 979 (1456 -1056 256 ) (1152 -1056 256 ) (1152 -1056 192 ) (1456 -1056 192 ) +4 976 978 (1456 -1056 192 ) (1152 -1056 192 ) (1152 -1024 192 ) (1456 -1024 192 ) +4 977 3094 (1024 -1024 256 ) (1024 -1024 192 ) (1024 -1056 192 ) (1024 -1056 256 ) +4 977 980 (1136 -1056 256 ) (1024 -1056 256 ) (1024 -1056 192 ) (1136 -1056 192 ) +4 977 978 (1136 -1056 192 ) (1024 -1056 192 ) (1024 -1024 192 ) (1136 -1024 192 ) +4 978 3220 (1024 -1024 64 ) (1024 -1024 56 ) (1024 -1056 56 ) (1024 -1056 64 ) +4 978 3094 (1024 -1024 192 ) (1024 -1024 64 ) (1024 -1056 64 ) (1024 -1056 192 ) +4 978 983 (1216 -1024 56 ) (1344 -1024 56 ) (1344 -1056 56 ) (1216 -1056 56 ) +4 978 982 (1024 -1056 56 ) (1136 -1056 56 ) (1136 -1056 64 ) (1024 -1056 64 ) +4 978 981 (1136 -1056 56 ) (1456 -1056 56 ) (1472 -1056 64 ) (1136 -1056 64 ) +4 978 979 (1456 -1056 192 ) (1152 -1056 192 ) (1152 -1056 64 ) (1456 -1056 64 ) +4 978 980 (1136 -1056 192 ) (1024 -1056 192 ) (1024 -1056 64 ) (1136 -1056 64 ) +8 979 991 (1216 -1152 64 ) (1344 -1152 64 ) (1328 -1152 96 ) (1304 -1152 112 ) (1279.972534 -1152 116.004555 ) (1256.018188 -1152 112.012161 ) (1231.997070 -1152 95.998070 ) (1216 -1152 64.003822 ) +4 979 981 (1456 -1152 64 ) (1152 -1152 64 ) (1152 -1056 64 ) (1456 -1056 64 ) +4 980 3094 (1024 -1152 64 ) (1024 -1152 256 ) (1024 -1056 256 ) (1024 -1056 64 ) +4 980 992 (1024 -1152 128 ) (1024 -1152 64 ) (1136 -1152 64 ) (1136 -1152 128 ) +4 980 989 (1136 -1152 256 ) (1024 -1152 256 ) (1024 -1152 128 ) (1136 -1152 128 ) +4 980 982 (1136 -1152 64 ) (1024 -1152 64 ) (1024 -1056 64 ) (1136 -1056 64 ) +4 981 999 (1184 -1152 64 ) (1136 -1152 64 ) (1136 -1152 56 ) (1184 -1152 56 ) +4 981 996 (1344 -1152 64 ) (1216 -1152 64 ) (1216 -1152 56 ) (1344 -1152 56 ) +4 981 995 (1408 -1152 64 ) (1376 -1152 64 ) (1376 -1152 56 ) (1408 -1152 56 ) +4 981 983 (1344 -1152 56 ) (1216 -1152 56 ) (1216 -1056 56 ) (1344 -1056 56 ) +4 981 982 (1136 -1152 64 ) (1136 -1056 64 ) (1136 -1056 56 ) (1136 -1136 56 ) +4 982 3220 (1024 -1056 56 ) (1024 -1136 56 ) (1024 -1152 64 ) (1024 -1056 64 ) +4 983 996 (1344 -1152 56 ) (1216 -1152 56 ) (1232 -1152 48 ) (1328 -1152 48 ) +4 984 1009 (1344 -1024 0 ) (1472 -1024 0 ) (1472 -1152 0 ) (1344 -1152 0 ) +4 984 995 (1376 -1152 0 ) (1408 -1152 0 ) (1408 -1152 32 ) (1376 -1152 32 ) +4 985 3221 (1024 -1024 32 ) (1024 -1024 0 ) (1024 -1152 0 ) (1024 -1152 32 ) +4 985 1012 (1024 -1152 0 ) (1024 -1024 0 ) (1216 -1024 0 ) (1216 -1152 0 ) +4 985 999 (1136 -1152 0 ) (1184 -1152 0 ) (1184 -1152 32 ) (1136 -1152 32 ) +4 986 3065 (1024 -1152 5542.669922 ) (1024 -1152 280 ) (1024 -1280 280 ) (1024 -1280 5542.669922 ) +4 986 1003 (1024 -1280 5542.669922 ) (1024 -1280 280 ) (1472 -1280 280 ) (1472 -1280 5542.669922 ) +4 986 987 (1456 -1280 280 ) (1024 -1280 280 ) (1024 -1152 280 ) (1456 -1152 280 ) +4 987 3081 (1024 -1152 264 ) (1024 -1152 256 ) (1024 -1280 256 ) (1024 -1280 264 ) +4 987 3065 (1024 -1152 280 ) (1024 -1152 264 ) (1024 -1280 264 ) (1024 -1280 280 ) +3 987 1006 (1024 -1280 264 ) (1024 -1280 256 ) (1032 -1280 264 ) +4 987 1004 (1024 -1280 256 ) (1448 -1280 256 ) (1450.666748 -1280 264 ) (1032 -1280 264 ) +4 987 1003 (1024 -1280 280 ) (1024 -1280 264 ) (1450.666748 -1280 264 ) (1456 -1280 280 ) +4 987 990 (1120 -1280 256 ) (1024 -1280 256 ) (1024 -1248 256 ) (1136 -1248 256 ) +4 987 989 (1024 -1248 256 ) (1024 -1152 256 ) (1136 -1152 256 ) (1136 -1248 256 ) +4 987 988 (1152 -1216 256 ) (1152 -1184 256 ) (1408 -1184 256 ) (1408 -1216 256 ) +4 989 3107 (1024 -1217 128 ) (1024 -1248 128 ) (1024 -1248 186 ) (1024 -1217 186 ) +4 989 3105 (1024 -1248 186 ) (1024 -1248 218 ) (1024 -1217 218 ) (1024 -1217 186 ) +4 989 3102 (1024 -1248 218 ) (1024 -1248 256 ) (1024 -1217 256 ) (1024 -1217 218 ) +4 989 3094 (1024 -1152 256 ) (1024 -1152 128 ) (1024 -1217 128 ) (1024 -1217 256 ) +4 989 993 (1024 -1248 128 ) (1024 -1216 128 ) (1136 -1216 128 ) (1136 -1248 128 ) +4 989 992 (1024 -1216 128 ) (1024 -1152 128 ) (1136 -1152 128 ) (1136 -1216 128 ) +4 989 990 (1024 -1248 128 ) (1136 -1248 128 ) (1136 -1248 256 ) (1024 -1248 256 ) +4 990 3111 (1024 -1250 128 ) (1024 -1280 128 ) (1024 -1280 218 ) (1024 -1250 218 ) +4 990 3107 (1024 -1248 128 ) (1024 -1250 128 ) (1024 -1250 186 ) (1024 -1248 186 ) +4 990 3105 (1024 -1250 186 ) (1024 -1250 218 ) (1024 -1248 218 ) (1024 -1248 186 ) +4 990 3103 (1024 -1280 218 ) (1024 -1280 256 ) (1024 -1250 256 ) (1024 -1250 218 ) +4 990 3102 (1024 -1250 256 ) (1024 -1248 256 ) (1024 -1248 218 ) (1024 -1250 218 ) +4 990 1007 (1024 -1280 256 ) (1024 -1280 128 ) (1120 -1280 128 ) (1120 -1280 256 ) +4 990 994 (1120 -1280 128 ) (1024 -1280 128 ) (1024 -1248 128 ) (1136 -1248 128 ) +4 991 996 (1216 -1152 64 ) (1344 -1152 64 ) (1344 -1184 64 ) (1216 -1184 64 ) +4 991 998 (1344 -1184 64 ) (1344 -1216 64 ) (1216 -1216 64 ) (1216 -1184 64 ) +4 992 3094 (1024 -1152 128 ) (1024 -1152 64 ) (1024 -1216 64 ) (1024 -1216 128 ) +4 992 993 (1024 -1216 64 ) (1136 -1216 64 ) (1136 -1216 128 ) (1024 -1216 128 ) +4 993 3107 (1024 -1217 64 ) (1024 -1248 64 ) (1024 -1248 128 ) (1024 -1217 128 ) +4 993 3094 (1024 -1216 64 ) (1024 -1217 64 ) (1024 -1217 128 ) (1024 -1216 128 ) +4 993 994 (1024 -1248 64 ) (1136 -1248 64 ) (1136 -1248 128 ) (1024 -1248 128 ) +4 994 3111 (1024 -1250 64 ) (1024 -1280 64 ) (1024 -1280 128 ) (1024 -1250 128 ) +4 994 3107 (1024 -1248 64 ) (1024 -1250 64 ) (1024 -1250 128 ) (1024 -1248 128 ) +4 994 1007 (1024 -1280 128 ) (1024 -1280 64 ) (1120 -1280 64 ) (1120 -1280 128 ) +4 995 1000 (1376 -1216 0 ) (1408 -1216 0 ) (1408 -1216 64 ) (1376 -1216 64 ) +4 996 997 (1344 -1184 48 ) (1216 -1184 48 ) (1216 -1171.290039 48 ) (1344 -1171.290039 48 ) +4 996 998 (1216 -1184 64 ) (1216 -1184 48 ) (1344 -1184 48 ) (1344 -1184 64 ) +4 997 998 (1216 -1184 48 ) (1216 -1184 24 ) (1344 -1184 24 ) (1344 -1184 48 ) +4 998 1011 (1344 -1184 0 ) (1344 -1216 0 ) (1216 -1216 0 ) (1216 -1184 0 ) +7 998 1001 (1216 -1216 0 ) (1344 -1216 0 ) (1328 -1216 32 ) (1304 -1216 48 ) (1280 -1216 52 ) (1256 -1216 48 ) (1232 -1216 32 ) +4 999 1002 (1136 -1216 0 ) (1184 -1216 0 ) (1184 -1216 64 ) (1136 -1216 64 ) +4 1001 1011 (1216 -1216 0 ) (1344 -1216 0 ) (1344 -1280 0 ) (1216 -1280 0 ) +7 1001 1008 (1216 -1280 0 ) (1344 -1280 0 ) (1328 -1280 32 ) (1304 -1280 48 ) (1280 -1280 52 ) (1256 -1280 48 ) (1232 -1280 32 ) +4 1003 3065 (1024 -1280 5542.669922 ) (1024 -1280 264 ) (1024 -1864 264 ) (1024 -1864 5542.669922 ) +4 1003 1016 (1472 -1864 264 ) (1472 -1864 5542.669922 ) (1024 -1864 5542.669922 ) (1024 -1864 264 ) +4 1003 1006 (1024 -1464 264 ) (1024 -1280 264 ) (1032 -1280 264 ) (1032 -1464 264 ) +4 1003 1005 (1032 -1864 264 ) (1024 -1864 264 ) (1024 -1808 264 ) (1032 -1800 264 ) +4 1003 1004 (1472 -1864 264 ) (1032 -1864 264 ) (1032 -1280 264 ) (1472 -1280 264 ) +4 1004 1016 (1472 -1864 256 ) (1472 -1864 264 ) (1032 -1864 264 ) (1024 -1864 256 ) +5 1004 1008 (1472 -1864 256 ) (1024 -1864 256 ) (1024 -1536 256 ) (1152 -1280 256 ) (1472 -1280 256 ) +3 1004 1007 (1024 -1472 256 ) (1024 -1280 256 ) (1120 -1280 256 ) +4 1004 1006 (1023.997986 -1280 256 ) (1023.997986 -1472 256 ) (1031.998047 -1464 264 ) (1031.998047 -1280 264 ) +4 1004 1005 (1023.997986 -1792.001953 256 ) (1023.997986 -1864 256 ) (1031.998047 -1864 264 ) (1031.998047 -1800.001831 264 ) +4 1005 3086 (1024 -1792 256 ) (1024 -1864 256 ) (1024 -1864 264 ) (1024 -1808 264 ) +3 1005 1016 (1032 -1864 264 ) (1024 -1864 264 ) (1024 -1864 256 ) +4 1006 3083 (1024 -1392 256 ) (1024 -1472 256 ) (1024 -1464 264 ) (1024 -1392 264 ) +4 1006 3081 (1024 -1280 264 ) (1024 -1280 256 ) (1024 -1392 256 ) (1024 -1392 264 ) +4 1007 3122 (1024 -1327 64 ) (1024 -1472 64 ) (1024 -1472 256 ) (1024 -1327 256 ) +4 1007 3112 (1024 -1294 64 ) (1024 -1327 64 ) (1024 -1327 218 ) (1024 -1294 218 ) +4 1007 3111 (1024 -1280 218 ) (1024 -1280 64 ) (1024 -1294 64 ) (1024 -1294 218 ) +4 1007 3104 (1024 -1294 218 ) (1024 -1327 218 ) (1024 -1327 256 ) (1024 -1294 256 ) +4 1007 3103 (1024 -1280 256 ) (1024 -1280 218 ) (1024 -1294 218 ) (1024 -1294 256 ) +4 1008 3125 (1024 -1864 90 ) (1024 -1864 256 ) (1024 -1792 256 ) (1024 -1792 90 ) +6 1008 1024 (1268 -1864 24 ) (1228 -1864 24 ) (1152 -1864 12 ) (1112 -1864 0 ) (1384 -1864 0 ) (1344 -1864 12 ) +3 1008 1022 (1296 -1864 119.142853 ) (1292.799927 -1864 118.800003 ) (1304 -1864 118 ) +3 1008 1021 (1315.199951 -1864 121.200005 ) (1296 -1864 119.142853 ) (1360 -1864 110 ) +4 1008 1020 (1472 -1864 90 ) (1472 -1864 138 ) (1315.199951 -1864 121.200005 ) (1416 -1864 96 ) +3 1008 1019 (1158.400146 -1864 115.600021 ) (1136 -1864 110 ) (1192 -1864 118 ) +3 1008 1018 (1198.222290 -1864 125.555557 ) (1158.400146 -1864 115.600021 ) (1248 -1864 122 ) +4 1008 1017 (1472 -1864 138 ) (1472 -1864 194 ) (1198.222290 -1864 125.555557 ) (1292.799927 -1864 118.800003 ) +5 1008 1016 (1472 -1864 194 ) (1472 -1864 256 ) (1024 -1864 256 ) (1024 -1864 90 ) (1080 -1864 96 ) +5 1008 1013 (1472 -1864 0 ) (1024 -1864 0 ) (1024 -1536 0 ) (1136 -1312 0 ) (1472 -1312 0 ) +4 1008 1011 (1216 -1280 0 ) (1344 -1280 0 ) (1344 -1312 0 ) (1216 -1312 0 ) +4 1009 1025 (1344 -1024 -64 ) (1472 -1024 -64 ) (1472 -1152 -64 ) (1344 -1152 -64 ) +4 1009 1010 (1344 -1024 -64 ) (1344 -1152 -64 ) (1344 -1152 -16 ) (1344 -1024 -16 ) +4 1010 1026 (1216 -1024 -64 ) (1344 -1024 -64 ) (1344 -1184 -64 ) (1216 -1184 -64 ) +4 1010 1012 (1216 -1024 -64 ) (1216 -1152 -64 ) (1216 -1152 -16 ) (1216 -1024 -16 ) +4 1011 1013 (1344 -1312 -16 ) (1344 -1312 0 ) (1216 -1312 0 ) (1216 -1312 -16 ) +4 1012 3245 (1024 -1024 0 ) (1024 -1024 -64 ) (1024 -1152 -64 ) (1024 -1152 0 ) +4 1012 1027 (1024 -1024 -64 ) (1216 -1024 -64 ) (1216 -1152 -64 ) (1024 -1152 -64 ) +5 1013 1028 (1472 -1312 -64 ) (1472 -1864 -64 ) (1024 -1864 -64 ) (1024 -1536 -64 ) (1136 -1312 -64 ) +6 1013 1024 (1042 -1864 -64 ) (1454 -1864 -64 ) (1424 -1864 -24 ) (1384 -1864 0 ) (1112 -1864 0 ) (1072 -1864 -24 ) +6 1013 1015 (1136 -1312 -8 ) (1136 -1312 -64 ) (1072 -1440 -64 ) (1080 -1424 -32 ) (1092 -1400 -16 ) (1104 -1376 -8 ) +4 1014 3245 (1024 -1312 -64 ) (1024 -1472 -64 ) (1024 -1472 0 ) (1024 -1312 0 ) +3 1014 1028 (1024 -1472 -64 ) (1024 -1312 -64 ) (1104 -1312 -64 ) +6 1014 1015 (1104 -1312 -64 ) (1104 -1312 -8 ) (1072 -1376 -8 ) (1060 -1400 -16 ) (1048 -1424 -32 ) (1040 -1440 -64 ) +4 1015 1028 (1040 -1440 -64 ) (1104 -1312 -64 ) (1136 -1312 -64 ) (1072 -1440 -64 ) +4 1016 3125 (1024 -1864 256 ) (1024 -1864 90 ) (1024 -1882 90 ) (1024 -1882 256 ) +4 1016 3086 (1024 -1864 264 ) (1024 -1864 256 ) (1024 -1882 256 ) (1024 -1882 264 ) +4 1016 3065 (1024 -1864 5542.669922 ) (1024 -1864 264 ) (1024 -1882 264 ) (1024 -1882 5542.669922 ) +5 1016 1023 (1472 -1882 194 ) (1472 -1882 5542.669922 ) (1024 -1882 5542.669922 ) (1024 -1882 90 ) (1080.002930 -1882 96 ) +4 1016 1019 (1135.995239 -1864 110 ) (1158.397217 -1864 115.599815 ) (1158.397217 -1882 115.599815 ) (1135.995239 -1882 110 ) +4 1016 1018 (1158.397217 -1864 115.599815 ) (1198.220703 -1864 125.555672 ) (1198.220703 -1882 125.555672 ) (1158.397217 -1882 115.599815 ) +4 1016 1017 (1198.220703 -1864 125.555672 ) (1472 -1864 194 ) (1472 -1882 194 ) (1198.220703 -1882 125.555672 ) +4 1017 1023 (1472 -1882 138 ) (1472 -1882 194 ) (1198.222168 -1882 125.555557 ) (1292.798828 -1882 118.800079 ) +4 1017 1022 (1296.004028 -1882 119.142258 ) (1292.805786 -1882 118.799583 ) (1292.807129 -1864 118.799492 ) (1296.005005 -1864 119.142128 ) +4 1017 1021 (1315.202881 -1882 121.199280 ) (1296.004028 -1882 119.142258 ) (1296.005005 -1864 119.142128 ) (1315.203613 -1864 121.199112 ) +4 1017 1020 (1472 -1882 138 ) (1315.202881 -1882 121.199280 ) (1315.203613 -1864 121.199112 ) (1472 -1864 137.998734 ) +4 1017 1018 (1198.228394 -1882 125.555428 ) (1198.228394 -1864 125.555428 ) (1248.002563 -1864 122 ) (1248.002563 -1882 122 ) +3 1018 1023 (1198.222168 -1882 125.555557 ) (1158.400024 -1882 115.600006 ) (1248 -1882 122 ) +4 1018 1019 (1158.402588 -1882 115.600395 ) (1158.402588 -1864 115.600395 ) (1192.003662 -1864 118 ) (1192.003662 -1882 118 ) +3 1019 1023 (1158.400024 -1882 115.600006 ) (1136 -1882 110 ) (1192 -1882 118 ) +4 1020 1023 (1472 -1882 90 ) (1472 -1882 138 ) (1315.199585 -1882 121.200127 ) (1416 -1882 96 ) +4 1020 1021 (1315.199585 -1882 121.200096 ) (1315.199585 -1864 121.200096 ) (1360 -1864 110 ) (1360 -1882 110 ) +3 1021 1023 (1315.199585 -1882 121.200127 ) (1296 -1882 119.142960 ) (1360 -1882 110 ) +4 1021 1022 (1296 -1882 119.143379 ) (1296 -1864 119.143379 ) (1304.006958 -1864 118 ) (1304.006958 -1882 118 ) +3 1022 1023 (1296 -1882 119.142960 ) (1292.798828 -1882 118.800079 ) (1304 -1882 118 ) +4 1023 3129 (1024 -2048 64 ) (1024 -2048 256 ) (1024 -1984 256 ) (1024 -1984 64 ) +4 1023 3127 (1024 -1984 256 ) (1024 -1920 256 ) (1024 -1920 64 ) (1024 -1984 64 ) +4 1023 3126 (1024 -1920 256 ) (1024 -1882 256 ) (1024 -1882 64 ) (1024 -1920 64 ) +4 1023 3090 (1024 -1928.003784 264 ) (1024 -1896 264 ) (1024 -1896 256 ) (1024 -1920.003784 256 ) +4 1023 3089 (1024 -2048 256 ) (1024 -2048 264 ) (1024 -1928.003784 264 ) (1024 -1920.003784 256 ) +4 1023 3086 (1024 -1896 264 ) (1024 -1882 264 ) (1024 -1882 256 ) (1024 -1896 256 ) +4 1023 3065 (1024 -2048 264 ) (1024 -2048 5542.669922 ) (1024 -1882 5542.669922 ) (1024 -1882 264 ) +4 1023 1109 (1024 -2048 64 ) (1024 -2048 48 ) (1472 -2048 48 ) (1472 -2048 64 ) +4 1023 1065 (1024 -2048 448 ) (1024 -2048 64 ) (1472 -2048 64 ) (1472 -2048 448 ) +4 1023 1054 (1024 -2048 464 ) (1024 -2048 448 ) (1408 -2048 448 ) (1407.989868 -2048 464 ) +4 1023 1053 (1408 -2048 448 ) (1472 -2048 448 ) (1472 -2048 464 ) (1407.989868 -2048 464 ) +4 1023 1046 (1024 -2048 5542.669922 ) (1024 -2048 464 ) (1472 -2048 464 ) (1472 -2048 5542.669922 ) +3 1024 1111 (1042 -2048 -64 ) (1056 -2048 -64 ) (1056 -2048 -45.333309 ) +11 1024 1110 (1056 -2048 -64 ) (1454 -2048 -64 ) (1424 -2048 -24 ) (1384 -2048 0 ) (1344 -2048 12 ) (1268 -2048 24 ) (1228 -2048 24 ) (1152 -2048 12 ) (1112 -2048 0 ) (1072 -2048 -24 ) (1056 -2048 -45.333309 ) +4 1024 1029 (1454 -2048 -64 ) (1042 -2048 -64 ) (1042 -1864 -64 ) (1454 -1864 -64 ) +4 1025 1030 (1344 -1024 -128 ) (1472 -1024 -128 ) (1472 -1152 -128 ) (1344 -1152 -128 ) +4 1025 1026 (1344 -1024 -128 ) (1344 -1152 -128 ) (1344 -1152 -64 ) (1344 -1024 -64 ) +4 1026 1030 (1216 -1024 -128 ) (1344 -1024 -128 ) (1344 -1184 -128 ) (1216 -1184 -128 ) +4 1026 1027 (1216 -1024 -128 ) (1216 -1152 -128 ) (1216 -1152 -64 ) (1216 -1024 -64 ) +4 1027 3257 (1024 -1152 -64 ) (1024 -1024 -64 ) (1024 -1024 -128 ) (1024 -1152 -128 ) +4 1027 1030 (1024 -1152 -128 ) (1024 -1024 -128 ) (1216 -1024 -128 ) (1216 -1152 -128 ) +4 1028 3257 (1024 -1472 -64 ) (1024 -1312 -64 ) (1024 -1312 -128 ) (1024 -1472 -128 ) +6 1028 1029 (1024 -1864 -128 ) (1472 -1864 -128 ) (1472 -1864 -88 ) (1454 -1864 -64 ) (1042 -1864 -64 ) (1024 -1864 -88 ) +5 1029 1164 (1024 -2048 -88 ) (1024 -2048 -128 ) (1056 -2048 -128 ) (1056 -2048 -64 ) (1042 -2048 -64 ) +5 1029 1161 (1056 -2048 -128 ) (1472 -2048 -128 ) (1472 -2048 -88 ) (1454 -2048 -64 ) (1056 -2048 -64 ) +4 1030 3259 (1024 -1312 -128 ) (1024 -1024 -128 ) (1024 -1024 -192 ) (1024 -1312 -192 ) +4 1030 1031 (1024 -1024 -192 ) (1472 -1024 -192 ) (1472 -1312 -192 ) (1024 -1312 -192 ) +4 1031 3271 (1024 -2048 -1284 ) (1024 -2048 -192 ) (1024 -1472 -192 ) (1024 -1472 -1284 ) +4 1031 3259 (1024 -1472 -192 ) (1024 -1024 -192 ) (1024 -1024 -1284 ) (1024 -1472 -1284 ) +4 1031 1167 (1024 -2048 -192 ) (1024 -2048 -1284 ) (1472 -2048 -1284 ) (1472 -2048 -192 ) +4 1032 1044 (3072 -2048 64 ) (3072 -2048 0 ) (3072 -3072 0 ) (3072 -3072 64 ) +4 1032 1043 (3072 -2048 192 ) (3072 -2048 64 ) (3072 -3072 64 ) (3072 -3072 192 ) +4 1032 1045 (3072 -2048 0 ) (3072 -2048 -1284 ) (3072 -3072 -1284 ) (3072 -3072 0 ) +4 1032 1042 (3072 -2048 256 ) (3072 -2048 192 ) (3072 -3072 192 ) (3072 -3072 256 ) +4 1032 1041 (3072 -2976 256 ) (3072 -3040 256 ) (3072 -3040 384 ) (3072 -2976 384 ) +4 1032 1040 (3072 -3040 256 ) (3072 -3072 256 ) (3072 -3072 384 ) (3072 -3040 384 ) +4 1032 1039 (3072 -2048 384 ) (3072 -2048 256 ) (3072 -2976 256 ) (3072 -2976 384 ) +4 1032 1037 (3072 -2048 448 ) (3072 -2048 384 ) (3072 -3072 384 ) (3072 -3072 448 ) +4 1032 1036 (3072 -2048 464 ) (3072 -2048 448 ) (3072 -3072 448 ) (3072 -3072 464 ) +4 1032 1034 (3072 -2048 5542.669922 ) (3072 -2048 464 ) (3072 -3072 464 ) (3072 -3072 5542.669922 ) +4 1032 1033 (4096 -3072 -1284 ) (4096 -3072 5542.669922 ) (3072 -3072 5542.669922 ) (3072 -3072 -1284 ) +4 1033 1261 (4096 -4096 -1284 ) (4096 -4096 5542.669922 ) (3072 -4096 5542.669922 ) (3072 -4096 -1284 ) +4 1033 1189 (3072 -4096 -1284 ) (3072 -4096 128 ) (3072 -3072 128 ) (3072 -3072 -1284 ) +4 1033 1188 (3072 -4096 128 ) (3072 -4096 288 ) (3072 -3422.221924 288 ) (3072 -3422.221924 128 ) +4 1033 1186 (3072 -3422.221924 288 ) (3072 -3072 288 ) (3072 -3072 128 ) (3072 -3422.221924 128 ) +6 1033 1181 (3072 -4096 288 ) (3072 -4096 400 ) (3072 -3551.555420 400 ) (3072 -3514.606445 384 ) (3072 -3477.648926 352 ) (3072 -3440.701172 288 ) +4 1033 1179 (3072 -3477.648926 352 ) (3072 -3404.063232 288.283722 ) (3072 -3403.899414 288 ) (3072 -3440.701172 288 ) +3 1033 1177 (3072 -3514.606445 384 ) (3072 -3440.892822 352.077911 ) (3072 -3404.063232 288.283722 ) +3 1033 1176 (3072 -3551.555420 400 ) (3072 -3468.559326 400 ) (3072 -3440.892822 352.077911 ) +5 1033 1174 (3072 -4096 400 ) (3072 -4096 432 ) (3072 -3496.267090 432 ) (3072 -3477.798584 416.003448 ) (3072 -3468.559326 400 ) +3 1033 1170 (3072 -3477.798584 416.003448 ) (3072 -3330.014404 288 ) (3072 -3403.899414 288 ) +4 1033 1169 (3072 -3496.267090 432 ) (3072 -3072 432 ) (3072 -3072 288 ) (3072 -3330.014404 288 ) +4 1033 1168 (3072 -4096 432 ) (3072 -4096 5542.669922 ) (3072 -3072 5542.669922 ) (3072 -3072 432 ) +4 1034 1168 (3072 -3072 464 ) (3072 -3072 5542.669922 ) (2048 -3072 5542.669922 ) (2048 -3072 464 ) +4 1034 1128 (2048 -2816 464 ) (2048 -3072 464 ) (2048 -3072 5542.669922 ) (2048 -2816 5542.669922 ) +4 1034 1049 (2048 -2208 464 ) (2048 -2816 464 ) (2048 -2816 1136 ) (2048 -2208 1136 ) +4 1034 1048 (2048 -2176 464 ) (2048 -2208 464 ) (2048 -2208 594.666443 ) (2048 -2176 576 ) +4 1034 1047 (2048 -2208 594.666443 ) (2048 -2208 1136 ) (2048 -2176 1136 ) (2048 -2176 576 ) +4 1034 1046 (2048 -2816 1136 ) (2048 -2816 5542.669922 ) (2048 -2176 5542.669922 ) (2048 -2176 1136 ) +5 1034 1036 (2048 -3072 464 ) (2048 -2176 464 ) (2176 -2048 464 ) (3072 -2048 464 ) (3072 -3072 464 ) +4 1034 1035 (2048 -2176 576 ) (2048 -2176 5542.669922 ) (2176 -2048 5542.669922 ) (2176 -2048 575.996094 ) +4 1035 1047 (2048 -2048 1136 ) (2048 -2048 501.331055 ) (2048 -2176 576 ) (2048 -2176 1136 ) +4 1035 1046 (2048 -2048 5542.669922 ) (2048 -2048 1136 ) (2048 -2176 1136 ) (2048 -2176 5542.669922 ) +4 1036 1168 (3072 -3072 448 ) (3072 -3072 464 ) (2048 -3072 464 ) (2048 -3072 448 ) +4 1036 1128 (2048 -2816 448 ) (2048 -3072 448 ) (2048 -3072 464 ) (2048 -2816 464 ) +4 1036 1051 (2048 -2048 464 ) (2048 -2048 448 ) (2048 -2816 448 ) (2048 -2816 464 ) +5 1036 1037 (3072 -3072 448 ) (2048 -3072 448 ) (2048 -2175.969727 448 ) (2175.982910 -2048 448 ) (3072 -2048 448 ) +4 1037 1169 (3072 -3072 384 ) (3072 -3072 432 ) (2048 -3072 432 ) (2048 -3072 384 ) +4 1037 1168 (3072 -3072 432 ) (3072 -3072 448 ) (2048 -3072 448 ) (2048 -3072 432 ) +4 1037 1129 (2048 -2816 384 ) (2048 -3072 384 ) (2048 -3072 416 ) (2048 -2816 416 ) +4 1037 1128 (2048 -3072 416 ) (2048 -3072 448 ) (2048 -2816 448 ) (2048 -2816 416 ) +4 1037 1103 (2048 -2624 384 ) (2048 -2816 384 ) (2048 -2816 448 ) (2048 -2624 448 ) +4 1037 1096 (2048 -2175.979736 384 ) (2048 -2624 384 ) (2048 -2624 448 ) (2048 -2175.969727 448 ) +4 1037 1041 (2127.993896 -2095.993896 384 ) (2159.995605 -2063.995605 384 ) (3072 -2976 384 ) (3072 -3040 384 ) +5 1037 1040 (3072 -3072 384 ) (3008 -3072 384 ) (2079.991455 -2143.991455 384 ) (2127.993896 -2095.993896 384 ) (3072 -3040 384 ) +4 1037 1039 (2159.995605 -2063.995605 384 ) (2175.992920 -2048 384 ) (3072 -2048 384 ) (3072 -2976 384 ) +4 1037 1038 (3008 -3072 384 ) (2048 -3072 384 ) (2048 -2175.979736 384 ) (2079.991455 -2143.991455 384 ) +4 1038 1186 (2048 -3072 288 ) (2048 -3072 256 ) (3008 -3072 256 ) (3008 -3072 288 ) +4 1038 1169 (3008 -3072 384 ) (2048 -3072 384 ) (2048 -3072 288 ) (3008 -3072 288 ) +4 1038 1129 (2048 -2816 256 ) (2048 -3072 256 ) (2048 -3072 384 ) (2048 -2816 384 ) +4 1038 1103 (2048 -2624 256 ) (2048 -2816 256 ) (2048 -2816 384 ) (2048 -2624 384 ) +4 1038 1096 (2048 -2175.989990 256 ) (2048 -2624 256 ) (2048 -2624 384 ) (2048 -2175.979980 384 ) +4 1038 1042 (2048 -3072 256 ) (2048 -2175.989990 256 ) (2080 -2144 256 ) (3008 -3072 256 ) +4 1038 1040 (3008 -3072 256 ) (2080 -2144 256 ) (2079.995117 -2143.995117 384 ) (3008 -3072 384 ) +4 1039 1042 (2176 -2048 256 ) (3072 -2048 256 ) (3072 -2976 256 ) (2160 -2064 256 ) +4 1039 1041 (2160 -2064 256 ) (3072 -2976 256 ) (3072 -2976 384 ) (2160 -2064 384 ) +4 1040 1186 (3072 -3072 256 ) (3072 -3072 288 ) (3008 -3072 288 ) (3008 -3072 256 ) +4 1040 1169 (3072 -3072 288 ) (3072 -3072 384 ) (3008 -3072 384 ) (3008 -3072 288 ) +4 1040 1058 (2048 -2048 384 ) (2048 -2048 256 ) (2048 -2112 256 ) (2048 -2112 384 ) +5 1040 1042 (2128 -2096 256 ) (3072 -3040 256 ) (3072 -3072 256 ) (3008 -3072 256 ) (2080 -2144 256 ) +4 1040 1041 (3072 -3040 256 ) (2128 -2096 256 ) (2128 -2096 384 ) (3072 -3040 384 ) +4 1041 1042 (2160 -2064 256 ) (3072 -2976 256 ) (3072 -3040 256 ) (2128 -2096 256 ) +4 1042 1186 (3072 -3072 192 ) (3072 -3072 256 ) (2048 -3072 256 ) (2048 -3072 192 ) +4 1042 1129 (2048 -2816 192 ) (2048 -3072 192 ) (2048 -3072 256 ) (2048 -2816 256 ) +4 1042 1103 (2048 -2624 192 ) (2048 -2816 192 ) (2048 -2816 256 ) (2048 -2624 256 ) +4 1042 1096 (2048 -2176 192 ) (2048 -2624 192 ) (2048 -2624 256 ) (2048 -2176 256 ) +5 1042 1043 (3072 -3072 192 ) (2048 -3072 192 ) (2048 -2176 192 ) (2176 -2048 192 ) (3072 -2048 192 ) +4 1043 1189 (3072 -3072 64 ) (3072 -3072 128 ) (2048 -3072 128 ) (2048 -3072 64 ) +4 1043 1186 (3072 -3072 128 ) (3072 -3072 192 ) (2048 -3072 192 ) (2048 -3072 128 ) +4 1043 1129 (2048 -2816 64 ) (2048 -3072 64 ) (2048 -3072 192 ) (2048 -2816 192 ) +4 1043 1103 (2048 -2624 64 ) (2048 -2816 64 ) (2048 -2816 192 ) (2048 -2624 192 ) +4 1043 1096 (2048 -2176 64 ) (2048 -2624 64 ) (2048 -2624 192 ) (2048 -2176 192 ) +4 1043 1061 (2048 -2048 192 ) (2048 -2048 64 ) (2048 -2176 64 ) (2048 -2176 192 ) +5 1043 1044 (2048 -3072 64 ) (2048 -2144 64 ) (2144 -2048 64 ) (3072 -2048 64 ) (3072 -3072 64 ) +4 1044 1189 (3072 -3072 0 ) (3072 -3072 64 ) (2048 -3072 64 ) (2048 -3072 0 ) +4 1044 1147 (2048 -2816 0 ) (2048 -3072 0 ) (2048 -3072 48 ) (2048 -2816 48 ) +4 1044 1129 (2048 -3072 48 ) (2048 -3072 64 ) (2048 -2816 64 ) (2048 -2816 48 ) +4 1044 1113 (2048 -2144 0 ) (2048 -2272 0 ) (2048 -2272 64 ) (2048 -2144 64 ) +4 1044 1115 (2048 -2272 0 ) (2048 -2816 0 ) (2048 -2816 64 ) (2048 -2272 64 ) +5 1044 1045 (3072 -3072 0 ) (2048 -3072 0 ) (2048 -2144 0 ) (2144 -2048 0 ) (3072 -2048 0 ) +4 1045 1189 (3072 -3072 -1284 ) (3072 -3072 0 ) (2048 -3072 0 ) (2048 -3072 -1284 ) +4 1045 1160 (2048 -2048 -192 ) (2048 -2048 -1284 ) (2048 -3072 -1284 ) (2048 -3072 -192 ) +4 1045 1158 (2048 -2048 -128 ) (2048 -2048 -192 ) (2048 -3072 -192 ) (2048 -3072 -128 ) +4 1045 1152 (2048 -2752 -128 ) (2048 -3072 -128 ) (2048 -3072 -64 ) (2048 -2752 -64 ) +4 1045 1150 (2048 -2048 -64 ) (2048 -2048 -128 ) (2048 -2752 -128 ) (2048 -2752 -64 ) +4 1045 1147 (2048 -2816 -64 ) (2048 -3072 -64 ) (2048 -3072 0 ) (2048 -2816 0 ) +4 1045 1114 (2048 -2120 -64 ) (2048 -2272 -64 ) (2048 -2272 0 ) (2048 -2120 0 ) +4 1045 1115 (2048 -2272 -64 ) (2048 -2816 -64 ) (2048 -2816 0 ) (2048 -2272 0 ) +4 1045 1107 (2048 -2048 0 ) (2048 -2048 -64 ) (2048 -2120 -64 ) (2048 -2120 0 ) +4 1046 3462 (1024 -2624 464 ) (1024 -2816 464 ) (1024 -2816 5542.669922 ) (1024 -2624 5542.669922 ) +4 1046 3460 (1024 -2560 464 ) (1024 -2624 464 ) (1024 -2624 5542.669922 ) (1024 -2560 5542.669922 ) +4 1046 3450 (1024 -2416 464 ) (1024 -2560 464 ) (1024 -2560 5542.669922 ) (1024 -2416 5542.669922 ) +4 1046 3448 (1024 -2320 464 ) (1024 -2416 464 ) (1024 -2416 5542.669922 ) (1024 -2320 5542.669922 ) +4 1046 3438 (1024 -2176 464 ) (1024 -2320 464 ) (1024 -2320 5542.669922 ) (1024 -2176 5542.669922 ) +4 1046 3436 (1024 -2112 464 ) (1024 -2176 464 ) (1024 -2176 5542.669922 ) (1024 -2112 5542.669922 ) +4 1046 3435 (1024 -2048 5542.669922 ) (1024 -2048 464 ) (1024 -2112 464 ) (1024 -2112 5542.669922 ) +5 1046 1128 (2048 -2816 1136 ) (2048 -2816 5542.669922 ) (1024 -2816 5542.669922 ) (1024 -2816 464 ) (1472 -2816 464 ) +6 1046 1054 (1344 -2816 464 ) (1024 -2816 464 ) (1024 -2048 464 ) (1407.989868 -2048 464 ) (1456 -2096.010010 464 ) (1456.010498 -2703.989502 464 ) +3 1046 1053 (1407.989868 -2048 464 ) (1472 -2048 464 ) (1472 -2112.010010 464 ) +3 1046 1052 (1472 -2816 464 ) (1344 -2816 464 ) (1472 -2688 464 ) +4 1046 1050 (1568 -2816 576.002197 ) (1471.998169 -2816 464 ) (1471.998169 -2688.001953 464 ) (1568 -2592 576.002197 ) +4 1046 1049 (2048 -2816 1136.002441 ) (1568 -2816 576.002197 ) (1568 -2208 576.002136 ) (2048 -2208 1136.002197 ) +5 1046 1047 (1471.998169 -2111.996094 464 ) (1471.998169 -2048 464 ) (2048 -2048 1136.002075 ) (2048 -2208 1136.002197 ) (1568.002197 -2208 576.004639 ) +4 1047 1053 (1472 -2111.996094 464 ) (1472 -2048 464 ) (1536 -2048 464 ) (1536 -2111.996094 464 ) +4 1047 1051 (1536 -2048 464 ) (1984.002441 -2048 464 ) (1920.003784 -2111.996094 464 ) (1536 -2111.996094 464 ) +4 1047 1049 (2048 -2208 1136 ) (1568.004028 -2208 576.004639 ) (2016.007813 -2208 576.004700 ) (2048 -2208 594.666443 ) +4 1047 1048 (2048 -2208 594.667969 ) (2016.004761 -2208 576.004517 ) (2016.002319 -2207.997559 576.001709 ) (2048 -2176 576.001099 ) +3 1048 1051 (2048 -2176 464 ) (2048 -2208 464 ) (2016 -2208 464 ) +4 1048 1049 (2016 -2208 464 ) (2048 -2208 464 ) (2048 -2208 594.666443 ) (2016 -2208 576 ) +4 1049 1128 (2048 -2816 464 ) (2048 -2816 1136 ) (1568 -2816 576 ) (1568 -2816 464 ) +4 1049 1051 (2048 -2816 464 ) (1568 -2816 464 ) (1568 -2208 464 ) (2048 -2208 464 ) +4 1049 1050 (1568 -2592 464 ) (1568 -2816 464 ) (1568 -2816 576 ) (1568 -2592 576 ) +3 1050 1128 (1568 -2816 576 ) (1472 -2816 464 ) (1568 -2816 464 ) +4 1050 1052 (1536 -2816 464 ) (1472 -2816 464 ) (1472 -2688 464 ) (1536 -2624 464 ) +4 1050 1051 (1568 -2816 464 ) (1536 -2816 464 ) (1536 -2624 464 ) (1568 -2592 464 ) +4 1051 1128 (2048 -2816 448 ) (2048 -2816 464 ) (1536 -2816 464 ) (1536 -2816 448 ) +4 1051 1103 (2048 -2816 448 ) (1536 -2816 448 ) (1536 -2624 448 ) (2048 -2624 448 ) +4 1051 1096 (1536 -2624 448 ) (1536 -2176 448 ) (2048 -2176 448 ) (2048 -2624 448 ) +4 1051 1070 (1536 -2112 448 ) (1536 -2102 448 ) (1807.989990 -2102 448 ) (1807.989990 -2112 448 ) +4 1051 1065 (1536 -2102 448 ) (1536 -2048 448 ) (1807.989990 -2048 448 ) (1807.989990 -2102 448 ) +4 1051 1063 (1807.989990 -2048 448 ) (1887.989990 -2048 448 ) (1887.989990 -2112 448 ) (1807.989990 -2112 448 ) +5 1051 1056 (1887.989990 -2048 448 ) (1920 -2048 448 ) (1952 -2080 448 ) (1919.990112 -2112 448 ) (1887.989990 -2112 448 ) +3 1051 1055 (1920 -2048 448 ) (1984 -2048 448 ) (1952 -2080 448 ) +4 1051 1053 (1536 -2048 448 ) (1536 -2176 448 ) (1536 -2176.010254 464 ) (1536 -2048 464 ) +4 1051 1052 (1536 -2624 448 ) (1536 -2816 448 ) (1536 -2816 464 ) (1536 -2624 464 ) +4 1052 1128 (1536 -2816 464 ) (1344 -2816 464 ) (1344 -2816 448 ) (1536 -2816 448 ) +3 1052 1105 (1471.989990 -2816 448 ) (1344 -2816 448 ) (1471.989990 -2688.009766 448 ) +4 1052 1104 (1536 -2816 448 ) (1471.989990 -2816 448 ) (1471.989990 -2752 448 ) (1536 -2752 448 ) +4 1052 1054 (1472.009888 -2687.991943 448 ) (1344.001953 -2816 448 ) (1344.003906 -2816 464 ) (1456.010498 -2703.992432 464 ) +3 1053 1071 (1472 -2112 448 ) (1462 -2102 448 ) (1472 -2102 448 ) +4 1053 1070 (1536 -2102 448 ) (1536 -2112 448 ) (1472 -2112 448 ) (1472 -2102 448 ) +4 1053 1065 (1408 -2048 448 ) (1536 -2048 448 ) (1536 -2102 448 ) (1462 -2102 448 ) +4 1053 1054 (1408 -2048 448 ) (1472 -2112 448 ) (1456 -2096.009033 464 ) (1407.990723 -2048 464 ) +4 1054 3462 (1024 -2624 448 ) (1024 -2816 448 ) (1024 -2816 464 ) (1024 -2624 464 ) +4 1054 3460 (1024 -2560 448 ) (1024 -2624 448 ) (1024 -2624 464 ) (1024 -2560 464 ) +4 1054 3450 (1024 -2416 448 ) (1024 -2560 448 ) (1024 -2560 464 ) (1024 -2416 464 ) +4 1054 3448 (1024 -2320 448 ) (1024 -2416 448 ) (1024 -2416 464 ) (1024 -2320 464 ) +4 1054 3438 (1024 -2176 448 ) (1024 -2320 448 ) (1024 -2320 464 ) (1024 -2176 464 ) +4 1054 3436 (1024 -2112 448 ) (1024 -2176 448 ) (1024 -2176 464 ) (1024 -2112 464 ) +4 1054 3435 (1024 -2048 464 ) (1024 -2048 448 ) (1024 -2112 448 ) (1024 -2112 464 ) +4 1054 1128 (1344 -2816 464 ) (1024 -2816 464 ) (1024 -2816 448 ) (1344 -2816 448 ) +4 1054 1106 (1056 -2816 448 ) (1024 -2816 448 ) (1024 -2624 448 ) (1056 -2624 448 ) +5 1054 1105 (1344 -2816 448 ) (1056 -2816 448 ) (1056 -2624 448 ) (1472.008789 -2624 448 ) (1472.009888 -2687.989990 448 ) +4 1054 1102 (1024 -2624 448 ) (1024 -2176 448 ) (1248 -2176 448 ) (1248 -2624 448 ) +4 1054 1097 (1248 -2176 448 ) (1472 -2176 448 ) (1472.008789 -2624 448 ) (1248 -2624 448 ) +4 1054 1089 (1024 -2176 448 ) (1024 -2120 448 ) (1248 -2120 448 ) (1248 -2176 448 ) +4 1054 1086 (1248 -2120 448 ) (1472 -2120 448 ) (1472 -2144 448 ) (1248 -2144 448 ) +4 1054 1088 (1472 -2144 448 ) (1472 -2176 448 ) (1248 -2176 448 ) (1248 -2144 448 ) +4 1054 1082 (1024 -2120 448 ) (1024 -2112 448 ) (1248 -2112 448 ) (1248 -2120 448 ) +4 1054 1081 (1024 -2112 448 ) (1024 -2102 448 ) (1248 -2102 448 ) (1248 -2112 448 ) +4 1054 1080 (1280 -2112 448 ) (1280 -2120 448 ) (1248 -2120 448 ) (1248 -2112 448 ) +4 1054 1079 (1248 -2102 448 ) (1280 -2102 448 ) (1280 -2112 448 ) (1248 -2112 448 ) +4 1054 1072 (1472 -2112 448 ) (1472 -2120 448 ) (1280 -2120 448 ) (1280 -2112 448 ) +4 1054 1071 (1280 -2102 448 ) (1462 -2102 448 ) (1472 -2112 448 ) (1280 -2112 448 ) +4 1054 1065 (1024 -2102 448 ) (1024 -2048 448 ) (1408 -2048 448 ) (1462 -2102 448 ) +3 1055 1057 (1920 -2048 384 ) (1984 -2048 384 ) (1952 -2080 384 ) +4 1055 1056 (1920.001099 -2048 384 ) (1952 -2080 384 ) (1952 -2080 448 ) (1920.001099 -2048 448 ) +4 1056 1063 (1887.989990 -2112 448 ) (1887.989990 -2048 448 ) (1887.989990 -2048 384 ) (1887.989990 -2112 384 ) +5 1056 1059 (1887.989990 -2112 384 ) (1887.989990 -2048 384 ) (1920 -2048 384 ) (1952 -2080 384 ) (1919.990112 -2112 384 ) +3 1057 1060 (1920 -2048 256 ) (1984 -2048 256 ) (1952 -2080 256 ) +4 1057 1059 (1920.001099 -2048 256 ) (1952 -2080 256 ) (1952 -2080 384 ) (1920 -2048 384 ) +4 1059 1063 (1887.989990 -2112 384 ) (1887.989990 -2048 384 ) (1887.989990 -2048 256 ) (1887.989990 -2112 256 ) +5 1059 1062 (1887.989990 -2112 256 ) (1887.989990 -2048 256 ) (1920 -2048 256 ) (1952 -2080 256 ) (1919.990112 -2112 256 ) +4 1060 1062 (1952 -2080 256 ) (1920.001343 -2048 256 ) (1920.001343 -2048 192 ) (1952 -2080 192 ) +3 1060 1061 (1952 -2080 192 ) (1920.001343 -2048 192 ) (1984 -2048 192 ) +3 1061 1113 (2048 -2144 64 ) (2048 -2176 64 ) (2032 -2160 64 ) +4 1061 1062 (1952 -2080 192 ) (1920.001343 -2048 192 ) (1920.001343 -2048 64 ) (1952 -2080 64 ) +4 1062 1063 (1887.989990 -2048 64 ) (1887.989990 -2112 64 ) (1887.989990 -2112 256 ) (1887.989990 -2048 256 ) +4 1063 1070 (1807.989990 -2102 64 ) (1807.989990 -2112 64 ) (1807.989990 -2112 448 ) (1807.989990 -2102 448 ) +4 1063 1065 (1807.989990 -2048 64 ) (1807.989990 -2102 64 ) (1807.989990 -2102 448 ) (1807.989990 -2048 448 ) +4 1063 1064 (1807.989990 -2112 192 ) (1807.989990 -2112 64 ) (1887.989990 -2112 64 ) (1887.989990 -2112 192 ) +4 1064 1096 (1807.989990 -2176 64 ) (1887.989990 -2176 64 ) (1887.989990 -2176 192 ) (1807.989990 -2176 192 ) +4 1065 3435 (1024 -2048 448 ) (1024 -2048 64 ) (1024 -2102 64 ) (1024 -2102 448 ) +4 1065 1109 (1024 -2102 64 ) (1024 -2048 64 ) (1472 -2048 64 ) (1472 -2102 64 ) +3 1065 1081 (1248 -2102 448 ) (1024 -2102 448 ) (1024 -2102 224 ) +4 1065 1079 (1280 -2102 448 ) (1248 -2102 448 ) (1024 -2102 224 ) (1040 -2102 208 ) +3 1065 1078 (1472 -2102 64 ) (1544 -2102 64 ) (1472 -2102 82 ) +3 1065 1077 (1192 -2102 118 ) (1134.133423 -2102 113.866669 ) (1137.750122 -2102 110.250015 ) +3 1065 1076 (1203.199951 -2102 118.800003 ) (1120.320068 -2102 127.679993 ) (1134.133423 -2102 113.866669 ) +4 1065 1075 (1248 -2102 122 ) (1116.615479 -2102 131.384613 ) (1120.320068 -2102 127.679993 ) (1203.199951 -2102 118.800003 ) +3 1065 1074 (1304 -2102 118 ) (1101 -2102 147 ) (1116.615479 -2102 131.384613 ) +3 1065 1073 (1360 -2102 110 ) (1064 -2102 184 ) (1101 -2102 147 ) +6 1065 1071 (1472 -2102 448 ) (1280 -2102 448 ) (1040 -2102 208 ) (1064 -2102 184 ) (1416 -2102 96 ) (1472 -2102 90 ) +5 1065 1070 (1544 -2102 64 ) (1807.989990 -2102 64 ) (1807.989990 -2102 448 ) (1472 -2102 448 ) (1472 -2102 82 ) +4 1065 1068 (1040 -2102 91.714294 ) (1040 -2102 208 ) (1024 -2102 224 ) (1024 -2102 90 ) +3 1065 1067 (1137.750000 -2102 110.249992 ) (1137.599976 -2102 110.400002 ) (1136 -2102 110 ) +4 1065 1066 (1137.599976 -2102 110.400002 ) (1040 -2102 208 ) (1040 -2102 91.714287 ) (1080 -2102 96 ) +4 1066 1083 (1137.599976 -2120 110.400002 ) (1040 -2120 208 ) (1040 -2120 91.714287 ) (1080 -2120 96 ) +4 1066 1077 (1137.600220 -2102 110.400055 ) (1134.133545 -2102 113.866692 ) (1134.133301 -2120 113.866676 ) (1137.599976 -2120 110.399994 ) +4 1066 1076 (1134.133545 -2102 113.866692 ) (1120.320190 -2102 127.679977 ) (1120.319946 -2120 127.680023 ) (1134.133301 -2120 113.866676 ) +4 1066 1075 (1120.320190 -2102 127.679977 ) (1116.615601 -2102 131.384598 ) (1116.615356 -2120 131.384613 ) (1120.319946 -2120 127.680023 ) +4 1066 1074 (1116.615601 -2102 131.384598 ) (1101 -2102 147 ) (1101 -2120 147 ) (1116.615356 -2120 131.384613 ) +4 1066 1073 (1101 -2102 147 ) (1064 -2102 184 ) (1064 -2120 184 ) (1101 -2120 147 ) +4 1066 1072 (1040 -2112 208 ) (1040 -2120 208 ) (1064 -2120 184 ) (1064 -2112 184 ) +4 1066 1071 (1064 -2102 184 ) (1040 -2102 208 ) (1040 -2112 208 ) (1064 -2112 184 ) +4 1066 1069 (1040 -2114 208 ) (1040 -2112 208 ) (1040 -2112 91.714294 ) (1040 -2114 91.714294 ) +4 1066 1068 (1040 -2112 208 ) (1040 -2102 208 ) (1040 -2102 91.714302 ) (1040 -2112 91.714294 ) +4 1066 1067 (1135.995239 -2102 110 ) (1137.600830 -2102 110.400711 ) (1137.600830 -2120 110.400711 ) (1135.995239 -2120 110 ) +3 1067 1083 (1137.750000 -2120 110.249992 ) (1137.599976 -2120 110.400002 ) (1136 -2120 110 ) +4 1067 1077 (1137.750244 -2102 110.250023 ) (1137.600220 -2102 110.400055 ) (1137.599976 -2120 110.399994 ) (1137.750000 -2120 110.249992 ) +4 1068 3435 (1024 -2112 90 ) (1024 -2112 224 ) (1024 -2102 224 ) (1024 -2102 90 ) +4 1068 1079 (1040 -2102 208 ) (1024 -2102 224 ) (1024 -2112 224 ) (1040 -2112 208 ) +4 1068 1069 (1040 -2112 91.714294 ) (1040 -2112 208 ) (1038 -2112 210 ) (1038 -2112 91.500015 ) +4 1070 1078 (1472 -2102 82 ) (1544 -2102 64 ) (1544 -2112 64 ) (1472 -2112 82 ) +4 1070 1071 (1472 -2112 90 ) (1472 -2112 448 ) (1472 -2102 448 ) (1472 -2102 90 ) +4 1071 1079 (1280 -2102 448 ) (1040 -2102 208 ) (1040 -2112 208 ) (1280 -2112 448 ) +4 1071 1073 (1064 -2112 184 ) (1064 -2102 184 ) (1360 -2102 110 ) (1360.001099 -2112 110 ) +6 1071 1072 (1064.005127 -2112 183.994797 ) (1415.972412 -2112 96.002975 ) (1472 -2112 90 ) (1472 -2112 448 ) (1279.996582 -2112 448 ) (1039.992188 -2112 207.996094 ) +4 1072 1087 (1044 -2120 212 ) (1040 -2120 208 ) (1064 -2120 184 ) (1074.666626 -2120 181.333359 ) +6 1072 1086 (1471.989990 -2120 448 ) (1280 -2120 448 ) (1044 -2120 212 ) (1074.666626 -2120 181.333359 ) (1416 -2120 96 ) (1471.989990 -2120 90.001060 ) +4 1072 1080 (1044 -2120 212 ) (1280 -2120 448 ) (1280 -2112 448 ) (1044 -2112 212 ) +4 1072 1073 (1360.001587 -2120 110 ) (1064 -2120 184 ) (1064 -2112 184 ) (1360 -2112 110 ) +4 1073 1087 (1074.666748 -2120 181.333359 ) (1064 -2120 184 ) (1101 -2120 147 ) (1110.333374 -2120 145.666641 ) +3 1073 1086 (1360 -2120 110 ) (1074.666748 -2120 181.333359 ) (1110.333374 -2120 145.666641 ) +4 1073 1074 (1101 -2120 147 ) (1101 -2102 147 ) (1303.995728 -2102 118 ) (1303.995728 -2120 118 ) +4 1074 1087 (1110.333374 -2120 145.666626 ) (1101 -2120 147 ) (1116.615479 -2120 131.384613 ) (1125.230835 -2120 130.769241 ) +3 1074 1086 (1304 -2120 118 ) (1110.333374 -2120 145.666626 ) (1125.230835 -2120 130.769241 ) +4 1074 1075 (1116.615234 -2120 131.384720 ) (1116.615234 -2102 131.384720 ) (1248 -2102 122 ) (1248 -2120 122 ) +4 1075 1087 (1125.230713 -2120 130.769226 ) (1116.615479 -2120 131.384613 ) (1120.320068 -2120 127.679993 ) (1129.280029 -2120 126.720001 ) +4 1075 1086 (1248 -2120 122 ) (1125.230713 -2120 130.769226 ) (1129.280029 -2120 126.720001 ) (1203.199951 -2120 118.800003 ) +4 1075 1076 (1120.319946 -2120 127.680000 ) (1120.319946 -2102 127.680000 ) (1203.199829 -2102 118.799988 ) (1203.199829 -2120 118.799988 ) +4 1076 1087 (1129.280029 -2120 126.720001 ) (1120.320068 -2120 127.679993 ) (1134.133423 -2120 113.866669 ) (1141.599976 -2120 114.400002 ) +3 1076 1086 (1203.199951 -2120 118.800003 ) (1129.280029 -2120 126.720001 ) (1141.599976 -2120 114.400002 ) +4 1076 1077 (1134.133057 -2120 113.866875 ) (1134.133057 -2102 113.866875 ) (1192.002808 -2102 118 ) (1192.002808 -2120 118 ) +4 1077 1087 (1141.599976 -2120 114.399994 ) (1134.133423 -2120 113.866669 ) (1137.750122 -2120 110.250015 ) (1144.750000 -2120 111.249992 ) +3 1077 1086 (1192 -2120 118 ) (1141.599976 -2120 114.399994 ) (1144.750000 -2120 111.249992 ) +4 1079 1081 (1248.001709 -2102 448 ) (1024 -2102 223.998291 ) (1024 -2112 224 ) (1248 -2112 448 ) +4 1079 1080 (1044 -2112 212 ) (1280 -2112 448 ) (1248 -2112 448 ) (1028 -2112 228 ) +4 1080 1086 (1280 -2120 448 ) (1248 -2120 448 ) (1028 -2120 228 ) (1044 -2120 212 ) +4 1080 1082 (1028 -2120 228 ) (1248 -2120 448 ) (1248 -2112 448 ) (1028 -2112 228 ) +4 1081 3435 (1024 -2112 448 ) (1024 -2102 448 ) (1024 -2102 224 ) (1024 -2112 224 ) +4 1081 1082 (1028 -2112 228 ) (1248 -2112 448 ) (1024 -2112 448 ) (1024 -2112 228 ) +4 1082 3436 (1024 -2120 228 ) (1024 -2120 448 ) (1024 -2112 448 ) (1024 -2112 228 ) +4 1082 1089 (1248 -2120 448 ) (1024 -2120 448 ) (1024 -2120 228 ) (1028 -2120 228 ) +4 1083 1121 (1040 -2120 64 ) (1056 -2120 64 ) (1056 -2176 64 ) (1040 -2176 64 ) +4 1083 1120 (1056 -2120 64 ) (1184 -2120 64 ) (1184 -2176 64 ) (1056 -2176 64 ) +3 1083 1090 (1040 -2176 64 ) (1184 -2176 64 ) (1040 -2176 208 ) +4 1083 1087 (1184.001343 -2144 64 ) (1184.001831 -2120 64 ) (1040 -2120 208.001831 ) (1040 -2144 208.001205 ) +4 1083 1088 (1040 -2176 208 ) (1184 -2176 64 ) (1184.001343 -2144 64 ) (1040 -2144 208.001205 ) +4 1083 1084 (1040 -2144 208 ) (1040 -2142 208 ) (1040 -2142 64 ) (1040 -2144 64 ) +4 1083 1085 (1040 -2176 64 ) (1040 -2176 208 ) (1040 -2144 208 ) (1040 -2144 64 ) +3 1084 1122 (1040 -2142 64 ) (1040 -2144 64 ) (1038 -2144 64 ) +4 1084 1085 (1038 -2144 64 ) (1040 -2144 64 ) (1040 -2144 208 ) (1038 -2144 210 ) +4 1085 1123 (1024 -2176 64 ) (1024 -2144 64 ) (1040 -2144 64 ) (1040 -2176 64 ) +4 1085 1091 (1024 -2176 64 ) (1040 -2176 64 ) (1040 -2176 208 ) (1024 -2176 224 ) +4 1085 1088 (1024 -2176 224 ) (1040 -2176 208 ) (1040 -2144 208.001205 ) (1024 -2144 224.001190 ) +4 1086 1120 (1192 -2120 64 ) (1456 -2120 64 ) (1456 -2144 64 ) (1192 -2144 64 ) +4 1086 1089 (1248 -2120 448 ) (1028 -2120 228 ) (1028 -2144 228 ) (1248 -2144 448 ) +4 1086 1087 (1192.001709 -2144 64 ) (1044 -2144 212 ) (1044 -2120 212 ) (1192.001709 -2120 64 ) +5 1086 1088 (1471.989990 -2144 64 ) (1471.989990 -2144 448 ) (1247.997803 -2144 448 ) (1027.998901 -2144 228.001099 ) (1192 -2144 64 ) +4 1087 1120 (1184 -2120 64 ) (1192 -2120 64 ) (1192 -2144 64 ) (1184 -2144 64 ) +4 1087 1088 (1040 -2144 208 ) (1184 -2144 64 ) (1192 -2144 64 ) (1044 -2144 212 ) +4 1088 1120 (1456 -2176 64 ) (1184 -2176 64 ) (1184 -2144 64 ) (1456 -2144 64 ) +4 1088 1098 (1184 -2176 64 ) (1192 -2176 64 ) (1028 -2176 228 ) (1024 -2176 224 ) +5 1088 1097 (1192 -2176 64 ) (1471.989990 -2176 64 ) (1471.989990 -2176 448 ) (1248 -2176 448 ) (1028 -2176 228 ) +4 1088 1089 (1028 -2176 228 ) (1248 -2176 448 ) (1248 -2144 448 ) (1028 -2144 228 ) +4 1089 3436 (1024 -2176 228 ) (1024 -2176 448 ) (1024 -2120 448 ) (1024 -2120 228 ) +4 1089 1102 (1248 -2176 448 ) (1024 -2176 448 ) (1024 -2176 228 ) (1028 -2176 228 ) +4 1090 1121 (1040 -2176 64 ) (1056 -2176 64 ) (1056 -2624 64 ) (1040 -2624 64 ) +4 1090 1120 (1056 -2176 64 ) (1184 -2176 64 ) (1184 -2624 64 ) (1056 -2624 64 ) +3 1090 1105 (1056 -2624 64 ) (1184 -2624 64 ) (1056 -2624 192 ) +4 1090 1101 (1040 -2624 207.996094 ) (1183.996094 -2624 64 ) (1183.996338 -2592 64 ) (1040 -2592 207.996368 ) +4 1090 1099 (1183.998169 -2384 64 ) (1183.998413 -2352 64 ) (1040 -2352 207.998459 ) (1040 -2384 207.998184 ) +4 1090 1098 (1183.998413 -2352 64 ) (1184 -2176 64 ) (1040 -2176 208 ) (1040 -2352 207.998459 ) +4 1090 1100 (1183.996338 -2592 64 ) (1183.998169 -2384 64 ) (1040 -2384 207.998184 ) (1040 -2592 207.996368 ) +4 1090 1095 (1040 -2594 208 ) (1040 -2592 208 ) (1040 -2592 64 ) (1040 -2594 64 ) +4 1090 1093 (1040 -2354 208 ) (1040 -2352 208 ) (1040 -2352 64 ) (1040 -2354 64 ) +4 1090 1092 (1040 -2384 208 ) (1040 -2382 208 ) (1040 -2382 64 ) (1040 -2384 64 ) +4 1090 1091 (1040 -2352 208 ) (1040 -2176 208 ) (1040 -2176 64 ) (1040 -2352 64 ) +4 1090 1094 (1040 -2592 208 ) (1040 -2384 208 ) (1040 -2384 64 ) (1040 -2592 64 ) +12 1091 3439 (1024 -2176 64 ) (1024 -2320 64 ) (1024 -2320 88 ) (1024 -2316 124 ) (1024 -2304 160 ) (1024 -2280 184 ) (1024 -2256 192 ) (1024 -2240 192 ) (1024 -2216 184 ) (1024 -2192 160 ) (1024 -2180 124 ) (1024 -2176 88 ) +4 1091 1123 (1024 -2352 64 ) (1024 -2176 64 ) (1040 -2176 64 ) (1040 -2352 64 ) +4 1091 1098 (1040 -2352 207.998459 ) (1040 -2176 208 ) (1024 -2176 224 ) (1024 -2352 223.998459 ) +4 1091 1093 (1038 -2352 64 ) (1040 -2352 64 ) (1040 -2352 208 ) (1038 -2352 210 ) +3 1092 1124 (1040 -2382 64 ) (1040 -2384 64 ) (1038 -2384 64 ) +4 1092 1094 (1038 -2384 64 ) (1040 -2384 64 ) (1040 -2384 208 ) (1038 -2384 210 ) +3 1093 1125 (1038 -2352 64 ) (1040 -2352 64 ) (1040 -2354 64 ) +12 1094 3452 (1024 -2416 64 ) (1024 -2560 64 ) (1024 -2560 88 ) (1024 -2556 124 ) (1024 -2544 160 ) (1024 -2520 184 ) (1024 -2496 192 ) (1024 -2480 192 ) (1024 -2456 184 ) (1024 -2432 160 ) (1024 -2420 124 ) (1024 -2416 88 ) +4 1094 1126 (1024 -2592 64 ) (1024 -2384 64 ) (1040 -2384 64 ) (1040 -2592 64 ) +4 1094 1100 (1040 -2592 207.996368 ) (1040 -2384 207.998184 ) (1024 -2384 223.998184 ) (1024 -2592 223.996368 ) +4 1094 1095 (1038 -2592 64 ) (1040 -2592 64 ) (1040 -2592 208 ) (1038 -2592 210 ) +3 1095 1127 (1038 -2592 64 ) (1040 -2592 64 ) (1040 -2594 64 ) +4 1096 1113 (2016 -2176 64 ) (2048 -2176 64 ) (2048 -2272 64 ) (1920 -2272 64 ) +4 1096 1115 (2048 -2272 64 ) (2048 -2624 64 ) (1664 -2624 64 ) (1664 -2272 64 ) +4 1096 1116 (1535.989990 -2176 64 ) (1664 -2176 64 ) (1664 -2624 64 ) (1535.989990 -2624 64 ) +4 1096 1103 (1535.989990 -2624 64 ) (2048 -2624 64 ) (2048 -2624 448 ) (1535.989990 -2624 448 ) +4 1097 1120 (1192 -2176 64 ) (1456 -2176 64 ) (1456 -2624 64 ) (1192 -2624 64 ) +4 1097 1106 (1056 -2624 256 ) (1028 -2624 228 ) (1032 -2624 224 ) (1056 -2624 224 ) +6 1097 1105 (1192 -2624 64 ) (1471.989990 -2624 64 ) (1471.989990 -2624 448 ) (1248 -2624 448 ) (1056 -2624 256 ) (1056 -2624 200 ) +4 1097 1102 (1248 -2176 448 ) (1028 -2176 228 ) (1028 -2624 228 ) (1248 -2624 448 ) +4 1097 1101 (1192 -2624 64 ) (1044 -2624 212 ) (1044 -2592 212 ) (1192 -2592 64 ) +4 1097 1099 (1044 -2352 212 ) (1192 -2352 64 ) (1192 -2384 64 ) (1044 -2384 212 ) +4 1097 1098 (1028 -2352 228 ) (1028 -2176 228 ) (1192 -2176 64 ) (1192 -2352 64 ) +4 1097 1100 (1028 -2592 228 ) (1028 -2384 228 ) (1192 -2384 64 ) (1192 -2592 64 ) +4 1098 1120 (1184 -2176 64 ) (1192 -2176 64 ) (1192 -2352 64 ) (1184 -2352 64 ) +4 1098 1099 (1192 -2352 64 ) (1044 -2352 212 ) (1040 -2352 208 ) (1184 -2352 64 ) +4 1099 1120 (1192 -2352 64 ) (1192 -2384 64 ) (1184 -2384 64 ) (1184 -2352 64 ) +4 1099 1100 (1192 -2384 64 ) (1044 -2384 212 ) (1040 -2384 208 ) (1184 -2384 64 ) +4 1100 1120 (1192 -2384 64 ) (1192 -2592 64 ) (1184 -2592 64 ) (1184 -2384 64 ) +4 1100 1101 (1192 -2592 64 ) (1044 -2592 212 ) (1040 -2592 208 ) (1184 -2592 64 ) +4 1101 1120 (1192 -2592 64 ) (1192 -2624 64 ) (1184 -2624 64 ) (1184 -2592 64 ) +4 1101 1105 (1184 -2624 64 ) (1192 -2624 64 ) (1056 -2624 200 ) (1056 -2624 192 ) +4 1102 3460 (1024 -2624 228 ) (1024 -2624 448 ) (1024 -2560 448 ) (1024 -2560 228 ) +3 1102 3451 (1024 -2500 228 ) (1024 -2560 228 ) (1024 -2560 288 ) +5 1102 3450 (1024 -2560 448 ) (1024 -2416 448 ) (1024 -2416 228 ) (1024 -2500 228 ) (1024 -2560 288 ) +4 1102 3448 (1024 -2416 448 ) (1024 -2320 448 ) (1024 -2320 228 ) (1024 -2416 228 ) +3 1102 3441 (1024 -2260 228 ) (1024 -2320 228 ) (1024 -2320 288 ) +5 1102 3438 (1024 -2320 448 ) (1024 -2176 448 ) (1024 -2176 228 ) (1024 -2260 228 ) (1024 -2320 288 ) +5 1102 1106 (1056 -2624 448 ) (1024 -2624 448 ) (1024 -2624 228 ) (1028 -2624 228 ) (1056 -2624 256 ) +3 1102 1105 (1248 -2624 448 ) (1056 -2624 448 ) (1056 -2624 256 ) +5 1103 1139 (1535.989990 -2816 99.281036 ) (1535.989990 -2816 64 ) (1658.500244 -2816 64 ) (1658.500244 -2816 82 ) (1579.300049 -2816 96 ) +3 1103 1138 (1658.500244 -2816 82 ) (1658.500244 -2816 90 ) (1579.300049 -2816 96 ) +4 1103 1131 (1658.500244 -2816 416 ) (1535.989990 -2816 416 ) (1535.989990 -2816 99.281036 ) (1658.500244 -2816 90 ) +4 1103 1130 (2042.040039 -2816 416 ) (1658.500244 -2816 416 ) (1658.500244 -2816 64 ) (2042.040039 -2816 64 ) +4 1103 1129 (2048 -2816 64 ) (2048 -2816 416 ) (2042.040039 -2816 416 ) (2042.040039 -2816 64 ) +4 1103 1128 (2048 -2816 416 ) (2048 -2816 448 ) (1535.989990 -2816 448 ) (1535.989990 -2816 416 ) +4 1103 1115 (2048 -2816 64 ) (1664 -2816 64 ) (1664 -2624 64 ) (2048 -2624 64 ) +4 1103 1116 (1664 -2816 64 ) (1535.989990 -2816 64 ) (1535.989990 -2624 64 ) (1664 -2624 64 ) +4 1103 1104 (1535.989990 -2752 64 ) (1535.989990 -2816 64 ) (1535.989990 -2816 448 ) (1535.989990 -2752 448 ) +4 1104 1139 (1471.989990 -2816 104.129547 ) (1471.989990 -2816 64 ) (1535.989990 -2816 64 ) (1535.989990 -2816 99.281052 ) +4 1104 1131 (1471.989990 -2816 416 ) (1471.989990 -2816 104.129547 ) (1535.989990 -2816 99.281052 ) (1535.989990 -2816 416 ) +4 1104 1128 (1535.989990 -2816 448 ) (1471.989990 -2816 448 ) (1471.989990 -2816 416 ) (1535.989990 -2816 416 ) +4 1104 1118 (1535.989990 -2816 64 ) (1471.989990 -2816 64 ) (1471.989990 -2768 64 ) (1535.989990 -2768 64 ) +4 1104 1105 (1471.989990 -2752 64 ) (1471.989990 -2816 64 ) (1471.989990 -2816 448 ) (1471.989990 -2752 448 ) +4 1105 1139 (1056 -2816 135.643921 ) (1056 -2816 64 ) (1471.989990 -2816 64 ) (1471.989990 -2816 104.129532 ) +4 1105 1131 (1056 -2816 416 ) (1056 -2816 135.643921 ) (1471.989990 -2816 104.129532 ) (1471.989990 -2816 416 ) +4 1105 1128 (1471.989990 -2816 448 ) (1056 -2816 448 ) (1056 -2816 416 ) (1471.989990 -2816 416 ) +4 1105 1119 (1471.989990 -2816 64 ) (1456 -2816 64 ) (1456 -2768 64 ) (1471.989990 -2768 64 ) +4 1105 1120 (1456 -2816 64 ) (1056 -2816 64 ) (1056 -2624 64 ) (1456 -2624 64 ) +4 1105 1106 (1056 -2624 448 ) (1056 -2624 224 ) (1056 -2816 416 ) (1056 -2816 448 ) +4 1106 3462 (1024 -2816 416 ) (1024 -2816 448 ) (1024 -2624 448 ) (1024 -2624 224 ) +4 1106 1128 (1056 -2816 448 ) (1024 -2816 448 ) (1024 -2816 416 ) (1056 -2816 416 ) +4 1107 1150 (2048 -2048 -64 ) (2048 -2120 -64 ) (1664 -2120 -64 ) (1664 -2048 -64 ) +4 1107 1114 (1664 -2120 -64 ) (2048 -2120 -64 ) (2048 -2120 0 ) (1664 -2120 0 ) +4 1107 1108 (1664 -2112 -64 ) (1664 -2120 -64 ) (1664 -2120 0 ) (1664 -2112 0 ) +4 1108 1151 (1664 -2120 -64 ) (1472 -2120 -64 ) (1472 -2112 -64 ) (1664 -2112 -64 ) +4 1108 1117 (1472 -2120 -64 ) (1536 -2120 -64 ) (1536 -2120 64 ) (1472 -2120 64 ) +4 1108 1116 (1536 -2120 -64 ) (1664 -2120 -64 ) (1664 -2120 64 ) (1536 -2120 64 ) +4 1110 1161 (1454 -2120 -64 ) (1056 -2120 -64 ) (1056 -2048 -64 ) (1454 -2048 -64 ) +11 1110 1120 (1056 -2120 -64 ) (1454 -2120 -64 ) (1424 -2120 -24 ) (1384 -2120 0 ) (1344 -2120 12 ) (1268 -2120 24 ) (1228 -2120 24 ) (1152 -2120 12 ) (1112 -2120 0 ) (1072 -2120 -24 ) (1056 -2120 -45.333328 ) +4 1110 1112 (1056 -2120 -48 ) (1056 -2120 -45.333328 ) (1056 -2112 -45.333328 ) (1056 -2112 -48 ) +4 1110 1111 (1056 -2048 -64 ) (1056 -2112 -64 ) (1056 -2112 -45.333328 ) (1056 -2048 -45.333328 ) +4 1111 1164 (1042 -2048 -64 ) (1056 -2048 -64 ) (1056 -2112 -64 ) (1042 -2112 -64 ) +3 1111 1112 (1056 -2112 -48 ) (1056 -2112 -45.333328 ) (1054 -2112 -48 ) +3 1112 1121 (1056 -2120 -48 ) (1056 -2120 -45.333374 ) (1054 -2120 -48 ) +3 1113 1114 (2048 -2272 0 ) (1920 -2272 0 ) (2048 -2144 0 ) +4 1113 1115 (1920 -2272 0 ) (2048 -2272 0 ) (2048 -2272 64 ) (1920 -2272 64 ) +4 1114 1150 (2048 -2120 -64 ) (2048 -2272 -64 ) (1664 -2272 -64 ) (1664 -2120 -64 ) +4 1114 1115 (1664 -2272 0 ) (1664 -2272 -64 ) (2048 -2272 -64 ) (2048 -2272 0 ) +4 1114 1116 (1664 -2120 0 ) (1664 -2120 -64 ) (1664 -2272 -64 ) (1664 -2272 0 ) +4 1115 1153 (1984 -2816 -64 ) (1664 -2816 -64 ) (1664 -2752 -64 ) (1984 -2752 -64 ) +4 1115 1152 (2048 -2752 -64 ) (2048 -2816 -64 ) (1984 -2816 -64 ) (1984 -2752 -64 ) +4 1115 1150 (2048 -2272 -64 ) (2048 -2752 -64 ) (1664 -2752 -64 ) (1664 -2272 -64 ) +4 1115 1148 (1680 -2816 -64 ) (2042.040039 -2816 -64 ) (2042.040039 -2816 48 ) (1680 -2816 48 ) +4 1115 1147 (2042.040039 -2816 -64 ) (2048 -2816 -64 ) (2048 -2816 48 ) (2042.040039 -2816 48 ) +4 1115 1145 (1664 -2816 -64 ) (1680 -2816 -64 ) (1680 -2816 48 ) (1664 -2816 48 ) +4 1115 1130 (2042.040039 -2816 64 ) (1664 -2816 64 ) (1664 -2816 48 ) (2042.040039 -2816 48 ) +4 1115 1129 (2048 -2816 48 ) (2048 -2816 64 ) (2042.040039 -2816 64 ) (2042.040039 -2816 48 ) +4 1115 1116 (1664 -2272 -64 ) (1664 -2816 -64 ) (1664 -2816 64 ) (1664 -2272 64 ) +4 1116 1155 (1658.500244 -2816 -64 ) (1633.045166 -2816 -64 ) (1569.045166 -2752 -64 ) (1594.500122 -2752 -64 ) +4 1116 1154 (1633.045166 -2816 -64 ) (1536 -2816 -64 ) (1536 -2752 -64 ) (1569.045166 -2752 -64 ) +4 1116 1153 (1664 -2816 -64 ) (1658.500244 -2816 -64 ) (1594.500122 -2752 -64 ) (1664 -2752 -64 ) +4 1116 1151 (1536 -2752 -64 ) (1536 -2120 -64 ) (1664 -2120 -64 ) (1664 -2752 -64 ) +4 1116 1145 (1536 -2816 -64 ) (1664 -2816 -64 ) (1664 -2816 48 ) (1536 -2816 48 ) +4 1116 1139 (1658.500244 -2816 64 ) (1536 -2816 64 ) (1536 -2816 48 ) (1658.500244 -2816 48 ) +4 1116 1130 (1664 -2816 48 ) (1664 -2816 64 ) (1658.500244 -2816 64 ) (1658.500244 -2816 48 ) +4 1116 1117 (1536 -2120 64 ) (1536 -2120 -64 ) (1536 -2752 -64 ) (1536 -2752 64 ) +4 1116 1118 (1536 -2768 -64 ) (1536 -2816 -64 ) (1536 -2816 64 ) (1536 -2768 64 ) +4 1117 1151 (1472 -2752 -64 ) (1472 -2120 -64 ) (1536 -2120 -64 ) (1536 -2752 -64 ) +4 1118 1157 (1536 -2816 -64 ) (1472 -2816 -64 ) (1472 -2768 -64 ) (1536 -2768 -64 ) +4 1118 1145 (1472 -2816 -64 ) (1536 -2816 -64 ) (1536 -2816 48 ) (1472 -2816 48 ) +4 1118 1139 (1536 -2816 48 ) (1536 -2816 64 ) (1472 -2816 64 ) (1472 -2816 48 ) +4 1118 1119 (1472 -2768 -64 ) (1472 -2816 -64 ) (1472 -2816 64 ) (1472 -2768 64 ) +4 1119 1162 (1472 -2816 -64 ) (1456 -2816 -64 ) (1456 -2768 -64 ) (1472 -2768 -64 ) +4 1119 1145 (1456 -2816 -64 ) (1472 -2816 -64 ) (1472 -2816 48 ) (1456 -2816 48 ) +4 1119 1139 (1472 -2816 48 ) (1472 -2816 64 ) (1456 -2816 64 ) (1456 -2816 48 ) +4 1119 1120 (1456 -2768 -64 ) (1456 -2816 -64 ) (1456 -2816 64 ) (1456 -2768 64 ) +4 1120 1163 (1456 -2816 -64 ) (1056 -2816 -64 ) (1056 -2120 -64 ) (1456 -2120 -64 ) +4 1120 1145 (1056 -2816 -64 ) (1456 -2816 -64 ) (1456 -2816 48 ) (1056 -2816 48 ) +4 1120 1139 (1456 -2816 48 ) (1456 -2816 64 ) (1056 -2816 64 ) (1056 -2816 48 ) +4 1120 1121 (1056 -2120 64 ) (1056 -2120 -48 ) (1056 -2624 -48 ) (1056 -2624 64 ) +4 1121 1127 (1040 -2592 -48 ) (1040 -2594 -48 ) (1040 -2594 64 ) (1040 -2592 64 ) +4 1121 1126 (1040 -2384 -48 ) (1040 -2592 -48 ) (1040 -2592 64 ) (1040 -2384 64 ) +4 1121 1125 (1040 -2352 -48 ) (1040 -2354 -48 ) (1040 -2354 64 ) (1040 -2352 64 ) +4 1121 1124 (1040 -2382 -48 ) (1040 -2384 -48 ) (1040 -2384 64 ) (1040 -2382 64 ) +4 1121 1123 (1040 -2144 -48 ) (1040 -2352 -48 ) (1040 -2352 64 ) (1040 -2144 64 ) +4 1121 1122 (1040 -2142 -48 ) (1040 -2144 -48 ) (1040 -2144 64 ) (1040 -2142 64 ) +4 1122 1123 (1038 -2144 -48 ) (1040 -2144 -48 ) (1040 -2144 64 ) (1038 -2144 64 ) +4 1123 3439 (1024 -2320 64 ) (1024 -2176 64 ) (1024 -2176 -36 ) (1024 -2320 -36 ) +4 1123 1125 (1038 -2352 -48 ) (1040 -2352 -48 ) (1040 -2352 64 ) (1038 -2352 64 ) +4 1124 1126 (1038 -2384 -48 ) (1040 -2384 -48 ) (1040 -2384 64 ) (1038 -2384 64 ) +4 1126 3452 (1024 -2560 64 ) (1024 -2416 64 ) (1024 -2416 -36 ) (1024 -2560 -36 ) +4 1126 1127 (1038 -2592 -48 ) (1040 -2592 -48 ) (1040 -2592 64 ) (1038 -2592 64 ) +4 1128 3464 (1024 -3072 416 ) (1024 -3072 5542.669922 ) (1024 -2816 5542.669922 ) (1024 -2816 416 ) +4 1128 1217 (1024 -3072 5542.669922 ) (1024 -3072 416 ) (1786.039795 -3072 416 ) (1786.039795 -3072 5542.669922 ) +4 1128 1190 (1786.039795 -3072 416 ) (2048 -3072 416 ) (2048 -3072 5542.669922 ) (1786.039795 -3072 5542.669922 ) +4 1128 1144 (1786.039795 -3072 416 ) (1760.579468 -3072 416 ) (1837.539795 -2995.039551 416 ) (1850.270020 -3007.769775 416 ) +4 1128 1133 (1449.459961 -3072 416 ) (1424 -3072 416 ) (1669.250122 -2826.750000 416 ) (1681.980469 -2839.480225 416 ) +4 1128 1132 (1760.579468 -3072 416 ) (1449.459961 -3072 416 ) (1681.980469 -2839.480225 416 ) (1837.539795 -2995.039551 416 ) +5 1128 1131 (1424 -3072 416 ) (1056 -3072 416 ) (1056 -2816 416 ) (1658.500244 -2816 416 ) (1669.250122 -2826.750000 416 ) +3 1128 1130 (1658.500244 -2816 416 ) (2042.040039 -2816 416 ) (1850.270020 -3007.769775 416 ) +4 1128 1129 (2048 -3072 416 ) (1786.039795 -3072 416 ) (2042.040039 -2816 416 ) (2048 -2816 416 ) +4 1129 1214 (2048 -3072 128 ) (2048 -3072 288 ) (1786.039795 -3072 288 ) (1786.039795 -3072 128 ) +4 1129 1216 (1786.039795 -3072 48 ) (2048 -3072 48 ) (2048 -3072 128 ) (1786.039795 -3072 128 ) +4 1129 1209 (2048 -3072 288 ) (2048 -3072 320 ) (1786.039795 -3072 320 ) (1786.039795 -3072 288 ) +4 1129 1201 (2048 -3072 320 ) (2048 -3072 352 ) (1786.039795 -3072 352 ) (1786.039795 -3072 320 ) +4 1129 1195 (2048 -3072 352 ) (2048 -3072 392 ) (1786.039795 -3072 392 ) (1786.039795 -3072 352 ) +4 1129 1190 (2048 -3072 392 ) (2048 -3072 416 ) (1786.039795 -3072 416 ) (1786.039795 -3072 392 ) +4 1129 1147 (2042.040039 -2816 48 ) (2048 -2816 48 ) (2048 -3072 48 ) (1786.039795 -3072 48 ) +5 1129 1144 (1786.039063 -3072 104.707718 ) (1786.039063 -3072 416 ) (1850.269531 -3007.769531 416 ) (1850.269531 -3007.769531 90 ) (1810.669434 -3047.369629 96 ) +4 1129 1130 (2042.039063 -2816 48 ) (1850.269531 -3007.769531 48 ) (1850.269531 -3007.769531 416 ) (2042.039063 -2816 416 ) +4 1130 1148 (1680 -2816 48 ) (2042.040039 -2816 48 ) (1850.270020 -3007.769775 48 ) (1669.250122 -2826.750000 48 ) +3 1130 1145 (1658.500244 -2816 48 ) (1680 -2816 48 ) (1669.250122 -2826.750000 48 ) +4 1130 1144 (1850.271484 -3007.771484 90 ) (1850.271484 -3007.771484 416 ) (1837.539795 -2995.039795 416 ) (1837.539795 -2995.039795 90 ) +4 1130 1141 (1681.980225 -2839.480469 48 ) (1837.539795 -2995.039795 48 ) (1837.539795 -2995.039795 82 ) (1681.980225 -2839.480469 82 ) +4 1130 1139 (1658.500000 -2816 48 ) (1669.249878 -2826.750000 48 ) (1669.249878 -2826.750000 82 ) (1658.500000 -2816 82 ) +4 1130 1138 (1669.249878 -2826.749756 90 ) (1658.500000 -2816 90 ) (1658.500000 -2816 82 ) (1669.249756 -2826.749756 82 ) +4 1130 1137 (1837.539795 -2995.039795 82 ) (1837.539795 -2995.039795 90 ) (1681.980469 -2839.480469 90 ) (1681.980347 -2839.480469 82 ) +4 1130 1133 (1681.980225 -2839.480469 416 ) (1669.249878 -2826.750000 416 ) (1669.249878 -2826.750000 90 ) (1681.980225 -2839.480469 90 ) +4 1130 1132 (1837.539795 -2995.039795 90 ) (1837.539795 -2995.039795 416 ) (1681.980225 -2839.480469 416 ) (1681.980225 -2839.480469 90 ) +4 1130 1131 (1669.249878 -2826.750000 416 ) (1658.500000 -2816 416 ) (1658.500000 -2816 90 ) (1669.249878 -2826.750000 90 ) +4 1131 1218 (1424 -3072 416 ) (1056 -3072 416 ) (1056 -3072 155.037811 ) (1424 -3072 127.159065 ) +5 1131 1139 (1424 -3072 127.159431 ) (1056 -3072 155.038254 ) (1056 -2816 135.644379 ) (1579.296143 -2816 96 ) (1629.648193 -2866.351807 96 ) +4 1131 1138 (1579.296143 -2816 96 ) (1658.504883 -2816 90 ) (1669.252319 -2826.747559 90 ) (1629.648193 -2866.351807 96 ) +3 1131 1136 (1550.449951 -2945.550049 118 ) (1524.051025 -2971.948975 123.333099 ) (1510.857544 -2985.142578 122 ) +4 1131 1135 (1424 -3072 127.159286 ) (1479.174316 -3016.825684 118.799522 ) (1524.051025 -2971.948975 123.333099 ) (1424 -3072 143.545380 ) +3 1131 1134 (1590.050049 -2905.949951 110 ) (1424 -3072 168.704681 ) (1424 -3072 143.545380 ) +5 1131 1133 (1629.649414 -2866.350586 96 ) (1669.253906 -2826.746094 90 ) (1669.253906 -2826.746094 416 ) (1424 -3072 416 ) (1424 -3072 168.704681 ) +6 1132 1230 (1760.579590 -3072 101.660614 ) (1760.579590 -3072 109.208138 ) (1756.099976 -3072 110 ) (1676.877075 -3072 118.003311 ) (1661.121094 -3072 118.799385 ) (1597.746826 -3072 113.996414 ) +3 1132 1229 (1756.099976 -3072 110 ) (1724.410400 -3072 115.601692 ) (1676.877075 -3072 118.003311 ) +3 1132 1228 (1724.410400 -3072 115.601692 ) (1692.757080 -3072 121.196991 ) (1661.121094 -3072 118.799385 ) +3 1132 1227 (1760.579590 -3072 109.208138 ) (1760.579590 -3072 126.337067 ) (1692.757080 -3072 121.196991 ) +5 1132 1221 (1760.579590 -3072 126.337067 ) (1760.579468 -3072 416 ) (1449.459961 -3072 416 ) (1449.459717 -3072 125.230278 ) (1597.746826 -3072 113.996414 ) +5 1132 1144 (1837.539063 -2995.041016 90 ) (1837.539063 -2995.041016 416 ) (1760.580200 -3072 416 ) (1760.580200 -3072 109.208038 ) (1797.940063 -3034.640137 96 ) +5 1132 1141 (1797.935669 -3034.638672 96 ) (1760.574463 -3072 101.661308 ) (1534.349731 -3072 118.799568 ) (1491.904907 -3029.554932 118.799576 ) (1642.378540 -2879.082031 96 ) +3 1132 1140 (1534.349731 -3072 118.799568 ) (1449.459839 -3072 125.230637 ) (1491.904907 -3029.554932 118.799576 ) +4 1132 1137 (1837.539063 -2995.035156 90 ) (1797.935669 -3034.638672 96 ) (1642.378540 -2879.082031 96 ) (1681.982788 -2839.478027 90 ) +3 1132 1136 (1523.590210 -2997.870117 122 ) (1536.781128 -2984.679199 123.333099 ) (1563.175049 -2958.285400 118.001030 ) +4 1132 1135 (1491.909180 -3029.551270 118.799980 ) (1449.460205 -3072 125.231628 ) (1449.460205 -3072 140.973633 ) (1536.781128 -2984.679199 123.333099 ) +3 1132 1134 (1449.460205 -3072 140.973633 ) (1449.460205 -3072 164.204117 ) (1602.780273 -2918.680176 110 ) +5 1132 1133 (1681.976563 -2839.484375 416 ) (1681.976563 -2839.484375 90.001953 ) (1642.373535 -2879.087158 96.002396 ) (1449.460205 -3072 164.204117 ) (1449.460205 -3072 416 ) +4 1133 1232 (1449.459961 -3072 416 ) (1424 -3072 416 ) (1424 -3072 168.704697 ) (1449.459717 -3072 164.204208 ) +4 1133 1134 (1602.792603 -2918.672119 109.997955 ) (1449.464233 -3072 164.204971 ) (1424 -3072 168.706543 ) (1590.059937 -2905.939941 109.997993 ) +4 1134 1232 (1424 -3072 168.704697 ) (1424 -3072 143.545395 ) (1449.459717 -3072 140.973694 ) (1449.459717 -3072 164.204208 ) +4 1134 1136 (1524.048828 -2971.947266 123.333076 ) (1550.447510 -2945.548584 118 ) (1563.177124 -2958.287598 118.001022 ) (1536.783325 -2984.681396 123.333099 ) +4 1134 1135 (1423.996094 -3072 143.545593 ) (1524.048828 -2971.947266 123.333076 ) (1536.783325 -2984.681396 123.333099 ) (1449.464355 -3072 140.973221 ) +4 1135 1232 (1424 -3072 143.545395 ) (1424 -3072 127.159065 ) (1449.459717 -3072 125.230278 ) (1449.459717 -3072 140.973694 ) +4 1135 1140 (1449.459839 -3072 125.230637 ) (1424 -3072 127.159431 ) (1479.174927 -3016.824951 118.799576 ) (1491.904907 -3029.554932 118.799576 ) +4 1135 1136 (1510.852051 -2985.136230 122 ) (1524.046875 -2971.941406 123.333237 ) (1536.789063 -2984.683594 123.333237 ) (1523.596558 -2997.875977 122 ) +4 1137 1141 (1837.539063 -2995.042969 82.001953 ) (1797.941406 -3034.640625 96.001007 ) (1642.380737 -2879.079834 96.001007 ) (1681.978394 -2839.482178 82.001953 ) +4 1138 1139 (1629.650391 -2866.349609 96.001007 ) (1579.300781 -2816 96.001007 ) (1658.496094 -2816 82.001953 ) (1669.248047 -2826.751953 82.001953 ) +4 1139 1218 (1056 -3072 48 ) (1424 -3072 48 ) (1424 -3072 127.159065 ) (1056 -3072 155.037811 ) +5 1139 1145 (1056 -2816 48 ) (1658.500244 -2816 48 ) (1669.250122 -2826.750000 48 ) (1424 -3072 48 ) (1056 -3072 48 ) +3 1139 1143 (1471.260132 -3024.739990 118 ) (1447.498535 -3048.501465 115.599533 ) (1431.659668 -3064.340332 110 ) +3 1139 1142 (1447.498535 -3048.501465 115.599533 ) (1424 -3072 113.225632 ) (1424 -3072 107.291954 ) +3 1139 1140 (1479.177246 -3016.822754 118.799820 ) (1424 -3072 127.160004 ) (1424 -3072 113.225632 ) +4 1140 1232 (1449.459839 -3072 125.230278 ) (1424 -3072 127.159065 ) (1424 -3072 113.225624 ) (1449.459839 -3072 114.511650 ) +3 1140 1221 (1534.347046 -3072 118.799431 ) (1449.459839 -3072 125.230278 ) (1449.459839 -3072 114.511650 ) +4 1140 1143 (1447.499023 -3048.500977 115.599724 ) (1471.261230 -3024.738770 118 ) (1483.991577 -3037.468750 118 ) (1460.229126 -3061.230957 115.599731 ) +4 1140 1142 (1424 -3072 113.225784 ) (1447.499023 -3048.500977 115.599724 ) (1460.229126 -3061.230957 115.599731 ) (1449.459961 -3072 114.511810 ) +3 1140 1141 (1491.905884 -3029.554443 118.799805 ) (1534.351563 -3072 118.799805 ) (1449.459961 -3072 114.511810 ) +5 1141 1230 (1449.459717 -3072 48 ) (1760.579590 -3072 48 ) (1760.579590 -3072 101.660614 ) (1597.746826 -3072 113.996422 ) (1449.459839 -3072 102.758148 ) +4 1141 1221 (1597.746826 -3072 113.996422 ) (1534.347046 -3072 118.799431 ) (1449.459839 -3072 114.511650 ) (1449.459839 -3072 102.758148 ) +4 1141 1143 (1460.229614 -3061.227051 115.600540 ) (1483.995605 -3037.461182 118.001442 ) (1449.456665 -3072 111.023895 ) (1449.456665 -3072 111.791901 ) +3 1141 1142 (1449.456665 -3072 114.512222 ) (1460.229614 -3061.227051 115.600540 ) (1449.456665 -3072 111.791901 ) +3 1142 1233 (1424 -3072 108.452499 ) (1424 -3072 107.291946 ) (1439.318970 -3072 110 ) +5 1142 1232 (1449.459839 -3072 111.792465 ) (1449.459839 -3072 114.511650 ) (1424 -3072 113.225624 ) (1424 -3072 108.452499 ) (1439.318970 -3072 110 ) +5 1142 1143 (1460.234375 -3061.230469 115.601563 ) (1449.464844 -3072 111.794136 ) (1439.304565 -3072 109.998428 ) (1431.649414 -3064.350586 109.997871 ) (1447.500000 -3048.500000 115.601563 ) +3 1143 1232 (1449.459839 -3072 111.024216 ) (1449.459839 -3072 111.792465 ) (1439.318970 -3072 110 ) +4 1144 1227 (1786.039795 -3072 104.707588 ) (1786.039795 -3072 128.266632 ) (1760.579590 -3072 126.337067 ) (1760.579590 -3072 109.208130 ) +4 1144 1225 (1786.039795 -3072 128.266632 ) (1786.039795 -3072 131.512833 ) (1760.579590 -3072 130.226791 ) (1760.579590 -3072 126.337067 ) +4 1144 1224 (1786.039795 -3072 131.512833 ) (1786.039795 -3072 145.022171 ) (1760.579590 -3072 142.450439 ) (1760.579590 -3072 130.226791 ) +4 1144 1222 (1786.039795 -3072 145.022171 ) (1786.039795 -3072 416 ) (1760.579468 -3072 416 ) (1760.579590 -3072 142.450439 ) +4 1145 1234 (1056 -3072 -64 ) (1424 -3072 -64 ) (1424 -3072 48 ) (1056 -3072 48 ) +4 1145 1162 (1456 -2816 -64 ) (1472 -2816 -64 ) (1472 -3024 -64 ) (1456 -3040 -64 ) +5 1145 1163 (1424 -3072 -64 ) (1056 -3072 -64 ) (1056 -2816 -64 ) (1456 -2816 -64 ) (1456 -3040 -64 ) +4 1145 1157 (1472 -2816 -64 ) (1536 -2816 -64 ) (1536 -2960 -64 ) (1472 -3024 -64 ) +4 1145 1155 (1633.045166 -2816 -64 ) (1658.500244 -2816 -64 ) (1669.250122 -2826.749756 -64 ) (1656.522583 -2839.477295 -64 ) +4 1145 1154 (1536 -2816 -64 ) (1633.045166 -2816 -64 ) (1656.522583 -2839.477295 -64 ) (1536 -2960 -64 ) +3 1145 1153 (1658.500244 -2816 -64 ) (1680 -2816 -64 ) (1669.250122 -2826.749756 -64 ) +9 1145 1149 (1424 -3072 -64 ) (1656.522705 -2839.477539 -64 ) (1635.310303 -2860.689941 -24 ) (1607.020264 -2888.979980 0 ) (1578.740112 -2917.260010 12 ) (1525 -2971 24 ) (1496.709961 -2999.290039 24 ) (1442.970215 -3053.029785 12 ) (1424 -3072 3.950469 ) +4 1145 1148 (1669.250122 -2826.750000 -64 ) (1680 -2816 -64 ) (1680 -2816 48 ) (1669.250122 -2826.750000 48 ) +4 1145 1146 (1056 -2816 0 ) (1056 -2816 -64 ) (1056 -3072 -64 ) (1056 -3072 0 ) +4 1146 3465 (1024 -3072 -64 ) (1024 -3072 0 ) (1024 -2816 0 ) (1024 -2816 -64 ) +4 1146 1235 (1024 -3072 0 ) (1024 -3072 -64 ) (1056 -3072 -64 ) (1056 -3072 0 ) +4 1146 1166 (1056 -3072 -64 ) (1024 -3072 -64 ) (1024 -2816 -64 ) (1056 -2816 -64 ) +4 1147 1247 (2048 -3072 -54.729748 ) (2048 -3072 24 ) (1786.039795 -3072 24 ) (1786.039795 -3072 0.848759 ) +4 1147 1239 (1786.039795 -3072 -64 ) (2048 -3072 -64 ) (2048 -3072 -54.729748 ) (1786.039795 -3072 0.848759 ) +4 1147 1238 (2048 -3072 24 ) (2048 -3072 48 ) (1786.039795 -3072 48 ) (1786.039795 -3072 24 ) +4 1147 1156 (1914.500122 -3072 -64 ) (1889.045166 -3072 -64 ) (1837.542480 -3020.497314 -64 ) (1850.270020 -3007.769775 -64 ) +3 1147 1154 (1889.045166 -3072 -64 ) (1786.039795 -3072 -64 ) (1837.542480 -3020.497314 -64 ) +4 1147 1153 (1984 -3072 -64 ) (1914.500122 -3072 -64 ) (1850.270020 -3007.769775 -64 ) (1984 -2874.040039 -64 ) +5 1147 1152 (2048 -2816 -64 ) (2048 -3072 -64 ) (1984 -3072 -64 ) (1984 -2874.040039 -64 ) (2042.040039 -2816 -64 ) +5 1147 1149 (1837.542114 -3020.497070 -64 ) (1786.039063 -3072 -64 ) (1786.039063 -3072 0.848892 ) (1788.039673 -3070 0 ) (1816.329712 -3041.709473 -24 ) +4 1147 1148 (1850.269531 -3007.769531 48 ) (2042.039063 -2816 48 ) (2042.039063 -2816 -64 ) (1850.269531 -3007.769531 -64 ) +5 1148 1153 (1669.250122 -2826.749756 -64 ) (1680 -2816 -64 ) (1984 -2816 -64 ) (1984 -2874.040039 -64 ) (1850.270020 -3007.769775 -64 ) +3 1148 1152 (1984 -2816 -64 ) (2042.040039 -2816 -64 ) (1984 -2874.040039 -64 ) +8 1149 1240 (1424 -3072 -64 ) (1786.039795 -3072 -64 ) (1786.039795 -3072 0.848755 ) (1733.480469 -3072 12 ) (1626 -3072 24 ) (1569.419922 -3072 24 ) (1461.940552 -3072 12 ) (1424 -3072 3.950407 ) +4 1149 1162 (1472 -3072 -64 ) (1456 -3072 -64 ) (1456 -3040 -64 ) (1472 -3024 -64 ) +3 1149 1163 (1456 -3072 -64 ) (1424 -3072 -64 ) (1456 -3040 -64 ) +4 1149 1157 (1536 -3072 -64 ) (1472 -3072 -64 ) (1472 -3024 -64 ) (1536 -2960 -64 ) +5 1149 1154 (1786.039795 -3072 -64 ) (1536 -3072 -64 ) (1536 -2960 -64 ) (1656.522583 -2839.477295 -64 ) (1837.542480 -3020.497314 -64 ) +4 1150 1159 (1664 -2048 -128 ) (1984 -2048 -128 ) (1984 -2752 -128 ) (1664 -2752 -128 ) +4 1150 1158 (1984 -2048 -128 ) (2048 -2048 -128 ) (2048 -2752 -128 ) (1984 -2752 -128 ) +4 1150 1153 (1664 -2752 -128 ) (1984 -2752 -128 ) (1984 -2752 -64 ) (1664 -2752 -64 ) +4 1150 1152 (1984 -2752 -128 ) (2048 -2752 -128 ) (2048 -2752 -64 ) (1984 -2752 -64 ) +4 1150 1151 (1664 -2112 -128 ) (1664 -2752 -128 ) (1664 -2752 -64 ) (1664 -2112 -64 ) +4 1151 1161 (1472 -2112 -88 ) (1472 -2112 -128 ) (1472 -2120 -128 ) (1472 -2120 -88 ) +4 1151 1159 (1472 -2752 -128 ) (1472 -2112 -128 ) (1664 -2112 -128 ) (1664 -2752 -128 ) +3 1151 1155 (1594.500122 -2752 -88 ) (1594.500122 -2752 -64 ) (1569.045166 -2752 -64 ) +5 1151 1154 (1536 -2752 -128 ) (1594.500122 -2752 -128 ) (1594.500122 -2752 -88 ) (1569.045166 -2752 -64 ) (1536 -2752 -64 ) +4 1151 1153 (1594.500122 -2752 -128 ) (1664 -2752 -128 ) (1664 -2752 -64 ) (1594.500122 -2752 -64 ) +4 1152 1248 (2048 -3072 -128 ) (2048 -3072 -64 ) (1984 -3072 -64 ) (1984 -3072 -128 ) +4 1152 1158 (1984 -2752 -128 ) (2048 -2752 -128 ) (2048 -3072 -128 ) (1984 -3072 -128 ) +4 1152 1153 (1984 -2752 -64 ) (1984 -2752 -128 ) (1984 -3072 -128 ) (1984 -3072 -64 ) +4 1153 1250 (1984 -3072 -64 ) (1914.500122 -3072 -64 ) (1914.500244 -3072 -128 ) (1984 -3072 -128 ) +4 1153 1156 (1850.269897 -3007.770020 -88 ) (1914.500000 -3072 -88 ) (1914.500000 -3072 -64 ) (1850.269897 -3007.770020 -64 ) +4 1153 1155 (1594.500000 -2752 -64 ) (1594.500000 -2752 -88 ) (1669.250000 -2826.750000 -88 ) (1669.250000 -2826.750000 -64 ) +4 1153 1154 (1594.500000 -2752 -88 ) (1594.500000 -2752 -128 ) (1914.500000 -3072 -128 ) (1914.500000 -3072 -88 ) +5 1154 1250 (1889.045166 -3072 -64 ) (1536 -3072 -64 ) (1536 -3072 -128 ) (1914.500244 -3072 -128 ) (1914.500122 -3072 -88 ) +4 1154 1157 (1536 -2768 -128 ) (1536 -3072 -128 ) (1536 -3072 -64 ) (1536 -2768 -64 ) +4 1154 1156 (1914.500000 -3072 -88 ) (1850.269897 -3007.770020 -88 ) (1837.543091 -3020.496582 -64 ) (1889.046631 -3072 -64 ) +4 1154 1155 (1669.250000 -2826.750000 -88 ) (1594.500000 -2752 -88 ) (1569.045898 -2752 -64 ) (1656.522827 -2839.476807 -64 ) +3 1156 1250 (1914.500122 -3072 -64 ) (1889.045166 -3072 -64 ) (1914.500122 -3072 -88 ) +4 1157 1250 (1536 -3072 -64 ) (1472 -3072 -64 ) (1472 -3072 -128 ) (1536 -3072 -128 ) +4 1157 1162 (1472 -3072 -64 ) (1472 -2768 -64 ) (1472 -2768 -128 ) (1472 -3072 -128 ) +4 1158 1256 (2048 -3072 -192 ) (2048 -3072 -128 ) (1984 -3072 -128 ) (1984 -3072 -192 ) +4 1158 1160 (2048 -3072 -192 ) (1984 -3072 -192 ) (1984 -2048 -192 ) (2048 -2048 -192 ) +4 1158 1159 (1984 -2048 -192 ) (1984 -2752 -192 ) (1984 -2752 -128 ) (1984 -2048 -128 ) +4 1159 1160 (1472 -2752 -192 ) (1472 -2048 -192 ) (1984 -2048 -192 ) (1984 -2752 -192 ) +4 1160 1259 (2048 -3072 -1284 ) (2048 -3072 -192 ) (1472 -3072 -192 ) (1472 -3072 -1284 ) +4 1160 1167 (1472 -2048 -192 ) (1472 -2048 -1284 ) (1472 -3072 -1284 ) (1472 -3072 -192 ) +4 1161 1164 (1056 -2048 -128 ) (1056 -2112 -128 ) (1056 -2112 -64 ) (1056 -2048 -64 ) +5 1161 1163 (1056 -2120 -64 ) (1056 -2120 -128 ) (1456 -2120 -128 ) (1456 -2120 -66.666504 ) (1454 -2120 -64 ) +4 1162 1253 (1456 -3072 -128 ) (1472 -3072 -128 ) (1472 -3072 -64 ) (1456 -3072 -64 ) +4 1162 1163 (1456 -2768 -128 ) (1456 -3072 -128 ) (1456 -3072 -64 ) (1456 -2768 -64 ) +3 1163 1254 (1306.382446 -3072 -64 ) (1280.919922 -3072 -64 ) (1280.919922 -3072 -88 ) +5 1163 1253 (1280.919922 -3072 -128 ) (1456 -3072 -128 ) (1456 -3072 -64 ) (1306.382446 -3072 -64 ) (1280.919922 -3072 -88 ) +4 1163 1252 (1056 -3072 -128 ) (1280.919922 -3072 -128 ) (1280.919922 -3072 -64 ) (1056 -3072 -64 ) +4 1163 1165 (1056 -2624 -128 ) (1056 -2816 -128 ) (1056 -2816 -96 ) (1056 -2624 -96 ) +4 1163 1166 (1056 -2816 -128 ) (1056 -3072 -128 ) (1056 -3072 -64 ) (1056 -2816 -64 ) +4 1165 3463 (1024 -2624 -96 ) (1024 -2624 -128 ) (1024 -2816 -128 ) (1024 -2816 -96 ) +4 1165 1166 (1024 -2816 -128 ) (1056 -2816 -128 ) (1056 -2816 -96 ) (1024 -2816 -96 ) +4 1166 3465 (1024 -3072 -128 ) (1024 -3072 -64 ) (1024 -2816 -64 ) (1024 -2816 -128 ) +4 1166 1252 (1024 -3072 -64 ) (1024 -3072 -128 ) (1056 -3072 -128 ) (1056 -3072 -64 ) +4 1167 3465 (1024 -3072 -1284 ) (1024 -3072 -192 ) (1024 -2816 -192 ) (1024 -2816 -1284 ) +4 1167 3463 (1024 -2816 -192 ) (1024 -2624 -192 ) (1024 -2624 -1284 ) (1024 -2816 -1284 ) +4 1167 3461 (1024 -2624 -192 ) (1024 -2560 -192 ) (1024 -2560 -1284 ) (1024 -2624 -1284 ) +4 1167 3453 (1024 -2560 -192 ) (1024 -2416 -192 ) (1024 -2416 -1284 ) (1024 -2560 -1284 ) +4 1167 3449 (1024 -2416 -192 ) (1024 -2320 -192 ) (1024 -2320 -1284 ) (1024 -2416 -1284 ) +4 1167 3440 (1024 -2320 -192 ) (1024 -2176 -192 ) (1024 -2176 -1284 ) (1024 -2320 -1284 ) +4 1167 3437 (1024 -2176 -192 ) (1024 -2048 -192 ) (1024 -2048 -1284 ) (1024 -2176 -1284 ) +4 1167 1259 (1024 -3072 -192 ) (1024 -3072 -1284 ) (1472 -3072 -1284 ) (1472 -3072 -192 ) +4 1168 1262 (3072 -4096 432 ) (3072 -4096 5542.669922 ) (2048 -4096 5542.669922 ) (2048 -4096 432 ) +4 1168 1193 (2048 -4004.197021 432 ) (2048 -4096 432 ) (2048 -4096 5542.669922 ) (2048 -4004.205566 5542.669922 ) +4 1168 1192 (2048 -3994.923828 432 ) (2048 -4004.197021 432 ) (2048 -4004.197266 523.162720 ) (2048 -3994.923828 526.640625 ) +4 1168 1191 (2048 -4004.197266 523.162720 ) (2048 -4004.205566 5542.669922 ) (2048 -3994.923828 5542.669922 ) (2048 -3994.923828 526.640625 ) +4 1168 1190 (2048 -3072 5542.669922 ) (2048 -3072 432 ) (2048 -3994.923828 432 ) (2048 -3994.923828 5542.669922 ) +3 1168 1183 (2120.831055 -4096 432 ) (2080.969971 -4096 432 ) (2110.865723 -4078.739746 432 ) +5 1168 1182 (2080.969971 -4096 432 ) (2048 -4096 432 ) (2048 -4087.316162 432 ) (2098.866455 -4057.956299 432 ) (2110.865723 -4078.739746 432 ) +4 1168 1174 (3072 -4096 432 ) (2194.738770 -4096 432 ) (2154.300293 -4025.960205 432 ) (3072 -3496.267090 432 ) +4 1168 1173 (2176.258057 -4096 432 ) (2120.831055 -4096 432 ) (2098.866455 -4057.956299 432 ) (2140.438721 -4033.960938 432 ) +4 1168 1169 (2048 -4087.316162 432 ) (2048 -3072 432 ) (3072 -3072 432 ) (3072 -3496.267090 432 ) +4 1169 1209 (2048 -3072 320 ) (2048 -3072 288 ) (2048 -3921.063232 288 ) (2048 -3958.008301 320 ) +3 1169 1205 (2048 -3990.319824 347.986633 ) (2048 -3994.953369 352 ) (2048 -3990.319824 352 ) +5 1169 1201 (2048 -3072 352 ) (2048 -3072 320 ) (2048 -3958.008301 320 ) (2048 -3990.319824 347.986633 ) (2048 -3990.319824 352 ) +3 1169 1200 (2048 -4004.197266 360.006531 ) (2048 -4041.134766 392 ) (2048 -4004.197021 392 ) +4 1169 1199 (2048 -3994.956787 352.002930 ) (2048 -4004.197266 360.006531 ) (2048 -4004.197021 392 ) (2048 -3994.971680 392 ) +5 1169 1195 (2048 -3072 392 ) (2048 -3072 352 ) (2048 -3994.953369 352 ) (2048 -3994.956787 352.002930 ) (2048 -3994.971680 392 ) +4 1169 1193 (2048 -4004.197021 392 ) (2048 -4041.134766 392 ) (2048 -4087.316162 432 ) (2048 -4004.197021 432 ) +4 1169 1192 (2048 -3994.924316 392 ) (2048 -4004.197021 392 ) (2048 -4004.197021 432 ) (2048 -3994.923828 432 ) +4 1169 1190 (2048 -3072 432 ) (2048 -3072 392 ) (2048 -3994.924316 392 ) (2048 -3994.923828 432 ) +3 1169 1187 (2082.293945 -3901.269043 288 ) (2048 -3921.063232 288 ) (2048 -3841.897217 288 ) +5 1169 1186 (2048 -3072 288 ) (3072 -3072 288 ) (3072 -3330.014404 288 ) (2082.293945 -3901.269043 288 ) (2048 -3841.897217 288 ) +3 1169 1182 (2098.865723 -4057.954834 432 ) (2048 -4087.314453 432 ) (2048 -3969.852051 330.258179 ) +4 1169 1174 (3072 -3496.265625 432 ) (2154.299316 -4025.958740 432 ) (2146.302490 -4012.108398 416.005219 ) (3072 -3477.799316 416.005157 ) +4 1169 1173 (2140.437988 -4033.959473 432 ) (2098.865723 -4057.954834 432 ) (2090.869141 -4044.104248 416.005219 ) (2132.441406 -4020.108887 416.005219 ) +4 1169 1172 (2068.440674 -3909.266357 288 ) (2082.300781 -3901.266357 288 ) (2138.300049 -3998.249756 400 ) (2124.439941 -4006.249756 400 ) +5 1169 1171 (2090.869141 -4044.104248 416.005219 ) (2048 -3969.852051 330.258179 ) (2048 -3921.064453 288 ) (2068.440674 -3909.266357 288 ) (2132.441895 -4020.108398 416.005219 ) +4 1169 1170 (2082.300781 -3901.266357 288 ) (3072 -3330.015625 288 ) (3072 -3477.799316 416.005157 ) (2146.302246 -4012.108398 416.005219 ) +4 1170 1186 (3072 -3330.014404 288 ) (3072 -3403.899414 288 ) (2114.297852 -3956.681396 288 ) (2082.300049 -3901.265381 288 ) +4 1170 1179 (2114.297119 -3956.680176 288 ) (3072 -3403.897949 288 ) (3072 -3404.060059 288.280945 ) (2114.305664 -3956.695068 288.034515 ) +4 1170 1177 (3072 -3404.060059 288.280945 ) (3072 -3440.889648 352.076416 ) (2130.297607 -3984.390869 351.996277 ) (2114.305664 -3956.695068 288.034515 ) +4 1170 1176 (3072 -3440.889648 352.076416 ) (3072 -3468.556152 400 ) (2142.299805 -4005.176758 400 ) (2130.297607 -3984.390869 351.996277 ) +4 1170 1174 (3072 -3468.556152 400 ) (3072 -3477.792969 416 ) (2146.300049 -4012.104980 416 ) (2142.299805 -4005.176758 400 ) +4 1170 1172 (2114.300781 -3956.683594 288 ) (2138.300781 -3998.249268 383.994141 ) (2138.300781 -3998.249268 400 ) (2082.300781 -3901.264648 288 ) +4 1171 1209 (2048 -3921.063232 288 ) (2048 -3969.852051 288 ) (2048 -3969.852051 320 ) (2048 -3958.008301 320 ) +3 1171 1201 (2048 -3969.852051 320 ) (2048 -3969.852051 330.258484 ) (2048 -3958.008301 320 ) +5 1171 1187 (2100.437744 -3964.681396 288 ) (2058.867676 -3988.675537 288 ) (2048 -3969.852051 288 ) (2048 -3921.063232 288 ) (2068.439941 -3909.265381 288 ) +5 1171 1185 (2048 -3969.847412 320 ) (2048 -3969.847412 288 ) (2058.869629 -3988.674072 288 ) (2058.872070 -3988.678223 288.009766 ) (2058.872070 -3988.678467 320 ) +4 1171 1182 (2090.874023 -4044.107666 416.016052 ) (2048 -3969.847412 330.261078 ) (2048 -3969.847412 320 ) (2066.869629 -4002.530762 320 ) +4 1171 1178 (2074.866943 -4016.382813 351.991638 ) (2058.868896 -3988.673096 288 ) (2100.437012 -3964.680176 288 ) (2116.437256 -3992.390381 351.995178 ) +4 1171 1175 (2086.869141 -4037.171387 400 ) (2074.866943 -4016.382813 351.991638 ) (2116.437256 -3992.390381 351.995178 ) (2128.439453 -4013.176758 400 ) +4 1171 1173 (2090.869141 -4044.099609 416 ) (2086.869141 -4037.171387 400 ) (2128.439453 -4013.176758 400 ) (2132.439941 -4020.104980 416 ) +4 1171 1172 (2124.439941 -4006.249756 384.012207 ) (2100.434570 -3964.675781 288 ) (2068.439453 -3909.261719 288 ) (2124.439941 -4006.249756 400 ) +4 1172 1187 (2114.297852 -3956.681396 288 ) (2100.437744 -3964.681396 288 ) (2068.439941 -3909.265381 288 ) (2082.300049 -3901.265381 288 ) +5 1173 1273 (2176.258057 -4096 432 ) (2161.008057 -4096 432 ) (2120.831055 -4096 411.915710 ) (2120.831055 -4096 400 ) (2176.258301 -4096 400 ) +3 1173 1264 (2161.008057 -4096 432 ) (2120.831055 -4096 432 ) (2120.831055 -4096 411.915710 ) +4 1173 1183 (2120.833984 -4096 432 ) (2110.868164 -4078.738770 432 ) (2102.868896 -4064.883545 400 ) (2120.833984 -4096 400 ) +5 1173 1182 (2110.868164 -4078.738770 432 ) (2098.865234 -4057.949219 432 ) (2090.874023 -4044.107666 416.016052 ) (2086.869873 -4037.172363 400 ) (2102.868896 -4064.883545 400 ) +5 1173 1175 (2128.984619 -4096 400 ) (2120.832031 -4096 400 ) (2086.867188 -4037.171875 400 ) (2128.438965 -4013.176758 400 ) (2164.439697 -4075.530029 400 ) +4 1174 1272 (2304.989990 -4096 432 ) (2194.738770 -4096 432 ) (2194.738770 -4096 400 ) (2336.987793 -4096 400 ) +5 1174 1271 (2353.012695 -4096 432 ) (2304.989990 -4096 432 ) (2336.987793 -4096 400 ) (2401.033936 -4096 400 ) (2385.036377 -4096 415.994537 ) +3 1174 1270 (2401.033936 -4096 400 ) (2417.038086 -4096 400 ) (2385.036377 -4096 415.994537 ) +4 1174 1263 (3072 -4096 400 ) (3072 -4096 432 ) (2353.012695 -4096 432 ) (2417.038086 -4096 400 ) +4 1174 1181 (3072 -4096 400 ) (2194.738770 -4096 400 ) (2178.300049 -4067.527832 400 ) (3072 -3551.555176 400 ) +4 1174 1176 (2178.300049 -4067.527832 400 ) (2142.300293 -4005.176025 400 ) (3072 -3468.557129 400 ) (3072 -3551.555176 400 ) +3 1175 1275 (2128.983887 -4096 400 ) (2120.831055 -4096 400 ) (2120.831055 -4096 397.961670 ) +4 1175 1183 (2096.201172 -4053.334717 373.327515 ) (2120.833984 -4096 397.962219 ) (2120.833984 -4096 400 ) (2102.868896 -4064.883545 400 ) +4 1175 1182 (2086.869873 -4037.172363 400 ) (2074.867920 -4016.384277 351.992554 ) (2096.201172 -4053.334717 373.327515 ) (2102.868896 -4064.883545 400 ) +4 1175 1178 (2106.871826 -4071.816406 383.997803 ) (2074.871094 -4016.382813 351.991028 ) (2116.439209 -3992.391846 351.994598 ) (2148.439697 -4047.817627 383.997955 ) +4 1176 1181 (3072 -3551.554688 400 ) (2178.300781 -4067.529053 400 ) (2162.299805 -4039.815430 383.997894 ) (3072 -3514.605469 383.998627 ) +4 1176 1177 (2162.299805 -4039.815430 383.997894 ) (2130.300049 -3984.392090 351.995789 ) (3072 -3440.893066 352.076355 ) (3072 -3514.605469 383.998627 ) +4 1177 1181 (3072 -3514.601563 383.998016 ) (2162.298828 -4039.813721 383.998474 ) (2146.297607 -4012.099854 352.001190 ) (3072 -3477.649170 352 ) +4 1177 1179 (2146.297607 -4012.099854 352.001190 ) (2114.311035 -3956.698975 288.037689 ) (3072 -3404.066895 288.284271 ) (3072 -3477.649170 352 ) +3 1178 1184 (2090.869385 -4044.099854 352 ) (2106.872803 -4071.818604 384 ) (2096.201172 -4053.334717 373.327484 ) +5 1178 1182 (2074.867920 -4016.384277 351.992554 ) (2066.869629 -4002.530762 320 ) (2074.866943 -4016.382568 320 ) (2090.869385 -4044.099854 352 ) (2096.201172 -4053.334717 373.327484 ) +4 1178 1180 (2090.874756 -4044.098145 352.001343 ) (2058.882813 -3988.683594 288.023407 ) (2100.449951 -3964.697266 288.034119 ) (2132.437988 -4020.102051 352.001434 ) +4 1179 1188 (3072 -3422.221924 288 ) (3072 -3440.701172 288 ) (2130.298340 -3984.388672 288 ) (2122.297363 -3970.531250 288 ) +4 1179 1186 (3072 -3403.899414 288 ) (3072 -3422.221924 288 ) (2122.297363 -3970.531250 288 ) (2114.300293 -3956.680176 288 ) +4 1179 1181 (3072 -3477.656250 352.004944 ) (2146.300781 -4012.105469 352.006012 ) (2130.300293 -3984.392334 288 ) (3072 -3440.706055 288 ) +3 1180 1182 (2082.870361 -4030.244873 320 ) (2090.869629 -4044.100098 352 ) (2074.866943 -4016.382568 320 ) +4 1181 1274 (2336.987793 -4096 400 ) (2194.738770 -4096 400 ) (2194.738770 -4096 288 ) (2448.980469 -4096 288 ) +4 1181 1271 (2401.033936 -4096 400 ) (2336.987793 -4096 400 ) (2417.037598 -4096 319.944885 ) (2417.038086 -4096 384 ) +3 1181 1270 (2417.038086 -4096 400 ) (2401.033936 -4096 400 ) (2417.038086 -4096 384 ) +4 1181 1269 (2417.038086 -4096 384 ) (2417.037598 -4096 319.944885 ) (2448.980469 -4096 288 ) (2513.057617 -4096 288 ) +4 1181 1268 (2417.038086 -4096 400 ) (2417.038086 -4096 384 ) (2513.057617 -4096 288 ) (2641.127930 -4096 288 ) +4 1181 1263 (3072 -4096 288 ) (3072 -4096 400 ) (2417.038086 -4096 400 ) (2641.127930 -4096 288 ) +4 1181 1188 (3072 -3440.701172 288 ) (3072 -4096 288 ) (2194.738770 -4096 288 ) (2130.298340 -3984.388672 288 ) +3 1182 1264 (2080.969971 -4096 432 ) (2048 -4096 432 ) (2048 -4096 399.027344 ) +5 1182 1208 (2048 -4004.196777 320 ) (2048 -4033.848877 320 ) (2048 -4054.944336 327.911102 ) (2048 -4066.541748 348 ) (2048 -4004.197266 348 ) +5 1182 1206 (2048 -3990.335205 348 ) (2048 -3990.319824 347.986694 ) (2048 -3990.320068 320 ) (2048 -4004.196777 320 ) (2048 -4004.197266 348 ) +3 1182 1205 (2048 -3994.944824 351.992676 ) (2048 -3990.335205 348 ) (2048 -3994.945068 348 ) +4 1182 1203 (2048 -4004.196777 348 ) (2048 -4066.541748 348 ) (2048 -4068.850830 352 ) (2048 -4004.197266 352 ) +5 1182 1202 (2048 -3994.953369 352 ) (2048 -3994.944824 351.992676 ) (2048 -3994.945068 348 ) (2048 -4004.196777 348 ) (2048 -4004.197266 352 ) +4 1182 1201 (2048 -3990.319824 347.986694 ) (2048 -3969.852051 330.258484 ) (2048 -3969.852051 320 ) (2048 -3990.320068 320 ) +5 1182 1200 (2048 -4041.134766 392 ) (2048 -4004.197266 360.006531 ) (2048 -4004.197266 352 ) (2048 -4068.850830 352 ) (2048 -4091.943115 392 ) +3 1182 1199 (2048 -4004.197266 360.006531 ) (2048 -3994.953369 352 ) (2048 -4004.197266 352 ) +5 1182 1193 (2048 -4096 399.027344 ) (2048 -4096 432 ) (2048 -4087.316162 432 ) (2048 -4041.134766 392 ) (2048 -4091.943115 392 ) +3 1182 1185 (2048 -3969.845459 320 ) (2058.872803 -3988.677979 320 ) (2048 -3994.955566 320 ) +4 1182 1184 (2090.868652 -4044.110840 352.008331 ) (2096.198730 -4053.343018 373.330444 ) (2048 -4081.170654 373.330750 ) (2048 -4068.861328 352.008698 ) +5 1182 1183 (2096.198730 -4053.343018 373.330444 ) (2110.864746 -4078.745605 432 ) (2080.979248 -4096 432 ) (2048 -4096 399.018036 ) (2048 -4081.170654 373.330750 ) +4 1183 1275 (2064.989258 -4096 384 ) (2120.831055 -4096 397.961670 ) (2120.831055 -4096 400 ) (2096.995117 -4096 400 ) +3 1183 1273 (2120.831055 -4096 400 ) (2120.831055 -4096 411.915680 ) (2096.995117 -4096 400 ) +6 1183 1264 (2120.831055 -4096 432 ) (2080.969971 -4096 432 ) (2048 -4096 399.027344 ) (2048 -4096 379.752563 ) (2064.989258 -4096 384 ) (2120.831055 -4096 411.915680 ) +4 1183 1200 (2048 -4096 379.752563 ) (2048 -4096 392 ) (2048 -4091.943115 392 ) (2048 -4081.163330 373.327637 ) +3 1183 1193 (2048 -4096 392 ) (2048 -4096 399.027344 ) (2048 -4091.943115 392 ) +5 1183 1184 (2048 -4081.163086 373.326355 ) (2096.199219 -4053.335938 373.326324 ) (2106.869629 -4071.817627 383.997559 ) (2064.984863 -4096 383.997955 ) (2048 -4096 379.751526 ) +3 1184 1264 (2048 -4096 379.752563 ) (2048 -4096 375.507202 ) (2064.989258 -4096 384 ) +4 1184 1200 (2048 -4096 375.507202 ) (2048 -4096 379.752563 ) (2048 -4081.163330 373.327637 ) (2048 -4068.850830 352 ) +4 1185 1209 (2048 -3969.852051 288 ) (2048 -3994.955322 288 ) (2048 -3994.955322 320 ) (2048 -3969.852051 320 ) +3 1185 1187 (2048 -3994.955322 288 ) (2048 -3969.852051 288 ) (2058.870117 -3988.679688 288 ) +4 1186 1214 (2048 -3072 288 ) (2048 -3072 128 ) (2048 -3841.897217 128 ) (2048 -3841.897217 288 ) +5 1186 1189 (2048 -3841.897217 128 ) (2048 -3072 128 ) (3072 -3072 128 ) (3072 -3422.221924 128 ) (2122.300049 -3970.530029 128 ) +4 1186 1188 (2122.298340 -3970.527344 128 ) (3072 -3422.218750 128 ) (3072 -3422.224609 288 ) (2122.301270 -3970.531982 288 ) +4 1186 1187 (2048 -3841.894531 128 ) (2114.300293 -3956.679932 128 ) (2114.300293 -3956.679932 288 ) (2048 -3841.896973 288 ) +4 1187 1214 (2048 -3841.897217 128 ) (2048 -3994.956787 128 ) (2048 -3994.956543 288 ) (2048 -3841.897217 288 ) +3 1187 1189 (2048 -3994.956543 128 ) (2048 -3841.897217 128 ) (2114.300049 -3956.679932 128 ) +4 1188 1279 (2512.995117 -4096 288 ) (2194.737793 -4096 288 ) (2194.737793 -4096 128 ) (2512.995117 -4096 128 ) +4 1188 1278 (3072 -4096 128 ) (3072 -4096 288 ) (2512.995117 -4096 288 ) (2512.995117 -4096 128 ) +4 1188 1189 (3072 -4096 128 ) (2194.737793 -4096 128 ) (2122.300049 -3970.530029 128 ) (3072 -3422.221924 128 ) +4 1189 1280 (3072 -4096 -1284 ) (3072 -4096 128 ) (2048 -4096 128 ) (2048 -4096 -1284 ) +4 1189 1259 (2048 -3072 -192 ) (2048 -3072 -1284 ) (2048 -4096 -1284 ) (2048 -4096 -192 ) +4 1189 1256 (2048 -3072 -128 ) (2048 -3072 -192 ) (2048 -4096 -192 ) (2048 -4096 -128 ) +4 1189 1248 (2048 -3072 -64 ) (2048 -3072 -128 ) (2048 -3584 -128 ) (2048 -3584 -64 ) +4 1189 1255 (2048 -3584 -128 ) (2048 -4096 -128 ) (2048 -4096 -64 ) (2048 -3584 -64 ) +3 1189 1247 (2048 -3072 24 ) (2048 -3072 -54.729752 ) (2048 -3443.079834 24 ) +3 1189 1246 (2048 -3494 24 ) (2048 -3443.079834 24 ) (2048 -3386.519287 12 ) +3 1189 1245 (2048 -3839.080078 -8.210644 ) (2048 -3839.080078 24 ) (2048 -3550.580078 24 ) +4 1189 1244 (2048 -3839.080078 -26.405989 ) (2048 -3839.080078 -8.210644 ) (2048 -3696.484619 7.709942 ) (2048 -3714.689941 -0.014867 ) +4 1189 1243 (2048 -3839.080078 -52.795746 ) (2048 -3839.080078 -26.405989 ) (2048 -3754.736572 -8.511347 ) (2048 -3771.121094 -23.959547 ) +3 1189 1242 (2048 -3754.736572 -8.511347 ) (2048 -3714.689941 -0.014867 ) (2048 -3771.121094 -23.959547 ) +3 1189 1241 (2048 -3714.689941 -0.014870 ) (2048 -3696.484619 7.709942 ) (2048 -3658.059570 12 ) +9 1189 1239 (2048 -3072 -54.729752 ) (2048 -3072 -64 ) (2048 -3839.080078 -64 ) (2048 -3839.080078 -52.795746 ) (2048 -3714.689941 -0.014870 ) (2048 -3658.059570 12 ) (2048 -3550.580078 24 ) (2048 -3494 24 ) (2048 -3386.519287 12 ) +4 1189 1238 (2048 -3072 48 ) (2048 -3072 24 ) (2048 -3839.080078 24 ) (2048 -3839.080078 48 ) +4 1189 1237 (2048 -3839.080078 -64 ) (2048 -4096 -64 ) (2048 -4096 48 ) (2048 -3839.080078 48 ) +4 1189 1216 (2048 -3072 128 ) (2048 -3072 48 ) (2048 -4096 48 ) (2048 -4096 128 ) +4 1190 3642 (1024 -4096 392 ) (1024 -4096 5542.669922 ) (1024 -3834.039795 5542.669922 ) (1024 -3834.039795 392 ) +4 1190 1282 (1024 -4096 432 ) (1024 -4096 392 ) (1873.012207 -4096 392 ) (1873.012207 -4096 432 ) +4 1190 1281 (1024 -4096 5542.669922 ) (1024 -4096 432 ) (1873.012207 -4096 432 ) (1873.012207 -4096 5542.669922 ) +4 1190 1222 (1533.479614 -3324.559570 416 ) (1786.039063 -3072 416 ) (1786.039063 -3072 392 ) (1533.479614 -3324.559570 392 ) +4 1190 1220 (1024 -3834.039063 392 ) (1024 -3834.039063 416 ) (1533.479614 -3324.559570 416 ) (1533.479614 -3324.559570 392 ) +4 1190 1217 (1024 -3834.039063 416 ) (1024 -3834.039063 5542.669922 ) (1786.039063 -3072 5542.669922 ) (1786.039063 -3072 416 ) +6 1190 1195 (1873.012207 -4096 392 ) (1024 -4096 392 ) (1024 -3834.042969 392 ) (1786.042969 -3072 392 ) (2048 -3072 392 ) (2048 -3994.923828 392 ) +4 1190 1192 (1948.016602 -4052.674072 392 ) (2048 -3994.921875 392 ) (2048 -3994.921875 526.641479 ) (1920.301514 -4068.682861 416 ) +5 1190 1191 (1873.009033 -4096 392 ) (1892.601563 -4084.682861 392 ) (2048 -3994.921875 526.641479 ) (2048 -3994.920898 5542.669922 ) (1873.006958 -4096 5542.669922 ) +4 1191 1283 (1873.012207 -4096 392 ) (1888.994507 -4096 392 ) (1888.994629 -4096 432 ) (1873.012207 -4096 432 ) +4 1191 1281 (1888.994629 -4096 432 ) (1889.009155 -4096 5542.669922 ) (1873.012207 -4096 5542.669922 ) (1873.012207 -4096 432 ) +4 1191 1196 (1888.994507 -4096 392 ) (1873.012207 -4096 392 ) (1892.602539 -4084.684326 392 ) (1896.599365 -4091.609375 392 ) +4 1191 1194 (1888.997803 -4096 392 ) (1896.600220 -4091.610596 392 ) (1924.307129 -4075.614014 416.003296 ) (1888.997925 -4096 446.582031 ) +5 1191 1193 (1924.307129 -4075.614014 416.003296 ) (2048 -4004.199463 523.161987 ) (2048 -4004.205078 5542.669922 ) (1889.008057 -4096 5542.669922 ) (1888.997925 -4096 446.582031 ) +4 1191 1192 (2048 -4004.197510 523.162109 ) (1924.302979 -4075.614502 416 ) (1920.304199 -4068.684326 415.998901 ) (2048 -3994.924805 526.638184 ) +4 1192 1199 (1948.017456 -4052.675537 392 ) (2048 -3994.923828 392 ) (2048 -4004.197021 392 ) (1952.020752 -4059.611328 392 ) +4 1192 1193 (1952.021606 -4059.612793 392 ) (2048 -4004.199219 392 ) (2048 -4004.199463 523.161987 ) (1924.303345 -4075.616211 416 ) +4 1193 1302 (1976.890381 -4096 392 ) (2048 -4096 392 ) (2048 -4096 400 ) (1984.889160 -4096 400 ) +5 1193 1300 (2048 -4096 400 ) (2048 -4096 432 ) (2032.864380 -4096 432 ) (2000.895752 -4096 416.009003 ) (1984.889160 -4096 400 ) +4 1193 1298 (1973.033081 -4096 392 ) (1976.890381 -4096 392 ) (2000.895752 -4096 416.009003 ) (1964.272949 -4096 397.689911 ) +3 1193 1284 (2032.864380 -4096 432 ) (1911.448975 -4096 432 ) (1964.272949 -4096 397.689911 ) +5 1193 1281 (2048 -4096 432 ) (2048 -4096 5542.669922 ) (1889.009155 -4096 5542.669922 ) (1888.994629 -4096 446.584473 ) (1911.448975 -4096 432 ) +4 1193 1200 (2048 -4096 392 ) (1973.033081 -4096 392 ) (1952.022583 -4059.610352 392 ) (2048 -4004.197021 392 ) +3 1193 1194 (1888.992920 -4096 446.586670 ) (1924.310425 -4075.609131 416 ) (1936.083496 -4096 416 ) +5 1194 1285 (1888.994507 -4096 392 ) (1899.132202 -4096 392 ) (1936.082642 -4096 416 ) (1911.448975 -4096 432 ) (1888.994629 -4096 432 ) +3 1194 1281 (1911.448975 -4096 432 ) (1888.994629 -4096 446.584473 ) (1888.994629 -4096 432 ) +3 1194 1197 (1899.132202 -4096 392 ) (1888.994507 -4096 392 ) (1896.597778 -4091.610352 392 ) +4 1195 3642 (1024 -4096 352 ) (1024 -4096 392 ) (1024 -3834.039795 392 ) (1024 -3834.039795 352 ) +4 1195 1282 (1024 -4096 392 ) (1024 -4096 352 ) (1872.942627 -4096 352 ) (1872.968140 -4096 392 ) +4 1195 1222 (1533.479614 -3324.559570 392 ) (1786.039063 -3072 392 ) (1786.039063 -3072 352 ) (1533.479614 -3324.559570 352 ) +4 1195 1220 (1024 -3834.039063 352 ) (1024 -3834.039063 392 ) (1533.479614 -3324.559570 392 ) (1533.479614 -3324.559570 352 ) +4 1195 1205 (2048 -3990.319824 352 ) (2048 -3994.956787 352 ) (1934.153687 -4060.668945 352 ) (1932.158691 -4057.207764 352 ) +4 1195 1204 (1906.441162 -4076.664551 352 ) (1872.942627 -4096 352 ) (1864.975464 -4096 352 ) (1904.448853 -4073.207764 352 ) +6 1195 1201 (1024 -3834.042969 352 ) (1786.042969 -3072 352 ) (2048 -3072 352 ) (2048 -3990.319824 352 ) (1864.975464 -4096 352 ) (1024 -4096 352 ) +4 1195 1199 (1994.205566 -4026.002686 352 ) (2048 -3994.952393 352 ) (2048 -3994.968750 392 ) (1948.018799 -4052.677979 392 ) +4 1195 1198 (1906.439209 -4076.661377 352 ) (1934.151733 -4060.665771 352 ) (1934.158936 -4060.677979 392 ) (1906.446289 -4076.673828 392 ) +3 1195 1196 (1892.593872 -4084.669434 392 ) (1872.963745 -4096 392 ) (1872.951538 -4096 374.992462 ) +4 1196 1283 (1888.994141 -4096 385.413452 ) (1888.994141 -4096 392 ) (1872.968140 -4096 392 ) (1872.957275 -4096 374.996155 ) +3 1196 1197 (1896.598999 -4091.608643 392 ) (1888.992920 -4096 392 ) (1888.992920 -4096 385.412720 ) +3 1197 1285 (1899.132202 -4096 392 ) (1888.994141 -4096 392 ) (1888.994141 -4096 385.415131 ) +4 1199 1202 (2048 -3994.956787 352 ) (2048 -4004.197266 352 ) (1998.211548 -4032.942871 352 ) (1994.207397 -4026.005859 352 ) +4 1199 1200 (1998.211548 -4032.942871 352 ) (2048 -4004.197266 352 ) (2048 -4004.197266 392 ) (1952.020874 -4059.611328 392 ) +4 1200 1303 (2019.986206 -4096 361.503113 ) (2048 -4096 375.507202 ) (2048 -4096 379.752594 ) (2007.484741 -4096 369.623016 ) +5 1200 1302 (2048 -4096 379.752594 ) (2048 -4096 392 ) (1976.890381 -4096 392 ) (1975.371704 -4096 390.481018 ) (2007.484741 -4096 369.623016 ) +3 1200 1298 (1976.890381 -4096 392 ) (1973.033081 -4096 392 ) (1975.371704 -4096 390.481018 ) +4 1200 1203 (2048 -4004.197266 352 ) (2048 -4068.851074 352 ) (2026.206787 -4081.433350 352 ) (1998.210083 -4032.943604 352 ) +4 1201 3642 (1024 -4096 320 ) (1024 -4096 352 ) (1024 -3834.039795 352 ) (1024 -3834.039795 320 ) +4 1201 1310 (1672.795288 -4096 320 ) (1864.974854 -4096 320 ) (1864.974854 -4096 352 ) (1672.795288 -4096 352 ) +4 1201 1309 (1024 -4096 352 ) (1024 -4096 320 ) (1672.795288 -4096 320 ) (1672.795288 -4096 352 ) +4 1201 1222 (1533.479614 -3324.559570 352 ) (1786.039063 -3072 352 ) (1786.039063 -3072 320 ) (1533.479614 -3324.559570 320 ) +4 1201 1220 (1024 -3834.039063 320 ) (1024 -3834.039063 352 ) (1533.479614 -3324.559570 352 ) (1533.479614 -3324.559570 320 ) +6 1201 1209 (1864.974854 -4096 320 ) (1024 -4096 320 ) (1024 -3834.042969 320 ) (1786.042969 -3072 320 ) (2048 -3072 320 ) (2048 -3990.319824 320 ) +4 1201 1207 (1864.980713 -4096 320 ) (2029.154297 -4001.204590 320 ) (1996.824097 -4019.870361 348 ) (1864.977051 -4096 348 ) +4 1201 1206 (2029.154297 -4001.204590 320 ) (2048 -3990.322998 320 ) (2048 -3990.321045 348 ) (1996.824097 -4019.870361 348 ) +4 1201 1205 (2048 -3990.321045 348 ) (2048 -3990.320801 352 ) (1932.159058 -4057.208252 352 ) (1932.159180 -4057.208496 348 ) +4 1201 1204 (1904.449097 -4073.208252 352 ) (1864.976563 -4096 352 ) (1864.977051 -4096 348 ) (1904.449219 -4073.208496 348 ) +4 1202 1206 (1998.826050 -4023.338867 348 ) (2048 -3994.945313 348 ) (2048 -4004.197021 348 ) (2002.830200 -4030.276123 348 ) +4 1202 1205 (2048 -3994.943359 348 ) (1998.825195 -4023.337402 348 ) (1994.208862 -4026.007813 352 ) (2048 -3994.948242 352 ) +4 1202 1203 (2002.830566 -4030.276855 348 ) (2048 -4004.197998 348 ) (2048 -4004.193359 352 ) (1998.210083 -4032.939941 352 ) +4 1203 1208 (2048 -4066.535156 348 ) (2029.823120 -4077.030273 348 ) (2002.828857 -4030.276855 348 ) (2048 -4004.197021 348 ) +4 1204 1310 (1872.984985 -4096 352 ) (1864.974854 -4096 352 ) (1864.974854 -4096 348 ) (1872.984985 -4096 348 ) +4 1204 1207 (1872.985718 -4096 348 ) (1864.983398 -4096 348 ) (1904.450806 -4073.211182 348 ) (1906.448975 -4076.677979 348 ) +4 1205 1207 (1932.160645 -4057.211426 348 ) (1996.825684 -4019.873291 348 ) (1998.826050 -4023.338867 348 ) (1934.158813 -4060.678223 348 ) +4 1205 1206 (1996.825684 -4019.873291 348 ) (2048 -3990.324707 348 ) (2048 -3994.945313 348 ) (1998.826050 -4023.338867 348 ) +4 1206 1209 (2029.152832 -4001.202393 320 ) (2048 -3990.319824 320 ) (2048 -3994.955566 320 ) (2031.159180 -4004.678223 320 ) +4 1206 1208 (2035.160645 -4011.610840 320 ) (2048 -4004.197998 320 ) (2048 -4004.197266 348 ) (2002.830200 -4030.276367 348 ) +4 1206 1207 (1998.828735 -4023.343506 348 ) (1996.823608 -4019.869385 348 ) (2029.152710 -4001.201904 320 ) (2031.160156 -4004.679688 320 ) +4 1207 1310 (1864.974854 -4096 320 ) (1872.980225 -4096 320 ) (1872.977051 -4096 348 ) (1864.974854 -4096 348 ) +4 1207 1209 (1872.980225 -4096 320 ) (1864.974854 -4096 320 ) (2029.152832 -4001.202393 320 ) (2031.160034 -4004.679688 320 ) +4 1209 3642 (1024 -4096 288 ) (1024 -4096 320 ) (1024 -3834.039795 320 ) (1024 -3834.039795 288 ) +4 1209 1310 (1672.795288 -4096 288 ) (1872.984619 -4096 288 ) (1872.984619 -4096 320 ) (1672.795288 -4096 320 ) +4 1209 1309 (1024 -4096 320 ) (1024 -4096 288 ) (1672.795288 -4096 288 ) (1672.795288 -4096 320 ) +4 1209 1222 (1533.479614 -3324.559570 320 ) (1786.039063 -3072 320 ) (1786.039063 -3072 288 ) (1533.479614 -3324.559570 288 ) +4 1209 1220 (1024 -3834.039063 288 ) (1024 -3834.039063 320 ) (1533.479614 -3324.559570 320 ) (1533.479614 -3324.559570 288 ) +5 1209 1215 (1024 -3834.042969 288 ) (1482.807861 -3375.235107 288 ) (1892.597778 -4084.676270 288 ) (1872.984619 -4096 288 ) (1024 -4096 288 ) +5 1209 1214 (1553.080444 -3304.962402 288 ) (1786.042969 -3072 288 ) (2048 -3072 288 ) (2048 -3994.955322 288 ) (1975.730225 -4036.680176 288 ) +4 1209 1213 (1482.807861 -3375.235107 288 ) (1553.080444 -3304.962402 288 ) (1975.730225 -4036.680176 288 ) (1892.597778 -4084.676270 288 ) +4 1210 1222 (1553.078979 -3304.959961 240.002533 ) (1553.078979 -3304.959961 128 ) (1533.479492 -3324.559326 128 ) (1533.479492 -3324.559326 235.539337 ) +4 1210 1220 (1533.479492 -3324.559326 128 ) (1482.806519 -3375.232422 128 ) (1482.806519 -3375.232422 224 ) (1533.479492 -3324.559326 235.539337 ) +4 1210 1215 (1482.804688 -3375.234375 128 ) (1892.594727 -4084.675781 128 ) (1892.596680 -4084.674805 224 ) (1482.807007 -3375.234375 224 ) +4 1210 1214 (1975.729980 -4036.679688 128 ) (1553.082031 -3304.964844 128 ) (1553.079346 -3304.959473 240.002625 ) (1975.730347 -4036.679443 240.001556 ) +4 1210 1213 (1934.156738 -4060.681152 232 ) (1975.728516 -4036.680664 240.001923 ) (1553.082031 -3304.968750 240.002991 ) (1517.940552 -3340.108154 232.001083 ) +4 1210 1212 (1482.804688 -3375.242188 224 ) (1892.591431 -4084.677734 224 ) (1934.156738 -4060.681152 232 ) (1517.940552 -3340.108154 232.001083 ) +5 1210 1211 (1975.726563 -4036.681641 128 ) (1975.726563 -4036.681641 224 ) (1934.156616 -4060.680908 232 ) (1892.596802 -4084.674561 224.001160 ) (1892.596802 -4084.674561 128 ) +4 1210 1216 (1892.596802 -4084.674561 128 ) (1482.807861 -3375.235107 128 ) (1553.080444 -3304.962402 128 ) (1975.729980 -4036.679688 128 ) +4 1211 1332 (1899.138672 -4096 128 ) (1904.978516 -4096 128 ) (1904.978516 -4096 224.842987 ) (1899.138672 -4096 224 ) +5 1211 1216 (1904.978516 -4096 128 ) (1899.138672 -4096 128 ) (1892.596802 -4084.674561 128 ) (1975.729980 -4036.679688 128 ) (1983.731445 -4050.532471 128 ) +3 1212 1220 (1517.939453 -3340.099365 232 ) (1482.806519 -3375.232422 224 ) (1482.806519 -3375.232422 240 ) +4 1212 1215 (1892.599976 -4084.679932 239.998566 ) (1482.807373 -3375.234375 240 ) (1482.807007 -3375.234375 224 ) (1892.599609 -4084.679932 224 ) +4 1212 1213 (1482.804688 -3375.234375 240 ) (1892.597534 -4084.681152 240 ) (1934.165405 -4060.676758 232 ) (1517.944336 -3340.095459 232 ) +4 1213 1222 (1533.479492 -3324.559326 288 ) (1553.078979 -3304.959961 288 ) (1553.078979 -3304.959961 240.002533 ) (1533.479492 -3324.559326 235.539322 ) +5 1213 1220 (1482.806519 -3375.232422 288 ) (1533.479492 -3324.559326 288 ) (1533.479492 -3324.559326 235.539322 ) (1517.939453 -3340.099365 232 ) (1482.806519 -3375.232422 240 ) +4 1213 1215 (1892.598877 -4084.675781 288 ) (1482.808594 -3375.234375 288 ) (1482.807373 -3375.234375 240 ) (1892.597778 -4084.676270 239.998566 ) +4 1213 1214 (1553.079346 -3304.959473 240.002625 ) (1553.078125 -3304.957031 288 ) (1975.730957 -4036.679688 288 ) (1975.730713 -4036.679688 240.001541 ) +3 1214 1227 (1786.039063 -3072 128.266586 ) (1786.039063 -3072 128 ) (1784.279663 -3073.759521 128 ) +4 1214 1225 (1786.039063 -3072 131.512787 ) (1786.039063 -3072 128.266586 ) (1784.279663 -3073.759521 128 ) (1751.266846 -3106.772217 128 ) +4 1214 1224 (1786.039063 -3072 145.022095 ) (1786.039063 -3072 131.512787 ) (1751.266846 -3106.772217 128 ) (1701.779663 -3156.259277 128 ) +5 1214 1222 (1553.078979 -3304.959961 288 ) (1786.039063 -3072 288 ) (1786.039063 -3072 145.022095 ) (1701.779663 -3156.259277 128 ) (1553.078979 -3304.959961 128 ) +5 1214 1216 (1975.730225 -4036.680176 128 ) (1553.080444 -3304.962402 128 ) (1786.042969 -3072 128 ) (2048 -3072 128 ) (2048 -3994.955566 128 ) +4 1215 3643 (1024 -4096 128 ) (1024 -4096 288 ) (1024 -3834.039795 288 ) (1024 -3834.039795 128 ) +4 1215 1344 (1864.975098 -4096 128 ) (1872.984253 -4096 128 ) (1872.984253 -4096 160 ) (1864.975098 -4096 160 ) +4 1215 1341 (1872.984253 -4096 160 ) (1872.984253 -4096 168 ) (1864.975098 -4096 168 ) (1864.975098 -4096 160 ) +4 1215 1338 (1872.984253 -4096 168 ) (1872.984253 -4096 288 ) (1864.975098 -4096 288 ) (1864.975098 -4096 168 ) +4 1215 1331 (1024 -4096 288 ) (1024 -4096 128 ) (1864.975098 -4096 128 ) (1864.975098 -4096 288 ) +4 1215 1220 (1024 -3834.039063 128 ) (1024 -3834.039063 288 ) (1482.806519 -3375.232422 288 ) (1482.806519 -3375.232422 128 ) +5 1215 1216 (1872.984253 -4096 128 ) (1024 -4096 128 ) (1024 -3834.042969 128 ) (1482.807861 -3375.235107 128 ) (1892.597778 -4084.676270 128 ) +4 1216 3643 (1024 -4096 48 ) (1024 -4096 128 ) (1024 -3834.039795 128 ) (1024 -3834.039795 48 ) +4 1216 1347 (1024 -4096 128 ) (1024 -4096 48 ) (2048 -4096 48 ) (2048 -4096 128 ) +4 1216 1238 (1533.479858 -3324.560059 48 ) (1786.039795 -3072 48 ) (2048 -3072 48 ) (2048 -3839.080078 48 ) +5 1216 1237 (2048 -4096 48 ) (1024 -4096 48 ) (1024 -3834.039795 48 ) (1533.479858 -3324.560059 48 ) (2048 -3839.080078 48 ) +3 1216 1229 (1731.479492 -3126.559814 118 ) (1755.229736 -3102.809570 115.599976 ) (1771.069702 -3086.969482 110 ) +3 1216 1228 (1723.555664 -3134.483643 118.799393 ) (1739.392700 -3118.646484 121.198944 ) (1755.229736 -3102.809570 115.599976 ) +4 1216 1227 (1739.392700 -3118.646484 121.198944 ) (1784.279663 -3073.759521 128 ) (1786.039063 -3072 128 ) (1786.039063 -3072 104.707718 ) +4 1216 1225 (1691.872070 -3166.167236 122 ) (1751.266968 -3106.772217 128 ) (1784.279663 -3073.759521 128 ) (1723.555542 -3134.483643 118.799393 ) +3 1216 1224 (1652.279663 -3205.759521 118 ) (1701.779663 -3156.259521 128 ) (1751.266968 -3106.772217 128 ) +4 1216 1223 (1533.479614 -3324.559570 90 ) (1533.479614 -3324.559570 94 ) (1612.679321 -3245.359863 110 ) (1573.079468 -3284.959717 96 ) +3 1216 1222 (1533.479614 -3324.559570 94 ) (1533.479614 -3324.559570 128 ) (1701.779663 -3156.259521 128 ) +4 1216 1220 (1533.479614 -3324.559570 48 ) (1024 -3834.039063 48 ) (1024 -3834.039063 128 ) (1533.479614 -3324.559570 128 ) +4 1217 3642 (1024 -3296 416 ) (1024 -3834.039795 416 ) (1024 -3834.039795 5542.669922 ) (1024 -3296 5542.669922 ) +4 1217 3630 (1024 -3072 5542.669922 ) (1024 -3072 416 ) (1024 -3296 416 ) (1024 -3296 5542.669922 ) +4 1217 1232 (1352.459961 -3143.539795 416 ) (1424 -3072 416 ) (1449.459839 -3072 416 ) (1365.194824 -3156.264893 416 ) +4 1217 1231 (1024 -3497.458740 416 ) (1024 -3472 416 ) (1352.459961 -3143.539795 416 ) (1365.194824 -3156.264893 416 ) +4 1217 1222 (1786.046875 -3072 416 ) (1533.483398 -3324.563477 416 ) (1520.755005 -3311.824951 416 ) (1760.579346 -3072 416 ) +4 1217 1221 (1520.755005 -3311.824951 416 ) (1365.255981 -3156.203613 416 ) (1449.459839 -3072 416 ) (1760.579346 -3072 416 ) +4 1217 1220 (1533.483398 -3324.563477 416 ) (1024 -3834.046875 416 ) (1024 -3497.458740 416 ) (1365.255981 -3156.203613 416 ) +4 1217 1219 (1024 -3472 416 ) (1024 -3264 416 ) (1056 -3264 416 ) (1056 -3440 416 ) +3 1217 1218 (1056 -3072 416 ) (1424 -3072 416 ) (1056 -3440 416 ) +3 1218 1234 (1056 -3072 48 ) (1424 -3072 48 ) (1056 -3440 48 ) +5 1218 1233 (1424 -3072 107.291962 ) (1424 -3072 108.452530 ) (1352.459961 -3143.540039 94 ) (1352.459961 -3143.540039 90 ) (1392.063721 -3103.936279 96.001328 ) +4 1218 1232 (1424 -3072 108.452530 ) (1424 -3072 416 ) (1352.459961 -3143.540039 416 ) (1352.459961 -3143.540039 94 ) +4 1218 1231 (1056 -3440 48 ) (1352.459961 -3143.540039 48 ) (1352.459961 -3143.540039 416 ) (1056 -3440 416 ) +4 1218 1219 (1056 -3264 48 ) (1056 -3440.001953 48 ) (1056 -3440.001953 416 ) (1056 -3264 416 ) +4 1219 3643 (1024 -3296 48 ) (1024 -3472 48 ) (1024 -3472 288 ) (1024 -3296 288 ) +4 1219 3642 (1024 -3472 288 ) (1024 -3472 416 ) (1024 -3296 416 ) (1024 -3296 288 ) +4 1219 3631 (1024 -3264 48 ) (1024 -3296 48 ) (1024 -3296 416 ) (1024 -3264 416 ) +4 1219 1236 (1024 -3472 48 ) (1024 -3264 48 ) (1056 -3264 48 ) (1056 -3440 48 ) +4 1219 1231 (1024 -3472 48 ) (1056 -3440 48 ) (1056 -3440 416 ) (1024 -3472 416 ) +4 1220 3643 (1024 -3497.458740 48 ) (1024 -3834.039795 48 ) (1024 -3834.039795 288 ) (1024 -3497.458740 288 ) +4 1220 3642 (1024 -3834.039795 288 ) (1024 -3834.039795 416 ) (1024 -3497.458740 416 ) (1024 -3497.458740 288 ) +4 1220 1237 (1024 -3834.039795 48 ) (1024 -3497.458740 48 ) (1365.255981 -3156.203613 48 ) (1533.479980 -3324.559814 48 ) +4 1220 1231 (1365.254639 -3156.202148 48 ) (1024 -3497.455811 48 ) (1024 -3497.453125 416 ) (1365.254395 -3156.201904 416 ) +4 1220 1230 (1365.255859 -3156.205078 48 ) (1365.255859 -3156.205078 82.023102 ) (1520.754272 -3311.825684 82.001511 ) (1520.754272 -3311.825684 48 ) +4 1220 1226 (1365.255859 -3156.205078 82.023102 ) (1365.255859 -3156.205078 90 ) (1520.762939 -3311.834473 90 ) (1520.762939 -3311.834473 82.001503 ) +4 1220 1223 (1533.479248 -3324.560791 94 ) (1533.479248 -3324.560791 90 ) (1520.754272 -3311.825684 90 ) (1520.754272 -3311.825684 94 ) +4 1220 1222 (1520.754272 -3311.825684 416 ) (1533.479248 -3324.560791 416 ) (1533.479248 -3324.560791 94 ) (1520.754272 -3311.825684 94 ) +4 1220 1221 (1365.255859 -3156.205078 90 ) (1365.255859 -3156.205078 416 ) (1520.754272 -3311.825684 416 ) (1520.754272 -3311.825684 90 ) +4 1221 1233 (1365.254639 -3156.202148 90 ) (1365.254639 -3156.202148 94.013397 ) (1444.388184 -3077.068848 110 ) (1404.738647 -3116.718262 95.982437 ) +4 1221 1232 (1365.254639 -3156.202148 94.013397 ) (1365.254395 -3156.201904 416 ) (1449.457031 -3072 416 ) (1449.457031 -3072 111.023956 ) +5 1221 1230 (1404.745483 -3116.719482 95.983437 ) (1449.465088 -3072 102.759117 ) (1661.116455 -3072 118.799622 ) (1710.828491 -3121.751221 118.799622 ) (1560.349365 -3272.231201 96 ) +4 1221 1228 (1661.116455 -3072 118.799622 ) (1692.754761 -3072 121.197403 ) (1726.663208 -3105.916504 121.198822 ) (1710.828491 -3121.751221 118.799622 ) +3 1221 1227 (1692.754761 -3072 121.197403 ) (1760.579468 -3072 126.337654 ) (1726.663208 -3105.916504 121.198822 ) +4 1221 1226 (1520.754395 -3311.826416 90 ) (1365.257813 -3156.207031 90 ) (1404.745483 -3116.719482 95.983437 ) (1560.349365 -3272.231201 96 ) +4 1221 1225 (1710.832397 -3121.749023 118.799316 ) (1760.581299 -3072 126.337029 ) (1760.581299 -3072 130.226883 ) (1679.145752 -3153.435791 122 ) +3 1221 1224 (1760.581299 -3072 130.226883 ) (1760.581299 -3072 142.450592 ) (1639.550781 -3193.030762 118 ) +4 1221 1223 (1520.753906 -3311.828125 94 ) (1520.753906 -3311.828125 90 ) (1560.346191 -3272.235596 95.998352 ) (1599.950439 -3232.631348 110 ) +4 1221 1222 (1520.753906 -3311.828125 416 ) (1520.753906 -3311.828125 94 ) (1760.581299 -3072 142.450592 ) (1760.581299 -3072 416 ) +4 1222 1224 (1639.544556 -3193.036865 118 ) (1760.581055 -3072 142.451202 ) (1786.039185 -3072 145.022583 ) (1652.275024 -3205.763916 118 ) +4 1222 1223 (1533.480469 -3324.558594 94 ) (1520.755859 -3311.825928 94.001648 ) (1599.954346 -3232.627197 110.001358 ) (1612.682007 -3245.356934 110 ) +4 1224 1225 (1679.143555 -3153.434326 122 ) (1760.577637 -3072 130.226776 ) (1786.042236 -3072 131.513031 ) (1691.874878 -3166.170654 122 ) +4 1225 1228 (1710.828613 -3121.751221 118.799622 ) (1726.663208 -3105.916504 121.198814 ) (1739.389648 -3118.645752 121.199356 ) (1723.551392 -3134.484131 118.799622 ) +4 1225 1227 (1726.663208 -3105.916504 121.198814 ) (1760.579468 -3072 126.337654 ) (1786.035645 -3072 128.266907 ) (1739.389648 -3118.645752 121.199356 ) +4 1226 1230 (1520.762451 -3311.834473 82.001900 ) (1365.257813 -3156.207031 82.023529 ) (1404.746094 -3116.714844 95.983429 ) (1560.354858 -3272.231934 96 ) +3 1227 1230 (1758.338135 -3074.241455 110 ) (1756.096680 -3072 110 ) (1760.579590 -3072 109.207886 ) +4 1227 1229 (1771.066040 -3086.968994 110 ) (1755.226685 -3102.808350 115.600075 ) (1724.408447 -3072 115.601791 ) (1756.096680 -3072 110 ) +4 1227 1228 (1755.226685 -3102.808350 115.600075 ) (1739.390625 -3118.644531 121.198708 ) (1692.756958 -3072 121.196762 ) (1724.408447 -3072 115.601791 ) +4 1228 1230 (1710.830078 -3121.749756 118.799370 ) (1661.119629 -3072 118.799370 ) (1676.877686 -3072 118.003250 ) (1718.745361 -3113.834473 118 ) +4 1228 1229 (1676.877686 -3072 118.003250 ) (1724.414307 -3072 115.601616 ) (1755.231934 -3102.807861 115.599899 ) (1731.480103 -3126.559082 117.998886 ) +4 1229 1230 (1718.743896 -3113.835938 118 ) (1676.874878 -3072 118.003304 ) (1756.089966 -3072 110 ) (1758.334717 -3074.244873 110 ) +4 1231 3643 (1024 -3472 48 ) (1024 -3497.458740 48 ) (1024 -3497.458740 288 ) (1024 -3472 288 ) +4 1231 3642 (1024 -3497.458740 288 ) (1024 -3497.458740 416 ) (1024 -3472 416 ) (1024 -3472 288 ) +4 1231 1237 (1024 -3497.458740 48 ) (1024 -3472 48 ) (1352.459961 -3143.539795 48 ) (1365.194824 -3156.264893 48 ) +4 1231 1233 (1365.195313 -3156.265625 94.001007 ) (1365.195313 -3156.265625 90 ) (1352.460327 -3143.541504 90 ) (1352.460327 -3143.541504 94 ) +4 1231 1232 (1365.195313 -3156.265625 416 ) (1365.195313 -3156.265625 94.001007 ) (1352.460327 -3143.541504 94 ) (1352.460327 -3143.541504 416 ) +5 1232 1233 (1444.390137 -3077.063232 110.001282 ) (1365.191406 -3156.261719 94.001511 ) (1352.459839 -3143.540283 94 ) (1424 -3072 108.453064 ) (1439.326416 -3072 110.001213 ) +4 1234 1254 (1280.919922 -3072 -64 ) (1306.382446 -3072 -64 ) (1365.191162 -3130.808838 -64 ) (1352.459839 -3143.540039 -64 ) +3 1234 1253 (1306.382446 -3072 -64 ) (1424 -3072 -64 ) (1365.191162 -3130.808838 -64 ) +4 1234 1252 (1056 -3072 -64 ) (1280.919922 -3072 -64 ) (1352.459839 -3143.540039 -64 ) (1056 -3440 -64 ) +5 1234 1240 (1365.191162 -3130.808838 -64 ) (1424 -3072 -64 ) (1424 -3072 3.950470 ) (1414.689941 -3081.310059 0 ) (1386.409790 -3109.590332 -24 ) +4 1234 1237 (1056 -3440 -64 ) (1352.459961 -3143.540039 -64 ) (1352.459961 -3143.540039 48 ) (1056 -3440 48 ) +4 1234 1235 (1056 -3072 -64 ) (1056 -3264 -64 ) (1056 -3264 0 ) (1056 -3072 0 ) +4 1234 1236 (1056 -3264 -64 ) (1056 -3440.001953 -64 ) (1056 -3440.001953 48 ) (1056 -3264 48 ) +4 1235 3649 (1024 -3072 0 ) (1024 -3072 -64 ) (1024 -3264 -64 ) (1024 -3264 0 ) +4 1235 1252 (1024 -3264 -64 ) (1024 -3072 -64 ) (1056 -3072 -64 ) (1056 -3264 -64 ) +4 1235 1236 (1024 -3264 -64 ) (1056 -3264 -64 ) (1056 -3264 0 ) (1024 -3264 0 ) +4 1236 3649 (1024 -3264 0 ) (1024 -3264 -64 ) (1024 -3472 -64 ) (1024 -3472 0 ) +4 1236 3643 (1024 -3472 48 ) (1024 -3296 48 ) (1024 -3296 0 ) (1024 -3472 0 ) +4 1236 3631 (1024 -3296 48 ) (1024 -3264 48 ) (1024 -3264 0 ) (1024 -3296 0 ) +4 1236 1252 (1024 -3472 -64 ) (1024 -3264 -64 ) (1056 -3264 -64 ) (1056 -3440 -64 ) +4 1236 1237 (1024 -3472 -64 ) (1056 -3440 -64 ) (1056 -3440 48 ) (1024 -3472 48 ) +4 1237 3649 (1024 -4096 -64 ) (1024 -4096 0 ) (1024 -3472 0 ) (1024 -3472 -64 ) +4 1237 3643 (1024 -4096 0 ) (1024 -4096 48 ) (1024 -3472 48 ) (1024 -3472 0 ) +4 1237 1347 (1024 -4096 48 ) (1024 -4096 -64 ) (2048 -4096 -64 ) (2048 -4096 48 ) +5 1237 1252 (1024 -3584 -64 ) (1024 -3472 -64 ) (1352.459839 -3143.540039 -64 ) (1472 -3263.080078 -64 ) (1472 -3584 -64 ) +3 1237 1249 (1472 -3263.080078 -64 ) (1792.919922 -3584 -64 ) (1472 -3584 -64 ) +5 1237 1255 (2048 -3839.080078 -64 ) (2048 -4096 -64 ) (1024 -4096 -64 ) (1024 -3584 -64 ) (1792.919922 -3584 -64 ) +4 1237 1245 (1533.480713 -3324.558838 24 ) (2048 -3839.078125 24 ) (2048 -3839.078125 -8.210426 ) (1533.480713 -3324.558838 -8.210426 ) +4 1237 1244 (1533.481079 -3324.559082 -8.210426 ) (2048 -3839.078125 -8.210426 ) (2048 -3839.078125 -26.405518 ) (1533.481079 -3324.559082 -26.405523 ) +4 1237 1243 (1533.479980 -3324.558105 -26.405523 ) (2048 -3839.078125 -26.405518 ) (2048 -3839.078125 -52.794891 ) (1533.469971 -3324.548096 -52.806950 ) +4 1237 1239 (2048 -3839.078125 -64 ) (1533.481079 -3324.559082 -64 ) (1533.481079 -3324.559082 -52.806950 ) (2048 -3839.078125 -52.794891 ) +4 1237 1238 (1533.480713 -3324.558838 48 ) (2048 -3839.078125 48 ) (2048 -3839.078125 24 ) (1533.480713 -3324.558838 24 ) +4 1238 1247 (1731.479980 -3126.559814 24 ) (1786.039795 -3072 24 ) (2048 -3072 24 ) (2048 -3443.080078 24 ) +4 1238 1246 (1706.019897 -3152.020020 24 ) (1731.479980 -3126.559814 24 ) (2048 -3443.080078 24 ) (2048 -3494 24 ) +4 1238 1245 (2048 -3839.078125 24 ) (1533.480835 -3324.559082 24 ) (1677.729980 -3180.310059 24 ) (2048 -3550.580078 24 ) +4 1238 1239 (1677.729980 -3180.310059 24 ) (1706.019897 -3152.020020 24 ) (2048 -3494 24 ) (2048 -3550.580078 24 ) +4 1239 1251 (1818.382568 -3584 -64 ) (1792.919922 -3584 -64 ) (1533.479980 -3324.560059 -64 ) (1546.207520 -3311.824951 -64 ) +5 1239 1250 (1984 -3584 -64 ) (1818.382568 -3584 -64 ) (1546.207520 -3311.824951 -64 ) (1785.891113 -3072 -64 ) (1984 -3072 -64 ) +4 1239 1248 (2048 -3072 -64 ) (2048 -3584 -64 ) (1984 -3584 -64 ) (1984 -3072 -64 ) +3 1239 1255 (2048 -3584 -64 ) (2048 -3839.080078 -64 ) (1792.919922 -3584 -64 ) +4 1239 1247 (2048 -3072 -54.730255 ) (1785.891235 -3072 0.879784 ) (1759.691284 -3098.215332 12 ) (2048 -3386.524170 12 ) +4 1239 1246 (1705.967163 -3151.971191 24 ) (2048 -3494.003906 24 ) (2048 -3386.511719 11.998817 ) (1759.697510 -3098.209229 11.998816 ) +4 1239 1245 (2048 -3658.047852 12.002555 ) (2048 -3550.589844 24 ) (1677.682617 -3180.272461 24 ) (1623.969360 -3234.017334 12.002555 ) +4 1239 1243 (1533.480957 -3324.559082 -52.806408 ) (2048 -3839.078125 -52.794346 ) (2048 -3771.118896 -23.957724 ) (1567.415649 -3290.604492 -23.998713 ) +4 1239 1242 (2048 -3771.118896 -23.957724 ) (2048 -3714.695313 -0.015972 ) (1595.679199 -3262.324219 -0.005358 ) (1567.415649 -3290.604492 -23.998713 ) +4 1239 1241 (2048 -3658.058594 12 ) (1623.964111 -3234.022705 12 ) (1595.681152 -3262.322266 -0.003527 ) (2048 -3714.691162 -0.014148 ) +9 1239 1240 (1567.422852 -3290.596924 -23.994284 ) (1595.687500 -3262.316406 0 ) (1623.954346 -3234.032959 11.997940 ) (1677.687744 -3180.267822 24 ) (1705.969482 -3151.969482 24 ) (1759.693726 -3098.213623 12 ) (1785.891846 -3072 0.880095 ) (1785.891235 -3072 -64 ) (1546.207031 -3311.824707 -64 ) +4 1240 1253 (1365.191162 -3130.808838 -64 ) (1424 -3072 -64 ) (1472 -3072 -64 ) (1472 -3237.617432 -64 ) +4 1240 1250 (1472 -3072 -64 ) (1785.891113 -3072 -64 ) (1546.207520 -3311.824951 -64 ) (1472 -3237.617432 -64 ) +4 1241 1245 (2048 -3696.480713 7.711603 ) (2048 -3658.047852 12.002555 ) (1623.995972 -3234.043701 12.002555 ) (1604.796021 -3253.243652 7.715289 ) +4 1241 1244 (2048 -3696.488281 7.709643 ) (1604.792358 -3253.247314 7.713354 ) (1595.697388 -3262.342529 -0.005358 ) (2048 -3714.695313 -0.015972 ) +4 1242 1244 (2048 -3714.687500 -0.014148 ) (1595.701294 -3262.338623 -0.003527 ) (1575.634888 -3282.404297 -8.518094 ) (2048 -3754.736084 -8.510971 ) +4 1242 1243 (2048 -3754.734375 -8.508940 ) (1575.635498 -3282.403809 -8.516033 ) (1567.418701 -3290.611328 -24 ) (2048 -3771.123047 -23.959738 ) +4 1243 1244 (1533.478027 -3324.560059 -26.406082 ) (2048 -3839.082031 -26.406088 ) (2048 -3754.736084 -8.510971 ) (1575.634888 -3282.404297 -8.518094 ) +4 1244 1245 (1533.479004 -3324.561035 -8.209515 ) (2048 -3839.082031 -8.209511 ) (2048 -3696.480713 7.711603 ) (1604.775146 -3253.222900 7.715289 ) +4 1246 1247 (1731.479004 -3126.561035 24 ) (2048 -3443.082031 24 ) (2048 -3386.524170 12 ) (1759.757813 -3098.281982 12 ) +4 1248 1256 (1984 -3072 -128 ) (2048 -3072 -128 ) (2048 -3584 -128 ) (1984 -3584 -128 ) +4 1248 1250 (1984 -3072 -128 ) (1984 -3584 -128 ) (1984 -3584 -64 ) (1984 -3072 -64 ) +4 1248 1255 (1984 -3584 -128 ) (2048 -3584 -128 ) (2048 -3584 -64 ) (1984 -3584 -64 ) +4 1249 1252 (1472 -3263.080078 -128 ) (1472 -3584 -128 ) (1472 -3584 -64 ) (1472 -3263.080078 -64 ) +4 1249 1251 (1792.923828 -3584 -64 ) (1792.923828 -3584 -87.996429 ) (1533.482056 -3324.558105 -87.996384 ) (1533.482056 -3324.558105 -64 ) +4 1249 1250 (1792.923828 -3584 -87.996429 ) (1792.923828 -3584 -128 ) (1472 -3263.076172 -128 ) (1472 -3263.076172 -87.996368 ) +4 1249 1255 (1472 -3584 -128 ) (1792.920166 -3584 -128 ) (1792.920166 -3584 -64 ) (1472 -3584 -64 ) +5 1250 1253 (1472 -3072 -128 ) (1472 -3263.080078 -128 ) (1472 -3263.080078 -88 ) (1472 -3237.617676 -64 ) (1472 -3072 -64 ) +4 1250 1251 (1533.479126 -3324.561035 -88.002106 ) (1792.917969 -3584 -88.002121 ) (1818.382690 -3584 -64 ) (1546.207764 -3311.824951 -64 ) +5 1250 1255 (1792.920166 -3584 -128 ) (1984 -3584 -128 ) (1984 -3584 -64 ) (1818.382568 -3584 -64 ) (1792.920166 -3584 -88 ) +3 1251 1255 (1818.382568 -3584 -64 ) (1792.920166 -3584 -64 ) (1792.920166 -3584 -88 ) +4 1252 3649 (1024 -3584 -64 ) (1024 -3072 -64 ) (1024 -3072 -128 ) (1024 -3584 -128 ) +4 1252 1254 (1352.462158 -3143.537598 -87.995651 ) (1280.925049 -3072 -87.995224 ) (1280.925781 -3072 -64 ) (1352.462402 -3143.537354 -64 ) +4 1252 1253 (1472 -3263.076172 -87.996368 ) (1472 -3263.076172 -128 ) (1280.923828 -3072 -128 ) (1280.925049 -3072 -87.995224 ) +4 1252 1255 (1024 -3584 -128 ) (1472 -3584 -128 ) (1472 -3584 -64 ) (1024 -3584 -64 ) +4 1253 1254 (1280.917969 -3072 -88.002083 ) (1352.458862 -3143.541016 -88.002090 ) (1365.191162 -3130.808594 -64 ) (1306.382568 -3072 -64 ) +4 1255 3649 (1024 -4096 -128 ) (1024 -4096 -64 ) (1024 -3584 -64 ) (1024 -3584 -128 ) +4 1255 1347 (1024 -4096 -64 ) (1024 -4096 -128 ) (2048 -4096 -128 ) (2048 -4096 -64 ) +4 1255 1258 (1472 -4096 -128 ) (1024 -4096 -128 ) (1024 -3584 -128 ) (1472 -3584 -128 ) +4 1255 1257 (1984 -4096 -128 ) (1472 -4096 -128 ) (1472 -3584 -128 ) (1984 -3584 -128 ) +4 1255 1256 (2048 -4096 -128 ) (1984 -4096 -128 ) (1984 -3584 -128 ) (2048 -3584 -128 ) +4 1256 1347 (1984 -4096 -192 ) (2048 -4096 -192 ) (2048 -4096 -128 ) (1984 -4096 -128 ) +4 1256 1259 (2048 -3072 -192 ) (2048 -4096 -192 ) (1984 -4096 -192 ) (1984 -3072 -192 ) +4 1256 1257 (1984 -3584 -192 ) (1984 -4096 -192 ) (1984 -4096 -128 ) (1984 -3584 -128 ) +4 1257 1347 (1472 -4096 -192 ) (1984 -4096 -192 ) (1984 -4096 -128 ) (1472 -4096 -128 ) +4 1257 1259 (1984 -4096 -192 ) (1472 -4096 -192 ) (1472 -3584 -192 ) (1984 -3584 -192 ) +4 1257 1258 (1472 -3584 -192 ) (1472 -4096 -192 ) (1472 -4096 -128 ) (1472 -3584 -128 ) +4 1258 3649 (1024 -4096 -192 ) (1024 -4096 -128 ) (1024 -3584 -128 ) (1024 -3584 -192 ) +4 1258 1347 (1024 -4096 -128 ) (1024 -4096 -192 ) (1472 -4096 -192 ) (1472 -4096 -128 ) +4 1258 1259 (1472 -4096 -192 ) (1024 -4096 -192 ) (1024 -3584 -192 ) (1472 -3584 -192 ) +4 1259 3649 (1024 -4096 -1284 ) (1024 -4096 -192 ) (1024 -3072 -192 ) (1024 -3072 -1284 ) +4 1259 1347 (1024 -4096 -192 ) (1024 -4096 -1284 ) (2048 -4096 -1284 ) (2048 -4096 -192 ) +4 1260 1261 (4096 -4096 5542.669922 ) (4096 -4096 -1284 ) (4096 -5120 -1284 ) (4096 -5120 5542.669922 ) +4 1261 1278 (3072 -4096 288 ) (3072 -4096 128 ) (3072 -5120 128 ) (3072 -5120 288 ) +4 1261 1280 (3072 -4096 128 ) (3072 -4096 -1284 ) (3072 -5120 -1284 ) (3072 -5120 128 ) +4 1261 1263 (3072 -4096 432 ) (3072 -4096 288 ) (3072 -5120 288 ) (3072 -5120 432 ) +4 1261 1262 (3072 -4096 5542.669922 ) (3072 -4096 432 ) (3072 -5120 432 ) (3072 -5120 5542.669922 ) +4 1262 1281 (2048 -5120 432 ) (2048 -5120 5542.669922 ) (2048 -4096 5542.669922 ) (2048 -4096 432 ) +5 1262 1273 (2048 -4244.371582 432 ) (2048 -4161.244629 432 ) (2161.007813 -4096 432 ) (2176.258057 -4096 432 ) (2208.441406 -4151.741699 432 ) +3 1262 1272 (2194.737793 -4096 432 ) (2304.989502 -4096 432 ) (2222.299561 -4143.740723 432 ) +4 1262 1271 (2222.299561 -4143.740723 432 ) (2304.989502 -4096 432 ) (2353.012207 -4096 432 ) (2234.297119 -4164.521973 432 ) +4 1262 1265 (2048 -4272.051758 432 ) (2048 -4244.371582 432 ) (2208.441162 -4151.741699 432 ) (2220.437744 -4172.521484 432 ) +3 1262 1264 (2048 -4161.244629 432 ) (2048 -4096 432 ) (2161.007813 -4096 432 ) +5 1262 1263 (2048 -5120 432 ) (2048 -4272.051758 432 ) (2353.012207 -4096 432 ) (3072 -4096 432 ) (3072 -5120 432 ) +4 1263 1321 (2048 -4419.873047 304 ) (2048 -4438.350586 288 ) (2048 -4745.812500 288 ) (2048 -4745.812500 304 ) +4 1263 1312 (2048 -4737.862793 352 ) (2048 -4364.439941 352 ) (2048 -4419.873047 304 ) (2048 -4737.867676 304 ) +4 1263 1311 (2048 -4745.812500 352 ) (2048 -4737.862793 352 ) (2048 -4737.867676 304 ) (2048 -4745.812500 304 ) +4 1263 1309 (2048 -5120 288 ) (2048 -5120 352 ) (2048 -4745.812500 352 ) (2048 -4745.812500 288 ) +3 1263 1293 (2048 -4281.283203 432 ) (2048 -4272.051758 432 ) (2048 -4290.507324 416.019226 ) +4 1263 1289 (2048 -4308.988770 432 ) (2048 -4281.283203 432 ) (2048 -4290.507324 416.019226 ) (2048 -4308.989258 400.015533 ) +4 1263 1288 (2048 -4737.828613 432 ) (2048 -4706.194824 432 ) (2048 -4706.142578 352 ) (2048 -4737.828613 352 ) +4 1263 1287 (2048 -5120 352 ) (2048 -5120 432 ) (2048 -4737.828613 432 ) (2048 -4737.828613 352 ) +5 1263 1286 (2048 -4706.194824 432 ) (2048 -4308.988770 432 ) (2048 -4308.989258 400.015533 ) (2048 -4364.439941 352 ) (2048 -4706.142578 352 ) +5 1263 1278 (3072 -5120 288 ) (2048 -5120 288 ) (2048 -4438.350586 288 ) (2641.127686 -4096 288 ) (3072 -4096 288 ) +4 1263 1271 (2234.296875 -4164.521484 432 ) (2353.011719 -4096 432 ) (2385.038574 -4096 415.992615 ) (2242.302002 -4178.387207 415.992401 ) +4 1263 1270 (2242.303467 -4178.386230 415.992401 ) (2385.038574 -4096 415.992615 ) (2417.037109 -4096 400 ) (2250.300293 -4192.240234 399.998932 ) +4 1263 1268 (2641.121094 -4096 288 ) (2292.448242 -4297.252441 288 ) (2236.440430 -4200.240234 399.998901 ) (2417.037109 -4096 400 ) +4 1263 1266 (2292.448242 -4297.252441 288 ) (2048 -4438.347168 288 ) (2048 -4401.392578 320 ) (2276.445801 -4269.534180 320 ) +4 1263 1265 (2048 -4401.392578 320 ) (2048 -4272.051270 432 ) (2220.437500 -4172.520996 432 ) (2276.445801 -4269.534180 320 ) +3 1264 1303 (2048 -4096 379.752594 ) (2048 -4096 375.507233 ) (2048 -4105.808594 384 ) +4 1264 1302 (2048 -4096 400 ) (2048 -4096 379.752594 ) (2048 -4105.808594 384 ) (2048 -4124.287109 400 ) +4 1264 1300 (2048 -4161.244629 432 ) (2048 -4096 432 ) (2048 -4096 400 ) (2048 -4124.287109 400 ) +4 1264 1275 (2048 -4124.287109 400 ) (2048 -4105.808594 384 ) (2064.988525 -4096 384 ) (2096.993652 -4096 400 ) +4 1264 1273 (2161.003906 -4096 432 ) (2048 -4161.244141 432 ) (2048 -4124.287109 400 ) (2096.993652 -4096 400 ) +5 1265 1319 (2048 -4290.556152 352 ) (2048 -4309.030273 320 ) (2048 -4364.464355 320 ) (2048 -4364.464844 351.978516 ) (2048 -4364.439941 352 ) +3 1265 1312 (2048 -4364.464355 320 ) (2048 -4401.395508 320 ) (2048 -4364.464844 351.978516 ) +6 1265 1294 (2048 -4272.051758 432 ) (2048 -4244.371582 432 ) (2048 -4290.556152 352 ) (2048 -4308.989258 352 ) (2048 -4308.989258 384 ) (2048 -4290.507324 416.019226 ) +3 1265 1289 (2048 -4308.989258 384 ) (2048 -4308.989258 400.015533 ) (2048 -4290.507324 416.019226 ) +3 1265 1286 (2048 -4308.989258 352 ) (2048 -4364.439941 352 ) (2048 -4308.989258 400.015533 ) +4 1265 1276 (2048 -4290.560547 351.996277 ) (2048 -4262.847168 400 ) (2216.441162 -4165.598633 400 ) (2228.440918 -4186.383789 351.996277 ) +4 1265 1273 (2048 -4262.847168 400 ) (2048 -4244.373047 432 ) (2208.441895 -4151.742676 432 ) (2216.441162 -4165.598633 400 ) +4 1265 1268 (2236.439697 -4200.240234 399.997498 ) (2276.445313 -4269.534668 320 ) (2252.439453 -4227.954102 320 ) (2236.439697 -4200.240234 384.001282 ) +4 1265 1267 (2194.862305 -4224.227051 320 ) (2236.433594 -4200.226563 320 ) (2260.441650 -4241.811523 320 ) (2218.871338 -4265.812012 320 ) +4 1265 1266 (2260.441650 -4241.811523 320 ) (2276.448242 -4269.536621 320 ) (2048 -4401.395996 320 ) (2048 -4364.464355 320 ) +4 1266 1321 (2048 -4364.464355 288 ) (2048 -4438.350586 288 ) (2048 -4419.873047 304 ) (2048 -4364.464355 304 ) +4 1266 1312 (2048 -4419.873047 304 ) (2048 -4401.395508 320 ) (2048 -4364.464355 320 ) (2048 -4364.464355 304 ) +4 1266 1278 (2048 -4438.350586 288 ) (2048 -4364.464355 288 ) (2260.440918 -4241.811523 288 ) (2292.449951 -4297.255371 288 ) +4 1266 1268 (2260.440186 -4241.812012 320 ) (2276.445313 -4269.534668 320 ) (2292.447998 -4297.253418 288 ) (2260.439941 -4241.812500 288 ) +4 1266 1267 (2218.871826 -4265.812988 320 ) (2260.445313 -4241.810547 320 ) (2260.445313 -4241.810547 288 ) (2218.871826 -4265.812988 288 ) +4 1267 1268 (2252.439453 -4227.954102 320 ) (2260.440186 -4241.812012 320 ) (2260.439941 -4241.812500 288 ) (2260.438965 -4241.810547 288 ) +4 1268 1278 (2513.057373 -4096 288 ) (2641.127686 -4096 288 ) (2292.449951 -4297.255371 288 ) (2260.439941 -4241.810059 288 ) +4 1268 1270 (2250.300049 -4192.240234 400 ) (2417.037598 -4096 400 ) (2417.037842 -4096 384 ) (2250.300049 -4192.240234 384 ) +4 1268 1269 (2513.058594 -4096 288 ) (2274.300049 -4233.810059 288 ) (2250.302246 -4192.244141 383.990234 ) (2417.046387 -4096 383.990204 ) +4 1269 1279 (2258.296875 -4206.090332 288 ) (2448.980225 -4096 288 ) (2513.057373 -4096 288 ) (2274.300049 -4233.810059 288 ) +4 1269 1274 (2448.984375 -4096 288 ) (2258.297852 -4206.092285 288 ) (2250.300537 -4192.240234 319.991547 ) (2417.037354 -4096 319.948669 ) +4 1269 1271 (2417.039063 -4096 319.945618 ) (2250.300537 -4192.240234 319.988617 ) (2250.300049 -4192.240234 384 ) (2417.037842 -4096 384 ) +4 1270 1271 (2417.046875 -4096 383.990204 ) (2250.303223 -4192.245605 383.990234 ) (2242.304199 -4178.387695 415.991486 ) (2385.041748 -4096 415.991516 ) +4 1271 1274 (2336.990479 -4096 400 ) (2417.037354 -4096 319.948669 ) (2250.300537 -4192.240234 319.991547 ) (2230.299805 -4157.597168 400 ) +4 1271 1272 (2222.300293 -4143.741699 432 ) (2304.992188 -4096 432 ) (2336.990479 -4096 400 ) (2230.299805 -4157.597168 400 ) +3 1272 1274 (2336.984375 -4096 400 ) (2230.298096 -4157.594727 400 ) (2194.738037 -4096 400 ) +4 1273 1300 (2048 -4198.187500 432 ) (2048 -4161.244629 432 ) (2048 -4124.287109 400 ) (2048 -4235.134766 400 ) +4 1273 1294 (2048 -4244.371582 432 ) (2048 -4198.187500 432 ) (2048 -4235.134766 400 ) (2048 -4262.845215 400 ) +4 1273 1277 (2048 -4235.134766 400 ) (2048 -4216.651367 400 ) (2196.437988 -4130.951172 400 ) (2204.441895 -4144.813965 400 ) +4 1273 1276 (2216.440430 -4165.595215 400 ) (2048 -4262.843750 400 ) (2048 -4235.134766 400 ) (2204.441895 -4144.813965 400 ) +4 1273 1275 (2048 -4142.755859 400 ) (2048 -4124.285156 400 ) (2096.991699 -4096 400 ) (2128.984375 -4096 400 ) +3 1274 1279 (2194.738770 -4096 288 ) (2448.980225 -4096 288 ) (2258.296631 -4206.090332 288 ) +3 1275 1302 (2048 -4124.287109 400 ) (2048 -4105.808594 384 ) (2048 -4142.755859 400 ) +3 1276 1294 (2048 -4290.556152 352 ) (2048 -4262.845215 400 ) (2048 -4235.134766 400 ) +4 1276 1277 (2048 -4235.136719 400 ) (2204.442627 -4144.815918 400 ) (2212.442871 -4158.673340 383.997864 ) (2048 -4253.612793 383.998230 ) +3 1277 1307 (2048 -4253.608398 384 ) (2048 -4238.772461 396.849426 ) (2048 -4230.818359 393.866608 ) +4 1277 1301 (2048 -4238.772461 396.849426 ) (2048 -4235.134766 400 ) (2048 -4216.651367 400 ) (2048 -4230.818359 393.866608 ) +4 1278 1333 (2048 -5120 128 ) (2048 -5120 288 ) (2048 -4364.464355 288 ) (2048 -4364.464355 128 ) +4 1278 1279 (2512.996094 -4096 128 ) (2274.300293 -4233.810547 128 ) (2274.300293 -4233.810547 288 ) (2512.995605 -4096 288 ) +5 1278 1280 (3072 -5120 128 ) (2048 -5120 128 ) (2048 -4364.464355 128 ) (2512.995117 -4096 128 ) (3072 -4096 128 ) +3 1279 1280 (2194.737793 -4096 128 ) (2512.995117 -4096 128 ) (2274.300049 -4233.810059 128 ) +4 1280 1347 (2048 -5120 -1284 ) (2048 -5120 128 ) (2048 -4096 128 ) (2048 -4096 -1284 ) +4 1281 3937 (1024 -5120 432 ) (1024 -5120 5542.669922 ) (1024 -4096 5542.669922 ) (1024 -4096 432 ) +4 1281 1305 (1973.840088 -4204.060059 432 ) (1989.837524 -4231.767578 432 ) (1828.175537 -4325.102051 432 ) (1812.178101 -4297.394531 432 ) +4 1281 1304 (1780.171143 -4241.958984 432 ) (1941.814087 -4148.591797 432 ) (1973.840088 -4204.060059 432 ) (1812.178223 -4297.394531 432 ) +5 1281 1300 (1941.814087 -4148.591797 432 ) (2032.864380 -4096 432 ) (2048 -4096 432 ) (2048 -4198.187500 432 ) (1989.837524 -4231.767578 432 ) +4 1281 1299 (1024 -4789.388672 432 ) (1024 -4678.733398 432 ) (1766.318970 -4249.959961 432 ) (1814.321777 -4333.100586 432 ) +4 1281 1294 (1828.194824 -4325.090820 432 ) (2048 -4198.187500 432 ) (2048 -4272.026855 432 ) (1860.165527 -4380.522461 432 ) +4 1281 1293 (2048 -4272.026855 432 ) (2048 -4281.283203 432 ) (1850.327271 -4395.461426 432 ) (1846.319580 -4388.520020 432 ) +4 1281 1292 (1024 -4872.759277 432 ) (1024 -4789.388672 432 ) (1814.321777 -4333.100586 432 ) (1850.327271 -4395.461426 432 ) +4 1281 1291 (1850.326904 -4395.461914 432 ) (1864.176758 -4387.461914 432 ) (1876.170044 -4408.240723 432 ) (1862.320190 -4416.240723 432 ) +4 1281 1290 (1024 -4900.465332 432 ) (1024 -4872.759277 432 ) (1850.326904 -4395.461914 432 ) (1862.320190 -4416.240723 432 ) +4 1281 1289 (1864.176758 -4387.461914 432 ) (2048 -4281.283203 432 ) (2048 -4308.989258 432 ) (1876.170044 -4408.240723 432 ) +4 1281 1288 (1862.323120 -4416.238281 432 ) (1876.156616 -4408.248047 432 ) (2048 -4706.194824 432 ) (2048 -4737.828613 432 ) +5 1281 1287 (2048 -5120 432 ) (1024 -5120 432 ) (1024 -4900.465332 432 ) (1862.323120 -4416.238281 432 ) (2048 -4737.828613 432 ) +3 1281 1286 (1876.156616 -4408.248047 432 ) (2048 -4308.989258 432 ) (2048 -4706.194824 432 ) +5 1281 1285 (1024 -4678.733398 432 ) (1024 -4595.408691 432 ) (1888.994507 -4096 432 ) (1911.448975 -4096 432 ) (1941.814087 -4148.591797 432 ) +3 1281 1284 (1911.448975 -4096 432 ) (2032.864380 -4096 432 ) (1941.814087 -4148.591797 432 ) +4 1281 1283 (1024 -4595.408691 432 ) (1024 -4586.405273 432 ) (1873.012207 -4096 432 ) (1888.994507 -4096 432 ) +3 1281 1282 (1024 -4586.405273 432 ) (1024 -4096 432 ) (1873.012207 -4096 432 ) +4 1282 3937 (1024 -4586.405273 432 ) (1024 -4096 432 ) (1024 -4096 352 ) (1024 -4586.405273 352 ) +3 1282 1310 (1672.795166 -4096 352 ) (1873.012207 -4096 352 ) (1722.870483 -4182.724609 352 ) +4 1282 1309 (1024 -4586.405273 352 ) (1024 -4096 352 ) (1672.795166 -4096 352 ) (1722.870483 -4182.724609 352 ) +5 1282 1283 (1024 -4586.402344 352 ) (1846.420166 -4111.357422 352 ) (1873.007690 -4096 375.028870 ) (1873.007813 -4096 432 ) (1024 -4586.402344 432 ) +4 1283 3937 (1024 -4595.408691 432 ) (1024 -4586.405273 432 ) (1024 -4586.405273 352 ) (1024 -4595.408691 352 ) +4 1283 1318 (1781.757446 -4148.710449 352 ) (1846.421387 -4111.359375 352 ) (1850.412964 -4118.275391 352 ) (1785.742676 -4155.613281 352 ) +4 1283 1313 (1726.343994 -4180.718262 352 ) (1781.757446 -4148.710449 352 ) (1785.742676 -4155.613281 352 ) (1730.322876 -4187.610352 352 ) +4 1283 1311 (1722.870361 -4182.724609 352 ) (1726.343994 -4180.718262 352 ) (1730.322876 -4187.610352 352 ) (1726.849121 -4189.615723 352 ) +4 1283 1309 (1024 -4595.408691 352 ) (1024 -4586.405273 352 ) (1722.870361 -4182.724609 352 ) (1726.849121 -4189.615723 352 ) +4 1283 1297 (1730.320068 -4187.612305 352 ) (1744.171631 -4179.615234 352 ) (1744.171509 -4179.615234 360.002960 ) (1730.319946 -4187.612305 360 ) +4 1283 1296 (1024 -4595.410156 352 ) (1730.320068 -4187.612305 352 ) (1730.319946 -4187.612305 360 ) (1024 -4595.410156 359.842285 ) +4 1283 1295 (1744.171631 -4179.615234 352 ) (1850.413330 -4118.275879 352 ) (1859.683838 -4112.923340 360.028748 ) (1744.171509 -4179.615234 360.002960 ) +5 1283 1285 (1859.683838 -4112.923340 360.028748 ) (1888.995361 -4096 385.414276 ) (1888.994385 -4096 432 ) (1024 -4595.409180 432 ) (1024 -4595.410156 359.842285 ) +4 1284 1300 (2032.867188 -4096 432 ) (1941.814819 -4148.593262 432 ) (1952.284058 -4124.077148 416.006134 ) (2000.893433 -4096 416.006409 ) +3 1284 1298 (1952.284058 -4124.077148 416.006134 ) (1964.274048 -4096 397.689117 ) (2000.893433 -4096 416.006409 ) +4 1284 1285 (1952.284668 -4124.063965 416 ) (1941.810791 -4148.590820 432 ) (1911.445679 -4096 432 ) (1936.081177 -4096 415.998962 ) +3 1285 3937 (1024 -4678.733398 432 ) (1024 -4595.408691 432 ) (1024 -4595.408691 359.841003 ) +4 1285 1304 (1941.814819 -4148.593262 432 ) (1780.171997 -4241.960449 432 ) (1772.175537 -4228.110352 416.006134 ) (1952.283936 -4124.077637 416.006470 ) +4 1285 1299 (1766.319946 -4249.961426 432 ) (1024 -4678.736328 432 ) (1024 -4660.265625 416.004700 ) (1758.323364 -4236.111328 416.006104 ) +4 1285 1297 (1730.318848 -4187.610352 359.996429 ) (1744.170410 -4179.613281 360 ) (1764.170044 -4214.250000 399.998932 ) (1750.320190 -4222.250000 400 ) +4 1285 1296 (1024 -4660.265625 416.004700 ) (1024 -4595.407227 359.838745 ) (1730.318848 -4187.610352 359.996429 ) (1758.323730 -4236.111328 416.006104 ) +5 1285 1295 (1744.170410 -4179.613281 360 ) (1859.676025 -4112.925293 360.025299 ) (1952.288208 -4124.067383 416 ) (1952.283936 -4124.077637 416.006470 ) (1772.173584 -4228.111328 416.006134 ) +4 1286 1319 (1917.734985 -4384.232422 352 ) (2048 -4308.989258 352 ) (2048 -4364.464355 352 ) (1941.741455 -4425.812988 352 ) +4 1286 1315 (1876.179321 -4408.235352 352 ) (1917.734985 -4384.232422 352 ) (1925.731812 -4398.083496 352 ) (1884.170044 -4422.089844 352 ) +4 1286 1314 (1925.731812 -4398.083496 352 ) (1941.741455 -4425.812988 352 ) (1900.162598 -4449.818359 352 ) (1884.170044 -4422.089844 352 ) +3 1286 1312 (2048 -4364.464355 352 ) (2048 -4706.142578 352 ) (1900.162598 -4449.818359 352 ) +4 1286 1294 (2048 -4308.990234 352 ) (1876.179688 -4408.235840 352 ) (1876.169922 -4408.239746 384 ) (2048 -4308.988770 384 ) +4 1286 1289 (1876.169922 -4408.239746 384 ) (1876.155273 -4408.246094 432 ) (2048 -4308.986328 432 ) (2048 -4308.988770 384 ) +5 1286 1288 (1876.154663 -4408.249023 432 ) (1876.168335 -4408.241211 384 ) (1884.168335 -4422.090820 352 ) (2048 -4706.146484 352 ) (2048 -4706.200195 432 ) +4 1287 3937 (1024 -5120 352 ) (1024 -5120 432 ) (1024 -4900.465332 432 ) (1024 -4900.464844 352 ) +4 1287 1311 (1858.858154 -4418.240234 352 ) (1862.323242 -4416.238770 352 ) (2048 -4737.828613 352 ) (2048 -4745.812500 352 ) +5 1287 1309 (1024 -5120 352 ) (1024 -4900.464844 352 ) (1858.858154 -4418.240234 352 ) (2048 -4745.812500 352 ) (2048 -5120 352 ) +4 1287 1292 (1862.323730 -4416.239258 352 ) (1024 -4900.466309 352 ) (1024 -4900.464355 384 ) (1862.322998 -4416.238281 384 ) +4 1287 1290 (1024 -4900.464355 384 ) (1024 -4900.460938 432 ) (1862.322021 -4416.236328 432 ) (1862.322998 -4416.238281 384 ) +5 1287 1288 (2048 -4737.828125 352 ) (1870.319580 -4430.089844 352 ) (1862.323364 -4416.240723 383.995636 ) (1862.323364 -4416.240723 432 ) (2048 -4737.830566 432 ) +4 1288 1314 (1884.169922 -4422.089844 352 ) (1900.162476 -4449.818359 352 ) (1886.324097 -4457.807617 352 ) (1870.320313 -4430.089355 352 ) +4 1288 1312 (1900.162476 -4449.818359 352 ) (2048 -4706.142578 352 ) (2048 -4737.828613 352 ) (1886.324097 -4457.807617 352 ) +4 1288 1291 (1862.322632 -4416.237793 400 ) (1862.322021 -4416.236328 432 ) (1876.155273 -4408.246094 432 ) (1876.165039 -4408.241699 400.001251 ) +4 1289 1294 (2048 -4308.983887 384 ) (1876.167847 -4408.236816 384 ) (1868.179077 -4394.395996 415.981598 ) (2048 -4290.528809 415.982300 ) +4 1289 1293 (1868.179077 -4394.395996 415.981598 ) (1864.177734 -4387.463867 432 ) (2048 -4281.285645 432 ) (2048 -4290.528809 415.982300 ) +4 1289 1291 (1864.177979 -4387.460449 432 ) (1868.179688 -4394.393555 415.983521 ) (1876.171875 -4408.240234 399.998993 ) (1876.171875 -4408.240234 432 ) +3 1290 3937 (1024 -4900.465332 432 ) (1024 -4872.759277 432 ) (1024 -4900.464844 384 ) +4 1290 1292 (1862.317871 -4416.236816 384 ) (1024 -4900.460938 384 ) (1024 -4872.761719 432 ) (1850.327881 -4395.463867 432 ) +4 1290 1291 (1862.320313 -4416.238281 432 ) (1862.320313 -4416.238281 400.001495 ) (1854.328613 -4402.392578 415.984802 ) (1850.327148 -4395.459961 432 ) +4 1291 1293 (1854.329102 -4402.395996 415.981598 ) (1850.327881 -4395.463867 432 ) (1864.177734 -4387.463867 432 ) (1868.179077 -4394.395996 415.981598 ) +5 1292 3937 (1024 -4872.759277 432 ) (1024 -4789.388672 432 ) (1024 -4881.757324 352 ) (1024 -4900.464844 352 ) (1024 -4900.464844 384 ) +4 1292 1311 (1850.853516 -4404.376953 352 ) (1854.319580 -4402.375977 352 ) (1862.323364 -4416.238281 352 ) (1858.857910 -4418.239746 352 ) +4 1292 1309 (1024 -4900.464844 352 ) (1024 -4881.757324 352 ) (1850.853516 -4404.376953 352 ) (1858.857910 -4418.239746 352 ) +4 1292 1299 (1854.319946 -4402.376953 352 ) (1024 -4881.757813 352 ) (1024 -4789.386719 432 ) (1814.321655 -4333.100098 432 ) +3 1292 1293 (1850.327393 -4395.460449 432 ) (1854.329956 -4402.392578 415.984192 ) (1846.320313 -4388.520020 432 ) +4 1293 1294 (2048 -4290.533203 415.980469 ) (1868.174438 -4394.398438 415.980469 ) (1860.164551 -4380.520996 432 ) (2048 -4272.024414 432 ) +4 1294 1319 (1909.737793 -4370.380371 352 ) (2048 -4290.555664 352 ) (2048 -4308.989258 352 ) (1917.734863 -4384.231934 352 ) +4 1294 1315 (1868.183350 -4394.371582 352 ) (1909.737793 -4370.380371 352 ) (1917.734863 -4384.231934 352 ) (1876.179077 -4408.234863 352 ) +5 1294 1307 (1852.188354 -4366.660156 384 ) (1844.190308 -4352.803711 400 ) (2042.786987 -4238.145020 400 ) (2048 -4238.772949 396.849548 ) (2048 -4253.609863 384 ) +3 1294 1306 (2016.312256 -4234.956055 416 ) (2042.786987 -4238.145020 400 ) (2005.837036 -4259.478027 400 ) +5 1294 1305 (1844.190308 -4352.803711 400 ) (1828.194702 -4325.090820 432 ) (1989.837402 -4231.767090 432 ) (2016.312256 -4234.956055 416 ) (2005.837036 -4259.478027 400 ) +3 1294 1301 (2048 -4235.135254 400 ) (2048 -4238.772949 396.849548 ) (2042.786987 -4238.145020 400 ) +4 1294 1300 (1989.837402 -4231.767090 432 ) (2048 -4198.187500 432 ) (2048 -4235.135254 400 ) (2042.786987 -4238.145020 400 ) +4 1295 1320 (1785.742432 -4155.612793 352 ) (1850.410156 -4118.276855 352 ) (1862.394531 -4139.033691 352 ) (1797.733887 -4176.382813 352 ) +4 1295 1313 (1744.171143 -4179.614258 352 ) (1785.742432 -4155.612793 352 ) (1797.733887 -4176.382813 352 ) (1756.167969 -4200.391602 352 ) +4 1295 1304 (1756.167725 -4200.391113 352 ) (1862.394287 -4139.033203 352 ) (1952.300537 -4124.066406 416.008362 ) (1772.173096 -4228.110352 416.008392 ) +5 1295 1297 (1756.168945 -4200.395508 352 ) (1764.169067 -4214.250488 383.992126 ) (1764.168823 -4214.250488 400 ) (1744.169556 -4179.615234 360.003052 ) (1744.169678 -4179.615234 352 ) +4 1296 3937 (1024 -4660.268066 416.009033 ) (1024 -4595.408691 359.841003 ) (1024 -4595.408691 352 ) (1024 -4623.301758 352 ) +4 1296 1311 (1726.849121 -4189.615234 352 ) (1730.319336 -4187.611816 352 ) (1742.318115 -4208.391602 352 ) (1738.847900 -4210.395996 352 ) +4 1296 1309 (1024 -4623.301758 352 ) (1024 -4595.408691 352 ) (1726.849121 -4189.615234 352 ) (1738.847900 -4210.395996 352 ) +4 1296 1299 (1024 -4623.300781 352 ) (1742.317871 -4208.391113 352 ) (1758.323120 -4236.110352 416.008392 ) (1024 -4660.265625 416.008453 ) +5 1296 1297 (1750.319458 -4222.250488 384 ) (1742.317261 -4208.391602 352 ) (1730.318970 -4187.611816 352 ) (1730.318970 -4187.611816 360 ) (1750.319580 -4222.250488 400 ) +4 1297 1313 (1730.319336 -4187.611816 352 ) (1744.171143 -4179.614258 352 ) (1756.167969 -4200.391602 352 ) (1742.318115 -4208.391602 352 ) +3 1298 1302 (1975.369873 -4096 390.482178 ) (1984.885620 -4096 400 ) (1966.760864 -4106.469238 400 ) +5 1298 1300 (1984.885620 -4096 400 ) (2000.890625 -4096 416.008362 ) (1952.300537 -4124.066406 416.008362 ) (1952.288696 -4124.068359 416 ) (1966.760864 -4106.469238 400 ) +5 1299 3937 (1024 -4789.388672 432 ) (1024 -4678.733398 432 ) (1024 -4660.268066 416.009033 ) (1024 -4623.301758 352 ) (1024 -4881.757324 352 ) +4 1299 1311 (1738.847778 -4210.395996 352 ) (1742.318359 -4208.391113 352 ) (1854.319580 -4402.375977 352 ) (1850.853516 -4404.376953 352 ) +4 1299 1309 (1024 -4881.757324 352 ) (1024 -4623.301758 352 ) (1738.847778 -4210.395996 352 ) (1850.853516 -4404.376953 352 ) +4 1300 1306 (2042.790771 -4238.143066 400 ) (2016.313477 -4234.954102 416.001434 ) (2000.311768 -4207.239746 416.001282 ) (2018.788330 -4196.572266 400 ) +4 1300 1305 (2016.313477 -4234.954102 416.001434 ) (1989.840820 -4231.765625 432 ) (1973.843018 -4204.058594 432 ) (1984.315430 -4179.535156 416.001160 ) +5 1300 1304 (1973.843018 -4204.058594 432 ) (1941.816406 -4148.590332 432 ) (1952.285278 -4124.075195 416.006714 ) (1952.290527 -4124.068848 416 ) (1984.315430 -4179.535156 416.001160 ) +5 1300 1302 (2002.783936 -4168.861328 400 ) (1966.761719 -4106.472656 400 ) (1984.892578 -4096 400 ) (2048 -4096 400 ) (2048 -4142.755859 400 ) +4 1300 1301 (2048 -4235.138672 400 ) (2042.789063 -4238.148438 400 ) (2034.782837 -4224.281738 400 ) (2048 -4216.650879 400 ) +4 1301 1307 (2048 -4238.770508 396.851868 ) (2042.790771 -4238.143066 400 ) (2034.786377 -4224.279785 400 ) (2048 -4230.814453 393.868286 ) +4 1302 1303 (2005.252930 -4130.489746 384.001343 ) (2007.478027 -4096 369.622009 ) (2048 -4096 379.753296 ) (2048 -4105.810059 384.001587 ) +4 1304 1320 (1797.733643 -4176.382324 352 ) (1862.394531 -4139.033203 352 ) (1878.406128 -4166.765137 352 ) (1813.737183 -4204.101563 352 ) +4 1304 1317 (1756.170654 -4200.389648 352 ) (1797.733643 -4176.382324 352 ) (1813.737183 -4204.101563 352 ) (1772.169800 -4228.100098 352 ) +4 1304 1308 (1796.177490 -4269.681641 400 ) (1788.178589 -4255.827637 384.005463 ) (1931.369385 -4173.154785 384.004456 ) (1957.838745 -4176.346191 400 ) +5 1304 1305 (1984.319580 -4179.538574 416.002441 ) (1973.847778 -4204.060547 432 ) (1812.180908 -4297.399414 432 ) (1796.177490 -4269.681641 400 ) (1957.838745 -4176.346191 400 ) +4 1305 1308 (1796.174683 -4269.676758 400 ) (1957.836304 -4176.341797 400 ) (1965.834229 -4190.193848 400 ) (1804.172119 -4283.528320 400 ) +4 1305 1307 (1997.832886 -4245.614746 400 ) (2005.836914 -4259.477539 400 ) (1844.175049 -4352.813477 400 ) (1836.170898 -4338.950195 400 ) +4 1305 1306 (2005.835938 -4259.476563 400 ) (1981.834595 -4217.907715 400 ) (2000.309814 -4207.241211 416 ) (2016.311523 -4234.955566 416 ) +4 1306 1307 (2034.777832 -4224.284668 400 ) (2042.781860 -4238.147461 400 ) (2005.836914 -4259.477539 400 ) (1997.832886 -4245.614746 400 ) +4 1309 3937 (1024 -5120 288 ) (1024 -5120 352 ) (1024 -4096 352 ) (1024 -4096 288 ) +4 1309 1339 (1024 -4955.669434 288 ) (1024 -4604.631836 288 ) (1730.845093 -4196.535645 288 ) (1882.859741 -4459.808105 288 ) +4 1309 1334 (1024 -4604.631836 288 ) (1024 -4581.586426 288 ) (1720.847290 -4179.220703 288 ) (1730.845093 -4196.535645 288 ) +5 1309 1333 (1024 -5120 288 ) (1024 -4955.669434 288 ) (1882.859741 -4459.808105 288 ) (2048 -4745.812500 288 ) (2048 -5120 288 ) +4 1309 1331 (1024 -4581.586426 288 ) (1024 -4096 288 ) (1672.795288 -4096 288 ) (1720.847290 -4179.220703 288 ) +4 1309 1330 (1818.849243 -4348.950684 288 ) (1786.849121 -4293.530273 288 ) (1786.849121 -4293.530273 296 ) (1818.849121 -4348.950684 296 ) +4 1309 1329 (1866.853149 -4432.087891 288 ) (1818.849243 -4348.950684 288 ) (1818.849121 -4348.950684 304 ) (1862.853149 -4425.161133 304 ) +4 1309 1328 (1786.849121 -4293.530273 288 ) (1738.844971 -4210.392578 288 ) (1742.844971 -4217.320313 304 ) (1786.848999 -4293.530273 304 ) +4 1309 1327 (1738.844971 -4210.392578 288 ) (1722.847168 -4182.686035 288 ) (1726.848022 -4189.615234 304 ) (1742.844971 -4217.320313 304 ) +4 1309 1325 (1882.858887 -4459.808105 288 ) (1866.853149 -4432.087891 288 ) (1862.853149 -4425.161133 304 ) (1878.858032 -4452.879883 304 ) +4 1309 1323 (1722.847168 -4182.686035 288 ) (1722.845215 -4182.682617 288 ) (1722.844971 -4182.682617 304 ) (1726.848022 -4189.615234 304 ) +3 1309 1322 (1882.858887 -4459.808105 288 ) (1878.858032 -4452.879883 304 ) (1882.858643 -4459.808594 304 ) +4 1309 1321 (2048 -4745.813965 288 ) (1882.858887 -4459.808105 288 ) (1882.858643 -4459.808594 304 ) (2048 -4745.814941 304 ) +4 1309 1311 (1722.844971 -4182.682617 304 ) (1722.844116 -4182.683594 352 ) (2048 -4745.817383 352 ) (2048 -4745.814941 304 ) +4 1309 1310 (1722.845215 -4182.682617 288 ) (1672.794312 -4096 288 ) (1672.792725 -4096 352 ) (1722.844116 -4182.683594 352 ) +4 1310 1338 (1864.975464 -4096 288 ) (1872.984619 -4096 288 ) (1864.879517 -4100.679199 288 ) (1862.876587 -4097.211914 288 ) +4 1310 1337 (1809.458008 -4132.676758 288 ) (1726.318359 -4180.677246 288 ) (1724.319092 -4177.215820 288 ) (1807.456421 -4129.211914 288 ) +4 1310 1335 (1864.879517 -4100.679199 288 ) (1809.458008 -4132.676758 288 ) (1807.456421 -4129.211914 288 ) (1862.876587 -4097.211914 288 ) +4 1310 1334 (1726.318359 -4180.677246 288 ) (1722.845947 -4182.682129 288 ) (1720.847290 -4179.220703 288 ) (1724.319092 -4177.215820 288 ) +3 1310 1331 (1672.795288 -4096 288 ) (1864.975464 -4096 288 ) (1720.847290 -4179.220703 288 ) +4 1310 1323 (1722.845703 -4182.680664 304 ) (1722.845703 -4182.680664 288 ) (1781.739014 -4148.678711 288 ) (1781.739014 -4148.678711 304 ) +4 1310 1318 (1846.410645 -4111.341309 352 ) (1781.739136 -4148.678711 352 ) (1781.739136 -4148.678711 320 ) (1809.457520 -4132.675781 320 ) +4 1310 1313 (1726.317017 -4180.676758 304 ) (1781.739136 -4148.678711 304 ) (1781.739136 -4148.678711 352 ) (1726.319214 -4180.675293 352 ) +4 1310 1311 (1722.845703 -4182.680664 352 ) (1722.845703 -4182.680664 304 ) (1726.317017 -4180.676758 304 ) (1726.319214 -4180.675293 352 ) +4 1311 1329 (1862.860840 -4425.156250 304 ) (1818.856934 -4348.946289 304 ) (1822.313843 -4346.953613 304 ) (1866.312012 -4423.163574 304 ) +4 1311 1328 (1786.856812 -4293.525391 304 ) (1742.852783 -4217.315430 304 ) (1746.315796 -4215.316406 304 ) (1790.317017 -4291.531738 304 ) +4 1311 1327 (1742.852783 -4217.315430 304 ) (1726.855957 -4189.610840 304 ) (1730.320068 -4187.609863 304 ) (1746.315796 -4215.316406 304 ) +4 1311 1325 (1878.865723 -4452.875000 304 ) (1862.860840 -4425.156250 304 ) (1866.312012 -4423.163574 304 ) (1882.315063 -4450.882813 304 ) +4 1311 1323 (1726.855957 -4189.610840 304 ) (1722.851563 -4182.675781 304 ) (1726.316406 -4180.675293 304 ) (1730.320068 -4187.609863 304 ) +4 1311 1322 (1882.866699 -4459.804199 304 ) (1878.865723 -4452.875000 304 ) (1882.315063 -4450.882813 304 ) (1886.315918 -4457.812500 304 ) +4 1311 1321 (2048 -4745.796875 304 ) (1882.866699 -4459.804199 304 ) (1886.315918 -4457.812500 304 ) (2048 -4737.867676 304 ) +4 1311 1316 (1818.316650 -4340.031738 304 ) (1794.317139 -4298.461914 304 ) (1794.319702 -4298.460449 352 ) (1818.319214 -4340.030273 352 ) +4 1311 1314 (1886.314941 -4457.812988 304 ) (1882.314453 -4450.883789 304 ) (1870.315063 -4430.093262 352 ) (1886.317749 -4457.811523 352 ) +4 1311 1313 (1730.319580 -4187.610352 304 ) (1726.318359 -4180.679688 304 ) (1726.320557 -4180.678223 352 ) (1742.319702 -4208.390625 352 ) +4 1311 1312 (2048 -4737.871094 304 ) (1886.314941 -4457.812988 304 ) (1886.317749 -4457.811523 352 ) (2048 -4737.863281 352 ) +3 1312 1321 (2048 -4364.464355 304 ) (2048 -4737.867676 304 ) (1886.315918 -4457.812500 304 ) +4 1312 1319 (1941.741943 -4425.813965 320 ) (1941.741943 -4425.813965 352 ) (2048 -4364.465820 352 ) (2048 -4364.466309 320 ) +4 1312 1314 (1941.741943 -4425.813965 304 ) (1886.318604 -4457.812500 304 ) (1886.320801 -4457.811035 352 ) (1941.741943 -4425.813965 352 ) +4 1313 1323 (1726.316406 -4180.675293 304 ) (1781.738281 -4148.677734 304 ) (1785.735474 -4155.601074 304 ) (1730.320068 -4187.609863 304 ) +4 1313 1320 (1785.741821 -4155.613281 352 ) (1797.732910 -4176.382813 352 ) (1789.734375 -4162.528809 320 ) (1785.741699 -4155.613281 320 ) +4 1313 1318 (1781.739014 -4148.680176 320 ) (1781.738892 -4148.680176 352 ) (1785.741821 -4155.613281 352 ) (1785.741699 -4155.613281 320 ) +4 1313 1317 (1785.736328 -4155.601563 304 ) (1797.734253 -4176.382813 352 ) (1756.170288 -4200.390625 352 ) (1744.170166 -4179.610352 304 ) +4 1314 1322 (1937.734375 -4418.872070 304 ) (1941.741211 -4425.812500 304 ) (1886.315918 -4457.812500 304 ) (1882.315430 -4450.883301 304 ) +4 1314 1319 (1941.738281 -4425.808594 352 ) (1941.738281 -4425.808594 320 ) (1933.733032 -4411.942871 320 ) (1925.731445 -4398.083984 352 ) +4 1314 1315 (1925.729492 -4398.085449 352 ) (1937.731812 -4418.874023 304 ) (1896.170410 -4442.880371 304 ) (1884.170532 -4422.090332 352 ) +4 1315 1324 (1921.737427 -4391.164551 304 ) (1937.734375 -4418.872070 304 ) (1896.170288 -4442.880371 304 ) (1880.167480 -4415.164551 304 ) +4 1315 1319 (1917.737183 -4384.237305 320 ) (1909.737549 -4370.381348 352 ) (1925.731445 -4398.083984 352 ) (1933.733032 -4411.942871 320 ) +4 1317 1326 (1785.735474 -4155.601074 304 ) (1801.738037 -4183.318359 304 ) (1760.167725 -4207.318848 304 ) (1744.169800 -4179.609863 304 ) +4 1317 1320 (1789.734375 -4162.528809 320 ) (1797.732910 -4176.382813 352 ) (1813.736328 -4204.101563 352 ) (1805.737183 -4190.246582 320 ) +4 1318 1320 (1785.742188 -4155.613281 352 ) (1785.742188 -4155.613281 320 ) (1813.460205 -4139.610352 320 ) (1850.413086 -4118.275391 352 ) +3 1321 1333 (2048 -4364.464355 288 ) (2048 -4745.812500 288 ) (1882.859619 -4459.808105 288 ) +4 1321 1322 (1941.740967 -4425.812012 288 ) (1882.863281 -4459.806641 288 ) (1882.863281 -4459.806641 304 ) (1941.741699 -4425.813477 304 ) +4 1322 1325 (1886.318359 -4457.807129 288 ) (1882.858765 -4459.805664 288 ) (1878.859375 -4452.876953 304 ) (1882.319214 -4450.878418 304 ) +4 1322 1324 (1941.733398 -4425.798828 288 ) (1900.168457 -4449.807129 288 ) (1896.169189 -4442.878418 304 ) (1937.733398 -4418.870605 304 ) +4 1323 1327 (1730.319580 -4187.609375 304 ) (1726.843750 -4189.617188 304 ) (1722.846436 -4182.686035 288 ) (1726.319702 -4180.679688 288 ) +5 1323 1326 (1745.872925 -4169.385742 288 ) (1781.738892 -4148.678711 288.016541 ) (1785.735352 -4155.600586 304 ) (1744.169678 -4179.609375 304 ) (1740.169800 -4172.679688 288 ) +4 1325 1339 (1886.320068 -4457.810059 288 ) (1882.859619 -4459.808105 288 ) (1866.853882 -4432.087891 288 ) (1870.316040 -4430.088867 288 ) +4 1325 1329 (1870.315308 -4430.087891 288 ) (1866.851807 -4432.087402 288 ) (1862.851563 -4425.160156 304 ) (1866.316528 -4423.159668 304 ) +4 1327 1339 (1738.845825 -4210.392090 288 ) (1730.844971 -4196.535645 288 ) (1734.317139 -4194.531250 288 ) (1742.317383 -4208.387695 288 ) +4 1327 1334 (1730.844971 -4196.535645 288 ) (1722.845947 -4182.682129 288 ) (1726.318237 -4180.677246 288 ) (1734.317139 -4194.531250 288 ) +4 1327 1328 (1746.318970 -4215.320801 304 ) (1742.848633 -4217.324219 304 ) (1738.848877 -4210.396973 288 ) (1742.320190 -4208.392578 288 ) +4 1328 1339 (1786.849976 -4293.529785 288 ) (1738.845825 -4210.392090 288 ) (1742.317383 -4208.387695 288 ) (1790.320557 -4291.529297 288 ) +4 1328 1330 (1786.849854 -4293.529297 296 ) (1786.849854 -4293.529297 288 ) (1790.320435 -4291.528809 288 ) (1790.320068 -4291.529297 296 ) +4 1329 1339 (1866.853882 -4432.087891 288 ) (1818.849976 -4348.950195 288 ) (1822.318237 -4346.951172 288 ) (1870.316040 -4430.088867 288 ) +4 1329 1330 (1818.851563 -4348.949219 288 ) (1818.851563 -4348.949219 296 ) (1822.318604 -4346.951172 296 ) (1822.318237 -4346.951172 288 ) +4 1330 1339 (1818.849976 -4348.950195 288 ) (1786.849976 -4293.529785 288 ) (1790.320679 -4291.529297 288 ) (1822.318970 -4346.950684 288 ) +4 1331 3937 (1024 -4581.586426 288 ) (1024 -4096 288 ) (1024 -4096 128 ) (1024 -4581.586426 128 ) +3 1331 1347 (1024 -4581.586426 128 ) (1024 -4096 128 ) (1864.974854 -4096 128 ) +4 1331 1345 (1724.318359 -4177.214844 128 ) (1807.455688 -4129.210938 128 ) (1807.455933 -4129.210938 160 ) (1724.318481 -4177.215332 160 ) +4 1331 1344 (1862.875854 -4097.210938 128 ) (1864.972656 -4096 128 ) (1864.973267 -4096 160 ) (1862.875977 -4097.210938 160 ) +4 1331 1343 (1807.455688 -4129.210938 128 ) (1862.875854 -4097.210938 128 ) (1862.875977 -4097.210938 160 ) (1807.455933 -4129.210938 160 ) +4 1331 1342 (1807.459473 -4129.208984 168 ) (1724.318481 -4177.215332 168 ) (1724.318481 -4177.215332 160 ) (1807.459473 -4129.208984 160 ) +4 1331 1341 (1864.973267 -4096 160 ) (1864.973389 -4096 168 ) (1862.879517 -4097.208984 168 ) (1862.879517 -4097.208984 160 ) +4 1331 1340 (1024 -4581.583984 128 ) (1724.318359 -4177.214844 128 ) (1724.318481 -4177.215332 168 ) (1024 -4581.584473 168 ) +4 1331 1338 (1864.973389 -4096 168 ) (1864.975830 -4096 288 ) (1862.876709 -4097.211914 288 ) (1862.875977 -4097.210938 168 ) +4 1331 1337 (1807.456543 -4129.211914 288 ) (1724.319092 -4177.216309 288 ) (1724.318481 -4177.215332 168 ) (1807.455933 -4129.210938 168 ) +4 1331 1335 (1862.876709 -4097.211914 288 ) (1807.456543 -4129.211914 288 ) (1807.455933 -4129.210938 168 ) (1862.875977 -4097.210938 168 ) +4 1331 1334 (1724.319092 -4177.216309 288 ) (1024 -4581.586426 288 ) (1024 -4581.584473 168 ) (1724.318481 -4177.215332 168 ) +3 1332 1347 (1899.138672 -4096 128 ) (1904.978516 -4096 128 ) (1900.599121 -4098.528320 128 ) +4 1333 3937 (1024 -5120 128 ) (1024 -5120 288 ) (1024 -4955.669434 288 ) (1024 -4955.669434 128 ) +4 1333 1347 (2048 -5120 128 ) (1024 -5120 128 ) (1024 -4955.669434 128 ) (2048 -4364.464355 128 ) +4 1333 1346 (1886.320801 -4457.811035 128 ) (1024 -4955.671387 128 ) (1024 -4955.670898 168 ) (1886.320801 -4457.811035 168 ) +4 1333 1339 (1024 -4955.670898 168 ) (1024 -4955.669922 288 ) (1886.320313 -4457.810547 288 ) (1886.320679 -4457.811035 168 ) +4 1334 3937 (1024 -4604.631836 288 ) (1024 -4581.586426 288 ) (1024 -4581.586426 168 ) (1024 -4604.631836 168 ) +4 1334 1340 (1024 -4604.631836 168 ) (1024 -4581.582031 168 ) (1724.317139 -4177.212891 168 ) (1734.319946 -4194.529785 168 ) +4 1334 1339 (1024 -4604.632813 168 ) (1734.320068 -4194.529785 168 ) (1734.319824 -4194.529785 288 ) (1024 -4604.631836 288 ) +4 1334 1337 (1726.319824 -4180.676270 168 ) (1724.320557 -4177.215332 168 ) (1724.320557 -4177.215332 288 ) (1726.319824 -4180.676270 288 ) +4 1335 1338 (1864.879639 -4100.679199 168 ) (1862.876709 -4097.211914 168 ) (1862.876709 -4097.211914 288 ) (1864.879639 -4100.679199 288 ) +4 1335 1337 (1807.457031 -4129.214844 288 ) (1807.457031 -4129.214844 168 ) (1809.457520 -4132.677246 168 ) (1809.457520 -4132.677246 288 ) +5 1335 1336 (1809.455078 -4132.676758 224 ) (1809.455078 -4132.676758 168 ) (1864.880371 -4100.677246 168 ) (1864.880371 -4100.677246 224 ) (1837.168091 -4116.676758 232 ) +4 1337 1342 (1724.317139 -4177.212891 168 ) (1807.454590 -4129.208496 168 ) (1809.458008 -4132.676758 168 ) (1726.318359 -4180.677246 168 ) +4 1338 1341 (1862.874634 -4097.208496 168 ) (1864.967407 -4096 168 ) (1872.984863 -4096 168 ) (1864.879517 -4100.679199 168 ) +4 1339 3937 (1024 -4955.669434 288 ) (1024 -4604.631836 288 ) (1024 -4604.631836 168 ) (1024 -4955.669434 168 ) +4 1339 1346 (1886.320801 -4457.811035 168 ) (1024 -4955.671387 168 ) (1024 -4604.631836 168 ) (1734.320068 -4194.529785 168 ) +4 1340 3937 (1024 -4581.586426 168 ) (1024 -4581.586426 128 ) (1024 -4604.631836 128 ) (1024 -4604.631836 168 ) +4 1340 1347 (1024 -4604.631836 128 ) (1024 -4581.586426 128 ) (1724.318970 -4177.215820 128 ) (1734.319824 -4194.529297 128 ) +4 1340 1346 (1024 -4604.632813 128 ) (1734.320557 -4194.530762 128 ) (1734.320557 -4194.530762 168 ) (1024 -4604.633301 168 ) +4 1340 1345 (1726.317383 -4180.672363 128 ) (1724.320313 -4177.214844 128 ) (1724.320313 -4177.214844 160 ) (1726.317383 -4180.672363 160 ) +4 1340 1342 (1726.323975 -4180.683594 160 ) (1724.320313 -4177.214844 160 ) (1724.320313 -4177.214844 168 ) (1726.323975 -4180.683594 168 ) +4 1341 1344 (1862.879150 -4097.208496 160 ) (1864.971802 -4096 160 ) (1872.985596 -4096 160 ) (1864.880127 -4100.680176 160 ) +4 1342 1345 (1726.320801 -4180.685059 160 ) (1724.317383 -4177.216797 160 ) (1807.459351 -4129.208984 160 ) (1809.459961 -4132.680176 160 ) +4 1343 1347 (1807.456299 -4129.211426 128 ) (1862.876465 -4097.211426 128 ) (1864.880127 -4100.680176 128 ) (1809.459961 -4132.680176 128 ) +4 1343 1345 (1809.460205 -4132.679688 160 ) (1807.456787 -4129.211426 160 ) (1807.456787 -4129.211426 128 ) (1809.460205 -4132.679688 128 ) +4 1343 1344 (1862.875000 -4097.210938 128 ) (1862.875000 -4097.210938 160 ) (1864.879395 -4100.680176 160 ) (1864.879395 -4100.680176 128 ) +4 1344 1347 (1862.876465 -4097.211426 128 ) (1864.974854 -4096 128 ) (1872.988892 -4096 128 ) (1864.880371 -4100.680664 128 ) +4 1345 1347 (1724.318970 -4177.215820 128 ) (1807.456299 -4129.211426 128 ) (1809.456299 -4132.673828 128 ) (1726.315796 -4180.672852 128 ) +4 1346 3937 (1024 -4604.631836 128 ) (1024 -4955.669434 128 ) (1024 -4955.669434 168 ) (1024 -4604.631836 168 ) +4 1346 1347 (1024 -4955.669434 128 ) (1024 -4604.631836 128 ) (1734.319824 -4194.529297 128 ) (1886.320068 -4457.810059 128 ) +4 1347 3937 (1024 -5120 -1284 ) (1024 -5120 128 ) (1024 -4096 128 ) (1024 -4096 -1284 ) +4 1348 1768 (732 1024 5542.669922 ) (384 1024 5542.669922 ) (384 1024 712 ) (732 1024 712 ) +4 1348 1747 (128 1024 5542.669922 ) (0 1024 5542.669922 ) (0 1024 712 ) (128 1024 712 ) +4 1348 1746 (384 1024 5542.669922 ) (128 1024 5542.669922 ) (128 1024 712 ) (384 1024 712 ) +4 1348 1475 (1024 1024 712 ) (1024 1024 5542.669922 ) (732 1024 5542.669922 ) (732 1024 712 ) +4 1348 1473 (0 2048 5542.669922 ) (0 2048 712 ) (0 1024 712 ) (0 1024 5542.669922 ) +4 1348 1354 (0 1024 712 ) (0 1944 712 ) (720 1224 712 ) (520 1024 712 ) +3 1348 1353 (720 1224 712 ) (920 1024 712 ) (520 1024 712 ) +4 1348 1352 (768 1248 712 ) (992 1024 712 ) (920 1024 712 ) (732 1212 712 ) +4 1348 1351 (0 1944 712 ) (0 2016 712 ) (752 1264 712 ) (716 1228 712 ) +4 1348 1350 (1024 1512 712 ) (1024 1024 712 ) (992 1024 712 ) (764 1252 712 ) +5 1348 1349 (0 2016 712 ) (0 2048 712 ) (1024 2048 712 ) (1024 1512 712 ) (764 1252 712 ) +4 1349 1473 (0 2048 712 ) (0 2048 664 ) (0 2016 664 ) (0 2016 712 ) +4 1349 1370 (932 1708 664 ) (988 1652 664 ) (676 1340 664 ) (620 1396 664 ) +5 1349 1368 (988 1652 664 ) (1024 1616 664 ) (1024 1560 664 ) (740 1276 664 ) (676 1340 664 ) +5 1349 1367 (0 2016 664 ) (0 2048 664 ) (592 2048 664 ) (932 1708 664 ) (620 1396 664 ) +3 1349 1366 (592 2048 664 ) (1024 2048 664 ) (1024 1616 664 ) +6 1349 1351 (0 2016 664 ) (740 1276 664 ) (755.998718 1259.998657 696 ) (755.998169 1259.998291 708 ) (751.998047 1263.998047 712 ) (0 2015.996094 712 ) +4 1349 1350 (764.001953 1252.001953 712 ) (760.001953 1256.001953 704 ) (1024 1519.998413 703.998413 ) (1024 1511.996094 712 ) +4 1350 1475 (1024 1024 664 ) (1024 1024 712 ) (992 1024 712 ) (992 1024 664 ) +4 1350 1375 (1024 1480 664 ) (1024 1024 664 ) (992 1024 664 ) (780 1236 664 ) +6 1350 1352 (780 1236 664 ) (992 1024 664 ) (991.996094 1024 712 ) (767.998047 1247.998047 712 ) (763.998230 1251.998169 708 ) (763.998718 1251.998657 696 ) +4 1351 1473 (0 2016 664 ) (0 1944 664 ) (0 1944 712 ) (0 2016 712 ) +4 1351 1370 (620 1396 664 ) (676 1340 664 ) (640 1304 664 ) (584 1360 664 ) +4 1351 1368 (676 1340 664 ) (740 1276 664 ) (704 1240 664 ) (640 1304 664 ) +4 1351 1367 (0 1944 664 ) (0 2016 664 ) (620 1396 664 ) (584 1360 664 ) +6 1351 1354 (0 1944 664 ) (704 1240 664 ) (720 1224 696 ) (720 1224 708 ) (716 1228 712 ) (0 1944 712 ) +4 1352 1475 (992 1024 712 ) (920 1024 712 ) (920 1024 664 ) (992 1024 664 ) +4 1352 1375 (780 1236 664 ) (992 1024 664 ) (920 1024 664 ) (744 1200 664 ) +6 1352 1353 (744 1200 664 ) (920 1024 664 ) (920 1024 712 ) (732 1212 712 ) (728 1216 708 ) (728 1216 696 ) +4 1353 1768 (732 1024 712 ) (520 1024 712 ) (568 1024 664 ) (732 1024 664 ) +4 1353 1475 (920 1024 712 ) (732 1024 712 ) (732 1024 664 ) (920 1024 664 ) +4 1353 1395 (800 1024 664 ) (728 1024 664 ) (652 1100 664 ) (688 1136 664 ) +4 1353 1375 (744 1200 664 ) (920 1024 664 ) (800 1024 664 ) (684 1140 664 ) +3 1353 1356 (728 1024 664 ) (568 1024 664 ) (648 1104 664 ) +4 1353 1355 (683.998047 1140.001953 664 ) (567.996094 1024 664 ) (527.998535 1024 703.998474 ) (679.998291 1176 703.998169 ) +4 1353 1354 (719.998047 1224.001953 712 ) (724 1220 703.998047 ) (527.998535 1024 703.998474 ) (519.997192 1024 712 ) +5 1354 1768 (520 1024 712 ) (384 1024 712 ) (384 1024 664 ) (488 1024 664 ) (528 1024 704 ) +4 1354 1747 (128 1024 712 ) (0 1024 712 ) (0 1024 664 ) (128 1024 664 ) +4 1354 1746 (384 1024 712 ) (128 1024 712 ) (128 1024 664 ) (384 1024 664 ) +4 1354 1473 (0 1944 664 ) (0 1024 664 ) (0 1024 712 ) (0 1944 712 ) +4 1354 1370 (584 1360 664 ) (640 1304 664 ) (544 1208 664 ) (488 1264 664 ) +4 1354 1369 (604 1148 664 ) (544 1208 664 ) (580 1244 664 ) (640 1184 664 ) +4 1354 1368 (640 1304 664 ) (704 1240 664 ) (644 1180 664 ) (580 1244 664 ) +4 1354 1367 (0 1752 664 ) (0 1944 664 ) (584 1360 664 ) (488 1264 664 ) +4 1354 1356 (0 1024 664 ) (0 1752 664 ) (608 1144 664 ) (488 1024 664 ) +4 1354 1355 (488 1024 664 ) (643.998596 1180.001465 664 ) (680 1176 704.002014 ) (528 1024 704.002014 ) +3 1355 1768 (488 1024 664 ) (568 1024 664 ) (528 1024 704 ) +4 1355 1356 (648 1104 664 ) (568 1024 664 ) (488 1024 664 ) (608 1144 664 ) +4 1356 1768 (728 1024 664 ) (384 1024 664 ) (384 1024 544 ) (728 1024 544 ) +4 1356 1747 (128 1024 664 ) (0 1024 664 ) (0 1024 544 ) (128 1024 544 ) +4 1356 1746 (384 1024 664 ) (128 1024 664 ) (128 1024 544 ) (384 1024 544 ) +4 1356 1473 (0 1024 544 ) (0 1024 664 ) (0 1752 664 ) (0 1752 544 ) +4 1356 1396 (704 1048 544 ) (680 1072 544 ) (631.714355 1120.285645 648 ) (652 1100 648 ) +4 1356 1395 (652 1100 664 ) (728 1024 664 ) (728 1024 544 ) (712 1040 544 ) +4 1356 1393 (576 1176 544 ) (552 1200 544 ) (604 1148 648 ) (624.285645 1127.714355 648 ) +4 1356 1392 (631.714355 1120.285645 648 ) (680 1072 544 ) (576 1176 544 ) (624.285645 1127.714355 648 ) +4 1356 1370 (488 1264 664 ) (544 1208 664 ) (544 1208 544 ) (488 1264 544 ) +3 1356 1369 (544 1208 664 ) (604 1148 664 ) (544 1208 544 ) +4 1356 1367 (0 1752 544 ) (0 1752 664 ) (488 1264 664 ) (488 1264 544 ) +8 1356 1365 (416 1256 544 ) (394.399963 1204.250000 544 ) (344 1184 544 ) (293.600006 1204.250000 544 ) (272 1256 544 ) (293.596222 1307.740845 544 ) (344.009460 1327.996094 544 ) (394.400055 1307.749878 544 ) +3 1356 1364 (431.395752 1292.885620 544 ) (416 1256 544 ) (394.400055 1307.749878 544 ) +4 1356 1363 (401.075500 1350.924438 544 ) (439.558258 1312.441650 544 ) (431.395752 1292.885620 544 ) (344.009460 1327.996094 544 ) +3 1356 1362 (394.399963 1204.250000 544 ) (379.923370 1169.566528 544 ) (344 1184 544 ) +3 1356 1361 (439.558258 1312.441650 544 ) (718.447876 1033.552124 544 ) (379.923370 1169.566528 544 ) +3 1356 1360 (337.963226 1414.036743 544 ) (401.075500 1350.924438 544 ) (293.596222 1307.740845 544 ) +3 1356 1359 (111.522339 1640.477661 544 ) (337.963226 1414.036743 544 ) (272 1256 544 ) +4 1356 1358 (0 1322.214355 544 ) (0 1752 544 ) (111.522339 1640.477661 544 ) (293.600006 1204.250000 544 ) +4 1356 1357 (0 1024 544 ) (0 1322.214355 544 ) (718.447876 1033.552124 544 ) (728 1024 544 ) +4 1357 1770 (384 1024 432 ) (728 1024 432 ) (728 1024 528 ) (384 1024 528 ) +4 1357 1769 (728 1024 528 ) (728 1024 544 ) (384 1024 544 ) (384 1024 528 ) +4 1357 1747 (0 1024 544 ) (0 1024 432 ) (128 1024 432 ) (128 1024 544 ) +4 1357 1746 (128 1024 432 ) (384 1024 432 ) (384 1024 544 ) (128 1024 544 ) +4 1357 1473 (0 1322.214355 432 ) (0 1024 432 ) (0 1024 544 ) (0 1322.214355 544 ) +4 1357 1471 (512 1024 432 ) (460.799988 1024 432 ) (473.599976 1088 432 ) (512 1088 432 ) +4 1357 1467 (192 1024 432 ) (128 1024 432 ) (128 1088 432 ) (192 1088 432 ) +4 1357 1466 (460.799988 1024 432 ) (192 1024 432 ) (192 1088 432 ) (473.599976 1088 432 ) +4 1357 1468 (128 1024 432 ) (0 1024 432 ) (0 1088 432 ) (128 1088 432 ) +4 1357 1461 (0 1088 432 ) (0 1322.214355 432 ) (128 1270.785767 432 ) (128 1088 432 ) +4 1357 1457 (128 1270.785767 432 ) (256 1219.357178 432 ) (256 1088 432 ) (128 1088 432 ) +4 1357 1447 (256 1219.357178 432 ) (512 1116.500000 432 ) (512 1088 432 ) (256 1088 432 ) +4 1357 1425 (728 1024 432 ) (512 1024 432 ) (512 1116.500000 432 ) (718.447876 1033.552124 432 ) +3 1357 1399 (728 1024 460 ) (728 1024 440.615417 ) (719 1033 460 ) +5 1357 1398 (718.447876 1033.552124 461.189178 ) (718.447876 1033.552124 523.104187 ) (728 1024 504 ) (728 1024 460 ) (719 1033 460 ) +4 1357 1397 (718.447876 1033.552124 523.104187 ) (718.447876 1033.552124 528 ) (728 1024 528 ) (728 1024 504 ) +4 1357 1392 (728 1024 432 ) (718.447876 1033.552124 432 ) (718.447876 1033.552124 461.189178 ) (728 1024 440.615417 ) +4 1357 1365 (293.599518 1204.251099 544 ) (344.001221 1184 544 ) (344.001862 1184 432 ) (293.599243 1204.251831 432 ) +4 1357 1362 (344.001221 1184 544 ) (379.923737 1169.567383 544 ) (379.923920 1169.567749 432 ) (344.001862 1184 432 ) +4 1357 1361 (379.923737 1169.567383 544 ) (718.445313 1033.554688 544 ) (718.445313 1033.554688 432 ) (379.923920 1169.567749 432 ) +4 1357 1358 (0 1322.214844 544 ) (293.599518 1204.251099 544 ) (293.599243 1204.251831 432 ) (0 1322.215820 432 ) +4 1358 1473 (0 1752 432 ) (0 1322.214355 432 ) (0 1322.214355 544 ) (0 1752 544 ) +5 1358 1461 (0 1322.214355 432 ) (0 1752 432 ) (111.522339 1640.477661 432 ) (128 1601 432 ) (128 1270.785767 432 ) +5 1358 1457 (195.200012 1440 432 ) (256 1294.333374 432 ) (256 1219.357178 432 ) (128 1270.785767 432 ) (128 1440 432 ) +3 1358 1448 (256 1294.333374 432 ) (293.600006 1204.250000 432 ) (256 1219.357178 432 ) +4 1358 1445 (128.417389 1600 432 ) (195.200012 1440 432 ) (128 1440 432 ) (128 1600 432 ) +3 1358 1443 (128 1601 432 ) (128.417389 1600 432 ) (128 1600 432 ) +4 1358 1367 (111.522339 1640.477661 432 ) (0 1752 432 ) (0 1752 544 ) (111.522339 1640.477661 544 ) +4 1358 1365 (293.600586 1204.250000 544 ) (293.600586 1204.250000 432 ) (272 1256 432 ) (272 1256 544 ) +4 1358 1359 (272 1256 432 ) (111.525383 1640.476563 432 ) (111.525391 1640.476563 544 ) (272 1256 544 ) +3 1359 1461 (111.522339 1640.477661 432 ) (128 1624 432 ) (128 1601 432 ) +3 1359 1457 (256 1294.333374 432 ) (195.199997 1440 432 ) (256 1440 432 ) +5 1359 1449 (312 1440 432 ) (337.963226 1414.036743 432 ) (272 1256 432 ) (256 1294.333374 432 ) (256 1440 432 ) +4 1359 1445 (152 1600 432 ) (312 1440 432 ) (195.199997 1440 432 ) (128.417389 1600 432 ) +4 1359 1443 (128 1624 432 ) (152 1600 432 ) (128.417389 1600 432 ) (128 1601 432 ) +4 1359 1367 (337.963196 1414.036865 432 ) (111.522339 1640.477661 432 ) (111.522339 1640.477661 544 ) (337.963226 1414.036743 544 ) +4 1359 1365 (272.001953 1256.003906 544 ) (272.001953 1256.003906 432 ) (293.596588 1307.740967 432 ) (293.596588 1307.740967 544 ) +4 1359 1360 (293.596588 1307.740967 432 ) (337.962891 1414.035156 432 ) (337.962891 1414.035156 544 ) (293.596588 1307.740967 544 ) +3 1360 1450 (337.963226 1414.036743 432 ) (401.075500 1350.924438 432 ) (293.596222 1307.740845 432 ) +4 1360 1367 (401.075531 1350.924561 432 ) (337.963196 1414.036865 432 ) (337.963226 1414.036743 544 ) (401.075500 1350.924438 544 ) +4 1360 1365 (293.595673 1307.741211 544 ) (293.595673 1307.741211 432 ) (344.009155 1327.996338 432 ) (344.009186 1327.996338 544 ) +4 1360 1363 (344.009155 1327.996338 432 ) (401.074219 1350.923828 432 ) (401.074219 1350.923828 544 ) (344.009186 1327.996338 544 ) +4 1361 1451 (439.558258 1312.441650 432 ) (512 1240 432 ) (512 1116.500000 432 ) (379.923370 1169.566528 432 ) +3 1361 1425 (512 1240 432 ) (718.447876 1033.552124 432 ) (512 1116.500000 432 ) +4 1361 1398 (718.447876 1033.552124 523.104187 ) (718.447876 1033.552124 461.189178 ) (687.428589 1064.571411 528 ) (716 1036 528 ) +3 1361 1397 (718.447876 1033.552124 528 ) (718.447876 1033.552124 523.104187 ) (716 1036 528 ) +4 1361 1396 (680 1072 544 ) (704 1048 544 ) (712 1040 528 ) (687.428589 1064.571411 528 ) +5 1361 1394 (524 1228 432 ) (492 1260 432 ) (540 1212 528 ) (544 1208 528 ) (544 1208 475.076935 ) +4 1361 1393 (552 1200 544 ) (576 1176 544 ) (544 1208 475.076935 ) (544 1208 528 ) +5 1361 1392 (718.447876 1033.552124 432 ) (524 1228 432 ) (576 1176 544 ) (680 1072 544 ) (718.447876 1033.552124 461.189178 ) +3 1361 1373 (492 1260 432 ) (492 1260 528 ) (540 1212 528 ) +4 1361 1374 (492 1260 432 ) (488 1264 432 ) (488 1264 528 ) (492 1260 528 ) +4 1361 1367 (488 1264 432 ) (439.558289 1312.441772 432 ) (439.558258 1312.441650 544 ) (488 1264 544 ) +4 1361 1365 (394.398926 1204.249634 544 ) (416 1256 544 ) (416 1256 432 ) (394.398926 1204.249634 432 ) +4 1361 1364 (416 1256 544 ) (431.395050 1292.885864 544 ) (431.395050 1292.885864 432 ) (416 1256 432 ) +4 1361 1363 (431.395050 1292.885864 544 ) (439.557770 1312.442261 544 ) (439.557770 1312.442261 432 ) (431.395050 1292.885864 432 ) +4 1361 1362 (379.922577 1169.566772 432 ) (379.922577 1169.566772 544 ) (394.398926 1204.249634 544 ) (394.398926 1204.249634 432 ) +3 1362 1452 (394.399963 1204.250000 432 ) (379.923370 1169.566528 432 ) (344 1184 432 ) +4 1362 1365 (394.400360 1204.249023 544 ) (394.400360 1204.249023 432 ) (344.001495 1184 432 ) (344.001495 1184 544 ) +4 1363 1453 (401.075500 1350.924438 432 ) (439.558258 1312.441650 432 ) (431.395752 1292.885620 432 ) (344.009460 1327.996094 432 ) +4 1363 1367 (439.558289 1312.441772 432 ) (401.075531 1350.924561 432 ) (401.075500 1350.924438 544 ) (439.558258 1312.441650 544 ) +4 1363 1365 (344.008453 1327.996094 544 ) (344.008453 1327.996094 432 ) (394.400299 1307.749268 432 ) (394.400299 1307.749268 544 ) +4 1363 1364 (394.400299 1307.749268 432 ) (431.393158 1292.885986 432 ) (431.393158 1292.885986 544 ) (394.400299 1307.749268 544 ) +3 1364 1454 (431.395752 1292.885620 432 ) (416 1256 432 ) (394.400055 1307.749878 432 ) +4 1364 1365 (394.399414 1307.751953 544 ) (394.399414 1307.751953 432 ) (416 1256 432 ) (416 1256 544 ) +8 1365 1455 (416 1256 432 ) (394.399963 1204.250000 432 ) (344 1184 432 ) (293.600006 1204.250000 432 ) (272 1256 432 ) (293.596222 1307.740845 432 ) (344.009460 1327.996094 432 ) (394.400055 1307.749878 432 ) +3 1366 1400 (592 2048 432 ) (1024 2048 432 ) (1024 1616 432 ) +3 1366 1383 (988 1652 536 ) (984 1656 528 ) (988 1652 528 ) +4 1366 1382 (992 1648 528 ) (992 1648 544 ) (988 1652 536 ) (988 1652 528 ) +4 1366 1384 (936 1704 432 ) (992 1648 432 ) (992 1648 528 ) (984 1656 528 ) +4 1366 1372 (932 1708 432 ) (936 1704 432 ) (984 1656 528 ) (932 1708 528 ) +5 1366 1371 (984 1656 528 ) (988 1652 536 ) (988 1652 544 ) (932.001038 1708 544 ) (932 1708 528 ) +4 1366 1370 (988 1652 544 ) (988.001953 1652.001953 664 ) (932.002014 1708.001953 664 ) (932.001038 1708 544 ) +4 1366 1368 (988 1652 536 ) (1024 1616.002930 607.997070 ) (1024 1616.003906 664 ) (988.001953 1652.001953 664 ) +4 1366 1367 (592 2048 432 ) (932 1708 432 ) (932.002014 1708.001953 664 ) (592.003906 2048 664 ) +4 1367 1473 (0 2048 664 ) (0 2048 432 ) (0 1752 432 ) (0 1752 664 ) +4 1367 1461 (128 1624 432 ) (0 1752 432 ) (0 2048 432 ) (128 2048 432 ) +3 1367 1453 (439.558258 1312.441650 432 ) (401.075439 1350.924438 432 ) (466.611084 1377.255737 432 ) +5 1367 1451 (488 1264 432 ) (439.558258 1312.441650 432 ) (466.611084 1377.255737 432 ) (512 1395.492310 432 ) (512 1288 432 ) +5 1367 1450 (401.075439 1350.924438 432 ) (337.963196 1414.036743 432 ) (348.799988 1440 432 ) (512 1440 432 ) (512 1395.492310 432 ) +3 1367 1449 (337.963196 1414.036743 432 ) (312 1440 432 ) (348.799988 1440 432 ) +4 1367 1445 (312 1440 432 ) (152 1600 432 ) (512 1600 432 ) (512 1440 432 ) +5 1367 1443 (152 1600 432 ) (128 1624 432 ) (128 1664 432 ) (512 1664 432 ) (512 1600 432 ) +4 1367 1442 (128 1664 432 ) (128 2048 432 ) (512 2048 432 ) (512 1664 432 ) +3 1367 1424 (524 1300 432 ) (512 1288 432 ) (512 1312 432 ) +4 1367 1405 (540 1316 432 ) (524 1300 432 ) (512 1312 432 ) (512 1344 432 ) +5 1367 1403 (576 1600 432 ) (576 1352 432 ) (540 1316 432 ) (512 1344 432 ) (512 1600 432 ) +4 1367 1402 (512 2048 432 ) (576 2048 432 ) (576 1600 432 ) (512 1600 432 ) +4 1367 1401 (576 2048 432 ) (592 2048 432 ) (932 1708 432 ) (576 1352 432 ) +4 1367 1374 (488 1264 528 ) (488 1264 432 ) (584 1360 432 ) (584 1360 528 ) +4 1367 1372 (584 1360 432 ) (932.001953 1708.001953 432 ) (932.001953 1708.001953 528 ) (584 1360 528 ) +4 1367 1371 (584 1360 528 ) (932.001953 1708.001953 528 ) (932.001953 1708.001953 544 ) (584 1360 544 ) +4 1367 1370 (488 1264 664 ) (488 1264 544 ) (932.001953 1708.001953 544 ) (932.001953 1708.001953 664 ) +4 1368 1386 (580 1244 536 ) (596 1260 536 ) (600 1256 544 ) (584 1240 544 ) +4 1368 1382 (596 1260 536 ) (988.003845 1652.003784 536 ) (992.003784 1648.003906 544 ) (600 1256 544 ) +4 1368 1371 (988 1652 544 ) (988 1652 536.002991 ) (640 1304 536.002991 ) (640 1304 544 ) +4 1368 1370 (988 1652 664 ) (988 1652 544 ) (580 1244 544 ) (580 1244 664 ) +3 1368 1369 (580.001953 1243.998047 664 ) (580.001953 1243.998047 544.003845 ) (640 1184 664 ) +4 1369 1370 (544 1208 544 ) (544 1208 664 ) (580 1244 664 ) (580 1244 544 ) +4 1370 1371 (584 1360 544 ) (932.007813 1708.007813 544 ) (988 1651.996094 544 ) (640.001953 1303.998047 544 ) +4 1371 1383 (636 1308 528 ) (984.003784 1656.003906 528 ) (988.003845 1652.003784 536 ) (640 1304 536 ) +4 1371 1372 (584 1360 528 ) (932.007813 1708.007813 528 ) (984.003906 1656 528 ) (636.001953 1307.998047 528 ) +4 1372 1401 (584 1360 432 ) (932 1708 432 ) (936 1704 432 ) (588 1356 432 ) +4 1372 1384 (588 1356 432 ) (936.003845 1704.003906 432 ) (984.003784 1656.003906 528 ) (636 1308 528 ) +5 1372 1374 (587.994263 1356.003906 432 ) (588 1356 432.009583 ) (588 1356 528 ) (584 1360 528 ) (583.998230 1360 432 ) +5 1373 1394 (540 1212 528 ) (492 1260 432 ) (512 1280 432 ) (536 1256 480 ) (544 1216 528 ) +5 1373 1374 (512 1280 432 ) (492 1260 432 ) (492 1260 528 ) (496 1264 528 ) (512 1280 480 ) +4 1374 1451 (492 1260 432 ) (488 1264 432 ) (512 1288 432 ) (512 1280 432 ) +4 1374 1424 (512 1288 432 ) (524 1300 432 ) (528 1296 432 ) (512 1280 432 ) +4 1374 1405 (524 1300 432 ) (540 1316 432 ) (544 1312 432 ) (528 1296 432 ) +4 1374 1403 (540 1316 432 ) (576 1352 432 ) (576 1344 432 ) (544 1312 432 ) +4 1374 1401 (576 1352 432 ) (584 1360 432 ) (588 1356 432 ) (576 1344 432 ) +4 1375 1476 (1024 1024 560 ) (1024 1024 568 ) (800 1024 568 ) (800 1024 560 ) +4 1375 1475 (1024 1024 568 ) (1024 1024 664 ) (800 1024 664 ) (800 1024 568 ) +4 1375 1395 (800.003052 1024 560 ) (800.003906 1024 664 ) (688.001221 1136.001221 664 ) (740.001160 1084.001099 560 ) +3 1375 1380 (800.007813 1024.007813 560 ) (736.015625 1088 560 ) (864 1088 560 ) +5 1375 1379 (800.015625 1024 560 ) (800.007813 1024.007813 560 ) (864 1088 560 ) (892 1088 560 ) (828 1024 560 ) +4 1375 1378 (1020 1088 560 ) (1024 1088 560 ) (1024 1024 560 ) (956 1024 560 ) +4 1375 1377 (736.015625 1088 560 ) (736.007813 1088.007813 560 ) (800 1152 560 ) (864 1088 560 ) +4 1375 1376 (800 1152 560 ) (1024 1376 560 ) (1024 1088 560 ) (864 1088 560 ) +3 1376 1408 (864 1088 432 ) (1024 1248 432 ) (1024 1088 432 ) +4 1376 1385 (1024 1360.003906 544 ) (1024 1248.003906 432 ) (863.998047 1088.001953 432 ) (807.998047 1144.001953 544 ) +4 1376 1381 (864 1088 460 ) (864 1088 432 ) (1024 1088 432 ) (1024 1088 460 ) +3 1376 1379 (892 1088 560 ) (864 1088 560 ) (864 1088 513.333252 ) +4 1376 1378 (1024 1088 560 ) (1020 1088 560 ) (1020 1088 460 ) (1024 1088 460 ) +4 1376 1377 (864 1088 528 ) (864 1088 560 ) (800 1152 560 ) (816 1136 528 ) +4 1377 1388 (767.998108 1088.001953 528 ) (767.996094 1088 528 ) (751.996094 1088 544 ) (759.998108 1096.001953 544 ) +4 1377 1385 (807.998047 1144.001953 544 ) (815.998047 1136.001953 528 ) (767.998108 1088.001953 528 ) (759.998108 1096.001953 544 ) +4 1377 1380 (864 1088 560 ) (736 1088 560 ) (768 1088 528 ) (864 1088 528 ) +4 1378 1482 (1024 1024 460 ) (1024 1024 560 ) (956 1024 560 ) (956 1024 460 ) +4 1378 1381 (1020 1088 460 ) (1024 1088 460 ) (1024 1024 460 ) (956 1024 460 ) +3 1379 1489 (800 1024 528 ) (800 1024 513.333435 ) (808.799988 1024 528 ) +4 1379 1486 (800 1024 544 ) (800 1024 528 ) (808 1024 528 ) (808 1024 544 ) +4 1379 1485 (808 1024 560 ) (800 1024 560 ) (800 1024 544 ) (808 1024 544 ) +4 1379 1484 (828 1024 560 ) (808 1024 560 ) (808 1024 528 ) (808.799988 1024 528 ) +4 1379 1380 (864 1088 560 ) (864 1088 528 ) (800 1024 528 ) (800 1024 560 ) +4 1380 1395 (800.002930 1024 544 ) (800.003052 1024 560 ) (740.001160 1084.001099 560 ) (748.001099 1076.001099 544 ) +4 1380 1389 (751.998047 1072.001953 528 ) (743.998047 1080.001953 544 ) (751.996094 1088 544 ) (767.996094 1088 528 ) +4 1381 1494 (1024 1024 432 ) (1024 1024 460 ) (800 1024 460 ) (800 1024 432 ) +3 1381 1411 (928 1024 432 ) (800 1024 432 ) (864 1088 432 ) +4 1381 1408 (1024 1024 432 ) (928 1024 432 ) (864 1088 432 ) (1024 1088 432 ) +4 1382 1386 (600 1256 544 ) (596 1260 536 ) (596 1260 528 ) (600 1256 528 ) +4 1382 1383 (988 1652 528 ) (640 1304 528 ) (640 1304 536 ) (988 1652 536 ) +4 1382 1384 (992 1648 528 ) (600 1256 528 ) (596 1260 528 ) (988 1652 528 ) +4 1383 1384 (636 1308 528 ) (984 1656 528 ) (988 1652 528 ) (640 1304 528 ) +3 1384 1403 (544 1312 432 ) (576 1344 432 ) (576 1280 432 ) +5 1384 1401 (576 1344 432 ) (936 1704 432 ) (992 1648 432 ) (600 1256 432 ) (576 1280 432 ) +5 1384 1387 (592 1264 528 ) (544 1312 432 ) (568 1288 432 ) (600 1256 496 ) (600 1256 528 ) +4 1385 1413 (1024 1360 432 ) (1024 1344 432 ) (768 1088 432 ) (760 1096 432 ) +4 1385 1409 (800 1088 432 ) (768 1088 432 ) (816 1136 432 ) (832 1120 432 ) +4 1385 1408 (1024 1344 432 ) (1024 1248 432 ) (864 1088 432 ) (816 1136 432 ) +3 1385 1391 (768 1088 480 ) (768 1088 432 ) (816 1088 432 ) +5 1385 1389 (833.500000 1088 462.499969 ) (768 1088 528 ) (768 1088 480 ) (788 1088 460 ) (832 1088 460 ) +4 1385 1390 (864 1088 432 ) (836 1088 460 ) (788 1088 460 ) (816 1088 432 ) +4 1385 1388 (768 1088 480 ) (768 1088 528 ) (760 1096 544 ) (760 1096 496 ) +4 1386 1387 (596 1260 528 ) (616 1240 528 ) (600 1224 528 ) (580 1244 528 ) +4 1387 1405 (552 1272 432 ) (528 1296 432 ) (544 1312 432 ) (568 1288 432 ) +5 1388 1389 (768 1088 528 ) (752 1088 544 ) (736 1088 544 ) (736 1088 512 ) (768 1088 480 ) +3 1389 1391 (768 1088 479.996155 ) (787.996094 1088 460 ) (777.997986 1078.001953 460 ) +4 1389 1390 (762 1062 460 ) (788 1088 460 ) (832 1088 460 ) (784 1040 460 ) +4 1390 1391 (787.996094 1088 460 ) (815.996094 1088 432 ) (791.998047 1064.001953 432 ) (777.997986 1078.001953 460 ) +3 1391 1409 (768 1088 432 ) (800 1088 432 ) (784 1072 432 ) +4 1392 1770 (728 1024 440.615417 ) (728 1024 432 ) (732 1024 432 ) (732 1024 436.307739 ) +3 1392 1497 (732 1024 432 ) (736 1024 432 ) (732 1024 436.307739 ) +4 1392 1423 (544 1248 432 ) (560 1264 432 ) (768 1056 432 ) (752 1040 432 ) +5 1392 1425 (736 1024 432 ) (728 1024 432 ) (524 1228 432 ) (544 1248 432 ) (752 1040 432 ) +5 1392 1399 (739.003662 1052.996216 460 ) (719.003723 1032.996460 460 ) (728 1024 440.623138 ) (736.007385 1024 432 ) (752.003723 1039.996094 432 ) +4 1392 1398 (707.432129 1084.567627 528 ) (687.432312 1064.567871 528 ) (719.003723 1032.996460 460 ) (739.003662 1052.996216 460 ) +4 1392 1396 (651.717773 1140.282227 648 ) (631.718018 1120.282104 648 ) (687.432312 1064.567871 528 ) (707.432129 1084.567627 528 ) +4 1392 1394 (544.003296 1247.996582 432 ) (524.003357 1227.996704 432 ) (544 1208 475.069672 ) (564 1228 475.069702 ) +4 1392 1393 (624.289063 1127.710938 648 ) (644.289001 1147.710938 648 ) (564 1228 475.069702 ) (544 1208 475.069672 ) +4 1393 1394 (564 1228 475.076141 ) (544 1208 475.076141 ) (544 1208 528 ) (564 1228 528 ) +3 1394 1451 (512 1240 432 ) (492 1260 432 ) (512 1280 432 ) +4 1394 1425 (524 1228 432 ) (512 1240 432 ) (512 1280 432 ) (544 1248 432 ) +4 1395 1768 (732 1024 664 ) (728 1024 664 ) (728 1024 544 ) (732 1024 544 ) +4 1395 1485 (732 1024 560 ) (732 1024 544 ) (800 1024 544 ) (800 1024 560 ) +4 1395 1476 (732 1024 568 ) (732 1024 560 ) (800 1024 560 ) (800 1024 568 ) +4 1395 1475 (800 1024 664 ) (732 1024 664 ) (732 1024 568 ) (800 1024 568 ) +4 1396 1398 (712.001953 1040.001953 528 ) (687.429688 1064.574219 528 ) (707.427673 1084.572266 528 ) (732 1060 528 ) +4 1397 1770 (728 1024 528 ) (728 1024 504 ) (732 1024 500 ) (732 1024 528 ) +4 1397 1491 (749.500061 1024 482.500000 ) (768 1024 464 ) (768 1024 480 ) (757.473755 1024 495.789551 ) +5 1397 1490 (732 1024 500 ) (749.500061 1024 482.500000 ) (757.473755 1024 495.789551 ) (736 1024 528 ) (732 1024 528 ) +5 1397 1398 (728.003906 1024 503.992188 ) (716 1036.003906 528 ) (719.998047 1040.001953 528 ) (759.997986 1032.002075 480 ) (768 1024 463.996124 ) +4 1398 1770 (728 1024 504 ) (728 1024 460 ) (732 1024 460 ) (732 1024 500 ) +4 1398 1491 (736 1024 460 ) (768 1024 460 ) (768 1024 464 ) (749.500061 1024 482.500000 ) +4 1398 1490 (732 1024 460 ) (736 1024 460 ) (749.500061 1024 482.500000 ) (732 1024 500 ) +4 1398 1399 (719 1033.007813 460 ) (738.996033 1053.003784 460 ) (768 1024 460 ) (728.005554 1024 460 ) +4 1399 1770 (728 1024 460 ) (728 1024 440.615417 ) (732 1024 436.307739 ) (732 1024 460 ) +5 1399 1497 (732 1024 436.307739 ) (736 1024 432 ) (768 1024 432 ) (768 1024 460 ) (732 1024 460 ) +3 1399 1425 (768 1024 432 ) (736 1024 432 ) (752 1040 432 ) +3 1400 1416 (592 2048 64 ) (1024 2048 64 ) (1024 1616 64 ) +4 1400 1401 (591.998047 2048 64 ) (992 1648 64 ) (992 1648 432 ) (591.998047 2048 432 ) +3 1401 1420 (576 1296 64 ) (576 1600 64 ) (880 1600 64 ) +5 1401 1417 (944 1600 64 ) (600 1256 64 ) (576 1280 64 ) (576 1296 64 ) (880 1600 64 ) +5 1401 1416 (576 2048 64 ) (592 2048 64 ) (992 1648 64 ) (944 1600 64 ) (576 1600 64 ) +4 1401 1404 (576 1344 64 ) (576 1280 64 ) (576 1280 384 ) (576 1344 384 ) +4 1401 1403 (576 1280 384 ) (576 1280 432 ) (576 1600 432 ) (576 1600 384 ) +4 1401 1402 (576 2048 64 ) (576 1600 64 ) (576 1600 432 ) (576 2048 432 ) +4 1402 1443 (512 1600 432 ) (512 1664 432 ) (512 1664 384 ) (512 1600 384 ) +4 1402 1442 (512 1664 432 ) (512 2048 432 ) (512 2048 64 ) (512 1664 64 ) +4 1402 1416 (512 1600 64 ) (512 2048 64 ) (576 2048 64 ) (576 1600 64 ) +4 1402 1403 (512 1600 432 ) (512 1600 384 ) (576 1600 384 ) (576 1600 432 ) +4 1403 1451 (512 1344 432 ) (512 1395.492310 432 ) (512 1395.492310 384 ) (512 1344 384 ) +4 1403 1450 (512 1395.492310 432 ) (512 1440 432 ) (512 1440 384 ) (512 1395.492310 384 ) +4 1403 1445 (512 1440 432 ) (512 1600 432 ) (512 1600 384 ) (512 1440 384 ) +4 1403 1405 (512 1344 432 ) (512 1344 384 ) (568 1288 384 ) (568 1288 432 ) +3 1403 1404 (576 1344 384 ) (576 1280 384 ) (544 1312 384 ) +4 1404 1421 (576 1344 64 ) (576 1296 64 ) (568 1288 64 ) (544 1312 64 ) +3 1404 1417 (576 1296 64 ) (576 1280 64 ) (568 1288 64 ) +4 1404 1406 (544 1312 64 ) (568 1288 64 ) (568 1288 384 ) (544 1312 384 ) +4 1405 1451 (512 1312 432 ) (512 1344 432 ) (512 1344 384 ) (512 1312 384 ) +4 1405 1424 (512 1312 432 ) (512 1312 384 ) (528 1296 384 ) (528 1296 432 ) +4 1405 1406 (544 1312 384 ) (568 1288 384 ) (552 1272 384 ) (528 1296 384 ) +4 1406 1421 (552.003906 1272.003906 64 ) (528.003845 1296.003906 64 ) (544 1312 64 ) (568 1288 64 ) +4 1407 1426 (608 1216 64 ) (656 1168 64 ) (656 1168 192 ) (608 1216 192 ) +4 1408 1655 (928 1024 96 ) (928 1024 64 ) (952 1024 64 ) (952 1024 96 ) +4 1408 1654 (928 1024 116 ) (928 1024 96 ) (952 1024 96 ) (952 1024 116 ) +4 1408 1653 (928 1024 120 ) (928 1024 116 ) (952 1024 116 ) (952 1024 120 ) +4 1408 1586 (952 1024 288 ) (928 1024 288 ) (928 1024 120 ) (952 1024 120 ) +4 1408 1584 (952 1024 96 ) (952 1024 64 ) (960 1024 64 ) (960 1024 96 ) +4 1408 1582 (964 1024 64 ) (968 1024 64 ) (968 1024 96 ) (964 1024 96 ) +4 1408 1583 (960 1024 64 ) (964 1024 64 ) (964 1024 96 ) (960 1024 96 ) +4 1408 1581 (952 1024 116 ) (952 1024 96 ) (968 1024 96 ) (968 1024 116 ) +4 1408 1580 (952 1024 124 ) (952 1024 116 ) (968 1024 116 ) (968 1024 124 ) +4 1408 1579 (952 1024 128 ) (952 1024 124 ) (960 1024 124 ) (960 1024 128 ) +4 1408 1577 (952 1024 136 ) (952 1024 128 ) (960 1024 128 ) (960 1024 136 ) +4 1408 1576 (960 1024 124 ) (968 1024 124 ) (968 1024 136 ) (960 1024 136 ) +4 1408 1574 (952 1024 174 ) (952 1024 136 ) (968 1024 136 ) (968 1024 174 ) +4 1408 1570 (960 1024 288 ) (952 1024 288 ) (952 1024 174 ) (960 1024 174 ) +4 1408 1569 (960 1024 202 ) (960 1024 174 ) (968 1024 174 ) (968 1024 202 ) +4 1408 1568 (968 1024 288 ) (960 1024 288 ) (960 1024 202 ) (968 1024 202 ) +4 1408 1563 (968 1024 76 ) (968 1024 64 ) (1020 1024 64 ) (1020 1024 76 ) +4 1408 1559 (1020 1024 288 ) (968 1024 288 ) (968 1024 76 ) (1020 1024 76 ) +4 1408 1557 (1024 1024 64 ) (1024 1024 202 ) (1020 1024 202 ) (1020 1024 64 ) +4 1408 1556 (1024 1024 202 ) (1024 1024 288 ) (1020 1024 288 ) (1020 1024 202 ) +4 1408 1494 (1024 1024 288 ) (1024 1024 432 ) (928 1024 432 ) (928 1024 288 ) +4 1408 1417 (816 1136 64 ) (1024 1344 64 ) (1024 1296 64 ) (840 1112 64 ) +4 1408 1418 (1024 1296 64 ) (1024 1024 64 ) (928 1024 64 ) (840 1112 64 ) +4 1408 1413 (1024 1344 64 ) (816 1136 64 ) (816 1136 432 ) (1024 1344 432 ) +4 1408 1411 (928 1024 384 ) (928 1024 432 ) (864 1088 432 ) (864 1088 384 ) +4 1408 1412 (840 1112 64 ) (928 1024 64 ) (928 1024 384 ) (840 1112 384 ) +4 1408 1410 (816 1136 384 ) (816 1136 64 ) (840 1112 64 ) (840 1112 384 ) +4 1408 1409 (816 1136 432 ) (816 1136 384 ) (840 1112 384 ) (832 1120 432 ) +4 1409 1413 (768 1088 432 ) (816 1136 432 ) (816 1136 384 ) (768 1088 384 ) +4 1409 1410 (768.002014 1087.998047 384 ) (816 1135.996094 384 ) (839.996094 1112 384 ) (791.998047 1064.001953 384 ) +4 1410 1417 (768 1088 64 ) (816 1136 64 ) (840 1112 64 ) (792 1064 64 ) +4 1410 1413 (816 1136 64 ) (768 1088 64 ) (768 1088 384 ) (816 1136 384 ) +4 1410 1412 (792 1064 64 ) (840 1112 64 ) (840 1112 384 ) (792 1064 384 ) +4 1411 1494 (928 1024 432 ) (800 1024 432 ) (800 1024 384 ) (928 1024 384 ) +3 1411 1412 (800 1024 384 ) (864 1088 384 ) (928 1024 384 ) +4 1412 1668 (800 1024 288 ) (800 1024 64 ) (844 1024 64 ) (844 1024 288 ) +4 1412 1660 (844 1024 64 ) (872 1024 64 ) (872 1024 96 ) (844 1024 96 ) +4 1412 1657 (872 1024 96 ) (872 1024 288 ) (844 1024 288 ) (844 1024 96 ) +4 1412 1655 (872 1024 64 ) (928 1024 64 ) (928 1024 96 ) (872 1024 96 ) +4 1412 1654 (928 1024 96 ) (928 1024 116 ) (872 1024 116 ) (872 1024 96 ) +4 1412 1653 (928 1024 116 ) (928 1024 120 ) (872 1024 120 ) (872 1024 116 ) +4 1412 1586 (928 1024 120 ) (928 1024 288 ) (872 1024 288 ) (872 1024 120 ) +4 1412 1494 (800 1024 384 ) (800 1024 288 ) (928 1024 288 ) (928 1024 384 ) +4 1412 1418 (800.007813 1024 64 ) (776.003906 1048.003906 64 ) (840 1112 64 ) (928 1024 64 ) +4 1413 1417 (1024 1360 64 ) (1024 1344 64 ) (768 1088 64 ) (760 1096 64 ) +4 1414 1428 (752 1072 240 ) (752 1072 320 ) (688 1136 320 ) (688 1136 240 ) +4 1415 1430 (752 1072 112 ) (752 1072 192 ) (688 1136 192 ) (688 1136 112 ) +4 1416 1472 (512 2048 0 ) (512 2048 -1284 ) (512 1600 -1284 ) (512 1600 0 ) +4 1416 1444 (512 1664 0 ) (512 1600 0 ) (512 1600 48 ) (512 1664 48 ) +4 1416 1442 (512 2048 64 ) (512 2048 0 ) (512 1664 0 ) (512 1664 64 ) +4 1416 1420 (880 1600 64 ) (576 1600 64 ) (576 1600 48 ) (880 1600 48 ) +4 1416 1417 (1024 1600 56 ) (1024 1600 64 ) (880 1600 64 ) (880 1600 56 ) +4 1416 1419 (1024 1600 48 ) (1024 1600 56 ) (880 1600 56 ) (880 1600 48 ) +4 1416 1422 (512 1600 -1284 ) (1024 1600 -1284 ) (1024 1600 48 ) (512 1600 48 ) +4 1417 1421 (576 1296 56 ) (568 1288 56 ) (568 1288 64 ) (576 1296 64 ) +4 1417 1420 (880 1600 64 ) (880 1600 56 ) (576 1296 56 ) (576 1296 64 ) +4 1417 1418 (792 1064 56 ) (1024 1296 56 ) (1024 1296 64 ) (792 1064 64 ) +5 1417 1419 (568 1288 56 ) (880 1600 56 ) (1024 1600 56 ) (1024 1296 56 ) (792 1064 56 ) +4 1418 1671 (844 1024 64 ) (800 1024 64 ) (800 1024 56 ) (844 1024 56 ) +4 1418 1660 (872 1024 64 ) (844 1024 64 ) (844 1024 56 ) (872 1024 56 ) +4 1418 1655 (952 1024 64 ) (872 1024 64 ) (872 1024 56 ) (952 1024 56 ) +4 1418 1585 (968 1024 64 ) (952 1024 64 ) (952 1024 56 ) (968 1024 56 ) +4 1418 1563 (1020 1024 64 ) (968 1024 64 ) (968 1024 56 ) (1020 1024 56 ) +4 1418 1557 (1024 1024 56 ) (1024 1024 64 ) (1020 1024 64 ) (1020 1024 56 ) +4 1418 1435 (800 1024 56 ) (800 1024 64 ) (776 1048 64 ) (776 1048 56 ) +4 1418 1419 (1024 1024 56 ) (800 1024 56 ) (776 1048 56 ) (1024 1296 56 ) +4 1419 1671 (844 1024 56 ) (800 1024 56 ) (800 1024 48 ) (844 1024 48 ) +4 1419 1660 (872 1024 56 ) (844 1024 56 ) (844 1024 48 ) (872 1024 48 ) +4 1419 1655 (952 1024 56 ) (872 1024 56 ) (872 1024 48 ) (952 1024 48 ) +4 1419 1585 (968 1024 56 ) (952 1024 56 ) (952 1024 48 ) (968 1024 48 ) +4 1419 1563 (1020 1024 56 ) (968 1024 56 ) (968 1024 48 ) (1020 1024 48 ) +4 1419 1557 (1024 1024 48 ) (1024 1024 56 ) (1020 1024 56 ) (1020 1024 48 ) +4 1419 1436 (552 1272 48 ) (800 1024 48 ) (800 1024 56 ) (552 1272 56 ) +4 1419 1421 (576 1296 48 ) (552 1272 48 ) (552.001953 1272.001953 56 ) (576 1296 56 ) +4 1419 1420 (880 1600 56 ) (880 1600 48 ) (576 1296 48 ) (576 1296 56 ) +5 1419 1422 (1024 1024 48 ) (800 1024 48 ) (552 1272 48 ) (880 1600 48 ) (1024 1600 48 ) +4 1420 1421 (576 1344 48 ) (576 1296 48 ) (576 1296 64 ) (576 1344 64 ) +3 1420 1422 (576 1600 48 ) (880 1600 48 ) (576 1296 48 ) +4 1421 1434 (552 1272 56 ) (552 1272 64 ) (528 1296 64 ) (528 1296 56 ) +4 1421 1436 (528 1296 48 ) (552 1272 48 ) (552 1272 56 ) (528 1296 56 ) +4 1421 1422 (552 1272 48 ) (528 1296 48 ) (576 1344 48 ) (576 1296 48 ) +4 1422 1671 (844 1024 48 ) (800 1024 48 ) (800 1024 -1284 ) (844 1024 -1284 ) +4 1422 1660 (872 1024 48 ) (844 1024 48 ) (844 1024 -1284 ) (872 1024 -1284 ) +4 1422 1655 (952 1024 48 ) (872 1024 48 ) (872 1024 -1284 ) (952 1024 -1284 ) +4 1422 1585 (968 1024 48 ) (952 1024 48 ) (952 1024 -1284 ) (968 1024 -1284 ) +4 1422 1563 (1020 1024 48 ) (968 1024 48 ) (968 1024 -1284 ) (1020 1024 -1284 ) +4 1422 1557 (1024 1024 -1284 ) (1024 1024 48 ) (1020 1024 48 ) (1020 1024 -1284 ) +4 1422 1472 (512 1600 -1284 ) (512 1312 -1284 ) (512 1312 0 ) (512 1600 0 ) +4 1422 1446 (512 1440 48 ) (512 1600 48 ) (512 1600 0 ) (512 1440 0 ) +4 1422 1441 (512 1312 0 ) (512 1312 -1284 ) (800 1024 -1284 ) (800 1024 0 ) +4 1422 1437 (512 1312 48 ) (512 1312 0 ) (800 1024 0 ) (800 1024 48 ) +4 1423 1428 (688.001953 1136.001953 384 ) (752.001953 1072.001953 384 ) (736 1056 384 ) (672 1120 384 ) +4 1423 1427 (752.001953 1072.001953 384 ) (776.001953 1048.001953 384 ) (760 1032 384 ) (736 1056 384 ) +4 1423 1426 (552.001953 1272.001953 384 ) (688.001953 1136.001953 384 ) (672 1120 384 ) (536 1256 384 ) +4 1423 1425 (536 1256 384 ) (760 1032 384 ) (752 1040 432 ) (544 1248 432 ) +4 1424 1451 (512 1280 432 ) (512 1312 432 ) (512 1312 384 ) (512 1280 384 ) +4 1425 1772 (512 1024 400 ) (512 1024 384 ) (732 1024 384 ) (732 1024 400 ) +4 1425 1770 (732 1024 432 ) (512 1024 432 ) (512 1024 400 ) (732 1024 400 ) +4 1425 1500 (768 1024 432 ) (732 1024 432 ) (732 1024 384 ) (768 1024 384 ) +4 1425 1471 (512 1024 432 ) (512 1088 432 ) (512 1088 384 ) (512 1024 384 ) +4 1425 1451 (512 1116.500000 432 ) (512 1280 432 ) (512 1280 384 ) (512 1116.500000 384 ) +4 1425 1447 (512 1088 432 ) (512 1116.500000 432 ) (512 1116.500000 384 ) (512 1088 384 ) +3 1425 1438 (512 1024 384 ) (512 1280 384 ) (768 1024 384 ) +4 1426 1439 (536 1256 70 ) (536 1256 68 ) (672 1120 68 ) (672 1120 70 ) +4 1426 1438 (671.998047 1119.998047 384 ) (535.998047 1255.998047 384 ) (536 1256 70 ) (672 1120 70 ) +4 1426 1433 (672.003906 1120.003906 70 ) (672.003906 1120.003906 64 ) (688 1136 64 ) (688 1136 70 ) +4 1426 1431 (672.003906 1120.003906 112 ) (672.003906 1120.003906 104 ) (680 1128 104 ) (680 1128 112 ) +4 1426 1432 (672.003906 1120.003906 104 ) (672.003906 1120.003906 70 ) (688 1136 70 ) (688 1136 104 ) +4 1426 1429 (672.003906 1120.003906 240 ) (672.003906 1120.003906 232 ) (680 1128 232 ) (680 1128 240 ) +4 1426 1428 (672.003906 1120.003906 384 ) (672.003906 1120.003906 240 ) (688 1136 240 ) (688 1136 384 ) +4 1426 1430 (672.003906 1120.003906 232 ) (672.003906 1120.003906 112 ) (688 1136 112 ) (688 1136 232 ) +4 1427 1438 (759.998047 1031.998047 384 ) (735.998047 1055.998047 384 ) (736 1056 70 ) (760 1032 70 ) +4 1427 1431 (736 1056 104 ) (736 1056 112 ) (744 1064 112 ) (744 1064 104 ) +4 1427 1432 (752 1072 70 ) (736 1056 70 ) (736 1056 104 ) (752 1072 104 ) +4 1427 1429 (736 1056 232 ) (736 1056 240 ) (744 1064 240 ) (744 1064 232 ) +4 1427 1428 (736 1056 240 ) (736 1056 384 ) (752 1072 384 ) (752 1072 240 ) +4 1427 1430 (736 1056 112 ) (736 1056 232 ) (752 1072 232 ) (752 1072 112 ) +4 1428 1438 (735.998047 1055.998047 384 ) (671.998047 1119.998047 384 ) (671.998779 1119.998901 240 ) (735.998779 1055.998779 240 ) +4 1428 1429 (672 1119.996094 240 ) (680.001892 1127.997925 240 ) (744 1064 240 ) (736 1056 240 ) +4 1429 1438 (671.998779 1119.998901 240 ) (671.998840 1119.998901 232 ) (735.998840 1055.998779 232 ) (735.998779 1055.998779 240 ) +4 1429 1430 (672 1119.996094 232 ) (680.001892 1127.997925 232 ) (744 1064 232 ) (736 1056 232 ) +4 1430 1438 (671.998840 1119.998901 232 ) (672 1120 112 ) (736 1056 112 ) (735.998840 1055.998779 232 ) +4 1430 1431 (672 1119.996094 112 ) (680.001892 1127.997925 112 ) (744 1064 112 ) (736 1056 112 ) +4 1431 1438 (672 1120 112 ) (672 1120 104 ) (736 1056 104 ) (736 1056 112 ) +4 1431 1432 (672 1119.996094 104 ) (680.001892 1127.997925 104 ) (744 1064 104 ) (736 1056 104 ) +4 1432 1438 (672 1120 104 ) (672 1120 70 ) (736 1056 70 ) (736 1056 104 ) +4 1432 1433 (720 1072 70 ) (672 1120 70 ) (688 1136 70 ) (736 1088 70 ) +4 1433 1439 (720 1072 70 ) (672 1120 70 ) (672 1120 68 ) (720 1072 68 ) +4 1434 1436 (536.003906 1256.003906 56 ) (512.007813 1280 56 ) (528.003967 1295.996094 56 ) (552 1272 56 ) +4 1435 1671 (800 1024 56 ) (800 1024 64 ) (768 1024 64 ) (768 1024 56 ) +4 1435 1440 (768 1024 56 ) (768 1024 64 ) (760 1032 64 ) (760 1032 56 ) +4 1435 1436 (768.007813 1024 56 ) (760.003906 1032.003906 56 ) (776 1048 56 ) (800 1024 56 ) +4 1436 1671 (800 1024 48 ) (800 1024 56 ) (768 1024 56 ) (768 1024 48 ) +4 1436 1440 (768 1024 48 ) (768 1024 56 ) (720 1072 56 ) (720 1072 48 ) +5 1436 1437 (767.996094 1024 48 ) (512 1279.996094 48 ) (512 1280 48 ) (527.996094 1295.996094 48 ) (799.992188 1024 48 ) +4 1437 1671 (800 1024 0 ) (800 1024 48 ) (768 1024 48 ) (768 1024 0 ) +4 1437 1441 (512 1280 0 ) (512 1312.003906 0 ) (800.003906 1024 0 ) (768 1024 0 ) +4 1437 1440 (720 1072 0 ) (768 1024 0 ) (768 1024 48 ) (720 1072 48 ) +4 1438 1781 (512 1024 256 ) (512 1024 70 ) (672 1024 70 ) (672 1024 256 ) +4 1438 1780 (672 1024 70 ) (732 1024 70 ) (732 1024 256 ) (672 1024 256 ) +4 1438 1772 (732 1024 384 ) (512 1024 384 ) (512 1024 256 ) (732 1024 256 ) +4 1438 1741 (732 1024 288 ) (732 1024 70 ) (764 1024 70 ) (764 1024 288 ) +4 1438 1667 (764 1024 70 ) (768 1024 70 ) (768 1024 288 ) (764 1024 288 ) +4 1438 1500 (768 1024 384 ) (732 1024 384 ) (732 1024 288 ) (768 1024 288 ) +4 1438 1471 (512 1024 70 ) (512 1024 384 ) (512 1088 384 ) (512 1088 70 ) +4 1438 1451 (512 1116.500000 384 ) (512 1280 384 ) (512 1280 352 ) (512 1116.500000 352 ) +4 1438 1447 (512 1088 384 ) (512 1116.500000 384 ) (512 1116.500000 352 ) (512 1088 352 ) +4 1438 1456 (512 1280 352 ) (512 1280 70 ) (512 1088 70 ) (512 1088 352 ) +4 1438 1439 (512 1024 70 ) (512 1280 70 ) (720 1072 70 ) (672 1024 70 ) +4 1439 1781 (512 1024 70 ) (512 1024 68 ) (672 1024 68 ) (672 1024 70 ) +4 1439 1471 (512 1024 68 ) (512 1024 70 ) (512 1088 70 ) (512 1088 68 ) +4 1439 1456 (512 1088 70 ) (512 1280 70 ) (512 1280 68 ) (512 1088 68 ) +4 1440 1791 (672 1024 0 ) (732 1024 0 ) (732 1024 64 ) (672 1024 64 ) +4 1440 1743 (732 1024 0 ) (764 1024 0 ) (764 1024 64 ) (732 1024 64 ) +4 1440 1671 (764 1024 0 ) (768 1024 0 ) (768 1024 64 ) (764 1024 64 ) +3 1440 1441 (720 1072 0 ) (768 1024 0 ) (672 1024 0 ) +4 1441 1792 (732 1024 0 ) (512 1024 0 ) (512 1024 -1284 ) (732 1024 -1284 ) +4 1441 1743 (764 1024 0 ) (732 1024 0 ) (732 1024 -1284 ) (764 1024 -1284 ) +4 1441 1671 (800 1024 -1284 ) (800 1024 0 ) (764 1024 0 ) (764 1024 -1284 ) +4 1441 1472 (512 1312 0 ) (512 1312 -1284 ) (512 1024 -1284 ) (512 1024 0 ) +4 1442 1472 (128 2048 0 ) (512 2048 0 ) (512 1664 0 ) (128 1664 0 ) +4 1442 1462 (128 1664 48 ) (128 1664 384 ) (128 2048 384 ) (128 2048 48 ) +4 1442 1461 (128 1664 384 ) (128 1664 432 ) (128 2048 432 ) (128 2048 384 ) +4 1442 1465 (128 2048 0 ) (128 1664 0 ) (128 1664 48 ) (128 2048 48 ) +4 1442 1443 (128 1664 432 ) (128 1664 384 ) (512 1664 384 ) (512 1664 432 ) +4 1442 1444 (128 1664 48 ) (128 1664 0 ) (512 1664 0 ) (512 1664 48 ) +4 1443 1461 (128 1600 384 ) (128 1600 432 ) (128 1664 432 ) (128 1664 384 ) +4 1443 1445 (128 1600 432 ) (128 1600 384 ) (512 1600 384 ) (512 1600 432 ) +4 1444 1472 (512 1664 0 ) (512 1600 0 ) (128 1600 0 ) (128 1664 0 ) +4 1444 1465 (128 1664 0 ) (128 1600 0 ) (128 1600 48 ) (128 1664 48 ) +4 1444 1446 (128 1600 48 ) (128 1600 0 ) (512 1600 0 ) (512 1600 48 ) +4 1445 1461 (128 1440 384 ) (128 1440 432 ) (128 1600 432 ) (128 1600 384 ) +4 1445 1458 (128 1440 384 ) (128 1440 112 ) (256 1440 112 ) (256 1440 384 ) +4 1445 1457 (128 1440 432 ) (128 1440 384 ) (256 1440 384 ) (256 1440 432 ) +4 1445 1450 (512 1440 352 ) (512 1440 432 ) (348.799988 1440 432 ) (348.799988 1440 352 ) +4 1445 1449 (348.799988 1440 432 ) (256 1440 432 ) (256 1440 352 ) (348.799988 1440 352 ) +4 1445 1456 (256 1440 112 ) (512 1440 112 ) (512 1440 352 ) (256 1440 352 ) +4 1446 1472 (512 1600 0 ) (512 1440 0 ) (128 1440 0 ) (128 1600 0 ) +4 1446 1465 (128 1600 0 ) (128 1440 0 ) (128 1440 48 ) (128 1600 48 ) +4 1446 1460 (128 1440 68 ) (128 1440 64 ) (512 1440 64 ) (512 1440 68 ) +4 1446 1459 (128 1440 70 ) (128 1440 68 ) (256 1440 68 ) (256 1440 70 ) +4 1446 1456 (256 1440 68 ) (512 1440 68 ) (512 1440 70 ) (256 1440 70 ) +4 1447 1471 (512 1088 352 ) (512 1088 432 ) (473.599976 1088 432 ) (473.599976 1088 352 ) +4 1447 1466 (473.599976 1088 432 ) (256 1088 432 ) (256 1088 352 ) (473.599976 1088 352 ) +4 1447 1458 (256 1219.357178 352 ) (256 1088 352 ) (256 1088 384 ) (256 1219.357178 384 ) +4 1447 1457 (256 1088 384 ) (256 1088 432 ) (256 1219.357178 432 ) (256 1219.357178 384 ) +4 1447 1455 (344 1184 352 ) (293.599915 1204.250244 352 ) (293.599915 1204.250244 432 ) (344 1184 432 ) +4 1447 1452 (379.923431 1169.566650 352 ) (344 1184 352 ) (344 1184 432 ) (379.923431 1169.566650 432 ) +4 1447 1451 (512 1116.500122 432 ) (512 1116.500122 352 ) (379.923431 1169.566650 352 ) (379.923431 1169.566650 432 ) +4 1447 1448 (293.599915 1204.250244 352 ) (256 1219.357422 352 ) (256 1219.357422 432 ) (293.599915 1204.250244 432 ) +4 1447 1456 (512 1088 352 ) (256 1088 352 ) (256 1219.357178 352 ) (512 1116.500000 352 ) +4 1448 1458 (256 1294.333252 352 ) (256 1219.357178 352 ) (256 1219.357178 384 ) (256 1294.333252 384 ) +4 1448 1457 (256 1219.357178 384 ) (256 1219.357178 432 ) (256 1294.333374 432 ) (256 1294.333252 384 ) +4 1448 1455 (293.600586 1204.250000 432 ) (293.600586 1204.250000 352 ) (272 1256 352 ) (272 1256 432 ) +4 1448 1449 (272 1256 352 ) (256 1294.334717 352 ) (256 1294.334717 432 ) (272 1256 432 ) +3 1448 1456 (256 1219.357178 352 ) (256 1294.333374 352 ) (293.599976 1204.250000 352 ) +4 1449 1458 (256 1440 384 ) (256 1440 352 ) (256 1294.333252 352 ) (256 1294.333252 384 ) +4 1449 1457 (256 1440 432 ) (256 1440 384 ) (256 1294.333252 384 ) (256 1294.333374 432 ) +4 1449 1455 (272.001953 1256.003906 432 ) (272.001953 1256.003906 352 ) (293.596558 1307.740967 352 ) (293.596558 1307.740967 432 ) +4 1449 1450 (293.596558 1307.740967 352 ) (348.800354 1440 352 ) (348.800354 1440 432 ) (293.596558 1307.740967 432 ) +4 1449 1456 (256 1294.333374 352 ) (256 1440 352 ) (348.799988 1440 352 ) (272 1256 352 ) +4 1450 1455 (293.595703 1307.741211 432 ) (293.595703 1307.741211 352 ) (344.008728 1327.996460 352 ) (344.008728 1327.996460 432 ) +4 1450 1453 (344.008728 1327.996460 352 ) (466.611389 1377.256470 352 ) (466.611389 1377.256470 432 ) (344.008728 1327.996460 432 ) +4 1450 1451 (466.611389 1377.256470 352 ) (512 1395.492920 352 ) (512 1395.492920 432 ) (466.611389 1377.256470 432 ) +4 1450 1456 (348.799988 1440 352 ) (512 1440 352 ) (512 1395.492310 352 ) (293.596191 1307.740845 352 ) +4 1451 1455 (416 1256 352 ) (394.398926 1204.249634 352 ) (394.398926 1204.249634 432 ) (416 1256 432 ) +4 1451 1454 (431.395081 1292.885864 352 ) (416 1256 352 ) (416 1256 432 ) (431.395081 1292.885864 432 ) +4 1451 1453 (466.611328 1377.257813 432 ) (466.611328 1377.257813 352 ) (431.395081 1292.885864 352 ) (431.395081 1292.885864 432 ) +4 1451 1452 (394.398926 1204.249634 352 ) (379.922577 1169.566772 352 ) (379.922577 1169.566772 432 ) (394.398926 1204.249634 432 ) +4 1451 1456 (512 1395.492310 352 ) (512 1116.500000 352 ) (379.923370 1169.566528 352 ) (466.611084 1377.255737 352 ) +4 1452 1455 (394.400391 1204.249023 432 ) (394.400391 1204.249023 352 ) (344.001495 1184 352 ) (344.001495 1184 432 ) +3 1452 1456 (379.923370 1169.566528 352 ) (344 1184 352 ) (394.399933 1204.250000 352 ) +4 1453 1455 (344.008453 1327.996094 432 ) (344.008453 1327.996094 352 ) (394.400330 1307.749268 352 ) (394.400330 1307.749268 432 ) +4 1453 1454 (394.400330 1307.749268 352 ) (431.393127 1292.885986 352 ) (431.393127 1292.885986 432 ) (394.400330 1307.749268 432 ) +3 1453 1456 (344.009399 1327.996094 352 ) (466.611084 1377.255737 352 ) (431.395691 1292.885620 352 ) +3 1454 1456 (394.399994 1307.749878 352 ) (431.395691 1292.885620 352 ) (416 1256 352 ) +4 1454 1455 (394.399414 1307.751953 432 ) (394.399414 1307.751953 352 ) (416 1256 352 ) (416 1256 432 ) +8 1455 1456 (344 1184 352 ) (293.599976 1204.250000 352 ) (272 1256 352 ) (293.596191 1307.740845 352 ) (344.009399 1327.996094 352 ) (394.399994 1307.749878 352 ) (416 1256 352 ) (394.399933 1204.250000 352 ) +4 1456 1471 (512 1088 68 ) (512 1088 352 ) (473.599976 1088 352 ) (473.599976 1088 68 ) +4 1456 1466 (473.599976 1088 352 ) (256 1088 352 ) (256 1088 68 ) (473.599976 1088 68 ) +5 1456 1460 (473.599976 1088 68 ) (256 1088 68 ) (256 1440 68 ) (512 1440 68 ) (512 1280 68 ) +4 1456 1459 (256 1440 70 ) (256 1440 68 ) (256 1305.904785 68 ) (256 1312 70 ) +5 1456 1458 (256 1440 352 ) (256 1440 112 ) (256 1305.904785 68 ) (256 1088 68 ) (256 1088 352 ) +4 1457 1467 (192 1088 432 ) (128 1088 432 ) (128 1088 384 ) (192 1088 384 ) +4 1457 1466 (256 1088 432 ) (192 1088 432 ) (192 1088 384 ) (256 1088 384 ) +4 1457 1461 (128 1088 384 ) (128 1088 432 ) (128 1440 432 ) (128 1440 384 ) +5 1457 1458 (128 1152 384 ) (128 1440 384 ) (256 1440 384 ) (256 1088 384 ) (192 1088 384 ) +4 1458 1466 (192 1088 68 ) (256 1088 68 ) (256 1088 384 ) (192 1088 384 ) +5 1458 1460 (256 1088 68 ) (192 1088 68 ) (128 1152 68 ) (128 1305.904785 68 ) (256 1305.904785 68 ) +4 1458 1459 (256 1311.998779 70 ) (256 1305.903564 68 ) (128 1305.903564 68 ) (128 1311.998779 70 ) +4 1459 1460 (128 1305.904785 68 ) (128 1440 68 ) (256 1440 68 ) (256 1305.904785 68 ) +4 1460 1466 (473.599976 1088 68 ) (192 1088 68 ) (192 1088 64 ) (473.599976 1088 64 ) +4 1461 1473 (0 2048 432 ) (0 2048 384 ) (0 1088 384 ) (0 1088 432 ) +4 1461 1468 (128 1088 384 ) (128 1088 432 ) (0 1088 432 ) (0 1088 384 ) +4 1461 1464 (64 1152 384 ) (0 1216 384 ) (0 1600 384 ) (64 1600 384 ) +3 1461 1463 (128 1088 384 ) (0 1088 384 ) (0 1216 384 ) +4 1461 1462 (0 2048 384 ) (128 2048 384 ) (128 1600 384 ) (0 1600 384 ) +4 1462 1473 (0 2048 384 ) (0 2048 48 ) (0 1600 48 ) (0 1600 384 ) +4 1462 1464 (0 1600 48 ) (64 1600 48 ) (64 1600 384 ) (0 1600 384 ) +4 1462 1465 (128 2048 48 ) (128 1600 48 ) (0 1600 48 ) (0 2048 48 ) +4 1463 1473 (0 1216 48 ) (0 1088 48 ) (0 1088 384 ) (0 1216 384 ) +4 1463 1470 (128 1088 48 ) (128 1088 64 ) (0 1088 64 ) (0 1088 48 ) +4 1463 1468 (128 1088 64 ) (128 1088 384 ) (0 1088 384 ) (0 1088 64 ) +4 1463 1464 (64 1152 48 ) (0 1216 48 ) (0 1216 384 ) (64 1152 384 ) +3 1463 1465 (128 1088 48 ) (0 1088 48 ) (0 1216 48 ) +4 1464 1473 (0 1600 48 ) (0 1216 48 ) (0 1216 384 ) (0 1600 384 ) +4 1464 1465 (64 1152 48 ) (0 1216 48 ) (0 1600 48 ) (64 1600 48 ) +4 1465 1473 (0 2048 48 ) (0 2048 0 ) (0 1088 0 ) (0 1088 48 ) +4 1465 1472 (0 2048 0 ) (128 2048 0 ) (128 1088 0 ) (0 1088 0 ) +4 1465 1470 (0 1088 0 ) (128 1088 0 ) (128 1088 48 ) (0 1088 48 ) +4 1466 1787 (384 1024 96 ) (384 1024 88 ) (396 1024 88 ) (396 1024 96 ) +4 1466 1788 (384 1024 88 ) (384 1024 64 ) (396 1024 64 ) (396 1024 88 ) +4 1466 1784 (384 1024 256 ) (384 1024 248 ) (396 1024 248 ) (396 1024 256 ) +4 1466 1785 (384 1024 248 ) (384 1024 96 ) (396 1024 96 ) (396 1024 248 ) +4 1466 1782 (396 1024 64 ) (460.799988 1024 64 ) (460.799988 1024 68 ) (396 1024 68 ) +4 1466 1781 (460.799988 1024 68 ) (460.799988 1024 256 ) (396 1024 256 ) (396 1024 68 ) +4 1466 1772 (384 1024 400 ) (384 1024 256 ) (460.799988 1024 256 ) (460.799988 1024 400 ) +4 1466 1770 (460.799988 1024 432 ) (384 1024 432 ) (384 1024 400 ) (460.799988 1024 400 ) +4 1466 1760 (320 1024 64 ) (384 1024 64 ) (384 1024 384 ) (320 1024 384 ) +4 1466 1751 (192 1024 384 ) (192 1024 64 ) (320 1024 64 ) (320 1024 384 ) +4 1466 1749 (192 1024 400 ) (192 1024 384 ) (384 1024 384 ) (384 1024 400 ) +4 1466 1746 (384 1024 432 ) (192 1024 432 ) (192 1024 400 ) (384 1024 400 ) +4 1466 1471 (473.600098 1088 68 ) (473.600098 1088 432 ) (460.800110 1024 432 ) (460.799835 1024 68 ) +4 1466 1467 (192 1088 432 ) (192 1088 384 ) (192 1024 384 ) (192 1024 432 ) +4 1467 1749 (128 1024 400 ) (128 1024 384 ) (192 1024 384 ) (192 1024 400 ) +4 1467 1746 (192 1024 432 ) (128 1024 432 ) (128 1024 400 ) (192 1024 400 ) +4 1467 1468 (128 1088 432 ) (128 1088 384 ) (128 1024 384 ) (128 1024 432 ) +4 1468 1752 (0 1024 384 ) (0 1024 64 ) (128 1024 64 ) (128 1024 384 ) +4 1468 1750 (0 1024 400 ) (0 1024 384 ) (128 1024 384 ) (128 1024 400 ) +4 1468 1747 (128 1024 432 ) (0 1024 432 ) (0 1024 400 ) (128 1024 400 ) +4 1468 1473 (0 1024 64 ) (0 1024 432 ) (0 1088 432 ) (0 1088 64 ) +4 1468 1470 (0 1088 64 ) (128 1088 64 ) (128 1024 64 ) (0 1024 64 ) +4 1469 1753 (128 1024 0 ) (165.804932 1024 0 ) (165.804932 1024 48 ) (128 1024 48 ) +5 1469 1472 (165.804932 1024 0 ) (128 1024 0 ) (128 1088 0 ) (184 1088 0 ) (184.236008 1079.289917 0 ) +4 1469 1470 (128 1088 48 ) (128 1088 0 ) (128 1024 0 ) (128 1024 48 ) +4 1470 1755 (0 1024 64 ) (0 1024 0 ) (128 1024 0 ) (128 1024 64 ) +4 1470 1473 (0 1088 0 ) (0 1024 0 ) (0 1024 64 ) (0 1088 64 ) +4 1470 1472 (128 1024 0 ) (0 1024 0 ) (0 1088 0 ) (128 1088 0 ) +4 1471 1781 (512 1024 68 ) (512 1024 256 ) (460.799988 1024 256 ) (460.799988 1024 68 ) +4 1471 1772 (512 1024 256 ) (512 1024 400 ) (460.799988 1024 400 ) (460.799988 1024 256 ) +4 1471 1770 (512 1024 400 ) (512 1024 432 ) (460.799988 1024 432 ) (460.799988 1024 400 ) +4 1472 1792 (512 1024 -1284 ) (512 1024 0 ) (384 1024 0 ) (384 1024 -1284 ) +4 1472 1764 (384 1024 0 ) (320 1024 0 ) (320 1024 -1284 ) (384 1024 -1284 ) +4 1472 1756 (320 1024 0 ) (0 1024 0 ) (0 1024 -1284 ) (320 1024 -1284 ) +4 1472 1473 (0 2048 0 ) (0 2048 -1284 ) (0 1024 -1284 ) (0 1024 0 ) +4 1473 2468 (-1024 1024 400 ) (-1024 1024 -1284 ) (-128 1024 -1284 ) (-128 1024 400 ) +4 1473 2460 (-640 1024 400 ) (-128 1024 400 ) (-128 1024 560 ) (-640 1024 560 ) +4 1473 2467 (-1024 1024 560 ) (-1024 1024 400 ) (-640 1024 400 ) (-640 1024 560 ) +4 1473 2459 (-128 1024 5542.669922 ) (-1024 1024 5542.669922 ) (-1024 1024 560 ) (-128 1024 560 ) +4 1473 2444 (0 1024 -1284 ) (0 1024 384 ) (-128 1024 384 ) (-128 1024 -1284 ) +4 1473 2441 (0 1024 384 ) (0 1024 400 ) (-128 1024 400 ) (-128 1024 384 ) +4 1473 2440 (0 1024 400 ) (0 1024 608 ) (-128 1024 672 ) (-128 1024 400 ) +4 1473 2438 (-120 1024 5542.669922 ) (-128 1024 5542.669922 ) (-128 1024 672 ) (-120 1024 668 ) +4 1473 2429 (0 1024 608 ) (0 1024 5542.669922 ) (-120 1024 5542.669922 ) (-120 1024 668 ) +4 1473 1474 (-1024 1024 -1284 ) (-1024 1024 5542.669922 ) (-1024 2048 5542.669922 ) (-1024 2048 -1284 ) +4 1474 3059 (-2048 1024 -1284 ) (-2048 1024 5542.669922 ) (-2048 2048 5542.669922 ) (-2048 2048 -1284 ) +4 1474 2546 (-2048 1024 64 ) (-2048 1024 -1284 ) (-1024 1024 -1284 ) (-1024 1024 64 ) +4 1474 2541 (-1040 1024 64 ) (-1024 1024 64 ) (-1024 1024 5542.669922 ) (-1040 1024 5542.669922 ) +4 1474 2545 (-2048 1024 5542.669922 ) (-2048 1024 64 ) (-1040 1024 64 ) (-1040 1024 5542.669922 ) +4 1475 1768 (732 1024 5542.669922 ) (732 1024 568 ) (732 776 568 ) (732 776 5542.669922 ) +3 1475 1504 (800.800049 776 568 ) (1024 776 568 ) (1024 776 940 ) +5 1475 1503 (732 776 5542.669922 ) (732 776 568 ) (800.800049 776 568 ) (1024 776 940 ) (1024 776 5542.669922 ) +4 1475 1481 (732 820 568 ) (732 992 568 ) (798 992 568 ) (798 820 568 ) +3 1475 1480 (732 776.341064 568 ) (732 820 568 ) (798 820 568 ) +5 1475 1479 (810 776 568 ) (732 776 568 ) (732 776.341064 568 ) (798 820 568 ) (810 820 568 ) +4 1475 1478 (1024 776 568 ) (810 776 568 ) (810 820 568 ) (1024 820 568 ) +4 1475 1477 (810 832 568 ) (810 992 568 ) (1024 992 568 ) (1024 832 568 ) +4 1475 1476 (732 992 568 ) (732 1024 568 ) (1024 1024 568 ) (1024 992 568 ) +4 1476 1768 (732 1024 568 ) (732 1024 560 ) (732 992 560 ) (732 992 568 ) +4 1476 1485 (732 992 560 ) (732 1024 560 ) (808 1024 560 ) (776 992 560 ) +4 1476 1484 (808 1024 560 ) (828 1024 560 ) (796 992 560 ) (796 1012 560 ) +3 1476 1483 (796 992 560 ) (776 992 560 ) (796 1012 560 ) +4 1476 1482 (956 1024 560 ) (1024 1024 560 ) (1024 992 560 ) (924 992 560 ) +4 1476 1481 (732 992 560 ) (802 992 560 ) (798 992 568 ) (732 992 568 ) +4 1476 1477 (810 992 560 ) (1024 992 560 ) (1024 992 568 ) (810 992 568 ) +4 1477 1482 (924 992 560 ) (1024 992 560 ) (1024 952 560 ) (924 952 560 ) +4 1478 1504 (810 776 560 ) (1024 776 560 ) (1024 776 568 ) (810 776 568 ) +4 1478 1493 (1024 776 560 ) (810 776 560 ) (810 824 560 ) (1024 824 560 ) +4 1478 1479 (810 824 560 ) (810 776 560 ) (810 776 568 ) (810 820 568 ) +4 1479 1768 (732 776.341064 560 ) (732 776 560 ) (732 776 568 ) (732 776.341064 568 ) +4 1479 1504 (796 776 560 ) (810 776 560 ) (810 776 568 ) (800.800049 776 568 ) +4 1479 1503 (732 776 568 ) (732 776 560 ) (796 776 560 ) (800.800049 776 568 ) +5 1479 1493 (810 776 560 ) (796 776 560 ) (796 818.677002 560 ) (804.046936 824 560 ) (810 824 560 ) +4 1479 1492 (796 776 560 ) (732 776 560 ) (732 776.341064 560 ) (796 818.677002 560 ) +5 1479 1480 (802 822.649475 560 ) (732 776.344482 560 ) (732 776.343689 568 ) (797.995117 820 568 ) (798.009644 820.009644 567.980774 ) +4 1480 1768 (732 824 560 ) (732 776.341064 560 ) (732 776.341064 568 ) (732 820 568 ) +4 1480 1493 (796 824 560 ) (802 824 560 ) (802 822.645996 560 ) (796 818.677002 560 ) +4 1480 1492 (732 776.341064 560 ) (732 824 560 ) (796 824 560 ) (796 818.677002 560 ) +4 1480 1481 (798 820 568 ) (802 824 560 ) (732 824 560 ) (732 820 568 ) +4 1481 1768 (732 992 560 ) (732 824 560 ) (732 820 568 ) (732 992 568 ) +4 1481 1492 (732 824 560 ) (732 952 560 ) (796 952 560 ) (796 824 560 ) +4 1481 1485 (732 952 560 ) (732 992 560 ) (776 992 560 ) (736 952 560 ) +4 1481 1483 (776 992 560 ) (796 992 560 ) (796 952 560 ) (736 952 560 ) +5 1482 1494 (956 1024 460 ) (1024 1024 460 ) (1024 952 460 ) (924 952 460 ) (924 992 460 ) +4 1483 1492 (796 952 560 ) (736 952 560 ) (736 952 528 ) (776.799988 952 528 ) +3 1483 1488 (776.800049 952 528 ) (736 952 528 ) (776.799988 992.799988 528 ) +4 1483 1487 (768 984 528 ) (736 952 528 ) (736 952 544 ) (768 984 544 ) +4 1483 1485 (736 952 544 ) (736 952 560 ) (796 1012 560 ) (786.400024 1002.400024 544 ) +4 1483 1484 (776.796875 991.996826 528 ) (776.796875 992.792969 528 ) (795.996887 1011.992981 560 ) (795.996826 991.996826 560 ) +4 1484 1489 (776.799988 992 528 ) (776.799988 992.799988 528 ) (808 1024 528 ) (808.799988 1024 528 ) +4 1484 1486 (808 1024 528 ) (804 1020 528 ) (804 1020 544 ) (808 1024 544 ) +4 1484 1485 (786.400024 1002.400024 544 ) (796 1012 560 ) (808 1024 560 ) (808 1024 544 ) +4 1485 1768 (732 1024 560 ) (732 1024 544 ) (732 952 544 ) (732 952 560 ) +4 1485 1492 (736 952 560 ) (732 952 560 ) (732 952 544 ) (736 952 544 ) +4 1485 1487 (768 984 544 ) (736 952 544 ) (732 952 544 ) (732 1020 544 ) +3 1485 1486 (808 1024 544 ) (804 1020 544 ) (800 1024 544 ) +3 1486 1489 (800 1024 528 ) (808 1024 528 ) (804 1020 528 ) +4 1487 1769 (732 1020 528 ) (732 952 528 ) (732 952 544 ) (732 1020 544 ) +4 1487 1492 (732 952 544 ) (732 952 528 ) (736 952 528 ) (736 952 544 ) +3 1487 1490 (732 956 528 ) (732 1020 528 ) (764 988 528 ) +5 1487 1488 (736 952 528 ) (732 952 528 ) (732 956 528 ) (764 988 528 ) (768 984 528 ) +4 1488 1770 (732 956 460 ) (732 952 460 ) (732 952 528 ) (732 956 528 ) +4 1488 1492 (732 952 460 ) (736 952 460 ) (776.800049 952 528 ) (732 952 528 ) +5 1488 1490 (732 956 528 ) (768 992 528 ) (771.142883 995.142883 518.571411 ) (736 960 460 ) (732 956 460 ) +3 1488 1489 (767.996826 991.996826 513.333252 ) (776.796875 1000.796875 528 ) (776.796875 991.996826 528 ) +3 1489 1491 (772.888916 996.888916 513.333313 ) (768 992 513.333313 ) (771.142883 995.142883 518.571411 ) +4 1490 1770 (732 1024 528 ) (732 1024 460 ) (732 956 460 ) (732 956 528 ) +4 1490 1497 (732 988 460 ) (732 1024 460 ) (736 1024 460 ) (736 992 460 ) +5 1490 1491 (757.471802 1024 495.789185 ) (771.140625 995.144531 518.570313 ) (767.994568 991.998474 513.326843 ) (735.998291 991.998291 460 ) (735.998169 1024 460 ) +3 1491 1497 (736 1024 460 ) (768 1024 460 ) (736 992 460 ) +4 1492 1770 (732 952 460 ) (732 776 460 ) (732 776 528 ) (732 952 528 ) +4 1492 1769 (732 776 528 ) (732 776 544 ) (732 952 544 ) (732 952 528 ) +4 1492 1768 (732 776 544 ) (732 776 560 ) (732 952 560 ) (732 952 544 ) +4 1492 1503 (732 776 560 ) (732 776 460 ) (736 776 460 ) (796 776 560 ) +3 1492 1493 (796 824 560 ) (796 776 560 ) (748 776 480 ) +4 1493 1504 (1024 776 480 ) (1024 776 560 ) (796 776 560 ) (748 776 480 ) +4 1494 1670 (844 832 288 ) (844 780 288 ) (768 780 288 ) (768 832 288 ) +5 1494 1668 (768 992 288 ) (800 1024 288 ) (844 1024 288 ) (844 832 288 ) (768 832 288 ) +4 1494 1657 (844 1024 288 ) (872 1024 288 ) (872 780 288 ) (844 780 288 ) +4 1494 1586 (872 1024 288 ) (952 1024 288 ) (952 780 288 ) (872 780 288 ) +4 1494 1570 (952 1024 288 ) (960 1024 288 ) (960 780 288 ) (952 780 288 ) +4 1494 1568 (960 1024 288 ) (968 1024 288 ) (968 780 288 ) (960 780 288 ) +4 1494 1560 (1020 784 288 ) (1020 780 288 ) (968 780 288 ) (968 784 288 ) +4 1494 1559 (968 1024 288 ) (1020 1024 288 ) (1020 784 288 ) (968 784 288 ) +4 1494 1556 (1020 1024 288 ) (1024 1024 288 ) (1024 780 288 ) (1020 780 288 ) +4 1494 1502 (768 780 288 ) (1024 780 288 ) (1024 780 420 ) (768 780 420 ) +4 1494 1501 (1024 780 440 ) (1024 780 460 ) (768 780 460 ) (768 780 440 ) +4 1494 1499 (784 1008 288 ) (768 992 288 ) (768 992 384 ) (784 1008 384 ) +4 1494 1498 (768 992 384 ) (768 992 432 ) (784 1008 432 ) (784 1008 384 ) +4 1494 1495 (768 992 432 ) (768 992 460 ) (784 1008 460 ) (784 1008 432 ) +4 1495 1496 (783.996033 1008.003845 432 ) (768 992.007813 432 ) (768 1020.007813 460 ) (769.996033 1022.003845 460 ) +3 1496 1498 (784 1008 432 ) (768 992 432 ) (768 1024 432 ) +4 1497 1770 (732 1024 460 ) (732 1024 432 ) (732 988 432 ) (732 988 460 ) +3 1497 1500 (732 988 432 ) (732 1024 432 ) (768 1024 432 ) +3 1498 1499 (768 992 384 ) (768 1024 384 ) (784 1008 384 ) +3 1499 1669 (768 1024 288 ) (784 1008 288 ) (768 992 288 ) +4 1500 1772 (732 1024 400 ) (732 1024 288 ) (732 988 288 ) (732 988 400 ) +4 1500 1770 (732 1024 432 ) (732 1024 400 ) (732 988 400 ) (732 988 432 ) +4 1500 1741 (732 988 288 ) (732 1024 288 ) (764 1024 288 ) (764 1020 288 ) +3 1500 1667 (764 1024 288 ) (768 1024 288 ) (764 1020 288 ) +4 1502 1742 (748 780 288 ) (764 780 288 ) (764 776 288 ) (748 776 288 ) +4 1502 1672 (764 780 288 ) (844 780 288 ) (844 776 288 ) (764 776 288 ) +4 1502 1658 (844 780 288 ) (872 780 288 ) (872 776 288 ) (844 776 288 ) +4 1502 1587 (872 780 288 ) (952 780 288 ) (952 776 288 ) (872 776 288 ) +4 1502 1571 (952 780 288 ) (960 780 288 ) (960 776 288 ) (952 776 288 ) +4 1502 1568 (960 780 288 ) (968 780 288 ) (968 776 288 ) (960 776 288 ) +4 1502 1561 (968 780 288 ) (1020 780 288 ) (1020 776 288 ) (968 776 288 ) +4 1502 1556 (1020 780 288 ) (1024 780 288 ) (1024 776 288 ) (1020 776 288 ) +4 1503 1794 (732 768 466.666504 ) (732 768 460 ) (736 768 460 ) (740 768 466.666718 ) +5 1503 1793 (1024 768 940 ) (1024 768 5542.669922 ) (732 768 5542.669922 ) (732 768 466.666504 ) (740 768 466.666718 ) +4 1503 1770 (732 768 460 ) (732 768 528 ) (732 776 528 ) (732 776 460 ) +4 1503 1769 (732 768 528 ) (732 768 544 ) (732 776 544 ) (732 776 528 ) +4 1503 1768 (732 768 544 ) (732 768 5542.669922 ) (732 776 5542.669922 ) (732 776 544 ) +4 1503 1504 (748 776 480 ) (1024 776 940.001709 ) (1024 768 940.001953 ) (740 768 466.666687 ) +3 1504 1793 (1024 768 466.666718 ) (1024 768 940 ) (740 768 466.666687 ) +4 1505 1795 (1024 768 376 ) (1024 768 412 ) (1004 768 412 ) (1004 768 376 ) +4 1505 1509 (1004 770 376 ) (1004 768 376 ) (1004 768 412 ) (1004 770 412 ) +4 1505 1507 (1004 772 376 ) (1004 770 376 ) (1004 770 412 ) (1004 772 412 ) +4 1506 1795 (1024 768 292 ) (1024 768 368 ) (1004 768 368 ) (1004 768 292 ) +4 1506 1510 (1004 770 292 ) (1004 768 292 ) (1004 768 368 ) (1004 770 368 ) +4 1506 1508 (1004 772 292 ) (1004 770 292 ) (1004 770 368 ) (1004 772 368 ) +4 1507 1509 (1002 770 376 ) (1004 770 376 ) (1004 770 412 ) (1002 770 412 ) +4 1508 1510 (1002 770 292 ) (1004 770 292 ) (1004 770 368 ) (1002 770 368 ) +4 1509 1795 (1004 768 412 ) (996 768 412 ) (996 768 376 ) (1004 768 376 ) +4 1509 1511 (996 768 376 ) (996 768 412 ) (996 770 412 ) (996 770 376 ) +4 1510 1795 (996 768 368 ) (996 768 292 ) (1004 768 292 ) (1004 768 368 ) +4 1510 1513 (996 768 304 ) (996 768 368 ) (996 770 368 ) (996 770 304 ) +4 1511 1795 (996 768 412 ) (994 768 412 ) (994 768 376 ) (996 768 376 ) +4 1512 1795 (954 768 412 ) (952 768 412 ) (952 768 376 ) (954 768 376 ) +4 1512 1517 (952 768 376 ) (952 768 412 ) (952 770 412 ) (952 770 376 ) +4 1513 1795 (994 768 304 ) (996 768 304 ) (996 768 368 ) (994 768 368 ) +4 1514 1795 (952 768 368 ) (952 768 304 ) (954 768 304 ) (954 768 368 ) +4 1514 1518 (952 768 304 ) (952 768 368 ) (952 770 368 ) (952 770 304 ) +4 1515 1519 (944 772 376 ) (944 770 376 ) (944 770 412 ) (944 772 412 ) +4 1515 1517 (944 770 412 ) (944 770 376 ) (946 770 376 ) (946 770 412 ) +4 1516 1520 (944 772 292 ) (944 770 292 ) (944 770 368 ) (944 772 368 ) +4 1516 1518 (944 770 368 ) (944 770 292 ) (946 770 292 ) (946 770 368 ) +4 1517 1795 (952 768 412 ) (944 768 412 ) (944 768 376 ) (952 768 376 ) +4 1517 1519 (944 768 376 ) (944 768 412 ) (944 770 412 ) (944 770 376 ) +4 1518 1795 (944 768 368 ) (944 768 292 ) (952 768 292 ) (952 768 368 ) +4 1518 1520 (944 770 292 ) (944 768 292 ) (944 768 368 ) (944 770 368 ) +4 1519 1795 (944 768 412 ) (918 768 412 ) (918 768 376 ) (944 768 376 ) +4 1519 1522 (918 775 412 ) (918 775 376 ) (918 768 376 ) (918 768 412 ) +5 1520 1795 (918 768 368 ) (918 768 298 ) (924 768 292 ) (944 768 292 ) (944 768 368 ) +4 1520 1524 (918 770 298 ) (918 769 298 ) (918 769 368 ) (918 770 368 ) +4 1520 1525 (918 769 298 ) (918 768 298 ) (918 768 368 ) (918 769 368 ) +4 1520 1521 (919 775 297 ) (924 775 292 ) (924 768 292 ) (919 768 297 ) +3 1521 1795 (919 768 292 ) (924 768 292 ) (919 768 297 ) +4 1522 1795 (918 768 412 ) (914 768 412 ) (914 768 376 ) (918 768 376 ) +4 1522 1526 (914 775 412 ) (914 775 376 ) (914 768 376 ) (914 768 412 ) +4 1523 1527 (914 770 298 ) (914 769 298 ) (914 769 368 ) (914 770 368 ) +4 1523 1525 (914 769 298 ) (915 769 298 ) (915 769 368 ) (914 769 368 ) +4 1524 1525 (917 769 298 ) (918 769 298 ) (918 769 368 ) (917 769 368 ) +4 1525 1795 (914 768 368 ) (914 768 298 ) (918 768 298 ) (918 768 368 ) +4 1525 1527 (914 769 298 ) (914 768 298 ) (914 768 368 ) (914 769 368 ) +4 1526 1795 (914 768 412 ) (888 768 412 ) (888 768 376 ) (914 768 376 ) +4 1526 1529 (888 770 376 ) (888 768 376 ) (888 768 412 ) (888 770 412 ) +4 1526 1528 (888 772 376 ) (888 770 376 ) (888 770 412 ) (888 772 412 ) +5 1527 1795 (888 768 368 ) (888 768 292 ) (908 768 292 ) (914 768 298 ) (914 768 368 ) +4 1527 1532 (908 768 292 ) (908 775 292 ) (913 775 297 ) (913 768 297 ) +4 1527 1530 (888 772 292 ) (888 770 292 ) (888 770 368 ) (888 772 368 ) +4 1527 1531 (888 770 292 ) (888 768 292 ) (888 768 368 ) (888 770 368 ) +4 1528 1529 (886 770 376 ) (888 770 376 ) (888 770 412 ) (886 770 412 ) +4 1529 1795 (888 768 412 ) (880 768 412 ) (880 768 376 ) (888 768 376 ) +4 1529 1533 (880 768 412 ) (880 770 412 ) (880 770 376 ) (880 768 376 ) +4 1530 1531 (886 770 292 ) (888 770 292 ) (888 770 368 ) (886 770 368 ) +4 1531 1795 (880 768 368 ) (880 768 292 ) (888 768 292 ) (888 768 368 ) +4 1531 1536 (880 768 304 ) (880 768 368 ) (880 770 368 ) (880 770 304 ) +3 1532 1795 (908 768 292 ) (913 768 292 ) (913 768 297 ) +4 1533 1795 (880 768 412 ) (878 768 412 ) (878 768 376 ) (880 768 376 ) +4 1534 1795 (838 768 412 ) (836 768 412 ) (836 768 376 ) (838 768 376 ) +4 1534 1538 (836 768 412 ) (836 770 412 ) (836 770 376 ) (836 768 376 ) +4 1535 1795 (836 768 368 ) (836 768 304 ) (838 768 304 ) (838 768 368 ) +4 1535 1540 (836 770 304 ) (836 768 304 ) (836 768 368 ) (836 770 368 ) +4 1536 1795 (878 768 304 ) (880 768 304 ) (880 768 368 ) (878 768 368 ) +4 1537 1541 (828 772 376 ) (828 770 376 ) (828 770 412 ) (828 772 412 ) +4 1537 1538 (828 770 412 ) (828 770 376 ) (830 770 376 ) (830 770 412 ) +4 1538 1795 (836 768 412 ) (828 768 412 ) (828 768 376 ) (836 768 376 ) +4 1538 1541 (828 768 376 ) (828 768 412 ) (828 770 412 ) (828 770 376 ) +4 1539 1542 (828 772 292 ) (828 770 292 ) (828 770 368 ) (828 772 368 ) +4 1539 1540 (830 770 368 ) (828 770 368 ) (828 770 292 ) (830 770 292 ) +4 1540 1795 (828 768 368 ) (828 768 292 ) (836 768 292 ) (836 768 368 ) +4 1540 1542 (828 770 292 ) (828 768 292 ) (828 768 368 ) (828 770 368 ) +4 1541 1795 (828 768 412 ) (802 768 412 ) (802 768 376 ) (828 768 376 ) +4 1541 1544 (802 775 412 ) (802 775 376 ) (802 768 376 ) (802 768 412 ) +5 1542 1795 (802 768 368 ) (802 768 298 ) (808 768 292 ) (828 768 292 ) (828 768 368 ) +4 1542 1546 (802 770 298 ) (802 769 298 ) (802 769 368 ) (802 770 368 ) +4 1542 1547 (802 769 298 ) (802 768 298 ) (802 768 368 ) (802 769 368 ) +4 1542 1543 (803 775 297 ) (808 775 292 ) (808 768 292 ) (803 768 297 ) +3 1543 1795 (803 768 292 ) (808 768 292 ) (803 768 297 ) +4 1544 1795 (802 768 412 ) (798 768 412 ) (798 768 376 ) (802 768 376 ) +4 1544 1548 (798 775 412 ) (798 775 376 ) (798 768 376 ) (798 768 412 ) +4 1545 1549 (798 770 298 ) (798 769 298 ) (798 769 368 ) (798 770 368 ) +4 1545 1547 (798 769 298 ) (799 769 298 ) (799 769 368 ) (798 769 368 ) +4 1546 1547 (801 769 298 ) (802 769 298 ) (802 769 368 ) (801 769 368 ) +4 1547 1795 (798 768 368 ) (798 768 298 ) (802 768 298 ) (802 768 368 ) +4 1547 1549 (798 769 298 ) (798 768 298 ) (798 768 368 ) (798 769 368 ) +4 1548 1795 (798 768 412 ) (772 768 412 ) (772 768 376 ) (798 768 376 ) +4 1548 1552 (772 770 376 ) (772 768 376 ) (772 768 412 ) (772 770 412 ) +4 1548 1550 (772 772 376 ) (772 770 376 ) (772 770 412 ) (772 772 412 ) +5 1549 1795 (772 768 368 ) (772 768 292 ) (792 768 292 ) (798 768 298 ) (798 768 368 ) +4 1549 1554 (791.996094 768 292 ) (791.996094 775 292 ) (797 775 297.002319 ) (797 768 297.002289 ) +4 1549 1553 (772 770 292 ) (772 768 292 ) (772 768 368 ) (772 770 368 ) +4 1549 1551 (772 772 292 ) (772 770 292 ) (772 770 368 ) (772 772 368 ) +4 1550 1552 (770 770 376 ) (772 770 376 ) (772 770 412 ) (770 770 412 ) +4 1551 1553 (770 770 292 ) (772 770 292 ) (772 770 368 ) (770 770 368 ) +4 1552 1795 (772 768 412 ) (764 768 412 ) (764 768 376 ) (772 768 376 ) +4 1553 1795 (764 768 368 ) (764 768 292 ) (772 768 292 ) (772 768 368 ) +4 1553 1555 (764 770 368 ) (764 770 304 ) (764 768 304 ) (764 768 368 ) +3 1554 1795 (792 768 292 ) (797 768 292 ) (797 768 297 ) +4 1555 1795 (762 768 304 ) (764 768 304 ) (764 768 368 ) (762 768 368 ) +4 1556 1561 (1020 776 288 ) (1020 780 288 ) (1020 780 202 ) (1020 776 202 ) +4 1556 1560 (1020 780 288 ) (1020 784 288 ) (1020 784 202 ) (1020 780 202 ) +4 1556 1559 (1020 784 288 ) (1020 1024 288 ) (1020 1024 202 ) (1020 784 202 ) +4 1556 1557 (1020 784 202 ) (1020 1024 202 ) (1024 1024 202 ) (1024 784 202 ) +4 1557 1563 (1020 784 -1284 ) (1020 784 76 ) (1020 1024 76 ) (1020 1024 -1284 ) +4 1557 1559 (1020 784 76 ) (1020 784 202 ) (1020 1024 202 ) (1020 1024 76 ) +4 1557 1558 (1020 784 64 ) (1020 784 -1284 ) (1024 784 -1284 ) (1024 784 64 ) +4 1558 1878 (1024 768 -1284 ) (1024 768 0 ) (1020 768 0 ) (1020 768 -1284 ) +4 1558 1870 (1024 768 0 ) (1024 768 64 ) (1020 768 64 ) (1020 768 0 ) +4 1558 1567 (1020 768 -1284 ) (1020 768 64 ) (1020 776 64 ) (1020 776 -1284 ) +4 1558 1564 (1020 776 64 ) (1020 780 64 ) (1020 780 -1284 ) (1020 776 -1284 ) +4 1558 1563 (1020 780 64 ) (1020 784 64 ) (1020 784 -1284 ) (1020 780 -1284 ) +4 1559 1582 (968 1024 96 ) (968 1024 76 ) (968 784 76 ) (968 784 96 ) +4 1559 1581 (968 1024 116 ) (968 1024 96 ) (968 784 96 ) (968 784 116 ) +4 1559 1580 (968 1024 124 ) (968 1024 116 ) (968 784 116 ) (968 784 124 ) +4 1559 1576 (968 1024 136 ) (968 1024 124 ) (968 784 124 ) (968 784 136 ) +4 1559 1574 (968 1024 174 ) (968 1024 136 ) (968 784 136 ) (968 784 174 ) +4 1559 1569 (968 1024 202 ) (968 1024 174 ) (968 784 174 ) (968 784 202 ) +4 1559 1568 (968 784 288 ) (968 1024 288 ) (968 1024 202 ) (968 784 202 ) +4 1559 1563 (968 784 76 ) (968 1024 76 ) (1020 1024 76 ) (1020 784 76 ) +4 1559 1560 (968 784 288 ) (968 784 190 ) (1020 784 190 ) (1020 784 288 ) +4 1560 1569 (968 784 202 ) (968 784 190 ) (968 780 190 ) (968 780 202 ) +4 1560 1568 (968 780 288 ) (968 784 288 ) (968 784 202 ) (968 780 202 ) +4 1560 1561 (968 780 288 ) (968 780 202 ) (1020 780 202 ) (1020 780 288 ) +4 1561 1568 (968 776 288 ) (968 780 288 ) (968 780 202 ) (968 776 202 ) +4 1562 1565 (968 776 190 ) (968 776 76 ) (1020 776 76 ) (1020 776 190 ) +4 1563 1585 (968 1024 64 ) (968 1024 -1284 ) (968 780 -1284 ) (968 780 64 ) +4 1563 1582 (968 1024 76 ) (968 1024 64 ) (968 780 64 ) (968 780 76 ) +4 1563 1564 (968 780 -1284 ) (1020 780 -1284 ) (1020 780 72 ) (968 780 72 ) +4 1564 1585 (968 780 -1284 ) (968 776 -1284 ) (968 776 64 ) (968 780 64 ) +4 1564 1567 (968 776 64 ) (968 776 -1284 ) (1020 776 -1284 ) (1020 776 64 ) +4 1564 1566 (984 776 64 ) (1004 776 64 ) (1002 776 68 ) (986 776 68 ) +4 1565 1825 (968 768 96 ) (968 768 88 ) (992 768 88 ) (992 768 96 ) +4 1565 1824 (992 768 116 ) (968 768 116 ) (968 768 96 ) (992 768 96 ) +4 1565 1823 (1020 768 80 ) (1020 768 116 ) (992 768 116 ) (992 768 80 ) +4 1565 1821 (1020 768 116 ) (1020 768 120 ) (968 768 120 ) (968 768 116 ) +4 1565 1808 (1020 768 123.452766 ) (1020 768 190 ) (968 768 190 ) (968 768 173.372452 ) +4 1565 1807 (1020 768 120 ) (1020 768 123.452766 ) (968 768 173.372452 ) (968 768 120 ) +4 1566 1567 (984 776 64 ) (1004 776 64 ) (1004 768 64 ) (984 768 64 ) +4 1567 1878 (1020 768 -1284 ) (1020 768 0 ) (968 768 0 ) (968 768 -1284 ) +4 1567 1870 (1020 768 0 ) (1020 768 64 ) (968 768 64 ) (968 768 0 ) +4 1567 1585 (968 768 -1284 ) (968 768 64 ) (968 776 64 ) (968 776 -1284 ) +4 1568 1571 (960 776 288 ) (960 780 288 ) (960 780 202 ) (960 776 202 ) +4 1568 1570 (960 780 288 ) (960 1024 288 ) (960 1024 202 ) (960 780 202 ) +4 1568 1569 (960 780 202 ) (960 1024 202 ) (968 1024 202 ) (968 780 202 ) +4 1569 1574 (960 1024 174 ) (968 1024 174 ) (968 780 174 ) (960 780 174 ) +4 1569 1570 (960 1024 174 ) (960 780 174 ) (960 780 202 ) (960 1024 202 ) +4 1570 1586 (952 780 288 ) (952 1024 288 ) (952 1024 174 ) (952 780 174 ) +4 1570 1574 (952 780 174 ) (952 1024 174 ) (960 1024 174 ) (960 780 174 ) +4 1570 1571 (952 780 288 ) (952 780 197 ) (960 780 197 ) (960 780 288 ) +4 1570 1572 (952 780 194 ) (952 780 174 ) (960 780 174 ) (960 780 194 ) +4 1571 1608 (952 780 228 ) (952 780 197 ) (952 776 197 ) (952 776 228 ) +4 1571 1597 (952 780 231 ) (952 780 228 ) (952 776 228 ) (952 776 231 ) +4 1571 1593 (952 780 233 ) (952 780 231 ) (952 776 231 ) (952 776 233 ) +4 1571 1587 (952 776 288 ) (952 780 288 ) (952 780 236 ) (952 776 236 ) +4 1572 1610 (952 780 191 ) (952 780 174 ) (952 776 174 ) (952 776 191 ) +4 1573 1807 (952 768 182 ) (952 768 174 ) (954 768 174 ) (954 768 182 ) +4 1573 1641 (952 768 174 ) (952 768 182 ) (952 770 182 ) (952 770 174 ) +3 1573 1575 (952 768 174 ) (952 770 174 ) (954 768 174 ) +4 1574 1586 (952 780 174 ) (952 1024 174 ) (952 1024 136 ) (952 780 136 ) +4 1574 1577 (952 780 136 ) (952 1024 136 ) (960 1024 136 ) (960 780 136 ) +4 1574 1576 (960 1024 136 ) (968 1024 136 ) (968 780 136 ) (960 780 136 ) +4 1575 1807 (954 768 174 ) (952 768 174 ) (952 768 136 ) (954 768 136 ) +4 1575 1641 (952 768 136 ) (952 768 174 ) (952 770 174 ) (952 770 136 ) +3 1575 1578 (952 768 136 ) (952 770 136 ) (954 768 136 ) +4 1576 1580 (960 1024 124 ) (968 1024 124 ) (968 780 124 ) (960 780 124 ) +4 1576 1579 (960 1024 124 ) (960 780 124 ) (960 780 128 ) (960 1024 128 ) +4 1576 1577 (960 780 128 ) (960 780 136 ) (960 1024 136 ) (960 1024 128 ) +4 1577 1610 (952 776 136 ) (952 780 136 ) (952 780 128 ) (952 776 128 ) +4 1577 1586 (952 780 136 ) (952 1024 136 ) (952 1024 128 ) (952 780 128 ) +4 1577 1579 (952 776 128 ) (952 1024 128 ) (960 1024 128 ) (960 776 128 ) +4 1578 1807 (954 768 136 ) (952 768 136 ) (952 768 128 ) (954 768 128 ) +4 1578 1641 (952 768 128 ) (952 768 136 ) (952 770 136 ) (952 770 128 ) +4 1579 1642 (952 780 125 ) (952 780 124 ) (952 776 124 ) (952 776 125 ) +4 1579 1612 (952 780 126 ) (952 780 125 ) (952 776 125 ) (952 776 126 ) +4 1579 1610 (952 776 128 ) (952 780 128 ) (952 780 126 ) (952 776 126 ) +4 1579 1586 (952 780 128 ) (952 1024 128 ) (952 1024 124 ) (952 780 124 ) +4 1579 1580 (952 780 124 ) (952 1024 124 ) (960 1024 124 ) (960 780 124 ) +4 1580 1653 (952 1024 120 ) (952 1024 116 ) (952 780 116 ) (952 780 120 ) +4 1580 1586 (952 780 124 ) (952 1024 124 ) (952 1024 120 ) (952 780 120 ) +4 1580 1581 (952 780 116 ) (952 1024 116 ) (968 1024 116 ) (968 780 116 ) +4 1581 1654 (952 780 116 ) (952 1024 116 ) (952 1024 96 ) (952 780 96 ) +4 1581 1584 (952 832 96 ) (952 1024 96 ) (960 1024 96 ) (960 832 96 ) +4 1581 1582 (964 1024 96 ) (968 1024 96 ) (968 780 96 ) (964 780 96 ) +4 1581 1583 (960 1024 96 ) (964 1024 96 ) (964 780 96 ) (960 780 96 ) +4 1582 1585 (964 1024 64 ) (968 1024 64 ) (968 780 64 ) (964 780 64 ) +4 1582 1583 (964 1024 64 ) (964 780 64 ) (964 780 96 ) (964 1024 96 ) +4 1583 1585 (960 1024 64 ) (964 1024 64 ) (964 768 64 ) (960 768 64 ) +4 1583 1584 (960 1024 64 ) (960 832 64 ) (960 832 96 ) (960 1024 96 ) +4 1584 1655 (952 832 96 ) (952 1024 96 ) (952 1024 64 ) (952 832 64 ) +4 1584 1585 (952 832 64 ) (952 1024 64 ) (960 1024 64 ) (960 832 64 ) +4 1585 1878 (968 768 -1284 ) (968 768 0 ) (952 768 0 ) (952 768 -1284 ) +4 1585 1870 (968 768 0 ) (968 768 64 ) (952 768 64 ) (952 768 0 ) +4 1585 1656 (952 768 -1284 ) (952 768 64 ) (952 832 64 ) (952 832 -1284 ) +4 1585 1655 (952 832 64 ) (952 1024 64 ) (952 1024 -1284 ) (952 832 -1284 ) +4 1586 1657 (872 780 288 ) (872 1024 288 ) (872 1024 120 ) (872 780 120 ) +4 1586 1653 (872 780 120 ) (872 1024 120 ) (952 1024 120 ) (952 780 120 ) +4 1586 1643 (872 780 125 ) (872 780 120 ) (909 780 120 ) (909 780 125 ) +4 1586 1642 (915 780 120 ) (952 780 120 ) (952 780 125 ) (915 780 125 ) +4 1586 1615 (872 780 126 ) (872 780 125 ) (909 780 125 ) (909 780 126 ) +3 1586 1613 (915 780 125 ) (915 780 126 ) (914 780 126 ) +3 1586 1614 (909 780 125 ) (910 780 126 ) (909 780 126 ) +4 1586 1612 (915 780 125 ) (952 780 125 ) (952 780 126 ) (915 780 126 ) +4 1586 1611 (872 780 191 ) (872 780 126 ) (910 780 126 ) (910 780 191 ) +4 1586 1610 (914 780 126 ) (952 780 126 ) (952 780 191 ) (914 780 191 ) +4 1586 1609 (872 780 228 ) (872 780 197 ) (910 780 197 ) (910 780 228 ) +4 1586 1608 (952 780 197 ) (952 780 228 ) (914 780 228 ) (914 780 197 ) +4 1586 1605 (872 780 231 ) (872 780 228 ) (909 780 228 ) (909 780 231 ) +3 1586 1602 (914 780 228 ) (915 780 228 ) (915 780 229 ) +3 1586 1601 (909 780 228 ) (910 780 228 ) (909 780 229 ) +4 1586 1599 (915 780 228 ) (950 780 228 ) (950 780 231 ) (915 780 231 ) +4 1586 1597 (950 780 228 ) (952 780 228 ) (952 780 231 ) (950 780 231 ) +4 1586 1594 (872 780 233 ) (872 780 231 ) (909 780 231 ) (909 780 233 ) +4 1586 1593 (915 780 231 ) (952 780 231 ) (952 780 233 ) (915 780 233 ) +4 1586 1587 (872 780 288 ) (872 780 236 ) (952 780 236 ) (952 780 288 ) +4 1587 1658 (872 776 288 ) (872 780 288 ) (872 780 236 ) (872 776 236 ) +4 1588 1595 (952 772 233 ) (952 771 233 ) (915 771 233 ) (915 772 233 ) +4 1588 1589 (915 771 233 ) (952 771 233 ) (952 771 234 ) (915 771 234 ) +4 1589 1595 (952 771 233 ) (952 770 233 ) (915 770 233 ) (915 771 233 ) +4 1589 1592 (915 770 233 ) (952 770 233 ) (952 770 236 ) (915 770 236 ) +4 1590 1596 (872 771 233 ) (872 772 233 ) (909 772 233 ) (909 771 233 ) +4 1590 1591 (872 771 233 ) (909 771 233 ) (909 771 234 ) (872 771 234 ) +4 1591 1596 (872 770 233 ) (872 771 233 ) (909 771 233 ) (909 770 233 ) +4 1591 1592 (872 770 233 ) (909 770 233 ) (909 770 236 ) (872 770 236 ) +4 1592 1809 (921.101440 768 236 ) (902.762512 768 236 ) (905.887512 768 233 ) (917.977173 768 233 ) +4 1592 1808 (952 768 233 ) (952 768 236 ) (921.101440 768 236 ) (917.977173 768 233 ) +4 1592 1807 (902.762512 768 236 ) (872 768 236 ) (872 768 233 ) (905.887512 768 233 ) +4 1592 1663 (872 768 233 ) (872 768 236 ) (872 770 236 ) (872 770 233 ) +4 1592 1640 (872 768 233 ) (872 770 233 ) (952 770 233 ) (952 768 233 ) +4 1593 1599 (915 780 231 ) (950 780 231 ) (950 776 231 ) (915 776 231 ) +4 1593 1597 (950 780 231 ) (952 780 231 ) (952 776 231 ) (950 776 231 ) +4 1594 1658 (872 776 233 ) (872 780 233 ) (872 780 231 ) (872 776 231 ) +4 1594 1605 (872 776 231 ) (872 780 231 ) (909 780 231 ) (909 776 231 ) +4 1595 1640 (952 770 231 ) (952 770 233 ) (915 770 233 ) (915 770 231 ) +4 1595 1600 (950 770 231 ) (915 770 231 ) (915 773 231 ) (950 773 231 ) +4 1595 1598 (952 770 231 ) (950 770 231 ) (950 773 231 ) (952 773 231 ) +4 1596 1640 (909 770 233 ) (872 770 233 ) (872 770 231 ) (909 770 231 ) +4 1596 1607 (874 770 231 ) (872 770 231 ) (872 773 231 ) (874 773 231 ) +4 1596 1606 (909 770 231 ) (874 770 231 ) (874 773 231 ) (909 773 231 ) +4 1597 1608 (950 776 228 ) (950 780 228 ) (952 780 228 ) (952 776 228 ) +4 1597 1599 (950 780 228 ) (950 776 228 ) (950 776 231 ) (950 780 231 ) +4 1598 1640 (952 770 228 ) (952 770 231 ) (950 770 231 ) (950 770 228 ) +4 1598 1636 (952 770 228 ) (950 770 228 ) (950 771 228 ) (952 771 228 ) +4 1598 1616 (950 771 228 ) (950 774 228 ) (952 774 228 ) (952 771 228 ) +4 1598 1600 (950 774 228 ) (950 770 228 ) (950 770 231 ) (950 774 231 ) +4 1599 1608 (915 776 228 ) (915 780 228 ) (950 780 228 ) (950 776 228 ) +4 1599 1602 (915 780 228 ) (915 776 228 ) (915 776 229 ) (915 780 229 ) +4 1600 1640 (950 770 231 ) (915 770 231 ) (915 770 228 ) (950 770 228 ) +4 1600 1636 (950 770 228 ) (915 770 228 ) (915 771 228 ) (950 771 228 ) +4 1600 1617 (915 771 228 ) (915 775 228 ) (950 775 228 ) (950 771 228 ) +4 1600 1604 (915 775 228 ) (915 770 228 ) (915 770 229 ) (915 775 229 ) +4 1601 1609 (909 776 228 ) (909 780 228 ) (910 780 228 ) (910 776 228 ) +4 1601 1605 (909 780 228 ) (909 776 228 ) (909 776 229 ) (909 780 229 ) +4 1602 1608 (914 780 228 ) (915 780 228 ) (915 776 228 ) (914 776 228 ) +3 1603 1640 (909 770 229 ) (909 770 228 ) (910 770 228 ) +4 1603 1636 (910 770 228 ) (909 770 228 ) (909 771 228 ) (910 771 228 ) +4 1603 1628 (909 771 228 ) (909 775 228 ) (910 775 228 ) (910 771 228 ) +4 1603 1606 (909 775 228 ) (909 770 228 ) (909 770 229 ) (909 775 229 ) +3 1604 1640 (914 770 228 ) (915 770 228 ) (915 770 229 ) +4 1604 1636 (915 770 228 ) (914 770 228 ) (914 771 228 ) (915 771 228 ) +4 1604 1617 (914 771 228 ) (914 775 228 ) (915 775 228 ) (915 771 228 ) +4 1605 1658 (872 780 231 ) (872 780 228 ) (872 776 228 ) (872 776 231 ) +4 1605 1609 (872 776 228 ) (872 780 228 ) (909 780 228 ) (909 776 228 ) +4 1606 1640 (909 770 231 ) (874 770 231 ) (874 770 228 ) (909 770 228 ) +4 1606 1636 (909 770 228 ) (874 770 228 ) (874 771 228 ) (909 771 228 ) +4 1606 1628 (874 771 228 ) (874 775 228 ) (909 775 228 ) (909 771 228 ) +4 1606 1607 (874 774 228 ) (874 770 228 ) (874 770 231 ) (874 774 231 ) +4 1607 1640 (874 770 231 ) (872 770 231 ) (872 770 228 ) (874 770 228 ) +4 1607 1636 (874 770 228 ) (872 770 228 ) (872 771 228 ) (874 771 228 ) +4 1607 1629 (872 771 228 ) (872 774 228 ) (874 774 228 ) (874 771 228 ) +4 1609 1658 (872 780 228 ) (872 780 197 ) (872 776 197 ) (872 776 228 ) +4 1610 1613 (914 780 126 ) (915 780 126 ) (915 776 126 ) (914 776 126 ) +4 1610 1612 (915 780 126 ) (952 780 126 ) (952 776 126 ) (915 776 126 ) +4 1611 1659 (872 780 191 ) (872 780 126 ) (872 776 126 ) (872 776 191 ) +4 1611 1615 (872 776 126 ) (872 780 126 ) (909 780 126 ) (909 776 126 ) +4 1611 1614 (909 780 126 ) (910 780 126 ) (910 776 126 ) (909 776 126 ) +4 1612 1642 (915 780 125 ) (952 780 125 ) (952 776 125 ) (915 776 125 ) +4 1612 1613 (915 780 125 ) (915 776 125 ) (915 776 126 ) (915 780 126 ) +4 1614 1615 (909 780 125 ) (909 776 125 ) (909 776 126 ) (909 780 126 ) +4 1615 1659 (872 780 126 ) (872 780 125 ) (872 776 125 ) (872 776 126 ) +4 1615 1643 (872 776 125 ) (872 780 125 ) (909 780 125 ) (909 776 125 ) +4 1616 1636 (952 771 197 ) (952 771 228 ) (950 771 228 ) (950 771 197 ) +4 1616 1617 (950 771 197 ) (950 771 228 ) (950 774 228 ) (950 774 197 ) +4 1617 1636 (950 771 228 ) (914 771 228 ) (914 771 197 ) (950 771 197 ) +4 1617 1619 (914 772 197 ) (914 771 197 ) (914 771 228 ) (914 772 228 ) +4 1618 1636 (911 771 228 ) (910 771 228 ) (910 771 197 ) (911 771 197 ) +4 1618 1628 (910 772 197 ) (910 771 197 ) (910 771 228 ) (910 772 228 ) +4 1619 1636 (914 771 228 ) (913 771 228 ) (913 771 197 ) (914 771 197 ) +4 1620 1637 (952 771 191 ) (952 771 192 ) (914 771 192 ) (914 771 191 ) +4 1620 1621 (952 771 191 ) (914 771 191 ) (914 772 191 ) (952 772 191 ) +4 1621 1637 (952 771 189 ) (952 771 191 ) (914 771 191 ) (914 771 189 ) +4 1621 1627 (914 771 189 ) (914 771 191 ) (914 772 191 ) (914 772 189 ) +4 1621 1625 (915 771 189 ) (914 771 189 ) (914 773 189 ) (915 773 189 ) +4 1621 1624 (916 771 189 ) (915 771 189 ) (915 773 189 ) (916 773 189 ) +4 1621 1622 (952 771 189 ) (950 771 189 ) (950 773 189 ) (952 773 189 ) +4 1621 1623 (950 771 189 ) (916 771 189 ) (916 773 189 ) (950 773 189 ) +4 1622 1646 (952 773 125 ) (952 771 125 ) (950 771 125 ) (950 773 125 ) +4 1622 1644 (952 774 125 ) (952 773 125 ) (950 773 125 ) (950 774 125 ) +4 1622 1638 (950 771 125 ) (952 771 125 ) (952 771 126 ) (950 771 126 ) +4 1622 1637 (952 771 126 ) (952 771 189 ) (950 771 189 ) (950 771 126 ) +4 1622 1623 (950 771 125 ) (950 771 189 ) (950 774 189 ) (950 774 125 ) +4 1623 1646 (950 773 125 ) (950 771 125 ) (916 771 125 ) (916 773 125 ) +4 1623 1644 (950 774 125 ) (950 773 125 ) (916 773 125 ) (916 774 125 ) +4 1623 1638 (916 771 125 ) (950 771 125 ) (950 771 126 ) (916 771 126 ) +4 1623 1637 (950 771 126 ) (950 771 189 ) (916 771 189 ) (916 771 126 ) +4 1623 1624 (916 771 125 ) (916 771 189 ) (916 774 189 ) (916 774 125 ) +4 1624 1646 (916 773 125 ) (916 771 125 ) (915 771 125 ) (915 773 125 ) +4 1624 1644 (916 774 125 ) (916 773 125 ) (915 773 125 ) (915 774 125 ) +4 1624 1638 (915 771 125 ) (916 771 125 ) (916 771 126 ) (915 771 126 ) +4 1624 1637 (916 771 126 ) (916 771 189 ) (915 771 189 ) (915 771 126 ) +4 1624 1625 (915 771 125 ) (915 771 189 ) (915 774 189 ) (915 774 125 ) +4 1625 1637 (915 771 126 ) (915 771 189 ) (914 771 189 ) (914 771 126 ) +4 1625 1627 (914 771 126 ) (914 771 189 ) (914 772 189 ) (914 772 126 ) +4 1626 1637 (911 771 191 ) (910 771 191 ) (910 771 126 ) (911 771 126 ) +4 1626 1632 (910 772 126 ) (910 771 126 ) (910 771 189 ) (910 772 189 ) +4 1626 1631 (910 771 189 ) (910 771 191 ) (910 772 191 ) (910 772 189 ) +4 1627 1637 (914 771 126 ) (914 771 191 ) (913 771 191 ) (913 771 126 ) +4 1628 1636 (910 771 197 ) (910 771 228 ) (874 771 228 ) (874 771 197 ) +4 1628 1629 (874 774 197 ) (874 771 197 ) (874 771 228 ) (874 774 228 ) +4 1629 1636 (874 771 228 ) (872 771 228 ) (872 771 197 ) (874 771 197 ) +4 1630 1637 (910 771 191 ) (910 771 192 ) (872 771 192 ) (872 771 191 ) +4 1630 1631 (910 772 191 ) (910 771 191 ) (872 771 191 ) (872 772 191 ) +4 1631 1637 (910 771 189 ) (910 771 191 ) (872 771 191 ) (872 771 189 ) +4 1631 1635 (874 771 189 ) (872 771 189 ) (872 773 189 ) (874 773 189 ) +4 1631 1634 (908 771 189 ) (874 771 189 ) (874 773 189 ) (908 773 189 ) +4 1631 1633 (909 771 189 ) (908 771 189 ) (908 773 189 ) (909 773 189 ) +4 1631 1632 (910 773 189 ) (910 771 189 ) (909 771 189 ) (909 773 189 ) +4 1632 1637 (910 771 126 ) (910 771 189 ) (909 771 189 ) (909 771 126 ) +4 1632 1633 (909 771 125 ) (909 771 189 ) (909 774 189 ) (909 774 125 ) +4 1633 1647 (909 773 125 ) (909 771 125 ) (908 771 125 ) (908 773 125 ) +4 1633 1645 (909 774 125 ) (909 773 125 ) (908 773 125 ) (908 774 125 ) +4 1633 1639 (908 771 125 ) (909 771 125 ) (909 771 126 ) (908 771 126 ) +4 1633 1637 (909 771 126 ) (909 771 189 ) (908 771 189 ) (908 771 126 ) +4 1633 1634 (908 771 125 ) (908 771 189 ) (908 774 189 ) (908 774 125 ) +4 1634 1647 (908 773 125 ) (908 771 125 ) (874 771 125 ) (874 773 125 ) +4 1634 1645 (908 774 125 ) (908 773 125 ) (874 773 125 ) (874 774 125 ) +4 1634 1639 (874 771 125 ) (908 771 125 ) (908 771 126 ) (874 771 126 ) +4 1634 1637 (908 771 126 ) (908 771 189 ) (874 771 189 ) (874 771 126 ) +4 1634 1635 (874 771 125 ) (874 771 189 ) (874 774 189 ) (874 774 125 ) +4 1635 1647 (872 771 125 ) (872 773 125 ) (874 773 125 ) (874 771 125 ) +4 1635 1645 (872 773 125 ) (872 774 125 ) (874 774 125 ) (874 773 125 ) +4 1635 1639 (872 771 125 ) (874 771 125 ) (874 771 126 ) (872 771 126 ) +4 1635 1637 (874 771 126 ) (874 771 189 ) (872 771 189 ) (872 771 126 ) +4 1636 1640 (952 770 197 ) (952 770 228 ) (872 770 228 ) (872 770 197 ) +4 1637 1641 (952 770 126 ) (952 770 194 ) (872 770 194 ) (872 770 126 ) +4 1637 1638 (952 770 126 ) (915 770 126 ) (915 771 126 ) (952 771 126 ) +4 1637 1639 (909 770 126 ) (872 770 126 ) (872 771 126 ) (909 771 126 ) +4 1638 1646 (915 771 125 ) (952 771 125 ) (952 770 125 ) (915 770 125 ) +4 1638 1641 (915 770 125 ) (952 770 125 ) (952 770 126 ) (915 770 126 ) +4 1639 1647 (872 770 125 ) (872 771 125 ) (909 771 125 ) (909 770 125 ) +4 1639 1641 (872 770 125 ) (909 770 125 ) (909 770 126 ) (872 770 126 ) +3 1640 1809 (917.977173 768 233 ) (905.887512 768 233 ) (911.933044 768 227.196350 ) +5 1640 1808 (952 768 197 ) (952 768 233 ) (917.977173 768 233 ) (911.933044 768 227.196350 ) (943.387756 768 197 ) +4 1640 1807 (905.887512 768 233 ) (872 768 233 ) (872 768 197 ) (943.387756 768 197 ) +4 1640 1663 (872 768 199 ) (872 768 233 ) (872 770 233 ) (872 770 199 ) +3 1641 1808 (952 768 188.732315 ) (952 768 194 ) (946.512817 768 194 ) +5 1641 1807 (952 768 125 ) (952 768 188.732315 ) (946.512817 768 194 ) (872 768 194 ) (872 768 125 ) +4 1641 1665 (872 768 128 ) (872 768 182 ) (872 770 182 ) (872 770 128 ) +4 1641 1652 (872 768 125 ) (872 770 125 ) (952 770 125 ) (952 768 125 ) +4 1642 1653 (915 780 120 ) (952 780 120 ) (952 776 120 ) (915 776 120 ) +4 1643 1659 (872 776 125 ) (872 780 125 ) (872 780 120 ) (872 776 120 ) +4 1643 1653 (872 776 120 ) (872 780 120 ) (909 780 120 ) (909 776 120 ) +4 1644 1646 (952 773 124 ) (952 773 125 ) (915 773 125 ) (915 773 124 ) +4 1645 1647 (909 773 124 ) (909 773 125 ) (872 773 125 ) (872 773 124 ) +4 1646 1648 (952 770 123 ) (915 770 123 ) (915 773 123 ) (952 773 123 ) +4 1646 1652 (952 770 123 ) (952 770 125 ) (915 770 125 ) (915 770 123 ) +4 1647 1649 (909 770 123 ) (872 770 123 ) (872 773 123 ) (909 773 123 ) +4 1647 1652 (909 770 125 ) (872 770 125 ) (872 770 123 ) (909 770 123 ) +4 1648 1650 (952 770 122 ) (915 770 122 ) (915 773 122 ) (952 773 122 ) +4 1648 1652 (952 770 122 ) (952 770 123 ) (915 770 123 ) (915 770 122 ) +4 1649 1651 (909 770 122 ) (872 770 122 ) (872 773 122 ) (909 773 122 ) +4 1649 1652 (909 770 123 ) (872 770 123 ) (872 770 122 ) (909 770 122 ) +4 1650 1652 (915 770 120 ) (952 770 120 ) (952 770 122 ) (915 770 122 ) +4 1651 1652 (872 770 120 ) (909 770 120 ) (909 770 122 ) (872 770 122 ) +4 1652 1807 (952 768 120 ) (952 768 125 ) (872 768 125 ) (872 768 120 ) +4 1653 1659 (872 776 120 ) (872 780 120 ) (872 780 116 ) (872 776 116 ) +4 1653 1657 (872 780 120 ) (872 1024 120 ) (872 1024 116 ) (872 780 116 ) +4 1653 1654 (872 780 116 ) (872 1024 116 ) (952 1024 116 ) (952 780 116 ) +4 1654 1657 (872 780 116 ) (872 1024 116 ) (872 1024 96 ) (872 780 96 ) +4 1654 1655 (872 832 96 ) (872 1024 96 ) (952 1024 96 ) (952 832 96 ) +4 1655 1660 (872 832 96 ) (872 1024 96 ) (872 1024 -1284 ) (872 832 -1284 ) +4 1655 1656 (872 832 -1284 ) (952 832 -1284 ) (952 832 64 ) (872 832 64 ) +4 1656 1878 (952 768 -1284 ) (952 768 0 ) (872 768 0 ) (872 768 -1284 ) +4 1656 1870 (952 768 0 ) (952 768 64 ) (872 768 64 ) (872 768 0 ) +4 1656 1666 (872 768 -1284 ) (872 768 64 ) (872 776 64 ) (872 776 -1284 ) +4 1656 1661 (872 776 64 ) (872 832 64 ) (872 832 -1284 ) (872 776 -1284 ) +4 1657 1670 (844 780 288 ) (844 832 288 ) (844 832 96 ) (844 780 96 ) +4 1657 1668 (844 832 288 ) (844 1024 288 ) (844 1024 96 ) (844 832 96 ) +4 1657 1660 (844 832 96 ) (844 1024 96 ) (872 1024 96 ) (872 832 96 ) +4 1657 1658 (844 780 288 ) (844 780 197 ) (872 780 197 ) (872 780 288 ) +4 1657 1659 (844 780 194 ) (844 780 116 ) (872 780 116 ) (872 780 194 ) +4 1658 1693 (844 780 228 ) (844 780 197 ) (844 776 197 ) (844 776 228 ) +4 1658 1682 (844 780 231 ) (844 780 228 ) (844 776 228 ) (844 776 231 ) +4 1658 1678 (844 780 233 ) (844 780 231 ) (844 776 231 ) (844 776 233 ) +4 1658 1672 (844 776 288 ) (844 780 288 ) (844 780 236 ) (844 776 236 ) +4 1659 1739 (844 780 120 ) (844 780 116 ) (844 776 116 ) (844 776 120 ) +4 1659 1728 (844 780 125 ) (844 780 120 ) (844 776 120 ) (844 776 125 ) +4 1659 1697 (844 780 126 ) (844 780 125 ) (844 776 125 ) (844 776 126 ) +4 1659 1695 (844 780 191 ) (844 780 126 ) (844 776 126 ) (844 776 191 ) +4 1660 1671 (844 1024 64 ) (844 1024 -1284 ) (844 832 -1284 ) (844 832 64 ) +4 1660 1668 (844 1024 96 ) (844 1024 64 ) (844 832 64 ) (844 832 96 ) +4 1660 1661 (844 832 -1284 ) (872 832 -1284 ) (872 832 64 ) (844 832 64 ) +4 1661 1740 (844 780 -1284 ) (844 776 -1284 ) (844 776 64 ) (844 780 64 ) +4 1661 1671 (844 832 -1284 ) (844 780 -1284 ) (844 780 64 ) (844 832 64 ) +4 1661 1666 (844 776 64 ) (844 776 -1284 ) (872 776 -1284 ) (872 776 64 ) +4 1662 1807 (846 768 236 ) (844 768 236 ) (844 768 199 ) (846 768 199 ) +4 1662 1726 (844 768 199 ) (844 768 233 ) (844 770 233 ) (844 770 199 ) +4 1662 1677 (844 768 233 ) (844 768 236 ) (844 770 236 ) (844 770 233 ) +4 1663 1807 (872 768 199 ) (872 768 236 ) (870 768 236 ) (870 768 199 ) +4 1664 1807 (846 768 182 ) (844 768 182 ) (844 768 128 ) (846 768 128 ) +4 1664 1727 (844 768 128 ) (844 768 182 ) (844 770 182 ) (844 770 128 ) +4 1665 1807 (872 768 128 ) (872 768 182 ) (870 768 182 ) (870 768 128 ) +4 1666 1878 (872 768 -1284 ) (872 768 0 ) (844 768 0 ) (844 768 -1284 ) +4 1666 1870 (872 768 0 ) (872 768 64 ) (844 768 64 ) (844 768 0 ) +4 1666 1740 (844 768 -1284 ) (844 768 64 ) (844 776 64 ) (844 776 -1284 ) +4 1667 1741 (764 1020 288 ) (764 1024 288 ) (764 1024 70 ) (764 1020 70 ) +5 1668 1671 (800 1024 64 ) (844 1024 64 ) (844 832 64 ) (768 832 64 ) (768 992 64 ) +4 1668 1670 (844 832 96 ) (844 832 288 ) (768 832 288 ) (768 832 96 ) +4 1668 1669 (784 1008 64 ) (768 992 64 ) (768 992 288 ) (784 1008 288 ) +3 1669 1671 (768 1024 64 ) (784 1008 64 ) (768 992 64 ) +4 1670 1739 (844 780 116 ) (844 780 120 ) (768 780 120 ) (768 780 116 ) +4 1670 1729 (801 780 125 ) (768 780 125 ) (768 780 120 ) (801 780 120 ) +4 1670 1728 (844 780 120 ) (844 780 125 ) (807 780 125 ) (807 780 120 ) +4 1670 1700 (801 780 126 ) (768 780 126 ) (768 780 125 ) (801 780 125 ) +3 1670 1699 (807 780 126 ) (806 780 126 ) (807 780 125 ) +3 1670 1698 (801.994019 780 126 ) (801 780 126 ) (801 780 125.005959 ) +4 1670 1697 (844 780 125 ) (844 780 126 ) (807 780 126 ) (807 780 125 ) +4 1670 1696 (768 780 191 ) (768 780 126 ) (802 780 126 ) (802 780 191 ) +4 1670 1695 (844 780 126 ) (844 780 191 ) (806 780 191 ) (806 780 126 ) +4 1670 1694 (802 780 228 ) (768 780 228 ) (768 780 197 ) (802 780 197 ) +4 1670 1693 (844 780 197 ) (844 780 228 ) (806 780 228 ) (806 780 197 ) +4 1670 1689 (801 780 231 ) (768 780 231 ) (768 780 228 ) (801 780 228 ) +3 1670 1686 (806 780 228 ) (807 780 228 ) (807 780 229 ) +3 1670 1685 (801 780 229 ) (801 780 228 ) (802 780 228 ) +4 1670 1682 (844 780 228 ) (844 780 231 ) (807 780 231 ) (807 780 228 ) +4 1670 1679 (801 780 233 ) (768 780 233 ) (768 780 231 ) (801 780 231 ) +4 1670 1678 (844 780 231 ) (844 780 233 ) (807 780 233 ) (807 780 231 ) +4 1670 1672 (844 780 236 ) (844 780 288 ) (768 780 288 ) (768 780 236 ) +4 1671 1743 (764 780 -1284 ) (764 780 64 ) (764 1024 64 ) (764 1024 -1284 ) +4 1671 1740 (764 780 64 ) (764 780 -1284 ) (844 780 -1284 ) (844 780 64 ) +4 1672 1742 (764 776 288 ) (764 780 288 ) (764 780 236 ) (764 776 236 ) +4 1673 1680 (844 772 233 ) (844 771 233 ) (807 771 233 ) (807 772 233 ) +4 1673 1675 (807 771 233 ) (844 771 233 ) (844 771 234 ) (807 771 234 ) +4 1674 1681 (764 771 233 ) (764 772 233 ) (801 772 233 ) (801 771 233 ) +4 1674 1676 (764 771 233 ) (801 771 233 ) (801 771 234 ) (764 771 234 ) +4 1675 1680 (807 771 233 ) (844 771 233 ) (844 770 233 ) (807 770 233 ) +4 1675 1677 (807 770 233 ) (844 770 233 ) (844 770 236 ) (807 770 236 ) +4 1676 1681 (764 770 233 ) (764 771 233 ) (801 771 233 ) (801 770 233 ) +4 1676 1677 (764 770 233 ) (801 770 233 ) (801 770 236 ) (764 770 236 ) +4 1677 1816 (813.094360 768 236 ) (794.762329 768 236 ) (797.887024 768 233 ) (809.969299 768 233 ) +4 1677 1815 (794.762329 768 236 ) (764 768 236 ) (764 768 233 ) (797.887024 768 233 ) +4 1677 1807 (844 768 233 ) (844 768 236 ) (813.094360 768 236 ) (809.969299 768 233 ) +4 1677 1726 (764 768 233 ) (764 770 233 ) (844 770 233 ) (844 768 233 ) +4 1678 1682 (807 780 231 ) (844 780 231 ) (844 776 231 ) (807 776 231 ) +4 1679 1742 (764 776 233 ) (764 780 233 ) (764 780 231 ) (764 776 231 ) +4 1679 1691 (764 776 231 ) (764 780 231 ) (766 780 231 ) (766 776 231 ) +4 1679 1689 (766 780 231 ) (801 780 231 ) (801 776 231 ) (766 776 231 ) +4 1680 1726 (844 770 231 ) (844 770 233 ) (807 770 233 ) (807 770 231 ) +4 1680 1683 (844 770 231 ) (842 770 231 ) (842 773 231 ) (844 773 231 ) +4 1680 1684 (842 770 231 ) (807 770 231 ) (807 773 231 ) (842 773 231 ) +4 1681 1726 (801 770 233 ) (764 770 233 ) (764 770 231 ) (801 770 231 ) +4 1681 1692 (766 770 231 ) (764 770 231 ) (764 773 231 ) (766 773 231 ) +4 1681 1690 (801 770 231 ) (766 770 231 ) (766 773 231 ) (801 773 231 ) +4 1682 1693 (807 776 228 ) (807 780 228 ) (844 780 228 ) (844 776 228 ) +4 1682 1686 (807 780 228 ) (807 776 228 ) (807 776 229 ) (807 780 229 ) +4 1683 1726 (844 770 228 ) (844 770 231 ) (842 770 231 ) (842 770 228 ) +4 1683 1722 (844 770 228 ) (842 770 228 ) (842 771 228 ) (844 771 228 ) +4 1683 1701 (842 771 228 ) (842 774 228 ) (844 774 228 ) (844 771 228 ) +4 1683 1684 (842 774 228 ) (842 770 228 ) (842 770 231 ) (842 774 231 ) +4 1684 1726 (842 770 231 ) (807 770 231 ) (807 770 228 ) (842 770 228 ) +4 1684 1722 (842 770 228 ) (807 770 228 ) (807 771 228 ) (842 771 228 ) +4 1684 1702 (807 771 228 ) (807 775 228 ) (842 775 228 ) (842 771 228 ) +4 1684 1688 (807 775 228 ) (807 770 228 ) (807 770 229 ) (807 775 229 ) +4 1685 1694 (801 776 228 ) (801 780 228 ) (802 780 228 ) (802 776 228 ) +4 1685 1689 (801 780 228 ) (801 776 228 ) (801 776 229 ) (801 780 229 ) +4 1686 1693 (806 780 228 ) (807 780 228 ) (807 776 228 ) (806 776 228 ) +3 1687 1726 (801 770 229 ) (801 770 228 ) (802 770 228 ) +4 1687 1722 (802 770 228 ) (801 770 228 ) (801 771 228 ) (802 771 228 ) +4 1687 1713 (801 771 228 ) (801 775 228 ) (802 775 228 ) (802 771 228 ) +4 1687 1690 (801 775 228 ) (801 770 228 ) (801 770 229 ) (801 775 229 ) +3 1688 1726 (806 770 228 ) (807 770 228 ) (807 770 229 ) +4 1688 1722 (807 770 228 ) (806 770 228 ) (806 771 228 ) (807 771 228 ) +4 1688 1702 (806 771 228 ) (806 775 228 ) (807 775 228 ) (807 771 228 ) +4 1689 1694 (766 776 228 ) (766 780 228 ) (801 780 228 ) (801 776 228 ) +4 1689 1691 (766 780 228 ) (766 776 228 ) (766 776 231 ) (766 780 231 ) +4 1690 1726 (801 770 231 ) (766 770 231 ) (766 770 228 ) (801 770 228 ) +4 1690 1722 (801 770 228 ) (766 770 228 ) (766 771 228 ) (801 771 228 ) +4 1690 1713 (766 771 228 ) (766 775 228 ) (801 775 228 ) (801 771 228 ) +4 1690 1692 (766 774 228 ) (766 770 228 ) (766 770 231 ) (766 774 231 ) +4 1691 1742 (764 780 231 ) (764 780 228 ) (764 776 228 ) (764 776 231 ) +4 1691 1694 (764 776 228 ) (764 780 228 ) (766 780 228 ) (766 776 228 ) +4 1692 1726 (766 770 231 ) (764 770 231 ) (764 770 228 ) (766 770 228 ) +4 1692 1722 (766 770 228 ) (764 770 228 ) (764 771 228 ) (766 771 228 ) +4 1692 1714 (764 771 228 ) (764 774 228 ) (766 774 228 ) (766 771 228 ) +4 1694 1742 (764 780 228 ) (764 780 197 ) (764 776 197 ) (764 776 228 ) +4 1695 1699 (806 776 126 ) (806 780 126 ) (807 780 126 ) (807 776 126 ) +4 1695 1697 (807 780 126 ) (844 780 126 ) (844 776 126 ) (807 776 126 ) +4 1696 1742 (764 780 191 ) (764 780 126 ) (764 776 126 ) (764 776 191 ) +4 1696 1700 (764 776 126 ) (764 780 126 ) (801 780 126 ) (801 776 126 ) +4 1696 1698 (801 780 126 ) (802 780 126 ) (802 776 126 ) (801 776 126 ) +4 1697 1728 (807 780 125 ) (844 780 125 ) (844 776 125 ) (807 776 125 ) +4 1697 1699 (807 780 125 ) (807 776 125 ) (807 776 126 ) (807 780 126 ) +4 1698 1700 (801 780 125 ) (801 776 125 ) (801 776 126 ) (801 780 126 ) +4 1700 1742 (764 780 126 ) (764 780 125 ) (764 776 125 ) (764 776 126 ) +4 1700 1729 (764 776 125 ) (764 780 125 ) (801 780 125 ) (801 776 125 ) +4 1701 1722 (844 771 197 ) (844 771 228 ) (842 771 228 ) (842 771 197 ) +4 1701 1702 (842 774 197 ) (842 771 197 ) (842 771 228 ) (842 774 228 ) +4 1702 1722 (842 771 228 ) (806 771 228 ) (806 771 197 ) (842 771 197 ) +4 1702 1705 (806 772 197 ) (806 771 197 ) (806 771 228 ) (806 772 228 ) +4 1703 1724 (807 771 192 ) (806 771 192 ) (806 771 191 ) (807 771 191 ) +4 1703 1723 (844 771 191 ) (844 771 192 ) (807 771 192 ) (807 771 191 ) +4 1703 1706 (844 771 191 ) (806 771 191 ) (806 772 191 ) (844 772 191 ) +4 1704 1722 (803 771 228 ) (802 771 228 ) (802 771 197 ) (803 771 197 ) +4 1704 1713 (802 772 197 ) (802 771 197 ) (802 771 228 ) (802 772 228 ) +4 1705 1722 (806 771 228 ) (805 771 228 ) (805 771 197 ) (806 771 197 ) +4 1706 1724 (807 771 191 ) (806 771 191 ) (806 771 189 ) (807 771 189 ) +4 1706 1723 (844 771 189 ) (844 771 191 ) (807 771 191 ) (807 771 189 ) +4 1706 1712 (806 771 189 ) (806 771 191 ) (806 772 191 ) (806 772 189 ) +4 1706 1710 (807 771 189 ) (806 771 189 ) (806 773 189 ) (807 773 189 ) +4 1706 1709 (808 771 189 ) (807 771 189 ) (807 773 189 ) (808 773 189 ) +4 1706 1708 (842 771 189 ) (808 771 189 ) (808 773 189 ) (842 773 189 ) +4 1706 1707 (844 771 189 ) (842 771 189 ) (842 773 189 ) (844 773 189 ) +4 1707 1732 (844 773 125 ) (844 771 125 ) (842 771 125 ) (842 773 125 ) +4 1707 1730 (844 774 125 ) (844 773 125 ) (842 773 125 ) (842 774 125 ) +4 1707 1723 (842 771 125 ) (844 771 125 ) (844 771 189 ) (842 771 189 ) +4 1707 1708 (842 771 125 ) (842 771 189 ) (842 774 189 ) (842 774 125 ) +4 1708 1732 (842 773 125 ) (842 771 125 ) (808 771 125 ) (808 773 125 ) +4 1708 1730 (842 774 125 ) (842 773 125 ) (808 773 125 ) (808 774 125 ) +4 1708 1723 (808 771 125 ) (842 771 125 ) (842 771 189 ) (808 771 189 ) +4 1708 1709 (808 771 125 ) (808 771 189 ) (808 774 189 ) (808 774 125 ) +4 1709 1732 (808 773 125 ) (808 771 125 ) (807 771 125 ) (807 773 125 ) +4 1709 1730 (808 774 125 ) (808 773 125 ) (807 773 125 ) (807 774 125 ) +4 1709 1723 (807 771 125 ) (808 771 125 ) (808 771 189 ) (807 771 189 ) +4 1709 1710 (807 771 125 ) (807 771 189 ) (807 774 189 ) (807 774 125 ) +4 1710 1724 (807 771 126 ) (807 771 189 ) (806 771 189 ) (806 771 126 ) +4 1710 1712 (806 771 126 ) (806 771 189 ) (806 772 189 ) (806 772 126 ) +4 1711 1724 (803 771 191 ) (802 771 191 ) (802 771 126 ) (803 771 126 ) +4 1711 1717 (802 772 126 ) (802 771 126 ) (802 771 189 ) (802 772 189 ) +4 1711 1716 (802 771 189 ) (802 771 191 ) (802 772 191 ) (802 772 189 ) +4 1712 1724 (806 771 126 ) (806 771 191 ) (805 771 191 ) (805 771 126 ) +4 1713 1722 (802 771 197 ) (802 771 228 ) (766 771 228 ) (766 771 197 ) +4 1713 1714 (766 774 197 ) (766 771 197 ) (766 771 228 ) (766 774 228 ) +4 1714 1722 (766 771 228 ) (764 771 228 ) (764 771 197 ) (766 771 197 ) +4 1715 1724 (802 771 191 ) (802 771 192 ) (801 771 192 ) (801 771 191 ) +4 1715 1725 (801 771 192 ) (764 771 192 ) (764 771 191 ) (801 771 191 ) +4 1715 1716 (802 772 191 ) (802 771 191 ) (764 771 191 ) (764 772 191 ) +4 1716 1724 (802 771 189 ) (802 771 191 ) (801 771 191 ) (801 771 189 ) +4 1716 1725 (801 771 191 ) (764 771 191 ) (764 771 189 ) (801 771 189 ) +4 1716 1721 (766 771 189 ) (764 771 189 ) (764 773 189 ) (766 773 189 ) +4 1716 1720 (800 771 189 ) (766 771 189 ) (766 773 189 ) (800 773 189 ) +4 1716 1719 (801 771 189 ) (800 771 189 ) (800 773 189 ) (801 773 189 ) +4 1716 1717 (802 773 189 ) (802 771 189 ) (801 771 189 ) (801 773 189 ) +4 1717 1724 (802 771 126 ) (802 771 189 ) (801 771 189 ) (801 771 126 ) +4 1717 1719 (801 771 126 ) (801 771 189 ) (801 774 189 ) (801 774 126 ) +4 1717 1718 (801 771 126 ) (801 774 126 ) (802 774 126 ) (802 771 126 ) +4 1718 1719 (801 771 125 ) (801 771 126 ) (801 774 126 ) (801 774 125 ) +4 1719 1733 (801 773 125 ) (801 771 125 ) (800 771 125 ) (800 773 125 ) +4 1719 1731 (801 774 125 ) (801 773 125 ) (800 773 125 ) (800 774 125 ) +4 1719 1725 (800 771 125 ) (801 771 125 ) (801 771 189 ) (800 771 189 ) +4 1719 1720 (800 771 125 ) (800 771 189 ) (800 774 189 ) (800 774 125 ) +4 1720 1733 (800 773 125 ) (800 771 125 ) (766 771 125 ) (766 773 125 ) +4 1720 1731 (800 774 125 ) (800 773 125 ) (766 773 125 ) (766 774 125 ) +4 1720 1725 (766 771 125 ) (800 771 125 ) (800 771 189 ) (766 771 189 ) +4 1720 1721 (766 771 125 ) (766 771 189 ) (766 774 189 ) (766 774 125 ) +4 1721 1733 (764 771 125 ) (764 773 125 ) (766 773 125 ) (766 771 125 ) +4 1721 1731 (764 773 125 ) (764 774 125 ) (766 774 125 ) (766 773 125 ) +4 1721 1725 (764 771 125 ) (766 771 125 ) (766 771 189 ) (764 771 189 ) +4 1722 1726 (844 770 197 ) (844 770 228 ) (764 770 228 ) (764 770 197 ) +4 1723 1732 (807 771 125 ) (844 771 125 ) (844 770 125 ) (807 770 125 ) +4 1723 1727 (807 770 125 ) (844 770 125 ) (844 770 194 ) (807 770 194 ) +4 1723 1724 (807 770 126 ) (807 770 194 ) (807 771 194 ) (807 771 126 ) +4 1724 1727 (807 770 126 ) (807 770 194 ) (801 770 194 ) (801 770 126 ) +4 1724 1725 (801 770 126 ) (801 770 194 ) (801 771 194 ) (801 771 126 ) +4 1725 1733 (764 770 125 ) (764 771 125 ) (801 771 125 ) (801 770 125 ) +4 1725 1727 (764 770 125 ) (801 770 125 ) (801 770 194 ) (764 770 194 ) +3 1726 1816 (809.969299 768 233 ) (797.887024 768 233 ) (803.927795 768 227.200241 ) +5 1726 1815 (797.887024 768 233 ) (764 768 233 ) (764 768 197 ) (772.468811 768 197 ) (803.927795 768 227.200241 ) +4 1726 1807 (844 768 197 ) (844 768 233 ) (809.969299 768 233 ) (772.468811 768 197 ) +3 1727 1815 (769.343750 768 194 ) (764 768 194 ) (764 768 188.870087 ) +5 1727 1807 (844 768 125 ) (844 768 194 ) (769.343750 768 194 ) (764 768 188.870087 ) (764 768 125 ) +4 1727 1744 (764 768 128 ) (764 768 182 ) (764 770 182 ) (764 770 128 ) +4 1727 1738 (764 768 125 ) (764 770 125 ) (844 770 125 ) (844 768 125 ) +4 1728 1739 (807 780 120 ) (844 780 120 ) (844 776 120 ) (807 776 120 ) +4 1729 1742 (764 776 125 ) (764 780 125 ) (764 780 124 ) (764 776 124 ) +4 1729 1739 (764 776 120 ) (764 780 120 ) (801 780 120 ) (801 776 120 ) +4 1730 1732 (844 773 124 ) (844 773 125 ) (807 773 125 ) (807 773 124 ) +4 1731 1733 (801 773 124 ) (801 773 125 ) (764 773 125 ) (764 773 124 ) +4 1732 1734 (844 770 123 ) (807 770 123 ) (807 773 123 ) (844 773 123 ) +4 1732 1738 (844 770 123 ) (844 770 125 ) (807 770 125 ) (807 770 123 ) +4 1733 1735 (801 770 123 ) (764 770 123 ) (764 773 123 ) (801 773 123 ) +4 1733 1738 (801 770 125 ) (764 770 125 ) (764 770 123 ) (801 770 123 ) +4 1734 1736 (844 770 122 ) (807 770 122 ) (807 773 122 ) (844 773 122 ) +4 1734 1738 (844 770 122 ) (844 770 123 ) (807 770 123 ) (807 770 122 ) +4 1735 1737 (801 770 122 ) (764 770 122 ) (764 773 122 ) (801 773 122 ) +4 1735 1738 (801 770 123 ) (764 770 123 ) (764 770 122 ) (801 770 122 ) +4 1736 1738 (807 770 120 ) (844 770 120 ) (844 770 122 ) (807 770 122 ) +4 1737 1738 (764 770 120 ) (801 770 120 ) (801 770 122 ) (764 770 122 ) +4 1738 1807 (844 768 120 ) (844 768 125 ) (764 768 125 ) (764 768 120 ) +4 1740 1878 (844 768 -1284 ) (844 768 0 ) (764 768 0 ) (764 768 -1284 ) +4 1740 1870 (844 768 0 ) (844 768 64 ) (764 768 64 ) (764 768 0 ) +4 1740 1745 (764 768 -1284 ) (764 768 64 ) (764 776 64 ) (764 776 -1284 ) +4 1740 1743 (764 776 64 ) (764 780 64 ) (764 780 -1284 ) (764 776 -1284 ) +4 1741 1780 (732 1024 256 ) (732 1024 70 ) (732 988 70 ) (732 988 256 ) +4 1741 1772 (732 988 288 ) (732 1024 288 ) (732 1024 256 ) (732 988 256 ) +4 1743 1792 (732 776 -1284 ) (732 776 0 ) (732 1024 0 ) (732 1024 -1284 ) +4 1743 1791 (732 776 0 ) (732 776 64 ) (732 1024 64 ) (732 1024 0 ) +4 1743 1745 (764 776 -1284 ) (764 776 64 ) (732 776 64 ) (732 776 -1284 ) +4 1744 1807 (764 768 128 ) (764 768 182 ) (762 768 182 ) (762 768 128 ) +4 1745 1878 (764 768 -1284 ) (764 768 0 ) (732 768 0 ) (732 768 -1284 ) +4 1745 1870 (764 768 0 ) (764 768 64 ) (732 768 64 ) (732 768 0 ) +4 1745 1792 (732 768 -1284 ) (732 768 0 ) (732 776 0 ) (732 776 -1284 ) +4 1745 1791 (732 768 0 ) (732 768 64 ) (732 776 64 ) (732 776 0 ) +4 1746 1770 (128 896 400 ) (384 1024 400 ) (384 1024 528 ) (128 896 528 ) +4 1746 1769 (384 1024 528 ) (384 1024 544 ) (128 896 544 ) (128 896 528 ) +4 1746 1768 (384 1024 544 ) (384 1024 5542.669922 ) (128 896 5542.669922 ) (128 896 544 ) +3 1746 1749 (384 1024 400 ) (128 896 400 ) (128 1024 400 ) +4 1746 1748 (128 896 416 ) (128 896 5542.669922 ) (128 1008 5542.669922 ) (128 1008 528 ) +4 1746 1747 (128 1024 400 ) (128 1008 400 ) (128 1008 5542.669922 ) (128 1024 5542.669922 ) +4 1747 2440 (0 1024 608 ) (0 1024 400 ) (0 944 400 ) (0 944 528 ) +4 1747 2429 (0 1024 5542.669922 ) (0 1024 608 ) (0 944 528 ) (0 944 5542.669922 ) +4 1747 1750 (0 944 400 ) (0 1024 400 ) (128 1024 400 ) (128 1008 400 ) +4 1747 1748 (128 1008 528 ) (128 1008 5542.669922 ) (0 944 5542.669922 ) (0 944 528 ) +4 1748 2434 (0 832 416 ) (0 832 528 ) (0 894 528 ) (0 894 478 ) +3 1748 2433 (0 894 528 ) (0 944 528 ) (0 894 478 ) +4 1748 2429 (0 832 528 ) (0 832 5542.669922 ) (0 944 5542.669922 ) (0 944 528 ) +4 1748 1771 (0 832 528 ) (0 832 416 ) (128 896 416 ) (128 896 528 ) +4 1748 1769 (0 832 544 ) (0 832 528 ) (128 896 528 ) (128 896 544 ) +4 1748 1768 (0 832 5542.669922 ) (0 832 544 ) (128 896 544 ) (128 896 5542.669922 ) +4 1749 1772 (128 896 384 ) (384 1024 384 ) (384 1024 400 ) (128 896 400 ) +4 1749 1760 (384 1024 384 ) (128 896 384 ) (192 960 384 ) (320 1024 384 ) +3 1749 1751 (192 1024 384 ) (320 1024 384 ) (192 960 384 ) +4 1749 1750 (128 1024 384 ) (128 960 384 ) (128 960 400 ) (128 1024 400 ) +4 1750 2441 (0 1024 400 ) (0 1024 384 ) (0 896 384 ) (0 896 400 ) +4 1750 1752 (0 896 384 ) (0 1024 384 ) (128 1024 384 ) (128 960 384 ) +4 1751 1760 (320 1024 64 ) (320 1024 384 ) (192 960 384 ) (192 960 64 ) +4 1752 2444 (0 1024 384 ) (0 1024 64 ) (0 864 64 ) (0 864 384 ) +4 1752 1761 (128 928 384 ) (112 920 384 ) (112 920 64 ) (128 928 64 ) +4 1752 1755 (128 928 64 ) (0 864 64 ) (0 1024 64 ) (128 1024 64 ) +4 1753 1762 (128 928 48 ) (128 928 0 ) (134.963776 931.481873 0 ) (134.963776 931.481873 48 ) +4 1753 1756 (134.963776 931.481873 0 ) (128 928 0 ) (128 1024 0 ) (165.804932 1024 0 ) +4 1753 1754 (138.985352 943.547791 48 ) (134.962997 931.481445 48 ) (134.962997 931.481445 0 ) (138.985352 943.547791 0 ) +4 1753 1755 (128 1024 0 ) (128 928 0 ) (128 928 48 ) (128 1024 48 ) +4 1754 1762 (134.963776 931.481873 0 ) (136.358810 932.179382 0 ) (136.358810 932.179382 48 ) (134.963776 931.481873 48 ) +3 1754 1756 (136.358810 932.179382 0 ) (134.963776 931.481873 0 ) (138.983917 943.541626 0 ) +4 1755 2444 (0 1024 64 ) (0 1024 0 ) (0 864 0 ) (0 864 64 ) +4 1755 1767 (96 912 64 ) (32 880 64 ) (32 880 0 ) (96 912 0 ) +4 1755 1763 (128 928 64 ) (96 912 64 ) (96 912 0 ) (128 928 0 ) +4 1755 1759 (32 880 64 ) (0 864 64 ) (0 864 0 ) (32 880 0 ) +4 1755 1756 (128 928 0 ) (0 864 0 ) (0 1024 0 ) (128 1024 0 ) +4 1756 2444 (0 1024 0 ) (0 1024 -1284 ) (0 864 -1284 ) (0 864 0 ) +4 1756 1767 (96 912 0 ) (32 880 0 ) (32 880 -1284 ) (96 912 -1284 ) +4 1756 1764 (320 1024 -1284 ) (320 1024 0 ) (96 912 0 ) (96 912 -1284 ) +4 1756 1759 (32 880 0 ) (0 864 0 ) (0 864 -1284 ) (32 880 -1284 ) +4 1757 2445 (0 832 256 ) (0 832 340 ) (0 848 338 ) (0 848 256 ) +4 1757 1774 (0 832 340 ) (0 832 256 ) (16 840 256 ) (16 840 336 ) +4 1758 2446 (0 832 96 ) (0 832 180 ) (0 848 178 ) (0 848 96 ) +4 1758 1785 (0 832 180 ) (0 832 96 ) (16 840 96 ) (16 840 176 ) +4 1759 2447 (0 832 -1284 ) (0 832 64 ) (0 864 64 ) (0 864 -1284 ) +4 1759 1792 (0 832 0 ) (0 832 -1284 ) (48 856 -1284 ) (48 856 0 ) +4 1759 1767 (32.001915 879.998108 -1284 ) (32.001957 879.998047 64 ) (48 856 64 ) (48 856 -1284 ) +4 1760 1787 (384 1024 88 ) (384 1024 96 ) (128 896 96 ) (128 896 88 ) +4 1760 1788 (384 1024 64 ) (384 1024 88 ) (128 896 88 ) (128 896 64 ) +4 1760 1784 (384 1024 248 ) (384 1024 256 ) (128 896 256 ) (128 896 248 ) +4 1760 1785 (384 1024 96 ) (384 1024 248 ) (128 896 248 ) (128 896 96 ) +4 1760 1772 (384 1024 256 ) (384 1024 384 ) (128 896 384 ) (128 896 256 ) +4 1761 1763 (128 896.001953 64 ) (128 896.001465 64 ) (112.004868 919.992676 64 ) (128 927.990234 64 ) +3 1762 1764 (128 896.001953 0 ) (128 927.990234 0 ) (136.356277 932.168396 0 ) +4 1762 1763 (128 928 0 ) (128 896 0 ) (128 896 48 ) (128 928 48 ) +4 1763 1767 (96.001961 911.996094 64 ) (96.001961 911.996094 0 ) (112 888 0 ) (112 888 64 ) +4 1763 1764 (128 896.001953 0 ) (111.996094 888 0 ) (96.003906 911.992188 0 ) (128 927.990234 0 ) +4 1764 1792 (384 1024 -1284 ) (384 1024 0 ) (112 888 0 ) (112 888 -1284 ) +4 1764 1767 (96.001961 911.996094 0 ) (96.001923 911.996216 -1284 ) (112 888 -1284 ) (112 888 0 ) +5 1765 1774 (112 888 256 ) (112 888 336 ) (80 872 344 ) (48 856 336 ) (48 856 256 ) +5 1766 1785 (112 888 96 ) (112 888 176 ) (80 872 184 ) (48 856 176 ) (48 856 96 ) +4 1767 1792 (112 888 -1284 ) (112 888 0 ) (48 856 0 ) (48 856 -1284 ) +4 1768 2448 (0 768 544 ) (0 768 5542.669922 ) (0 832 5542.669922 ) (0 832 544 ) +4 1768 1863 (0 768 5542.669922 ) (0 768 544 ) (128 768 544 ) (128 768 5542.669922 ) +4 1768 1851 (128 768 544 ) (384 768 544 ) (384 768 5542.669922 ) (128 768 5542.669922 ) +4 1768 1849 (384 768 544 ) (448 768 544 ) (448 768 5542.669922 ) (384 768 5542.669922 ) +4 1768 1793 (448 768 544 ) (732 768 544 ) (732 768 5542.669922 ) (448 768 5542.669922 ) +6 1768 1769 (0 832 544 ) (384 1024 544 ) (728 1024 544 ) (732 1020 544 ) (732 768 544 ) (0 768 544 ) +4 1769 2448 (0 768 528 ) (0 768 544 ) (0 832 544 ) (0 832 528 ) +4 1769 1863 (0 768 544 ) (0 768 528 ) (128 768 528 ) (128 768 544 ) +4 1769 1851 (128 768 528 ) (384 768 528 ) (384 768 544 ) (128 768 544 ) +4 1769 1849 (384 768 528 ) (448 768 528 ) (448 768 544 ) (384 768 544 ) +4 1769 1793 (448 768 528 ) (732 768 528 ) (732 768 544 ) (448 768 544 ) +4 1769 1771 (0 832 528 ) (128 896 528 ) (128 768 528 ) (0 768 528 ) +6 1769 1770 (128 896 528 ) (384 1024 528 ) (728 1024 528 ) (732 1020 528 ) (732 768 528 ) (128 768 528 ) +4 1770 1851 (128 768 400 ) (384 768 400 ) (384 768 528 ) (128 768 528 ) +4 1770 1849 (384 768 400 ) (448 768 400 ) (448 768 528 ) (384 768 528 ) +4 1770 1797 (448 768 400 ) (732 768 400 ) (732 768 460 ) (448 768 460 ) +4 1770 1794 (732 768 460 ) (732 768 466.666718 ) (448 768 466.666718 ) (448 768 460 ) +4 1770 1793 (732 768 466.666718 ) (732 768 528 ) (448 768 528 ) (448 768 466.666718 ) +5 1770 1772 (128 896 400 ) (384 1024 400 ) (732 1024 400 ) (732 768 400 ) (128 768 400 ) +5 1770 1771 (128 880 400 ) (128 768 400 ) (128 768 528 ) (128 896 528 ) (128 896 416 ) +5 1771 2448 (0 768 400 ) (0 768 528 ) (0 832 528 ) (0 832 416 ) (0 816 400 ) +4 1771 1863 (0 768 528 ) (0 768 400 ) (128 768 400 ) (128 768 528 ) +4 1771 1773 (128 864 400 ) (128 768 400 ) (0 768 400 ) (0 800 400 ) +4 1772 1852 (128 768 256 ) (384 768 256 ) (384 768 320 ) (128 768 320 ) +4 1772 1851 (384 768 320 ) (384 768 400 ) (128 768 400 ) (128 768 320 ) +4 1772 1849 (384 768 256 ) (448 768 256 ) (448 768 400 ) (384 768 400 ) +4 1772 1811 (448 768 256 ) (732 768 256 ) (732 768 280 ) (448 768 280 ) +4 1772 1800 (732 768 288 ) (732 768 292 ) (448 768 292 ) (448 768 288 ) +4 1772 1801 (732 768 280 ) (732 768 288 ) (448 768 288 ) (448 768 280 ) +4 1772 1797 (732 768 292 ) (732 768 400 ) (448 768 400 ) (448 768 292 ) +3 1772 1790 (732 832 256 ) (732 804 256 ) (704 832 256 ) +4 1772 1789 (732 804 256 ) (732 768 256 ) (512 768 256 ) (640 896 256 ) +4 1772 1784 (128 896 256 ) (384 1024 256 ) (396 1024 256 ) (128 890 256 ) +4 1772 1781 (396 1024 256 ) (672 1024 256 ) (432 784 256 ) (260 956 256 ) +5 1772 1780 (672 1024 256 ) (732 1024 256 ) (732 988 256 ) (640 896 256 ) (592 944 256 ) +5 1772 1777 (640 896 256 ) (512 768 256 ) (448 768 256 ) (432 784 256 ) (592 944 256 ) +3 1772 1775 (384 768 256 ) (384 832 256 ) (416 800 256 ) +5 1772 1776 (384 768 256 ) (128 768 256 ) (128 890 256 ) (260 956 256 ) (384 832 256 ) +4 1772 1773 (128 768 384 ) (128 768 400 ) (128 864 400 ) (128 880 384 ) +4 1772 1774 (128 896 256 ) (128 768 256 ) (128 768 384 ) (128 896 384 ) +4 1773 2450 (0 768 384 ) (0 768 400 ) (0 800 400 ) (0 816 384 ) +4 1773 1863 (0 768 400 ) (0 768 384 ) (128 768 384 ) (128 768 400 ) +4 1773 1774 (128 880 384 ) (128 768 384 ) (0 768 384 ) (0 816 384 ) +4 1774 2451 (0 768 256 ) (0 768 384 ) (0 832 384 ) (0 832 256 ) +4 1774 1863 (0 768 384 ) (0 768 256 ) (128 768 256 ) (128 768 384 ) +4 1774 1784 (120 892 256 ) (128 896 256 ) (128 890 256 ) (124 888 256 ) +4 1774 1783 (24 844 256 ) (40 852 256 ) (44 848 256 ) (28 840 256 ) +4 1774 1776 (128 890 256 ) (128 768 256 ) (0 768 256 ) (0 826 256 ) +4 1775 1782 (416 800 64 ) (384 832 64 ) (384 832 68 ) (416 800 68 ) +4 1775 1781 (384 832 68 ) (384 832 256 ) (416 800 256 ) (416 800 68 ) +4 1775 1776 (384 832 256 ) (384 832 64 ) (384 768 64 ) (384 768 256 ) +4 1776 2455 (0 768 88 ) (0 768 96 ) (0 826 96 ) (0 826 88 ) +4 1776 2457 (0 768 64 ) (0 768 88 ) (0 826 88 ) (0 826 64 ) +4 1776 2452 (0 768 248 ) (0 768 256 ) (0 826 256 ) (0 826 248 ) +4 1776 2454 (0 768 96 ) (0 768 248 ) (0 826 248 ) (0 826 96 ) +4 1776 1864 (0 768 70 ) (0 768 64 ) (128 768 64 ) (128 768 70 ) +4 1776 1863 (0 768 256 ) (0 768 70 ) (128 768 70 ) (128 768 256 ) +4 1776 1858 (128 768 64 ) (384 768 64 ) (384 768 70 ) (128 768 70 ) +4 1776 1853 (384 768 70 ) (384 768 256 ) (128 768 256 ) (128 768 70 ) +4 1776 1787 (124 888 96 ) (260 956 96 ) (260 956 88 ) (124 888 88 ) +4 1776 1786 (28 840 96 ) (44 848 96 ) (44 848 88 ) (28 840 88 ) +4 1776 1788 (260 956 64 ) (0 826 64 ) (0 826 88 ) (260 956 88 ) +4 1776 1784 (124 888 256 ) (260 956 256 ) (260 956 248 ) (124 888 248 ) +4 1776 1783 (28 840 256 ) (44 848 256 ) (44 848 248 ) (28 840 248 ) +4 1776 1785 (0 826 96 ) (0 826 248 ) (260 956 248 ) (260 956 96 ) +4 1776 1782 (384 832 64 ) (260 956 64 ) (260 956 68 ) (384 832 68 ) +4 1776 1781 (260 956 68 ) (260 956 256 ) (384 832 256 ) (384 832 68 ) +4 1777 1833 (512 768 88 ) (512 768 96 ) (448 768 96 ) (448 768 88 ) +4 1777 1829 (512 768 96 ) (512 768 104 ) (448 768 104 ) (448 768 96 ) +4 1777 1828 (512 768 104 ) (512 768 116 ) (448 768 116 ) (448 768 104 ) +4 1777 1820 (512 768 116 ) (512 768 120 ) (448 768 120 ) (448 768 116 ) +4 1777 1811 (512 768 120 ) (512 768 256 ) (448 768 256 ) (448 768 120 ) +4 1777 1789 (640 896 96 ) (640 896 256 ) (512 768 256 ) (512 768 96 ) +4 1777 1781 (432 784 88 ) (432 784 256 ) (592 944 256 ) (592 944 88 ) +4 1777 1780 (640 896 256 ) (640 896 88 ) (592.001953 943.998047 88 ) (592.001953 943.998047 256 ) +5 1777 1778 (448 768 88 ) (432 784 88 ) (592 944 88 ) (624 912 88 ) (480 768 88 ) +4 1778 1834 (480 768 88 ) (448 768 88 ) (448 768 80 ) (480 768 80 ) +4 1778 1781 (432 784 80 ) (432 784 88 ) (592 944 88 ) (592 944 80 ) +4 1778 1780 (624 912 80 ) (592.001953 943.998047 80 ) (592.001953 943.998047 88 ) (624 912 88 ) +4 1778 1779 (448 768 80 ) (432 784 80 ) (592 944 80 ) (608 928 80 ) +4 1779 1781 (432 784 70 ) (432 784 80 ) (592 944 80 ) (592 944 70 ) +4 1779 1780 (592.001953 943.998047 70 ) (592.001953 943.998047 80 ) (608 928 80 ) (608 928 70 ) +4 1780 1781 (592 944 70 ) (592 944 256 ) (672 1024 256 ) (672 1024 70 ) +4 1781 1787 (260 956 88 ) (260 956 96 ) (396 1024 96 ) (396 1024 88 ) +4 1781 1788 (260 956 68 ) (260 956 88 ) (396 1024 88 ) (396 1024 68 ) +4 1781 1784 (260 956 248 ) (260 956 256 ) (396 1024 256 ) (396 1024 248 ) +4 1781 1785 (260 956 96 ) (260 956 248 ) (396 1024 248 ) (396 1024 96 ) +4 1781 1782 (416 799.996704 68 ) (259.997375 955.998718 68 ) (396 1024 68 ) (460.799988 1024 68 ) +4 1782 1788 (396 1024 64 ) (260 956 64 ) (260 956 68 ) (396 1024 68 ) +4 1783 1785 (44 848 248 ) (28 840 248 ) (24 844 248 ) (40 852 248 ) +4 1784 1785 (396 1024 248 ) (124 888 248 ) (120 892 248 ) (384 1024 248 ) +4 1785 2454 (0 832 248 ) (0 832 96 ) (0 826 96 ) (0 826 248 ) +4 1785 1787 (396 1024 96 ) (124 888 96 ) (120 892 96 ) (384 1024 96 ) +4 1785 1786 (44 848 96 ) (28 840 96 ) (24 844 96 ) (40 852 96 ) +4 1786 1788 (44 848 88 ) (28 840 88 ) (24 844 88 ) (40 852 88 ) +4 1787 1788 (396 1024 88 ) (124 888 88 ) (120 892 88 ) (384 1024 88 ) +4 1788 2457 (0 832 88 ) (0 832 64 ) (0 826 64 ) (0 826 88 ) +4 1789 1829 (732 768 96 ) (732 768 104 ) (512 768 104 ) (512 768 96 ) +4 1789 1828 (732 768 104 ) (732 768 116 ) (512 768 116 ) (512 768 104 ) +4 1789 1820 (732 768 116 ) (732 768 120 ) (512 768 120 ) (512 768 116 ) +4 1789 1815 (732 768 158.150558 ) (732 768 245.177185 ) (536.310791 768 120 ) (692.259277 768 120 ) +5 1789 1811 (732 768 245.177185 ) (732 768 256 ) (512 768 256 ) (512 768 120 ) (536.310791 768 120 ) +3 1789 1807 (732 768 120 ) (732 768 158.150558 ) (692.259277 768 120 ) +4 1789 1790 (704 832 256 ) (732 804 256 ) (732 804 96 ) (704 832 96 ) +4 1791 1870 (448 768 0 ) (732 768 0 ) (732 768 64 ) (448 768 64 ) +5 1791 1792 (672 1024 0 ) (732 1024 0 ) (732 768 0 ) (448 768 0 ) (432 784 0 ) +4 1792 2458 (0 768 -1284 ) (0 768 0 ) (0 832 0 ) (0 832 -1284 ) +4 1792 1878 (0 768 0 ) (0 768 -1284 ) (732 768 -1284 ) (732 768 0 ) +5 1793 1849 (448 768 5542.669922 ) (448 768 466.666504 ) (448 764 460 ) (448 512 460 ) (448 512 5542.669922 ) +4 1793 1842 (448 512 5542.669922 ) (448 512 460 ) (960 512 460 ) (960 512 5542.669922 ) +4 1793 1835 (960 512 460 ) (1024 512 460 ) (1024 512 5542.669922 ) (960 512 5542.669922 ) +4 1793 1796 (1024 512 460 ) (732 512 460 ) (732 760 460 ) (1024 760 460 ) +4 1793 1797 (732 512 460 ) (448 512 460 ) (448 764 460 ) (732 764 460 ) +4 1793 1794 (736 763.998779 460 ) (448 763.998779 460 ) (448 768 466.668701 ) (740.001221 768 466.668732 ) +3 1794 1849 (448 768 466.666504 ) (448 768 460 ) (448 764 460 ) +4 1794 1797 (448 764 460 ) (448 768 460 ) (732 768 460 ) (732 764 460 ) +4 1795 1800 (732 766 290.001892 ) (732 768 292.001892 ) (764 768 292.001892 ) (764 766 290.001892 ) +4 1795 1798 (952 768 292.001862 ) (996 768 292.001862 ) (996 766 290.001862 ) (952 766 290.001862 ) +4 1795 1799 (836 768 292.001892 ) (880 768 292.001892 ) (880 766 290.001892 ) (836 766 290.001892 ) +4 1795 1802 (732 764 288.001892 ) (732 766 290.001892 ) (1024 766 290.001862 ) (1024 764 288.001862 ) +4 1795 1796 (732 764 448 ) (732 764 288.003906 ) (1024 764 288.003876 ) (1024 764 448 ) +4 1795 1797 (732 768 291.996094 ) (732 764 287.996094 ) (732 764 448 ) (732 768 440 ) +4 1796 1842 (960 512 320 ) (960 512 460 ) (732 512 460 ) (732 512 320 ) +4 1796 1838 (960 512 280 ) (992 512 280 ) (992 512 288 ) (960 512 288 ) +4 1796 1837 (992 512 280 ) (1024 512 280 ) (1024 512 288 ) (992 512 288 ) +4 1796 1836 (1024 512 288 ) (1024 512 320 ) (960 512 320 ) (960 512 288 ) +4 1796 1835 (1024 512 320 ) (1024 512 460 ) (960 512 460 ) (960 512 320 ) +4 1796 1818 (1024 512 280 ) (732 512 280 ) (732 756 280 ) (1024 756 280 ) +4 1796 1802 (1024 755.998108 280 ) (732 755.998108 280 ) (732 764 288.001892 ) (1024 764 288.001862 ) +6 1796 1797 (732 764 287.996094 ) (732 756.003906 280 ) (732 512 280 ) (732 512 460 ) (732 760 460 ) (732 764 452 ) +5 1797 1849 (448 768 460 ) (448 768 292 ) (448 756 280 ) (448 512 280 ) (448 512 460 ) +4 1797 1842 (448 512 460 ) (448 512 320 ) (732 512 320 ) (732 512 460 ) +4 1797 1818 (732 512 280 ) (448 512 280 ) (448 756 280 ) (732 756 280 ) +4 1797 1800 (448 766 290.001892 ) (448 768 292.001892 ) (732 768 292.001892 ) (732 766 290.001892 ) +4 1797 1802 (732 755.998108 280 ) (448 755.998108 280 ) (448 766 290.001892 ) (732 766 290.001892 ) +4 1798 1802 (996 766 290.001923 ) (952 766 290.001923 ) (952 766 288 ) (996 766 288 ) +4 1798 1801 (996 766 288 ) (952 766 288 ) (952 768 288 ) (996 768 288 ) +4 1799 1801 (880 766 288 ) (836 766 288 ) (836 768 288 ) (880 768 288 ) +4 1799 1802 (880 766 290.001923 ) (836 766 290.001923 ) (836 766 288 ) (880 766 288 ) +4 1800 1849 (448 768 292 ) (448 768 288 ) (448 766 288 ) (448 766 290 ) +4 1800 1802 (764 766 290.001923 ) (448 766 290.001953 ) (448 766 288 ) (764 766 288 ) +4 1800 1801 (764 766 288 ) (448 766 288 ) (448 768 288 ) (764 768 288 ) +4 1801 1849 (448 768 288 ) (448 768 280 ) (448 766 280 ) (448 766 288 ) +4 1801 1813 (813.934937 768 280 ) (858.928284 768 280 ) (858.936279 767 280 ) (813.932922 767 280 ) +4 1801 1812 (786.438416 768 280 ) (793.931946 768 280 ) (793.929932 767 280 ) (786.435364 767 280 ) +4 1801 1811 (448 767 280 ) (448 768 280 ) (786.438416 768 280 ) (786.435364 767 280 ) +4 1801 1806 (894.432678 768 280 ) (901.927979 768 280 ) (901.929932 767 280 ) (894.434204 767 280 ) +4 1801 1805 (858.928284 768 280 ) (894.432678 768 280 ) (894.434204 767 280 ) (858.936279 767 280 ) +4 1801 1804 (921.930115 768 280 ) (929.441650 768 280 ) (929.446289 767 280 ) (921.925903 767 280 ) +4 1801 1803 (929.441650 768 280 ) (1024 768 280 ) (1024 767 280 ) (929.446289 767 280 ) +4 1801 1818 (448 766 280 ) (448 767 280 ) (1024 767 280 ) (1024 766 280 ) +4 1801 1802 (448 766 280 ) (1024 766 280 ) (1024 766 288 ) (448 766 288 ) +3 1802 1849 (448 766 280 ) (448 756 280 ) (448 766 290 ) +4 1802 1818 (448 756 280 ) (448 766 280 ) (1024 766 280 ) (1024 756 280 ) +4 1803 1808 (1024 767 219.463013 ) (951.930176 767 265.605133 ) (951.930115 768 265.602173 ) (1024 768 219.459991 ) +4 1803 1804 (936.960754 767 275.189178 ) (929.446716 767 280 ) (929.442017 768 280 ) (936.947205 768 275.194885 ) +3 1803 1818 (1024 767 219.462952 ) (1024 767 280 ) (929.446289 767 280 ) +3 1804 1818 (936.959961 767 275.189453 ) (929.446289 767 280 ) (921.925903 767 280 ) +4 1805 1814 (846.441040 767 268 ) (847.685608 767 269.194763 ) (847.680054 768 269.197174 ) (846.432983 768 268 ) +4 1805 1813 (847.685608 767 269.194763 ) (858.941223 767 280 ) (858.933167 768 280 ) (847.680054 768 269.197174 ) +4 1805 1810 (875.693237 767 268 ) (869.428955 767 268 ) (869.428955 768 268 ) (875.691650 768 268 ) +4 1805 1807 (869.428955 767 268 ) (846.436646 767 268 ) (846.428589 768 268 ) (869.428955 768 268 ) +4 1805 1806 (894.433350 767 280 ) (886.940857 767 275.202484 ) (886.939636 768 275.202728 ) (894.431763 768 280 ) +4 1805 1818 (894.434204 767 280 ) (858.936279 767 280 ) (846.436096 767 268 ) (875.693237 767 268 ) +3 1806 1818 (901.929932 767 280 ) (894.434204 767 280 ) (886.942566 767 275.203033 ) +5 1807 1821 (953.332092 768 120 ) (1023.596619 768 120 ) (1024 767.612793 119.612778 ) (1024 767 119 ) (953.666016 767 119 ) +4 1807 1820 (692.259277 768 120 ) (762.666992 768 120 ) (762.333435 767 119 ) (691.225708 767 119 ) +4 1807 1819 (845.332031 768 120 ) (870.666992 768 120 ) (870.333557 767 119 ) (845.666016 767 119 ) +4 1807 1817 (843.936951 767 265.596100 ) (846.441040 767 268 ) (846.432983 768 268 ) (843.929932 768 265.597107 ) +4 1807 1816 (803.933289 767 227.193085 ) (833.939026 767 255.998230 ) (833.931763 768 255.998978 ) (803.930237 768 227.197876 ) +4 1807 1815 (692.260193 768 119.996094 ) (691.226563 767 118.996094 ) (803.933289 767 227.193085 ) (803.930237 768 227.197876 ) +4 1807 1810 (869.427734 768 268 ) (869.427734 767 268 ) (871.934692 767 265.593353 ) (871.934021 768 265.593964 ) +4 1807 1809 (881.928284 767 256 ) (911.930847 767 227.197281 ) (911.932373 768 227.195770 ) (881.928223 768 256 ) +5 1807 1808 (911.930847 767 227.197281 ) (1024 767 119.611633 ) (1024 767.611572 119.611618 ) (1023.595398 768 120 ) (911.932373 768 227.195770 ) +5 1807 1818 (691.225708 767 119 ) (1024 767 119 ) (1024 767 119.612816 ) (869.428955 767 268 ) (846.436096 767 268 ) +3 1808 1821 (1023.596619 768 120 ) (1024 768 120 ) (1024 767.612793 119.612778 ) +4 1808 1809 (911.932678 768 227.196686 ) (911.931091 767 227.198196 ) (941.926514 767 256 ) (941.929626 768 256 ) +4 1808 1818 (1024 767 119.612816 ) (1024 767 219.462952 ) (951.930054 767 265.605011 ) (911.931458 767 227.197845 ) +7 1809 1818 (919.429993 767 268 ) (904.429993 767 268 ) (894.402222 767 263.185181 ) (881.929016 767 256 ) (911.931458 767 227.197845 ) (941.927063 767 256 ) (929.404114 767 263.213928 ) +3 1810 1818 (875.693176 767 268 ) (869.428955 767 268 ) (871.935364 767 265.593842 ) +4 1811 1849 (448 768 280 ) (448 768 256 ) (448 767 256 ) (448 767 280 ) +4 1811 1820 (448 767 119 ) (448 768 120 ) (536.310730 768 120 ) (534.744507 767 119 ) +4 1811 1815 (763.928284 767 265.601685 ) (534.746216 767 119 ) (536.312500 768 120 ) (763.930664 768 265.601257 ) +4 1811 1812 (786.437134 767 280 ) (778.931580 767 275.198883 ) (778.935486 768 275.199493 ) (786.440125 768 280 ) +4 1811 1818 (448 767 119 ) (534.744507 767 119 ) (786.435364 767 280 ) (448 767 280 ) +3 1812 1818 (793.929932 767 280 ) (786.435364 767 280 ) (778.928040 767 275.197754 ) +4 1813 1814 (847.675842 768 269.197784 ) (847.681396 767 269.195374 ) (828.930664 767 275.198059 ) (828.917603 768 275.202881 ) +3 1813 1818 (847.681885 767 269.195953 ) (858.936279 767 280 ) (813.932922 767 280 ) +4 1814 1817 (840.174561 768 268 ) (846.427673 768 268 ) (846.435730 767 268 ) (840.180115 767 268 ) +4 1814 1818 (846.436096 767 268 ) (847.681885 767 269.195953 ) (828.928467 767 275.199493 ) (840.179993 767 268 ) +4 1815 1820 (536.310730 768 120 ) (692.259277 768 120 ) (691.225708 767 119 ) (534.744507 767 119 ) +4 1815 1816 (773.929932 767 256 ) (803.931580 767 227.196167 ) (803.928528 768 227.201004 ) (773.931335 768 256.001160 ) +4 1815 1818 (534.744507 767 119 ) (691.225708 767 119 ) (803.930786 767 227.195496 ) (763.927551 767 265.602356 ) +7 1816 1818 (803.930786 767 227.195496 ) (833.935913 767 256 ) (821.447998 767 263.190399 ) (811.430054 767 268 ) (796.430054 767 268 ) (786.424438 767 263.195831 ) (773.929016 767 256 ) +3 1817 1818 (843.933960 767 265.597992 ) (846.436096 767 268 ) (840.180054 767 268 ) +4 1818 1849 (448 512 256 ) (448 512 280 ) (448 767 280 ) (448 767 256 ) +4 1818 1838 (960 512 116 ) (992 512 116 ) (992 512 280 ) (960 512 280 ) +4 1818 1837 (992 512 116 ) (1024 512 116 ) (1024 512 280 ) (992 512 280 ) +4 1818 1832 (960 512 116 ) (448 512 116 ) (448 764 116 ) (960 764 116 ) +4 1818 1827 (1024 512 116 ) (960 512 116 ) (960 640 116 ) (1024 640 116 ) +4 1818 1826 (960 640 116 ) (960 764 116 ) (992 764 116 ) (992 640 116 ) +4 1818 1823 (992 764 116 ) (1024 764 116 ) (1024 640 116 ) (992 640 116 ) +4 1818 1821 (953.666077 767 119 ) (1024 767 119 ) (1024 766 118 ) (954 766 118 ) +4 1818 1820 (448 766 118 ) (448 767 119 ) (762.333496 767 119 ) (762 766 118 ) +4 1818 1819 (845.666016 767 119 ) (870.333496 767 119 ) (870 766 118 ) (846 766 118 ) +4 1818 1822 (1024 764 116 ) (448 764 116 ) (448 766 118 ) (1024 766 118 ) +4 1819 1828 (845.325928 768 116 ) (870.666016 768 116 ) (870 766 116 ) (845.997009 766 116 ) +4 1819 1822 (845.996948 766 116 ) (870 766 116 ) (870 766 118 ) (846 766 118 ) +4 1820 1828 (448 766 116 ) (448 768 116 ) (762.666016 768 116 ) (762 766 116 ) +4 1820 1822 (448 766 116 ) (762 766 116 ) (762 766 118 ) (448 766 118 ) +4 1821 1828 (953.325989 768 116 ) (960 768 116 ) (960 766 116 ) (953.997070 766 116 ) +4 1821 1824 (960 768 116 ) (992 768 116 ) (992 766 116 ) (960 766 116 ) +4 1821 1823 (992 768 116 ) (1024 768 116 ) (1024 766 116 ) (992 766 116 ) +4 1821 1822 (953.997070 766 116 ) (1024 766 116 ) (1024 766 118 ) (954 766 118 ) +4 1822 1828 (448 764 116 ) (448 766 116 ) (960 766 116 ) (960 764 116 ) +4 1822 1824 (960 766 116 ) (992 766 116 ) (992 764 116 ) (960 764 116 ) +4 1822 1823 (992 766 116 ) (1024 766 116 ) (1024 764 116 ) (992 764 116 ) +4 1823 1827 (1024 640 96 ) (1024 640 116 ) (992 640 116 ) (992 640 96 ) +4 1823 1825 (992 768 96 ) (992 768 88 ) (992 764 88 ) (992 764 92 ) +4 1823 1824 (992 764 116 ) (992 768 116 ) (992 768 96 ) (992 764 92 ) +4 1823 1826 (992 640 88 ) (992 640 116 ) (992 764 116 ) (992 764 88 ) +4 1824 1831 (960 768 104 ) (960 768 96 ) (960 764 96 ) (960 764 100 ) +4 1824 1828 (960 764 116 ) (960 768 116 ) (960 768 104 ) (960 764 100 ) +4 1824 1825 (992 768 96 ) (992 764 92 ) (964 764 92 ) (968 768 96 ) +4 1824 1826 (960 764 116 ) (960 764 92 ) (992 764 92 ) (992 764 116 ) +4 1825 1826 (964 764 88 ) (992 764 88 ) (992 764 92 ) (964 764 92 ) +4 1826 1832 (960 640 96 ) (960 640 116 ) (960 764 116 ) (960 764 96 ) +4 1826 1827 (960 640 116 ) (960 640 96 ) (992 640 96 ) (992 640 116 ) +4 1827 1838 (992 512 116 ) (960 512 116 ) (960 512 96 ) (992 512 96 ) +4 1827 1837 (1024 512 96 ) (1024 512 116 ) (992 512 116 ) (992 512 96 ) +4 1827 1832 (960 512 96 ) (960 512 116 ) (960 640 116 ) (960 640 96 ) +4 1828 1831 (960 768 103.998558 ) (960 764 99.998077 ) (952 764 99.998077 ) (956 768 103.998558 ) +4 1828 1830 (868.002258 764 99.998077 ) (848 764 99.998077 ) (852 768 103.998558 ) (864.002319 768 103.998558 ) +4 1828 1829 (764 764 99.998077 ) (448 764 99.998062 ) (448 768 103.998550 ) (760 768 103.998558 ) +4 1828 1832 (960 764 100 ) (960 764 116 ) (448 764 116 ) (448 764 100 ) +4 1829 1833 (508 764 96 ) (448 764 96 ) (448 768 96 ) (512 768 96 ) +4 1829 1832 (448 764 96 ) (764 764 96 ) (764 764 100 ) (448 764 100 ) +4 1830 1832 (848 764 96 ) (868.002258 764 96 ) (868.002258 764 100 ) (848 764 100 ) +4 1831 1832 (952 764 96 ) (960 764 96 ) (960 764 100 ) (952 764 100 ) +3 1832 1833 (448 704 96 ) (448 764 96 ) (508 764 96 ) +3 1833 1834 (448 736 88 ) (448 768 88 ) (480 768 88 ) +4 1835 1883 (1024 0 320 ) (1024 0 448 ) (960 0 448 ) (960 0 320 ) +4 1835 1880 (1024 0 448 ) (1024 0 544 ) (960 0 544 ) (960 0 448 ) +4 1835 1879 (1024 0 544 ) (1024 0 5542.669922 ) (960 0 5542.669922 ) (960 0 544 ) +4 1835 1843 (960 192 320 ) (960 0 320 ) (960 0 5542.669922 ) (960 192 5542.669922 ) +4 1835 1842 (960 512 5542.669922 ) (960 512 320 ) (960 192 320 ) (960 192 5542.669922 ) +4 1835 1836 (960 384 320 ) (960 512 320 ) (1024 512 320 ) (1024 384 320 ) +4 1836 1838 (960 384 288 ) (960 512 288 ) (992 512 288 ) (992 384 288 ) +4 1836 1837 (992 512 288 ) (1024 512 288 ) (1024 384 288 ) (992 384 288 ) +4 1837 1841 (1024 128 288 ) (992 128 288 ) (992 128 160 ) (1024 128 160 ) +4 1837 1840 (1024 128 160 ) (992 128 160 ) (992 320 128 ) (1024 320 128 ) +4 1837 1838 (992 512 96.002930 ) (992 384 117.336258 ) (992 384 288 ) (992 512 288 ) +4 1837 1839 (992 352 122.669594 ) (992 128 160.002930 ) (992 128 288 ) (992 352 288 ) +4 1839 1841 (992 128 288 ) (960 128 288 ) (960 128 160 ) (992 128 160 ) +4 1839 1840 (992 128 160 ) (960 128 160 ) (960 320 128 ) (992 320 128 ) +4 1840 1841 (960 128 160 ) (960 128 128 ) (1024 128 128 ) (1024 128 160 ) +4 1841 1921 (1024 0 128 ) (1024 0 288 ) (960 0 288 ) (960 0 128 ) +4 1841 1846 (960 0 256 ) (960 0 288 ) (960 128 288 ) (960 128 256 ) +4 1841 1847 (960 0 128 ) (960 0 256 ) (960 128 256 ) (960 128 128 ) +4 1842 1849 (448 192 320 ) (448 192 5542.669922 ) (448 512 5542.669922 ) (448 512 320 ) +4 1842 1848 (448 192 5542.669922 ) (448 192 320 ) (544 192 320 ) (544 192 5542.669922 ) +4 1842 1843 (544 192 320 ) (960 192 320 ) (960 192 5542.669922 ) (544 192 5542.669922 ) +4 1843 1883 (928 0 320 ) (960 0 320 ) (960 0 448 ) (928 0 448 ) +4 1843 1885 (544 0 448 ) (544 0 320 ) (928 0 320 ) (928 0 448 ) +4 1843 1880 (544 0 544 ) (544 0 448 ) (960 0 448 ) (960 0 544 ) +4 1843 1879 (544 0 5542.669922 ) (544 0 544 ) (960 0 544 ) (960 0 5542.669922 ) +4 1843 1848 (544 192 5542.669922 ) (544 192 320 ) (544 0 320 ) (544 0 5542.669922 ) +4 1844 1870 (894.400085 192 64 ) (896 192 64 ) (896 128 64 ) (894.400085 128 64 ) +4 1844 1847 (896 128 128 ) (896 128 256 ) (894.400085 128 256 ) (894.400085 128 128 ) +4 1844 1845 (894.400085 128 128 ) (894.400085 128 256 ) (894.400085 192 256 ) (894.400085 192 128 ) +4 1845 1847 (894.400085 128 128 ) (894.400085 128 256 ) (704 128 256 ) (704 128 128 ) +4 1846 1923 (896 0 256 ) (960 0 256 ) (960 0 288 ) (928 0 288 ) +4 1846 1847 (896 128 256 ) (960 128 256 ) (960 0 256 ) (896 0 256 ) +4 1847 1925 (576 0 128 ) (768 0 128 ) (896 0 256 ) (576 0 256 ) +4 1847 1923 (768 0 128 ) (960 0 128 ) (960 0 256 ) (896 0 256 ) +4 1848 1929 (448 0 320 ) (448 0 256 ) (544 0 256 ) (544 0 320 ) +4 1848 1889 (448 0 515.200195 ) (448 0 336 ) (464 0 336 ) (464 0 515.200073 ) +4 1848 1888 (464 0 336 ) (472 0 336 ) (472 0 515.200012 ) (464 0 515.200073 ) +4 1848 1886 (448 0 5542.669922 ) (448 0 515.200195 ) (472 0 515.200012 ) (472 0 5542.669922 ) +4 1848 1900 (448 0 336 ) (448 0 320 ) (472 0 320 ) (472 0 336 ) +4 1848 1885 (472 0 320 ) (544 0 320 ) (544 0 448 ) (472 0 448 ) +4 1848 1880 (544 0 448 ) (544 0 544 ) (472 0 544 ) (472 0 448 ) +4 1848 1879 (544 0 544 ) (544 0 5542.669922 ) (472 0 5542.669922 ) (472 0 544 ) +4 1848 1860 (448 0 256 ) (448 0 320 ) (448 32 320 ) (448 32 256 ) +4 1848 1859 (448 0 320 ) (448 0 5542.669922 ) (448 32 5542.669922 ) (448 32 320 ) +4 1848 1849 (448 32 5542.669922 ) (448 192 5542.669922 ) (448 192 256 ) (448 32 256 ) +4 1849 1860 (448 32 256 ) (448 32 320 ) (384 32 320 ) (384 32 256 ) +4 1849 1859 (448 32 320 ) (448 32 5542.669922 ) (384 32 5542.669922 ) (384 32 320 ) +4 1849 1854 (384 384 256 ) (384 32 256 ) (384 32 320 ) (384 384 320 ) +4 1849 1852 (384 768 320 ) (384 768 256 ) (384 384 256 ) (384 384 320 ) +4 1849 1851 (384 768 5542.669922 ) (384 768 320 ) (384 32 320 ) (384 32 5542.669922 ) +4 1849 1850 (448 32 256 ) (384 32 256 ) (384 384 256 ) (448 384 256 ) +4 1850 1877 (448 384 64 ) (448 32 64 ) (384 32 64 ) (384 384 64 ) +4 1850 1860 (448 32 96 ) (448 32 256 ) (384 32 256 ) (384 32 96 ) +4 1850 1862 (384 32 64 ) (448 32 64 ) (448 32 96 ) (384 32 96 ) +4 1850 1857 (384 384 64 ) (384 32 64 ) (384 32 70 ) (384 384 70 ) +4 1850 1854 (384 32 70 ) (384 32 256 ) (384 384 256 ) (384 384 70 ) +4 1851 1865 (128 448 320 ) (128 32 320 ) (128 32 5542.669922 ) (128 448 5542.669922 ) +4 1851 1863 (128 768 5542.669922 ) (128 768 320 ) (128 448 320 ) (128 448 5542.669922 ) +4 1851 1861 (128 32 5542.669922 ) (128 32 320 ) (352 32 320 ) (352 32 5542.669922 ) +4 1851 1859 (352 32 320 ) (384 32 320 ) (384 32 5542.669922 ) (352 32 5542.669922 ) +4 1851 1855 (128 48 320 ) (128 384 320 ) (352 384 320 ) (352 48 320 ) +4 1851 1854 (384 384 320 ) (384 32 320 ) (352 32 320 ) (352 384 320 ) +4 1851 1852 (384 768 320 ) (384 384 320 ) (128 384 320 ) (128 768 320 ) +4 1852 1866 (128 448 256 ) (128 384 256 ) (128 384 320 ) (128 448 320 ) +4 1852 1863 (128 768 320 ) (128 768 256 ) (128 448 256 ) (128 448 320 ) +4 1852 1855 (352 384 320 ) (128 384 320 ) (128 384 256 ) (352 384 256 ) +4 1852 1854 (384 384 256 ) (384 384 320 ) (352 384 320 ) (352 384 256 ) +4 1852 1853 (128 448 256 ) (128 768 256 ) (384 768 256 ) (384 640 256 ) +4 1853 1863 (128 768 256 ) (128 768 70 ) (128 448 70 ) (128 448 256 ) +7 1853 1858 (384 768 70 ) (384 736 70 ) (320 672 70 ) (240 608 70 ) (164 552 70 ) (128 531.428528 70 ) (128 768 70 ) +4 1854 1860 (384 32 96 ) (384 32 320 ) (368 32 320 ) (368 32 96 ) +4 1854 1862 (352 32 70 ) (384 32 70 ) (384 32 96 ) (352 32 96 ) +4 1854 1857 (384 384 70 ) (384 32 70 ) (352 32 70 ) (352 384 70 ) +4 1854 1856 (352 48 70 ) (352 32 70 ) (352 32 144 ) (352 48 144 ) +4 1854 1855 (352 384 320 ) (352 384 70 ) (352 48 70 ) (352 48 320 ) +4 1855 1867 (128 192 70 ) (128 48 70 ) (128 48 320 ) (128 192 320 ) +4 1855 1866 (128 192 256 ) (128 192 320 ) (128 384 320 ) (128 384 256 ) +4 1855 1857 (128 48 70 ) (128 384 70 ) (352 384 70 ) (352 48 70 ) +4 1855 1856 (128 48 70 ) (352 48 70 ) (352 48 144 ) (128 48 144 ) +4 1856 1867 (128 48 70 ) (128 32 70 ) (128 32 144 ) (128 48 144 ) +4 1856 1862 (128 32 96 ) (128 32 70 ) (352 32 70 ) (352 32 96 ) +4 1856 1857 (352 32 70 ) (128 32 70 ) (128 48 70 ) (352 48 70 ) +4 1857 1877 (128 32 64 ) (128 384 64 ) (384 384 64 ) (384 32 64 ) +4 1857 1867 (128 192 64 ) (128 32 64 ) (128 32 70 ) (128 192 70 ) +4 1857 1862 (128 32 70 ) (128 32 64 ) (384 32 64 ) (384 32 70 ) +4 1858 1864 (128 768 70 ) (128 768 64 ) (128 531.428528 64 ) (128 531.428528 70 ) +4 1859 1889 (352 0 515.200195 ) (352 0 336 ) (448 0 336 ) (448 0 515.200012 ) +4 1859 1886 (352 0 5542.669922 ) (352 0 515.200195 ) (448 0 515.200012 ) (448 0 5542.669922 ) +4 1859 1900 (352 0 336 ) (352 0 320 ) (448 0 320 ) (448 0 336 ) +4 1859 1861 (352 32 5542.669922 ) (352 32 320 ) (352 0 320 ) (352 0 5542.669922 ) +4 1859 1860 (368 32 320 ) (448 32 320 ) (448 0 320 ) (368 0 320 ) +4 1860 1931 (368 0 96 ) (448 0 96 ) (448 0 256 ) (368 0 256 ) +4 1860 1929 (448 0 256 ) (448 0 320 ) (368 0 320 ) (368 0 256 ) +4 1860 1862 (368 32 96 ) (448 32 96 ) (448 0 96 ) (368 0 96 ) +4 1861 1971 (128 0 320 ) (128 0 144 ) (224 0 144 ) (224 0 320 ) +4 1861 1940 (224 0 144 ) (352 0 144 ) (352 0 320 ) (224 0 320 ) +4 1861 1901 (128 0 5542.669922 ) (128 0 320 ) (312 0 320 ) (312 0 5542.669922 ) +4 1861 1889 (352 0 336 ) (352 0 515.200012 ) (312 0 515.200195 ) (312 0 336 ) +4 1861 1886 (352 0 515.200012 ) (352 0 5542.669922 ) (312 0 5542.669922 ) (312 0 515.200195 ) +4 1861 1900 (312 0 320 ) (352 0 320 ) (352 0 336 ) (312 0 336 ) +4 1861 1865 (128 0 320 ) (128 0 5542.669922 ) (128 32 5542.669922 ) (128 32 320 ) +4 1862 2046 (128 0 96 ) (128 0 64 ) (448 0 64 ) (448 0 96 ) +4 1862 1877 (448 0 64 ) (128 0 64 ) (128 32 64 ) (448 32 64 ) +4 1862 1868 (128 32 64 ) (128 0 64 ) (128 0 96 ) (128 32 96 ) +4 1863 2516 (0 760 70 ) (0 448 70 ) (0 448 304 ) (0 760 304 ) +4 1863 2512 (0 768 96 ) (0 768 88 ) (0 760 88 ) (0 760 96 ) +4 1863 2511 (0 768 248 ) (0 768 96 ) (0 760 96 ) (0 760 248 ) +4 1863 2515 (0 768 88 ) (0 768 70 ) (0 760 70 ) (0 760 88 ) +4 1863 2507 (0 768 256 ) (0 768 248 ) (0 760 248 ) (0 760 256 ) +4 1863 2506 (0 768 304 ) (0 768 256 ) (0 760 256 ) (0 760 304 ) +4 1863 2500 (0 768 320 ) (0 768 304 ) (0 448 304 ) (0 448 320 ) +4 1863 2499 (0 768 384 ) (0 768 320 ) (0 448 320 ) (0 448 384 ) +4 1863 2497 (0 768 400 ) (0 768 384 ) (0 752 384 ) (0 736 400 ) +4 1863 2496 (0 752 384 ) (0 448 384 ) (0 448 400 ) (0 736 400 ) +4 1863 2489 (0 768 5542.669922 ) (0 768 400 ) (0 752 400 ) (0 752 5542.669922 ) +4 1863 2493 (0 752 400 ) (0 448 400 ) (0 448 5542.669922 ) (0 752 5542.669922 ) +4 1863 1866 (0 448 320 ) (0 448 256 ) (128 448 256 ) (128 448 320 ) +4 1863 1865 (0 448 5542.669922 ) (0 448 320 ) (128 448 320 ) (128 448 5542.669922 ) +5 1863 1864 (0 478.545441 70 ) (0 768 70 ) (128 768 70 ) (128 531.428589 70 ) (80 504 70 ) +4 1864 2517 (0 760 64 ) (0 478.545441 64 ) (0 478.545441 70 ) (0 760 70 ) +4 1864 2515 (0 768 70 ) (0 768 64 ) (0 760 64 ) (0 760 70 ) +4 1865 2505 (0 0 320 ) (0 0 1152 ) (0 432 1152 ) (0 432 320 ) +4 1865 2504 (0 0 1152 ) (0 0 5542.669922 ) (0 16 5542.669922 ) (0 16 1152 ) +4 1865 2503 (0 16 5542.669922 ) (0 432 5542.669922 ) (0 432 1152 ) (0 16 1152 ) +4 1865 2502 (0 448 384 ) (0 448 320 ) (0 432 320 ) (0 432 384 ) +4 1865 2496 (0 448 400 ) (0 448 384 ) (0 432 384 ) (0 432 400 ) +4 1865 2493 (0 432 5542.669922 ) (0 448 5542.669922 ) (0 448 400 ) (0 432 400 ) +4 1865 1915 (0 0 725.333496 ) (0 0 717.333496 ) (8 0 717.333313 ) (8 0 725.333374 ) +4 1865 1914 (0 0 5542.669922 ) (0 0 725.333496 ) (8 0 725.333374 ) (8 0 5542.669922 ) +4 1865 1907 (0 0 717.333496 ) (0 0 336 ) (8 0 336 ) (8 0 717.333313 ) +4 1865 1913 (0 0 336 ) (0 0 320 ) (8 0 320 ) (8 0 336 ) +4 1865 1901 (8 0 320 ) (128 0 320 ) (128 0 5542.669922 ) (8 0 5542.669922 ) +4 1865 1867 (128 192 320 ) (128 32 320 ) (112 32 320 ) (112 192 320 ) +4 1865 1869 (112 0 320 ) (0 0 320 ) (0 192 320 ) (112 192 320 ) +4 1865 1866 (0 448 320 ) (128 448 320 ) (128 192 320 ) (0 192 320 ) +4 1866 2516 (0 448 304 ) (0 448 256 ) (0 192 256 ) (0 192 304 ) +4 1866 2505 (0 192 320 ) (0 432 320 ) (0 432 304 ) (0 192 304 ) +4 1866 2502 (0 432 320 ) (0 448 320 ) (0 448 304 ) (0 432 304 ) +4 1866 1867 (128 192 256 ) (128 192 320 ) (112 192 320 ) (112 192 256 ) +4 1866 1869 (112 192 320 ) (0 192 320 ) (0 192 256 ) (112 192 256 ) +4 1867 1877 (112 32 64 ) (112 192 64 ) (128 192 64 ) (128 32 64 ) +4 1867 1868 (112 32 144 ) (112 32 64 ) (128 32 64 ) (128 32 144 ) +4 1867 1869 (112 192 320 ) (112 192 64 ) (112 32 64 ) (112 32 320 ) +4 1868 2053 (112 0 64 ) (128 0 64 ) (128 0 96 ) (112 0 96 ) +4 1868 1983 (128 0 96 ) (128 0 144 ) (112 0 144 ) (112 0 96 ) +4 1868 1877 (128 0 64 ) (112 0 64 ) (112 32 64 ) (128 32 64 ) +4 1868 1869 (112 32 64 ) (112 0 64 ) (112 0 144 ) (112 32 144 ) +4 1869 2518 (0 0 64 ) (0 0 70 ) (0 192 70 ) (0 192 64 ) +4 1869 2516 (0 0 70 ) (0 0 304 ) (0 192 304 ) (0 192 70 ) +4 1869 2505 (0 0 304 ) (0 0 320 ) (0 192 320 ) (0 192 304 ) +4 1869 2053 (0 0 96 ) (0 0 64 ) (112 0 64 ) (112 0 96 ) +4 1869 1984 (0 0 320 ) (0 0 96 ) (112 0 96 ) (112 0 320 ) +4 1869 1877 (112 0 64 ) (0 0 64 ) (0 192 64 ) (112 192 64 ) +4 1870 2260 (464 0 64 ) (448 0 64 ) (448 0 48 ) (464 0 48 ) +4 1870 2259 (480 0 64 ) (464 0 64 ) (464 0 48 ) (480 0 48 ) +4 1870 2263 (448 0 48 ) (448 0 0 ) (480 0 0 ) (480 0 48 ) +4 1870 2258 (512 0 64 ) (480 0 64 ) (480 0 0 ) (512 0 0 ) +4 1870 2254 (896 0 64 ) (544 0 64 ) (544 0 0 ) (896 0 0 ) +4 1870 2255 (544 0 64 ) (512 0 64 ) (512 0 0 ) (544 0 0 ) +4 1870 2251 (1024 0 0 ) (1024 0 64 ) (896 0 64 ) (896 0 0 ) +4 1870 1878 (448 768 0 ) (1024 768 0 ) (1024 0 0 ) (448 0 0 ) +4 1870 1877 (448 384 0 ) (448 0 0 ) (448 0 64 ) (448 384 64 ) +4 1871 1878 (384 677.714294 0 ) (384 640 0 ) (128 448 0 ) (128 531.428589 0 ) +4 1871 1876 (128 531.428589 0 ) (128 519.272705 0 ) (128 519.272705 64 ) (128 531.428589 64 ) +4 1871 1875 (128 519.272705 0 ) (128 448 0 ) (128 448 64 ) (128 519.272705 64 ) +4 1871 1872 (384 677.713135 64 ) (384 677.713135 0 ) (163.994583 551.996033 0 ) (163.994583 551.996033 64 ) +3 1872 1878 (384 714.105286 0 ) (384 677.714294 0 ) (164 552 0 ) +4 1872 1874 (300.799438 652.799500 0 ) (240.002243 608.001770 0 ) (240.002243 608.001770 64 ) (300.799438 652.799500 64 ) +4 1872 1873 (384 714.104858 64 ) (384 714.104858 0 ) (300.799438 652.799500 0 ) (300.799438 652.799500 64 ) +3 1873 1878 (384 736 0 ) (384 714.105286 0 ) (300.799927 652.799988 0 ) +4 1873 1874 (320 672 0 ) (300.792969 652.792969 0 ) (300.792969 652.792969 64 ) (320 672 64 ) +3 1874 1878 (320 672 0 ) (300.799927 652.799988 0 ) (240 608 0 ) +4 1875 2523 (0 384 64 ) (0 432 64 ) (0 432 0 ) (0 384 0 ) +4 1875 2520 (0 448 64 ) (0 478.545471 64 ) (0 478.545471 0 ) (0 448 0 ) +4 1875 1878 (0 384 0 ) (0 478.545471 0 ) (128 519.272705 0 ) (128 384 0 ) +4 1875 1876 (128 519.272461 64 ) (128 519.272461 0 ) (79.998993 504 0 ) (79.998993 504 64 ) +4 1875 1877 (0 384 0 ) (128 384 0 ) (128 384 64 ) (0 384 64 ) +3 1876 1878 (128 531.428528 0 ) (128 519.272705 0 ) (80 504 0 ) +4 1877 2524 (0 0 0 ) (0 0 64 ) (0 192 64 ) (0 192 0 ) +4 1877 2523 (0 192 64 ) (0 384 64 ) (0 384 0 ) (0 192 0 ) +4 1877 2270 (128 0 64 ) (0 0 64 ) (0 0 0 ) (128 0 0 ) +4 1877 2269 (432 0 64 ) (128 0 64 ) (128 0 0 ) (432 0 0 ) +4 1877 2260 (448 0 64 ) (432 0 64 ) (432 0 48 ) (448 0 48 ) +4 1877 2263 (432 0 48 ) (432 0 0 ) (448 0 0 ) (448 0 48 ) +4 1877 1878 (0 0 0 ) (0 384 0 ) (448 384 0 ) (448 0 0 ) +4 1878 2537 (0 0 -1284 ) (0 0 -128 ) (0 768 -128 ) (0 768 -1284 ) +4 1878 2536 (0 64 0 ) (0 768 0 ) (0 768 -128 ) (0 64 -128 ) +4 1878 2290 (1024 0 -1284 ) (1024 0 -192 ) (0 0 -192 ) (0 0 -1284 ) +4 1878 2289 (704 0 -128 ) (0 0 -128 ) (0 0 -192 ) (704 0 -192 ) +4 1878 2288 (1024 0 -192 ) (1024 0 -128 ) (704 0 -128 ) (704 0 -192 ) +4 1878 2270 (128 0 0 ) (0 0 0 ) (0 0 -128 ) (128 0 -128 ) +4 1878 2269 (432 0 0 ) (128 0 0 ) (128 0 -128 ) (432 0 -128 ) +4 1878 2266 (761.597107 0 0 ) (432 0 0 ) (432 0 -128 ) (761.597107 0 -128 ) +4 1878 2264 (1024 0 -128 ) (1024 0 0 ) (761.597107 0 0 ) (761.597107 0 -128 ) +4 1879 1893 (472 -448 5542.669922 ) (472 -240 5542.669922 ) (472 -240 544 ) (472 -448 544 ) +4 1879 1890 (472 -240 5542.669922 ) (472 -224 5542.669922 ) (472 -224 544 ) (472 -240 544 ) +4 1879 1887 (472 -224 5542.669922 ) (472 -164 5542.669922 ) (472 -164 544 ) (472 -224 544 ) +4 1879 1886 (472 -164 5542.669922 ) (472 0 5542.669922 ) (472 0 544 ) (472 -164 544 ) +4 1879 1881 (912 -448 544 ) (472 -448 544 ) (472 -416 544 ) (880 -416 544 ) +4 1879 1880 (472 -416 544 ) (472 0 544 ) (1024 0 544 ) (1024 -416 544 ) +4 1879 1882 (1024 -448 544 ) (1024 -448 5542.669922 ) (472 -448 5542.669922 ) (472 -448 544 ) +3 1880 1893 (472 -369.306122 450.612274 ) (472 -416 544 ) (472 -240 544 ) +4 1880 1892 (472 -240 448 ) (472 -368 448 ) (472 -369.306122 450.612274 ) (472 -240 544 ) +4 1880 1890 (472 -224 448 ) (472 -240 448 ) (472 -240 544 ) (472 -224 544 ) +3 1880 1888 (472 0 515.200012 ) (472 0 448 ) (472 -84 448 ) +4 1880 1887 (472 -164 448 ) (472 -224 448 ) (472 -224 544 ) (472 -164 544 ) +5 1880 1886 (472 0 544 ) (472 0 515.200012 ) (472 -84 448 ) (472 -164 448 ) (472 -164 544 ) +4 1880 1883 (928 0 448 ) (1024 0 448 ) (1024 -368 448 ) (928 -368 448 ) +4 1880 1885 (472 -368 448 ) (472 0 448 ) (928 0 448 ) (928 -368 448 ) +4 1880 1881 (472 -368 448 ) (832 -368 448 ) (880 -416 544 ) (472 -416 544 ) +3 1881 1894 (472 -384 448 ) (472 -448 448 ) (472 -448 494.222229 ) +6 1881 1893 (472 -372.923126 448 ) (472 -384 448 ) (472 -448 494.222229 ) (472 -448 544 ) (472 -416 544 ) (472 -369.306122 450.612274 ) +3 1881 1892 (472 -368 448 ) (472 -372.923126 448 ) (472 -369.306122 450.612274 ) +4 1881 1885 (472 -448 448 ) (472 -368 448 ) (832 -368 448 ) (912 -448 448 ) +4 1881 1882 (472 -448 448 ) (912 -448 448 ) (912 -448 544 ) (472 -448 544 ) +4 1882 2092 (1024 -640 448 ) (1024 -640 5542.669922 ) (472 -640 5542.669922 ) (472 -640 448 ) +4 1882 1896 (472 -640 448 ) (472 -640 5542.669922 ) (472 -544 5542.669922 ) (472 -544 448 ) +4 1882 1895 (472 -544 5542.669922 ) (472 -528 5542.669922 ) (472 -528 448 ) (472 -544 448 ) +4 1882 1894 (472 -448 494.221680 ) (472 -448 448 ) (472 -528 448 ) (472 -528 552 ) +4 1882 1893 (472 -528 5542.669922 ) (472 -448 5542.669922 ) (472 -448 494.221680 ) (472 -528 552 ) +4 1882 1884 (1024 -640 448 ) (928 -640 448 ) (928 -448 448 ) (1024 -448 448 ) +4 1882 1885 (928 -640 448 ) (472 -640 448 ) (472 -448 448 ) (928 -448 448 ) +4 1883 2000 (928 -384 320 ) (928 -256 320 ) (1024 -256 320 ) (1024 -384 320 ) +4 1883 1986 (928 -256 320 ) (928 -240 320 ) (1024 -240 320 ) (1024 -256 320 ) +4 1883 1932 (928 -240 320 ) (928 -128 320 ) (1024 -128 320 ) (1024 -240 320 ) +4 1883 1926 (928 -128 320 ) (928 -64 320 ) (960 -64 320 ) (960 -128 320 ) +4 1883 1885 (928 0 320 ) (928 -384 320 ) (928 -384 448 ) (928 0 448 ) +4 1884 2148 (928 -640 320 ) (1024 -640 320 ) (1024 -640 336 ) (928 -640 336 ) +4 1884 2121 (1024 -640 336 ) (1024 -640 368 ) (928 -640 368 ) (928 -640 336 ) +4 1884 2113 (1024 -640 368 ) (1024 -640 372 ) (928 -640 372 ) (928 -640 368 ) +4 1884 2092 (1024 -640 372 ) (1024 -640 448 ) (928 -640 448 ) (928 -640 372 ) +4 1884 2000 (1024 -640 320 ) (928 -640 320 ) (928 -448 320 ) (1024 -448 320 ) +4 1884 1885 (928 -448 320 ) (928 -640 320 ) (928 -640 448 ) (928 -448 448 ) +4 1885 2149 (472 -640 320 ) (512 -640 320 ) (512 -640 336 ) (472 -640 336 ) +4 1885 2148 (512 -640 320 ) (928 -640 320 ) (928 -640 336 ) (512 -640 336 ) +4 1885 2121 (928 -640 336 ) (928 -640 368 ) (472 -640 368 ) (472 -640 336 ) +4 1885 2113 (928 -640 368 ) (928 -640 372 ) (472 -640 372 ) (472 -640 368 ) +4 1885 2092 (928 -640 372 ) (928 -640 448 ) (472 -640 448 ) (472 -640 372 ) +4 1885 2001 (704 -640 320 ) (576 -640 320 ) (576 -256 320 ) (704 -256 320 ) +4 1885 2002 (576 -640 320 ) (472 -640 320 ) (472 -256 320 ) (576 -256 320 ) +4 1885 2000 (928 -640 320 ) (704 -640 320 ) (704 -256 320 ) (928 -256 320 ) +4 1885 1986 (472 -256 320 ) (472 -240 320 ) (928 -240 320 ) (928 -256 320 ) +4 1885 1939 (472 -240 320 ) (472 -128 320 ) (576 -128 320 ) (576 -240 320 ) +4 1885 1937 (576 -128 320 ) (704 -128 320 ) (704 -240 320 ) (576 -240 320 ) +4 1885 1933 (832 -128 320 ) (896 -128 320 ) (896 -160 320 ) (832 -160 320 ) +4 1885 1935 (704 -128 320 ) (832 -128 320 ) (832 -160 320 ) (704 -160 320 ) +4 1885 1936 (896 -160 320 ) (896 -240 320 ) (704 -240 320 ) (704 -160 320 ) +4 1885 1932 (896 -128 320 ) (928 -128 320 ) (928 -240 320 ) (896 -240 320 ) +4 1885 1928 (576 -64 320 ) (576 -128 320 ) (544 -128 320 ) (544 -64 320 ) +4 1885 1929 (472 -128 320 ) (472 0 320 ) (544 0 320 ) (544 -128 320 ) +4 1885 1926 (928 -64 320 ) (928 -128 320 ) (576 -128 320 ) (576 -64 320 ) +4 1885 1899 (472 -640 336 ) (472 -640 355.200012 ) (472 -604 384 ) (472 -544 336 ) +3 1885 1898 (472 -599 388 ) (472 -544 432 ) (472 -544 344 ) +4 1885 1897 (472 -604 392 ) (472 -544 440 ) (472 -544 432 ) (472 -599 388 ) +4 1885 1896 (472 -640 363.200012 ) (472 -640 448 ) (472 -544 448 ) (472 -544 440 ) +4 1885 1895 (472 -544 448 ) (472 -528 448 ) (472 -528 336 ) (472 -544 336 ) +3 1885 1894 (472 -528 448 ) (472 -384 448 ) (472 -528 344 ) +3 1885 1893 (472 -384 448 ) (472 -372.923065 448 ) (472 -378.461517 444 ) +4 1885 1892 (472 -372.923065 448 ) (472 -240 448 ) (472 -240 344 ) (472 -378.461517 444 ) +3 1885 1891 (472 -240 336 ) (472 -528 336 ) (472 -384 440 ) +4 1885 1890 (472 -240 448 ) (472 -224 448 ) (472 -224 336 ) (472 -240 336 ) +4 1885 1888 (472 -84 448 ) (472 0 448 ) (472 0 336 ) (472 -224 336 ) +4 1885 1887 (472 -224 448 ) (472 -164 448 ) (472 -164 392 ) (472 -224 344 ) +3 1885 1886 (472 -164 448 ) (472 -84 448 ) (472 -164 384 ) +4 1885 1900 (472 0 320 ) (472 -640 320 ) (472 -640 336 ) (472 0 336 ) +4 1886 1903 (312 -164 440 ) (312 -164 616 ) (312 -96 616 ) (312 -96 440 ) +4 1886 1902 (312 -164 616 ) (312 -164 5542.669922 ) (312 -96 5542.669922 ) (312 -96 616 ) +4 1886 1901 (312 0 5542.669922 ) (312 0 515.199707 ) (312 -96 438.399841 ) (312 -96 5542.669922 ) +4 1886 1889 (312 -164 383.996857 ) (312 0 515.196838 ) (464 0 515.196777 ) (464 -164 383.996826 ) +4 1886 1888 (464 0 515.196777 ) (472 0 515.196777 ) (472 -164 383.996826 ) (464 -164 383.996826 ) +4 1886 1887 (472 -164 392 ) (472 -164 5542.669922 ) (312 -164 5542.669922 ) (312 -164 392 ) +3 1887 1906 (312 -224 344 ) (312 -224 368 ) (312 -194 368 ) +4 1887 1903 (312 -224 440 ) (312 -224 616 ) (312 -164 616 ) (312 -164 440 ) +4 1887 1902 (312 -224 616 ) (312 -224 5542.669922 ) (312 -164 5542.669922 ) (312 -164 616 ) +4 1887 1890 (312 -224 5542.669922 ) (312 -224 344 ) (472 -224 344 ) (472 -224 5542.669922 ) +4 1888 1889 (464 0 336 ) (464 -104 336 ) (464 -164.002441 384.001953 ) (464 0 515.203918 ) +4 1888 1900 (464 0 336 ) (472 0 336 ) (472 -224 336 ) (464 -224 336 ) +4 1889 1906 (312 -96 336 ) (312 -104 336 ) (312 -144 368 ) (312 -96 368 ) +4 1889 1901 (312 0 515.199707 ) (312 0 336 ) (312 -96 336 ) (312 -96 438.399841 ) +4 1889 1900 (312 -104 336 ) (312 0 336 ) (464 0 336 ) (464 -104 336 ) +4 1890 1906 (312 -224 336 ) (312 -240 336 ) (312 -240 368 ) (312 -224 368 ) +4 1890 1903 (312 -240 440 ) (312 -240 616 ) (312 -224 616 ) (312 -224 440 ) +4 1890 1902 (312 -240 616 ) (312 -240 5542.669922 ) (312 -224 5542.669922 ) (312 -224 616 ) +4 1890 1893 (472 -240 544 ) (472 -240 5542.669922 ) (312 -240 5542.669922 ) (312 -240 544 ) +4 1890 1892 (472 -240 344 ) (472 -240 544 ) (312 -240 544 ) (312 -240 344 ) +4 1890 1900 (312 -240 336 ) (312 -224 336 ) (472 -224 336 ) (472 -240 336 ) +4 1891 1900 (464 -240 336 ) (472 -240 336 ) (472 -528 336 ) (464 -528 336 ) +3 1892 1906 (312 -240 368 ) (312 -240 344 ) (312 -273.230774 368 ) +4 1892 1903 (312 -378.461365 444 ) (312 -240 544 ) (312 -240 440 ) (312 -372.923065 440 ) +4 1892 1893 (472 -240 544.003906 ) (312 -240 544.003906 ) (312 -378.464233 444.001953 ) (472 -378.464233 444.001953 ) +5 1893 1903 (312 -528 552 ) (312 -528 616 ) (312 -240 616 ) (312 -240 544 ) (312 -378.461365 444 ) +4 1893 1902 (312 -528 616 ) (312 -528 5542.669922 ) (312 -240 5542.669922 ) (312 -240 616 ) +4 1893 1895 (312 -528 5542.669922 ) (312 -528 552 ) (472 -528 552 ) (472 -528 5542.669922 ) +4 1893 1894 (472 -528 552.003845 ) (312 -528 552.003845 ) (312 -383.997375 448.001892 ) (472 -383.997375 448.001892 ) +3 1894 1906 (312 -528 344 ) (312 -528 368 ) (312 -494.769287 368 ) +4 1894 1903 (312 -528 440 ) (312 -528 552 ) (312 -384 448 ) (312 -395.076935 440 ) +4 1894 1895 (312 -528 552 ) (312 -528 344 ) (472 -528 344 ) (472 -528 552 ) +4 1895 1906 (312 -528 336 ) (312 -544 336 ) (312 -544 368 ) (312 -528 368 ) +4 1895 1903 (312 -544 440 ) (312 -544 616 ) (312 -528 616 ) (312 -528 440 ) +4 1895 1902 (312 -544 616 ) (312 -544 5542.669922 ) (312 -528 5542.669922 ) (312 -528 616 ) +4 1895 1898 (472 -544 344 ) (472 -544 432 ) (312 -544 432 ) (312 -544 344 ) +4 1895 1897 (472 -544 432 ) (472 -544 440 ) (312 -544 440 ) (312 -544 432 ) +4 1895 1896 (472 -544 440 ) (472 -544 5542.669922 ) (312 -544 5542.669922 ) (312 -544 440 ) +4 1895 1900 (312 -544 336 ) (312 -528 336 ) (472 -528 336 ) (472 -544 336 ) +4 1896 2142 (432 -640 368 ) (312 -640 368 ) (312 -640 363.199707 ) (432 -640 363.199982 ) +4 1896 2125 (464 -640 368 ) (432 -640 368 ) (432 -640 363.199982 ) (464 -640 363.200043 ) +4 1896 2122 (472 -640 363.200073 ) (472 -640 368 ) (464 -640 368 ) (464 -640 363.200043 ) +4 1896 2114 (468 -640 372 ) (312 -640 372 ) (312 -640 368 ) (468 -640 368 ) +4 1896 2113 (472 -640 368 ) (472 -640 372 ) (468 -640 372 ) (468 -640 368 ) +4 1896 2092 (472 -640 372 ) (472 -640 5542.669922 ) (312 -640 5542.669922 ) (312 -640 372 ) +3 1896 1906 (312 -640 363.200073 ) (312 -640 368 ) (312 -634 368 ) +4 1896 1903 (312 -640 440 ) (312 -640 616 ) (312 -544 616 ) (312 -544 440 ) +4 1896 1902 (312 -640 616 ) (312 -640 5542.669922 ) (312 -544 5542.669922 ) (312 -544 616 ) +4 1896 1897 (312 -604 392 ) (312 -544 440 ) (472 -544 440 ) (472 -604 392 ) +4 1897 1898 (312 -599.001221 388 ) (312 -544 432.001953 ) (472 -544 432.001953 ) (472 -599.001221 388 ) +3 1898 1906 (312 -544 368 ) (312 -544 344 ) (312 -574 368 ) +4 1899 2123 (472 -640 336 ) (472 -640 355.199982 ) (464 -640 355.199982 ) (464 -640 336 ) +4 1899 1900 (464 -544 336 ) (472 -544 336 ) (472 -640 336 ) (464 -640 336 ) +4 1900 2180 (312 -640 320 ) (448 -640 320 ) (448 -640 336 ) (312 -640 336 ) +4 1900 2171 (448 -640 320 ) (456 -640 320 ) (456 -640 336 ) (448 -640 336 ) +4 1900 2170 (456 -640 320 ) (464 -640 320 ) (464 -640 336 ) (456 -640 336 ) +4 1900 2149 (464 -640 320 ) (472 -640 320 ) (472 -640 336 ) (464 -640 336 ) +4 1900 2006 (384 -640 320 ) (312 -640 320 ) (312 -352 320 ) (384 -352 320 ) +4 1900 2004 (312 -352 320 ) (312 -256 320 ) (384 -256 320 ) (384 -352 320 ) +4 1900 2003 (448 -640 320 ) (384 -640 320 ) (384 -256 320 ) (448 -256 320 ) +4 1900 2002 (472 -640 320 ) (448 -640 320 ) (448 -256 320 ) (472 -256 320 ) +4 1900 1986 (352 -240 320 ) (472 -240 320 ) (472 -256 320 ) (352 -256 320 ) +4 1900 1953 (312 -240 320 ) (312 -128 320 ) (352 -128 320 ) (352 -240 320 ) +4 1900 1941 (312 -81 320 ) (312 -64 320 ) (352 -64 320 ) (352 -81 320 ) +4 1900 1942 (312 -128 320 ) (312 -81 320 ) (352 -81 320 ) (352 -128 320 ) +4 1900 1940 (312 -64 320 ) (312 0 320 ) (352 0 320 ) (352 -64 320 ) +4 1900 1939 (472 -128 320 ) (472 -240 320 ) (368 -240 320 ) (368 -128 320 ) +4 1900 1929 (368 0 320 ) (472 0 320 ) (472 -128 320 ) (368 -128 320 ) +4 1900 1906 (312 -96 320 ) (312 -640 320 ) (312 -640 336 ) (312 -96 336 ) +4 1900 1901 (312 0 336 ) (312 0 320 ) (312 -96 320 ) (312 -96 336 ) +4 1901 1984 (8 -96 320 ) (8 0 320 ) (112 0 320 ) (112 -96 320 ) +4 1901 1973 (224 -80 320 ) (224 -96 320 ) (128 -96 320 ) (128 -80 320 ) +4 1901 1972 (224 -64 320 ) (224 -80 320 ) (128 -80 320 ) (128 -64 320 ) +4 1901 1971 (128 0 320 ) (224 0 320 ) (224 -64 320 ) (128 -64 320 ) +4 1901 1941 (312 -64 320 ) (312 -81 320 ) (224 -81 320 ) (224 -64 320 ) +4 1901 1942 (312 -81 320 ) (312 -96 320 ) (224 -96 320 ) (224 -81 320 ) +4 1901 1940 (224 0 320 ) (312 0 320 ) (312 -64 320 ) (224 -64 320 ) +4 1901 1915 (8 -96 648 ) (8 -96 656 ) (8 0 725.333496 ) (8 0 717.333496 ) +4 1901 1914 (8 -96 656 ) (8 -96 5542.669922 ) (8 0 5542.669922 ) (8 0 725.333496 ) +4 1901 1907 (8 -96 336 ) (8 -96 648 ) (8 0 717.333496 ) (8 0 336 ) +4 1901 1913 (8 0 320 ) (8 -96 320 ) (8 -96 336 ) (8 0 336 ) +4 1901 1906 (8 -96 368 ) (8 -96 320 ) (312 -96 320 ) (312 -96 368 ) +3 1901 1905 (8 -96 424 ) (312 -96 424 ) (160 -96 512 ) +3 1901 1904 (8 -96 608 ) (8 -96 440 ) (153.090729 -96 524 ) +3 1901 1903 (312 -96 440 ) (312 -96 616 ) (160 -96 528 ) +5 1901 1902 (8 -96 5542.669922 ) (8 -96 608 ) (153.090698 -96 524 ) (312 -96 616 ) (312 -96 5542.669922 ) +4 1902 2116 (8 -640 616 ) (8 -640 608 ) (153.090698 -640 524 ) (160 -640 528 ) +5 1902 2115 (312 -640 616 ) (312 -640 5542.669922 ) (8 -640 5542.669922 ) (8 -640 616 ) (160 -640 528 ) +4 1902 1917 (8 -640 608 ) (8 -640 5542.669922 ) (8 -544 5542.669922 ) (8 -544 608 ) +4 1902 1915 (8 -96 656 ) (8 -96 648 ) (8 -151.385193 608 ) (8 -162.462173 608 ) +5 1902 1914 (8 -528 5542.669922 ) (8 -96 5542.669922 ) (8 -96 656 ) (8 -162.462173 608 ) (8 -528 608 ) +4 1902 1916 (8 -544 5542.669922 ) (8 -528 5542.669922 ) (8 -528 608 ) (8 -544 608 ) +3 1902 1908 (8 -104 608 ) (8 -151.385193 608 ) (8 -104 642.222229 ) +4 1902 1907 (8 -96 648 ) (8 -96 608 ) (8 -104 608 ) (8 -104 642.222229 ) +4 1902 1904 (8 -640 608.002441 ) (8 -96 608.002441 ) (153.093033 -96 524.001221 ) (153.093033 -640 524.001221 ) +4 1902 1903 (160 -96 528 ) (312 -96 616 ) (312 -640 616 ) (160 -640 528 ) +3 1903 2117 (312 -640 440 ) (312 -640 608 ) (166.909119 -640 524 ) +4 1903 2115 (312 -640 608 ) (312 -640 616 ) (160 -640 528 ) (166.909119 -640 524 ) +3 1904 2116 (153.090729 -640 524 ) (8 -640 608 ) (8 -640 440 ) +4 1904 1917 (8 -640 440 ) (8 -640 608 ) (8 -544 608 ) (8 -544 440 ) +4 1904 1915 (8 -162.462219 608 ) (8 -151.385223 608 ) (8 -378.461487 444 ) (8 -384 448 ) +4 1904 1914 (8 -528 608 ) (8 -162.462219 608 ) (8 -395.076935 440 ) (8 -528 440 ) +4 1904 1916 (8 -544 608 ) (8 -528 608 ) (8 -528 440 ) (8 -544 440 ) +4 1904 1912 (8 -240 440 ) (8 -372.923035 440 ) (8 -378.461487 444 ) (8 -240 544 ) +4 1904 1911 (8 -224 440 ) (8 -240 440 ) (8 -240 544 ) (8 -224 555.555542 ) +5 1904 1908 (8 -151.385223 608 ) (8 -104 608 ) (8 -104 440 ) (8 -224 440 ) (8 -224 555.555542 ) +4 1904 1907 (8 -104 608 ) (8 -96 608 ) (8 -96 440 ) (8 -104 440 ) +3 1905 2118 (312 -640 424 ) (160 -640 512 ) (8 -640 424 ) +4 1906 2247 (160 -640 320 ) (192 -640 320 ) (192 -640 336 ) (160 -640 336 ) +4 1906 2250 (8 -640 320 ) (160 -640 320 ) (160 -640 336 ) (8 -640 336 ) +4 1906 2180 (192 -640 320 ) (312 -640 320 ) (312 -640 336 ) (192 -640 336 ) +4 1906 2144 (312 -640 336 ) (312 -640 368 ) (8 -640 368 ) (8 -640 336 ) +4 1906 2039 (8 -544 320 ) (8 -528 320 ) (128 -528 320 ) (128 -544 320 ) +4 1906 2041 (128 -640 320 ) (8 -640 320 ) (8 -544 320 ) (128 -544 320 ) +4 1906 2037 (8 -528 320 ) (8 -240 320 ) (128 -240 320 ) (128 -528 320 ) +4 1906 2032 (160 -640 320 ) (128 -640 320 ) (128 -240 320 ) (160 -240 320 ) +4 1906 2007 (224 -640 320 ) (160 -640 320 ) (160 -352 320 ) (224 -352 320 ) +4 1906 2006 (312 -640 320 ) (224 -640 320 ) (224 -352 320 ) (312 -352 320 ) +4 1906 2004 (160 -352 320 ) (160 -256 320 ) (312 -256 320 ) (312 -352 320 ) +4 1906 1988 (160 -256 320 ) (160 -240 320 ) (224 -240 320 ) (224 -256 320 ) +4 1906 1985 (8 -240 320 ) (8 -224 320 ) (128 -224 320 ) (128 -240 320 ) +4 1906 1984 (8 -224 320 ) (8 -96 320 ) (112 -96 320 ) (112 -224 320 ) +4 1906 1982 (224 -224 320 ) (224 -240 320 ) (128 -240 320 ) (128 -224 320 ) +4 1906 1981 (224 -208 320 ) (224 -224 320 ) (128 -224 320 ) (128 -208 320 ) +4 1906 1980 (224 -192 320 ) (224 -208 320 ) (128 -208 320 ) (128 -192 320 ) +4 1906 1979 (224 -176 320 ) (224 -192 320 ) (128 -192 320 ) (128 -176 320 ) +4 1906 1978 (224 -160 320 ) (224 -176 320 ) (128 -176 320 ) (128 -160 320 ) +4 1906 1977 (224 -144 320 ) (224 -160 320 ) (128 -160 320 ) (128 -144 320 ) +4 1906 1976 (224 -128 320 ) (224 -144 320 ) (128 -144 320 ) (128 -128 320 ) +4 1906 1975 (224 -112 320 ) (224 -128 320 ) (128 -128 320 ) (128 -112 320 ) +4 1906 1974 (128 -96 320 ) (224 -96 320 ) (224 -112 320 ) (128 -112 320 ) +4 1906 1967 (241 -240 320 ) (224 -240 320 ) (224 -128 320 ) (241 -128 320 ) +4 1906 1966 (255 -240 320 ) (241 -240 320 ) (241 -128 320 ) (255 -128 320 ) +4 1906 1953 (312 -128 320 ) (312 -240 320 ) (255 -240 320 ) (255 -128 320 ) +4 1906 1942 (224 -96 320 ) (312 -96 320 ) (312 -128 320 ) (224 -128 320 ) +5 1906 1920 (8 -550.153870 320 ) (8 -640 320 ) (8 -640 336 ) (8 -544 336 ) (8 -544 324.444458 ) +3 1906 1919 (8 -640 363.200012 ) (8 -640 368 ) (8 -634 368 ) +3 1906 1918 (8 -574 368 ) (8 -544 368 ) (8 -544 344 ) +3 1906 1914 (8 -528 368 ) (8 -494.769287 368 ) (8 -528 344 ) +4 1906 1916 (8 -544 368 ) (8 -528 368 ) (8 -528 336 ) (8 -544 324.444458 ) +3 1906 1912 (8 -273.230774 368 ) (8 -240 368 ) (8 -240 344 ) +4 1906 1911 (8 -240 368 ) (8 -224 368 ) (8 -224 336 ) (8 -240 336 ) +3 1906 1910 (8 -224 368 ) (8 -194 368 ) (8 -224 344 ) +3 1906 1908 (8 -134 368 ) (8 -104 368 ) (8 -104 344 ) +4 1906 1907 (8 -104 368 ) (8 -96 368 ) (8 -96 336 ) (8 -104 336 ) +4 1906 1913 (8 -96 320 ) (8 -550.153870 320 ) (8 -528 336 ) (8 -96 336 ) +4 1907 2547 (0 0 717.333008 ) (0 0 336 ) (0 -104 336 ) (0 -104 642.221924 ) +4 1907 1915 (8 -104 642.223938 ) (8 0 717.335083 ) (0 0 717.335083 ) (0 -104 642.223999 ) +4 1907 1908 (8 -104 344 ) (8 -104 642.220459 ) (0 -104 642.220459 ) (0 -104 344 ) +4 1907 1913 (0 -104 336 ) (0 0 336 ) (8 0 336 ) (8 -104 336 ) +4 1908 2548 (0 -224 440 ) (0 -224 555.555359 ) (0 -104 642.221924 ) (0 -104 344 ) +4 1908 1915 (8 -224 555.557251 ) (8 -104 642.223938 ) (0 -104 642.223999 ) (0 -224 555.557312 ) +4 1908 1911 (8 -224 440 ) (8 -224 555.555115 ) (0 -224 555.555115 ) (0 -224 440 ) +4 1908 1909 (8 -224 439.998047 ) (0 -224 439.998047 ) (0 -164.001221 392 ) (8 -164.001221 392 ) +4 1909 2549 (0 -169 388 ) (0 -224 432 ) (0 -224 440 ) (0 -164 392 ) +4 1909 1911 (8 -224 432 ) (8 -224 440 ) (0 -224 440 ) (0 -224 432 ) +4 1909 1910 (8 -224 431.998047 ) (0 -224 431.998047 ) (0 -169.001221 388 ) (8 -169.001221 388 ) +3 1910 2550 (0 -224 344 ) (0 -224 432 ) (0 -169 388 ) +4 1910 1911 (8 -224 344 ) (8 -224 432 ) (0 -224 432 ) (0 -224 344 ) +4 1911 2551 (0 -224 336 ) (0 -240 336 ) (0 -240 544 ) (0 -224 555.555359 ) +4 1911 1915 (8 -240 544.001709 ) (8 -224 555.557251 ) (0 -224 555.557312 ) (0 -240 544.001770 ) +4 1911 1912 (8 -240 344 ) (8 -240 544 ) (0 -240 544 ) (0 -240 344 ) +4 1911 1913 (0 -240 336 ) (0 -224 336 ) (8 -224 336 ) (8 -240 336 ) +3 1912 2552 (0 -378.461426 444 ) (0 -240 544 ) (0 -240 344 ) +4 1912 1915 (8 -378.462708 444 ) (8 -240 544.001709 ) (0 -240 544.001770 ) (0 -378.462738 444 ) +4 1913 2554 (0 -240 320 ) (0 -528 320 ) (0 -528 336 ) (0 -240 336 ) +4 1913 2553 (0 0 336 ) (0 0 320 ) (0 -240 320 ) (0 -240 336 ) +3 1913 2555 (0 -528 320 ) (0 -550.153870 320 ) (0 -528 336 ) +4 1913 2039 (0 -544 320 ) (0 -528 320 ) (8 -528 320 ) (8 -544 320 ) +4 1913 2041 (0 -550.153870 320 ) (0 -544 320 ) (8 -544 320 ) (8 -550.153870 320 ) +4 1913 2037 (0 -528 320 ) (0 -240 320 ) (8 -240 320 ) (8 -528 320 ) +4 1913 1985 (0 -240 320 ) (0 -224 320 ) (8 -224 320 ) (8 -240 320 ) +4 1913 1984 (0 -224 320 ) (0 0 320 ) (8 0 320 ) (8 -224 320 ) +4 1913 1920 (0 -550.156250 320 ) (8 -550.156250 320 ) (8 -544 324.446167 ) (0 -544 324.446167 ) +4 1913 1916 (8 -544 324.446167 ) (8 -528.002380 336 ) (0 -528.002380 336 ) (0 -544 324.446167 ) +4 1914 2556 (0 0 5542.669922 ) (0 0 725.333496 ) (0 -528 344 ) (0 -528 5542.669922 ) +4 1914 1915 (0 -384.002716 448.001984 ) (0 0 725.337402 ) (8 0 725.337402 ) (8 -384.002686 448.002014 ) +4 1914 1916 (8 -528 344 ) (8 -528 5542.669922 ) (0 -528 5542.669922 ) (0 -528 344 ) +4 1915 2557 (0 0 725.333496 ) (0 0 717.333008 ) (0 -378.461456 444 ) (0 -384 448 ) +4 1916 2558 (0 -528 336 ) (0 -544 324.444458 ) (0 -544 5542.669922 ) (0 -528 5542.669922 ) +4 1916 1920 (0 -544 324.444824 ) (8 -544 324.444824 ) (8 -544 336 ) (0 -544 336 ) +4 1916 1918 (8 -544 344 ) (8 -544 440 ) (0 -544 440 ) (0 -544 344 ) +4 1916 1917 (8 -544 440 ) (8 -544 5542.669922 ) (0 -544 5542.669922 ) (0 -544 440 ) +4 1917 2560 (0 -640 412.799988 ) (0 -640 420.799988 ) (0 -604 392 ) (0 -609 388 ) +5 1917 2559 (0 -640 420.799988 ) (0 -640 5542.669922 ) (0 -544 5542.669922 ) (0 -544 440 ) (0 -604 392 ) +4 1917 2119 (0 -640 5542.669922 ) (0 -640 412.799805 ) (8 -640 412.799988 ) (8 -640 5542.669922 ) +4 1917 1919 (8 -609.001282 388 ) (8 -640 412.798035 ) (0 -640 412.798035 ) (0 -609.001282 388 ) +4 1917 1918 (0 -604.001221 392 ) (0 -544 440.001556 ) (8 -544 440.001556 ) (8 -604.001221 392 ) +3 1918 2559 (0 -544 440 ) (0 -544 344 ) (0 -604 392 ) +3 1919 2561 (0 -640 363.200043 ) (0 -640 412.799988 ) (0 -609 388 ) +4 1919 2145 (0 -640 368 ) (0 -640 363.200073 ) (8 -640 363.200043 ) (8 -640 368 ) +4 1919 2120 (0 -640 372 ) (0 -640 368 ) (8 -640 368 ) (8 -640 372 ) +4 1919 2119 (0 -640 412.799805 ) (0 -640 372 ) (8 -640 372 ) (8 -640 412.799988 ) +5 1920 2562 (0 -544 324.444458 ) (0 -550.153870 320 ) (0 -640 320 ) (0 -640 336 ) (0 -544 336 ) +4 1920 2250 (0 -640 336 ) (0 -640 320 ) (8 -640 320 ) (8 -640 336 ) +4 1920 2041 (8 -640 320 ) (0 -640 320 ) (0 -550.153870 320 ) (8 -550.153870 320 ) +4 1921 1923 (960 0 288 ) (960 0 128 ) (960 -32 128 ) (960 -32 288 ) +4 1921 1924 (960 -32 128 ) (960 -64 128 ) (960 -64 288 ) (960 -32 288 ) +4 1922 2042 (1024 -64 96 ) (1024 -128 96 ) (960 -128 96 ) (960 -64 96 ) +4 1922 1932 (960 -128 96 ) (1024 -128 96 ) (1024 -128 128 ) (960 -128 128 ) +4 1922 1927 (960 -64 96 ) (960 -128 96 ) (960 -128 128 ) (960 -64 128 ) +4 1923 1925 (768 0 128 ) (768 -32 128 ) (896 -32 256 ) (896 0 256 ) +4 1923 1924 (928 -32 288 ) (768 -32 128 ) (960 -32 128 ) (960 -32 288 ) +4 1924 1934 (832 -128 160 ) (832 -128 128 ) (896 -128 128 ) (896 -128 160 ) +3 1924 1935 (832 -128 192 ) (768 -128 128 ) (832 -128 128 ) +4 1924 1932 (960 -128 128 ) (960 -128 320 ) (896 -128 256 ) (896 -128 128 ) +4 1924 1927 (960 -32 128 ) (960 -128 128 ) (896 -128 128 ) (896 -32 128 ) +4 1924 1925 (768 -32 128 ) (768 -64 128 ) (896 -64 256 ) (896 -32 256 ) +4 1924 1926 (768 -64 128 ) (768 -128 128 ) (960 -128 320 ) (960 -64 320 ) +4 1925 1926 (576 -64 256 ) (576 -64 128 ) (768 -64 128 ) (896 -64 256 ) +4 1926 1937 (704 -128 320 ) (576 -128 320 ) (576 -128 128 ) (704 -128 128 ) +4 1926 1933 (896 -128 320 ) (832 -128 320 ) (832 -128 256 ) (896 -128 256 ) +5 1926 1935 (832 -128 320 ) (704 -128 320 ) (704 -128 128 ) (768 -128 128 ) (832 -128 192 ) +3 1926 1932 (960 -128 320 ) (896 -128 320 ) (896 -128 256 ) +4 1926 1930 (576 -128 128 ) (576 -128 256 ) (576 -64 256 ) (576 -64 128 ) +4 1926 1928 (576 -128 256 ) (576 -128 320 ) (576 -64 320 ) (576 -64 256 ) +4 1927 2043 (960 -32 96 ) (960 -128 96 ) (896 -128 96 ) (896 -32 96 ) +4 1927 1932 (896 -128 96 ) (960 -128 96 ) (960 -128 128 ) (896 -128 128 ) +4 1928 1939 (544 -128 256 ) (576 -128 256 ) (576 -128 320 ) (544 -128 320 ) +4 1928 1930 (576 -64 256 ) (576 -128 256 ) (544 -128 256 ) (544 -64 256 ) +4 1928 1929 (544 -64 256 ) (544 -128 256 ) (544 -128 320 ) (544 -64 320 ) +4 1929 1939 (368 -128 256 ) (544 -128 256 ) (544 -128 320 ) (368 -128 320 ) +4 1929 1931 (448 -128 256 ) (368 -128 256 ) (368 0 256 ) (448 0 256 ) +4 1929 1930 (544 -128 256 ) (448 -128 256 ) (448 -64 256 ) (544 -64 256 ) +4 1930 2047 (576 -64 96 ) (576 -128 96 ) (448 -128 96 ) (448 -64 96 ) +4 1930 1939 (448 -128 96 ) (576 -128 96 ) (576 -128 256 ) (448 -128 256 ) +4 1930 1931 (448 -64 96 ) (448 -128 96 ) (448 -128 256 ) (448 -64 256 ) +4 1931 2047 (448 -64 96 ) (448 -128 96 ) (368 -128 96 ) (368 -64 96 ) +4 1931 2046 (368 0 96 ) (448 0 96 ) (448 -64 96 ) (368 -64 96 ) +4 1931 1939 (368 -128 96 ) (448 -128 96 ) (448 -128 256 ) (368 -128 256 ) +4 1932 2044 (1024 -192 96 ) (1024 -240 96 ) (896 -240 96 ) (896 -192 96 ) +4 1932 2042 (1024 -128 96 ) (1024 -192 96 ) (960 -192 96 ) (960 -128 96 ) +4 1932 2043 (960 -192 96 ) (896 -192 96 ) (896 -128 96 ) (960 -128 96 ) +4 1932 1991 (896 -240 96 ) (1024 -240 96 ) (1024 -240 240 ) (896 -240 240 ) +4 1932 1989 (1024 -240 240 ) (1024 -240 241 ) (896 -240 241 ) (896 -240 240 ) +4 1932 1986 (1024 -240 241 ) (1024 -240 320 ) (896 -240 320 ) (896 -240 241 ) +4 1932 1933 (896 -128 320 ) (896 -128 256 ) (896 -160 256 ) (896 -160 320 ) +4 1932 1934 (896 -128 160 ) (896 -128 128 ) (896 -160 128 ) (896 -160 160 ) +4 1932 1936 (896 -160 96 ) (896 -240 96 ) (896 -240 320 ) (896 -160 320 ) +4 1933 1936 (896 -160 256 ) (896 -160 320 ) (832 -160 320 ) (832 -160 256 ) +4 1933 1935 (832 -128 320 ) (832 -128 256 ) (832 -160 256 ) (832 -160 320 ) +4 1934 1935 (832 -128 160 ) (832 -128 128 ) (832 -160 128 ) (832 -160 160 ) +4 1934 1936 (832 -160 128 ) (896 -160 128 ) (896 -160 160 ) (832 -160 160 ) +4 1935 1937 (704 -128 320 ) (704 -128 128 ) (704 -160 128 ) (704 -160 320 ) +4 1935 1936 (704 -160 320 ) (704 -160 128 ) (832 -160 128 ) (832 -160 320 ) +4 1936 2044 (896 -240 96 ) (704 -240 96 ) (704 -192 96 ) (896 -192 96 ) +4 1936 1991 (704 -240 96 ) (896 -240 96 ) (896 -240 240 ) (704 -240 240 ) +4 1936 1989 (896 -240 240 ) (896 -240 241 ) (704 -240 241 ) (704 -240 240 ) +4 1936 1986 (896 -240 241 ) (896 -240 320 ) (704 -240 320 ) (704 -240 241 ) +3 1936 1938 (704 -240 110 ) (704 -240 128 ) (704 -192 128 ) +4 1936 1937 (704 -240 128 ) (704 -240 320 ) (704 -160 320 ) (704 -160 128 ) +4 1937 1992 (704 -240 128 ) (704 -240 240 ) (576 -240 240 ) (576 -240 128 ) +4 1937 1989 (704 -240 240 ) (704 -240 241 ) (576 -240 241 ) (576 -240 240 ) +4 1937 1986 (704 -240 241 ) (704 -240 320 ) (576 -240 320 ) (576 -240 241 ) +4 1937 1939 (576 -128 320 ) (576 -128 128 ) (576 -240 128 ) (576 -240 320 ) +4 1937 1938 (576 -240 128 ) (576 -192 128 ) (704 -192 128 ) (704 -240 128 ) +4 1938 1992 (704 -240 110 ) (704 -240 128 ) (576 -240 128 ) (576 -240 110 ) +3 1938 1939 (576 -240 110 ) (576 -240 128 ) (576 -192 128 ) +4 1939 2050 (576 -240 96 ) (368 -240 96 ) (368 -160 96 ) (576 -160 96 ) +4 1939 2047 (368 -160 96 ) (368 -128 96 ) (576 -128 96 ) (576 -160 96 ) +4 1939 1993 (384 -240 96 ) (576 -240 96 ) (576 -240 240 ) (384 -240 240 ) +4 1939 1989 (576 -240 240 ) (576 -240 241 ) (368 -240 241 ) (368 -240 240 ) +4 1939 1986 (576 -240 241 ) (576 -240 320 ) (368 -240 320 ) (368 -240 241 ) +4 1940 1971 (224 -64 144 ) (224 -64 320 ) (224 0 320 ) (224 0 144 ) +4 1940 1941 (224 -64 320 ) (224 -64 144 ) (352 -64 144 ) (352 -64 320 ) +4 1941 1973 (224 -81 320 ) (224 -80 320 ) (224 -80 160 ) (224 -81 160 ) +4 1941 1972 (224 -80 320 ) (224 -64 320 ) (224 -64 152 ) (224 -80 152 ) +4 1941 1942 (224 -81 320 ) (224 -81 144 ) (352 -81 144 ) (352 -81 320 ) +4 1942 1975 (224 -128 176 ) (224 -128 320 ) (224 -112 320 ) (224 -112 176 ) +4 1942 1974 (224 -112 320 ) (224 -96 320 ) (224 -96 168 ) (224 -112 168 ) +4 1942 1973 (224 -96 320 ) (224 -81 320 ) (224 -81 160 ) (224 -96 160 ) +4 1942 1967 (224 -128 320 ) (224 -128 140 ) (241 -128 140 ) (241 -128 320 ) +4 1942 1966 (241 -128 140 ) (255 -128 140 ) (255 -128 320 ) (241 -128 320 ) +4 1942 1953 (255 -128 140 ) (352 -128 140 ) (352 -128 320 ) (255 -128 320 ) +4 1942 1944 (255 -97 140 ) (255 -81 140 ) (352 -81 140 ) (352 -97 140 ) +4 1942 1945 (352 -128 140 ) (255 -128 140 ) (255 -97 140 ) (352 -97 140 ) +4 1942 1952 (255 -128 140 ) (224 -128 140 ) (224 -81 140 ) (255 -81 140 ) +4 1943 2047 (352 -64 96 ) (352 -80 96 ) (256 -80 96 ) (256 -64 96 ) +4 1944 1945 (255 -97 140 ) (255 -97 136 ) (352 -97 136 ) (352 -97 140 ) +4 1944 1952 (255 -80 140 ) (255 -80 136 ) (255 -97 136 ) (255 -97 140 ) +4 1945 1954 (352 -128 132 ) (352 -128 136 ) (255 -128 136 ) (255 -128 132 ) +4 1945 1953 (352 -128 136 ) (352 -128 140 ) (255 -128 140 ) (255 -128 136 ) +4 1945 1947 (255 -113 132 ) (255 -97 132 ) (352 -97 132 ) (352 -113 132 ) +4 1945 1948 (352 -128 132 ) (255 -128 132 ) (255 -113 132 ) (352 -113 132 ) +4 1945 1952 (255 -97 132 ) (255 -128 132 ) (255 -128 140 ) (255 -97 140 ) +4 1946 1949 (255 -96 124 ) (255 -96 96 ) (256 -96 96 ) (256 -96 124 ) +4 1946 1947 (256 -96 132 ) (255 -96 132 ) (255 -96 128 ) (256 -96 128 ) +4 1946 1952 (255 -80 132 ) (255 -80 96 ) (255 -96 96 ) (255 -96 132 ) +4 1947 1948 (352 -113 128 ) (352 -113 132 ) (255 -113 132 ) (255 -113 128 ) +4 1947 1952 (255 -113 132 ) (255 -96 132 ) (255 -96 128 ) (255 -113 128 ) +4 1948 1954 (352 -128 124 ) (352 -128 132 ) (255 -128 132 ) (255 -128 124 ) +4 1948 1950 (352 -128 124 ) (255 -128 124 ) (255 -113 124 ) (352 -113 124 ) +4 1948 1952 (255 -128 124 ) (255 -128 132 ) (255 -113 132 ) (255 -113 124 ) +4 1949 1951 (255 -112 116 ) (255 -112 96 ) (256 -112 96 ) (256 -112 116 ) +4 1949 1950 (256 -112 124 ) (255 -112 124 ) (255 -112 120 ) (256 -112 120 ) +4 1949 1952 (255 -96 96 ) (255 -112 96 ) (255 -112 124 ) (255 -96 124 ) +4 1950 1954 (352 -128 120 ) (352 -128 124 ) (255 -128 124 ) (255 -128 120 ) +4 1950 1952 (255 -128 120 ) (255 -128 124 ) (255 -112 124 ) (255 -112 120 ) +4 1951 1961 (255 -128 96 ) (256 -128 96 ) (256 -128 108 ) (255 -128 108 ) +4 1951 1956 (256 -128 112 ) (256 -128 116 ) (255 -128 116 ) (255 -128 112 ) +4 1951 1952 (255 -112 96 ) (255 -128 96 ) (255 -128 116 ) (255 -112 116 ) +4 1952 1969 (224 -128 137 ) (224 -128 118.003906 ) (241 -128 135.003906 ) (241 -128 137 ) +4 1952 1968 (224 -128 118.003906 ) (224 -128 96 ) (241 -128 96 ) (241 -128 135.003906 ) +4 1952 1967 (224 -128 140 ) (224 -128 137 ) (241 -128 137 ) (241 -128 140 ) +4 1952 1966 (241 -128 96 ) (255 -128 96 ) (255 -128 140 ) (241 -128 140 ) +4 1953 1997 (255 -240 137 ) (255 -240 136 ) (335 -240 136 ) (335 -240 137 ) +4 1953 1995 (335 -240 136 ) (336 -240 136 ) (336 -240 137 ) (335 -240 137 ) +11 1953 1994 (255 -240 219.750000 ) (255 -240 137 ) (336 -240 137 ) (336 -240 184 ) (332 -240 200 ) (328 -240 211 ) (320 -240 221 ) (304 -240 228 ) (288 -240 230 ) (272 -240 228 ) (256 -240 221 ) +4 1953 1989 (352 -240 240 ) (352 -240 241 ) (255 -240 241 ) (255 -240 240 ) +4 1953 1987 (352 -240 241 ) (352 -240 256 ) (255 -240 256 ) (255 -240 241 ) +4 1953 1966 (255 -128 320 ) (255 -128 136 ) (255 -240 136 ) (255 -240 320 ) +4 1953 1957 (335 -145 136 ) (352 -145 136 ) (352 -239 136 ) (335 -239 136 ) +4 1953 1960 (255 -240 136 ) (255 -145 136 ) (335 -145 136 ) (335 -240 136 ) +4 1953 1954 (255 -129 136 ) (255 -128 136 ) (352 -128 136 ) (352 -129 136 ) +4 1953 1955 (255 -145 136 ) (255 -129 136 ) (352 -129 136 ) (352 -145 136 ) +4 1954 1966 (255 -128 136 ) (255 -128 120 ) (255 -129 120 ) (255 -129 136 ) +4 1954 1955 (352 -129 120 ) (352 -129 136 ) (255 -129 136 ) (255 -129 120 ) +4 1955 1966 (255 -129 116 ) (255 -145 116 ) (255 -145 136 ) (255 -129 136 ) +4 1955 1957 (352 -145 116 ) (352 -145 136 ) (335 -145 136 ) (335 -145 116 ) +4 1955 1960 (335 -145 136 ) (255 -145 136 ) (255 -145 116 ) (335 -145 116 ) +4 1955 1956 (352 -145 116 ) (255 -145 116 ) (255 -129 116 ) (352 -129 116 ) +4 1956 1966 (255 -128 116 ) (255 -128 112 ) (255 -145 112 ) (255 -145 116 ) +4 1956 1957 (352 -145 112 ) (352 -145 116 ) (335 -145 116 ) (335 -145 112 ) +4 1956 1960 (335 -145 116 ) (255 -145 116 ) (255 -145 112 ) (335 -145 112 ) +4 1957 1962 (335 -145 108 ) (352 -145 108 ) (352 -161 108 ) (335 -161 108 ) +4 1957 1963 (352 -161 108 ) (352 -239 108 ) (335 -239 108 ) (335 -161 108 ) +3 1957 1959 (335 -239 134 ) (352 -239 117 ) (352 -239 134 ) +4 1957 1958 (335 -239 134 ) (335 -239 108 ) (352 -239 108 ) (352 -239 117 ) +4 1957 1960 (335 -145 136 ) (335 -145 108 ) (335 -239 108 ) (335 -239 136 ) +4 1958 1996 (336 -240 133 ) (335 -240 134 ) (335 -240 108 ) (336 -240 108 ) +4 1958 1963 (352 -239 108 ) (352 -240 108 ) (335 -240 108 ) (335 -239 108 ) +4 1958 1959 (352 -240 117 ) (352 -239 117 ) (335 -239 134 ) (336 -240 133 ) +4 1958 1960 (335 -239 108 ) (335 -240 108 ) (335 -240 134 ) (335 -239 134 ) +4 1960 1997 (335 -240 136 ) (255 -240 136 ) (255 -240 108 ) (335 -240 108 ) +4 1960 1966 (255 -145 108 ) (255 -240 108 ) (255 -240 136 ) (255 -145 136 ) +4 1960 1962 (255 -161 108 ) (255 -145 108 ) (335 -145 108 ) (335 -161 108 ) +4 1960 1963 (255 -240 108 ) (255 -161 108 ) (335 -161 108 ) (335 -240 108 ) +4 1961 1966 (255 -128 108 ) (255 -128 96 ) (255 -144 96 ) (255 -144 108 ) +4 1961 1965 (255 -144 100 ) (255 -144 96 ) (256 -144 96 ) (256 -144 100 ) +4 1961 1962 (256 -144 108 ) (255 -144 108 ) (255 -144 104 ) (256 -144 104 ) +4 1962 1966 (255 -161 108 ) (255 -144 108 ) (255 -144 104 ) (255 -161 104 ) +4 1962 1963 (352 -161 104 ) (352 -161 108 ) (255 -161 108 ) (255 -161 104 ) +4 1963 1997 (335 -240 108 ) (255 -240 108 ) (255 -240 100 ) (335 -240 100 ) +4 1963 1996 (336 -240 108 ) (335 -240 108 ) (335 -240 100 ) (336 -240 100 ) +4 1963 1966 (255 -240 100 ) (255 -240 108 ) (255 -161 108 ) (255 -161 100 ) +4 1963 1964 (256 -161 100 ) (352 -161 100 ) (352 -240 100 ) (256 -240 100 ) +4 1963 1965 (255 -240 100 ) (255 -161 100 ) (256 -161 100 ) (256 -240 100 ) +4 1964 1997 (256 -240 96 ) (335 -240 96 ) (335 -240 100 ) (256 -240 100 ) +4 1964 1996 (335 -240 96 ) (336 -240 96 ) (336 -240 100 ) (335 -240 100 ) +4 1964 1965 (256 -240 96 ) (256 -240 100 ) (256 -160 100 ) (256 -160 96 ) +4 1965 1997 (255 -240 96 ) (256 -240 96 ) (256 -240 100 ) (255 -240 100 ) +4 1965 1966 (255 -144 96 ) (255 -240 96 ) (255 -240 100 ) (255 -144 100 ) +4 1966 1997 (241 -240 96 ) (255 -240 96 ) (255 -240 137 ) (241 -240 137 ) +6 1966 1994 (255 -240 137 ) (255 -240 219.750000 ) (248 -240 211 ) (244 -240 199 ) (241 -240 187.749969 ) (241 -240 137 ) +4 1966 1989 (255 -240 240 ) (255 -240 241 ) (241 -240 241 ) (241 -240 240 ) +4 1966 1987 (255 -240 241 ) (255 -240 256 ) (241 -240 256 ) (241 -240 241 ) +4 1966 1969 (241 -128 137 ) (241 -128 135.003906 ) (241 -239 135.003906 ) (241 -239 137 ) +4 1966 1968 (241 -128 135.003906 ) (241 -128 96 ) (241 -240 96 ) (241 -240 135.003906 ) +4 1966 1967 (241 -128 320 ) (241 -128 137 ) (241 -240 137 ) (241 -240 320 ) +4 1967 1994 (241 -240 137 ) (241 -240 187.749985 ) (240 -240 184 ) (240 -240 137 ) +4 1967 1989 (241 -240 240 ) (241 -240 241 ) (240 -240 241 ) (240 -240 240 ) +4 1967 1987 (241 -240 241 ) (241 -240 256 ) (224 -240 256 ) (224 -240 241 ) +4 1967 1982 (224 -240 232 ) (224 -240 320 ) (224 -224 320 ) (224 -224 232 ) +4 1967 1981 (224 -224 320 ) (224 -208 320 ) (224 -208 224 ) (224 -224 224 ) +4 1967 1980 (224 -208 320 ) (224 -192 320 ) (224 -192 216 ) (224 -208 216 ) +4 1967 1979 (224 -192 320 ) (224 -176 320 ) (224 -176 208 ) (224 -192 208 ) +4 1967 1978 (224 -176 320 ) (224 -160 320 ) (224 -160 200 ) (224 -176 200 ) +4 1967 1977 (224 -160 320 ) (224 -144 320 ) (224 -144 192 ) (224 -160 192 ) +4 1967 1976 (224 -144 320 ) (224 -128 320 ) (224 -128 184 ) (224 -144 184 ) +4 1967 1969 (224 -239 137 ) (224 -128 137 ) (241 -128 137 ) (241 -239 137 ) +4 1968 1998 (240 -240 96 ) (241 -240 96 ) (241 -240 135.003906 ) (240 -240 134.003906 ) +4 1968 1970 (240.996078 -239 135.003891 ) (224 -239 118.007805 ) (224 -240 118.007805 ) (239.996094 -240 134.003906 ) +4 1968 1969 (241 -239 135.007813 ) (241 -128 135.007813 ) (224 -128 118.007805 ) (224 -239 118.007805 ) +4 1969 1970 (224 -239 118 ) (241 -239 135 ) (241 -239 135.003891 ) (224 -239 135.003876 ) +4 1971 1972 (128 -64 320 ) (128 -64 152 ) (224 -64 152 ) (224 -64 320 ) +4 1972 1973 (128 -80 320 ) (128 -80 160 ) (224 -80 160 ) (224 -80 320 ) +4 1973 1974 (128 -96 320 ) (128 -96 168 ) (224 -96 168 ) (224 -96 320 ) +4 1974 1975 (128 -112 320 ) (128 -112 176 ) (224 -112 176 ) (224 -112 320 ) +4 1975 1976 (128 -128 320 ) (128 -128 184 ) (224 -128 184 ) (224 -128 320 ) +4 1976 1977 (128 -144 320 ) (128 -144 192 ) (224 -144 192 ) (224 -144 320 ) +4 1977 1978 (128 -160 320 ) (128 -160 200 ) (224 -160 200 ) (224 -160 320 ) +4 1978 1979 (128 -176 320 ) (128 -176 208 ) (224 -176 208 ) (224 -176 320 ) +4 1979 1980 (128 -192 320 ) (128 -192 216 ) (224 -192 216 ) (224 -192 320 ) +4 1980 1981 (128 -208 320 ) (128 -208 224 ) (224 -208 224 ) (224 -208 320 ) +4 1981 1982 (128 -224 320 ) (128 -224 232 ) (224 -224 232 ) (224 -224 320 ) +4 1982 2032 (160 -240 320 ) (128 -240 320 ) (128 -240 256 ) (160 -240 256 ) +4 1982 1999 (192 -240 240 ) (160 -240 240 ) (160 -240 232 ) (192 -240 232 ) +4 1982 1990 (192 -240 241 ) (160 -240 241 ) (160 -240 240 ) (192 -240 240 ) +4 1982 1988 (224 -240 241 ) (224 -240 320 ) (160 -240 320 ) (160 -240 241 ) +4 1982 1985 (128 -240 240 ) (128 -240 320 ) (128 -224 320 ) (128 -224 240 ) +4 1983 2053 (112 0 96 ) (128 0 96 ) (128 -224 96 ) (112 -224 96 ) +4 1983 1984 (112 0 96 ) (112 -224 96 ) (112 -224 144 ) (112 0 144 ) +4 1984 2592 (0 0 216 ) (0 0 96 ) (0 -224 96 ) (0 -224 216 ) +4 1984 2563 (0 0 240 ) (0 0 216 ) (0 -224 216 ) (0 -224 240 ) +4 1984 2553 (0 0 320 ) (0 0 240 ) (0 -224 240 ) (0 -224 320 ) +4 1984 2053 (0 -224 96 ) (0 0 96 ) (112 0 96 ) (112 -224 96 ) +4 1984 1985 (112 -224 240 ) (112 -224 320 ) (0 -224 320 ) (0 -224 240 ) +4 1985 2553 (0 -240 240 ) (0 -240 320 ) (0 -224 320 ) (0 -224 240 ) +4 1985 2037 (128 -240 256 ) (128 -240 320 ) (0 -240 320 ) (0 -240 256 ) +4 1986 2004 (384 -256 256 ) (384 -256 320 ) (352 -256 320 ) (352 -256 256 ) +4 1986 2003 (384 -256 241 ) (448 -256 241 ) (448 -256 320 ) (384 -256 320 ) +4 1986 2001 (576 -256 241 ) (704 -256 241 ) (704 -256 320 ) (576 -256 320 ) +4 1986 2002 (448 -256 241 ) (576 -256 241 ) (576 -256 320 ) (448 -256 320 ) +4 1986 2000 (704 -256 241 ) (1024 -256 241 ) (1024 -256 320 ) (704 -256 320 ) +4 1986 1989 (1024 -256 241 ) (352 -256 241 ) (352 -240 241 ) (1024 -240 241 ) +4 1986 1987 (352 -240 256 ) (352 -240 241 ) (352 -256 241 ) (352 -256 256 ) +4 1987 1989 (352 -256 241 ) (240 -256 241 ) (240 -240 241 ) (352 -240 241 ) +4 1987 1988 (224 -240 256 ) (224 -240 241 ) (224 -256 241 ) (224 -256 256 ) +4 1988 2032 (160 -240 320 ) (160 -240 256 ) (160 -256 256 ) (160 -256 320 ) +4 1988 2004 (160 -256 320 ) (160 -256 256 ) (224 -256 256 ) (224 -256 320 ) +4 1988 1990 (192 -256 241 ) (160 -256 241 ) (160 -240 241 ) (192 -240 241 ) +4 1989 2003 (384 -256 240 ) (448 -256 240 ) (448 -256 241 ) (384 -256 241 ) +4 1989 2001 (576 -256 240 ) (704 -256 240 ) (704 -256 241 ) (576 -256 241 ) +4 1989 2002 (448 -256 240 ) (576 -256 240 ) (576 -256 241 ) (448 -256 241 ) +4 1989 2000 (704 -256 240 ) (1024 -256 240 ) (1024 -256 241 ) (704 -256 241 ) +4 1989 1992 (704 -256 240 ) (576 -256 240 ) (576 -240 240 ) (704 -240 240 ) +4 1989 1991 (1024 -256 240 ) (704 -256 240 ) (704 -240 240 ) (1024 -240 240 ) +4 1989 1993 (576 -256 240 ) (384 -256 240 ) (384 -240 240 ) (576 -240 240 ) +4 1990 1999 (192 -256 240 ) (160 -256 240 ) (160 -240 240 ) (192 -240 240 ) +4 1991 2055 (704 -240 96 ) (1024 -240 96 ) (1024 -256 96 ) (704 -256 96 ) +4 1991 2000 (704 -256 96 ) (1024 -256 96 ) (1024 -256 240 ) (704 -256 240 ) +4 1991 1992 (704 -256 104 ) (704 -256 240 ) (704 -240 240 ) (704 -240 110 ) +4 1992 2001 (704 -256 104 ) (704 -256 240 ) (576 -256 240 ) (576 -256 104 ) +4 1992 1993 (576 -256 104 ) (576 -256 240 ) (576 -240 240 ) (576 -240 110 ) +4 1993 2057 (384 -240 96 ) (576 -240 96 ) (576 -256 96 ) (384 -256 96 ) +4 1993 2002 (448 -256 96 ) (576 -256 96 ) (576 -256 240 ) (448 -256 240 ) +4 1994 2015 (241 -256 187.750000 ) (240 -256 184 ) (240 -256 137 ) (241 -256 137 ) +8 1994 2009 (336 -256 137 ) (336 -256 184 ) (332 -256 200.002686 ) (329.091217 -256 208 ) (247 -256 208 ) (244 -256 199 ) (241 -256 187.750000 ) (241 -256 137 ) +9 1994 2005 (329.091217 -256 208 ) (328 -256 211 ) (320 -256 221 ) (304 -256 228 ) (288 -256 230 ) (272 -256 228 ) (256 -256 221 ) (248 -256 211 ) (247 -256 208 ) +4 1994 1997 (241 -240 137 ) (335 -240 137 ) (335 -256 137 ) (241 -256 137 ) +4 1994 1995 (335 -240 137 ) (336 -240 137 ) (336 -256 137 ) (335 -256 137 ) +4 1995 2009 (336 -256 136 ) (336 -256 137 ) (335 -256 137 ) (335 -256 136 ) +4 1995 1997 (335 -256 136 ) (335 -256 137 ) (335 -240 137 ) (335 -240 136 ) +4 1996 2011 (335 -256 96 ) (336 -256 96 ) (336 -256 133 ) (335 -256 134 ) +4 1996 1997 (335 -256 96 ) (335 -256 134 ) (335 -240 134 ) (335 -240 96 ) +4 1997 2013 (241 -256 96 ) (335 -256 96 ) (335 -256 136 ) (241 -256 136 ) +4 1997 2009 (335 -256 136 ) (335 -256 137 ) (241 -256 137 ) (241 -256 136 ) +4 1997 1998 (241 -256 96 ) (241 -256 135.003906 ) (241 -240 135.003906 ) (241 -240 96 ) +4 1998 2016 (240 -256 96 ) (241 -256 96 ) (241 -256 135.003906 ) (240 -256 134.003906 ) +4 1999 2075 (160 -256 96 ) (160 -240 96 ) (164 -240 96 ) (164 -256 96 ) +4 1999 2073 (164 -240 96 ) (192 -240 96 ) (192 -256 96 ) (164 -256 96 ) +4 1999 2020 (160 -256 208 ) (160 -256 96 ) (168 -256 96 ) (168 -256 208 ) +4 1999 2018 (192 -256 134 ) (192 -256 137 ) (168 -256 137 ) (168 -256 134 ) +4 1999 2017 (168 -256 96 ) (192 -256 96 ) (192 -256 134 ) (168 -256 134 ) +4 1999 2015 (192 -256 137 ) (192 -256 208 ) (168 -256 208 ) (168 -256 137 ) +4 1999 2005 (160 -256 240 ) (160 -256 208 ) (192 -256 208 ) (192 -256 240 ) +4 2000 2148 (704 -640 96 ) (1024 -640 96 ) (1024 -640 320 ) (704 -640 320 ) +4 2000 2055 (1024 -640 96 ) (704 -640 96 ) (704 -256 96 ) (1024 -256 96 ) +5 2000 2001 (704 -256 320 ) (704 -256 104 ) (704 -277.333313 96 ) (704 -640 96 ) (704 -640 320 ) +4 2001 2148 (576 -640 96 ) (704 -640 96 ) (704 -640 320 ) (576 -640 320 ) +4 2001 2056 (704 -640 96 ) (576 -640 96 ) (576 -277.333313 96 ) (704 -277.333313 96 ) +5 2001 2002 (576 -256 320 ) (576 -256 104 ) (576 -277.333313 96 ) (576 -640 96 ) (576 -640 320 ) +4 2002 2171 (456 -640 240 ) (456 -640 320 ) (448 -640 320 ) (448 -640 240 ) +4 2002 2170 (456 -640 96 ) (464 -640 96 ) (464 -640 320 ) (456 -640 320 ) +4 2002 2149 (464 -640 96 ) (512 -640 96 ) (512 -640 320 ) (464 -640 320 ) +4 2002 2148 (512 -640 96 ) (576 -640 96 ) (576 -640 320 ) (512 -640 320 ) +4 2002 2057 (576 -640 96 ) (448 -640 96 ) (448 -256 96 ) (576 -256 96 ) +4 2002 2003 (448 -256 320 ) (448 -256 240 ) (448 -640 240 ) (448 -640 320 ) +4 2003 2180 (448 -640 256 ) (448 -640 320 ) (384 -640 320 ) (384 -640 256 ) +4 2003 2006 (384 -352 240 ) (384 -640 240 ) (384 -640 320 ) (384 -352 320 ) +4 2003 2004 (384 -256 320 ) (384 -256 256 ) (384 -352 256 ) (384 -352 320 ) +4 2004 2032 (160 -352 320 ) (160 -256 320 ) (160 -256 256 ) (160 -352 256 ) +4 2004 2007 (160 -352 320 ) (160 -352 256 ) (224 -352 256 ) (224 -352 320 ) +4 2004 2006 (224 -352 256 ) (384 -352 256 ) (384 -352 320 ) (224 -352 320 ) +4 2005 2034 (160 -288 208 ) (160 -352 208 ) (160 -352 240 ) (160 -288 240 ) +4 2005 2033 (160 -272 208 ) (160 -288 208 ) (160 -288 240 ) (160 -272 240 ) +4 2005 2020 (160 -352 208 ) (160 -256 208 ) (168 -256 208 ) (168 -352 208 ) +4 2005 2015 (168 -256 208 ) (241 -256 208 ) (241 -352 208 ) (168 -352 208 ) +4 2005 2009 (241 -256 208 ) (384 -256 208 ) (384 -352 208 ) (241 -352 208 ) +4 2005 2008 (160 -352 240 ) (160 -352 208 ) (224 -352 208 ) (224 -352 240 ) +4 2005 2006 (224 -352 208 ) (384 -352 208 ) (384 -352 240 ) (224 -352 240 ) +4 2006 2181 (384 -640 208 ) (384 -640 240 ) (224 -640 240 ) (224 -640 208 ) +4 2006 2180 (384 -640 256 ) (384 -640 320 ) (224 -640 320 ) (224 -640 256 ) +4 2006 2021 (384 -544 208 ) (384 -640 208 ) (383 -640 208 ) (383 -544 208 ) +4 2006 2023 (383 -640 208 ) (224 -640 208 ) (224 -544 208 ) (383 -544 208 ) +4 2006 2015 (224 -352 208 ) (241 -352 208 ) (241 -544 208 ) (224 -544 208 ) +4 2006 2009 (241 -352 208 ) (384 -352 208 ) (384 -544 208 ) (241 -544 208 ) +4 2006 2007 (224 -352 320 ) (224 -352 256 ) (224 -640 256 ) (224 -640 320 ) +4 2006 2008 (224 -352 240 ) (224 -352 208 ) (224 -640 208 ) (224 -640 240 ) +4 2007 2247 (192 -640 320 ) (160 -640 320 ) (160 -640 256 ) (192 -640 256 ) +4 2007 2180 (224 -640 320 ) (192 -640 320 ) (192 -640 256 ) (224 -640 256 ) +4 2007 2032 (160 -640 256 ) (160 -640 320 ) (160 -352 320 ) (160 -352 256 ) +4 2008 2182 (192 -640 208 ) (200 -640 208 ) (200 -640 240 ) (192 -640 240 ) +4 2008 2181 (200 -640 208 ) (224 -640 208 ) (224 -640 240 ) (200 -640 240 ) +4 2008 2035 (160 -496 240 ) (160 -480 240 ) (160 -480 208 ) (160 -496 208 ) +4 2008 2036 (160 -640 208 ) (160 -640 240 ) (160 -528 240 ) (160 -528 208 ) +4 2008 2034 (160 -480 240 ) (160 -352 240 ) (160 -352 208 ) (160 -480 208 ) +4 2008 2029 (160 -640 208 ) (160 -639 208 ) (193 -639 208 ) (193 -640 208 ) +4 2008 2028 (160 -639 208 ) (160 -616 208 ) (168 -616 208 ) (168 -639 208 ) +4 2008 2027 (168 -608 208 ) (193 -608 208 ) (193 -639 208 ) (168 -639 208 ) +4 2008 2024 (168 -544 208 ) (193 -544 208 ) (193 -608 208 ) (168 -608 208 ) +4 2008 2023 (193 -544 208 ) (224 -544 208 ) (224 -640 208 ) (193 -640 208 ) +4 2008 2020 (160 -536 208 ) (160 -352 208 ) (168 -352 208 ) (168 -536 208 ) +4 2008 2015 (168 -352 208 ) (224 -352 208 ) (224 -544 208 ) (168 -544 208 ) +4 2009 2021 (384 -544 136 ) (384 -544 208 ) (383 -544 208 ) (383 -544 136 ) +4 2009 2023 (383 -544 208 ) (241 -544 208 ) (241 -544 136 ) (383 -544 136 ) +4 2009 2019 (241 -544 136 ) (241 -544 137 ) (241 -257 137 ) (241 -257 136 ) +4 2009 2015 (241 -544 137 ) (241 -544 208 ) (241 -256 208 ) (241 -256 137 ) +4 2009 2013 (241 -257 136 ) (241 -256 136 ) (335 -256 136 ) (335 -257 136 ) +4 2009 2014 (383 -544 136 ) (241 -544 136 ) (241 -257 136 ) (383 -257 136 ) +4 2010 2022 (384 -544 96 ) (384 -544 133 ) (383 -544 134 ) (383 -544 96 ) +4 2010 2012 (383 -257 134 ) (383 -256 133 ) (383 -256 96 ) (383 -257 96 ) +4 2010 2014 (383 -544 96 ) (383 -544 134 ) (383 -257 134 ) (383 -257 96 ) +4 2011 2012 (335.001953 -257 134 ) (373.001953 -257 96 ) (373.001953 -256 96 ) (336.001953 -256 133 ) +4 2011 2013 (335 -257 96 ) (335 -257 134 ) (335 -256 134 ) (335 -256 96 ) +3 2011 2014 (335 -257 134 ) (335 -257 96 ) (373 -257 96 ) +4 2012 2014 (383 -257 96 ) (383 -257 134 ) (335 -257 134 ) (373 -257 96 ) +4 2013 2016 (241 -256 135.003906 ) (241 -256 96 ) (241 -257 96 ) (241 -257 135.003906 ) +4 2013 2014 (335 -257 136 ) (241 -257 136 ) (241 -257 96 ) (335 -257 96 ) +4 2014 2023 (383 -544 136 ) (241 -544 136 ) (241 -544 96 ) (383 -544 96 ) +4 2014 2019 (241 -544 135.003906 ) (241 -544 136 ) (241 -257 136 ) (241 -257 135.003906 ) +4 2014 2016 (241 -544 96 ) (241 -544 135.003906 ) (241 -257 135.003906 ) (241 -257 96 ) +4 2015 2025 (168 -544 200 ) (168 -544 137 ) (193 -544 137 ) (193 -544 200 ) +4 2015 2024 (193 -544 208 ) (168 -544 208 ) (168 -544 200 ) (193 -544 200 ) +4 2015 2023 (241 -544 208 ) (193 -544 208 ) (193 -544 137 ) (241 -544 137 ) +4 2015 2020 (168 -536 208 ) (168 -256 208 ) (168 -256 137 ) (168 -536 137 ) +4 2015 2018 (168 -257 137 ) (168 -256 137 ) (192 -256 137 ) (193 -257 137 ) +4 2015 2019 (168 -544 137 ) (168 -257 137 ) (241 -257 137 ) (241 -544 137 ) +3 2016 2023 (201.996094 -544 96 ) (241 -544 96 ) (241 -544 135.003906 ) +4 2016 2017 (239.992188 -256 134 ) (201.992188 -256 96 ) (201.992188 -257 96 ) (240.992188 -257 135 ) +4 2016 2019 (201.992188 -544 96 ) (241 -544 135.007813 ) (241 -257 135.007813 ) (201.992188 -257 96 ) +4 2017 2020 (168 -256 134 ) (168 -256 96 ) (168 -257 96 ) (168 -257 135 ) +4 2017 2018 (168 -257 135 ) (193 -257 135 ) (192 -256 134 ) (168 -256 134 ) +4 2017 2019 (201.998230 -257 96 ) (240.996201 -257 135 ) (168 -257 135 ) (168 -257 96 ) +4 2018 2020 (168 -257 137 ) (168 -256 137 ) (168 -256 134 ) (168 -257 135 ) +4 2018 2019 (193 -257 137 ) (168 -257 137 ) (168 -257 135 ) (193 -257 135 ) +4 2019 2026 (192 -544 96 ) (193 -544 96 ) (193 -544 104 ) (192 -544 104 ) +4 2019 2025 (168 -544 137 ) (168 -544 104 ) (193 -544 104 ) (193 -544 137 ) +5 2019 2023 (193 -544 96 ) (201.996094 -544 96 ) (241 -544 135.003906 ) (241 -544 137 ) (193 -544 137 ) +4 2019 2020 (168 -536 137 ) (168 -257 137 ) (168 -257 96 ) (168 -536 96 ) +4 2020 2076 (160 -528 96 ) (160 -272 96 ) (164 -272 96 ) (164 -528 96 ) +4 2020 2035 (160 -480 96 ) (160 -496 96 ) (160 -496 208 ) (160 -480 208 ) +4 2020 2036 (160 -528 96 ) (160 -536 96 ) (160 -536 208 ) (160 -528 208 ) +4 2020 2034 (160 -288 96 ) (160 -480 96 ) (160 -480 208 ) (160 -288 208 ) +4 2020 2033 (160 -272 96 ) (160 -288 96 ) (160 -288 208 ) (160 -272 208 ) +4 2021 2181 (384 -640 136 ) (384 -640 208 ) (383 -640 208 ) (383 -640 136 ) +4 2021 2023 (383 -544 208 ) (383 -544 136 ) (383 -640 136 ) (383 -640 208 ) +4 2022 2208 (383 -640 96 ) (384 -640 96 ) (384 -640 133 ) (383 -640 134 ) +4 2022 2023 (383 -544 134 ) (383 -544 96 ) (383 -640 96 ) (383 -640 134 ) +4 2023 2210 (193 -640 96 ) (383 -640 96 ) (383 -640 136 ) (193 -640 136 ) +4 2023 2182 (200 -640 208 ) (193 -640 208 ) (193 -640 136 ) (200 -640 136 ) +4 2023 2181 (383 -640 136 ) (383 -640 208 ) (200 -640 208 ) (200 -640 136 ) +4 2023 2030 (193 -639 96 ) (193 -640 96 ) (193 -640 134 ) (193 -639 134 ) +4 2023 2029 (193 -640 136 ) (193 -640 208 ) (193 -639 208 ) (193 -639 136 ) +4 2023 2027 (193 -608 96 ) (193 -639 96 ) (193 -639 208 ) (193 -608 208 ) +4 2023 2026 (193 -544 104 ) (193 -544 96 ) (193 -608 96 ) (193 -608 104 ) +4 2023 2025 (193 -544 200 ) (193 -544 104 ) (193 -608 104 ) (193 -608 200 ) +4 2023 2024 (193 -544 208 ) (193 -544 200 ) (193 -608 200 ) (193 -608 208 ) +4 2024 2027 (193 -608 200 ) (193 -608 208 ) (168 -608 208 ) (168 -608 200 ) +4 2024 2025 (193 -608 200 ) (168 -608 200 ) (168 -544 200 ) (193 -544 200 ) +4 2025 2027 (193 -608 104 ) (193 -608 200 ) (168 -608 200 ) (168 -608 104 ) +4 2025 2026 (193 -608 104 ) (192 -608 104 ) (192 -544 104 ) (193 -544 104 ) +4 2026 2027 (193 -608 96 ) (193 -608 104 ) (192 -608 104 ) (192 -608 96 ) +3 2027 2031 (193 -639 134 ) (168 -639 134 ) (168 -639 109 ) +4 2027 2030 (193 -639 96 ) (193 -639 134 ) (168 -639 109 ) (168 -639 96 ) +4 2027 2029 (193 -639 136 ) (193 -639 208 ) (168 -639 208 ) (168 -639 136 ) +4 2027 2028 (168 -616 96 ) (168 -639 96 ) (168 -639 208 ) (168 -616 208 ) +4 2028 2036 (160 -616 96 ) (160 -639 96 ) (160 -639 208 ) (160 -616 208 ) +4 2028 2031 (160 -639 134 ) (160 -639 101 ) (168 -639 109 ) (168 -639 134 ) +4 2028 2030 (160 -639 101 ) (160 -639 96 ) (168 -639 96 ) (168 -639 109 ) +4 2028 2029 (168 -639 208 ) (160 -639 208 ) (160 -639 136 ) (168 -639 136 ) +4 2029 2182 (193 -640 136 ) (193 -640 208 ) (192 -640 208 ) (192 -640 136 ) +4 2029 2036 (160 -640 136 ) (160 -640 208 ) (160 -639 208 ) (160 -639 136 ) +4 2030 2211 (192 -640 96 ) (193 -640 96 ) (193 -640 134 ) (192 -640 133 ) +4 2030 2036 (160 -639 96 ) (160 -640 96 ) (160 -640 101 ) (160 -639 101 ) +4 2030 2031 (193 -639 134 ) (160 -639 101 ) (160 -640 101 ) (192 -640 133 ) +4 2031 2036 (160 -640 101 ) (160 -640 133 ) (160 -639 134 ) (160 -639 101 ) +4 2032 2250 (160 -640 256 ) (160 -640 320 ) (128 -640 320 ) (128 -640 256 ) +4 2032 2039 (128 -528 256 ) (128 -544 256 ) (128 -544 320 ) (128 -528 320 ) +4 2032 2041 (128 -544 256 ) (128 -640 256 ) (128 -640 320 ) (128 -544 320 ) +4 2032 2037 (128 -240 320 ) (128 -240 256 ) (128 -528 256 ) (128 -528 320 ) +4 2032 2035 (128 -496 256 ) (128 -480 256 ) (160 -480 256 ) (160 -496 256 ) +4 2032 2036 (128 -640 256 ) (128 -528 256 ) (160 -528 256 ) (160 -640 256 ) +4 2032 2033 (128 -288 256 ) (128 -272 256 ) (160 -272 256 ) (160 -288 256 ) +4 2033 2079 (128 -288 96 ) (128 -272 96 ) (160 -272 96 ) (160 -288 96 ) +4 2033 2038 (128 -272 96 ) (128 -288 96 ) (128 -288 240 ) (128 -272 240 ) +4 2033 2034 (160 -288 96 ) (160 -288 240 ) (128 -288 240 ) (128 -288 96 ) +4 2034 2079 (128 -480 96 ) (128 -288 96 ) (160 -288 96 ) (160 -480 96 ) +4 2034 2038 (128 -288 96 ) (128 -480 96 ) (128 -480 240 ) (128 -288 240 ) +4 2034 2035 (160 -480 96 ) (160 -480 240 ) (128 -480 240 ) (128 -480 96 ) +4 2035 2079 (128 -496 96 ) (128 -480 96 ) (160 -480 96 ) (160 -496 96 ) +4 2035 2038 (128 -480 96 ) (128 -496 96 ) (128 -496 240 ) (128 -480 240 ) +4 2036 2250 (128 -640 96 ) (160 -640 96 ) (160 -640 256 ) (128 -640 256 ) +4 2036 2091 (160 -640 96 ) (128 -640 96 ) (128 -636 96 ) (160 -636 96 ) +4 2036 2079 (128 -636 96 ) (128 -528 96 ) (160 -528 96 ) (160 -636 96 ) +4 2036 2039 (128 -544 240 ) (128 -544 256 ) (128 -528 256 ) (128 -528 240 ) +4 2036 2040 (128 -528 96 ) (128 -544 96 ) (128 -544 216 ) (128 -528 216 ) +4 2036 2041 (128 -544 96 ) (128 -640 96 ) (128 -640 256 ) (128 -544 256 ) +4 2037 2554 (0 -528 256 ) (0 -528 320 ) (0 -240 320 ) (0 -240 256 ) +4 2037 2039 (128 -528 256 ) (128 -528 320 ) (0 -528 320 ) (0 -528 256 ) +4 2038 2598 (0 -240 96 ) (0 -528 96 ) (0 -528 216 ) (0 -240 216 ) +4 2038 2564 (0 -528 216 ) (0 -528 240 ) (0 -240 240 ) (0 -240 216 ) +4 2038 2079 (0 -528 96 ) (0 -240 96 ) (128 -240 96 ) (128 -528 96 ) +4 2038 2040 (0 -528 96 ) (128 -528 96 ) (128 -528 216 ) (0 -528 216 ) +4 2039 2555 (0 -544 240 ) (0 -544 320 ) (0 -528 320 ) (0 -528 240 ) +4 2039 2041 (128 -544 240 ) (128 -544 320 ) (0 -544 320 ) (0 -544 240 ) +4 2040 2598 (0 -528 96 ) (0 -544 96 ) (0 -544 216 ) (0 -528 216 ) +4 2040 2079 (0 -544 96 ) (0 -528 96 ) (128 -528 96 ) (128 -544 96 ) +4 2040 2041 (0 -544 96 ) (128 -544 96 ) (128 -544 216 ) (0 -544 216 ) +4 2041 2610 (0 -544 96 ) (0 -640 96 ) (0 -640 216 ) (0 -544 216 ) +4 2041 2565 (0 -640 216 ) (0 -640 240 ) (0 -544 240 ) (0 -544 216 ) +3 2041 2562 (0 -640 255.111099 ) (0 -640 320 ) (0 -550.153870 320 ) +5 2041 2555 (0 -640 240 ) (0 -640 255.111099 ) (0 -550.153870 320 ) (0 -544 320 ) (0 -544 240 ) +4 2041 2250 (0 -640 320 ) (0 -640 96 ) (128 -640 96 ) (128 -640 320 ) +4 2041 2091 (128 -640 96 ) (0 -640 96 ) (0 -636 96 ) (128 -636 96 ) +4 2041 2079 (0 -636 96 ) (0 -544 96 ) (128 -544 96 ) (128 -636 96 ) +4 2042 2251 (1024 -64 64 ) (1024 -192 64 ) (960 -192 64 ) (960 -64 64 ) +4 2042 2045 (960 -192 64 ) (1024 -192 64 ) (1024 -192 80 ) (960 -192 80 ) +4 2042 2044 (1024 -192 80 ) (1024 -192 96 ) (960 -192 96 ) (960 -192 80 ) +4 2042 2043 (960 -64 64 ) (960 -192 64 ) (960 -192 96 ) (960 -64 96 ) +4 2043 2251 (960 -192 64 ) (896 -192 64 ) (896 -32 64 ) (960 -32 64 ) +4 2043 2045 (896 -192 64 ) (960 -192 64 ) (960 -192 80 ) (896 -192 80 ) +4 2043 2044 (960 -192 80 ) (960 -192 96 ) (896 -192 96 ) (896 -192 80 ) +4 2044 2055 (1024 -240 80 ) (1024 -240 96 ) (704 -240 96 ) (704 -240 80 ) +4 2044 2045 (1024 -240 80 ) (896 -240 80 ) (896 -192 80 ) (1024 -192 80 ) +4 2045 2251 (1024 -192 64 ) (1024 -240 64 ) (896 -240 64 ) (896 -192 64 ) +4 2045 2058 (896 -240 64 ) (1024 -240 64 ) (1024 -240 80 ) (896 -240 80 ) +4 2046 2269 (128 0 64 ) (432 0 64 ) (432 -64 64 ) (128 -64 64 ) +4 2046 2260 (432 0 64 ) (448 0 64 ) (448 -64 64 ) (432 -64 64 ) +4 2046 2053 (128 0 64 ) (128 -64 64 ) (128 -64 96 ) (128 0 96 ) +4 2046 2048 (224 -64 64 ) (256 -64 64 ) (256 -64 88 ) (224 -64 88 ) +4 2046 2047 (256 -64 64 ) (448 -64 64 ) (448 -64 96 ) (256 -64 96 ) +4 2046 2049 (128 -64 96 ) (128 -64 64 ) (224 -64 64 ) (224 -64 96 ) +4 2047 2269 (432 -160 64 ) (256 -160 64 ) (256 -64 64 ) (432 -64 64 ) +4 2047 2260 (464 -160 64 ) (432 -160 64 ) (432 -64 64 ) (464 -64 64 ) +4 2047 2259 (480 -160 64 ) (464 -160 64 ) (464 -64 64 ) (480 -64 64 ) +4 2047 2258 (512 -160 64 ) (480 -160 64 ) (480 -64 64 ) (512 -64 64 ) +4 2047 2254 (576 -64 64 ) (576 -160 64 ) (544 -160 64 ) (544 -64 64 ) +4 2047 2255 (544 -160 64 ) (512 -160 64 ) (512 -64 64 ) (544 -64 64 ) +4 2047 2051 (256 -160 64 ) (352 -160 64 ) (352 -160 88 ) (256 -160 88 ) +4 2047 2050 (352 -160 64 ) (576 -160 64 ) (576 -160 96 ) (352 -160 96 ) +4 2047 2048 (256 -64 88 ) (256 -64 64 ) (256 -160 64 ) (256 -160 88 ) +4 2048 2269 (256 -160 64 ) (224 -160 64 ) (224 -64 64 ) (256 -64 64 ) +4 2048 2051 (224 -160 64 ) (256 -160 64 ) (256 -160 88 ) (224 -160 88 ) +4 2048 2049 (224 -64 88 ) (224 -64 64 ) (224 -160 64 ) (224 -160 88 ) +4 2049 2269 (224 -160 64 ) (128 -160 64 ) (128 -64 64 ) (224 -64 64 ) +4 2049 2053 (128 -64 64 ) (128 -160 64 ) (128 -160 96 ) (128 -64 96 ) +4 2049 2052 (128 -160 96 ) (128 -160 64 ) (224 -160 64 ) (224 -160 96 ) +4 2050 2269 (432 -240 64 ) (352 -240 64 ) (352 -160 64 ) (432 -160 64 ) +4 2050 2260 (464 -240 64 ) (432 -240 64 ) (432 -160 64 ) (464 -160 64 ) +4 2050 2259 (480 -240 64 ) (464 -240 64 ) (464 -160 64 ) (480 -160 64 ) +4 2050 2258 (512 -240 64 ) (480 -240 64 ) (480 -160 64 ) (512 -160 64 ) +4 2050 2254 (576 -160 64 ) (576 -240 64 ) (544 -240 64 ) (544 -160 64 ) +4 2050 2255 (544 -240 64 ) (512 -240 64 ) (512 -160 64 ) (544 -160 64 ) +4 2050 2070 (352 -240 64 ) (384 -240 64 ) (384 -240 95 ) (352 -240 95 ) +4 2050 2064 (464 -240 64 ) (544 -240 64 ) (544 -240 80 ) (464 -240 80 ) +4 2050 2063 (544 -240 64 ) (576 -240 64 ) (576 -240 80 ) (544 -240 80 ) +4 2050 2066 (384 -240 64 ) (464 -240 64 ) (464 -240 80 ) (384 -240 80 ) +4 2050 2057 (576 -240 80 ) (576 -240 96 ) (384 -240 96 ) (384 -240 80 ) +4 2050 2051 (352 -160 88 ) (352 -160 64 ) (352 -240 64 ) (352 -240 88 ) +4 2051 2269 (352 -240 64 ) (224 -240 64 ) (224 -160 64 ) (352 -160 64 ) +4 2051 2071 (224 -240 64 ) (240 -240 64 ) (240 -240 88 ) (224 -240 88 ) +4 2051 2070 (336 -240 64 ) (352 -240 64 ) (352 -240 88 ) (336 -240 88 ) +4 2051 2052 (224 -160 88 ) (224 -160 64 ) (224 -240 64 ) (224 -240 88 ) +4 2052 2269 (224 -240 64 ) (128 -240 64 ) (128 -160 64 ) (224 -160 64 ) +4 2052 2082 (128 -240 64 ) (160 -240 64 ) (160 -240 80 ) (128 -240 80 ) +4 2052 2079 (160 -240 88 ) (160 -240 96 ) (128 -240 96 ) (128 -240 88 ) +4 2052 2077 (160 -240 64 ) (164 -240 64 ) (164 -240 80 ) (160 -240 80 ) +4 2052 2075 (164 -240 88 ) (164 -240 96 ) (160 -240 96 ) (160 -240 88 ) +4 2052 2074 (164 -240 64 ) (192 -240 64 ) (192 -240 80 ) (164 -240 80 ) +4 2052 2073 (192 -240 88 ) (192 -240 96 ) (164 -240 96 ) (164 -240 88 ) +4 2052 2072 (192 -240 64 ) (196 -240 64 ) (196 -240 96 ) (192 -240 96 ) +4 2052 2071 (196 -240 64 ) (224 -240 64 ) (224 -240 96 ) (196 -240 96 ) +3 2052 2054 (128 -236 64 ) (128 -240 64 ) (128 -240 68 ) +4 2052 2053 (128 -160 64 ) (128 -224 64 ) (128 -224 96 ) (128 -160 96 ) +4 2053 2592 (0 0 96 ) (0 0 64 ) (0 -224 64 ) (0 -224 96 ) +4 2053 2270 (0 -224 64 ) (0 0 64 ) (128 0 64 ) (128 -224 64 ) +3 2054 2593 (0 -236 64 ) (0 -240 64 ) (0 -240 68 ) +4 2054 2272 (0 -240 64 ) (0 -236 64 ) (128 -236 64 ) (128 -240 64 ) +4 2054 2088 (0 -240 64 ) (16 -240 64 ) (16 -240 68 ) (0 -240 68 ) +4 2054 2083 (64 -240 64 ) (128 -240 64 ) (128 -240 68 ) (64 -240 68 ) +4 2055 2148 (1024 -640 80 ) (1024 -640 96 ) (704 -640 96 ) (704 -640 80 ) +4 2055 2067 (1024 -640 80 ) (704 -640 80 ) (704 -448 80 ) (1024 -448 80 ) +4 2055 2061 (704 -448 80 ) (704 -416 80 ) (864 -416 80 ) (864 -448 80 ) +4 2055 2060 (864 -416 80 ) (1024 -416 80 ) (1024 -448 80 ) (864 -448 80 ) +3 2055 2059 (896 -384 80 ) (896 -416 80 ) (864 -416 80 ) +4 2055 2058 (896 -240 80 ) (1024 -240 80 ) (1024 -416 80 ) (896 -416 80 ) +4 2055 2056 (704 -320 80 ) (704 -640 80 ) (704 -640 96 ) (704 -277.333344 96 ) +4 2056 2148 (704 -640 96 ) (576 -640 96 ) (576 -640 80 ) (704 -640 80 ) +4 2056 2067 (704 -640 80 ) (576 -640 80 ) (576 -448 80 ) (704 -448 80 ) +4 2056 2062 (576 -448 80 ) (576 -384 80 ) (608 -416 80 ) (608 -448 80 ) +4 2056 2061 (704 -416 80 ) (704 -448 80 ) (608 -448 80 ) (608 -416 80 ) +4 2056 2057 (576 -320 80 ) (576 -640 80 ) (576 -640 96 ) (576 -277.333344 96 ) +4 2057 2172 (456 -640 96 ) (448 -640 96 ) (448 -640 80 ) (456 -640 80 ) +4 2057 2170 (464 -640 96 ) (456 -640 96 ) (456 -640 80 ) (464 -640 80 ) +4 2057 2149 (512 -640 96 ) (464 -640 96 ) (464 -640 80 ) (512 -640 80 ) +4 2057 2148 (576 -640 96 ) (512 -640 96 ) (512 -640 80 ) (576 -640 80 ) +4 2057 2070 (384 -240 95 ) (384 -240 80 ) (384 -256 80 ) (384 -256 95 ) +4 2057 2068 (512 -640 80 ) (464 -640 80 ) (464 -448 80 ) (512 -448 80 ) +4 2057 2067 (576 -640 80 ) (512 -640 80 ) (512 -448 80 ) (576 -448 80 ) +4 2057 2069 (464 -640 80 ) (384 -640 80 ) (384 -448 80 ) (464 -448 80 ) +4 2057 2065 (544 -320 80 ) (544 -448 80 ) (464 -448 80 ) (464 -320 80 ) +4 2057 2064 (464 -240 80 ) (544 -240 80 ) (544 -320 80 ) (464 -320 80 ) +4 2057 2063 (544 -240 80 ) (576 -240 80 ) (576 -448 80 ) (544 -448 80 ) +4 2057 2066 (384 -448 80 ) (384 -240 80 ) (464 -240 80 ) (464 -448 80 ) +4 2058 2251 (896 -240 64 ) (1024 -240 64 ) (1024 -416 64 ) (896 -416 64 ) +4 2058 2060 (896 -416 64 ) (1024 -416 64 ) (1024 -416 80 ) (896 -416 80 ) +4 2058 2059 (896 -416 64 ) (896 -416 80 ) (896 -384 80 ) (896 -384 64 ) +4 2059 2060 (864 -416 64 ) (896 -416 64 ) (896 -416 80 ) (864 -416 80 ) +4 2060 2251 (1024 -416 64 ) (1024 -448 64 ) (896 -448 64 ) (896 -416 64 ) +4 2060 2067 (1024 -448 80 ) (864 -448 80 ) (864 -448 64 ) (1024 -448 64 ) +4 2060 2061 (864 -416 80 ) (864 -416 72 ) (864 -448 72 ) (864 -448 80 ) +4 2061 2067 (864 -448 80 ) (608 -448 80 ) (608 -448 72 ) (864 -448 72 ) +4 2061 2062 (608 -448 72 ) (608 -448 80 ) (608 -416 80 ) (608 -416 72 ) +4 2062 2067 (608 -448 80 ) (576 -448 80 ) (576 -448 64 ) (608 -448 64 ) +4 2062 2063 (576 -448 64 ) (576 -448 80 ) (576 -384 80 ) (576 -384 64 ) +4 2063 2254 (544 -240 64 ) (576 -240 64 ) (576 -320 64 ) (544 -320 64 ) +4 2063 2067 (576 -448 80 ) (544 -448 80 ) (544 -448 64 ) (576 -448 64 ) +4 2063 2065 (544 -448 72 ) (544 -448 80 ) (544 -320 80 ) (544 -320 72 ) +4 2063 2064 (544 -320 80 ) (544 -240 80 ) (544 -240 64 ) (544 -320 64 ) +4 2064 2259 (464 -240 64 ) (480 -240 64 ) (480 -320 64 ) (464 -320 64 ) +4 2064 2258 (480 -240 64 ) (512 -240 64 ) (512 -320 64 ) (480 -320 64 ) +4 2064 2255 (512 -240 64 ) (544 -240 64 ) (544 -320 64 ) (512 -320 64 ) +4 2064 2065 (464 -320 80 ) (464 -320 72 ) (544 -320 72 ) (544 -320 80 ) +4 2064 2066 (464 -320 80 ) (464 -240 80 ) (464 -240 64 ) (464 -320 64 ) +4 2065 2068 (512 -448 80 ) (464 -448 80 ) (464 -448 72 ) (512 -448 72 ) +4 2065 2067 (544 -448 80 ) (512 -448 80 ) (512 -448 72 ) (544 -448 72 ) +4 2065 2066 (464 -448 72 ) (464 -448 80 ) (464 -320 80 ) (464 -320 72 ) +4 2066 2275 (432 -256 64 ) (432 -448 64 ) (384 -448 64 ) (384 -256 64 ) +4 2066 2273 (384 -240 64 ) (432 -240 64 ) (432 -256 64 ) (384 -256 64 ) +4 2066 2260 (432 -240 64 ) (464 -240 64 ) (464 -448 64 ) (432 -448 64 ) +4 2066 2070 (384 -240 80 ) (384 -240 64 ) (384 -256 64 ) (384 -256 80 ) +4 2066 2069 (464 -448 80 ) (384 -448 80 ) (384 -448 64 ) (464 -448 64 ) +4 2067 2256 (896 -640 64 ) (832 -640 64 ) (832 -448 64 ) (896 -448 64 ) +4 2067 2251 (1024 -448 64 ) (1024 -640 64 ) (896 -640 64 ) (896 -448 64 ) +4 2067 2148 (512 -640 64 ) (1024 -640 64 ) (1024 -640 80 ) (512 -640 80 ) +4 2067 2068 (512 -448 80 ) (512 -448 72 ) (512 -640 72 ) (512 -640 80 ) +4 2068 2149 (512 -640 72 ) (512 -640 80 ) (464 -640 80 ) (464 -640 72 ) +4 2068 2069 (464 -448 80 ) (464 -448 72 ) (464 -640 72 ) (464 -640 80 ) +4 2069 2275 (432 -640 64 ) (384 -640 64 ) (384 -448 64 ) (432 -448 64 ) +4 2069 2260 (464 -640 64 ) (432 -640 64 ) (432 -448 64 ) (464 -448 64 ) +4 2069 2172 (448 -640 64 ) (456 -640 64 ) (456 -640 80 ) (448 -640 80 ) +4 2069 2170 (456 -640 64 ) (464 -640 64 ) (464 -640 80 ) (456 -640 80 ) +4 2070 2273 (336 -240 64 ) (384 -240 64 ) (384 -256 64 ) (336 -256 64 ) +4 2071 2274 (196 -240 64 ) (240 -240 64 ) (240 -256 64 ) (196 -256 64 ) +4 2071 2072 (196 -240 96 ) (196 -240 64 ) (196 -256 64 ) (196 -256 96 ) +4 2072 2277 (192 -240 64 ) (196 -240 64 ) (196 -256 64 ) (192 -256 64 ) +4 2072 2074 (192 -240 80 ) (192 -240 64 ) (192 -256 64 ) (192 -256 80 ) +4 2072 2073 (192 -240 96 ) (192 -240 88 ) (192 -256 88 ) (192 -256 96 ) +4 2073 2075 (164 -240 96 ) (164 -240 88 ) (164 -256 88 ) (164 -256 96 ) +4 2074 2277 (164 -240 64 ) (192 -240 64 ) (192 -256 64 ) (164 -256 64 ) +4 2074 2077 (164 -240 80 ) (164 -240 64 ) (164 -256 64 ) (164 -256 80 ) +4 2075 2079 (160 -240 96 ) (160 -240 88 ) (160 -256 88 ) (160 -256 96 ) +4 2076 2079 (160 -528 88 ) (160 -528 96 ) (160 -272 96 ) (160 -272 88 ) +4 2077 2278 (160 -240 64 ) (164 -240 64 ) (164 -256 64 ) (160 -256 64 ) +4 2077 2082 (160 -240 80 ) (160 -240 64 ) (160 -256 64 ) (160 -256 80 ) +4 2078 2279 (164 -272 64 ) (164 -528 64 ) (160 -528 64 ) (160 -272 64 ) +4 2078 2082 (160 -272 64 ) (160 -528 64 ) (160 -528 80 ) (160 -272 80 ) +4 2079 2598 (0 -544 96 ) (0 -240 96 ) (0 -240 88 ) (0 -544 88 ) +4 2079 2610 (0 -636 88 ) (0 -636 96 ) (0 -544 96 ) (0 -544 88 ) +4 2079 2091 (160 -636 88 ) (160 -636 96 ) (0 -636 96 ) (0 -636 88 ) +4 2079 2086 (0 -240 88 ) (32 -240 88 ) (32 -528 88 ) (0 -528 88 ) +4 2079 2081 (160 -528 88 ) (160 -544 88 ) (128 -544 88 ) (128 -528 88 ) +4 2079 2080 (32 -240 88 ) (48 -240 88 ) (48 -528 88 ) (32 -528 88 ) +4 2079 2090 (160 -544 88 ) (160 -636 88 ) (0 -636 88 ) (0 -544 88 ) +4 2080 2086 (32 -528 88 ) (32 -240 88 ) (32 -240 80 ) (32 -528 80 ) +4 2081 2082 (160 -544 80 ) (128 -544 80 ) (128 -528 80 ) (160 -528 80 ) +4 2081 2090 (160 -544 80 ) (160 -544 88 ) (128 -544 88 ) (128 -544 80 ) +4 2082 2284 (160 -528 64 ) (160 -544 64 ) (128 -544 64 ) (128 -528 64 ) +4 2082 2280 (128 -240 64 ) (160 -240 64 ) (160 -528 64 ) (128 -528 64 ) +3 2082 2084 (128 -528 80 ) (128 -516 80 ) (128 -528 68 ) +4 2082 2083 (128 -516 80 ) (128 -240 80 ) (128 -240 64 ) (128 -532 64 ) +4 2082 2090 (128 -544 64 ) (160 -544 64 ) (160 -544 80 ) (128 -544 80 ) +4 2083 2285 (128 -528 64 ) (128 -532 64 ) (64 -532 64 ) (64 -528 64 ) +4 2083 2280 (64 -240 64 ) (128 -240 64 ) (128 -528 64 ) (64 -528 64 ) +3 2083 2085 (64 -528 64 ) (64 -532 64 ) (64 -528 68 ) +4 2083 2084 (64 -516 80 ) (64 -528 68 ) (128 -528 68 ) (128 -516 80 ) +4 2085 2285 (64 -528 64 ) (64 -532 64 ) (32 -532 64 ) (32 -528 64 ) +3 2085 2087 (32 -528 64 ) (32 -532 64 ) (32 -528 68 ) +4 2086 2600 (0 -528 88 ) (0 -508 88 ) (0 -524 72 ) (0 -528 72 ) +4 2086 2599 (0 -508 88 ) (0 -240 88 ) (0 -240 72 ) (0 -524 72 ) +4 2086 2089 (16 -524 72 ) (16 -528 72 ) (0 -528 72 ) (0 -524 72 ) +4 2086 2088 (0 -240 72 ) (16 -240 72 ) (16 -524 72 ) (0 -524 72 ) +4 2087 2285 (32 -528 64 ) (32 -532 64 ) (16 -532 64 ) (16 -528 64 ) +3 2087 2088 (16 -528 64 ) (16 -532 64 ) (16 -528 68 ) +4 2088 2599 (0 -240 64 ) (0 -532 64 ) (0 -524 72 ) (0 -240 72 ) +4 2088 2285 (0 -532 64 ) (0 -528 64 ) (16 -528 64 ) (16 -532 64 ) +4 2088 2089 (16 -528 68 ) (16 -524 72 ) (0 -524 72 ) (0 -528 68 ) +3 2089 2600 (0 -528 72 ) (0 -524 72 ) (0 -528 68 ) +4 2090 2610 (0 -544 64 ) (0 -636 64 ) (0 -636 88 ) (0 -544 88 ) +4 2090 2287 (0 -636 64 ) (0 -544 64 ) (128 -544 64 ) (128 -636 64 ) +4 2090 2284 (128 -544 64 ) (160 -544 64 ) (160 -636 64 ) (128 -636 64 ) +4 2090 2091 (0 -636 64 ) (160 -636 64 ) (160 -636 88 ) (0 -636 88 ) +4 2091 2610 (0 -636 64 ) (0 -640 64 ) (0 -640 96 ) (0 -636 96 ) +4 2091 2287 (0 -640 64 ) (0 -636 64 ) (128 -636 64 ) (128 -640 64 ) +4 2091 2284 (128 -636 64 ) (160 -636 64 ) (160 -640 64 ) (128 -640 64 ) +4 2091 2250 (0 -640 96 ) (0 -640 64 ) (160 -640 64 ) (160 -640 96 ) +4 2092 2117 (312 -640 608 ) (312 -640 440 ) (312 -692 440 ) (312 -692 608 ) +4 2092 2115 (312 -640 5542.669922 ) (312 -640 608 ) (312 -692 608 ) (312 -692 5542.669922 ) +4 2092 2114 (312 -664 372 ) (312 -640 372 ) (468 -640 372 ) (468 -664 372 ) +4 2092 2113 (468 -640 372 ) (1024 -640 372 ) (1024 -692 372 ) (468 -692 372 ) +3 2092 2104 (440 -692 377.667084 ) (436 -692 382.119629 ) (436 -692 377.666992 ) +4 2092 2103 (440 -692 377.667084 ) (440 -692 5542.669922 ) (436 -692 5542.669922 ) (436 -692 382.119629 ) +4 2092 2102 (332 -692 372 ) (436 -692 372 ) (436 -692 377.667084 ) (332 -692 377.666992 ) +4 2092 2100 (436 -692 377.667084 ) (436 -692 5542.669922 ) (328 -692 5542.669922 ) (328 -692 377.666992 ) +4 2092 2093 (440 -692 372 ) (1024 -692 372 ) (1024 -692 5542.669922 ) (440 -692 5542.669922 ) +4 2092 2112 (312 -692 5542.669922 ) (312 -692 372 ) (328 -692 372 ) (328 -692 5542.669922 ) +4 2093 2291 (1024 -928 372 ) (1024 -928 5542.669922 ) (440 -928 5542.669922 ) (440 -928 372 ) +4 2093 2113 (1024 -928 372 ) (468 -928 372 ) (468 -692 372 ) (1024 -692 372 ) +4 2093 2103 (440 -700.856934 5542.669922 ) (440 -692 5542.669922 ) (440 -692 377.666992 ) (440 -700.856934 377.667023 ) +4 2093 2095 (440 -928 5542.669922 ) (440 -700.856934 5542.669922 ) (440 -700.856934 372 ) (440 -928 372 ) +3 2094 2296 (429.487030 -928 383.701874 ) (430.580658 -928 382.484558 ) (430.580658 -928 383.701874 ) +5 2094 2292 (430.580658 -928 5542.669922 ) (337.419312 -928 5542.669922 ) (337.419312 -928 486.181641 ) (429.487030 -928 383.701874 ) (430.580658 -928 383.701874 ) +5 2094 2110 (383.454041 -826.064514 434.940735 ) (381.453949 -830.493286 437.167023 ) (383.453674 -826.065308 439.392914 ) (384 -824.856262 438.785156 ) (384 -824.856262 435.548096 ) +4 2094 2109 (381.453949 -830.493286 437.167023 ) (337.418671 -928 486.182190 ) (337.418671 -928 490.633789 ) (383.453674 -826.065308 439.392914 ) +4 2094 2106 (337.418671 -928 490.633789 ) (337.418671 -928 491.855804 ) (384 -824.856262 440.003906 ) (384 -824.856262 438.785156 ) +4 2094 2105 (337.418671 -928 491.855804 ) (337.418671 -928 5542.669922 ) (384 -824.856262 5542.669922 ) (384 -824.856262 440.003906 ) +3 2094 2098 (337.418610 -928 486.178375 ) (384 -824.856262 434.329498 ) (430.580658 -928 382.480682 ) +4 2094 2096 (383.998047 -824.855469 435.548706 ) (383.998047 -824.855469 5542.669922 ) (430.579590 -928 5542.669922 ) (430.579620 -928 383.702148 ) +4 2095 2295 (438.580627 -928 379.246979 ) (438.580627 -928 373.579895 ) (440 -928 372 ) (440 -928 377.666992 ) +4 2095 2294 (438.580627 -928 383.702637 ) (438.580627 -928 379.246979 ) (440 -928 377.666992 ) (440 -928 383.701874 ) +4 2095 2292 (440 -928 5542.669922 ) (438.580627 -928 5542.669922 ) (438.580627 -928 383.702637 ) (440 -928 383.701874 ) +4 2095 2103 (440 -700.855469 5542.669922 ) (440 -700.855469 377.666992 ) (388 -816 435.548035 ) (388 -816 5542.669922 ) +4 2095 2097 (387.996094 -815.992188 440.003906 ) (387.996094 -815.992188 435.555359 ) (438.580200 -928 379.247467 ) (438.580200 -928 383.701874 ) +4 2095 2096 (387.996246 -815.992493 5542.669922 ) (387.996094 -815.992188 440.003906 ) (438.580200 -928 383.701874 ) (438.580292 -928 5542.669922 ) +4 2096 2292 (438.580627 -928 5542.669922 ) (430.580658 -928 5542.669922 ) (430.580658 -928 383.702148 ) (438.580627 -928 383.701843 ) +3 2096 2110 (384 -824.856262 435.548309 ) (384 -824.856262 438.784943 ) (385.453613 -821.636841 437.166595 ) +4 2096 2106 (384 -824.856262 438.784943 ) (384 -824.856262 440.003845 ) (386.001129 -820.424438 437.776031 ) (385.453613 -821.636841 437.166595 ) +5 2096 2105 (384 -824.856262 440.003845 ) (384 -824.856262 5542.669922 ) (388 -816 5542.669922 ) (388 -816 440 ) (386.001129 -820.424438 437.776031 ) +4 2096 2097 (386.002655 -820.425964 437.774323 ) (388.001953 -816 440 ) (438.582520 -928 383.701843 ) (434.579376 -928 383.700958 ) +3 2097 2294 (438.580627 -928 379.246948 ) (438.580627 -928 383.701843 ) (434.578430 -928 383.701996 ) +3 2097 2105 (386.001160 -820.424438 437.776031 ) (388 -816 440 ) (388 -816 435.551392 ) +5 2098 2296 (337.419312 -928 383.701874 ) (337.419312 -928 378.032227 ) (430.580658 -928 378.032227 ) (430.580658 -928 382.484589 ) (429.487091 -928 383.701843 ) +3 2098 2292 (337.419312 -928 486.181641 ) (337.419312 -928 383.701874 ) (429.487091 -928 383.701843 ) +4 2098 2110 (337.418671 -928 383.699280 ) (337.418671 -928 388.151794 ) (381.453949 -830.493286 437.167023 ) (383.454041 -826.064514 434.940735 ) +3 2098 2109 (337.418671 -928 388.151794 ) (337.418671 -928 486.182190 ) (381.453949 -830.493286 437.167023 ) +4 2099 2292 (329.419373 -928 5542.669922 ) (328 -928 5542.669922 ) (328 -928 490.633789 ) (329.419373 -928 490.633789 ) +4 2099 2111 (328 -703.276001 377.667969 ) (328 -700.856812 376.451904 ) (380 -816 434.332794 ) (379.453857 -817.209290 434.940735 ) +4 2099 2109 (329.419403 -928 490.633453 ) (328 -928 490.633453 ) (328 -703.276001 377.667969 ) (379.453857 -817.209290 434.940735 ) +4 2099 2108 (377.455231 -821.636536 437.166779 ) (379.454498 -817.209595 434.941437 ) (380 -816 435.549103 ) (380 -816 440 ) +5 2099 2106 (329.420105 -928 490.634125 ) (377.455231 -821.636536 437.166779 ) (380 -816 440 ) (380 -816 444.455750 ) (329.420105 -928 500.759766 ) +4 2099 2105 (380 -816 444.455750 ) (380 -816 5542.669922 ) (329.420105 -928 5542.669922 ) (329.420105 -928 500.759766 ) +4 2099 2101 (380 -815.998047 440 ) (380 -815.998047 435.538910 ) (328 -700.857178 377.667023 ) (328 -700.857178 382.119476 ) +4 2099 2100 (379.998932 -815.997864 5542.669922 ) (380 -815.998047 440 ) (328 -700.857178 382.119476 ) (328 -700.857056 5542.669922 ) +4 2099 2112 (328 -928 5542.669922 ) (328 -700.856812 5542.669922 ) (328 -700.856873 376.452209 ) (328 -928 490.633789 ) +4 2100 2107 (380 -816 440 ) (384 -807.143677 435.548157 ) (384 -807.143677 440.003082 ) (382.002014 -811.568665 442.227539 ) +3 2100 2106 (380 -816 444.455566 ) (380 -816 440 ) (382.002014 -811.568665 442.227539 ) +4 2100 2105 (384 -807.143677 5542.669922 ) (380 -816 5542.669922 ) (380 -816 444.455566 ) (384 -807.143677 440.003082 ) +4 2100 2104 (436 -692 377.667084 ) (436 -692 382.118591 ) (384 -807.143677 440 ) (384 -807.143677 435.548157 ) +4 2100 2103 (436 -692 382.118591 ) (436 -692 5542.669922 ) (384 -807.143677 5542.669922 ) (384 -807.143677 440 ) +3 2100 2102 (332 -692 377.665009 ) (435.998932 -692 377.664459 ) (384 -807.140930 435.544678 ) +4 2100 2101 (380 -815.996094 439.996094 ) (328 -700.853088 382.115356 ) (328 -692.003906 377.666992 ) (382.001801 -811.563599 437.767914 ) +4 2100 2112 (328 -700.856812 5542.669922 ) (328 -692 5542.669922 ) (328 -692 377.666992 ) (328 -700.856873 382.119293 ) +3 2101 2108 (382.003998 -811.564270 437.770355 ) (380 -816 440 ) (380 -816 435.540466 ) +3 2101 2112 (328 -692 377.666992 ) (328 -700.856873 377.667023 ) (328 -700.856873 382.119293 ) +4 2103 2105 (384 -807.144531 5542.669922 ) (384 -807.144531 440 ) (388 -816 435.548157 ) (388 -816 5542.669922 ) +4 2103 2104 (386 -811.574280 437.767212 ) (384.001953 -807.148438 439.992188 ) (436.004395 -692 382.108795 ) (439.996124 -692 377.666992 ) +3 2104 2107 (384 -807.144531 440 ) (384 -807.144531 435.540771 ) (386.003235 -811.580261 437.770264 ) +4 2105 2292 (337.419312 -928 5542.669922 ) (329.419373 -928 5542.669922 ) (329.419373 -928 500.760254 ) (337.419312 -928 491.855072 ) +4 2105 2107 (384 -807.140625 440 ) (386 -811.570068 437.773224 ) (384 -816 440 ) (382 -811.570129 442.226746 ) +4 2105 2106 (386 -820.428772 437.773865 ) (337.419373 -928 491.851410 ) (329.418335 -928 500.757111 ) (382 -811.570129 442.226746 ) +4 2106 2292 (329.419373 -928 500.760254 ) (329.419373 -928 490.633789 ) (337.419312 -928 490.633789 ) (337.419312 -928 491.855072 ) +3 2106 2110 (385.449951 -821.637207 437.166443 ) (383.451691 -826.061951 439.390686 ) (381.453461 -821.637146 437.166443 ) +5 2106 2109 (383.451691 -826.061951 439.390686 ) (337.415222 -928 490.633453 ) (329.419403 -928 490.633453 ) (377.454285 -821.637024 437.166473 ) (381.453461 -821.637146 437.166443 ) +4 2106 2108 (377.460938 -821.636719 437.166016 ) (380.007050 -816 440 ) (384 -816 440 ) (381.453247 -821.636719 437.166229 ) +3 2106 2107 (380.007050 -816 440 ) (382.005859 -811.574219 442.224609 ) (384.004333 -816 440 ) +3 2107 2108 (383.996460 -815.998047 439.997070 ) (380 -815.998047 439.997070 ) (382 -811.575562 437.774109 ) +3 2108 2109 (381.453461 -821.637146 437.166443 ) (377.454285 -821.637024 437.166473 ) (379.453888 -817.209351 434.940735 ) +3 2109 2293 (328 -928 383.701843 ) (328 -928 377.667969 ) (333.420837 -928 383.701843 ) +5 2109 2292 (328 -928 490.633789 ) (328 -928 383.701843 ) (333.420837 -928 383.701843 ) (337.419312 -928 388.152496 ) (337.419312 -928 490.633789 ) +4 2109 2111 (328 -703.273438 377.667969 ) (379.453674 -817.209778 434.940582 ) (329.419373 -928 379.247925 ) (328 -928 377.668030 ) +4 2109 2110 (381.453156 -821.637329 437.166199 ) (383.455078 -826.070313 439.394531 ) (337.422363 -928 388.155975 ) (333.418427 -928 383.699249 ) +3 2109 2112 (328 -928 377.667969 ) (328 -928 490.633789 ) (328 -703.275391 377.667969 ) +3 2110 2292 (337.419312 -928 383.699219 ) (337.419312 -928 388.152496 ) (333.418457 -928 383.699219 ) +4 2111 2297 (328 -928 377.667969 ) (328 -928 372 ) (329.419373 -928 373.579895 ) (329.419373 -928 379.247864 ) +5 2111 2112 (328 -700.856873 372 ) (328 -928 372 ) (328 -928 377.667969 ) (328 -703.275391 377.667969 ) (328 -700.856812 376.452179 ) +3 2112 2298 (322.907898 -928 372 ) (328 -928 372 ) (328 -928 377.667969 ) +5 2112 2293 (312 -928 383.701660 ) (312 -928 372 ) (322.907898 -928 372 ) (328 -928 377.667969 ) (328 -928 383.701874 ) +4 2112 2292 (328 -928 5542.669922 ) (312 -928 5542.669922 ) (312 -928 383.701660 ) (328 -928 383.701874 ) +4 2112 2117 (312 -928 440 ) (312 -928 608 ) (312 -692 608 ) (312 -692 440 ) +4 2112 2115 (312 -928 608 ) (312 -928 5542.669922 ) (312 -692 5542.669922 ) (312 -692 608 ) +4 2113 2300 (468 -928 368 ) (1024 -928 368 ) (1024 -928 372 ) (468 -928 372 ) +4 2113 2122 (468 -664 368 ) (468 -640 368 ) (472 -640 368 ) (472 -664 368 ) +4 2113 2124 (472 -928 368 ) (468 -928 368 ) (468 -664 368 ) (472 -664 368 ) +4 2113 2121 (1024 -928 368 ) (472 -928 368 ) (472 -640 368 ) (1024 -640 368 ) +4 2113 2114 (468 -640 368 ) (468 -664 368 ) (468 -664 372 ) (468 -640 372 ) +4 2114 2142 (312 -664 368 ) (312 -640 368 ) (432 -640 368 ) (432 -664 368 ) +4 2114 2125 (432 -640 368 ) (464 -640 368 ) (464 -664 368 ) (432 -664 368 ) +4 2114 2122 (464 -640 368 ) (468 -640 368 ) (468 -664 368 ) (464 -664 368 ) +5 2115 2302 (312 -928 608 ) (312 -928 5542.669922 ) (8 -928 5542.669922 ) (8 -928 616 ) (166.909088 -928 524 ) +4 2115 2119 (8 -640 5542.669922 ) (8 -640 616 ) (8 -928 616 ) (8 -928 5542.669922 ) +4 2115 2117 (166.909958 -640 524 ) (312 -640 607.998962 ) (312 -928 607.998962 ) (166.909958 -928 524 ) +4 2115 2116 (8 -928 616 ) (8 -640 616 ) (160 -640 528 ) (160 -928 528 ) +3 2116 2303 (8 -928 616 ) (8 -928 440 ) (160 -928 528 ) +4 2116 2119 (8 -640 616 ) (8 -640 440 ) (8 -928 440 ) (8 -928 616 ) +3 2117 2304 (312 -928 440 ) (312 -928 608 ) (166.909088 -928 524 ) +4 2119 2566 (0 -928 372 ) (0 -928 5542.669922 ) (0 -664 5542.669922 ) (0 -664 372 ) +4 2119 2561 (0 -640 412.799805 ) (0 -640 372 ) (0 -664 372 ) (0 -664 432 ) +4 2119 2560 (0 -640 420.799805 ) (0 -640 412.799805 ) (0 -664 432 ) (0 -664 440 ) +4 2119 2559 (0 -664 5542.669922 ) (0 -640 5542.669922 ) (0 -640 420.799805 ) (0 -664 440 ) +4 2119 2313 (0 -928 5542.669922 ) (0 -928 372 ) (8 -928 372 ) (8 -928 5542.669922 ) +4 2119 2120 (0 -640 372 ) (8 -640 372 ) (8 -664 372 ) (0 -664 372 ) +4 2120 2561 (0 -664 372 ) (0 -640 372 ) (0 -640 368 ) (0 -664 368 ) +4 2120 2145 (0 -664 368 ) (0 -640 368 ) (8 -640 368 ) (8 -664 368 ) +4 2121 2315 (472 -928 336 ) (1024 -928 336 ) (1024 -928 368 ) (472 -928 368 ) +4 2121 2160 (472 -916 336 ) (472 -716 336 ) (510 -716 336 ) (510 -916 336 ) +4 2121 2162 (510 -928 336 ) (472 -928 336 ) (472 -916 336 ) (510 -916 336 ) +4 2121 2152 (1024 -928 336 ) (510 -928 336 ) (510 -832 336 ) (1024 -832 336 ) +4 2121 2151 (510 -832 336 ) (510 -716 336 ) (1024 -716 336 ) (1024 -832 336 ) +4 2121 2149 (472 -672 336 ) (472 -640 336 ) (512 -640 336 ) (512 -672 336 ) +4 2121 2150 (472 -716 336 ) (472 -672 336 ) (512 -672 336 ) (512 -716 336 ) +4 2121 2148 (512 -640 336 ) (1024 -640 336 ) (1024 -716 336 ) (512 -716 336 ) +3 2121 2123 (472 -640 336 ) (472 -664 336 ) (472 -640 355.200012 ) +4 2121 2122 (472 -664 344 ) (472 -664 368 ) (472 -640 368 ) (472 -640 363.200012 ) +4 2121 2124 (472 -664 336 ) (472 -928 336 ) (472 -928 368 ) (472 -664 368 ) +4 2122 2125 (464 -664 344 ) (464 -664 368 ) (464 -640 368 ) (464 -640 363.200012 ) +4 2122 2124 (464 -664 368 ) (464 -664 344 ) (472 -664 344 ) (472 -664 368 ) +4 2123 2149 (464 -664 336 ) (464 -640 336 ) (472 -640 336 ) (472 -664 336 ) +4 2124 2315 (464 -928 336 ) (472 -928 336 ) (472 -928 368 ) (464 -928 368 ) +4 2124 2160 (464 -916 336 ) (464 -716 336 ) (472 -716 336 ) (472 -916 336 ) +4 2124 2162 (472 -928 336 ) (464 -928 336 ) (464 -916 336 ) (472 -916 336 ) +4 2124 2149 (464 -672 336 ) (464 -664 336 ) (472 -664 336 ) (472 -672 336 ) +4 2124 2150 (464 -716 336 ) (464 -672 336 ) (472 -672 336 ) (472 -716 336 ) +4 2124 2141 (464 -920 336 ) (464 -928 336 ) (464 -928 368 ) (464 -920 368 ) +4 2124 2140 (464 -904 336 ) (464 -912 336 ) (464 -912 368 ) (464 -904 368 ) +4 2124 2139 (464 -888 336 ) (464 -896 336 ) (464 -896 368 ) (464 -888 368 ) +4 2124 2138 (464 -872 336 ) (464 -880 336 ) (464 -880 368 ) (464 -872 368 ) +4 2124 2137 (464 -856 336 ) (464 -864 336 ) (464 -864 368 ) (464 -856 368 ) +4 2124 2136 (464 -840 336 ) (464 -848 336 ) (464 -848 368 ) (464 -840 368 ) +4 2124 2135 (464 -824 336 ) (464 -832 336 ) (464 -832 368 ) (464 -824 368 ) +4 2124 2134 (464 -800 336 ) (464 -808 336 ) (464 -808 368 ) (464 -800 368 ) +4 2124 2133 (464 -784 336 ) (464 -792 336 ) (464 -792 368 ) (464 -784 368 ) +4 2124 2132 (464 -768 336 ) (464 -776 336 ) (464 -776 368 ) (464 -768 368 ) +4 2124 2131 (464 -752 336 ) (464 -760 336 ) (464 -760 368 ) (464 -752 368 ) +4 2124 2130 (464 -736 336 ) (464 -744 336 ) (464 -744 368 ) (464 -736 368 ) +4 2124 2129 (464 -720 336 ) (464 -728 336 ) (464 -728 368 ) (464 -720 368 ) +4 2124 2128 (464 -704 336 ) (464 -712 336 ) (464 -712 368 ) (464 -704 368 ) +4 2124 2126 (464 -664 336 ) (464 -668 336 ) (464 -668 368 ) (464 -664 368 ) +4 2125 2142 (432 -664 344 ) (432 -664 368 ) (432 -640 368 ) (432 -640 363.200012 ) +4 2125 2126 (456 -664 344 ) (464 -664 344 ) (464 -664 368 ) (456 -664 368 ) +4 2125 2127 (432 -664 368 ) (432 -664 344 ) (456 -664 344 ) (456 -664 368 ) +4 2126 2170 (456 -664 336 ) (464 -664 336 ) (464 -668 336 ) (456 -668 336 ) +4 2126 2127 (456 -664 368 ) (456 -664 336 ) (456 -668 336 ) (456 -668 368 ) +4 2127 2180 (432 -704 336 ) (432 -664 336 ) (448 -664 336 ) (448 -704 336 ) +4 2127 2171 (448 -664 336 ) (456 -664 336 ) (456 -704 336 ) (448 -704 336 ) +4 2127 2143 (432 -664 336 ) (432 -704 336 ) (432 -704 368 ) (432 -664 368 ) +4 2142 2143 (312 -664 368 ) (312 -664 344 ) (432 -664 344 ) (432 -664 368 ) +4 2142 2144 (312 -664 344 ) (312 -664 368 ) (312 -640 368 ) (312 -640 363.200012 ) +4 2143 2180 (432 -928 336 ) (312 -928 336 ) (312 -664 336 ) (432 -664 336 ) +4 2143 2144 (312 -664 336 ) (312 -928 336 ) (312 -928 368 ) (312 -664 368 ) +4 2144 2349 (32 -928 336 ) (96 -928 336 ) (96 -928 360 ) (32 -928 360 ) +4 2144 2345 (128 -928 336 ) (192 -928 336 ) (192 -928 360 ) (128 -928 360 ) +4 2144 2342 (224 -928 336 ) (288 -928 336 ) (288 -928 360 ) (224 -928 360 ) +4 2144 2247 (160 -844 336 ) (160 -640 336 ) (192 -640 336 ) (192 -844 336 ) +4 2144 2249 (192 -928 336 ) (160 -928 336 ) (160 -844 336 ) (192 -844 336 ) +4 2144 2250 (160 -928 336 ) (8 -928 336 ) (8 -640 336 ) (160 -640 336 ) +4 2144 2180 (312 -928 336 ) (192 -928 336 ) (192 -640 336 ) (312 -640 336 ) +4 2144 2146 (8 -664 336 ) (8 -680 336 ) (8 -680 368 ) (8 -664 368 ) +4 2144 2147 (8 -704 336 ) (8 -928 336 ) (8 -928 368 ) (8 -704 368 ) +4 2144 2145 (8 -664 344 ) (8 -664 368 ) (8 -640 368 ) (8 -640 363.200012 ) +4 2145 2561 (0 -664 368 ) (0 -640 368 ) (0 -640 363.200012 ) (0 -664 344 ) +4 2145 2146 (8 -664 344 ) (8 -664 368 ) (0 -664 368 ) (0 -664 344 ) +4 2146 2589 (0 -680 368 ) (0 -664 368 ) (0 -664 336 ) (0 -680 336 ) +4 2146 2250 (0 -680 336 ) (0 -664 336 ) (8 -664 336 ) (8 -680 336 ) +4 2147 2591 (0 -928 336 ) (0 -928 368 ) (0 -704 368 ) (0 -704 336 ) +4 2147 2250 (8 -928 336 ) (0 -928 336 ) (0 -704 336 ) (8 -704 336 ) +4 2148 2256 (832 -640 64 ) (896 -640 64 ) (896 -716 64 ) (832 -716 64 ) +4 2148 2251 (896 -640 64 ) (1024 -640 64 ) (1024 -716 64 ) (896 -716 64 ) +4 2148 2156 (512 -716 64 ) (896 -716 64 ) (896 -716 256 ) (512 -716 256 ) +4 2148 2155 (896 -716 64 ) (1024 -716 64 ) (1024 -716 256 ) (896 -716 256 ) +4 2148 2151 (1024 -716 256 ) (1024 -716 336 ) (512 -716 336 ) (512 -716 256 ) +4 2148 2149 (512 -672 336 ) (512 -640 336 ) (512 -640 72 ) (512 -672 72 ) +4 2148 2150 (512 -716 64 ) (512 -716 336 ) (512 -672 336 ) (512 -672 64 ) +4 2149 2170 (464 -668 336 ) (464 -640 336 ) (464 -640 72 ) (464 -668 72 ) +4 2149 2150 (464 -672 336 ) (464 -672 72 ) (512 -672 72 ) (512 -672 336 ) +4 2150 2259 (464 -716 64 ) (464 -672 64 ) (480 -672 64 ) (480 -716 64 ) +4 2150 2173 (464 -708 244 ) (464 -716 244 ) (464 -716 332 ) (464 -708 332 ) +4 2150 2165 (464 -716 216 ) (464 -716 192 ) (502 -716 192 ) (502 -716 216 ) +4 2150 2166 (464 -716 192 ) (464 -716 64 ) (502 -716 64 ) (502 -716 192 ) +4 2150 2163 (502 -716 64 ) (510 -716 64 ) (510 -716 216 ) (502 -716 216 ) +4 2150 2160 (464 -716 336 ) (464 -716 320 ) (510 -716 320 ) (510 -716 336 ) +4 2150 2159 (464 -716 320 ) (464 -716 224 ) (510 -716 224 ) (510 -716 320 ) +4 2150 2156 (510 -716 64 ) (512 -716 64 ) (512 -716 256 ) (510 -716 256 ) +4 2150 2151 (512 -716 256 ) (512 -716 336 ) (510 -716 336 ) (510 -716 256 ) +3 2151 2161 (510 -832 266 ) (510 -832 282 ) (510 -816 274 ) +5 2151 2160 (510 -716 336 ) (510 -716 320 ) (510 -812 272 ) (510 -832 282 ) (510 -832 336 ) +4 2151 2159 (510 -716 320 ) (510 -716 256 ) (510 -780 256 ) (510 -812 272 ) +4 2151 2158 (510 -788 256 ) (510 -832 256 ) (510 -832 262 ) (510 -816 270 ) +4 2151 2156 (510 -832 256 ) (510 -716 256 ) (896 -716 256 ) (896 -832 256 ) +4 2151 2155 (896 -716 256 ) (1024 -716 256 ) (1024 -832 256 ) (896 -832 256 ) +4 2151 2154 (510 -832 280 ) (510 -832 256 ) (824 -832 256 ) (832 -832 280 ) +4 2151 2153 (856 -832 256 ) (1024 -832 256 ) (1024 -832 280 ) (848 -832 280 ) +4 2151 2152 (510 -832 336 ) (510 -832 280 ) (1024 -832 280 ) (1024 -832 336 ) +4 2152 2331 (1024 -928 280 ) (1024 -928 336 ) (510 -928 336 ) (510 -928 280 ) +4 2152 2161 (510 -832 282 ) (510 -832 280 ) (510 -916 280 ) (510 -916 324 ) +4 2152 2160 (510 -916 336 ) (510 -832 336 ) (510 -832 282 ) (510 -916 324 ) +4 2152 2162 (510 -928 280 ) (510 -928 336 ) (510 -916 336 ) (510 -916 280 ) +4 2152 2154 (808 -928 280 ) (510 -928 280 ) (510 -832 280 ) (832 -832 280 ) +4 2152 2153 (1024 -928 280 ) (824 -928 280 ) (848 -832 280 ) (1024 -832 280 ) +4 2153 2332 (1024 -928 256 ) (1024 -928 280 ) (824 -928 280 ) (832 -928 256 ) +4 2153 2155 (1024 -928 256 ) (896 -928 256 ) (896 -832 256 ) (1024 -832 256 ) +4 2154 2333 (808 -928 280 ) (510 -928 280 ) (510 -928 256 ) (800 -928 256 ) +5 2154 2161 (510 -852.001648 256 ) (510 -916 256 ) (510 -916 280 ) (510 -832 280 ) (510 -832 266 ) +3 2154 2158 (510 -832 256 ) (510 -844 256 ) (510 -832 262 ) +4 2154 2162 (510 -916 256 ) (510 -928 256 ) (510 -928 280 ) (510 -916 280 ) +4 2154 2157 (800 -928 256 ) (510 -928 256 ) (510 -832 256 ) (824 -832 256 ) +4 2155 2373 (896 -928 64 ) (1024 -928 64 ) (1024 -928 88 ) (896 -928 88 ) +4 2155 2356 (1024 -928 88 ) (1024 -928 216 ) (896 -928 216 ) (896 -928 88 ) +4 2155 2353 (1024 -928 216 ) (1024 -928 240 ) (896 -928 240 ) (896 -928 216 ) +4 2155 2334 (1024 -928 240 ) (1024 -928 256 ) (896 -928 256 ) (896 -928 240 ) +4 2155 2252 (1024 -928 64 ) (896 -928 64 ) (896 -896 64 ) (1024 -896 64 ) +4 2155 2251 (896 -896 64 ) (896 -716 64 ) (1024 -716 64 ) (1024 -896 64 ) +4 2155 2156 (896 -832 256 ) (896 -716 256 ) (896 -716 64 ) (896 -832 64 ) +4 2156 2256 (832 -716 64 ) (896 -716 64 ) (896 -832 64 ) (832 -832 64 ) +3 2156 2164 (510 -716 216 ) (510 -832 158 ) (510 -832 216 ) +4 2156 2163 (510 -716 216 ) (510 -716 64 ) (510 -832 64 ) (510 -832 158 ) +3 2156 2159 (510 -716 256 ) (510 -716 224 ) (510 -780 256 ) +4 2156 2158 (510 -716 220 ) (510 -832 220 ) (510 -832 256 ) (510 -788 256 ) +4 2156 2157 (832 -832 256 ) (510 -832 256 ) (510 -832 64 ) (832 -832 64 ) +4 2157 2374 (510 -928 64 ) (808 -928 64 ) (808 -928 88 ) (510 -928 88 ) +4 2157 2357 (808 -928 88 ) (808 -928 216 ) (510 -928 216 ) (510 -928 88 ) +4 2157 2354 (808 -928 216 ) (808 -928 240 ) (510 -928 240 ) (510 -928 216 ) +4 2157 2335 (808 -928 240 ) (808 -928 256 ) (510 -928 256 ) (510 -928 240 ) +3 2157 2168 (510 -916 216 ) (510 -908 216 ) (510 -908 212 ) +4 2157 2167 (510 -908 64 ) (510 -916 64 ) (510 -916 216 ) (510 -908 212 ) +4 2157 2164 (510 -908 120 ) (510 -908 216 ) (510 -832 216 ) (510 -832 158 ) +4 2157 2163 (510 -832 64 ) (510 -908 64 ) (510 -908 120 ) (510 -832 158 ) +4 2157 2169 (510 -916 64 ) (510 -928 64 ) (510 -928 220 ) (510 -916 220 ) +3 2157 2161 (510 -916 256 ) (510 -852.001648 256 ) (510 -916 224 ) +4 2157 2158 (510 -844 256 ) (510 -832 256 ) (510 -832 220 ) (510 -916 220 ) +4 2157 2162 (510 -928 220 ) (510 -928 256 ) (510 -916 256 ) (510 -916 220 ) +4 2159 2173 (464 -716 320 ) (464 -716 244 ) (464 -756 244 ) (464 -812 272 ) +4 2159 2160 (510 -812 272 ) (510 -716 320 ) (464 -716 320 ) (464 -812 272 ) +5 2160 2173 (464 -716 332 ) (464 -716 320 ) (464 -812 272 ) (464 -916 324 ) (464 -916 332 ) +4 2160 2161 (510 -916 324 ) (464 -916 324 ) (464 -816 274 ) (510 -816 274 ) +4 2160 2162 (464 -916 336 ) (464 -916 324 ) (510 -916 324 ) (510 -916 336 ) +4 2161 2173 (464 -916 244 ) (464 -916 324 ) (464 -816 274 ) (464 -876.001587 244 ) +4 2161 2162 (464 -916 324 ) (464 -916 224 ) (510 -916 224 ) (510 -916 324 ) +4 2162 2354 (510 -928 220 ) (510 -928 240 ) (464 -928 240 ) (464 -928 220 ) +4 2162 2335 (510 -928 240 ) (510 -928 256 ) (464 -928 256 ) (464 -928 240 ) +4 2162 2333 (510 -928 256 ) (510 -928 280 ) (464 -928 280 ) (464 -928 256 ) +4 2162 2331 (510 -928 280 ) (510 -928 336 ) (464 -928 336 ) (464 -928 280 ) +4 2162 2173 (464 -916 332 ) (464 -916 244 ) (464 -924 244 ) (464 -924 332 ) +4 2162 2169 (464 -928 220 ) (464 -916 220 ) (510 -916 220 ) (510 -928 220 ) +4 2163 2167 (510 -908 64 ) (510 -908 120 ) (502 -908 120 ) (502 -908 64 ) +4 2163 2165 (502 -724 212 ) (502 -716 216 ) (502 -716 192 ) (502 -724 192 ) +5 2163 2166 (502 -908 64 ) (502 -908 120 ) (502 -764 192 ) (502 -716 192 ) (502 -716 64 ) +4 2163 2164 (502 -724.003906 212 ) (502 -908 120.001953 ) (510 -908 120.001953 ) (510 -716.003906 216 ) +3 2164 2168 (510 -908 212 ) (510 -908 216 ) (502 -908 212 ) +4 2164 2167 (510 -908 120 ) (510 -908 212 ) (502 -908 212 ) (502 -908 120 ) +3 2164 2166 (502 -908 120 ) (502 -908 192 ) (502 -764 192 ) +4 2165 2166 (464 -716 192 ) (502 -716 192 ) (502 -724 192 ) (464 -724 192 ) +4 2166 2261 (464 -908 64 ) (464 -864 64 ) (480 -864 64 ) (480 -908 64 ) +4 2166 2259 (464 -768 64 ) (464 -716 64 ) (480 -716 64 ) (480 -768 64 ) +4 2166 2179 (464 -764 64 ) (464 -868 64 ) (464 -868 184 ) (464 -764 184 ) +4 2166 2167 (464 -908 192 ) (464 -908 64 ) (502 -908 64 ) (502 -908 192 ) +4 2167 2261 (464 -916 64 ) (464 -908 64 ) (480 -908 64 ) (480 -916 64 ) +3 2167 2168 (510 -908 212 ) (501.998047 -908 212 ) (510 -916 216 ) +4 2167 2169 (510 -916 64 ) (510 -916 216 ) (464 -916 216 ) (464 -916 64 ) +4 2169 2374 (464 -928 64 ) (510 -928 64 ) (510 -928 88 ) (464 -928 88 ) +4 2169 2357 (510 -928 88 ) (510 -928 216 ) (464 -928 216 ) (464 -928 88 ) +4 2169 2354 (510 -928 216 ) (510 -928 220 ) (464 -928 220 ) (464 -928 216 ) +4 2169 2261 (480 -928 64 ) (464 -928 64 ) (464 -916 64 ) (480 -916 64 ) +4 2170 2260 (456 -640 64 ) (464 -640 64 ) (464 -668 64 ) (456 -668 64 ) +4 2170 2172 (456 -640 96 ) (456 -640 64 ) (456 -668 64 ) (456 -668 88.275864 ) +4 2170 2171 (456 -668 336 ) (456 -640 336 ) (456 -640 240 ) (456 -668 240 ) +4 2171 2180 (448 -704 336 ) (448 -640 336 ) (448 -640 256 ) (448 -704 256 ) +4 2171 2175 (448 -704 244 ) (448 -704 240 ) (456 -704 240 ) (456 -704 244 ) +4 2172 2260 (448 -704 64 ) (448 -640 64 ) (456 -640 64 ) (456 -704 64 ) +4 2172 2176 (448 -704 78.344833 ) (448 -704 64 ) (456 -704 64 ) (456 -704 78.344826 ) +4 2174 2180 (448 -924 256 ) (448 -924 332 ) (448 -708 332 ) (448 -708 256 ) +4 2174 2175 (448 -924 244 ) (448 -708 244 ) (456 -708 244 ) (456 -924 244 ) +4 2175 2177 (448 -928 240 ) (448 -756 240 ) (456 -756 240 ) (456 -928 240 ) +4 2176 2260 (448 -756 64 ) (448 -704 64 ) (456 -704 64 ) (456 -756 64 ) +4 2177 2192 (448 -928 216 ) (448 -928 240 ) (448 -844 240 ) (448 -844 216 ) +4 2177 2188 (448 -844 240 ) (448 -814 240 ) (448 -814 216 ) (448 -844 216 ) +4 2177 2184 (448 -814 240 ) (448 -756 240 ) (448 -756 216 ) (448 -814 216 ) +4 2177 2178 (448 -876 216 ) (448 -756 216 ) (456 -756 216 ) (456 -876 216 ) +4 2178 2192 (448 -876 216 ) (448 -844 216 ) (448 -844 192 ) (448 -876 192 ) +4 2178 2188 (448 -844 216 ) (448 -814 216 ) (448 -814 192 ) (448 -844 192 ) +4 2178 2184 (448 -814 216 ) (448 -756 216 ) (448 -756 192 ) (448 -814 192 ) +4 2179 2236 (448 -764 64 ) (448 -868 64 ) (448 -868 80 ) (448 -764 80 ) +4 2179 2232 (448 -868 80 ) (448 -868 96 ) (448 -844 96 ) (448 -844 80 ) +4 2179 2228 (448 -868 96 ) (448 -868 136 ) (448 -844 136 ) (448 -844 96 ) +3 2179 2223 (448 -844 136 ) (448 -841 136 ) (448 -844 133 ) +5 2179 2222 (448 -841 136 ) (448 -818 136 ) (448 -818 80 ) (448 -844 80 ) (448 -844 133 ) +4 2179 2220 (448 -818 136 ) (448 -814 136 ) (448 -814 80 ) (448 -818 80 ) +4 2179 2219 (448 -814 136 ) (448 -764 136 ) (448 -764 80 ) (448 -814 80 ) +4 2179 2192 (448 -868 136 ) (448 -868 184 ) (448 -844 184 ) (448 -844 136 ) +4 2179 2188 (448 -844 184 ) (448 -814 184 ) (448 -814 136 ) (448 -844 136 ) +4 2179 2187 (448 -814 184 ) (448 -764 184 ) (448 -764 136 ) (448 -814 136 ) +4 2180 2342 (288 -928 336 ) (224 -928 336 ) (224 -928 256 ) (288 -928 256 ) +4 2180 2338 (356 -928 312 ) (356 -928 256 ) (420 -928 256 ) (420 -928 312 ) +4 2180 2247 (192 -844 336 ) (192 -640 336 ) (192 -640 256 ) (192 -844 256 ) +4 2180 2249 (192 -928 336 ) (192 -844 336 ) (192 -844 256 ) (192 -928 256 ) +4 2181 2217 (384 -738 136 ) (384 -746 136 ) (200 -746 136 ) (200 -738 136 ) +4 2181 2214 (384 -688 136 ) (384 -738 136 ) (200 -738 136 ) (200 -688 136 ) +4 2181 2212 (384 -664 136 ) (384 -688 136 ) (200 -688 136 ) (200 -664 136 ) +4 2181 2210 (200 -640 136 ) (383 -640 136 ) (383 -664 136 ) (200 -664 136 ) +4 2181 2209 (384 -641 136 ) (384 -664 136 ) (383 -664 136 ) (383 -641 136 ) +4 2181 2207 (392 -641 136 ) (392 -746 136 ) (384 -746 136 ) (384 -641 136 ) +4 2181 2204 (440 -648 136 ) (440 -746 136 ) (392 -746 136 ) (392 -648 136 ) +4 2181 2203 (440 -641 136 ) (440 -642.996094 136 ) (392 -642.996094 136 ) (392 -641 136 ) +4 2181 2202 (440 -642.996094 136 ) (440 -648 136 ) (392 -648 136 ) (392 -642.996094 136 ) +4 2181 2201 (447 -641 136 ) (447 -746 136 ) (440 -746 136 ) (440 -641 136 ) +4 2181 2187 (200 -746 136 ) (448 -746 136 ) (448 -746 184 ) (200 -746 184 ) +4 2181 2184 (448 -746 184 ) (448 -746 240 ) (200 -746 240 ) (200 -746 184 ) +4 2181 2183 (200 -746 192 ) (200 -746 240 ) (200 -738 240 ) (200 -738 192 ) +4 2181 2182 (200 -640 136 ) (200 -738 136 ) (200 -738 240 ) (200 -640 240 ) +4 2182 2214 (193 -688 136 ) (200 -688 136 ) (200 -738 136 ) (193 -738 136 ) +4 2182 2212 (193 -664 136 ) (200 -664 136 ) (200 -688 136 ) (193 -688 136 ) +4 2182 2210 (193 -640 136 ) (200 -640 136 ) (200 -664 136 ) (193 -664 136 ) +4 2182 2183 (200 -738 192 ) (200 -738 240 ) (192 -738 240 ) (192 -738 192 ) +4 2183 2185 (200 -746 192 ) (200 -746 240 ) (192 -746 240 ) (192 -746 192 ) +4 2184 2188 (448 -814 184 ) (448 -814 240 ) (200 -814 240 ) (200 -814 184 ) +4 2184 2187 (448 -814 184 ) (200 -814 184 ) (200 -746 184 ) (448 -746 184 ) +4 2184 2185 (200 -746 240 ) (200 -746 192 ) (200 -810 192 ) (200 -810 240 ) +4 2184 2186 (200 -810 184 ) (200 -814 184 ) (200 -814 240 ) (200 -810 240 ) +4 2185 2186 (200 -810 192 ) (200 -810 240 ) (192 -810 240 ) (192 -810 192 ) +4 2186 2189 (194 -814 240 ) (192 -814 240 ) (192 -814 192 ) (194 -814 192 ) +4 2186 2188 (200 -814 240 ) (194 -814 240 ) (194 -814 184 ) (200 -814 184 ) +4 2186 2187 (200 -814 184 ) (193 -814 184 ) (193 -810 184 ) (200 -810 184 ) +4 2187 2219 (448 -764 136 ) (448 -814 136 ) (193 -814 136 ) (193 -764 136 ) +4 2187 2218 (193 -746 136 ) (384 -746 136 ) (384 -764 136 ) (193 -764 136 ) +4 2187 2207 (384 -746 136 ) (392 -746 136 ) (392 -764 136 ) (384 -764 136 ) +4 2187 2205 (440 -756 136 ) (440 -764 136 ) (392 -764 136 ) (392 -756 136 ) +4 2187 2204 (392 -746 136 ) (440 -746 136 ) (440 -756 136 ) (392 -756 136 ) +4 2187 2201 (440 -746 136 ) (447 -746 136 ) (447 -764 136 ) (440 -764 136 ) +4 2187 2198 (448 -756 136 ) (448 -764 136 ) (447 -764 136 ) (447 -755 136 ) +4 2187 2188 (194 -814 136 ) (448 -814 136 ) (448 -814 184 ) (194 -814 184 ) +4 2188 2225 (242 -844 136 ) (238 -844 136 ) (237 -843 136 ) (241 -843 136 ) +4 2188 2224 (194 -843 136 ) (194 -841 136 ) (239 -841 136 ) (241 -843 136 ) +4 2188 2223 (448 -841 136 ) (448 -844 136 ) (242 -844 136 ) (239 -841 136 ) +4 2188 2222 (448 -818 136 ) (448 -841 136 ) (194 -841 136 ) (194 -818 136 ) +4 2188 2220 (194 -814 136 ) (448 -814 136 ) (448 -818 136 ) (194 -818 136 ) +4 2188 2194 (236 -844 136 ) (272 -844 136 ) (272 -844 240 ) (236 -844 240 ) +4 2188 2193 (272 -844 136 ) (288 -844 136 ) (288 -844 240 ) (272 -844 240 ) +4 2188 2192 (288 -844 136 ) (448 -844 136 ) (448 -844 240 ) (288 -844 240 ) +4 2188 2190 (194 -817 136 ) (194 -818 136 ) (194 -818 192 ) (194 -817 192 ) +4 2188 2189 (194 -814 240 ) (194 -814 192 ) (194 -818 192 ) (194 -818 240 ) +4 2188 2191 (194 -818 136 ) (194 -844 136 ) (194 -844 240 ) (194 -818 240 ) +3 2189 2190 (194 -818 192 ) (193 -818 192 ) (194 -817 192 ) +4 2189 2191 (194 -818 192 ) (194 -818 240 ) (192 -818 240 ) (192 -818 192 ) +3 2190 2221 (194 -817 136 ) (194 -818 136 ) (193 -818 136 ) +4 2190 2191 (193 -818 136 ) (194 -818 136 ) (194 -818 192 ) (193 -818 192 ) +4 2191 2224 (194 -841 136 ) (194 -843 136 ) (193 -843 136 ) (193 -841 136 ) +4 2191 2222 (193 -818 136 ) (194 -818 136 ) (194 -841 136 ) (193 -841 136 ) +4 2192 2359 (356 -928 208 ) (356 -928 136 ) (420 -928 136 ) (420 -928 208 ) +4 2192 2231 (289 -891 136 ) (289 -895 136 ) (288 -894 136 ) (288 -890 136 ) +4 2192 2230 (288 -844 136 ) (289 -844 136 ) (289 -891 136 ) (288 -890 136 ) +4 2192 2228 (289 -844 136 ) (448 -844 136 ) (448 -928 136 ) (289 -928 136 ) +4 2192 2193 (288 -844 240 ) (288 -844 136 ) (288 -896 136 ) (288 -896 240 ) +4 2193 2234 (288 -890 136 ) (288 -894 136 ) (272 -878 136 ) (272 -874 136 ) +4 2193 2233 (272 -844 136 ) (288 -844 136 ) (288 -890 136 ) (272 -874 136 ) +4 2193 2196 (272 -860 136 ) (272 -880 136 ) (272 -880 240 ) (272 -860 240 ) +4 2193 2194 (272 -844 240 ) (272 -844 136 ) (272 -860 136 ) (272 -860 240 ) +4 2194 2234 (238 -844 136 ) (242 -844 136 ) (258 -860 136 ) (254 -860 136 ) +4 2194 2233 (242 -844 136 ) (272 -844 136 ) (272 -860 136 ) (258 -860 136 ) +4 2194 2196 (252 -860 136 ) (272 -860 136 ) (272 -860 240 ) (252 -860 240 ) +4 2195 2363 (224 -928 136 ) (272 -928 136 ) (272 -928 208 ) (224 -928 208 ) +4 2195 2249 (192 -860 136 ) (192 -928 136 ) (192 -928 240 ) (192 -860 240 ) +5 2195 2235 (192 -928 136 ) (192 -860 136 ) (236 -860 136 ) (272 -896 136 ) (272 -928 136 ) +4 2196 2234 (254 -860 136 ) (258 -860 136 ) (272 -874 136 ) (272 -878 136 ) +3 2196 2233 (258 -860 136 ) (272 -860 136 ) (272 -874 136 ) +5 2197 2200 (447 -640 104 ) (447 -641 103.869980 ) (447 -641 134 ) (447 -640.996155 134 ) (447 -640 133.003906 ) +4 2197 2199 (447 -641 134 ) (447 -641 103.871094 ) (448 -641 103.871094 ) (448 -641 133 ) +4 2198 2219 (448 -764 88 ) (448 -764 136 ) (447 -764 136 ) (447 -764 88 ) +4 2198 2201 (447 -755 89.160309 ) (447 -764 88 ) (447 -764 136 ) (447 -755 136 ) +4 2198 2199 (448 -756.002197 89.035049 ) (447 -755.001953 89.164063 ) (447 -755.001953 134 ) (448 -756.002197 133 ) +4 2199 2201 (447 -641 103.869980 ) (447 -755 89.160309 ) (447 -755 134 ) (447 -641 134 ) +4 2200 2202 (440 -640 133.003906 ) (440 -640 104 ) (440 -641 103.870964 ) (440 -641 134.003922 ) +4 2200 2201 (440 -641 134.003922 ) (440 -641 103.867188 ) (447 -641 103.867188 ) (447 -641 134.003922 ) +4 2201 2219 (447 -764 136 ) (440 -764 136 ) (440 -764 88 ) (447 -764 88 ) +4 2201 2205 (440 -764 88 ) (440 -764 136 ) (440 -756 136 ) (440 -756 89.032257 ) +4 2201 2204 (440 -756 136 ) (440 -648 136 ) (440 -648 102.967735 ) (440 -756 89.032257 ) +3 2201 2203 (440 -642.996094 136 ) (440 -641 136 ) (440 -641 134.003922 ) +5 2201 2202 (440 -648 136 ) (440 -642.996094 136 ) (440 -641 134.003922 ) (440 -641 103.870964 ) (440 -648 102.967735 ) +4 2202 2206 (392 -641 134.003906 ) (392 -640 133.003906 ) (392 -640 104 ) (392 -641 103.870995 ) +5 2202 2207 (392 -648 102.968002 ) (392 -648 136 ) (392 -642.996094 136 ) (392 -641 134.003906 ) (392 -641 103.870995 ) +4 2202 2204 (392 -648 136 ) (392 -648 102.968002 ) (440 -648 102.968002 ) (440 -648 136 ) +4 2202 2203 (392 -641 134.007813 ) (392 -642.992188 136 ) (440 -642.992188 136 ) (440 -641 134.007813 ) +3 2203 2207 (392 -642.996094 136 ) (392 -641 136 ) (392 -641 134.003906 ) +4 2204 2207 (392 -756 89.032257 ) (392 -756 136 ) (392 -648 136 ) (392 -648 102.967758 ) +4 2204 2205 (392 -756 136 ) (392 -756 89.032257 ) (440 -756 89.032265 ) (440 -756 136 ) +4 2205 2219 (440 -764 88 ) (440 -764 136 ) (392 -764 136 ) (392 -764 88 ) +4 2205 2207 (392 -764 88 ) (392 -764 136 ) (392 -756 136 ) (392 -756 89.032257 ) +4 2206 2208 (384 -640 133 ) (384 -640 104 ) (384 -641 103.870964 ) (384 -641 133 ) +4 2206 2207 (384 -641 134.003922 ) (384 -641 103.869125 ) (392 -641 103.869125 ) (392 -641 134.003922 ) +4 2207 2219 (392 -764 88 ) (392 -764 136 ) (384 -764 136 ) (384 -764 88 ) +4 2207 2218 (384 -764 88 ) (384 -764 136 ) (384 -746 136 ) (384 -746 90.322578 ) +4 2207 2217 (384 -746 136 ) (384 -738 136 ) (384 -738 91.354836 ) (384 -746 90.322578 ) +4 2207 2214 (384 -738 136 ) (384 -688 136 ) (384 -688 97.806450 ) (384 -738 91.354836 ) +4 2207 2212 (384 -688 136 ) (384 -664 136 ) (384 -664 100.903221 ) (384 -688 97.806450 ) +4 2207 2209 (384 -664 136 ) (384 -641 136 ) (384 -641 103.870964 ) (384 -664 100.903221 ) +4 2208 2210 (383 -640 92 ) (383 -641 92 ) (383 -641 134 ) (383 -640 134 ) +4 2208 2209 (383 -641 134 ) (383 -641 92 ) (384 -641 92 ) (384 -641 133 ) +4 2209 2212 (384 -664 92 ) (384 -664 136 ) (383 -664 136 ) (383 -664 92 ) +4 2209 2210 (383 -641 92 ) (383 -664 92 ) (383 -664 136 ) (383 -641 136 ) +4 2210 2212 (383 -664 136 ) (193 -664 136 ) (193 -664 92 ) (383 -664 92 ) +4 2210 2211 (193 -640 92 ) (193 -664 92 ) (193 -664 134 ) (193 -640 134 ) +4 2211 2213 (192 -664 133 ) (192 -664 92 ) (193 -664 92 ) (193 -664 134 ) +4 2212 2214 (384 -688 88 ) (384 -688 136 ) (193 -688 136 ) (193 -688 88 ) +4 2212 2213 (193 -664 134 ) (193 -664 88 ) (193 -688 88 ) (193 -688 134 ) +4 2213 2215 (192 -688 133 ) (192 -688 88 ) (193 -688 88 ) (193 -688 134 ) +4 2214 2217 (384 -738 84 ) (384 -738 136 ) (200 -738 136 ) (200 -738 84 ) +4 2214 2216 (384 -738 84 ) (193 -738 84 ) (193 -712 84 ) (384 -712 84 ) +4 2214 2215 (193 -688 134 ) (193 -688 84 ) (193 -738 84 ) (193 -738 134 ) +4 2215 2216 (193 -738 84 ) (192 -738 84 ) (192 -712 84 ) (193 -712 84 ) +4 2216 2217 (200 -738 80 ) (384 -738 80 ) (384 -738 84 ) (200 -738 84 ) +4 2217 2218 (200 -746 80 ) (384 -746 80 ) (384 -746 136 ) (200 -746 136 ) +4 2218 2245 (193 -746 80 ) (196 -746 80 ) (196 -764 80 ) (193 -764 80 ) +4 2218 2219 (193 -764 80 ) (384 -764 80 ) (384 -764 136 ) (193 -764 136 ) +4 2219 2245 (193 -764 80 ) (196 -764 80 ) (196 -814 80 ) (193 -814 80 ) +4 2219 2241 (384 -764 80 ) (400 -764 80 ) (400 -814 80 ) (384 -814 80 ) +4 2219 2239 (400 -764 80 ) (416 -764 80 ) (416 -814 80 ) (400 -814 80 ) +4 2219 2237 (416 -764 80 ) (432 -764 80 ) (432 -814 80 ) (416 -814 80 ) +4 2219 2236 (432 -764 80 ) (448 -764 80 ) (448 -814 80 ) (432 -814 80 ) +4 2219 2220 (194 -814 80 ) (448 -814 80 ) (448 -814 136 ) (194 -814 136 ) +4 2220 2245 (194 -814 80 ) (196 -814 80 ) (196 -818 80 ) (194 -818 80 ) +4 2220 2241 (384 -814 80 ) (400 -814 80 ) (400 -818 80 ) (384 -818 80 ) +4 2220 2239 (400 -814 80 ) (416 -814 80 ) (416 -818 80 ) (400 -818 80 ) +4 2220 2237 (416 -814 80 ) (432 -814 80 ) (432 -818 80 ) (416 -818 80 ) +4 2220 2236 (432 -814 80 ) (448 -814 80 ) (448 -818 80 ) (432 -818 80 ) +4 2220 2222 (194 -818 80 ) (448 -818 80 ) (448 -818 136 ) (194 -818 136 ) +4 2220 2221 (194 -817 80 ) (194 -818 80 ) (194 -818 136 ) (194 -817 136 ) +3 2221 2245 (194 -817 80 ) (194 -818 80 ) (193 -818 80 ) +4 2221 2222 (193 -818 80 ) (194 -818 80 ) (194 -818 136 ) (193 -818 136 ) +4 2222 2241 (384 -818 80 ) (400 -818 80 ) (400 -844 80 ) (384 -844 80 ) +4 2222 2239 (400 -818 80 ) (416 -818 80 ) (416 -844 80 ) (400 -844 80 ) +4 2222 2237 (416 -818 80 ) (432 -818 80 ) (432 -844 80 ) (416 -844 80 ) +4 2222 2236 (432 -818 80 ) (448 -818 80 ) (448 -844 80 ) (432 -844 80 ) +4 2222 2233 (236 -844 80 ) (288 -844 80 ) (288 -844 133 ) (236 -844 133 ) +4 2222 2232 (288 -844 80 ) (448 -844 80 ) (448 -844 96 ) (288 -844 96 ) +4 2222 2229 (289 -844 133 ) (288 -844 133 ) (288 -844 96 ) (289 -844 96 ) +4 2222 2228 (448 -844 96 ) (448 -844 133 ) (289 -844 133 ) (289 -844 96 ) +4 2222 2227 (193 -843 80 ) (193 -844 80 ) (193 -844 133 ) (193 -843 134 ) +4 2222 2226 (193 -818 134 ) (193 -818 80 ) (193 -843 80 ) (193 -843 134 ) +4 2222 2224 (193 -841 136 ) (193 -843 134 ) (237 -843 134 ) (239 -841 136 ) +4 2222 2223 (236 -844 133 ) (448 -844 133 ) (448 -841 136 ) (239 -841 136 ) +4 2223 2233 (288 -844 136 ) (242 -844 136 ) (236 -844 133 ) (288 -844 133 ) +4 2223 2230 (289 -844 136 ) (288 -844 136 ) (288 -844 133 ) (289 -844 134 ) +3 2223 2229 (288 -844 133 ) (289 -844 133 ) (289 -844 134 ) +4 2223 2228 (448 -844 133 ) (448 -844 136 ) (289 -844 136 ) (289 -844 133 ) +4 2223 2225 (238 -844 134.001938 ) (241.996094 -844 136 ) (240.996094 -843 136 ) (237 -843 134.001968 ) +3 2223 2224 (238.992188 -840.996094 136 ) (236.988281 -843 133.996094 ) (240.996094 -843 136 ) +4 2224 2225 (237 -843 134 ) (237.007813 -843 134 ) (241.007813 -843 136 ) (237 -843 136 ) +3 2225 2234 (242 -844 136 ) (238 -844 136 ) (238 -844 134 ) +4 2226 2227 (192 -843 80 ) (193 -843 80 ) (193 -843 134 ) (192 -843 133 ) +4 2228 2359 (420 -928 136 ) (356 -928 136 ) (356 -928 96 ) (420 -928 96 ) +4 2228 2232 (289 -844 96 ) (448 -844 96 ) (448 -896 96 ) (289 -896 96 ) +3 2228 2231 (289 -895 134 ) (289 -895 136 ) (289 -891 136 ) +4 2228 2230 (289 -844 136 ) (289 -844 134 ) (289 -895 134 ) (289 -891 136 ) +4 2228 2229 (289 -844 134 ) (289 -844 96 ) (289 -928 96 ) (289 -928 134 ) +4 2229 2233 (288 -844 133 ) (288 -844 96 ) (288 -896 96 ) (288 -896 133 ) +4 2229 2232 (288 -896 96 ) (288 -844 96 ) (289 -844 96 ) (289 -896 96 ) +4 2229 2230 (288 -844 133 ) (288 -896 133 ) (289 -895 134 ) (289 -844 134 ) +4 2230 2233 (288 -844 136 ) (288 -844 133 ) (288 -896 133 ) (288 -890 136 ) +4 2230 2231 (288 -890.003906 136 ) (288 -894 134.001968 ) (289 -895 134.001984 ) (289 -891.003906 136 ) +3 2231 2234 (288 -894 136 ) (288 -890 136 ) (288 -894 134 ) +4 2232 2241 (384 -844 80 ) (400 -844 80 ) (400 -868 80 ) (384 -868 80 ) +4 2232 2239 (400 -844 80 ) (416 -844 80 ) (416 -868 80 ) (400 -868 80 ) +4 2232 2237 (416 -844 80 ) (432 -844 80 ) (432 -868 80 ) (416 -868 80 ) +4 2232 2236 (432 -844 80 ) (448 -844 80 ) (448 -868 80 ) (432 -868 80 ) +4 2232 2233 (288 -844 96 ) (288 -844 80 ) (288 -896 80 ) (288 -896 96 ) +4 2233 2234 (288 -894 134.003860 ) (288 -890.007690 136 ) (241.992279 -844 136 ) (238 -844 134.003845 ) +4 2235 2363 (272 -928 136 ) (224 -928 136 ) (224 -928 96 ) (272 -928 96 ) +4 2235 2249 (192 -860 80 ) (192 -928 80 ) (192 -928 136 ) (192 -860 136 ) +4 2235 2246 (192 -928 80 ) (192 -860 80 ) (196 -860 80 ) (196 -928 80 ) +4 2235 2243 (196 -860 80 ) (236 -860 80 ) (272 -896 80 ) (196 -896 80 ) +4 2235 2244 (272 -896 80 ) (272 -928 80 ) (196 -928 80 ) (196 -896 80 ) +4 2236 2237 (432 -764 80 ) (432 -764 68 ) (432 -868 68 ) (432 -868 80 ) +4 2237 2239 (416 -764 80 ) (416 -764 72 ) (416 -868 72 ) (416 -868 80 ) +4 2238 2276 (432 -928 64 ) (416 -928 64 ) (416 -896 64 ) (432 -896 64 ) +4 2238 2262 (448 -928 64 ) (432 -928 64 ) (432 -896 64 ) (448 -896 64 ) +4 2238 2240 (416 -896 64 ) (416 -928 64 ) (416 -928 80 ) (416 -896 80 ) +4 2239 2241 (400 -764 80 ) (400 -764 76 ) (400 -868 76 ) (400 -868 80 ) +4 2240 2276 (416 -928 64 ) (400 -928 64 ) (400 -896 64 ) (416 -896 64 ) +4 2240 2242 (400 -896 64 ) (400 -928 64 ) (400 -928 80 ) (400 -896 80 ) +4 2242 2276 (400 -928 64 ) (384 -928 64 ) (384 -896 64 ) (400 -896 64 ) +4 2242 2244 (384 -928 80 ) (384 -896 80 ) (384 -896 64 ) (384 -928 64 ) +4 2243 2276 (196 -896 64 ) (196 -844 64 ) (236 -844 64 ) (288 -896 64 ) +4 2243 2246 (196 -844 64 ) (196 -896 64 ) (196 -896 80 ) (196 -844 80 ) +4 2243 2244 (196 -896 80 ) (196 -896 64 ) (288 -896 64 ) (288 -896 80 ) +4 2244 2276 (384 -928 64 ) (196 -928 64 ) (196 -896 64 ) (384 -896 64 ) +4 2244 2246 (196 -896 64 ) (196 -928 64 ) (196 -928 80 ) (196 -896 80 ) +4 2245 2283 (192 -818 64 ) (192 -738 64 ) (196 -738 64 ) (196 -818 64 ) +4 2245 2248 (192 -738 64 ) (192 -818 64 ) (192 -818 80 ) (192 -738 80 ) +4 2246 2283 (196 -928 64 ) (192 -928 64 ) (192 -844 64 ) (196 -844 64 ) +4 2246 2249 (192 -844 64 ) (192 -928 64 ) (192 -928 80 ) (192 -844 80 ) +4 2247 2250 (160 -844 336 ) (160 -640 336 ) (160 -640 256 ) (160 -844 256 ) +4 2247 2249 (160 -844 336 ) (160 -844 256 ) (192 -844 256 ) (192 -844 336 ) +4 2248 2283 (164 -640 64 ) (192 -640 64 ) (192 -844 64 ) (164 -844 64 ) +4 2248 2284 (160 -844 64 ) (160 -640 64 ) (164 -640 64 ) (164 -844 64 ) +4 2248 2249 (160 -844 80 ) (160 -844 64 ) (192 -844 64 ) (192 -844 80 ) +4 2248 2250 (160 -640 80 ) (160 -640 64 ) (160 -844 64 ) (160 -844 80 ) +4 2249 2376 (160 -928 64 ) (192 -928 64 ) (192 -928 88 ) (160 -928 88 ) +4 2249 2367 (192 -928 88 ) (192 -928 96 ) (160 -928 96 ) (160 -928 88 ) +4 2249 2366 (192 -928 96 ) (192 -928 208 ) (160 -928 208 ) (160 -928 96 ) +4 2249 2345 (192 -928 240 ) (192 -928 336 ) (160 -928 336 ) (160 -928 240 ) +4 2249 2283 (192 -928 64 ) (164 -928 64 ) (164 -844 64 ) (192 -844 64 ) +4 2249 2284 (164 -928 64 ) (160 -928 64 ) (160 -844 64 ) (164 -844 64 ) +4 2249 2250 (160 -928 336 ) (160 -844 336 ) (160 -844 64 ) (160 -928 64 ) +4 2250 2610 (0 -928 64 ) (0 -928 216 ) (0 -640 216 ) (0 -640 64 ) +4 2250 2590 (0 -704 336 ) (0 -680 336 ) (0 -680 216 ) (0 -704 216 ) +4 2250 2589 (0 -680 336 ) (0 -664 336 ) (0 -664 216 ) (0 -680 216 ) +4 2250 2591 (0 -928 216 ) (0 -928 336 ) (0 -704 336 ) (0 -704 216 ) +4 2250 2565 (0 -640 240 ) (0 -640 216 ) (0 -664 216 ) (0 -664 240 ) +5 2250 2562 (0 -664 336 ) (0 -640 336 ) (0 -640 255.111084 ) (0 -660.923096 240 ) (0 -664 240 ) +3 2250 2555 (0 -640 255.111084 ) (0 -640 240 ) (0 -660.923096 240 ) +4 2250 2376 (128 -928 64 ) (160 -928 64 ) (160 -928 88 ) (128 -928 88 ) +4 2250 2370 (96 -928 96 ) (96 -928 208 ) (32 -928 208 ) (32 -928 96 ) +4 2250 2367 (128 -928 88 ) (160 -928 88 ) (160 -928 96 ) (128 -928 96 ) +4 2250 2366 (160 -928 96 ) (160 -928 208 ) (128 -928 208 ) (128 -928 96 ) +4 2250 2349 (96 -928 248 ) (96 -928 336 ) (32 -928 336 ) (32 -928 248 ) +4 2250 2345 (128 -928 240 ) (160 -928 240 ) (160 -928 336 ) (128 -928 336 ) +4 2250 2287 (128 -928 64 ) (0 -928 64 ) (0 -640 64 ) (128 -640 64 ) +4 2250 2284 (160 -928 64 ) (128 -928 64 ) (128 -640 64 ) (160 -640 64 ) +4 2251 2265 (896 -896 0 ) (896 -832 0 ) (1024 -832 0 ) (1024 -896 0 ) +4 2251 2264 (896 -832 0 ) (896 0 0 ) (1024 0 0 ) (1024 -832 0 ) +4 2251 2256 (896 -448 0 ) (896 -896 0 ) (896 -896 64 ) (896 -448 64 ) +4 2251 2254 (896 0 0 ) (896 -320 0 ) (896 -320 64 ) (896 0 64 ) +4 2251 2252 (896 -896 64 ) (896 -896 56 ) (1024 -896 56 ) (1024 -896 64 ) +4 2251 2253 (896 -896 32 ) (896 -896 0 ) (1024 -896 0 ) (1024 -896 32 ) +4 2252 2396 (1024 -928 56 ) (1024 -928 64 ) (896 -928 64 ) (896 -928 56 ) +4 2252 2256 (896 -928 56 ) (896 -928 64 ) (896 -896 64 ) (896 -896 56 ) +4 2253 2397 (1024 -928 0 ) (1024 -928 32 ) (896 -928 32 ) (896 -928 0 ) +4 2253 2265 (1024 -928 0 ) (896 -928 0 ) (896 -896 0 ) (1024 -896 0 ) +4 2253 2256 (896 -896 0 ) (896 -928 0 ) (896 -928 32 ) (896 -896 32 ) +4 2254 2266 (544 0 0 ) (761.597107 0 0 ) (665.597778 -320 0 ) (544 -320 0 ) +4 2254 2264 (761.597107 0 0 ) (896 0 0 ) (896 -320 0 ) (665.597778 -320 0 ) +4 2254 2255 (544 0 0 ) (544 -320 0 ) (544 -320 64 ) (544 0 64 ) +4 2255 2266 (512 -448 0 ) (512 0 0 ) (544 0 0 ) (544 -448 0 ) +4 2255 2258 (512 0 0 ) (512 -448 0 ) (512 -448 64 ) (512 0 64 ) +4 2256 2398 (896 -928 64 ) (832 -928 64 ) (832 -928 0 ) (896 -928 0 ) +4 2256 2265 (896 -928 0 ) (832 -928 0 ) (832 -832 0 ) (896 -832 0 ) +4 2256 2264 (832 -832 0 ) (832 -448 0 ) (896 -448 0 ) (896 -832 0 ) +4 2256 2257 (832 -832 0 ) (832 -928 0 ) (832 -928 64 ) (832 -832 64 ) +4 2257 2398 (832 -928 64 ) (808 -928 64 ) (808 -928 0 ) (832 -928 0 ) +3 2257 2265 (832 -928 0 ) (808 -928 0 ) (832 -832 0 ) +4 2258 2266 (480 -672 0 ) (480 0 0 ) (512 0 0 ) (512 -672 0 ) +4 2258 2259 (480 -672 48 ) (480 -672 64 ) (480 0 64 ) (480 0 48 ) +4 2258 2263 (480 0 0 ) (480 -672 0 ) (480 -672 48 ) (480 0 48 ) +4 2259 2260 (464 0 48 ) (464 -764 48 ) (464 -764 64 ) (464 0 64 ) +4 2259 2263 (464 0 48 ) (480 0 48 ) (480 -768 48 ) (464 -768 48 ) +4 2260 2275 (432 -640 64 ) (432 -256 64 ) (432 -256 48 ) (432 -640 48 ) +4 2260 2276 (432 -764 64 ) (432 -640 64 ) (432 -640 48 ) (432 -764 48 ) +4 2260 2273 (432 -256 64 ) (432 -240 64 ) (432 -240 48 ) (432 -256 48 ) +4 2260 2269 (432 -240 64 ) (432 0 64 ) (432 0 48 ) (432 -240 48 ) +4 2260 2263 (432 -764 48 ) (432 0 48 ) (464 0 48 ) (464 -764 48 ) +4 2261 2400 (480 -928 64 ) (464 -928 64 ) (464 -928 48 ) (480 -928 48 ) +4 2261 2262 (464 -868 48 ) (464 -928 48 ) (464 -928 64 ) (464 -868 64 ) +4 2261 2263 (464 -864 48 ) (480 -864 48 ) (480 -928 48 ) (464 -928 48 ) +4 2262 2400 (464 -928 64 ) (448 -928 64 ) (448 -928 48 ) (464 -928 48 ) +4 2262 2276 (432 -928 48 ) (432 -928 64 ) (432 -868 64 ) (432 -868 48 ) +4 2262 2263 (432 -928 48 ) (432 -868 48 ) (464 -868 48 ) (464 -928 48 ) +4 2263 2400 (448 -928 0 ) (480 -928 0 ) (480 -928 48 ) (448 -928 48 ) +4 2263 2275 (432 -640 48 ) (432 -256 48 ) (432 -256 0 ) (432 -640 0 ) +4 2263 2276 (432 -928 0 ) (432 -928 48 ) (432 -640 48 ) (432 -640 0 ) +4 2263 2273 (432 -256 48 ) (432 -240 48 ) (432 -240 0 ) (432 -256 0 ) +4 2263 2269 (432 -240 48 ) (432 0 48 ) (432 0 0 ) (432 -240 0 ) +4 2263 2267 (451.200226 -928 0 ) (432 -928 0 ) (432 -912 0 ) (456 -912 0 ) +4 2263 2266 (432 -912 0 ) (432 0 0 ) (480 0 0 ) (480 -912 0 ) +3 2264 2289 (569.598389 -640 -128 ) (704 -191.991638 -128 ) (704 -640 -128 ) +5 2264 2288 (704 -191.991638 -128 ) (761.597107 0 -128 ) (1024 0 -128 ) (1024 -832 -128 ) (704 -832 -128 ) +4 2264 2266 (761.597656 0 -128 ) (512 -832 -128 ) (511.998688 -832 0 ) (761.597046 0 0 ) +4 2264 2265 (544 -832 -128 ) (1024 -832 -128 ) (1024 -832 0 ) (544 -832 0 ) +4 2265 2420 (515.200256 -928 -128 ) (704 -928 -128 ) (704 -928 -64 ) (515.200195 -928 -64 ) +4 2265 2419 (704 -928 -128 ) (1024 -928 -128 ) (1024 -928 -64 ) (704 -928 -64 ) +4 2265 2417 (1024 -928 -64 ) (1024 -928 -32 ) (515.200195 -928 -32 ) (515.200195 -928 -64 ) +4 2265 2399 (1024 -928 -32 ) (1024 -928 0 ) (515.200195 -928 0 ) (515.200195 -928 -32 ) +4 2265 2288 (1024 -928 -128 ) (704 -928 -128 ) (704 -832 -128 ) (1024 -832 -128 ) +5 2266 2289 (432 -640 -128 ) (432 0 -128 ) (704 0 -128 ) (704 -191.991638 -128 ) (569.598389 -640 -128 ) +3 2266 2288 (704 0 -128 ) (761.597107 0 -128 ) (704 -191.991638 -128 ) +4 2266 2275 (432 -256 -128 ) (432 -640 -128 ) (432 -640 0 ) (432 -256 0 ) +4 2266 2276 (432 -640 -128 ) (432 -912 -128 ) (432 -912 0 ) (432 -640 0 ) +4 2266 2273 (432 -240 -128 ) (432 -256 -128 ) (432 -256 0 ) (432 -240 0 ) +4 2266 2269 (432 0 -128 ) (432 -240 -128 ) (432 -240 0 ) (432 0 0 ) +4 2266 2267 (456 -912 0 ) (432 -912 0 ) (432 -912 -128 ) (456 -912 -128 ) +4 2267 2422 (448 -928 -128 ) (451.200226 -928 -128 ) (451.200226 -928 -64 ) (448 -928 -64 ) +4 2267 2415 (451.200226 -928 -64 ) (451.200226 -928 -32 ) (448 -928 -32 ) (448 -928 -64 ) +4 2267 2403 (451.200226 -928 -32 ) (451.200226 -928 0 ) (448 -928 0 ) (448 -928 -32 ) +4 2267 2276 (432 -912 -128 ) (432 -928 -128 ) (432 -928 0 ) (432 -912 0 ) +3 2267 2268 (456.001953 -912 -128 ) (451.201935 -928 -112 ) (451.201935 -928 -128 ) +4 2268 2423 (451.200226 -928 -128 ) (483.198944 -928 -128 ) (483.198944 -928 -112 ) (451.200226 -928 -112 ) +4 2269 2289 (128 0 -128 ) (432 0 -128 ) (432 -240 -128 ) (128 -240 -128 ) +4 2269 2280 (128 -240 -128 ) (160 -240 -128 ) (160 -240 64 ) (128 -240 64 ) +4 2269 2278 (160 -240 -128 ) (164 -240 -128 ) (164 -240 64 ) (160 -240 64 ) +4 2269 2277 (164 -240 -128 ) (196 -240 -128 ) (196 -240 64 ) (164 -240 64 ) +4 2269 2273 (336 -240 -128 ) (432 -240 -128 ) (432 -240 64 ) (336 -240 64 ) +4 2269 2274 (196 -240 -128 ) (240 -240 -128 ) (240 -240 64 ) (196 -240 64 ) +4 2269 2271 (128 -224 -128 ) (128 -236 -128 ) (128 -236 0 ) (128 -224 0 ) +4 2269 2270 (128 0 -128 ) (128 -224 -128 ) (128 -224 64 ) (128 0 64 ) +4 2269 2272 (128 -236 -128 ) (128 -240 -128 ) (128 -240 64 ) (128 -236 64 ) +4 2270 2592 (0 -224 64 ) (0 0 64 ) (0 0 0 ) (0 -224 0 ) +4 2270 2289 (0 -224 -128 ) (0 0 -128 ) (128 0 -128 ) (128 -224 -128 ) +4 2270 2271 (0 -224 -128 ) (128 -224 -128 ) (128 -224 0 ) (0 -224 0 ) +4 2271 2289 (0 -236 -128 ) (0 -224 -128 ) (128 -224 -128 ) (128 -236 -128 ) +4 2271 2272 (0 -236 -128 ) (128 -236 -128 ) (128 -236 0 ) (0 -236 0 ) +4 2272 2593 (0 -240 64 ) (0 -236 64 ) (0 -236 0 ) (0 -240 0 ) +4 2272 2289 (0 -240 -128 ) (0 -236 -128 ) (128 -236 -128 ) (128 -240 -128 ) +4 2272 2282 (0 -240 -128 ) (32 -240 -128 ) (32 -240 0 ) (0 -240 0 ) +4 2272 2281 (32 -240 -128 ) (64 -240 -128 ) (64 -240 0 ) (32 -240 0 ) +4 2272 2280 (64 -240 -128 ) (128 -240 -128 ) (128 -240 64 ) (64 -240 64 ) +4 2273 2289 (336 -240 -128 ) (432 -240 -128 ) (432 -256 -128 ) (336 -256 -128 ) +4 2273 2275 (384 -256 -128 ) (432 -256 -128 ) (432 -256 64 ) (384 -256 64 ) +4 2274 2289 (196 -256 -128 ) (196 -240 -128 ) (240 -240 -128 ) (240 -256 -128 ) +4 2274 2277 (196 -240 64 ) (196 -240 -128 ) (196 -256 -128 ) (196 -256 64 ) +4 2275 2289 (384 -256 -128 ) (432 -256 -128 ) (432 -640 -128 ) (384 -640 -128 ) +4 2275 2276 (384 -640 -128 ) (432 -640 -128 ) (432 -640 64 ) (384 -640 64 ) +4 2276 2283 (196 -640 -128 ) (196 -928 -128 ) (196 -928 64 ) (196 -640 64 ) +4 2277 2289 (164 -240 -128 ) (196 -240 -128 ) (196 -256 -128 ) (164 -256 -128 ) +4 2277 2278 (164 -240 64 ) (164 -240 -128 ) (164 -256 -128 ) (164 -256 64 ) +4 2278 2289 (160 -240 -128 ) (164 -240 -128 ) (164 -256 -128 ) (160 -256 -128 ) +4 2278 2280 (160 -240 64 ) (160 -240 -128 ) (160 -256 -128 ) (160 -256 64 ) +4 2279 2289 (164 -272 -128 ) (164 -528 -128 ) (160 -528 -128 ) (160 -272 -128 ) +4 2279 2284 (160 -528 -128 ) (164 -528 -128 ) (164 -528 64 ) (160 -528 64 ) +4 2279 2280 (160 -272 -128 ) (160 -528 -128 ) (160 -528 64 ) (160 -272 64 ) +4 2280 2289 (64 -240 -128 ) (160 -240 -128 ) (160 -528 -128 ) (64 -528 -128 ) +4 2280 2285 (64 -528 -128 ) (128 -528 -128 ) (128 -528 64 ) (64 -528 64 ) +4 2280 2284 (128 -528 -128 ) (160 -528 -128 ) (160 -528 64 ) (128 -528 64 ) +4 2280 2281 (64 -240 0 ) (64 -240 -128 ) (64 -528 -128 ) (64 -528 0 ) +4 2281 2289 (32 -240 -128 ) (64 -240 -128 ) (64 -528 -128 ) (32 -528 -128 ) +4 2281 2285 (32 -528 -128 ) (64 -528 -128 ) (64 -528 0 ) (32 -528 0 ) +4 2281 2282 (32 -240 0 ) (32 -240 -128 ) (32 -528 -128 ) (32 -528 0 ) +4 2282 2289 (0 -528 -128 ) (0 -240 -128 ) (32 -240 -128 ) (32 -528 -128 ) +4 2282 2285 (0 -528 -128 ) (32 -528 -128 ) (32 -528 0 ) (0 -528 0 ) +4 2283 2289 (164 -640 -128 ) (164 -636 -128 ) (196 -636 -128 ) (196 -640 -128 ) +4 2283 2284 (164 -636 -128 ) (164 -928 -128 ) (164 -928 64 ) (164 -636 64 ) +4 2284 2289 (128 -640 -128 ) (128 -528 -128 ) (164 -528 -128 ) (164 -640 -128 ) +4 2284 2286 (128 -532 -128 ) (128 -544 -128 ) (128 -544 0 ) (128 -532 0 ) +4 2284 2285 (128 -528 64 ) (128 -528 -128 ) (128 -532 -128 ) (128 -532 64 ) +4 2284 2287 (128 -544 -128 ) (128 -928 -128 ) (128 -928 64 ) (128 -544 64 ) +4 2285 2605 (0 -528 48 ) (0 -528 0 ) (0 -532 0 ) (0 -532 48 ) +4 2285 2601 (0 -528 56 ) (0 -528 48 ) (0 -532 48 ) (0 -532 56 ) +4 2285 2599 (0 -532 64 ) (0 -528 64 ) (0 -528 56 ) (0 -532 56 ) +4 2285 2289 (0 -532 -128 ) (0 -528 -128 ) (128 -528 -128 ) (128 -532 -128 ) +4 2285 2286 (0 -532 -128 ) (128 -532 -128 ) (128 -532 0 ) (0 -532 0 ) +4 2286 2289 (0 -544 -128 ) (0 -532 -128 ) (128 -532 -128 ) (128 -544 -128 ) +4 2286 2287 (0 -544 -128 ) (128 -544 -128 ) (128 -544 0 ) (0 -544 0 ) +4 2287 2610 (0 -928 0 ) (0 -928 64 ) (0 -544 64 ) (0 -544 0 ) +4 2287 2289 (0 -640 -128 ) (0 -544 -128 ) (128 -544 -128 ) (128 -640 -128 ) +4 2288 2426 (704 -928 -192 ) (1024 -928 -192 ) (1024 -928 -128 ) (704 -928 -128 ) +4 2288 2290 (1024 -928 -192 ) (704 -928 -192 ) (704 0 -192 ) (1024 0 -192 ) +4 2288 2289 (704 0 -192 ) (704 -640 -192 ) (704 -640 -128 ) (704 0 -128 ) +4 2289 2654 (0 -640 -128 ) (0 0 -128 ) (0 0 -192 ) (0 -640 -192 ) +4 2289 2290 (0 -640 -192 ) (0 0 -192 ) (704 0 -192 ) (704 -640 -192 ) +4 2290 2654 (0 -928 -1284 ) (0 -928 -192 ) (0 0 -192 ) (0 0 -1284 ) +4 2290 2428 (0 -928 -192 ) (0 -928 -1284 ) (1024 -928 -1284 ) (1024 -928 -192 ) +4 2291 3161 (640 -1024 5542.669922 ) (440 -1024 5542.669922 ) (440 -1024 372 ) (640 -1024 372 ) +3 2291 3133 (697.604187 -1024 372 ) (704 -1024 372 ) (704 -1024 383.992157 ) +5 2291 3132 (640 -1024 1943.995605 ) (640 -1024 372 ) (697.604187 -1024 372 ) (704 -1024 383.992157 ) (704 -1024 1943.996094 ) +4 2291 3131 (704 -1024 5542.669922 ) (640 -1024 5542.669922 ) (640 -1024 1943.995605 ) (704 -1024 1943.996094 ) +3 2291 3066 (704 -1024 863.992676 ) (704 -1024 372 ) (966.396179 -1024 372 ) +5 2291 3065 (1024 -1024 372 ) (1024 -1024 5542.669922 ) (704 -1024 5542.669922 ) (704 -1024 863.992676 ) (966.396179 -1024 372 ) +4 2291 2301 (468 -1024 372 ) (440 -1024 372 ) (440 -968 372 ) (468 -968 372 ) +4 2291 2300 (1024 -1024 372 ) (468 -1024 372 ) (468 -928 372 ) (1024 -928 372 ) +4 2291 2295 (440 -928 372 ) (440 -931.142944 372 ) (440 -931.142944 377.666992 ) (440 -928 377.666992 ) +4 2291 2294 (440 -940 377.666992 ) (440 -940 377.669922 ) (440 -928 383.701660 ) (440 -928 377.666992 ) +4 2291 2292 (440 -940 377.669922 ) (440 -940 5542.669922 ) (440 -928 5542.669922 ) (440 -928 383.701660 ) +4 2291 2299 (440 -940 372 ) (440 -1024 372 ) (440 -1024 5542.669922 ) (440 -940 5542.669922 ) +4 2292 2304 (312 -928 608 ) (312 -928 440 ) (312 -940 440 ) (312 -940 608 ) +4 2292 2302 (312 -928 5542.669922 ) (312 -928 608 ) (312 -940 608 ) (312 -940 5542.669922 ) +4 2292 2296 (436 -940 377.668945 ) (332 -940 377.668945 ) (337.419342 -928 383.700867 ) (430.580658 -928 383.700684 ) +4 2292 2294 (440 -940 377.668945 ) (439.998199 -940 377.668945 ) (434.579651 -928 383.700684 ) (440 -928 383.700684 ) +4 2292 2293 (328 -940 377.668945 ) (312 -940 377.668945 ) (312 -928 383.700897 ) (333.419922 -928 383.700867 ) +4 2292 2299 (440 -940 377.669922 ) (440 -940 5542.669922 ) (312 -940 5542.669922 ) (312 -940 377.669922 ) +3 2293 2297 (328 -931.142944 377.667938 ) (328 -928 377.667908 ) (329.419403 -928 379.247803 ) +4 2293 2298 (328 -940 377.667969 ) (322.907898 -940 372 ) (322.907898 -928 372 ) (328 -928 377.667908 ) +4 2293 2299 (312 -940 372 ) (322.907867 -940 372 ) (328.001740 -940 377.669922 ) (312 -940 377.669922 ) +3 2294 2295 (440 -928 377.667969 ) (440 -931.142944 377.667969 ) (438.580627 -928 379.246765 ) +4 2296 2299 (332 -940 372 ) (436 -940 372 ) (436 -940 377.669922 ) (332 -940 377.669922 ) +4 2297 2298 (328 -928 372.005890 ) (328 -931.142944 372.005890 ) (328 -931.142944 377.667969 ) (328 -928 377.667969 ) +3 2298 2299 (322.907867 -940 372 ) (328 -940 372 ) (328 -940 377.667999 ) +4 2299 3161 (440 -1024 5542.669922 ) (312 -1024 5542.669922 ) (312 -1024 372 ) (440 -1024 372 ) +4 2299 2312 (312 -968 372 ) (312 -1024 372 ) (312 -1024 416 ) (312 -968 416 ) +3 2299 2309 (312 -965.523987 416 ) (312 -976 416 ) (312 -976 420 ) +4 2299 2310 (312 -1024 416 ) (312 -1024 424 ) (312 -976 424 ) (312 -976 416 ) +4 2299 2305 (312 -976 424 ) (312 -984 424 ) (312 -984 432 ) (312 -976 432 ) +4 2299 2304 (312 -940 608 ) (312 -940 440 ) (312 -984 440 ) (312 -984 608 ) +4 2299 2302 (312 -984 5542.669922 ) (312 -940 5542.669922 ) (312 -940 608 ) (312 -984 608 ) +4 2299 2308 (312 -1024 424 ) (312 -1024 5542.669922 ) (312 -984 5542.669922 ) (312 -984 424 ) +4 2299 2301 (440 -1024 372 ) (312 -1024 372 ) (312 -968 372 ) (440 -968 372 ) +4 2300 3161 (640 -1024 372 ) (468 -1024 372 ) (468 -1024 368 ) (640 -1024 368 ) +4 2300 3133 (704 -1024 372 ) (697.604187 -1024 372 ) (695.470825 -1024 368 ) (704 -1024 368 ) +4 2300 3132 (697.604187 -1024 372 ) (640 -1024 372 ) (640 -1024 368 ) (695.470825 -1024 368 ) +4 2300 3066 (966.396179 -1024 372 ) (704 -1024 372 ) (704 -1024 368 ) (968.529480 -1024 368 ) +4 2300 3065 (1024 -1024 368 ) (1024 -1024 372 ) (966.396179 -1024 372 ) (968.529480 -1024 368 ) +4 2300 2315 (1024 -1024 368 ) (468 -1024 368 ) (468 -928 368 ) (1024 -928 368 ) +4 2300 2301 (468 -968 368 ) (468 -1024 368 ) (468 -1024 372 ) (468 -968 372 ) +4 2301 3161 (468 -1024 372 ) (312 -1024 372 ) (312 -1024 368 ) (468 -1024 368 ) +4 2301 2352 (328 -1024 368 ) (312 -1024 368 ) (312 -968 368 ) (328 -968 368 ) +4 2301 2330 (336 -1024 368 ) (328 -1024 368 ) (328 -968 368 ) (336 -968 368 ) +4 2301 2329 (344 -1024 368 ) (336 -1024 368 ) (336 -968 368 ) (344 -968 368 ) +4 2301 2328 (352 -1024 368 ) (344 -1024 368 ) (344 -968 368 ) (352 -968 368 ) +4 2301 2327 (360 -1024 368 ) (352 -1024 368 ) (352 -968 368 ) (360 -968 368 ) +4 2301 2326 (368 -1024 368 ) (360 -1024 368 ) (360 -968 368 ) (368 -968 368 ) +4 2301 2325 (376 -1024 368 ) (368 -1024 368 ) (368 -968 368 ) (376 -968 368 ) +4 2301 2324 (384 -1024 368 ) (376 -1024 368 ) (376 -968 368 ) (384 -968 368 ) +4 2301 2323 (392 -1024 368 ) (384 -1024 368 ) (384 -968 368 ) (392 -968 368 ) +4 2301 2322 (400 -1024 368 ) (392 -1024 368 ) (392 -968 368 ) (400 -968 368 ) +4 2301 2321 (408 -1024 368 ) (400 -1024 368 ) (400 -968 368 ) (408 -968 368 ) +4 2301 2320 (416 -1024 368 ) (408 -1024 368 ) (408 -968 368 ) (416 -968 368 ) +4 2301 2319 (424 -1024 368 ) (416 -1024 368 ) (416 -968 368 ) (424 -968 368 ) +4 2301 2318 (432 -1024 368 ) (424 -1024 368 ) (424 -968 368 ) (432 -968 368 ) +4 2301 2317 (448 -1024 368 ) (432 -1024 368 ) (432 -968 368 ) (448 -968 368 ) +4 2301 2316 (464 -1024 368 ) (448 -1024 368 ) (448 -968 368 ) (464 -968 368 ) +4 2301 2315 (468 -1024 368 ) (464 -1024 368 ) (464 -968 368 ) (468 -968 368 ) +4 2301 2312 (312 -968 368 ) (312 -1024 368 ) (312 -1024 372 ) (312 -968 372 ) +4 2302 2313 (8 -928 5542.669922 ) (8 -928 616 ) (8 -984 616 ) (8 -984 5542.669922 ) +4 2302 2304 (312 -984 608 ) (166.909943 -984 524 ) (166.909943 -928 524 ) (312 -928 608 ) +4 2302 2303 (160 -984 528 ) (8 -984 616 ) (8 -928 616 ) (160 -928 528 ) +5 2302 2308 (312 -984 608 ) (312 -984 5542.669922 ) (8 -984 5542.669922 ) (8 -984 616 ) (166.909088 -984 524 ) +4 2303 2313 (8 -928 616 ) (8 -928 440 ) (8 -984 440 ) (8 -984 616 ) +3 2303 2308 (8 -984 616 ) (8 -984 440 ) (160 -984 528 ) +3 2304 2308 (312 -984 440 ) (312 -984 608 ) (166.909058 -984 524 ) +4 2305 2307 (311.996094 -984 424 ) (160 -984 512 ) (160 -976 512 ) (311.996094 -976 424 ) +4 2305 2306 (160 -984 512 ) (153.089844 -984 516 ) (153.089844 -976 516 ) (160 -976 512 ) +4 2305 2308 (312 -984 424 ) (312 -984 432 ) (160 -984 520 ) (153.090881 -984 516 ) +4 2306 2313 (8 -976 424 ) (8 -984 424 ) (8 -984 432 ) (8 -976 432 ) +4 2306 2307 (160.001984 -976 512.001953 ) (160.001984 -984 512.001953 ) (8 -984 424 ) (8 -976 424 ) +4 2306 2308 (8 -984 424 ) (160 -984 512 ) (153.090881 -984 516 ) (8 -984 432 ) +4 2307 2310 (8 -984 424 ) (8 -976 424 ) (312 -976 424 ) (312 -984 424 ) +3 2307 2308 (8 -984 424 ) (312 -984 424 ) (160 -984 512 ) +4 2308 3161 (8 -1024 5542.669922 ) (8 -1024 424 ) (312 -1024 424 ) (312 -1024 5542.669922 ) +4 2308 2313 (8 -984 424 ) (8 -1024 424 ) (8 -1024 5542.669922 ) (8 -984 5542.669922 ) +4 2308 2310 (8 -1024 424 ) (8 -984 424 ) (312 -984 424 ) (312 -1024 424 ) +3 2309 2313 (8 -965.523987 416 ) (8 -976 416 ) (8 -976 420 ) +4 2309 2312 (8 -976 416 ) (8 -968 416 ) (312 -968 416 ) (312 -976 416 ) +4 2309 2310 (8 -976 416 ) (312 -976 416 ) (312 -976 420 ) (8 -976 420 ) +4 2310 3161 (8 -1024 424 ) (8 -1024 416 ) (312 -1024 416 ) (312 -1024 424 ) +4 2310 2313 (8 -976 416 ) (8 -1024 416 ) (8 -1024 424 ) (8 -976 424 ) +4 2310 2312 (8 -1024 416 ) (8 -976 416 ) (312 -976 416 ) (312 -1024 416 ) +4 2311 2352 (8 -968 368 ) (8 -964 368 ) (312 -964 368 ) (312 -968 368 ) +4 2311 2312 (312 -968 368 ) (312 -968 372 ) (8 -968 372 ) (8 -968 368 ) +4 2312 3161 (8 -1024 416 ) (8 -1024 368 ) (312 -1024 368 ) (312 -1024 416 ) +4 2312 2352 (312 -1024 368 ) (8 -1024 368 ) (8 -968 368 ) (312 -968 368 ) +4 2312 2314 (8 -968 368 ) (8 -1024 368 ) (8 -1024 372 ) (8 -968 372 ) +4 2312 2313 (8 -1024 372 ) (8 -1024 416 ) (8 -968 416 ) (8 -968 372 ) +4 2313 3161 (0 -1024 5542.669922 ) (0 -1024 372 ) (8 -1024 372 ) (8 -1024 5542.669922 ) +4 2313 2612 (0 -928 511.239746 ) (0 -928 372 ) (0 -968 372 ) (0 -968 511.239868 ) +4 2313 2611 (0 -968 5542.669922 ) (0 -928 5542.669922 ) (0 -928 511.239746 ) (0 -968 511.239868 ) +4 2313 2623 (0 -1024 372 ) (0 -1024 5542.669922 ) (0 -968 5542.669922 ) (0 -968 372 ) +4 2313 2314 (8 -968 372 ) (8 -1024 372 ) (0 -1024 372 ) (0 -968 372 ) +4 2314 3161 (0 -1024 372 ) (0 -1024 368 ) (8 -1024 368 ) (8 -1024 372 ) +4 2314 2623 (0 -1024 368 ) (0 -1024 372 ) (0 -968 372 ) (0 -968 368 ) +4 2314 2352 (8 -1024 368 ) (0 -1024 368 ) (0 -968 368 ) (8 -968 368 ) +4 2315 3161 (640 -1024 368 ) (464 -1024 368 ) (464 -1024 336 ) (640 -1024 336 ) +4 2315 3133 (704 -1024 368 ) (695.470825 -1024 368 ) (678.404175 -1024 336 ) (704 -1024 336 ) +4 2315 3132 (695.470825 -1024 368 ) (640 -1024 368 ) (640 -1024 336 ) (678.404175 -1024 336 ) +4 2315 3066 (968.529480 -1024 368 ) (704 -1024 368 ) (704 -1024 336 ) (985.596130 -1024 336 ) +4 2315 3065 (1024 -1024 336 ) (1024 -1024 368 ) (968.529480 -1024 368 ) (985.596130 -1024 336 ) +4 2315 2331 (1024 -1024 336 ) (464 -1024 336 ) (464 -928 336 ) (1024 -928 336 ) +4 2315 2316 (464 -964 336 ) (464 -1024 336 ) (464 -1024 368 ) (464 -964 368 ) +4 2316 3161 (464 -1024 368 ) (448 -1024 368 ) (448 -1024 336 ) (464 -1024 336 ) +4 2316 2336 (464 -1024 336 ) (448 -1024 336 ) (448 -964 336 ) (464 -964 336 ) +4 2316 2317 (448 -964 336 ) (448 -1024 336 ) (448 -1024 368 ) (448 -964 368 ) +4 2317 3161 (448 -1024 368 ) (432 -1024 368 ) (432 -1024 336 ) (448 -1024 336 ) +4 2317 2337 (448 -1024 336 ) (432 -1024 336 ) (432 -964 336 ) (448 -964 336 ) +4 2317 2318 (432 -964 336 ) (432 -1024 336 ) (432 -1024 368 ) (432 -964 368 ) +4 2318 3161 (432 -1024 368 ) (424 -1024 368 ) (424 -1024 336 ) (432 -1024 336 ) +4 2318 2337 (432 -1024 336 ) (424 -1024 336 ) (424 -964 336 ) (432 -964 336 ) +4 2318 2319 (424 -960 336 ) (424 -1024 336 ) (424 -1024 368 ) (424 -960 368 ) +4 2319 3161 (424 -1024 368 ) (416 -1024 368 ) (416 -1024 336 ) (424 -1024 336 ) +4 2319 2337 (424 -1024 336 ) (416 -1024 336 ) (416 -964 336 ) (424 -964 336 ) +4 2319 2320 (416 -960 336 ) (416 -1024 336 ) (416 -1024 368 ) (416 -960 368 ) +4 2320 3161 (416 -1024 368 ) (408 -1024 368 ) (408 -1024 336 ) (416 -1024 336 ) +4 2320 2337 (416 -1024 336 ) (408 -1024 336 ) (408 -964 336 ) (416 -964 336 ) +4 2320 2321 (408 -960 336 ) (408 -1024 336 ) (408 -1024 368 ) (408 -960 368 ) +4 2321 3161 (408 -1024 368 ) (400 -1024 368 ) (400 -1024 336 ) (408 -1024 336 ) +4 2321 2337 (408 -1024 336 ) (400 -1024 336 ) (400 -964 336 ) (408 -964 336 ) +4 2321 2322 (400 -960 336 ) (400 -1024 336 ) (400 -1024 368 ) (400 -960 368 ) +4 2322 3161 (400 -1024 368 ) (392 -1024 368 ) (392 -1024 336 ) (400 -1024 336 ) +4 2322 2337 (400 -1024 336 ) (392 -1024 336 ) (392 -964 336 ) (400 -964 336 ) +4 2322 2323 (392 -960 336 ) (392 -1024 336 ) (392 -1024 368 ) (392 -960 368 ) +4 2323 3161 (392 -1024 368 ) (384 -1024 368 ) (384 -1024 336 ) (392 -1024 336 ) +4 2323 2337 (392 -1024 336 ) (384 -1024 336 ) (384 -964 336 ) (392 -964 336 ) +4 2323 2324 (384 -960 336 ) (384 -1024 336 ) (384 -1024 368 ) (384 -960 368 ) +4 2324 3161 (384 -1024 368 ) (376 -1024 368 ) (376 -1024 336 ) (384 -1024 336 ) +4 2324 2337 (384 -1024 336 ) (376 -1024 336 ) (376 -964 336 ) (384 -964 336 ) +4 2324 2325 (376 -960 336 ) (376 -1024 336 ) (376 -1024 368 ) (376 -960 368 ) +4 2325 3161 (376 -1024 368 ) (368 -1024 368 ) (368 -1024 336 ) (376 -1024 336 ) +4 2325 2337 (376 -1024 336 ) (368 -1024 336 ) (368 -964 336 ) (376 -964 336 ) +4 2325 2326 (368 -960 336 ) (368 -1024 336 ) (368 -1024 368 ) (368 -960 368 ) +4 2326 3161 (368 -1024 368 ) (360 -1024 368 ) (360 -1024 336 ) (368 -1024 336 ) +4 2326 2337 (368 -1024 336 ) (360 -1024 336 ) (360 -964 336 ) (368 -964 336 ) +4 2326 2327 (360 -960 336 ) (360 -1024 336 ) (360 -1024 368 ) (360 -960 368 ) +4 2327 3161 (360 -1024 368 ) (352 -1024 368 ) (352 -1024 336 ) (360 -1024 336 ) +4 2327 2337 (360 -1024 336 ) (352 -1024 336 ) (352 -964 336 ) (360 -964 336 ) +4 2327 2328 (352 -960 336 ) (352 -1024 336 ) (352 -1024 368 ) (352 -960 368 ) +4 2328 3161 (352 -1024 368 ) (344 -1024 368 ) (344 -1024 336 ) (352 -1024 336 ) +4 2328 2337 (352 -1024 336 ) (344 -1024 336 ) (344 -964 336 ) (352 -964 336 ) +4 2328 2329 (344 -960 336 ) (344 -1024 336 ) (344 -1024 368 ) (344 -960 368 ) +4 2329 3161 (344 -1024 368 ) (336 -1024 368 ) (336 -1024 336 ) (344 -1024 336 ) +4 2329 2337 (344 -1024 336 ) (336 -1024 336 ) (336 -964 336 ) (344 -964 336 ) +4 2329 2330 (336 -960 336 ) (336 -1024 336 ) (336 -1024 368 ) (336 -960 368 ) +4 2330 3161 (336 -1024 368 ) (328 -1024 368 ) (328 -1024 336 ) (336 -1024 336 ) +4 2330 2352 (328 -1024 336 ) (328 -1024 368 ) (328 -964 368 ) (328 -964 336 ) +4 2330 2337 (336 -1024 336 ) (328 -1024 336 ) (328 -964 336 ) (336 -964 336 ) +4 2331 3161 (640 -1024 336 ) (464 -1024 336 ) (464 -1024 280 ) (640 -1024 280 ) +4 2331 3133 (704 -1024 336 ) (678.404175 -1024 336 ) (648.537476 -1024 280 ) (704 -1024 280 ) +4 2331 3132 (678.404175 -1024 336 ) (640 -1024 336 ) (640 -1024 280 ) (648.537476 -1024 280 ) +4 2331 3066 (985.596130 -1024 336 ) (704 -1024 336 ) (704 -1024 280 ) (1015.462769 -1024 280 ) +4 2331 3065 (1024 -1024 280 ) (1024 -1024 336 ) (985.596130 -1024 336 ) (1015.462769 -1024 280 ) +4 2331 2336 (464 -1024 280 ) (464 -1024 336 ) (464 -964 336 ) (464 -964 280 ) +4 2331 2333 (784 -1024 280 ) (464 -1024 280 ) (464 -928 280 ) (808 -928 280 ) +4 2331 2332 (1024 -1024 280 ) (800 -1024 280 ) (824 -928 280 ) (1024 -928 280 ) +4 2332 3082 (816.969727 -1024 264 ) (805.333313 -1024 264 ) (808 -1024 256 ) (819.636475 -1024 256 ) +4 2332 3081 (1024 -1024 256 ) (1024 -1024 264 ) (816.969727 -1024 264 ) (819.636475 -1024 256 ) +4 2332 3071 (811.636475 -1024 280 ) (800 -1024 280 ) (805.333313 -1024 264 ) (816.969788 -1024 264 ) +4 2332 3070 (1015.462769 -1024 280 ) (811.636475 -1024 280 ) (816.969788 -1024 264 ) (1023.996094 -1024 264 ) +4 2332 3065 (1024 -1024 264 ) (1024 -1024 280 ) (1015.462769 -1024 280 ) (1023.996094 -1024 264 ) +4 2332 2334 (896 -928 256 ) (1024 -928 256 ) (1024 -1024 256 ) (896 -1024 256 ) +4 2333 3166 (464 -1024 264 ) (464 -1024 256 ) (576 -1024 256 ) (576 -1024 264 ) +4 2333 3162 (576 -1024 256 ) (640 -1024 256 ) (640 -1024 264 ) (576 -1024 264 ) +4 2333 3161 (640 -1024 280 ) (464 -1024 280 ) (464 -1024 264 ) (640 -1024 264 ) +4 2333 3142 (640 -1024 264 ) (640 -1024 256 ) (656 -1024 256 ) (656 -1024 264 ) +4 2333 3137 (656 -1024 256 ) (704 -1024 256 ) (704 -1024 264 ) (656 -1024 264 ) +4 2333 3134 (704 -1024 280 ) (648.537476 -1024 280 ) (640.004150 -1024 264 ) (704 -1024 264 ) +4 2333 3132 (648.537476 -1024 280 ) (640 -1024 280 ) (640 -1024 264 ) (640.004150 -1024 264 ) +4 2333 3079 (704 -1024 264 ) (704 -1024 256 ) (776 -1024 256 ) (778.666748 -1024 264 ) +4 2333 3068 (784 -1024 280 ) (704 -1024 280 ) (704 -1024 264 ) (778.666748 -1024 264 ) +4 2333 2336 (464 -1024 256 ) (464 -1024 280 ) (464 -964 280 ) (464 -964 256 ) +4 2333 2335 (464 -1024 256 ) (464 -928 256 ) (800 -928 256 ) (776 -1024 256 ) +4 2334 3094 (1024 -1024 240 ) (1024 -1024 256 ) (896 -1024 256 ) (896 -1024 240 ) +4 2334 2381 (1024 -1024 240 ) (896 -1024 240 ) (896 -964 240 ) (1024 -964 240 ) +4 2334 2353 (896 -964 240 ) (896 -928 240 ) (1024 -928 240 ) (1024 -964 240 ) +4 2335 3166 (576 -1024 256 ) (464 -1024 256 ) (464 -1024 240 ) (576 -1024 240 ) +4 2335 3162 (640 -1024 256 ) (576 -1024 256 ) (576 -1024 240 ) (640 -1024 240 ) +4 2335 3147 (704 -1024 256 ) (640 -1024 256 ) (640 -1024 240 ) (704 -1024 240 ) +4 2335 3093 (784 -1024 256 ) (704 -1024 256 ) (704 -1024 240 ) (784 -1024 240 ) +4 2335 2382 (784 -1024 240 ) (464 -1024 240 ) (464 -964 240 ) (799 -964 240 ) +4 2335 2354 (464 -964 240 ) (464 -928 240 ) (808 -928 240 ) (799 -964 240 ) +4 2335 2336 (464 -964 240 ) (464 -1024 240 ) (464 -1024 256 ) (464 -964 256 ) +4 2336 3166 (448 -1024 264 ) (448 -1024 240 ) (464 -1024 240 ) (464 -1024 264 ) +4 2336 3161 (464 -1024 336 ) (448 -1024 336 ) (448 -1024 264 ) (464 -1024 264 ) +4 2336 2382 (464 -1024 240 ) (448 -1024 240 ) (448 -964 240 ) (464 -964 240 ) +4 2336 2340 (448 -964 240 ) (448 -1024 240 ) (448 -1024 320 ) (448 -964 320 ) +4 2336 2337 (448 -1024 320 ) (448 -1024 336 ) (448 -964 336 ) (448 -964 320 ) +4 2337 3161 (448 -1024 336 ) (328 -1024 336 ) (328 -1024 320 ) (448 -1024 320 ) +4 2337 2352 (328 -1024 320 ) (328 -1024 336 ) (328 -964 336 ) (328 -964 320 ) +4 2337 2340 (328 -1024 320 ) (328 -964 320 ) (448 -964 320 ) (448 -1024 320 ) +4 2339 2340 (356 -960 312 ) (356 -960 248 ) (420 -960 248 ) (420 -960 312 ) +4 2340 3166 (328 -1024 264 ) (328 -1024 240 ) (448 -1024 240 ) (448 -1024 264 ) +4 2340 3161 (328 -1024 320 ) (328 -1024 264 ) (448 -1024 264 ) (448 -1024 320 ) +5 2340 2382 (448 -1024 240 ) (328 -1024 240 ) (328 -968 240 ) (332 -964 240 ) (448 -964 240 ) +4 2340 2352 (328 -964 240 ) (328 -1024 240 ) (328 -1024 320 ) (328 -964 320 ) +4 2341 2343 (288 -960 240 ) (288 -964 240 ) (288 -964 368 ) (288 -960 368 ) +4 2341 2352 (288 -964 240 ) (312 -964 240 ) (312 -964 368 ) (288 -964 368 ) +4 2342 2343 (224 -960 360 ) (224 -960 248 ) (288 -960 248 ) (288 -960 360 ) +4 2343 2344 (224 -960 240 ) (224 -964 240 ) (224 -964 368 ) (224 -960 368 ) +4 2343 2352 (224 -964 240 ) (288 -964 240 ) (288 -964 368 ) (224 -964 368 ) +4 2344 2352 (200 -964 240 ) (224 -964 240 ) (224 -964 368 ) (200 -964 368 ) +4 2345 2346 (192 -952 248 ) (192 -952 360 ) (128 -952 360 ) (128 -952 248 ) +4 2346 2347 (192 -960 248 ) (192 -960 360 ) (128 -960 360 ) (128 -960 248 ) +4 2347 2352 (128 -964 240 ) (192 -964 240 ) (192 -964 360 ) (128 -964 360 ) +4 2348 2350 (96 -960 240 ) (96 -964 240 ) (96 -964 368 ) (96 -960 368 ) +4 2348 2352 (96 -964 240 ) (120 -964 240 ) (120 -964 368 ) (96 -964 368 ) +4 2349 2350 (32 -960 360 ) (32 -960 248 ) (96 -960 248 ) (96 -960 360 ) +4 2350 2351 (32 -960 240 ) (32 -964 240 ) (32 -964 368 ) (32 -960 368 ) +4 2350 2352 (32 -964 240 ) (96 -964 240 ) (96 -964 368 ) (32 -964 368 ) +4 2351 2352 (8 -964 240 ) (32 -964 240 ) (32 -964 368 ) (8 -964 368 ) +4 2352 3166 (0 -1024 264 ) (0 -1024 240 ) (328 -1024 240 ) (328 -1024 264 ) +4 2352 3161 (328 -1024 368 ) (0 -1024 368 ) (0 -1024 264 ) (328 -1024 264 ) +4 2352 2647 (0 -968 336 ) (0 -964 336 ) (0 -964 240 ) (0 -968 240 ) +4 2352 2652 (0 -1024 240 ) (0 -1024 336 ) (0 -968 336 ) (0 -968 240 ) +4 2352 2624 (0 -1024 336 ) (0 -1024 368 ) (0 -964 368 ) (0 -964 336 ) +4 2352 2395 (0 -988 240 ) (0 -968 240 ) (328 -968 240 ) (308 -988 240 ) +4 2352 2385 (272 -1024 240 ) (0 -1024 240 ) (0 -988 240 ) (308 -988 240 ) +3 2352 2382 (328 -1024 240 ) (272 -1024 240 ) (328 -968 240 ) +4 2353 2381 (1024 -964 216 ) (1024 -964 240 ) (896 -964 240 ) (896 -964 216 ) +4 2353 2356 (1024 -964 216 ) (896 -964 216 ) (896 -928 216 ) (1024 -928 216 ) +4 2354 2382 (799 -964 240 ) (464 -964 240 ) (464 -964 216 ) (799 -964 216 ) +4 2354 2357 (799 -964 216 ) (464 -964 216 ) (464 -928 216 ) (808 -928 216 ) +4 2355 2382 (332 -964 216 ) (448 -964 216 ) (448 -964 220 ) (332 -964 220 ) +4 2355 2361 (356 -964 216 ) (332 -964 216 ) (336 -960 216 ) (356 -960 216 ) +4 2355 2360 (420 -964 216 ) (356 -964 216 ) (356 -960 216 ) (420 -960 216 ) +4 2355 2358 (448 -964 216 ) (420 -964 216 ) (420 -960 216 ) (448 -960 216 ) +4 2356 2381 (1024 -964 88 ) (1024 -964 216 ) (896 -964 216 ) (896 -964 88 ) +4 2356 2373 (1024 -964 88 ) (896 -964 88 ) (896 -928 88 ) (1024 -928 88 ) +4 2357 2383 (472.399017 -964 88 ) (799 -964 88 ) (799 -964 96 ) (472.399017 -964 96 ) +4 2357 2382 (799 -964 216 ) (464 -964 216 ) (464 -964 96 ) (799 -964 96 ) +4 2357 2374 (799 -964 88 ) (464 -964 88 ) (464 -928 88 ) (808 -928 88 ) +4 2358 2384 (420 -964 96 ) (420 -964 88 ) (440.399841 -964 88 ) (440.399963 -964 96 ) +4 2358 2382 (448 -964 216 ) (420 -964 216 ) (420 -964 96 ) (448 -964 96 ) +4 2358 2360 (420 -960 88 ) (420 -964 88 ) (420 -964 216 ) (420 -960 216 ) +4 2359 2360 (356 -960 208 ) (356 -960 96 ) (420 -960 96 ) (420 -960 208 ) +4 2360 2384 (356 -964 96 ) (356 -964 88 ) (420 -964 88 ) (420 -964 96 ) +4 2360 2382 (420 -964 216 ) (356 -964 216 ) (356 -964 96 ) (420 -964 96 ) +4 2360 2361 (356 -960 88 ) (356 -964 88 ) (356 -964 216 ) (356 -960 216 ) +4 2361 2385 (332 -964 216 ) (328 -964 216 ) (328 -964 88 ) (332 -964 88 ) +4 2361 2384 (332 -964 96 ) (332 -964 88 ) (356 -964 88 ) (356 -964 96 ) +4 2361 2382 (356 -964 216 ) (332 -964 216 ) (332 -964 96 ) (356 -964 96 ) +4 2362 2385 (312 -964 216 ) (288 -964 216 ) (288 -964 88 ) (312 -964 88 ) +4 2362 2364 (288 -960 88 ) (288 -964 88 ) (288 -964 216 ) (288 -960 216 ) +4 2363 2364 (224 -960 208 ) (224 -960 96 ) (288 -960 96 ) (288 -960 208 ) +4 2364 2385 (288 -964 216 ) (224 -964 216 ) (224 -964 88 ) (288 -964 88 ) +4 2364 2365 (224 -960 88 ) (224 -964 88 ) (224 -964 216 ) (224 -960 216 ) +4 2365 2385 (224 -964 216 ) (200 -964 216 ) (200 -964 88 ) (224 -964 88 ) +4 2366 2385 (128 -964 208 ) (128 -964 96 ) (192 -964 96 ) (192 -964 208 ) +4 2366 2367 (128 -952 96 ) (128 -928 96 ) (192 -928 96 ) (192 -952 96 ) +4 2366 2368 (128 -964 96 ) (128 -960 96 ) (192 -960 96 ) (192 -964 96 ) +4 2367 2376 (128 -952 88 ) (128 -928 88 ) (192 -928 88 ) (192 -952 88 ) +4 2368 2385 (128 -964 96 ) (128 -964 88 ) (192 -964 88 ) (192 -964 96 ) +4 2368 2380 (192 -964 88 ) (128 -964 88 ) (128 -960 88 ) (192 -960 88 ) +4 2369 2385 (120 -964 216 ) (96 -964 216 ) (96 -964 88 ) (120 -964 88 ) +4 2369 2371 (96 -960 88 ) (96 -964 88 ) (96 -964 216 ) (96 -960 216 ) +4 2370 2371 (32 -960 208 ) (32 -960 96 ) (96 -960 96 ) (96 -960 208 ) +4 2371 2385 (96 -964 216 ) (32 -964 216 ) (32 -964 88 ) (96 -964 88 ) +4 2371 2372 (32 -960 88 ) (32 -964 88 ) (32 -964 216 ) (32 -960 216 ) +4 2372 2385 (32 -964 216 ) (8 -964 216 ) (8 -964 88 ) (32 -964 88 ) +4 2373 2396 (896 -928 64 ) (1024 -928 64 ) (1024 -964 64 ) (896 -964 64 ) +4 2373 2381 (896 -964 64 ) (1024 -964 64 ) (1024 -964 88 ) (896 -964 88 ) +4 2374 2401 (473.598999 -960 64 ) (472.399017 -964 64 ) (464 -964 64 ) (464 -960 64 ) +5 2374 2400 (464 -928 64 ) (480 -928 64 ) (480 -938.663269 64 ) (473.598999 -960 64 ) (464 -960 64 ) +4 2374 2383 (472.399017 -964 64 ) (799 -964 64 ) (799 -964 88 ) (472.399017 -964 88 ) +4 2375 2407 (356 -964 64 ) (332 -964 64 ) (336 -960 64 ) (356 -960 64 ) +4 2375 2405 (420 -964 64 ) (356 -964 64 ) (356 -960 64 ) (420 -960 64 ) +4 2375 2401 (448 -960 64 ) (448 -964 64 ) (420 -964 64 ) (420 -960 64 ) +4 2375 2384 (332 -964 64 ) (440.399292 -964 64 ) (440.399384 -964 68 ) (332 -964 68 ) +4 2376 2377 (128 -952 72 ) (128 -952 64 ) (192 -952 64 ) (192 -952 72 ) +4 2378 2413 (288 -964 64 ) (200 -964 64 ) (200 -960 64 ) (288 -960 64 ) +4 2378 2409 (308 -964 64 ) (288 -964 64 ) (288 -960 64 ) (304 -960 64 ) +4 2378 2387 (200 -964 64 ) (308 -964 64 ) (308 -964 68 ) (200 -964 68 ) +4 2379 2413 (120 -964 64 ) (12 -964 64 ) (16 -960 64 ) (120 -960 64 ) +4 2379 2393 (12 -964 64 ) (120 -964 64 ) (120 -964 68 ) (12 -964 68 ) +4 2380 2389 (192 -964 88 ) (128 -964 88 ) (128 -964 72 ) (192 -964 72 ) +4 2381 3094 (1024 -1024 64 ) (1024 -1024 240 ) (896 -1024 240 ) (896 -1024 64 ) +4 2381 2396 (1024 -964 64 ) (1024 -1024 64 ) (896 -1024 64 ) (896 -964 64 ) +4 2382 3166 (576 -1024 240 ) (272 -1024 240 ) (272 -1024 96 ) (576 -1024 96 ) +4 2382 3164 (576 -1024 175.884995 ) (576 -1024 96 ) (640 -1024 96 ) (640 -1024 175.884995 ) +4 2382 3162 (640 -1024 240 ) (576 -1024 240 ) (576 -1024 175.884995 ) (640 -1024 175.884995 ) +4 2382 3147 (704 -1024 240 ) (640 -1024 240 ) (640 -1024 96 ) (704 -1024 96 ) +4 2382 3093 (784 -1024 240 ) (704 -1024 240 ) (704 -1024 96 ) (784 -1024 96 ) +3 2382 2395 (328 -968 220 ) (308 -988 240 ) (328 -968 240 ) +5 2382 2385 (332 -964 216 ) (332 -964 96 ) (272 -1024 96 ) (272 -1024 240 ) (308 -988 240 ) +4 2382 2384 (272 -1024 96 ) (332 -964 96 ) (440.400024 -964 96 ) (422.400238 -1024 96 ) +4 2382 2383 (472.399048 -964 96 ) (799 -964 96 ) (784 -1024 96 ) (454.399139 -1024 96 ) +4 2383 3167 (454.399170 -1024 64 ) (576 -1024 64 ) (576 -1024 96 ) (454.399170 -1024 96 ) +4 2383 3164 (576 -1024 64 ) (640 -1024 64 ) (640 -1024 96 ) (576 -1024 96 ) +4 2383 3147 (640 -1024 64 ) (704 -1024 64 ) (704 -1024 96 ) (640 -1024 96 ) +4 2383 3093 (704 -1024 64 ) (784 -1024 64 ) (784 -1024 96 ) (704 -1024 96 ) +4 2384 3168 (272 -1024 96 ) (272 -1024 64 ) (422.399567 -1024 64 ) (422.400208 -1024 96 ) +3 2384 2413 (288 -1024 64 ) (272 -1024 64 ) (288 -1008 64 ) +4 2384 2409 (312 -1024 64 ) (288 -1024 64 ) (288 -1008 64 ) (312 -984 64 ) +4 2384 2408 (328 -1024 64 ) (312 -1024 64 ) (312 -984 64 ) (328 -968 64 ) +5 2384 2407 (356 -1024 64 ) (328 -1024 64 ) (328 -968 64 ) (332 -964 64 ) (356 -964 64 ) +4 2384 2405 (420 -1024 64 ) (356 -1024 64 ) (356 -964 64 ) (420 -964 64 ) +4 2384 2402 (422.399567 -1024 64 ) (420 -1024 64 ) (420 -964 64 ) (440.399353 -964 64 ) +3 2384 2386 (332 -964 64 ) (328 -968 64 ) (328 -968 68 ) +4 2384 2388 (328 -968 64 ) (272 -1024 64 ) (272 -1024 88 ) (328 -968 88 ) +4 2384 2385 (332 -964 96 ) (332 -964 88 ) (272 -1024 88 ) (272 -1024 96 ) +4 2385 3168 (0 -1024 96 ) (0 -1024 88 ) (272 -1024 88 ) (272 -1024 96 ) +4 2385 3166 (272 -1024 240 ) (0 -1024 240 ) (0 -1024 96 ) (272 -1024 96 ) +4 2385 2649 (0 -968 220 ) (0 -964 216 ) (0 -964 88 ) (0 -968 88 ) +5 2385 2652 (0 -1024 88 ) (0 -1024 240 ) (0 -988 240 ) (0 -968 220 ) (0 -968 88 ) +4 2385 2395 (308 -988 240 ) (328 -968 220 ) (0 -968 220 ) (0 -988 240 ) +4 2385 2393 (12 -964 88 ) (120 -964 88 ) (120 -968 88 ) (8 -968 88 ) +4 2385 2394 (120 -968 88 ) (120 -1024 88 ) (0 -1024 88 ) (0 -968 88 ) +4 2385 2389 (120 -964 88 ) (200 -964 88 ) (200 -984 88 ) (120 -984 88 ) +4 2385 2391 (200 -984 88 ) (200 -1024 88 ) (120 -1024 88 ) (120 -984 88 ) +4 2385 2387 (200 -964 88 ) (308 -964 88 ) (312 -968 88 ) (200 -968 88 ) +4 2385 2388 (328 -968 88 ) (272 -1024 88 ) (200 -1024 88 ) (200 -968 88 ) +4 2386 2413 (200 -968 64 ) (200 -964 64 ) (288 -964 64 ) (288 -968 64 ) +4 2386 2409 (288 -964 64 ) (312 -964 64 ) (312 -968 64 ) (288 -968 64 ) +4 2386 2408 (312 -964 64 ) (328 -964 64 ) (328 -968 64 ) (312 -968 64 ) +3 2386 2407 (328 -964 64 ) (332 -964 64 ) (328 -968 64 ) +4 2386 2387 (200 -964 64 ) (200 -968 68 ) (312 -968 68 ) (308 -964 64 ) +4 2386 2388 (200 -968 68 ) (200 -968 64 ) (328 -968 64 ) (328 -968 68 ) +4 2387 2389 (200 -968 88 ) (200 -964 88 ) (200 -964 72 ) (200 -968 72 ) +4 2387 2388 (200 -968 88 ) (200 -968 68 ) (312 -968 68 ) (312 -968 88 ) +4 2388 3168 (200 -1024 64 ) (272 -1024 64 ) (272 -1024 88 ) (200 -1024 88 ) +5 2388 2413 (272 -1024 64 ) (200 -1024 64 ) (200 -968 64 ) (288 -968 64 ) (288 -1008 64 ) +4 2388 2409 (288 -968 64 ) (312 -968 64 ) (312 -984 64 ) (288 -1008 64 ) +3 2388 2408 (312 -968 64 ) (328 -968 64 ) (312 -984 64 ) +3 2388 2390 (200 -980 64 ) (200 -984 64 ) (200 -984 68 ) +4 2388 2389 (200 -984 88 ) (200 -968 88 ) (200 -968 72 ) (200 -984 72 ) +4 2388 2391 (200 -1024 88 ) (200 -984 88 ) (200 -984 64 ) (200 -1024 64 ) +4 2389 2393 (120 -968 88 ) (120 -964 88 ) (120 -964 72 ) (120 -968 72 ) +4 2389 2394 (120 -984 88 ) (120 -968 88 ) (120 -968 72 ) (120 -984 72 ) +4 2389 2391 (120 -984 88 ) (120 -984 72 ) (200 -984 72 ) (200 -984 88 ) +4 2390 2413 (120 -984 64 ) (120 -980 64 ) (200 -980 64 ) (200 -984 64 ) +3 2390 2394 (120 -980 64 ) (120 -984 64 ) (120 -984 68 ) +4 2390 2391 (120 -984 68 ) (120 -984 64 ) (200 -984 64 ) (200 -984 68 ) +4 2391 3168 (120 -1024 64 ) (200 -1024 64 ) (200 -1024 88 ) (120 -1024 88 ) +4 2391 2413 (200 -1024 64 ) (120 -1024 64 ) (120 -984 64 ) (200 -984 64 ) +4 2391 2394 (120 -1024 88 ) (120 -984 88 ) (120 -984 64 ) (120 -1024 64 ) +3 2392 2650 (0 -964 64 ) (0 -968 64 ) (0 -968 68 ) +4 2392 2414 (0 -968 64 ) (0 -964 64 ) (8 -964 64 ) (8 -968 64 ) +4 2392 2413 (8 -964 64 ) (120 -964 64 ) (120 -968 64 ) (8 -968 64 ) +4 2392 2393 (8 -968 68 ) (120 -968 68 ) (120 -964 64 ) (12 -964 64 ) +4 2392 2394 (0 -968 64 ) (120 -968 64 ) (120 -968 68 ) (0 -968 68 ) +4 2393 2394 (120 -968 68 ) (120 -968 88 ) (8 -968 88 ) (8 -968 68 ) +4 2394 3168 (0 -1024 88 ) (0 -1024 64 ) (120 -1024 64 ) (120 -1024 88 ) +4 2394 2652 (0 -1024 64 ) (0 -1024 88 ) (0 -968 88 ) (0 -968 64 ) +4 2394 2414 (8 -1024 64 ) (0 -1024 64 ) (0 -968 64 ) (8 -968 64 ) +4 2394 2413 (120 -1024 64 ) (8 -1024 64 ) (8 -968 64 ) (120 -968 64 ) +3 2395 2652 (0 -988 240 ) (0 -968 240 ) (0 -968 220 ) +4 2396 3220 (1024 -1024 56 ) (1024 -1024 64 ) (896 -1024 64 ) (896 -1024 56 ) +4 2396 2398 (896 -1024 56 ) (896 -1024 64 ) (896 -928 64 ) (896 -928 56 ) +4 2397 3221 (1024 -1024 0 ) (1024 -1024 32 ) (896 -1024 32 ) (896 -1024 0 ) +4 2397 2399 (896 -928 0 ) (1024 -928 0 ) (1024 -1024 0 ) (896 -1024 0 ) +4 2397 2398 (896 -928 0 ) (896 -1024 0 ) (896 -1024 32 ) (896 -928 32 ) +4 2398 3223 (896 -1024 64 ) (784 -1024 64 ) (784 -1024 0 ) (896 -1024 0 ) +4 2398 2399 (808 -928 0 ) (896 -928 0 ) (896 -1024 0 ) (784 -1024 0 ) +4 2399 3246 (704 -1024 0 ) (486.400208 -1024 0 ) (486.400208 -1024 -32 ) (704 -1024 -32 ) +4 2399 3245 (1024 -1024 -32 ) (1024 -1024 0 ) (704 -1024 0 ) (704 -1024 -32 ) +4 2399 2417 (1024 -1024 -32 ) (486.400208 -1024 -32 ) (515.200256 -928 -32 ) (1024 -928 -32 ) +3 2400 2403 (448 -928 0 ) (451.200195 -928 0 ) (448 -938.667358 0 ) +4 2400 2401 (448 -960 0 ) (473.598999 -960 0 ) (473.598999 -960 64 ) (448 -960 64 ) +4 2401 2406 (420 -960 56 ) (420 -960 0 ) (420 -964 0 ) (420 -964 56 ) +4 2401 2405 (420 -964 64 ) (420 -960 64 ) (420 -960 56 ) (420 -964 56 ) +4 2401 2404 (420 -964 0 ) (420 -960 0 ) (441.600189 -960 0 ) (440.400208 -964 0 ) +4 2401 2402 (420 -964 64 ) (420 -964 0 ) (440.398041 -964 0 ) (440.399384 -964 64 ) +4 2402 3225 (422.399597 -1024 64 ) (420 -1024 64 ) (420 -1024 0 ) (422.398254 -1024 0 ) +4 2402 2406 (420 -1024 0 ) (420 -1024 56 ) (420 -964 56 ) (420 -964 0 ) +4 2402 2405 (420 -1024 56 ) (420 -1024 64 ) (420 -964 64 ) (420 -964 56 ) +4 2402 2404 (420 -1024 0 ) (420 -964 0 ) (440.398010 -964 0 ) (422.398254 -1024 0 ) +3 2403 2415 (448 -928 -32 ) (451.200226 -928 -32 ) (448 -938.667358 -32 ) +4 2404 3250 (420 -1024 0 ) (420 -1024 -32 ) (422.400177 -1024 -32 ) (422.400177 -1024 0 ) +4 2404 2416 (422.400177 -1024 -32 ) (420 -1024 -32 ) (420 -964 -32 ) (440.400177 -964 -32 ) +4 2404 2406 (420 -960 -32 ) (420 -1024 -32 ) (420 -1024 0 ) (420 -960 0 ) +4 2405 3225 (420 -1024 64 ) (356 -1024 64 ) (356 -1024 56 ) (420 -1024 56 ) +4 2405 2407 (356 -1024 56 ) (356 -1024 64 ) (356 -960 64 ) (356 -960 56 ) +4 2405 2406 (356 -1024 56 ) (356 -960 56 ) (420 -960 56 ) (420 -1024 56 ) +4 2406 3250 (356 -1024 0 ) (356 -1024 -32 ) (420 -1024 -32 ) (420 -1024 0 ) +4 2406 3225 (356 -1024 56 ) (356 -1024 0 ) (420 -1024 0 ) (420 -1024 56 ) +4 2406 2416 (420 -1024 -32 ) (356 -1024 -32 ) (356 -964 -32 ) (420 -964 -32 ) +4 2406 2407 (356 -960 -32 ) (356 -1024 -32 ) (356 -1024 56 ) (356 -960 56 ) +4 2407 3250 (328 -1024 0 ) (328 -1024 -32 ) (356 -1024 -32 ) (356 -1024 0 ) +4 2407 3225 (356 -1024 64 ) (328 -1024 64 ) (328 -1024 0 ) (356 -1024 0 ) +4 2407 2416 (356 -1024 -32 ) (328 -1024 -32 ) (328 -964 -32 ) (356 -964 -32 ) +4 2407 2408 (328 -964 -32 ) (328 -1024 -32 ) (328 -1024 64 ) (328 -964 64 ) +4 2408 3250 (312 -1024 0 ) (312 -1024 -32 ) (328 -1024 -32 ) (328 -1024 0 ) +4 2408 3225 (328 -1024 64 ) (312 -1024 64 ) (312 -1024 0 ) (328 -1024 0 ) +4 2408 2416 (328 -1024 -32 ) (312 -1024 -32 ) (312 -964 -32 ) (328 -964 -32 ) +4 2408 2409 (312 -964 -32 ) (312 -1024 -32 ) (312 -1024 64 ) (312 -964 64 ) +4 2409 3250 (288 -1024 0 ) (288 -1024 -32 ) (312 -1024 -32 ) (312 -1024 0 ) +4 2409 3225 (312 -1024 64 ) (288 -1024 64 ) (288 -1024 0 ) (312 -1024 0 ) +4 2409 2416 (312 -1024 -32 ) (288 -1024 -32 ) (288 -964 -32 ) (312 -964 -32 ) +4 2409 2413 (288 -960 -32 ) (288 -1024 -32 ) (288 -1024 64 ) (288 -960 64 ) +4 2410 2413 (288 -960 -24 ) (288 -960 56 ) (224 -960 56 ) (224 -960 -24 ) +4 2411 2413 (128 -960 -32 ) (192 -960 -32 ) (192 -960 56 ) (128 -960 56 ) +4 2412 2413 (96 -960 -24 ) (96 -960 56 ) (32 -960 56 ) (32 -960 -24 ) +4 2413 3250 (8 -1024 0 ) (8 -1024 -32 ) (288 -1024 -32 ) (288 -1024 0 ) +4 2413 3239 (8 -1024 57.599998 ) (8 -1024 0 ) (160 -1024 0 ) (160 -1024 57.599998 ) +4 2413 3233 (160 -1024 64 ) (8 -1024 64 ) (8 -1024 57.599998 ) (160 -1024 57.599998 ) +4 2413 3225 (288 -1024 64 ) (160 -1024 64 ) (160 -1024 0 ) (288 -1024 0 ) +4 2413 2416 (288 -1024 -32 ) (8 -1024 -32 ) (8 -964 -32 ) (288 -964 -32 ) +4 2413 2414 (8 -964 -32 ) (8 -1024 -32 ) (8 -1024 64 ) (8 -964 64 ) +4 2414 3250 (0 -1024 0 ) (0 -1024 -32 ) (8 -1024 -32 ) (8 -1024 0 ) +4 2414 3239 (0 -1024 57.599998 ) (0 -1024 0 ) (8 -1024 0 ) (8 -1024 57.599998 ) +4 2414 3233 (8 -1024 64 ) (0 -1024 64 ) (0 -1024 57.599998 ) (8 -1024 57.599998 ) +4 2414 2650 (0 -968 64 ) (0 -964 64 ) (0 -964 -32 ) (0 -968 -32 ) +4 2414 2652 (0 -1024 -32 ) (0 -1024 64 ) (0 -968 64 ) (0 -968 -32 ) +4 2414 2416 (8 -1024 -32 ) (0 -1024 -32 ) (0 -964 -32 ) (8 -964 -32 ) +3 2415 2422 (448 -928 -64 ) (451.200226 -928 -64 ) (448 -938.667419 -64 ) +4 2416 3250 (422.400146 -1024 -32 ) (0 -1024 -32 ) (0 -1024 -64 ) (422.400177 -1024 -64 ) +4 2416 2650 (0 -968 -32 ) (0 -964 -32 ) (0 -964 -64 ) (0 -968 -64 ) +4 2416 2652 (0 -1024 -64 ) (0 -1024 -32 ) (0 -968 -32 ) (0 -968 -64 ) +4 2416 2424 (440.400208 -964 -64 ) (422.400146 -1024 -64 ) (0 -1024 -64 ) (0 -964 -64 ) +4 2416 2418 (422.400391 -1024 -64 ) (436.800781 -976 -64 ) (429.601044 -1000 -40 ) (422.401123 -1024 -32 ) +4 2417 3246 (704 -1024 -32 ) (486.400208 -1024 -32 ) (486.400177 -1024 -64 ) (704 -1024 -64 ) +4 2417 3245 (1024 -1024 -64 ) (1024 -1024 -32 ) (704 -1024 -32 ) (704 -1024 -64 ) +4 2417 2421 (704 -960 -64 ) (704 -1024 -64 ) (486.400208 -1024 -64 ) (505.600250 -960 -64 ) +4 2417 2420 (515.200256 -928 -64 ) (704 -928 -64 ) (704 -960 -64 ) (505.600250 -960 -64 ) +4 2417 2419 (704 -928 -64 ) (1024 -928 -64 ) (1024 -1024 -64 ) (704 -1024 -64 ) +4 2418 3253 (454.399109 -1024 -32 ) (422.400146 -1024 -32 ) (422.400177 -1024 -64 ) (454.399078 -1024 -64 ) +4 2418 2425 (468.799011 -976 -64 ) (454.399109 -1024 -64 ) (422.400146 -1024 -64 ) (436.800171 -976 -64 ) +4 2419 3257 (1024 -1024 -128 ) (1024 -1024 -64 ) (704 -1024 -64 ) (704 -1024 -128 ) +4 2419 2426 (1024 -1024 -128 ) (704 -1024 -128 ) (704 -928 -128 ) (1024 -928 -128 ) +4 2419 2421 (704 -960 -128 ) (704 -1024 -128 ) (704 -1024 -64 ) (704 -960 -64 ) +4 2419 2420 (704 -928 -128 ) (704 -960 -128 ) (704 -960 -64 ) (704 -928 -64 ) +4 2420 2421 (505.600189 -960 -128 ) (704 -960 -128 ) (704 -960 -64 ) (505.600220 -960 -64 ) +4 2421 3258 (704 -1024 -64 ) (486.400208 -1024 -64 ) (486.400146 -1024 -128 ) (704 -1024 -128 ) +4 2421 2427 (704 -1024 -128 ) (486.400208 -1024 -128 ) (505.600220 -960 -128 ) (704 -960 -128 ) +4 2422 2423 (448 -938.671875 -101.328156 ) (448 -938.671875 -128 ) (451.201569 -928 -128 ) (451.201569 -928 -112 ) +4 2423 2425 (448 -960 -128 ) (473.599609 -960 -128 ) (473.599609 -960 -80 ) (448 -960 -80 ) +4 2424 3260 (422.400177 -1024 -64 ) (0 -1024 -64 ) (0 -1024 -128 ) (422.400116 -1024 -128 ) +4 2424 2653 (0 -1024 -128 ) (0 -1024 -64 ) (0 -960 -64 ) (0 -960 -128 ) +4 2424 2427 (422.400177 -1024 -128 ) (0 -1024 -128 ) (0 -960 -128 ) (441.600189 -960 -128 ) +5 2424 2425 (422.401489 -1024 -128 ) (441.601563 -960 -128 ) (441.601563 -960 -80 ) (436.801544 -976 -64 ) (422.401520 -1024 -64 ) +4 2425 3266 (454.399109 -1024 -64 ) (422.400177 -1024 -64 ) (422.400116 -1024 -128 ) (454.399048 -1024 -128 ) +4 2425 2427 (454.399109 -1024 -128 ) (422.400177 -1024 -128 ) (441.600189 -960 -128 ) (473.598999 -960 -128 ) +4 2426 3259 (1024 -1024 -192 ) (1024 -1024 -128 ) (704 -1024 -128 ) (704 -1024 -192 ) +4 2426 2428 (704 -928 -192 ) (1024 -928 -192 ) (1024 -1024 -192 ) (704 -1024 -192 ) +4 2426 2427 (704 -960 -192 ) (704 -1024 -192 ) (704 -1024 -128 ) (704 -960 -128 ) +4 2427 3267 (454.399109 -1024 -128 ) (422.400177 -1024 -128 ) (422.400116 -1024 -192 ) (454.399048 -1024 -192 ) +4 2427 3261 (422.400177 -1024 -128 ) (0 -1024 -128 ) (0 -1024 -192 ) (422.400116 -1024 -192 ) +4 2427 3259 (704 -1024 -128 ) (454.399109 -1024 -128 ) (454.399048 -1024 -192 ) (704 -1024 -192 ) +4 2427 2654 (0 -1024 -192 ) (0 -1024 -128 ) (0 -960 -128 ) (0 -960 -192 ) +4 2427 2428 (704 -960 -192 ) (704 -1024 -192 ) (0 -1024 -192 ) (0 -960 -192 ) +4 2428 3267 (454.399170 -1024 -192 ) (422.400177 -1024 -192 ) (422.400177 -1024 -512 ) (454.399170 -1024 -512 ) +4 2428 3263 (422.400177 -1024 -512 ) (422.400208 -1024 -1284 ) (454.399139 -1024 -1284 ) (454.399170 -1024 -512 ) +4 2428 3261 (422.400177 -1024 -192 ) (0 -1024 -192 ) (0 -1024 -1284 ) (422.400208 -1024 -1284 ) +4 2428 3259 (1024 -1024 -1284 ) (1024 -1024 -192 ) (454.399170 -1024 -192 ) (454.399139 -1024 -1284 ) +4 2428 2654 (0 -1024 -1284 ) (0 -1024 -192 ) (0 -928 -192 ) (0 -928 -1284 ) +4 2429 2448 (0 832 528 ) (0 832 5542.669922 ) (-120 772 5542.669922 ) (-120 772 528 ) +4 2429 2440 (0 1024 607.996094 ) (0 944.003845 528 ) (-120 884.003784 528 ) (-120 1024 667.996216 ) +5 2429 2439 (-120 772 5542.669922 ) (-120 884 5542.669922 ) (-120 884 536 ) (-120 876 528 ) (-120 772 528 ) +5 2429 2438 (-120 884 5542.669922 ) (-120 1024 5542.669922 ) (-120 1024 667.997559 ) (-120 884.002441 528 ) (-120 884 528 ) +3 2429 2437 (-100 836 528 ) (-93.599976 832.799988 528 ) (-96 828 528 ) +3 2429 2436 (-108 840 528 ) (-84 852 528 ) (-93.599976 832.799988 528 ) +3 2429 2435 (-103.199966 813.599976 528 ) (-108 816 528 ) (-100 820 528 ) +5 2429 2434 (0 832 528 ) (-70 797 528 ) (-103.199966 813.599976 528 ) (-84 852 528 ) (0 894 528 ) +4 2429 2433 (-116 836 528 ) (-82.666656 902.666687 528 ) (0 944 528 ) (0 894 528 ) +3 2429 2432 (-120 828 528 ) (-120 884 528 ) (-82.666656 902.666687 528 ) +3 2429 2431 (-116 820 528 ) (-120 822 528 ) (-120 828 528 ) +3 2429 2430 (-70 797 528 ) (-120 772 528 ) (-120 822 528 ) +4 2430 2448 (-120 772 416 ) (-70 797 416.001007 ) (-70 797 528 ) (-120 772 528 ) +4 2430 2439 (-120 772 424 ) (-120 772 528 ) (-120 822 528 ) (-120 822 474 ) +4 2430 2435 (-103.199959 813.599976 449.199951 ) (-108 816 454 ) (-108 816 528 ) (-103.199959 813.599976 528 ) +4 2430 2434 (-70 797 416 ) (-103.199959 813.599976 449.199951 ) (-103.199959 813.599976 528 ) (-70 797 528 ) +4 2430 2431 (-116 820 462 ) (-120 822 466 ) (-120 822 528 ) (-116 820 528 ) +4 2431 2439 (-120 822 474 ) (-120 822 528 ) (-120 828 528 ) (-120 828 480 ) +3 2432 2439 (-120 828 480 ) (-120 828 528 ) (-120 876 528 ) +3 2432 2433 (-116 836 478 ) (-82.667969 902.664063 528 ) (-116 836 528 ) +4 2433 2436 (-108 840 478 ) (-84 852 478 ) (-84 852 528 ) (-108 840 528 ) +4 2433 2434 (-84 852 478 ) (0 894 478 ) (0 894 528 ) (-84 852 528 ) +4 2434 2448 (-70 797 416.001007 ) (0 832 416.001068 ) (0 832 528 ) (-70 797 528 ) +4 2434 2437 (-93.599983 832.799988 463.597687 ) (-96 828 459.997070 ) (-96 828 528 ) (-93.599983 832.799988 528 ) +4 2434 2436 (-84 852 528 ) (-84 852 478 ) (-93.599983 832.799988 463.597687 ) (-93.599983 832.799988 528 ) +4 2434 2435 (-100 820 453.996124 ) (-103.199997 813.599976 449.195313 ) (-103.199997 813.599976 528 ) (-100 820 528 ) +4 2436 2437 (-100 836 470 ) (-93.600761 832.800354 463.601563 ) (-93.600761 832.800354 528 ) (-100 836 528 ) +3 2438 2460 (-128 912 560 ) (-128 896 544 ) (-128 896 560 ) +5 2438 2459 (-128 1024 5542.669922 ) (-128 1024 672 ) (-128 912 560 ) (-128 880 560 ) (-128 880 5542.669922 ) +4 2438 2440 (-128 880 527.996277 ) (-128 1024 671.996216 ) (-120 1024 667.996216 ) (-120 884 527.996216 ) +4 2438 2439 (-120 884 536 ) (-120 884 5542.669922 ) (-128 880 5542.669922 ) (-128 880 536 ) +4 2439 2469 (-128 768 424 ) (-128 768 5542.669922 ) (-128 832 5542.669922 ) (-128 832 488 ) +4 2439 2462 (-128 848 504 ) (-128 832 488 ) (-128 832 560 ) (-128 848 560 ) +4 2439 2459 (-128 832 5542.669922 ) (-128 880 5542.669922 ) (-128 880 560 ) (-128 832 560 ) +4 2439 2449 (-128 768 5542.669922 ) (-128 768 424 ) (-120 772 424.001038 ) (-120 772 5542.669922 ) +4 2440 2461 (-128 896 400 ) (-128 880 400 ) (-128 880 496 ) (-128 896 496 ) +5 2440 2460 (-128 1024 560 ) (-128 1024 400 ) (-128 896 400 ) (-128 896 544 ) (-128 912 560 ) +3 2440 2459 (-128 1024 672 ) (-128 1024 560 ) (-128 912 560 ) +4 2440 2441 (-128 880 400 ) (-128 1024 400 ) (0 1024 400 ) (0 944 400 ) +4 2441 2468 (-128 1024 400 ) (-128 1024 384 ) (-128 832 384 ) (-128 832 400 ) +5 2441 2444 (-128 928 384 ) (-128 1024 384 ) (0 1024 384 ) (0 896 384 ) (-80 856 384 ) +3 2441 2442 (-128 832 384 ) (-128 928 384 ) (-80 856 384 ) +4 2442 2468 (-128 832 384 ) (-128 928 384 ) (-128 928 -1284 ) (-128 832 -1284 ) +4 2442 2444 (-128 928 -1284 ) (-128 928 384 ) (-64 832 384 ) (-64 832 -1284 ) +4 2442 2443 (-128 832 -1284 ) (-64.003906 832 -1284 ) (-64.003822 832 64 ) (-128 832 64 ) +4 2443 2473 (-128 768 -1284 ) (-128 768 64 ) (-128 832 64 ) (-128 832 -1284 ) +4 2443 2458 (-128 768 0 ) (-128 768.001038 -1284 ) (-48 808 -1284 ) (-48 808 0 ) +4 2443 2447 (-48 808 64 ) (-48 808 -1284 ) (-64 832 -1284 ) (-64 832 64 ) +4 2444 2468 (-128 1024 384 ) (-128 1024 -1284 ) (-128 928 -1284 ) (-128 928 384 ) +4 2444 2447 (-64 832 64 ) (-64 832 -1284 ) (0 864 -1284 ) (0 864 64 ) +5 2445 2451 (0 832 256 ) (0 832 340 ) (-16 824 344 ) (-48 808 336 ) (-48 808 256 ) +5 2446 2454 (0 832 96 ) (0 832 180 ) (-16 824 184 ) (-48 808 176 ) (-48 808 96 ) +4 2447 2458 (0 832.001038 -1284 ) (0 832 0 ) (-48 808 0 ) (-48 808 -1284 ) +5 2448 2489 (0 768 400 ) (0 768 5542.669922 ) (-120 768 5542.669922 ) (-120 768 412 ) (-96 768 400 ) +3 2448 2450 (0 768 400 ) (-64 768 400 ) (0 800 400 ) +4 2448 2449 (-120 768 420 ) (-120 768 5542.669922 ) (-120 772.007813 5542.669922 ) (-120 772 424 ) +4 2449 2490 (-120 768 5542.669922 ) (-128 768 5542.669922 ) (-128 768 424 ) (-120 768 420 ) +4 2450 2497 (0 768 384 ) (0 768 400 ) (-64 768 400 ) (-96 768 384 ) +3 2450 2451 (0 768 384 ) (-96 768 384 ) (0 816 384 ) +4 2451 2506 (0 768 256 ) (0 768 304 ) (-128 768 304 ) (-128 768 256 ) +4 2451 2500 (0 768 304 ) (0 768 320 ) (-128 768 320 ) (-128 768 304 ) +4 2451 2499 (0 768 320 ) (0 768 384 ) (-128 768 384 ) (-128 768 320 ) +4 2451 2453 (-116 768 256 ) (-128 768 256 ) (-56 804 256 ) (-52 800 256 ) +3 2451 2452 (0 768 256 ) (-116 768 256 ) (0 826 256 ) +4 2452 2507 (0 768 248 ) (0 768 256 ) (-116 768 256 ) (-116 768 248 ) +4 2452 2453 (-52 800 248 ) (-116 768 248 ) (-116 768 256 ) (-52 800 256 ) +3 2452 2454 (0 768 248 ) (-116 768 248 ) (0 826 248 ) +4 2453 2507 (-116 768 256 ) (-120 768 256 ) (-120 768 248 ) (-116 768 248 ) +4 2453 2454 (-116 768 248 ) (-128 768 248 ) (-56 804 248 ) (-52 800 248 ) +4 2454 2511 (0 768 96 ) (0 768 248 ) (-128 768 248 ) (-128 768 96 ) +4 2454 2456 (-116 768 96 ) (-128 768 96 ) (-56 804 96 ) (-52 800 96 ) +3 2454 2455 (0 768 96 ) (-116 768 96 ) (0 826 96 ) +4 2455 2512 (0 768 88 ) (0 768 96 ) (-116 768 96 ) (-116 768 88 ) +4 2455 2456 (-52 800 88 ) (-116 768 88 ) (-116 768 96 ) (-52 800 96 ) +3 2455 2457 (0 768 88 ) (-116 768 88 ) (0 826 88 ) +4 2456 2512 (-116 768 96 ) (-120 768 96 ) (-120 768 88 ) (-116 768 88 ) +4 2456 2457 (-116 768 88 ) (-128 768 88 ) (-56 804 88 ) (-52 800 88 ) +4 2457 2515 (0 768 64 ) (0 768 88 ) (-128 768 88 ) (-128 768 64 ) +4 2458 2537 (0 768 -1284 ) (0 768 -128 ) (-128 768 -128 ) (-128 768 -1284 ) +4 2458 2536 (0 768 -128 ) (0 768 0 ) (-128 768 0 ) (-128 768 -128 ) +4 2459 2541 (-1024 1024 5542.669922 ) (-1024 1024 560 ) (-1024 832 560 ) (-1024 832 5542.669922 ) +4 2459 2484 (-640 832 5542.669922 ) (-1024 832 5542.669922 ) (-1024 832 560 ) (-640 832 560 ) +4 2459 2483 (-544 832 5542.669922 ) (-640 832 5542.669922 ) (-640 832 560 ) (-544 832 560 ) +4 2459 2480 (-448 832 5542.669922 ) (-544 832 5542.669922 ) (-544 832 560 ) (-448 832 560 ) +4 2459 2479 (-384 832 5542.669922 ) (-448 832 5542.669922 ) (-448 832 560 ) (-384 832 560 ) +4 2459 2474 (-224 832 5542.669922 ) (-384 832 5542.669922 ) (-384 832 560 ) (-224 832 560 ) +4 2459 2470 (-136 832 5542.669922 ) (-224 832 5542.669922 ) (-224 832 560 ) (-136 832 560 ) +4 2459 2469 (-128 832 560 ) (-128 832 5542.669922 ) (-136 832 5542.669922 ) (-136 832 560 ) +4 2459 2466 (-136 832 560 ) (-640 832 560 ) (-640 848 560 ) (-136 848 560 ) +4 2459 2464 (-640 848 560 ) (-640 880 560 ) (-152 880 560 ) (-152 848 560 ) +4 2459 2463 (-640 880 560 ) (-640 896 560 ) (-152 896 560 ) (-152 880 560 ) +4 2459 2462 (-128 832 560 ) (-136 832 560 ) (-136 848 560 ) (-128 848 560 ) +4 2459 2460 (-640 896 560 ) (-640 1024 560 ) (-128 1024 560 ) (-128 896 560 ) +4 2459 2467 (-640 832 560 ) (-1024 832 560 ) (-1024 1024 560 ) (-640 1024 560 ) +4 2460 2468 (-640 896 400 ) (-640 1024 400 ) (-128 1024 400 ) (-128 896 400 ) +4 2460 2465 (-640 896 496 ) (-640 896 400 ) (-136 896 400 ) (-136 896 496 ) +4 2460 2463 (-640 896 560 ) (-640 896 496 ) (-152 896 496 ) (-152 896 560 ) +4 2460 2461 (-136 896 400 ) (-128 896 400 ) (-128 896 496 ) (-136 896 496 ) +4 2460 2467 (-640 1024 400 ) (-640 896 400 ) (-640 896 560 ) (-640 1024 560 ) +4 2461 2468 (-136 880 400 ) (-136 896 400 ) (-128 896 400 ) (-128 880 400 ) +4 2461 2465 (-136 896 496 ) (-136 896 400 ) (-136 880 400 ) (-136 880 496 ) +4 2462 2469 (-128 832 488 ) (-128 832 560 ) (-136 832 560 ) (-136 832 488 ) +4 2462 2466 (-136 832 488 ) (-136 832 560 ) (-136 848 560 ) (-136 848 504 ) +4 2463 2465 (-640 880 496 ) (-640 896 496 ) (-152 896 496 ) (-152 880 496 ) +4 2463 2464 (-640 880 560 ) (-640 880 527.998108 ) (-152 880 527.998108 ) (-152 880 560 ) +4 2463 2467 (-640 880 560 ) (-640 896 560 ) (-640 896 496 ) (-640 880 496 ) +4 2464 2466 (-640 848 560 ) (-640 848 496 ) (-152 848 496 ) (-152 848 560 ) +5 2464 2467 (-640 848 496 ) (-640 848 560 ) (-640 880 560 ) (-640 880 527.998108 ) (-640 848.001953 496 ) +4 2465 2468 (-640 880 400 ) (-640 896 400 ) (-136 896 400 ) (-136 880 400 ) +4 2465 2467 (-640 896 400 ) (-640 880 400 ) (-640 880 496 ) (-640 896 496 ) +4 2466 2483 (-544 832 560 ) (-640 832 560 ) (-640 832 479.998016 ) (-544 832 479.998016 ) +4 2466 2480 (-448 832 560 ) (-544 832 560 ) (-544 832 479.998016 ) (-448 832 479.998016 ) +4 2466 2479 (-384 832 560 ) (-448 832 560 ) (-448 832 479.998016 ) (-384 832 479.998016 ) +4 2466 2474 (-224 832 560 ) (-384 832 560 ) (-384 832 479.998016 ) (-224 832 479.998016 ) +4 2466 2470 (-136 832 560 ) (-224 832 560 ) (-224 832 479.998016 ) (-136 832 479.998016 ) +4 2466 2467 (-640 832 479.998016 ) (-640 832 560 ) (-640 848 560 ) (-640 848 495.998047 ) +4 2467 2541 (-1024 1024 560 ) (-1024 1024 400 ) (-1024 832 400 ) (-1024 832 560 ) +4 2467 2484 (-640 832 560 ) (-1024 832 560 ) (-1024 832 400 ) (-640 832 400 ) +4 2467 2468 (-640 832 400 ) (-1024 832 400 ) (-1024 1024 400 ) (-640 1024 400 ) +4 2468 2546 (-1024 1024 64 ) (-1024 1024 -1284 ) (-1024 832 -1284 ) (-1024 832 64 ) +4 2468 2541 (-1024 1024 400 ) (-1024 1024 64 ) (-1024 832 64 ) (-1024 832 400 ) +4 2468 2486 (-544 832 -1284 ) (-448 832 -1284 ) (-448 832 64 ) (-544 832 64 ) +4 2468 2485 (-448 832 -1284 ) (-384 832 -1284 ) (-384 832 64 ) (-448 832 64 ) +4 2468 2488 (-1024 832 64 ) (-1024 832 -1284 ) (-544 832 -1284 ) (-544 832 64 ) +4 2468 2484 (-640 832 400 ) (-1024 832 400 ) (-1024 832 64 ) (-640 832 64 ) +4 2468 2478 (-384 832 64 ) (-384 832 -1284 ) (-288 832 -1284 ) (-288 832 64 ) +4 2468 2476 (-288 832 -1284 ) (-224 832 -1284 ) (-224 832 64 ) (-288 832 64 ) +4 2468 2473 (-128 832 -1284 ) (-128 832 64 ) (-224 832 64 ) (-224 832 -1284 ) +3 2469 2492 (-128 768 424 ) (-136 768 428 ) (-136 768 424 ) +4 2469 2490 (-128 768 424 ) (-128 768 5542.669922 ) (-136 768 5542.669922 ) (-136 768 428 ) +4 2469 2470 (-136 832 5542.669922 ) (-136 832 488 ) (-136 768 424 ) (-136 768 5542.669922 ) +4 2470 2494 (-224 768 5542.669922 ) (-224 768 415.998047 ) (-136 768 415.998047 ) (-136 768 5542.669922 ) +4 2470 2474 (-224 832 5542.669922 ) (-224 832 479.998047 ) (-224 768 415.998047 ) (-224 768 5542.669922 ) +4 2471 2506 (-128 768 256 ) (-128 768 304 ) (-224 768 304 ) (-224 768 256 ) +4 2471 2500 (-128 768 304 ) (-128 768 320 ) (-224 768 320 ) (-224 768 304 ) +5 2471 2499 (-128 768 320 ) (-128 768 336 ) (-176 768 344 ) (-224 768 336 ) (-224 768 320 ) +5 2472 2511 (-128 768 96 ) (-128 768 176 ) (-176 768 184 ) (-224 768 176 ) (-224 768 96 ) +4 2473 2537 (-128 768 -1284 ) (-128 768 -128 ) (-224 768 -128 ) (-224 768 -1284 ) +4 2473 2536 (-128 768 -128 ) (-128 768 0 ) (-224 768 0 ) (-224 768 -128 ) +4 2473 2476 (-224 832 64 ) (-224 832 -1284 ) (-224 768 -1284 ) (-224 768 64 ) +4 2474 2494 (-224 768 415.998047 ) (-224 768 5542.669922 ) (-384 768 5542.669922 ) (-384 768 415.998047 ) +4 2474 2479 (-384 832 5542.669922 ) (-384 832 479.998047 ) (-384 768 415.998047 ) (-384 768 5542.669922 ) +4 2475 2506 (-384 768 304 ) (-384 768 256 ) (-288 768 256 ) (-288 768 304 ) +4 2475 2500 (-384 768 320 ) (-384 768 304 ) (-288 768 304 ) (-288 768 320 ) +5 2475 2499 (-384 768 336 ) (-384 768 320 ) (-288 768 320 ) (-288 768 336 ) (-336 768 344 ) +4 2476 2540 (-224 768 -1284 ) (-224 768 -64 ) (-288 768 -64 ) (-288 768 -1284 ) +4 2476 2538 (-224 768 -64 ) (-224 768 0 ) (-288 768 0 ) (-288 768 -64 ) +4 2476 2478 (-288 768 -1284 ) (-288 768 64 ) (-288 832 64 ) (-288 832 -1284 ) +5 2477 2511 (-288 768 96 ) (-288 768 176 ) (-336 768 184 ) (-384 768 176 ) (-384 768 96 ) +4 2478 2540 (-288 768 -1284 ) (-288 768 -64 ) (-384 768 -64 ) (-384 768 -1284 ) +4 2478 2538 (-288 768 -64 ) (-288 768 0 ) (-384 768 0 ) (-384 768 -64 ) +4 2478 2485 (-384 832 64 ) (-384 832 -1284 ) (-384 768 -1284 ) (-384 768 64 ) +4 2479 2494 (-384 768 415.998047 ) (-384 768 5542.669922 ) (-448 768 5542.669922 ) (-448 768 415.998047 ) +4 2479 2480 (-448 832 5542.669922 ) (-448 832 479.998047 ) (-448 768 415.998047 ) (-448 768 5542.669922 ) +4 2480 2494 (-544 768 5542.669922 ) (-544 768 415.998047 ) (-448 768 415.998047 ) (-448 768 5542.669922 ) +4 2480 2483 (-544 832 5542.669922 ) (-544 832 479.998047 ) (-544 768 415.998047 ) (-544 768 5542.669922 ) +4 2481 2506 (-544 768 304 ) (-544 768 256 ) (-448 768 256 ) (-448 768 304 ) +4 2481 2500 (-544 768 320 ) (-544 768 304 ) (-448 768 304 ) (-448 768 320 ) +5 2481 2499 (-544 768 336 ) (-544 768 320 ) (-448 768 320 ) (-448 768 336 ) (-496 768 344 ) +4 2482 2514 (-544 768 96 ) (-544 768 88 ) (-448 768 88 ) (-448 768 96 ) +5 2482 2511 (-544 768 176 ) (-544 768 96 ) (-448 768 96 ) (-448 768 176 ) (-496 768 184 ) +4 2482 2515 (-544 768 88 ) (-544 768 64 ) (-448 768 64 ) (-448 768 88 ) +4 2483 2494 (-640 768 5542.669922 ) (-640 768 415.998047 ) (-544 768 415.998047 ) (-544 768 5542.669922 ) +4 2483 2484 (-640 832 5542.669922 ) (-640 832 479.998047 ) (-640 768 415.998047 ) (-640 768 5542.669922 ) +4 2484 2541 (-1024 768 64 ) (-1024 768 5542.669922 ) (-1024 832 5542.669922 ) (-1024 832 64 ) +4 2484 2527 (-1024 768 304 ) (-1024 768 64 ) (-640 768 64 ) (-640 768 304 ) +4 2484 2501 (-1024 768 320 ) (-1024 768 304 ) (-640 768 304 ) (-640 768 320 ) +4 2484 2499 (-1024 768 384 ) (-1024 768 320 ) (-640 768 320 ) (-640 768 384 ) +4 2484 2498 (-1024 768 400 ) (-1024 768 384 ) (-640 768 384 ) (-640 768 400 ) +4 2484 2495 (-1024 768 5542.669922 ) (-1024 768 400 ) (-640 768 400 ) (-640 768 5542.669922 ) +4 2484 2488 (-1024 832 64 ) (-640 832 64 ) (-640 768 64 ) (-1024 768 64 ) +4 2485 2540 (-384 768 -1284 ) (-384 768 -64 ) (-448 768 -64 ) (-448 768 -1284 ) +4 2485 2538 (-384 768 -64 ) (-384 768 0 ) (-448 768 0 ) (-448 768 -64 ) +4 2485 2487 (-448 784 -1284 ) (-448 768 -1284 ) (-448 768 0 ) (-448 784 0 ) +4 2485 2486 (-448 832 -1284 ) (-448 784 -1284 ) (-448 784 64 ) (-448 832 64 ) +4 2486 2487 (-544 784 0 ) (-544 784 -1284 ) (-448 784 -1284 ) (-448 784 0 ) +4 2486 2488 (-544 832 -1284 ) (-544 784 -1284 ) (-544 784 64 ) (-544 832 64 ) +4 2487 2540 (-544 768 -64 ) (-544 768 -1284 ) (-448 768 -1284 ) (-448 768 -64 ) +4 2487 2538 (-544 768 0 ) (-544 768 -64 ) (-448 768 -64 ) (-448 768 0 ) +4 2487 2488 (-544 784 -1284 ) (-544 768 -1284 ) (-544 768 0 ) (-544 784 0 ) +4 2488 2546 (-1024 768 -1284 ) (-1024 768 64 ) (-1024 832 64 ) (-1024 832 -1284 ) +4 2488 2540 (-1024 768 -64 ) (-1024 768 -1284 ) (-544 768 -1284 ) (-544 768 -64 ) +4 2488 2538 (-640 768 -64 ) (-544 768 -64 ) (-544 768 0 ) (-640 768 0 ) +4 2488 2539 (-1024 768 0 ) (-1024 768 -64 ) (-640 768 -64 ) (-640 768 0 ) +4 2489 2497 (-64 768 400 ) (0 768 400 ) (0 752 400 ) (-96 752 400 ) +4 2489 2491 (-120 756.001953 400 ) (-120 752 400 ) (-120 752 404 ) (-120 756.001892 408.001923 ) +4 2489 2490 (-120 752 404 ) (-120 752 5542.669922 ) (-120 768 5542.669922 ) (-120 768 420 ) +4 2489 2493 (0 752 5542.669922 ) (-120 752 5542.669922 ) (-120 752 400 ) (0 752 400 ) +4 2490 2494 (-136 768 5542.669922 ) (-136 768 428 ) (-136 752 412 ) (-136 752 5542.669922 ) +5 2490 2492 (-128 752.001953 408.001923 ) (-128.003815 752 408.001923 ) (-136 752 412 ) (-136 768 428 ) (-128 768 424 ) +3 2490 2491 (-120 756.001892 408.001923 ) (-120 752 404 ) (-128.003815 752 408.001923 ) +4 2490 2493 (-120 752 5542.669922 ) (-136 752 5542.669922 ) (-136 752 412 ) (-120 752 404 ) +5 2491 2493 (-128.003891 752 400.001984 ) (-128 752 400 ) (-120 752 400 ) (-120 752 404 ) (-128.003815 752 408.001923 ) +4 2492 2494 (-136 768 428 ) (-136 768 424 ) (-136 752 408 ) (-136 752 412 ) +4 2492 2493 (-136 752 412 ) (-136 752 408 ) (-128.003815 752 408 ) (-128.003815 752 408.001923 ) +4 2493 2505 (-136 432 400 ) (0 432 400 ) (0 432 1152 ) (-136 432 1016 ) +4 2493 2503 (0 432 1152 ) (0 432 5542.669922 ) (-136 432 5542.669922 ) (-136 432 1016 ) +4 2493 2497 (-96 752 400 ) (0 752 400 ) (0 736 400 ) (-128 736 400 ) +4 2493 2496 (0 432 400 ) (-136 432 400 ) (-136 736 400 ) (0 736 400 ) +4 2493 2494 (-136 752 400 ) (-136 432 400 ) (-136 432 5542.669922 ) (-136 752 5542.669922 ) +4 2494 2505 (-640 432 400 ) (-136 432 400 ) (-136 432 1016 ) (-640 432 512 ) +4 2494 2503 (-136 432 1016 ) (-136 432 5542.669922 ) (-640 432 5542.669922 ) (-640 432 512 ) +4 2494 2496 (-136 432 400 ) (-640 432 400 ) (-640 736 400 ) (-136 736 400 ) +5 2494 2495 (-640 752.001953 400 ) (-640 432 400 ) (-640 432 5542.669922 ) (-640 768 5542.669922 ) (-640 768 415.998047 ) +4 2495 2542 (-1024 768 5542.669922 ) (-1024 768 400 ) (-1024 448 400 ) (-1024 448 5542.669922 ) +4 2495 2544 (-1024 448 400 ) (-1024 432 400 ) (-1024 432 5542.669922 ) (-1024 448 5542.669922 ) +4 2495 2505 (-688 432 400 ) (-640 432 400 ) (-640 432 512 ) (-720 432 432 ) +5 2495 2503 (-1024 432 5542.669922 ) (-1024 432 400 ) (-752 432 400 ) (-640 432 512 ) (-640 432 5542.669922 ) +4 2495 2498 (-640 432 400 ) (-1024 432 400 ) (-1024 768 400 ) (-640 768 400 ) +4 2496 2505 (-640 432 384 ) (0 432 384 ) (0 432 400 ) (-640 432 400 ) +4 2496 2499 (-640 448 384 ) (-640 752 384 ) (0 752 384 ) (0 448 384 ) +4 2496 2502 (0 432 384 ) (-640 432 384 ) (-640 448 384 ) (0 448 384 ) +4 2496 2497 (0 752 384 ) (-128 752 384 ) (-128 736 400 ) (0 736 400 ) +4 2496 2498 (-640 752 384 ) (-640 432 384 ) (-640 432 400 ) (-640 736 400 ) +4 2497 2499 (-96 768 384 ) (0 768 384 ) (0 752 384 ) (-128 752 384 ) +4 2498 2542 (-1024 768 400 ) (-1024 768 384 ) (-1024 448 384 ) (-1024 448 400 ) +4 2498 2544 (-1024 448 384 ) (-1024 432 384 ) (-1024 432 400 ) (-1024 448 400 ) +4 2498 2505 (-672 432 384 ) (-640 432 384 ) (-640 432 400 ) (-688 432 400 ) +4 2498 2503 (-1024 432 400 ) (-1024 432 384 ) (-768 432 384 ) (-752 432 400 ) +4 2498 2499 (-1024 448 384 ) (-1024 768 384 ) (-640 768 384 ) (-640 448 384 ) +4 2498 2502 (-640 432 384 ) (-1024 432 384 ) (-1024 448 384 ) (-640 448 384 ) +4 2499 2542 (-1024 768 384 ) (-1024 768 320 ) (-1024 448 320 ) (-1024 448 384 ) +4 2499 2501 (-640 448 320 ) (-1024 448 320 ) (-1024 768 320 ) (-640 768 320 ) +4 2499 2500 (0 448 320 ) (-640 448 320 ) (-640 768 320 ) (0 768 320 ) +4 2499 2502 (0 448 320 ) (0 448 384 ) (-1024 448 384 ) (-1024 448 320 ) +4 2500 2526 (-640 768 304 ) (-576 768 304 ) (-576 448 304 ) (-640 448 304 ) +4 2500 2516 (0 760 304 ) (0 448 304 ) (-576 448 304 ) (-576 760 304 ) +4 2500 2506 (-576 768 304 ) (0 768 304 ) (0 760 304 ) (-576 760 304 ) +4 2500 2502 (-640 448 304 ) (0 448 304 ) (0 448 320 ) (-640 448 320 ) +4 2500 2501 (-640 768 304 ) (-640 448 304 ) (-640 448 320 ) (-640 768 320 ) +4 2501 2543 (-1024 768 320 ) (-1024 768 304 ) (-1024 448 304 ) (-1024 448 320 ) +4 2501 2527 (-1024 448 304 ) (-1024 768 304 ) (-640 768 304 ) (-640 448 304 ) +4 2501 2502 (-1024 448 304 ) (-640 448 304 ) (-640 448 320 ) (-1024 448 320 ) +4 2502 2544 (-1024 448 304 ) (-1024 432 304 ) (-1024 432 384 ) (-1024 448 384 ) +4 2502 2529 (-1024 432 304 ) (-1024 448 304 ) (-848 448 304 ) (-848 432 304 ) +4 2502 2516 (-576 448 304 ) (0 448 304 ) (0 432 304 ) (-576 432 304 ) +4 2502 2505 (-592 432 304 ) (0 432 304 ) (0 432 384 ) (-672 432 384 ) +4 2502 2503 (-1024 432 384 ) (-1024 432 304 ) (-848 432 304 ) (-768 432 384 ) +4 2503 2544 (-1024 16 5542.669922 ) (-1024 432 5542.669922 ) (-1024 432 304 ) (-1024 16 304 ) +4 2503 2535 (-1024 16 304 ) (-1024 64 304 ) (-848 64 304 ) (-848 16 304 ) +4 2503 2530 (-1024 64 304 ) (-1024 208 304 ) (-848 208 304 ) (-848 64 304 ) +4 2503 2529 (-1024 208 304 ) (-1024 432 304 ) (-848 432 304 ) (-848 208 304 ) +4 2503 2505 (-720 432 432 ) (0 432 1152 ) (0 16 1152 ) (-720 16 432 ) +5 2503 2504 (-720.007690 16 432 ) (0 16 1152.006836 ) (0 16 5542.669922 ) (-1024 16 5542.669922 ) (-1024 16 432 ) +5 2504 2710 (-152 0 5542.669922 ) (-1024 0 5542.669922 ) (-1024 0 416 ) (-736 0 416 ) (-152 0 1000 ) +4 2504 2663 (-128 0 5542.669922 ) (-152 0 5542.669922 ) (-152 0 1000 ) (-128 0 1024 ) +4 2504 2556 (0 0 1152 ) (0 0 5542.669922 ) (-128 0 5542.669922 ) (-128 0 1024 ) +4 2504 2544 (-1024 0 416 ) (-1024 0 5542.669922 ) (-1024 16 5542.669922 ) (-1024 16 432 ) +4 2504 2505 (0 0 1152 ) (-720 0 432 ) (-720 16 432 ) (0 16 1152 ) +4 2505 2777 (-608 0 320 ) (-592 0 304 ) (-144 0 304 ) (-144 0 320 ) +4 2505 2767 (-144 0 304 ) (-140 0 304 ) (-140 0 320 ) (-144 0 320 ) +4 2505 2757 (-140 0 304 ) (-128 0 304 ) (-128 0 320 ) (-140 0 320 ) +4 2505 2712 (-704 0 416 ) (-608 0 320 ) (-152 0 320 ) (-152 0 416 ) +4 2505 2711 (-152 0 1000 ) (-720 0 432 ) (-704 0 416 ) (-152 0 416 ) +4 2505 2667 (-144 0 320 ) (-128 0 320 ) (-128 0 368 ) (-144 0 368 ) +4 2505 2669 (-152 0 368 ) (-152 0 320 ) (-144 0 320 ) (-144 0 368 ) +4 2505 2665 (-152 0 523.199951 ) (-152 0 368 ) (-128 0 368 ) (-128 0 523.200012 ) +4 2505 2663 (-128 0 1024 ) (-152 0 1000 ) (-152 0 717.333313 ) (-128 0 717.333313 ) +4 2505 2662 (-152 0 717.333313 ) (-152 0 523.199951 ) (-128 0 523.200012 ) (-128 0 717.333313 ) +4 2505 2557 (0 0 717.333252 ) (0 0 725.333374 ) (-128 0 725.333374 ) (-128 0 717.333313 ) +4 2505 2556 (0 0 725.333374 ) (0 0 1152 ) (-128 0 1024 ) (-128 0 725.333374 ) +4 2505 2553 (0 0 304 ) (0 0 336 ) (-128 0 336 ) (-128 0 304 ) +4 2505 2547 (0 0 336 ) (0 0 717.333252 ) (-128 0 717.333313 ) (-128 0 336 ) +4 2505 2516 (0 0 304 ) (-576 0 304 ) (-576 432 304 ) (0 432 304 ) +4 2506 2526 (-576 760 304 ) (-576 768 304 ) (-576 768 256 ) (-576 760 256 ) +4 2506 2516 (-576 760 304 ) (-576 760 256 ) (0 760 256 ) (0 760 304 ) +4 2506 2509 (-392 760 256 ) (-440 760 256 ) (-440 768 256 ) (-392 768 256 ) +4 2506 2510 (-552 760 256 ) (-576 760 256 ) (-576 768 256 ) (-552 768 256 ) +4 2506 2508 (-232 760 256 ) (-280 760 256 ) (-280 768 256 ) (-232 768 256 ) +4 2506 2507 (0 760 256 ) (-120 760 256 ) (-120 768 256 ) (0 768 256 ) +4 2507 2516 (-120 760 248 ) (0 760 248 ) (0 760 256 ) (-120 760 256 ) +4 2507 2511 (0 760 248 ) (-120 760 248 ) (-120 768 248 ) (0 768 248 ) +4 2508 2516 (-280 760 248 ) (-232 760 248 ) (-232 760 256 ) (-280 760 256 ) +4 2508 2511 (-232 760 248 ) (-280 760 248 ) (-280 768 248 ) (-232 768 248 ) +4 2509 2516 (-440 760 248 ) (-392 760 248 ) (-392 760 256 ) (-440 760 256 ) +4 2509 2511 (-392 760 248 ) (-440 760 248 ) (-440 768 248 ) (-392 768 248 ) +4 2510 2526 (-576 768 256 ) (-576 768 248 ) (-576 760 248 ) (-576 760 256 ) +4 2510 2516 (-576 760 256 ) (-576 760 248 ) (-552 760 248 ) (-552 760 256 ) +4 2510 2511 (-552 760 248 ) (-576 760 248 ) (-576 768 248 ) (-552 768 248 ) +4 2511 2526 (-576 768 248 ) (-576 768 96 ) (-576 760 96 ) (-576 760 248 ) +4 2511 2516 (-576 760 248 ) (-576 760 96 ) (0 760 96 ) (0 760 248 ) +4 2511 2513 (-232 760 96 ) (-280 760 96 ) (-280 768 96 ) (-232 768 96 ) +4 2511 2514 (-392 760 96 ) (-576 760 96 ) (-576 768 96 ) (-392 768 96 ) +4 2511 2512 (0 760 96 ) (-120 760 96 ) (-120 768 96 ) (0 768 96 ) +4 2512 2516 (-120 760 88 ) (0 760 88 ) (0 760 96 ) (-120 760 96 ) +4 2512 2515 (0 760 88 ) (-120 760 88 ) (-120 768 88 ) (0 768 88 ) +4 2513 2516 (-280 760 88 ) (-232 760 88 ) (-232 760 96 ) (-280 760 96 ) +4 2513 2515 (-232 760 88 ) (-280 760 88 ) (-280 768 88 ) (-232 768 88 ) +4 2514 2526 (-576 768 96 ) (-576 768 88 ) (-576 760 88 ) (-576 760 96 ) +4 2514 2516 (-576 760 96 ) (-576 760 88 ) (-392 760 88 ) (-392 760 96 ) +4 2514 2515 (-392 760 88 ) (-576 760 88 ) (-576 768 88 ) (-392 768 88 ) +4 2515 2526 (-576 768 88 ) (-576 768 64 ) (-576 760 64 ) (-576 760 88 ) +4 2515 2517 (-576 760 70 ) (-576 760 64 ) (0 760 64 ) (0 760 70 ) +4 2515 2516 (-576 760 88 ) (-576 760 70 ) (0 760 70 ) (0 760 88 ) +4 2516 2883 (-576 0 240 ) (-576 0 70 ) (-560 0 70 ) (-560 0 240 ) +4 2516 2882 (-560 0 70 ) (-144 0 70 ) (-144 0 240 ) (-560 0 240 ) +4 2516 2864 (-144 0 70 ) (-128 0 70 ) (-128 0 240 ) (-144 0 240 ) +4 2516 2797 (-144 0 304 ) (-576 0 304 ) (-576 0 240 ) (-144 0 240 ) +4 2516 2767 (-140 0 304 ) (-144 0 304 ) (-144 0 240 ) (-140 0 240 ) +4 2516 2757 (-128 0 304 ) (-140 0 304 ) (-140 0 240 ) (-128 0 240 ) +4 2516 2592 (0 0 70 ) (0 0 216 ) (-128 0 216 ) (-128 0 70 ) +4 2516 2563 (0 0 216 ) (0 0 240 ) (-128 0 240 ) (-128 0 216 ) +4 2516 2553 (0 0 240 ) (0 0 304 ) (-128 0 304 ) (-128 0 240 ) +4 2516 2531 (-576 208 160 ) (-576 208 96 ) (-576 144 96 ) (-576 144 160 ) +4 2516 2532 (-576 128 96 ) (-576 64 96 ) (-576 64 160 ) (-576 128 160 ) +4 2516 2526 (-576 448 304 ) (-576 760 304 ) (-576 760 70 ) (-576 448 70 ) +4 2516 2519 (-384 0 70 ) (-576 0 70 ) (-576 192 70 ) (-384 192 70 ) +4 2516 2518 (0 0 70 ) (-384 0 70 ) (-384 192 70 ) (0 192 70 ) +7 2516 2517 (-576 452 70 ) (-576 760 70 ) (0 760 70 ) (0 478.545441 70 ) (-8 476 70 ) (-100 456 70 ) (-192 452 70 ) +4 2517 2526 (-576 452 70 ) (-576 760 70 ) (-576 760 64 ) (-576 452 64 ) +4 2518 2882 (-144 0 70 ) (-384 0 70 ) (-384 0 64 ) (-144 0 64 ) +4 2518 2864 (-128 0 70 ) (-144 0 70 ) (-144 0 64 ) (-128 0 64 ) +4 2518 2592 (0 0 64 ) (0 0 70 ) (-128 0 70 ) (-128 0 64 ) +4 2518 2524 (0 0 64 ) (-384 0 64 ) (-384 192 64 ) (0 192 64 ) +4 2518 2519 (-384 192 70 ) (-384 175.542847 64 ) (-384 0 64 ) (-384 0 70 ) +4 2519 2883 (-560 0 70 ) (-576 0 70 ) (-576 0 64 ) (-560 0 64 ) +4 2519 2882 (-384 0 70 ) (-560 0 70 ) (-560 0 64 ) (-384 0 64 ) +4 2519 2525 (-384 0 64 ) (-576 0 64 ) (-576 175.542847 64 ) (-384 175.542847 64 ) +3 2520 2536 (0 478.545441 0 ) (0 448 0 ) (-96 448 0 ) +4 2520 2521 (-7.994208 476.001251 0 ) (-95.998047 448 0 ) (-95.998047 448 64 ) (-7.993927 476.001312 64 ) +3 2521 2536 (-8 476 0 ) (-96 448 0 ) (-136.799911 448 0 ) +4 2521 2522 (-100 456 0 ) (-136.800400 448 0 ) (-136.800400 448 64 ) (-100 456 64 ) +3 2522 2536 (-100 456 0 ) (-136.799911 448 0 ) (-192 448 0 ) +4 2523 2538 (-224 192 0 ) (-576 192 0 ) (-576 432 0 ) (-224 432 0 ) +4 2523 2536 (0 432 0 ) (0 192 0 ) (-224 192 0 ) (-224 432 0 ) +4 2523 2524 (0 192 64 ) (-384 192 64 ) (-384 192 0 ) (0 192 0 ) +4 2524 2882 (-144 0 64 ) (-384 0 64 ) (-384 0 0 ) (-144 0 0 ) +4 2524 2864 (-128 0 64 ) (-144 0 64 ) (-144 0 0 ) (-128 0 0 ) +4 2524 2592 (0 0 0 ) (0 0 64 ) (-128 0 64 ) (-128 0 0 ) +4 2524 2538 (-384 64 0 ) (-384 192 0 ) (-224 192 0 ) (-224 64 0 ) +4 2524 2536 (0 192 0 ) (0 64 0 ) (-224 64 0 ) (-224 192 0 ) +3 2524 2525 (-384 0 0 ) (-384 0 64 ) (-384 175.542847 64 ) +4 2525 2883 (-560 0 64 ) (-576 0 64 ) (-576 0 48 ) (-560 0 48 ) +4 2525 2882 (-384 0 64 ) (-560 0 64 ) (-560 0 0 ) (-384 0 0 ) +4 2526 2527 (-640 768 64 ) (-640 448 64 ) (-640 448 304 ) (-640 768 304 ) +4 2527 2543 (-1024 448 304 ) (-1024 768 304 ) (-1024 768 64 ) (-1024 448 64 ) +4 2527 2529 (-848 448 304 ) (-1024 448 304 ) (-1024 448 64 ) (-848 448 64 ) +4 2528 2538 (-592 432 0 ) (-592 208 0 ) (-640 208 0 ) (-640 432 0 ) +4 2528 2539 (-640 208 0 ) (-848 208 0 ) (-848 432 0 ) (-640 432 0 ) +4 2528 2534 (-848 208 0 ) (-592 208 0 ) (-592 208 96 ) (-848 208 96 ) +4 2528 2533 (-592 208 96 ) (-592 208 160 ) (-848 208 160 ) (-848 208 96 ) +4 2528 2530 (-592 208 160 ) (-592 208 304 ) (-848 208 304 ) (-848 208 160 ) +4 2528 2529 (-848 432 0 ) (-848 208 0 ) (-848 208 304 ) (-848 432 304 ) +4 2529 2546 (-1024 448 64 ) (-1024 448 0 ) (-1024 208 0 ) (-1024 208 64 ) +4 2529 2544 (-1024 208 304 ) (-1024 448 304 ) (-1024 448 64 ) (-1024 208 64 ) +4 2529 2539 (-1024 208 0 ) (-1024 448 0 ) (-848 448 0 ) (-848 208 0 ) +4 2529 2534 (-1024 208 0 ) (-848 208 0 ) (-848 208 96 ) (-1024 208 96 ) +4 2529 2533 (-848 208 96 ) (-848 208 160 ) (-1024 208 160 ) (-1024 208 96 ) +4 2529 2530 (-848 208 160 ) (-848 208 304 ) (-1024 208 304 ) (-1024 208 160 ) +4 2530 2544 (-1024 64 304 ) (-1024 208 304 ) (-1024 208 160 ) (-1024 64 160 ) +4 2530 2535 (-592 64 304 ) (-1024 64 304 ) (-1024 64 160 ) (-592 64 160 ) +4 2530 2533 (-592 64 160 ) (-1024 64 160 ) (-1024 208 160 ) (-592 208 160 ) +4 2533 2544 (-1024 208 160 ) (-1024 208 96 ) (-1024 64 96 ) (-1024 64 160 ) +4 2533 2535 (-592 64 160 ) (-1024 64 160 ) (-1024 64 96 ) (-592 64 96 ) +4 2533 2534 (-592 64 96 ) (-1024 64 96 ) (-1024 208 96 ) (-592 208 96 ) +4 2534 2546 (-1024 208 64 ) (-1024 208 0 ) (-1024 64 0 ) (-1024 64 64 ) +4 2534 2544 (-1024 208 96 ) (-1024 208 64 ) (-1024 64 64 ) (-1024 64 96 ) +4 2534 2538 (-640 208 0 ) (-592 208 0 ) (-592 64 0 ) (-640 64 0 ) +4 2534 2539 (-1024 64 0 ) (-1024 208 0 ) (-640 208 0 ) (-640 64 0 ) +4 2534 2535 (-1024 64 0 ) (-592 64 0 ) (-592 64 96 ) (-1024 64 96 ) +4 2535 2956 (-1024 0 240 ) (-1024 0 0 ) (-960 0 0 ) (-960 0 240 ) +4 2535 2954 (-960 0 0 ) (-864 0 0 ) (-864 0 240 ) (-960 0 240 ) +4 2535 2952 (-864 0 0 ) (-848 0 0 ) (-848 0 240 ) (-864 0 240 ) +4 2535 2948 (-848 0 0 ) (-832 0 0 ) (-832 0 240 ) (-848 0 240 ) +4 2535 2884 (-832 0 0 ) (-592 0 0 ) (-592 0 240 ) (-832 0 240 ) +4 2535 2858 (-1024 0 256 ) (-1024 0 240 ) (-960 0 240 ) (-960 0 256 ) +4 2535 2849 (-960 0 240 ) (-848 0 240 ) (-848 0 256 ) (-960 0 256 ) +4 2535 2835 (-864 0 304 ) (-1024 0 304 ) (-1024 0 256 ) (-864 0 256 ) +4 2535 2833 (-848 0 304 ) (-864 0 304 ) (-864 0 256 ) (-848 0 256 ) +4 2535 2801 (-752 0 304 ) (-848 0 304 ) (-848 0 240 ) (-752 0 240 ) +4 2535 2799 (-688 0 304 ) (-752 0 304 ) (-752 0 240 ) (-688 0 240 ) +4 2535 2798 (-592 0 304 ) (-688 0 304 ) (-688 0 240 ) (-592 0 240 ) +4 2535 2546 (-1024 0 0 ) (-1024 0 64 ) (-1024 64 64 ) (-1024 64 0 ) +4 2535 2544 (-1024 0 64 ) (-1024 0 304 ) (-1024 64 304 ) (-1024 64 64 ) +4 2535 2539 (-1024 0 0 ) (-1024 64 0 ) (-640 64 0 ) (-640 0 0 ) +4 2536 2540 (-224 768 -64 ) (-224 768 -128 ) (-224 64 -128 ) (-224 64 -64 ) +4 2536 2538 (-224 64 0 ) (-224 768 0 ) (-224 768 -64 ) (-224 64 -64 ) +4 2536 2537 (-224 64 -128 ) (-224 768 -128 ) (0 768 -128 ) (0 64 -128 ) +4 2537 3047 (-128 0 -128 ) (-224 0 -128 ) (-224 0 -1284 ) (-128 0 -1284 ) +4 2537 2654 (0 0 -1284 ) (0 0 -128 ) (-128 0 -128 ) (-128 0 -1284 ) +4 2537 2540 (-224 0 -1284 ) (-224 0 -128 ) (-224 768 -128 ) (-224 768 -1284 ) +4 2538 2540 (-640 768 -64 ) (-224 768 -64 ) (-224 64 -64 ) (-640 64 -64 ) +4 2538 2539 (-640 768 -64 ) (-640 64 -64 ) (-640 64 0 ) (-640 768 0 ) +4 2539 3039 (-832 0 0 ) (-960 0 0 ) (-960 0 -64 ) (-832 0 -64 ) +4 2539 3040 (-960 0 0 ) (-1024 0 0 ) (-1024 0 -64 ) (-960 0 -64 ) +4 2539 3036 (-640 0 0 ) (-832 0 0 ) (-832 0 -64 ) (-640 0 -64 ) +4 2539 2546 (-1024 0 -64 ) (-1024 0 0 ) (-1024 768 0 ) (-1024 768 -64 ) +4 2539 2540 (-1024 0 -64 ) (-1024 768 -64 ) (-640 768 -64 ) (-640 0 -64 ) +4 2540 3047 (-224 0 -1284 ) (-224 0 -128 ) (-1024 0 -128 ) (-1024 0 -1284 ) +4 2540 3041 (-224 0 -128 ) (-224 0 -64 ) (-1024 0 -64 ) (-1024 0 -128 ) +4 2540 2546 (-1024 0 -1284 ) (-1024 0 -64 ) (-1024 768 -64 ) (-1024 768 -1284 ) +4 2541 2546 (-1040 768 64 ) (-1040 1024 64 ) (-1024 1024 64 ) (-1024 768 64 ) +4 2541 2543 (-1040 768 320 ) (-1040 768 64 ) (-1024 768 64 ) (-1024 768 320 ) +4 2541 2542 (-1040 768 5542.669922 ) (-1040 768 320 ) (-1024 768 320 ) (-1024 768 5542.669922 ) +4 2541 2545 (-1040 1024 64 ) (-1040 768 64 ) (-1040 768 5542.669922 ) (-1040 1024 5542.669922 ) +4 2542 2545 (-1040 448 320 ) (-1040 448 5542.669922 ) (-1040 768 5542.669922 ) (-1040 768 320 ) +4 2542 2544 (-1040 448 5542.669922 ) (-1040 448 320 ) (-1024 448 320 ) (-1024 448 5542.669922 ) +4 2542 2543 (-1024 448 320 ) (-1040 448 320 ) (-1040 768 320 ) (-1024 768 320 ) +4 2543 2546 (-1040 448 64 ) (-1040 768 64 ) (-1024 768 64 ) (-1024 448 64 ) +4 2543 2545 (-1040 768 64 ) (-1040 448 64 ) (-1040 448 320 ) (-1040 768 320 ) +4 2543 2544 (-1040 448 320 ) (-1040 448 64 ) (-1024 448 64 ) (-1024 448 320 ) +4 2544 3051 (-1040 0 64 ) (-1024 0 64 ) (-1024 0 256 ) (-1040 0 256 ) +4 2544 3048 (-1024 0 256 ) (-1024 0 5542.669922 ) (-1040 0 5542.669922 ) (-1040 0 256 ) +4 2544 2546 (-1024 0 64 ) (-1040 0 64 ) (-1040 448 64 ) (-1024 448 64 ) +4 2544 2545 (-1040 448 64 ) (-1040 0 64 ) (-1040 0 5542.669922 ) (-1040 448 5542.669922 ) +4 2545 3061 (-2048 0 64 ) (-2048 0 5542.669922 ) (-2048 1024 5542.669922 ) (-2048 1024 64 ) +4 2545 3051 (-1216 0 64 ) (-1040 0 64 ) (-1040 0 256 ) (-1216 0 256 ) +4 2545 3053 (-2048 0 256 ) (-2048 0 64 ) (-1216 0 64 ) (-1216 0 256 ) +4 2545 3048 (-2048 0 5542.669922 ) (-2048 0 256 ) (-1040 0 256 ) (-1040 0 5542.669922 ) +4 2545 2546 (-1040 0 64 ) (-2048 0 64 ) (-2048 1024 64 ) (-1040 1024 64 ) +4 2546 3061 (-2048 0 -1284 ) (-2048 0 64 ) (-2048 1024 64 ) (-2048 1024 -1284 ) +4 2546 3051 (-1216 0 -1284 ) (-1024 0 -1284 ) (-1024 0 64 ) (-1216 0 64 ) +4 2546 3053 (-2048 0 64 ) (-2048 0 -1284 ) (-1216 0 -1284 ) (-1216 0 64 ) +4 2547 2668 (-128 -88 336 ) (-128 -104 336 ) (-128 -104 368 ) (-128 -88 368 ) +4 2547 2667 (-128 0 368 ) (-128 0 336 ) (-128 -88 336 ) (-128 -88 368 ) +4 2547 2665 (-128 0 523.200012 ) (-128 0 368 ) (-128 -104 368 ) (-128 -104 440 ) +4 2547 2662 (-128 0 717.333496 ) (-128 0 523.200012 ) (-128 -104 440 ) (-128 -104 642.222351 ) +4 2547 2557 (-128 0 717.335449 ) (-128 -104 642.224304 ) (0 -104 642.224121 ) (0 0 717.335205 ) +4 2547 2553 (-128 -104 336 ) (-128 0 336 ) (0 0 336 ) (0 -104 336 ) +4 2547 2548 (0 -104 344 ) (0 -104 642.220459 ) (-128 -104 642.220459 ) (-128 -104 344 ) +3 2548 2670 (-128 -104 368 ) (-128 -104 344 ) (-128 -134 368 ) +4 2548 2665 (-128 -104 440 ) (-128 -104 368 ) (-128 -134 368 ) (-128 -164 392 ) +5 2548 2662 (-128 -224 440 ) (-128 -224 555.555664 ) (-128 -104 642.222351 ) (-128 -104 440 ) (-128 -164 392 ) +4 2548 2557 (-128 -104 642.224304 ) (-128 -224 555.557617 ) (0 -224 555.557434 ) (0 -104 642.224121 ) +4 2548 2551 (0 -224 440 ) (0 -224 555.555115 ) (-128 -224 555.555115 ) (-128 -224 440 ) +4 2548 2549 (0 -224 439.998047 ) (-128 -224 439.998047 ) (-128 -164.001221 392 ) (0 -164.001221 392 ) +4 2549 2662 (-128 -169 388 ) (-128 -224 432 ) (-128 -224 440 ) (-128 -164 392 ) +4 2549 2551 (0 -224 432 ) (0 -224 440 ) (-128 -224 440 ) (-128 -224 432 ) +4 2549 2550 (0 -224 431.998047 ) (-128 -224 431.998047 ) (-128 -169.001221 388 ) (0 -169.001221 388 ) +3 2550 2672 (-128 -224 344 ) (-128 -224 368 ) (-128 -194 368 ) +4 2550 2662 (-128 -224 368 ) (-128 -224 432 ) (-128 -169 388 ) (-128 -194 368 ) +4 2550 2551 (0 -224 344 ) (0 -224 432 ) (-128 -224 432 ) (-128 -224 344 ) +4 2551 2673 (-128 -224 336 ) (-128 -240 336 ) (-128 -240 368 ) (-128 -224 368 ) +4 2551 2662 (-128 -240 368 ) (-128 -240 544 ) (-128 -224 555.555664 ) (-128 -224 368 ) +4 2551 2557 (-128 -224 555.557617 ) (-128 -240 544.002075 ) (0 -240 544.001892 ) (0 -224 555.557434 ) +4 2551 2553 (-128 -240 336 ) (-128 -224 336 ) (0 -224 336 ) (0 -240 336 ) +4 2551 2552 (0 -240 344 ) (0 -240 544 ) (-128 -240 544 ) (-128 -240 344 ) +3 2552 2674 (-128 -240 368 ) (-128 -240 344 ) (-128 -273.230774 368 ) +4 2552 2662 (-128 -378.461578 444 ) (-128 -240 544 ) (-128 -240 368 ) (-128 -273.230774 368 ) +4 2552 2557 (-128 -240 544.002075 ) (-128 -378.462952 444.001007 ) (0 -378.462860 444 ) (0 -240 544.001892 ) +4 2553 2761 (-128 -196 240 ) (-128 -224 240 ) (-128 -224 320 ) (-128 -196 320 ) +4 2553 2759 (-128 -132 240 ) (-128 -196 240 ) (-128 -196 320 ) (-128 -132 320 ) +4 2553 2758 (-128 -104 240 ) (-128 -132 240 ) (-128 -132 320 ) (-128 -104 320 ) +4 2553 2757 (-128 0 320 ) (-128 0 240 ) (-128 -88 240 ) (-128 -88 320 ) +4 2553 2667 (-128 0 336 ) (-128 0 320 ) (-128 -88 320 ) (-128 -88 336 ) +4 2553 2563 (-128 -224 240 ) (-128 0 240 ) (0 0 240 ) (0 -224 240 ) +4 2553 2554 (0 -240 256 ) (0 -240 336 ) (-128 -240 336 ) (-128 -240 256 ) +4 2554 2555 (0 -528 256 ) (0 -528 336 ) (-128 -528 336 ) (-128 -528 256 ) +4 2555 2565 (-128 -660.923096 240 ) (-128 -544 240 ) (0 -544 240 ) (0 -660.923096 240 ) +4 2555 2562 (-128 -544 324.446411 ) (-128 -660.925781 240 ) (0 -660.925781 240 ) (0 -544 324.446381 ) +4 2555 2558 (-128 -528.002747 336 ) (-128 -544 324.446411 ) (0 -544 324.446381 ) (0 -528.002686 336 ) +3 2556 2677 (-128 -494.769287 368 ) (-128 -528 344 ) (-128 -528 368 ) +4 2556 2664 (-128 -384 448 ) (-128 -389.538513 444 ) (-128 -528 544 ) (-128 -528 552 ) +5 2556 2663 (-128 0 5542.669922 ) (-128 0 725.333496 ) (-128 -384 448 ) (-128 -528 552 ) (-128 -528 5542.669922 ) +4 2556 2656 (-128 -389.538513 444 ) (-128 -494.769287 368 ) (-128 -528 368 ) (-128 -528 544 ) +4 2556 2557 (-128 -384.002686 448.001953 ) (-128 0 725.337280 ) (0 0 725.337402 ) (0 -384.002686 448.002014 ) +4 2556 2558 (0 -528 344 ) (0 -528 5542.669922 ) (-128 -528 5542.669922 ) (-128 -528 344 ) +4 2557 2663 (-128 0 725.333496 ) (-128 0 717.333496 ) (-128 -378.461578 444 ) (-128 -384 448 ) +4 2558 2682 (-128 -528 336 ) (-128 -544 336 ) (-128 -544 368 ) (-128 -528 368 ) +4 2558 2664 (-128 -544 555.555542 ) (-128 -544 563.555542 ) (-128 -528 552 ) (-128 -528 544 ) +4 2558 2663 (-128 -544 563.555542 ) (-128 -544 5542.669922 ) (-128 -528 5542.669922 ) (-128 -528 552 ) +4 2558 2656 (-128 -544 368 ) (-128 -544 555.555542 ) (-128 -528 544 ) (-128 -528 368 ) +4 2558 2562 (-128 -544 324.444824 ) (0 -544 324.444824 ) (0 -544 336 ) (-128 -544 336 ) +4 2558 2559 (0 -544 344 ) (0 -544 5542.669922 ) (-128 -544 5542.669922 ) (-128 -544 344 ) +3 2559 2684 (-128 -544 368 ) (-128 -544 344 ) (-128 -574 368 ) +4 2559 2664 (-128 -664 642.222229 ) (-128 -664 650.222229 ) (-128 -544 563.555664 ) (-128 -544 555.555664 ) +4 2559 2663 (-128 -664 650.222229 ) (-128 -664 5542.669922 ) (-128 -544 5542.669922 ) (-128 -544 563.555664 ) +5 2559 2656 (-128 -664 440 ) (-128 -664 642.222229 ) (-128 -544 555.555664 ) (-128 -544 368 ) (-128 -574 368 ) +4 2559 2567 (-120 -664 440 ) (-8 -664 440 ) (-8 -664 5542.669922 ) (-120 -664 5542.669922 ) +4 2559 2588 (-128 -664 5542.669922 ) (-128 -664 440 ) (-120 -664 440 ) (-120 -664 5542.669922 ) +4 2559 2566 (-8 -664 440 ) (0 -664 440 ) (0 -664 5542.669922 ) (-8 -664 5542.669922 ) +4 2559 2560 (0 -664 440 ) (-128 -664 440 ) (-128 -604 392 ) (0 -604 392 ) +4 2560 2657 (-128 -664 432 ) (-128 -664 440 ) (-128 -604 392 ) (-128 -609 388 ) +4 2560 2567 (-120 -664 432 ) (-8 -664 432 ) (-8 -664 440 ) (-120 -664 440 ) +4 2560 2588 (-128 -664 440 ) (-128 -664 432 ) (-120 -664 432 ) (-120 -664 440 ) +4 2560 2566 (-8 -664 432 ) (0 -664 432 ) (0 -664 440 ) (-8 -664 440 ) +4 2560 2561 (0 -664 431.998047 ) (-128 -664 431.998047 ) (-128 -609.001282 388 ) (0 -609.001282 388 ) +3 2561 2678 (-128 -664 344 ) (-128 -664 368 ) (-128 -634 368 ) +4 2561 2657 (-128 -664 368 ) (-128 -664 432 ) (-128 -609 388 ) (-128 -634 368 ) +4 2561 2589 (-128 -664 368 ) (-128 -664 344 ) (0 -664 344 ) (0 -664 368 ) +4 2561 2567 (-120 -664 372 ) (-8 -664 372 ) (-8 -664 432 ) (-120 -664 432 ) +4 2561 2588 (-128 -664 432 ) (-128 -664 372 ) (-120 -664 372 ) (-120 -664 432 ) +4 2561 2566 (-8 -664 372 ) (0 -664 372 ) (0 -664 432 ) (-8 -664 432 ) +4 2562 2589 (-128 -664 336 ) (-128 -664 240 ) (0 -664 240 ) (0 -664 336 ) +4 2562 2565 (0 -664 240 ) (-128 -664 240 ) (-128 -660.923096 240 ) (0 -660.923096 240 ) +4 2563 2864 (-128 0 240 ) (-128 0 216 ) (-128 -88 216 ) (-128 -88 240 ) +4 2563 2592 (-128 -224 216 ) (-128 0 216 ) (0 0 216 ) (0 -224 216 ) +4 2564 2869 (-128 -240 216 ) (-128 -528 216 ) (-128 -528 240 ) (-128 -240 240 ) +4 2564 2598 (-128 -528 216 ) (-128 -240 216 ) (0 -240 216 ) (0 -528 216 ) +4 2565 2610 (-128 -664 216 ) (-128 -544 216 ) (0 -544 216 ) (0 -664 216 ) +4 2565 2589 (-128 -664 240 ) (-128 -664 216 ) (0 -664 216 ) (0 -664 240 ) +4 2566 2612 (-8 -928 372 ) (0 -928 372 ) (0 -928 511.239868 ) (-8 -928 502.334961 ) +4 2566 2611 (0 -928 511.239868 ) (0 -928 5542.669922 ) (-8 -928 5542.669922 ) (-8 -928 502.334961 ) +4 2566 2578 (-8 -708.845520 377.664001 ) (-8 -708.845581 5542.669922 ) (-8 -700 5542.669922 ) (-8 -700 377.663574 ) +4 2566 2577 (-8 -708.845520 372 ) (-8 -928 372 ) (-8 -928 5542.669922 ) (-8 -708.845581 5542.669922 ) +4 2566 2576 (-8 -691.140381 372 ) (-8 -700 372 ) (-8 -700 5542.669922 ) (-8 -691.140381 5542.669922 ) +4 2566 2567 (-8 -664 372 ) (-8 -691.140381 372 ) (-8 -691.140381 5542.669922 ) (-8 -664 5542.669922 ) +3 2567 2586 (-12.001999 -700 372 ) (-8 -691.138306 372 ) (-12.001987 -700 376.454285 ) +4 2567 2579 (-64 -815.141541 439.998047 ) (-64 -815.141541 435.541229 ) (-12.001987 -700 377.667969 ) (-12.001987 -700 382.118591 ) +4 2567 2578 (-12.002043 -700 5542.669922 ) (-64 -815.141479 5542.669922 ) (-64 -815.141541 439.998047 ) (-12.001987 -700 382.118591 ) +4 2567 2576 (-8 -691.138306 372 ) (-8 -691.138184 5542.669922 ) (-12.002043 -700 5542.669922 ) (-12.001987 -700 376.454285 ) +4 2567 2571 (-63.998047 -815.144531 435.544861 ) (-63.998047 -815.144531 439.993103 ) (-115.997353 -700 382.119141 ) (-115.997353 -700 377.663025 ) +4 2567 2570 (-63.998047 -815.144531 439.993103 ) (-63.998199 -815.144226 5542.669922 ) (-115.997391 -700 5542.669922 ) (-115.997353 -700 382.119141 ) +4 2567 2569 (-120 -691.136841 5542.669922 ) (-120 -691.136719 372 ) (-115.997353 -700 372 ) (-115.997391 -700 5542.669922 ) +4 2567 2588 (-120 -664 372 ) (-120 -691.140381 372 ) (-120 -691.140381 5542.669922 ) (-120 -664 5542.669922 ) +4 2568 2611 (-114.966835 -928 486.614136 ) (-114.966835 -928 5542.669922 ) (-120 -928 5542.669922 ) (-120 -928 486.614258 ) +5 2568 2573 (-68 -823.997620 5542.669922 ) (-114.968033 -928 5542.669922 ) (-114.967957 -928 486.614258 ) (-68.546043 -825.206848 434.940735 ) (-68 -823.997742 435.548523 ) +4 2568 2572 (-67.998154 -824.001770 434.335266 ) (-114.963615 -928 486.614502 ) (-120 -928 486.614502 ) (-120 -708.852722 376.450531 ) +4 2568 2570 (-67.998047 -824 5542.669922 ) (-67.998047 -824 435.541016 ) (-120 -708.850647 377.664032 ) (-120 -708.850708 5542.669922 ) +4 2568 2588 (-120 -708.852722 376.450226 ) (-120 -928 486.614136 ) (-120 -928 5542.669922 ) (-120 -708.852661 5542.669922 ) +3 2569 2571 (-120 -700 377.664063 ) (-116 -700 377.663025 ) (-116 -700 382.116486 ) +4 2569 2570 (-120 -700 5542.669922 ) (-120 -700 377.664063 ) (-116 -700 382.116486 ) (-116 -700 5542.669922 ) +4 2569 2588 (-120 -691.140381 372 ) (-120 -700 372 ) (-120 -700 5542.669922 ) (-120 -691.140381 5542.669922 ) +3 2570 2587 (-68 -823.997742 438.781250 ) (-68 -823.997742 435.539063 ) (-66.543564 -820.772705 437.160034 ) +5 2570 2583 (-68 -823.997742 444.454590 ) (-68 -823.997742 438.781250 ) (-66.543564 -820.772705 437.160034 ) (-64 -815.141541 439.990356 ) (-64 -815.141541 440.002319 ) +4 2570 2582 (-64 -815.141479 5542.669922 ) (-68 -823.997620 5542.669922 ) (-68 -823.997742 444.454590 ) (-64 -815.141541 440.002319 ) +4 2570 2571 (-120 -700 377.662415 ) (-115.998947 -700 382.115509 ) (-64 -815.142700 439.989349 ) (-65.997276 -819.564453 437.766693 ) +4 2570 2588 (-120 -708.852722 377.664001 ) (-120 -708.852661 5542.669922 ) (-120 -700 5542.669922 ) (-120 -700 377.663574 ) +3 2571 2584 (-64 -815.141541 435.543335 ) (-64 -815.141541 439.990356 ) (-65.998199 -819.565063 437.766998 ) +5 2572 2621 (-120 -928 372 ) (-114.966835 -928 377.602386 ) (-114.966835 -928 382.053986 ) (-116.058746 -928 382.054016 ) (-120 -928 377.666962 ) +3 2572 2617 (-114.966835 -928 382.053986 ) (-114.966835 -928 383.269440 ) (-116.058746 -928 382.054016 ) +4 2572 2611 (-114.966835 -928 383.269440 ) (-114.966835 -928 486.614136 ) (-120 -928 486.614258 ) (-120 -928 377.666962 ) +3 2572 2573 (-68.546043 -825.206848 434.940735 ) (-114.967957 -928 486.614258 ) (-114.967957 -928 383.268188 ) +4 2572 2588 (-120 -708.852722 372 ) (-120 -928 372 ) (-120 -928 486.614136 ) (-120 -708.852783 376.450226 ) +4 2573 2611 (-21.032127 -928 487.828857 ) (-21.032125 -928 5542.669922 ) (-114.966835 -928 5542.669922 ) (-114.966835 -928 383.269531 ) +3 2573 2587 (-67.998047 -824 435.550720 ) (-67.998047 -824 438.778900 ) (-66.547913 -827.211060 437.164886 ) +4 2573 2583 (-67.998047 -824 438.778900 ) (-67.998047 -824 444.452332 ) (-64 -832.852234 440 ) (-66.547913 -827.211060 437.164886 ) +4 2573 2582 (-67.998047 -824 444.452332 ) (-67.998047 -824 5542.669922 ) (-64 -832.852295 5542.669922 ) (-64 -832.852234 440 ) +4 2573 2580 (-64 -832.852295 5542.669922 ) (-21.031219 -928 5542.669922 ) (-21.031219 -928 487.830078 ) (-64 -832.852234 440 ) +3 2573 2574 (-66 -828.422180 437.776978 ) (-21.031006 -928 487.833191 ) (-110.969826 -928 387.719818 ) +3 2574 2618 (-106.967903 -928 392.173187 ) (-110.968727 -928 387.719849 ) (-106.967911 -928 387.719849 ) +4 2574 2614 (-21.032127 -928 387.719818 ) (-21.032127 -928 487.828857 ) (-106.967903 -928 392.173187 ) (-106.967911 -928 387.719849 ) +3 2574 2585 (-66 -828.425476 437.775360 ) (-64 -832.852295 440 ) (-64 -832.852295 435.550049 ) +4 2574 2580 (-64 -832.852295 440 ) (-21.031219 -928 487.830078 ) (-21.031219 -928 387.719879 ) (-64 -832.852295 435.550049 ) +3 2574 2575 (-63.998024 -832.850586 435.553009 ) (-21.028118 -928 387.721985 ) (-106.967896 -928 387.721863 ) +4 2575 2614 (-21.032127 -928 382.054016 ) (-21.032127 -928 387.719818 ) (-106.967903 -928 387.719849 ) (-106.967880 -928 382.054169 ) +3 2576 2586 (-12.001045 -700 376.453430 ) (-8 -691.140381 372 ) (-8 -700 372 ) +3 2576 2579 (-12.001053 -700 382.117676 ) (-12.001053 -700 377.667938 ) (-8.003559 -700 377.667969 ) +4 2576 2578 (-12 -700 5542.669922 ) (-12.001053 -700 382.117676 ) (-8 -700 377.664001 ) (-8 -700 5542.669922 ) +4 2577 2620 (-8 -928 372 ) (-8 -928 382.054016 ) (-13.033136 -928 382.054047 ) (-13.033136 -928 377.601929 ) +4 2577 2613 (-8 -928 382.054016 ) (-8 -928 502.334991 ) (-13.033136 -928 496.732910 ) (-13.033136 -928 382.054047 ) +4 2577 2611 (-8 -928 502.334991 ) (-8 -928 5542.669922 ) (-13.033134 -928 5542.669922 ) (-13.033136 -928 496.732910 ) +4 2577 2581 (-13.034187 -928 383.267059 ) (-13.034187 -928 387.720428 ) (-60.001873 -823.998169 440 ) (-60.001873 -823.998169 435.551056 ) +4 2577 2580 (-13.034187 -928 387.720428 ) (-13.034212 -928 5542.669922 ) (-60.001869 -823.998169 5542.669922 ) (-60.001873 -823.998169 440 ) +4 2577 2578 (-8 -708.842224 5542.669922 ) (-8 -708.842102 377.663574 ) (-60.001942 -823.996094 435.547180 ) (-60.001789 -823.995789 5542.669922 ) +4 2578 2582 (-64 -815.143921 5542.669922 ) (-64 -815.143860 439.997559 ) (-60.001873 -823.998169 435.547089 ) (-60.001869 -823.998169 5542.669922 ) +4 2578 2579 (-61.996937 -819.570740 437.767487 ) (-63.998318 -815.139038 439.995209 ) (-12.001030 -700 382.115662 ) (-8.005308 -700 377.667969 ) +3 2579 2584 (-64 -815.143860 439.997559 ) (-64 -815.143860 435.542389 ) (-62 -819.575684 437.769958 ) +4 2580 2615 (-21.032127 -928 487.829102 ) (-21.032127 -928 387.720215 ) (-13.033136 -928 387.720428 ) (-13.033136 -928 496.732605 ) +4 2580 2611 (-13.033134 -928 5542.669922 ) (-21.032125 -928 5542.669922 ) (-21.032127 -928 487.829102 ) (-13.033136 -928 496.732605 ) +3 2580 2585 (-62 -828.421265 437.775696 ) (-64.001282 -832.852173 435.548523 ) (-64.001282 -832.852173 440.003143 ) +5 2580 2582 (-60.001789 -823.995789 5542.669922 ) (-60.001942 -823.996094 440 ) (-62 -828.421265 437.775696 ) (-64.001282 -832.852173 440.003143 ) (-64.001183 -832.852112 5542.669922 ) +4 2580 2581 (-61.998146 -828.425415 437.773315 ) (-60 -824 439.998047 ) (-13.033138 -928 387.720215 ) (-17.034307 -928 387.719971 ) +3 2581 2616 (-13.033136 -928 383.265900 ) (-13.033136 -928 387.720428 ) (-17.034611 -928 387.720306 ) +3 2581 2582 (-60.001942 -823.996094 440 ) (-60.001942 -823.996094 435.551117 ) (-62 -828.421265 437.775696 ) +4 2582 2585 (-61.997524 -828.419800 437.776581 ) (-63.997894 -832.849426 440.003357 ) (-63.997589 -824.013062 440.002960 ) (-63.992527 -824.001831 439.997314 ) +3 2582 2584 (-63.997280 -815.136658 440.002533 ) (-61.993176 -819.574341 437.771667 ) (-63.997589 -824.013062 440.002960 ) +4 2582 2583 (-63.997280 -815.136658 440.002533 ) (-63.997894 -832.849426 440.003357 ) (-64 -832.854553 440.005951 ) (-68 -824 444.457703 ) +3 2583 2587 (-66.547844 -827.215576 437.164978 ) (-68 -824 438.781250 ) (-66.547844 -820.784424 437.164978 ) +5 2583 2585 (-64 -824.011108 440.001984 ) (-64 -832.851563 440.001984 ) (-64 -832.853394 440.001068 ) (-66.001129 -828.423889 437.774475 ) (-64.004120 -824.001892 439.997345 ) +3 2583 2584 (-64 -815.140625 440.001984 ) (-64 -824.011108 440.001984 ) (-66.002609 -819.576660 437.772858 ) +4 2588 2664 (-128 -664 650.222168 ) (-128 -664 642.222656 ) (-128 -928 832.888916 ) (-128 -928 840.888977 ) +4 2588 2663 (-128 -664 5542.669922 ) (-128 -664 650.222168 ) (-128 -928 840.888977 ) (-128 -928 5542.669922 ) +4 2588 2659 (-128 -664 642.222656 ) (-128 -664 372 ) (-128 -928 372 ) (-128 -928 832.888916 ) +4 2588 2622 (-128 -928 5542.669922 ) (-128 -928 372 ) (-120 -928 372 ) (-120 -928 5542.669922 ) +4 2589 2679 (-128 -664 368 ) (-128 -664 336 ) (-128 -680 336 ) (-128 -680 368 ) +4 2589 2610 (-128 -680 216 ) (-128 -664 216 ) (0 -664 216 ) (0 -680 216 ) +4 2589 2590 (-128 -680 216 ) (0 -680 216 ) (0 -680 336 ) (-128 -680 336 ) +4 2590 2610 (-128 -704 216 ) (-128 -680 216 ) (0 -680 216 ) (0 -704 216 ) +4 2590 2591 (-128 -704 216 ) (0 -704 216 ) (0 -704 336 ) (-128 -704 336 ) +4 2591 2610 (0 -928 216 ) (-128 -928 216 ) (-128 -704 216 ) (0 -704 216 ) +4 2592 2866 (-128 -128 68 ) (-128 -104 68 ) (-128 -104 64 ) (-128 -128 64 ) +4 2592 2865 (-128 -224 88 ) (-128 -224 216 ) (-128 -104 216 ) (-128 -104 88 ) +4 2592 2864 (-128 0 216 ) (-128 0 0 ) (-128 -88 0 ) (-128 -88 216 ) +4 2592 2594 (-100 -224 208 ) (-100 -224 96 ) (-36 -224 96 ) (-36 -224 208 ) +4 2593 2603 (-32 -240 48 ) (-36 -240 48 ) (-36 -240 40 ) (-32 -240 40 ) +4 2593 2602 (-16 -240 56 ) (-36 -240 56 ) (-36 -240 48 ) (-16 -240 48 ) +4 2593 2599 (0 -240 56 ) (0 -240 68 ) (-36 -240 68 ) (-36 -240 56 ) +4 2593 2596 (-36 -236 0 ) (-36 -240 0 ) (-36 -240 8 ) (-36 -236 8 ) +4 2593 2595 (-36 -240 8 ) (-36 -240 68 ) (-36 -236 64 ) (-36 -236 8 ) +4 2594 2598 (-100 -240 208 ) (-100 -240 96 ) (-36 -240 96 ) (-36 -240 208 ) +4 2595 2606 (-64 -240 24 ) (-64 -240 48 ) (-80 -240 48 ) (-80 -240 24 ) +4 2595 2607 (-100 -240 48 ) (-100 -240 16 ) (-80 -240 16 ) (-80 -240 48 ) +4 2595 2603 (-36 -240 40 ) (-36 -240 48 ) (-48 -240 48 ) (-48 -240 40 ) +4 2595 2604 (-48 -240 48 ) (-64 -240 48 ) (-64 -240 32 ) (-48 -240 32 ) +4 2595 2602 (-100 -240 56 ) (-100 -240 48 ) (-36 -240 48 ) (-36 -240 56 ) +4 2595 2599 (-100 -240 68 ) (-100 -240 56 ) (-36 -240 56 ) (-36 -240 68 ) +4 2595 2597 (-100 -236 8 ) (-100 -240 8 ) (-100 -240 68 ) (-100 -236 64 ) +4 2595 2596 (-64 -236 8 ) (-36 -236 8 ) (-36 -240 8 ) (-64 -240 8 ) +4 2597 2608 (-128 -240 16 ) (-128 -240 8 ) (-104 -240 8 ) (-104 -240 16 ) +4 2597 2607 (-128 -240 48 ) (-128 -240 16 ) (-100 -240 16 ) (-100 -240 48 ) +4 2597 2602 (-128 -240 56 ) (-128 -240 48 ) (-100 -240 48 ) (-100 -240 56 ) +4 2597 2599 (-128 -240 68 ) (-128 -240 56 ) (-100 -240 56 ) (-100 -240 68 ) +4 2598 2869 (-128 -528 216 ) (-128 -240 216 ) (-128 -240 88 ) (-128 -528 88 ) +4 2598 2600 (-128 -528 88 ) (-128 -508 88 ) (0 -508 88 ) (0 -528 88 ) +4 2598 2599 (-128 -508 88 ) (-128 -240 88 ) (0 -240 88 ) (0 -508 88 ) +4 2598 2610 (0 -544 88 ) (0 -544 216 ) (-128 -544 216 ) (-128 -544 88 ) +5 2599 2869 (-128 -240 88 ) (-128 -240 56 ) (-128 -528 56 ) (-128 -528 68 ) (-128 -508 88 ) +4 2599 2601 (0 -532 56 ) (-16 -532 56 ) (-16 -528 56 ) (0 -528 56 ) +4 2599 2602 (-16 -532 56 ) (-128 -532 56 ) (-128 -240 56 ) (-16 -240 56 ) +4 2599 2600 (0 -528 68 ) (0 -508 88 ) (-128 -508 88 ) (-128 -528 68 ) +3 2600 2869 (-128 -528 88 ) (-128 -508 88 ) (-128 -528 68 ) +4 2601 2605 (0 -528 48 ) (0 -532 48 ) (-16 -532 48 ) (-16 -528 48 ) +4 2601 2602 (-16 -528 48 ) (-16 -532 48 ) (-16 -532 56 ) (-16 -528 56 ) +4 2602 2869 (-128 -240 56 ) (-128 -240 48 ) (-128 -528 48 ) (-128 -528 56 ) +4 2602 2609 (-128 -532 48 ) (-128 -528 48 ) (-64 -528 48 ) (-64 -532 48 ) +4 2602 2606 (-80 -240 48 ) (-64 -240 48 ) (-64 -528 48 ) (-80 -528 48 ) +4 2602 2607 (-128 -528 48 ) (-128 -240 48 ) (-80 -240 48 ) (-80 -528 48 ) +4 2602 2605 (-16 -528 48 ) (-16 -532 48 ) (-64 -532 48 ) (-64 -528 48 ) +4 2602 2603 (-48 -240 48 ) (-32 -240 48 ) (-32 -528 48 ) (-48 -528 48 ) +4 2602 2604 (-64 -240 48 ) (-48 -240 48 ) (-48 -528 48 ) (-64 -528 48 ) +4 2603 2605 (-32 -528 40 ) (-32 -528 48 ) (-48 -528 48 ) (-48 -528 40 ) +4 2603 2604 (-48 -528 40 ) (-48 -528 48 ) (-48 -240 48 ) (-48 -240 40 ) +4 2604 2606 (-64 -528 32 ) (-64 -528 48 ) (-64 -240 48 ) (-64 -240 32 ) +4 2604 2605 (-64 -528 48 ) (-64 -528 32 ) (-48 -528 32 ) (-48 -528 48 ) +4 2605 2609 (-64 -532 8 ) (-64 -532 48 ) (-64 -528 48 ) (-64 -528 8 ) +4 2606 2609 (-64 -528 24 ) (-64 -528 48 ) (-80 -528 48 ) (-80 -528 24 ) +4 2606 2607 (-80 -528 24 ) (-80 -528 48 ) (-80 -240 48 ) (-80 -240 24 ) +4 2607 2869 (-128 -240 48 ) (-128 -240 16 ) (-128 -528 16 ) (-128 -528 48 ) +4 2607 2609 (-80 -528 48 ) (-128 -528 48 ) (-128 -528 16 ) (-80 -528 16 ) +4 2607 2608 (-104 -528 16 ) (-128 -528 16 ) (-128 -240 16 ) (-104 -240 16 ) +4 2608 2869 (-128 -240 16 ) (-128 -240 8 ) (-128 -528 8 ) (-128 -528 16 ) +4 2608 2609 (-104 -528 16 ) (-128 -528 16 ) (-128 -528 8 ) (-104 -528 8 ) +4 2610 2872 (-128 -796 216 ) (-128 -676 216 ) (-128 -676 88 ) (-128 -796 88 ) +4 2610 2873 (-128 -928 88 ) (-128 -928 216 ) (-128 -808 216 ) (-128 -808 88 ) +4 2610 2871 (-128 -664 216 ) (-128 -544 216 ) (-128 -544 88 ) (-128 -664 88 ) +4 2610 2640 (-36 -928 96 ) (-36 -928 208 ) (-100 -928 208 ) (-100 -928 96 ) +4 2611 2622 (-120 -968 377.666962 ) (-120 -968 5542.669922 ) (-120 -928 5542.669922 ) (-120 -928 377.666992 ) +3 2611 2621 (-120 -936.724854 377.667969 ) (-120 -928 377.667969 ) (-116.059692 -928 382.053955 ) +5 2611 2618 (-120 -948 377.667969 ) (-120 -947.996033 377.667969 ) (-110.969536 -928 387.719849 ) (-106.967911 -928 392.174103 ) (-116 -948 382.120422 ) +4 2611 2617 (-120 -939.145020 377.667969 ) (-120 -936.724854 377.667969 ) (-116.059692 -928 382.053955 ) (-114.966866 -928 383.270386 ) +5 2611 2615 (-21.032127 -928 487.829956 ) (-13.033134 -928 496.733704 ) (-8 -939.144958 502.336182 ) (-8 -948 502.336243 ) (-12 -948 497.883789 ) +4 2611 2614 (-106.967911 -928 392.174103 ) (-21.032127 -928 487.829956 ) (-12 -948 497.883789 ) (-116 -948 382.120422 ) +3 2611 2613 (-13.033134 -928 496.733704 ) (-8 -928 502.336121 ) (-8 -939.144958 502.336182 ) +4 2611 2619 (-8 -968 502.336334 ) (-120 -968 377.667969 ) (-120 -948 377.667969 ) (-8 -948 502.336243 ) +4 2611 2612 (0 -968 511.241211 ) (-8 -968 502.336334 ) (-8 -928 502.336121 ) (0 -928 511.240997 ) +4 2611 2623 (0 -968 511.239868 ) (0 -968 5542.669922 ) (-120 -968 5542.669922 ) (-120 -968 377.666992 ) +4 2612 2620 (-8 -928 382.054016 ) (-8 -928 372 ) (-8 -939.144958 372 ) (-8 -939.144958 376.451416 ) +4 2612 2616 (-8 -939.144958 382.118134 ) (-8 -939.144958 377.663086 ) (-8 -948 377.663055 ) (-8 -948 377.666992 ) +4 2612 2615 (-8 -948 502.341827 ) (-8 -939.144958 502.341827 ) (-8 -939.144958 382.118134 ) (-8 -948 377.666992 ) +4 2612 2613 (-8 -939.144958 502.341827 ) (-8 -928 502.341827 ) (-8 -928 382.054016 ) (-8 -939.144958 376.451416 ) +4 2612 2619 (-8 -968 372 ) (-8 -968 502.341827 ) (-8 -948 502.341827 ) (-8 -948 372 ) +4 2612 2623 (0 -968 372 ) (0 -968 511.239868 ) (-8 -968 502.335022 ) (-8 -968 372 ) +3 2613 2620 (-13.033134 -928 382.054993 ) (-8 -928 382.054993 ) (-8 -939.145020 376.452393 ) +4 2613 2616 (-8 -939.145752 377.663086 ) (-8 -939.145752 382.117828 ) (-13.033440 -928 387.720428 ) (-13.033440 -928 383.266235 ) +4 2613 2615 (-8 -939.145752 382.117828 ) (-8 -939.145752 502.335052 ) (-13.033440 -928 496.732635 ) (-13.033440 -928 387.720428 ) +4 2614 2618 (-116 -948 377.665985 ) (-116 -948 382.119415 ) (-106.967957 -928 392.172485 ) (-106.967957 -928 387.719849 ) +4 2614 2615 (-11.998349 -948 497.882813 ) (-11.998348 -948 377.666992 ) (-21.030474 -928 387.720398 ) (-21.030472 -928 487.829376 ) +4 2614 2619 (-116 -948 372 ) (-12 -948 372 ) (-12 -948 497.882385 ) (-116 -948 382.114075 ) +5 2615 2616 (-17.034964 -928 387.720734 ) (-13.033138 -928 387.720215 ) (-8 -939.145020 382.117920 ) (-8 -948 377.667358 ) (-8.003857 -948 377.667358 ) +4 2615 2619 (-8 -948 377.666992 ) (-8 -948 502.335022 ) (-12 -948 497.882385 ) (-12 -948 377.666992 ) +3 2617 2622 (-120 -939.144958 377.666992 ) (-120 -936.726868 377.666992 ) (-120 -939.144958 376.451416 ) +4 2617 2621 (-120 -939.145020 376.452393 ) (-120 -936.728821 377.666992 ) (-116.057922 -928 382.054962 ) (-114.966835 -928 382.054962 ) +3 2618 2619 (-116 -948 377.665985 ) (-116 -948 382.114075 ) (-119.995888 -948 377.666016 ) +4 2619 2622 (-120 -968 372 ) (-120 -968 377.666962 ) (-120 -948 377.666992 ) (-120 -948 372 ) +4 2619 2623 (-8 -968 372 ) (-8 -968 502.335022 ) (-120 -968 377.666992 ) (-120 -968 372 ) +5 2621 2622 (-120 -936.726868 377.666992 ) (-120 -928 377.666992 ) (-120 -928 372 ) (-120 -939.145020 372 ) (-120 -939.144958 376.451416 ) +4 2622 2664 (-128 -928 840.889160 ) (-128 -928 832.889160 ) (-128 -968 861.777832 ) (-128 -968 869.777832 ) +4 2622 2663 (-128 -968 5542.669922 ) (-128 -928 5542.669922 ) (-128 -928 840.889160 ) (-128 -968 869.777832 ) +4 2622 2659 (-128 -928 832.889160 ) (-128 -928 372 ) (-128 -968 372 ) (-128 -968 861.777832 ) +4 2622 2623 (-120 -968 372 ) (-120 -968 5542.669922 ) (-128 -968 5542.669922 ) (-128 -968 372 ) +4 2623 3272 (0 -1024 368 ) (0 -1024 5542.669922 ) (-128 -1024 5542.669922 ) (-128 -1024 368 ) +4 2623 2664 (-128 -1024 902.222290 ) (-128 -1024 910.222290 ) (-128 -968 869.777832 ) (-128 -968 861.777344 ) +4 2623 2663 (-128 -1024 910.222290 ) (-128 -1024 5542.669922 ) (-128 -968 5542.669922 ) (-128 -968 869.777832 ) +4 2623 2660 (-128 -1024 368 ) (-128 -1024 902.222290 ) (-128 -968 861.777344 ) (-128 -968 368 ) +4 2623 2638 (-128 -1024 368 ) (-128 -968 368 ) (-112 -968 368 ) (-112 -1024 368 ) +4 2623 2637 (-112 -968 368 ) (-104 -968 368 ) (-104 -1024 368 ) (-112 -1024 368 ) +4 2623 2636 (-104 -968 368 ) (-96 -968 368 ) (-96 -1024 368 ) (-104 -1024 368 ) +4 2623 2635 (-96 -968 368 ) (-88 -968 368 ) (-88 -1024 368 ) (-96 -1024 368 ) +4 2623 2634 (-88 -968 368 ) (-80 -968 368 ) (-80 -1024 368 ) (-88 -1024 368 ) +4 2623 2633 (-80 -968 368 ) (-72 -968 368 ) (-72 -1024 368 ) (-80 -1024 368 ) +4 2623 2632 (-72 -968 368 ) (-64 -968 368 ) (-64 -1024 368 ) (-72 -1024 368 ) +4 2623 2631 (-64 -968 368 ) (-56 -968 368 ) (-56 -1024 368 ) (-64 -1024 368 ) +4 2623 2630 (-56 -968 368 ) (-48 -968 368 ) (-48 -1024 368 ) (-56 -1024 368 ) +4 2623 2629 (-48 -968 368 ) (-40 -968 368 ) (-40 -1024 368 ) (-48 -1024 368 ) +4 2623 2628 (-40 -968 368 ) (-32 -968 368 ) (-32 -1024 368 ) (-40 -1024 368 ) +4 2623 2627 (-32 -968 368 ) (-24 -968 368 ) (-24 -1024 368 ) (-32 -1024 368 ) +4 2623 2626 (-24 -968 368 ) (-16 -968 368 ) (-16 -1024 368 ) (-24 -1024 368 ) +4 2623 2625 (-16 -968 368 ) (-8 -968 368 ) (-8 -1024 368 ) (-16 -1024 368 ) +4 2623 2624 (-8 -968 368 ) (0 -968 368 ) (0 -1024 368 ) (-8 -1024 368 ) +4 2624 3272 (0 -1024 336 ) (0 -1024 368 ) (-8 -1024 368 ) (-8 -1024 336 ) +4 2624 2647 (-8 -968 336 ) (-8 -964 336 ) (0 -964 336 ) (0 -968 336 ) +4 2624 2652 (0 -1024 336 ) (-8 -1024 336 ) (-8 -968 336 ) (0 -968 336 ) +4 2624 2625 (-8 -964 336 ) (-8 -1024 336 ) (-8 -1024 368 ) (-8 -964 368 ) +4 2625 3272 (-8 -1024 368 ) (-16 -1024 368 ) (-16 -1024 336 ) (-8 -1024 336 ) +4 2625 2647 (-16 -968 336 ) (-16 -964 336 ) (-8 -964 336 ) (-8 -968 336 ) +4 2625 2652 (-8 -1024 336 ) (-16 -1024 336 ) (-16 -968 336 ) (-8 -968 336 ) +4 2625 2626 (-16 -960 336 ) (-16 -1024 336 ) (-16 -1024 368 ) (-16 -960 368 ) +4 2626 3272 (-16 -1024 368 ) (-24 -1024 368 ) (-24 -1024 336 ) (-16 -1024 336 ) +4 2626 2647 (-24 -968 336 ) (-24 -964 336 ) (-16 -964 336 ) (-16 -968 336 ) +4 2626 2652 (-16 -1024 336 ) (-24 -1024 336 ) (-24 -968 336 ) (-16 -968 336 ) +4 2626 2627 (-24 -960 336 ) (-24 -1024 336 ) (-24 -1024 368 ) (-24 -960 368 ) +4 2627 3272 (-24 -1024 368 ) (-32 -1024 368 ) (-32 -1024 336 ) (-24 -1024 336 ) +4 2627 2647 (-32 -968 336 ) (-32 -964 336 ) (-24 -964 336 ) (-24 -968 336 ) +4 2627 2652 (-24 -1024 336 ) (-32 -1024 336 ) (-32 -968 336 ) (-24 -968 336 ) +4 2627 2628 (-32 -960 336 ) (-32 -1024 336 ) (-32 -1024 368 ) (-32 -960 368 ) +4 2628 3272 (-32 -1024 368 ) (-40 -1024 368 ) (-40 -1024 336 ) (-32 -1024 336 ) +4 2628 2647 (-40 -968 336 ) (-40 -964 336 ) (-32 -964 336 ) (-32 -968 336 ) +4 2628 2652 (-32 -1024 336 ) (-40 -1024 336 ) (-40 -968 336 ) (-32 -968 336 ) +4 2628 2629 (-40 -960 336 ) (-40 -1024 336 ) (-40 -1024 368 ) (-40 -960 368 ) +4 2629 3272 (-40 -1024 368 ) (-48 -1024 368 ) (-48 -1024 336 ) (-40 -1024 336 ) +4 2629 2647 (-48 -968 336 ) (-48 -964 336 ) (-40 -964 336 ) (-40 -968 336 ) +4 2629 2652 (-40 -1024 336 ) (-48 -1024 336 ) (-48 -968 336 ) (-40 -968 336 ) +4 2629 2630 (-48 -960 336 ) (-48 -1024 336 ) (-48 -1024 368 ) (-48 -960 368 ) +4 2630 3272 (-48 -1024 368 ) (-56 -1024 368 ) (-56 -1024 336 ) (-48 -1024 336 ) +4 2630 2647 (-56 -968 336 ) (-56 -964 336 ) (-48 -964 336 ) (-48 -968 336 ) +4 2630 2652 (-48 -1024 336 ) (-56 -1024 336 ) (-56 -968 336 ) (-48 -968 336 ) +4 2630 2631 (-56 -960 336 ) (-56 -1024 336 ) (-56 -1024 368 ) (-56 -960 368 ) +4 2631 3272 (-56 -1024 368 ) (-64 -1024 368 ) (-64 -1024 336 ) (-56 -1024 336 ) +4 2631 2647 (-64 -968 336 ) (-64 -964 336 ) (-56 -964 336 ) (-56 -968 336 ) +4 2631 2652 (-56 -1024 336 ) (-64 -1024 336 ) (-64 -968 336 ) (-56 -968 336 ) +4 2631 2632 (-64 -960 336 ) (-64 -1024 336 ) (-64 -1024 368 ) (-64 -960 368 ) +4 2632 3272 (-64 -1024 368 ) (-72 -1024 368 ) (-72 -1024 336 ) (-64 -1024 336 ) +4 2632 2647 (-72 -968 336 ) (-72 -964 336 ) (-64 -964 336 ) (-64 -968 336 ) +4 2632 2652 (-64 -1024 336 ) (-72 -1024 336 ) (-72 -968 336 ) (-64 -968 336 ) +4 2632 2633 (-72 -960 336 ) (-72 -1024 336 ) (-72 -1024 368 ) (-72 -960 368 ) +4 2633 3272 (-72 -1024 368 ) (-80 -1024 368 ) (-80 -1024 336 ) (-72 -1024 336 ) +4 2633 2647 (-80 -968 336 ) (-80 -964 336 ) (-72 -964 336 ) (-72 -968 336 ) +4 2633 2652 (-72 -1024 336 ) (-80 -1024 336 ) (-80 -968 336 ) (-72 -968 336 ) +4 2633 2634 (-80 -960 336 ) (-80 -1024 336 ) (-80 -1024 368 ) (-80 -960 368 ) +4 2634 3272 (-80 -1024 368 ) (-88 -1024 368 ) (-88 -1024 336 ) (-80 -1024 336 ) +4 2634 2647 (-88 -968 336 ) (-88 -964 336 ) (-80 -964 336 ) (-80 -968 336 ) +4 2634 2652 (-80 -1024 336 ) (-88 -1024 336 ) (-88 -968 336 ) (-80 -968 336 ) +4 2634 2635 (-88 -960 336 ) (-88 -1024 336 ) (-88 -1024 368 ) (-88 -960 368 ) +4 2635 3272 (-88 -1024 368 ) (-96 -1024 368 ) (-96 -1024 336 ) (-88 -1024 336 ) +4 2635 2647 (-96 -968 336 ) (-96 -964 336 ) (-88 -964 336 ) (-88 -968 336 ) +4 2635 2652 (-88 -1024 336 ) (-96 -1024 336 ) (-96 -968 336 ) (-88 -968 336 ) +4 2635 2636 (-96 -960 336 ) (-96 -1024 336 ) (-96 -1024 368 ) (-96 -960 368 ) +4 2636 3272 (-96 -1024 368 ) (-104 -1024 368 ) (-104 -1024 336 ) (-96 -1024 336 ) +4 2636 2647 (-104 -968 336 ) (-104 -964 336 ) (-96 -964 336 ) (-96 -968 336 ) +4 2636 2652 (-96 -1024 336 ) (-104 -1024 336 ) (-104 -968 336 ) (-96 -968 336 ) +4 2636 2637 (-104 -960 336 ) (-104 -1024 336 ) (-104 -1024 368 ) (-104 -960 368 ) +4 2637 3272 (-104 -1024 368 ) (-112 -1024 368 ) (-112 -1024 336 ) (-104 -1024 336 ) +4 2637 2647 (-112 -968 336 ) (-112 -964 336 ) (-104 -964 336 ) (-104 -968 336 ) +4 2637 2652 (-104 -1024 336 ) (-112 -1024 336 ) (-112 -968 336 ) (-104 -968 336 ) +4 2637 2638 (-112 -964 336 ) (-112 -1024 336 ) (-112 -1024 368 ) (-112 -964 368 ) +4 2638 3272 (-112 -1024 368 ) (-128 -1024 368 ) (-128 -1024 336 ) (-112 -1024 336 ) +4 2638 2703 (-128 -1024 336 ) (-128 -1024 368 ) (-128 -964 368 ) (-128 -964 336 ) +4 2638 2647 (-128 -968 336 ) (-128 -964 336 ) (-112 -964 336 ) (-112 -968 336 ) +4 2638 2652 (-112 -1024 336 ) (-128 -1024 336 ) (-128 -968 336 ) (-112 -968 336 ) +4 2639 2642 (-36 -960 248 ) (-36 -960 312 ) (-100 -960 312 ) (-100 -960 248 ) +4 2640 2646 (-36 -960 96 ) (-36 -960 208 ) (-100 -960 208 ) (-100 -960 96 ) +4 2641 2645 (-36 -960 -32 ) (-36 -960 56 ) (-100 -960 56 ) (-100 -960 -32 ) +4 2642 2647 (-8 -964 240 ) (-8 -964 320 ) (-128 -964 320 ) (-128 -964 240 ) +4 2643 2648 (-12 -964 220 ) (-128 -964 220 ) (-128 -964 216 ) (-12 -964 216 ) +4 2643 2646 (-128 -960 216 ) (-16 -960 216 ) (-12 -964 216 ) (-128 -964 216 ) +4 2644 2651 (-12 -964 68 ) (-128 -964 68 ) (-128 -964 64 ) (-12 -964 64 ) +4 2644 2645 (-128 -960 64 ) (-16 -960 64 ) (-12 -964 64 ) (-128 -964 64 ) +4 2645 2650 (-8 -964 -32 ) (-8 -964 64 ) (-128 -964 64 ) (-128 -964 -32 ) +4 2646 2649 (-8 -964 88 ) (-8 -964 216 ) (-12 -964 216 ) (-12 -964 88 ) +4 2646 2648 (-12 -964 216 ) (-128 -964 216 ) (-128 -964 88 ) (-12 -964 88 ) +4 2647 2766 (-128 -964 320 ) (-128 -964 240 ) (-128 -968 240 ) (-128 -968 320 ) +4 2647 2708 (-128 -968 336 ) (-128 -964 336 ) (-128 -964 320 ) (-128 -968 320 ) +4 2647 2648 (-8 -968 240 ) (-128 -968 240 ) (-128 -964 240 ) (-12 -964 240 ) +4 2647 2652 (0 -968 240 ) (0 -968 336 ) (-128 -968 336 ) (-128 -968 240 ) +4 2648 2875 (-128 -964 240 ) (-128 -964 88 ) (-128 -968 88 ) (-128 -968 240 ) +4 2648 2651 (-8 -968 88 ) (-128 -968 88 ) (-128 -964 88 ) (-12 -964 88 ) +4 2648 2649 (-8 -968 88 ) (-12 -964 88 ) (-12 -964 216 ) (-8 -968 220 ) +4 2648 2652 (-8 -968 240 ) (-128 -968 240 ) (-128 -968 88 ) (-8 -968 88 ) +4 2649 2652 (0 -968 88 ) (0 -968 220 ) (-8 -968 220 ) (-8 -968 88 ) +4 2650 3028 (-128 -964 0 ) (-128 -964 -64 ) (-128 -968 -64 ) (-128 -968 0 ) +4 2650 2881 (-128 -964 64 ) (-128 -964 0 ) (-128 -968 0 ) (-128 -968 64 ) +3 2650 2875 (-128 -964 64 ) (-128 -968 64 ) (-128 -968 68 ) +4 2650 2653 (-128 -968 -64 ) (-128 -964 -64 ) (0 -964 -64 ) (0 -968 -64 ) +4 2650 2651 (-12 -964 64.001953 ) (-128 -964 64.001953 ) (-128 -968 68.001953 ) (-8 -968 68.001953 ) +4 2650 2652 (-128 -968 -64 ) (0 -968 -64 ) (0 -968 68 ) (-128 -968 68 ) +4 2651 2875 (-128 -964 88 ) (-128 -964 64 ) (-128 -968 68 ) (-128 -968 88 ) +4 2651 2652 (-8 -968 88 ) (-128 -968 88 ) (-128 -968 68 ) (-8 -968 68 ) +4 2652 3275 (-32 -1024 192 ) (-128 -1024 192 ) (-128 -1024 -64 ) (-32 -1024 -64 ) +4 2652 3274 (0 -1024 -64 ) (0 -1024 64 ) (-32 -1024 64 ) (-32 -1024 -64 ) +4 2652 3273 (0 -1024 64 ) (0 -1024 192 ) (-32 -1024 192 ) (-32 -1024 64 ) +4 2652 3272 (0 -1024 192 ) (0 -1024 336 ) (-128 -1024 336 ) (-128 -1024 192 ) +4 2652 3028 (-128 -1024 -64 ) (-128 -1024 0 ) (-128 -968 0 ) (-128 -968 -64 ) +4 2652 2881 (-128 -1024 0 ) (-128 -1024 64 ) (-128 -968 64 ) (-128 -968 0 ) +4 2652 2875 (-128 -1024 64 ) (-128 -1024 240 ) (-128 -968 240 ) (-128 -968 64 ) +4 2652 2766 (-128 -1024 240 ) (-128 -1024 320 ) (-128 -968 320 ) (-128 -968 240 ) +4 2652 2708 (-128 -1024 320 ) (-128 -1024 336 ) (-128 -968 336 ) (-128 -968 320 ) +4 2652 2653 (0 -1024 -64 ) (-128 -1024 -64 ) (-128 -968 -64 ) (0 -968 -64 ) +4 2653 3383 (0 -1024 -128 ) (0 -1024 -64 ) (-128 -1024 -64 ) (-128 -1024 -128 ) +4 2653 3042 (-128 -1024 -128 ) (-128 -1024 -64 ) (-128 -964 -64 ) (-128 -964 -128 ) +4 2653 2654 (-128 -1024 -128 ) (-128 -960 -128 ) (0 -960 -128 ) (0 -1024 -128 ) +4 2654 3413 (0 -1024 -1284 ) (0 -1024 -128 ) (-128 -1024 -128 ) (-128 -1024 -1284 ) +4 2654 3047 (-128 -1024 -1284 ) (-128 -1024 -128 ) (-128 0 -128 ) (-128 0 -1284 ) +3 2655 2730 (-152 -284.307709 368 ) (-152 -483.692261 368 ) (-152 -384 440 ) +4 2655 2671 (-152 -483.692261 368 ) (-152 -284.307678 368 ) (-144 -284.307678 368 ) (-144 -483.692261 368 ) +5 2656 2730 (-152 -494.769257 368 ) (-152 -574 368 ) (-152 -664 440 ) (-152 -664 642.222168 ) (-152 -389.538483 444 ) +4 2656 2684 (-152 -574 368 ) (-152 -544 368 ) (-128 -544 368 ) (-128 -574 368 ) +4 2656 2682 (-144 -528 368 ) (-128 -528 368 ) (-128 -544 368 ) (-144 -544 368 ) +4 2656 2683 (-152 -544 368 ) (-152 -528 368 ) (-144 -528 368 ) (-144 -544 368 ) +4 2656 2677 (-152 -528 368 ) (-152 -494.769257 368 ) (-128 -494.769257 368 ) (-128 -528 368 ) +4 2656 2664 (-152 -389.537933 444 ) (-152 -664 642.223022 ) (-128 -664 642.220825 ) (-128 -389.538361 444 ) +4 2656 2659 (-128 -664 440 ) (-128 -664 642.224609 ) (-148 -664 642.224609 ) (-148 -664 440 ) +4 2656 2661 (-148 -664 642.224609 ) (-152 -664 642.224609 ) (-152 -664 440 ) (-148 -664 440 ) +4 2656 2657 (-128 -664 440 ) (-152 -664 440 ) (-152 -604 392 ) (-128 -604 392 ) +4 2657 2730 (-152 -634 368 ) (-152 -664 368 ) (-152 -664 440 ) (-152 -604 392 ) +4 2657 2678 (-152 -664 368 ) (-152 -634 368 ) (-128 -634 368 ) (-128 -664 368 ) +4 2657 2659 (-128 -664 372 ) (-128 -664 440 ) (-148 -664 440 ) (-148 -664 372 ) +4 2657 2661 (-152 -664 368 ) (-148 -664 368 ) (-148 -664 440 ) (-152 -664 440 ) +3 2658 2730 (-152 -584 368 ) (-152 -624 368 ) (-152 -604 384 ) +4 2658 2685 (-152 -624 368 ) (-152 -584 368 ) (-144 -584 368 ) (-144 -624 368 ) +4 2659 2664 (-128 -968 861.774658 ) (-128 -664 642.220825 ) (-148 -664 642.222656 ) (-148 -968 861.777954 ) +4 2659 2660 (-148 -968 861.777344 ) (-148 -968 372 ) (-128 -968 372 ) (-128 -968 861.777344 ) +4 2659 2661 (-148 -664 642.222656 ) (-148 -664 372 ) (-148 -968 372 ) (-148 -968 861.778198 ) +4 2660 3272 (-128 -1024 368 ) (-128 -1024 902.222229 ) (-148 -1024 902.222168 ) (-148 -1024 368 ) +4 2660 2705 (-140 -1024 368 ) (-144 -1024 368 ) (-144 -968 368 ) (-140 -968 368 ) +4 2660 2706 (-144 -1024 368 ) (-148 -1024 368 ) (-148 -968 368 ) (-144 -968 368 ) +4 2660 2703 (-128 -968 368 ) (-128 -1024 368 ) (-140 -1024 368 ) (-140 -968 368 ) +4 2660 2664 (-148 -1024 902.222351 ) (-128 -1024 902.218750 ) (-128 -968 861.774658 ) (-148 -968 861.777954 ) +4 2660 2661 (-148 -968 368 ) (-148 -1024 368 ) (-148 -1024 902.222656 ) (-148 -968 861.778198 ) +4 2661 3272 (-148 -1024 902.222168 ) (-152 -1024 902.222168 ) (-152 -1024 368 ) (-148 -1024 368 ) +4 2661 2730 (-152 -664 368 ) (-152 -1024 368 ) (-152 -1024 902.222229 ) (-152 -664 642.222168 ) +4 2661 2706 (-152 -1024 368 ) (-152 -768 368 ) (-148 -768 368 ) (-148 -1024 368 ) +4 2661 2691 (-152 -768 368 ) (-152 -704 368 ) (-148 -704 368 ) (-148 -768 368 ) +4 2661 2680 (-152 -704 368 ) (-152 -664 368 ) (-148 -664 368 ) (-148 -704 368 ) +4 2661 2664 (-152 -664 642.223022 ) (-152 -1024 902.223083 ) (-148 -1024 902.222351 ) (-148 -664 642.222656 ) +5 2662 2730 (-152 -144 408 ) (-152 -194 368 ) (-152 -273.230774 368 ) (-152 -378.461548 444 ) (-152 -144 613.333435 ) +3 2662 2718 (-152 -134 416 ) (-152 -144 408 ) (-152 -144 416 ) +5 2662 2716 (-152 -128 420.800049 ) (-152 -134 416 ) (-152 -144 416 ) (-152 -144 432 ) (-152 -128 432 ) +4 2662 2714 (-152 -144 432 ) (-152 -144 448 ) (-152 -128 448 ) (-152 -128 432 ) +4 2662 2713 (-152 -144 448 ) (-152 -144 613.333435 ) (-152 -128 624.888977 ) (-152 -128 448 ) +4 2662 2711 (-152 0 717.333496 ) (-152 0 523.200195 ) (-152 -128 420.800049 ) (-152 -128 624.888977 ) +4 2662 2674 (-152 -273.230774 368 ) (-152 -240 368 ) (-128 -240 368 ) (-128 -273.230774 368 ) +4 2662 2672 (-152 -224 368 ) (-152 -194 368 ) (-128 -194 368 ) (-128 -224 368 ) +4 2662 2673 (-152 -240 368 ) (-152 -224 368 ) (-128 -224 368 ) (-128 -240 368 ) +4 2662 2665 (-152 -163.998505 391.998840 ) (-152 0 523.197632 ) (-128 0 523.197754 ) (-128 -163.998535 391.998840 ) +4 2662 2663 (-152 0 717.335938 ) (-152 -378.463348 444.001343 ) (-128 -378.463348 444.001343 ) (-128 0 717.336060 ) +4 2663 3272 (-128 -1024 910.222290 ) (-128 -1024 5542.669922 ) (-152 -1024 5542.669922 ) (-152 -1024 910.222168 ) +5 2663 2730 (-152 -144 613.333435 ) (-152 -378.461548 444 ) (-152 -1024 910.222290 ) (-152 -1024 5542.669922 ) (-152 -144 5542.669922 ) +4 2663 2713 (-152 -128 624.888977 ) (-152 -144 613.333435 ) (-152 -144 5542.669922 ) (-152 -128 5542.669922 ) +4 2663 2711 (-152 0 1000 ) (-152 0 717.333496 ) (-152 -128 624.888977 ) (-152 -128 1000 ) +4 2663 2710 (-152 0 5542.669922 ) (-152 0 1000 ) (-152 -128 1000 ) (-152 -128 5542.669922 ) +4 2663 2664 (-152 -1024 910.226074 ) (-152 -383.997375 448.001892 ) (-128 -383.997375 448.001892 ) (-128 -1024 910.226196 ) +4 2664 3272 (-128 -1024 902.222229 ) (-128 -1024 910.222290 ) (-152 -1024 910.222168 ) (-152 -1024 902.222168 ) +4 2664 2730 (-152 -389.538483 444 ) (-152 -1024 902.222229 ) (-152 -1024 910.222290 ) (-152 -384 448 ) +3 2665 2730 (-152 -144 376 ) (-152 -164 392 ) (-152 -144 408 ) +5 2665 2722 (-152 -128 368 ) (-152 -134 368 ) (-152 -144 376 ) (-152 -144 384 ) (-152 -128 384 ) +4 2665 2720 (-152 -144 384 ) (-152 -144 400 ) (-152 -128 400 ) (-152 -128 384 ) +5 2665 2718 (-152 -144 400 ) (-152 -144 408 ) (-152 -134 416 ) (-152 -128 416 ) (-152 -128 400 ) +3 2665 2716 (-152 -134 416 ) (-152 -128 420.800049 ) (-152 -128 416 ) +3 2665 2712 (-152 0 416 ) (-152 0 368 ) (-152 -48 368 ) +5 2665 2711 (-152 0 523.200195 ) (-152 0 416 ) (-152 -48 368 ) (-152 -128 368 ) (-152 -128 420.800049 ) +4 2665 2670 (-152 -134 368 ) (-152 -104 368 ) (-128 -104 368 ) (-128 -134 368 ) +4 2665 2668 (-128 -88 368 ) (-128 -104 368 ) (-144 -104 368 ) (-144 -88 368 ) +4 2665 2667 (-144 0 368 ) (-128 0 368 ) (-128 -88 368 ) (-144 -88 368 ) +4 2665 2669 (-152 -104 368 ) (-152 0 368 ) (-144 0 368 ) (-144 -104 368 ) +3 2666 2730 (-152 -144 368 ) (-152 -184 368 ) (-152 -164 384 ) +4 2666 2675 (-152 -184 368 ) (-152 -144 368 ) (-144 -144 368 ) (-144 -184 368 ) +4 2667 2767 (-144 0 320 ) (-140 0 320 ) (-140 -88 320 ) (-144 -88 320 ) +4 2667 2757 (-140 0 320 ) (-128 0 320 ) (-128 -88 320 ) (-140 -88 320 ) +4 2667 2668 (-144 -88 368 ) (-144 -88 336 ) (-128 -88 336 ) (-128 -88 368 ) +4 2667 2669 (-144 0 320 ) (-144 -88 320 ) (-144 -88 368 ) (-144 0 368 ) +4 2668 2670 (-128 -104 368 ) (-144 -104 368 ) (-144 -104 344 ) (-128 -104 344 ) +4 2668 2669 (-144 -104 336 ) (-144 -104 368 ) (-144 -88 368 ) (-144 -88 336 ) +4 2669 2777 (-152 0 320 ) (-144 0 320 ) (-144 -96 320 ) (-152 -96 320 ) +4 2669 2775 (-144 -96 320 ) (-144 -104 320 ) (-152 -104 320 ) (-152 -96 320 ) +4 2669 2712 (-152 0 368 ) (-152 0 320 ) (-152 -96 320 ) (-152 -48 368 ) +4 2669 2711 (-152 -96 320 ) (-152 -104 320 ) (-152 -104 368 ) (-152 -48 368 ) +4 2669 2676 (-152 -104 336 ) (-152 -104 320 ) (-144 -104 320 ) (-144 -104 336 ) +4 2669 2670 (-144 -104 368 ) (-152 -104 368 ) (-152 -104 344 ) (-144 -104 344 ) +3 2670 2724 (-152 -134 368 ) (-152 -128 368 ) (-152 -128 363.200012 ) +4 2670 2711 (-152 -128 368 ) (-152 -104 368 ) (-152 -104 344 ) (-152 -128 363.200012 ) +4 2671 2738 (-152 -528 336 ) (-152 -505.846191 352 ) (-152 -504 352 ) (-152 -504 336 ) +4 2671 2737 (-152 -504 352 ) (-152 -488 352 ) (-152 -488 336 ) (-152 -504 336 ) +4 2671 2734 (-152 -488 352 ) (-152 -262.153870 352 ) (-152 -240 336 ) (-152 -488 336 ) +4 2671 2731 (-152 -505.846191 352 ) (-152 -503.076965 354 ) (-152 -264.923096 354 ) (-152 -262.153870 352 ) +4 2671 2730 (-152 -503.076965 354 ) (-152 -483.692352 368 ) (-152 -284.307709 368 ) (-152 -264.923096 354 ) +4 2671 2676 (-144 -528.001953 336 ) (-152 -528.001953 336 ) (-152 -240 336 ) (-144 -240 336 ) +3 2672 2734 (-152 -214 352 ) (-152 -224 344 ) (-152 -224 352 ) +4 2672 2731 (-152 -211.500000 354 ) (-152 -214 352 ) (-152 -224 352 ) (-152 -224 354 ) +4 2672 2730 (-152 -224 368 ) (-152 -194 368 ) (-152 -211.500000 354 ) (-152 -224 354 ) +4 2672 2673 (-128 -224 344 ) (-128 -224 368 ) (-152 -224 368 ) (-152 -224 344 ) +4 2673 2734 (-152 -224 352 ) (-152 -224 336 ) (-152 -240 336 ) (-152 -240 352 ) +4 2673 2731 (-152 -224 354 ) (-152 -224 352 ) (-152 -240 352 ) (-152 -240 354 ) +4 2673 2730 (-152 -240 368 ) (-152 -224 368 ) (-152 -224 354 ) (-152 -240 354 ) +4 2673 2676 (-152 -240 336 ) (-152 -224 336 ) (-144 -224 336 ) (-144 -240 336 ) +4 2673 2674 (-128 -240 344 ) (-128 -240 368 ) (-152 -240 368 ) (-152 -240 344 ) +3 2674 2734 (-152 -240 352 ) (-152 -240 344 ) (-152 -251.076920 352 ) +4 2674 2731 (-152 -240 354 ) (-152 -240 352 ) (-152 -251.076920 352 ) (-152 -253.846146 354 ) +4 2674 2730 (-152 -273.230774 368 ) (-152 -240 368 ) (-152 -240 354 ) (-152 -253.846146 354 ) +4 2675 2734 (-152 -144 352 ) (-152 -144 336 ) (-152 -224 336 ) (-152 -204 352 ) +4 2675 2731 (-152 -144 354 ) (-152 -144 352 ) (-152 -204 352 ) (-152 -201.500000 354 ) +4 2675 2730 (-152 -184 368 ) (-152 -144 368 ) (-152 -144 354 ) (-152 -201.500000 354 ) +4 2675 2726 (-152 -128 352 ) (-152 -128 336 ) (-152 -144 336 ) (-152 -144 352 ) +4 2675 2724 (-152 -144 368 ) (-152 -128 355.199982 ) (-152 -128 352 ) (-152 -144 352 ) +3 2675 2711 (-152 -128 355.199982 ) (-152 -104 336 ) (-152 -128 336 ) +4 2675 2676 (-152 -224 336 ) (-152 -104 336 ) (-144 -104 336 ) (-144 -224 336 ) +4 2676 2783 (-144 -550.153870 320 ) (-152 -550.153870 320 ) (-152 -528 320 ) (-144 -528 320 ) +4 2676 2782 (-152 -528 320 ) (-152 -464 320 ) (-144 -464 320 ) (-144 -528 320 ) +4 2676 2779 (-152 -464 320 ) (-152 -144 320 ) (-144 -144 320 ) (-144 -464 320 ) +4 2676 2778 (-152 -144 320 ) (-152 -128 320 ) (-144 -128 320 ) (-144 -144 320 ) +4 2676 2775 (-152 -128 320 ) (-152 -104 320 ) (-144 -104 320 ) (-144 -128 320 ) +4 2676 2745 (-152 -512 320 ) (-152 -550.153931 320 ) (-152 -528 336 ) (-152 -512 336 ) +4 2676 2744 (-152 -480 320 ) (-152 -512 320 ) (-152 -512 336 ) (-152 -480 336 ) +4 2676 2741 (-152 -144 320 ) (-152 -480 320 ) (-152 -480 336 ) (-152 -144 336 ) +4 2676 2728 (-152 -128 320 ) (-152 -144 320 ) (-152 -144 336 ) (-152 -128 336 ) +4 2676 2711 (-152 -104 320 ) (-152 -128 320 ) (-152 -128 336 ) (-152 -104 336 ) +4 2676 2686 (-152 -536.410461 329.928345 ) (-152 -550.157410 320 ) (-144 -550.157410 320 ) (-144 -536.410461 329.928345 ) +4 2676 2683 (-152 -528.003601 336 ) (-152 -536.410461 329.928345 ) (-144 -536.410461 329.928345 ) (-144 -528.003601 336 ) +3 2677 2738 (-152 -516.923157 352 ) (-152 -528 344 ) (-152 -528 352 ) +4 2677 2731 (-152 -514.153931 354 ) (-152 -516.923157 352 ) (-152 -528 352 ) (-152 -528 354 ) +4 2677 2730 (-152 -528 368 ) (-152 -494.769318 368 ) (-152 -514.153931 354 ) (-152 -528 354 ) +4 2677 2682 (-128 -528 344 ) (-128 -528 368 ) (-144 -528 368 ) (-144 -528 344 ) +4 2677 2683 (-144 -528 368 ) (-152 -528 368 ) (-152 -528 344 ) (-144 -528 344 ) +3 2678 2738 (-152 -654 352 ) (-152 -664 344 ) (-152 -664 352 ) +4 2678 2731 (-152 -651.500122 354 ) (-152 -654 352 ) (-152 -664 352 ) (-152 -664 354 ) +4 2678 2730 (-152 -664 368 ) (-152 -634 368 ) (-152 -651.500122 354 ) (-152 -664 354 ) +4 2678 2679 (-128 -664 344 ) (-128 -664 368 ) (-144 -664 368 ) (-144 -664 344 ) +4 2678 2680 (-144 -664 368 ) (-152 -664 368 ) (-152 -664 344 ) (-144 -664 344 ) +4 2679 2680 (-144 -664 368 ) (-144 -664 336 ) (-144 -680 336 ) (-144 -680 368 ) +4 2680 2738 (-152 -704 336 ) (-152 -704 352 ) (-152 -664 352 ) (-152 -664 336 ) +4 2680 2731 (-152 -704 352 ) (-152 -704 354 ) (-152 -664 354 ) (-152 -664 352 ) +4 2680 2730 (-152 -704 354 ) (-152 -704 368 ) (-152 -664 368 ) (-152 -664 354 ) +4 2680 2691 (-144 -704 368 ) (-152 -704 368 ) (-152 -704 336 ) (-144 -704 336 ) +4 2680 2681 (-144 -704 336 ) (-152 -704 336 ) (-152 -664 336 ) (-144 -664 336 ) +4 2681 2783 (-144 -704 320 ) (-152 -704 320 ) (-152 -684 320 ) (-144 -684 320 ) +4 2681 2745 (-152 -684 320 ) (-152 -704 320 ) (-152 -704 336 ) (-152 -664 336 ) +4 2681 2692 (-152 -704 336 ) (-152 -704 320 ) (-144 -704 320 ) (-144 -704 336 ) +4 2681 2686 (-144 -683.996033 320 ) (-152 -683.996033 320 ) (-152 -663.996033 336 ) (-144 -663.996033 336 ) +4 2682 2684 (-128 -544 344 ) (-128 -544 368 ) (-144 -544 368 ) (-144 -544 344 ) +5 2682 2683 (-144 -543.990234 336 ) (-144 -544 336.007813 ) (-144 -544 368 ) (-144 -528 368 ) (-144 -528 336 ) +3 2683 2745 (-152 -528 336 ) (-152 -536.408813 329.927032 ) (-152 -544 336 ) +4 2683 2738 (-152 -528 352 ) (-152 -528 336 ) (-152 -544 336 ) (-152 -544 352 ) +4 2683 2731 (-152 -528 354 ) (-152 -528 352 ) (-152 -544 352 ) (-152 -544 354 ) +4 2683 2730 (-152 -544 368 ) (-152 -528 368 ) (-152 -528 354 ) (-152 -544 354 ) +4 2683 2686 (-152 -544 336 ) (-152 -536.408997 329.926849 ) (-144 -536.408997 329.926849 ) (-144 -544 336 ) +4 2683 2684 (-144 -544 344 ) (-144 -544 368 ) (-152 -544 368 ) (-152 -544 344 ) +3 2684 2738 (-152 -544 352 ) (-152 -544 344 ) (-152 -554 352 ) +4 2684 2731 (-152 -544 354 ) (-152 -544 352 ) (-152 -554 352 ) (-152 -556.500000 354 ) +4 2684 2730 (-152 -574 368 ) (-152 -544 368 ) (-152 -544 354 ) (-152 -556.500000 354 ) +4 2685 2738 (-152 -664 336 ) (-152 -644 352 ) (-152 -564 352 ) (-152 -544 336 ) +4 2685 2731 (-152 -644 352 ) (-152 -641.500122 354 ) (-152 -566.500000 354 ) (-152 -564 352 ) +4 2685 2730 (-152 -641.500122 354 ) (-152 -624 368 ) (-152 -584 368 ) (-152 -566.500000 354 ) +4 2685 2686 (-144 -664 336 ) (-152 -664 336 ) (-152 -543.998047 336 ) (-144 -543.998047 336 ) +4 2686 2783 (-144 -684 320 ) (-152 -684 320 ) (-152 -550.153870 320 ) (-144 -550.153870 320 ) +5 2686 2745 (-152 -550.153931 320 ) (-152 -684 320 ) (-152 -664 336 ) (-152 -544 336 ) (-152 -536.408813 329.927032 ) +4 2687 2691 (-140 -704 368 ) (-140 -704 336 ) (-140 -712 336 ) (-140 -712 368 ) +4 2688 2691 (-140 -720 336 ) (-140 -728 336 ) (-140 -728 368 ) (-140 -720 368 ) +4 2689 2691 (-140 -736 336 ) (-140 -744 336 ) (-140 -744 368 ) (-140 -736 368 ) +4 2690 2691 (-140 -752 336 ) (-140 -760 336 ) (-140 -760 368 ) (-140 -752 368 ) +4 2691 2738 (-152 -768 336 ) (-152 -768 352 ) (-152 -704 352 ) (-152 -704 336 ) +4 2691 2731 (-152 -768 352 ) (-152 -768 354 ) (-152 -704 354 ) (-152 -704 352 ) +4 2691 2730 (-152 -768 354 ) (-152 -768 368 ) (-152 -704 368 ) (-152 -704 354 ) +4 2691 2704 (-140 -768 368 ) (-144 -768 368 ) (-144 -768 336 ) (-140 -768 336 ) +4 2691 2706 (-144 -768 368 ) (-152 -768 368 ) (-152 -768 336 ) (-144 -768 336 ) +4 2691 2692 (-144 -768 336 ) (-152 -768 336 ) (-152 -704 336 ) (-144 -704 336 ) +4 2692 2783 (-144 -768 320 ) (-152 -768 320 ) (-152 -704 320 ) (-144 -704 320 ) +4 2692 2745 (-152 -704 320 ) (-152 -768 320 ) (-152 -768 336 ) (-152 -704 336 ) +4 2692 2707 (-152 -768 336 ) (-152 -768 320 ) (-144 -768 320 ) (-144 -768 336 ) +4 2693 2704 (-140 -768 368 ) (-140 -768 336 ) (-140 -776 336 ) (-140 -776 368 ) +4 2694 2704 (-140 -784 336 ) (-140 -792 336 ) (-140 -792 368 ) (-140 -784 368 ) +4 2695 2704 (-140 -800 336 ) (-140 -808 336 ) (-140 -808 368 ) (-140 -800 368 ) +4 2696 2704 (-140 -824 336 ) (-140 -832 336 ) (-140 -832 368 ) (-140 -824 368 ) +4 2697 2704 (-140 -840 336 ) (-140 -848 336 ) (-140 -848 368 ) (-140 -840 368 ) +4 2698 2704 (-140 -856 336 ) (-140 -864 336 ) (-140 -864 368 ) (-140 -856 368 ) +4 2699 2704 (-140 -872 336 ) (-140 -880 336 ) (-140 -880 368 ) (-140 -872 368 ) +4 2700 2704 (-140 -888 336 ) (-140 -896 336 ) (-140 -896 368 ) (-140 -888 368 ) +4 2701 2704 (-140 -904 336 ) (-140 -912 336 ) (-140 -912 368 ) (-140 -904 368 ) +4 2702 2704 (-140 -920 336 ) (-140 -928 336 ) (-140 -928 368 ) (-140 -920 368 ) +4 2703 3272 (-128 -1024 336 ) (-128 -1024 368 ) (-140 -1024 368 ) (-140 -1024 336 ) +4 2703 2708 (-128 -964 336 ) (-128 -1024 336 ) (-140 -1024 336 ) (-140 -964 336 ) +4 2703 2705 (-140 -964 336 ) (-140 -1024 336 ) (-140 -1024 368 ) (-140 -964 368 ) +4 2704 2706 (-144 -768 368 ) (-144 -768 336 ) (-144 -928 336 ) (-144 -928 368 ) +4 2705 3272 (-140 -1024 368 ) (-144 -1024 368 ) (-144 -1024 336 ) (-140 -1024 336 ) +4 2705 2708 (-140 -964 336 ) (-140 -1024 336 ) (-144 -1024 336 ) (-144 -964 336 ) +4 2705 2706 (-144 -964 336 ) (-144 -1024 336 ) (-144 -1024 368 ) (-144 -964 368 ) +4 2706 3272 (-144 -1024 368 ) (-152 -1024 368 ) (-152 -1024 336 ) (-144 -1024 336 ) +4 2706 2738 (-152 -1024 336 ) (-152 -1024 352 ) (-152 -768 352 ) (-152 -768 336 ) +4 2706 2731 (-152 -1024 352 ) (-152 -1024 354 ) (-152 -768 354 ) (-152 -768 352 ) +4 2706 2730 (-152 -1024 354 ) (-152 -1024 368 ) (-152 -768 368 ) (-152 -768 354 ) +4 2706 2709 (-152 -1024 336 ) (-152 -928 336 ) (-144 -928 336 ) (-144 -1024 336 ) +4 2706 2707 (-152 -928 336 ) (-152 -768 336 ) (-144 -768 336 ) (-144 -928 336 ) +4 2707 2783 (-144 -928 320 ) (-152 -928 320 ) (-152 -768 320 ) (-144 -768 320 ) +4 2707 2745 (-152 -768 320 ) (-152 -928 320 ) (-152 -928 336 ) (-152 -768 336 ) +4 2707 2709 (-144 -928 336 ) (-152 -928 336 ) (-152 -928 320 ) (-144 -928 320 ) +4 2708 3272 (-128 -1024 320 ) (-128 -1024 336 ) (-144 -1024 336 ) (-144 -1024 320 ) +4 2708 2774 (-140 -1024 320 ) (-144 -1024 320 ) (-144 -964 320 ) (-140 -964 320 ) +4 2708 2766 (-128 -964 320 ) (-128 -1024 320 ) (-140 -1024 320 ) (-140 -964 320 ) +4 2708 2709 (-144 -964 320 ) (-144 -1024 320 ) (-144 -1024 336 ) (-144 -964 336 ) +4 2709 3272 (-144 -1024 336 ) (-152 -1024 336 ) (-152 -1024 320 ) (-144 -1024 320 ) +4 2709 2783 (-144 -1024 320 ) (-152 -1024 320 ) (-152 -928 320 ) (-144 -928 320 ) +4 2709 2745 (-152 -928 320 ) (-152 -1024 320 ) (-152 -1024 336 ) (-152 -928 336 ) +5 2710 3048 (-1024 0 5542.669922 ) (-1024 0 416 ) (-1024 -96 320 ) (-1024 -128 320 ) (-1024 -128 5542.669922 ) +4 2710 2786 (-848 -128 320 ) (-1024 -128 320 ) (-1024 -96 320 ) (-848 -96 320 ) +4 2710 2776 (-832 -128 320 ) (-848 -128 320 ) (-848 -96 320 ) (-832 -96 320 ) +4 2710 2729 (-1024 -128 336 ) (-1024 -128 320 ) (-848 -128 320 ) (-848 -128 336 ) +4 2710 2727 (-1024 -128 352 ) (-1024 -128 336 ) (-832 -128 336 ) (-832 -128 352 ) +4 2710 2725 (-1024 -128 368 ) (-1024 -128 352 ) (-816 -128 352 ) (-816 -128 368 ) +4 2710 2723 (-1024 -128 384 ) (-1024 -128 368 ) (-800 -128 368 ) (-800 -128 384 ) +4 2710 2721 (-1024 -128 400 ) (-1024 -128 384 ) (-784 -128 384 ) (-784 -128 400 ) +4 2710 2719 (-1024 -128 416 ) (-1024 -128 400 ) (-768 -128 400 ) (-768 -128 416 ) +4 2710 2717 (-1024 -128 432 ) (-1024 -128 416 ) (-752 -128 416 ) (-752 -128 432 ) +4 2710 2715 (-1024 -128 448 ) (-1024 -128 432 ) (-736 -128 432 ) (-736 -128 448 ) +5 2710 2713 (-1024 -128 5542.669922 ) (-1024 -128 448 ) (-704 -128 448 ) (-152 -128 1000 ) (-152 -128 5542.669922 ) +4 2710 2711 (-720 0 432 ) (-152 0 1000 ) (-152 -128 1000 ) (-720 -128 432 ) +4 2711 2775 (-152 -96 320 ) (-152 -128 320 ) (-608 -128 320 ) (-608 -96 320 ) +4 2711 2728 (-592 -128 320 ) (-152 -128 320 ) (-152 -128 336 ) (-592 -128 336 ) +4 2711 2726 (-152 -128 336 ) (-152 -128 352 ) (-608 -128 352 ) (-608 -128 336 ) +4 2711 2724 (-152 -128 352 ) (-152 -128 368 ) (-624 -128 368 ) (-624 -128 352 ) +4 2711 2722 (-152 -128 368 ) (-152 -128 384 ) (-640 -128 384 ) (-640 -128 368 ) +4 2711 2720 (-152 -128 384 ) (-152 -128 400 ) (-656 -128 400 ) (-656 -128 384 ) +4 2711 2718 (-152 -128 400 ) (-152 -128 416 ) (-672 -128 416 ) (-672 -128 400 ) +4 2711 2716 (-152 -128 416 ) (-152 -128 432 ) (-688 -128 432 ) (-688 -128 416 ) +4 2711 2714 (-152 -128 432 ) (-152 -128 448 ) (-704 -128 448 ) (-704 -128 432 ) +3 2711 2713 (-152 -128 448 ) (-152 -128 1000 ) (-704 -128 448 ) +4 2711 2712 (-152 0 416 ) (-152 -96 320 ) (-608 -96 320 ) (-704 0 416 ) +4 2712 2777 (-608 0 320 ) (-152 0 320 ) (-152 -96 320 ) (-608 -96 320 ) +4 2713 3048 (-1024 -144 448 ) (-1024 -144 5542.669922 ) (-1024 -128 5542.669922 ) (-1024 -128 448 ) +4 2713 2752 (-848 -144 5542.669922 ) (-1024 -144 5542.669922 ) (-1024 -144 448 ) (-848 -144 448 ) +4 2713 2730 (-152 -144 448 ) (-152 -144 5542.669922 ) (-848 -144 5542.669922 ) (-848 -144 448 ) +4 2713 2714 (-152 -144 448 ) (-704 -144 448 ) (-704 -128 448 ) (-152 -128 448 ) +4 2713 2715 (-736 -144 448 ) (-1024 -144 448 ) (-1024 -128 448 ) (-736 -128 448 ) +4 2714 2730 (-152 -144 432 ) (-152 -144 448 ) (-704 -144 448 ) (-704 -144 432 ) +4 2714 2716 (-152 -144 432 ) (-688 -144 432 ) (-688 -128 432 ) (-152 -128 432 ) +4 2715 3048 (-1024 -144 432 ) (-1024 -144 448 ) (-1024 -128 448 ) (-1024 -128 432 ) +4 2715 2752 (-848 -144 448 ) (-1024 -144 448 ) (-1024 -144 432 ) (-848 -144 432 ) +4 2715 2730 (-736 -144 448 ) (-848 -144 448 ) (-848 -144 432 ) (-736 -144 432 ) +4 2715 2717 (-752 -144 432 ) (-1024 -144 432 ) (-1024 -128 432 ) (-752 -128 432 ) +4 2716 2730 (-152 -144 416 ) (-152 -144 432 ) (-688 -144 432 ) (-688 -144 416 ) +4 2716 2718 (-152 -144 416 ) (-672 -144 416 ) (-672 -128 416 ) (-152 -128 416 ) +4 2717 3048 (-1024 -144 416 ) (-1024 -144 432 ) (-1024 -128 432 ) (-1024 -128 416 ) +4 2717 2752 (-848 -144 432 ) (-1024 -144 432 ) (-1024 -144 416 ) (-848 -144 416 ) +4 2717 2730 (-752 -144 432 ) (-848 -144 432 ) (-848 -144 416 ) (-752 -144 416 ) +4 2717 2719 (-768 -144 416 ) (-1024 -144 416 ) (-1024 -128 416 ) (-768 -128 416 ) +4 2718 2730 (-152 -144 400 ) (-152 -144 416 ) (-672 -144 416 ) (-672 -144 400 ) +4 2718 2720 (-152 -144 400 ) (-656 -144 400 ) (-656 -128 400 ) (-152 -128 400 ) +4 2719 3048 (-1024 -144 400 ) (-1024 -144 416 ) (-1024 -128 416 ) (-1024 -128 400 ) +4 2719 2752 (-848 -144 416 ) (-1024 -144 416 ) (-1024 -144 400 ) (-848 -144 400 ) +4 2719 2730 (-768 -144 416 ) (-848 -144 416 ) (-848 -144 400 ) (-768 -144 400 ) +4 2719 2721 (-784 -144 400 ) (-1024 -144 400 ) (-1024 -128 400 ) (-784 -128 400 ) +4 2720 2730 (-152 -144 384 ) (-152 -144 400 ) (-656 -144 400 ) (-656 -144 384 ) +4 2720 2722 (-152 -144 384 ) (-640 -144 384 ) (-640 -128 384 ) (-152 -128 384 ) +4 2721 3048 (-1024 -144 384 ) (-1024 -144 400 ) (-1024 -128 400 ) (-1024 -128 384 ) +4 2721 2752 (-848 -144 400 ) (-1024 -144 400 ) (-1024 -144 384 ) (-848 -144 384 ) +4 2721 2730 (-784 -144 400 ) (-848 -144 400 ) (-848 -144 384 ) (-784 -144 384 ) +4 2721 2723 (-800 -144 384 ) (-1024 -144 384 ) (-1024 -128 384 ) (-800 -128 384 ) +4 2722 2730 (-152 -144 368 ) (-152 -144 384 ) (-640 -144 384 ) (-640 -144 368 ) +4 2722 2724 (-152 -144 368 ) (-624 -144 368 ) (-624 -128 368 ) (-152 -128 368 ) +4 2723 3048 (-1024 -144 368 ) (-1024 -144 384 ) (-1024 -128 384 ) (-1024 -128 368 ) +4 2723 2752 (-848 -144 384 ) (-1024 -144 384 ) (-1024 -144 368 ) (-848 -144 368 ) +4 2723 2730 (-800 -144 384 ) (-848 -144 384 ) (-848 -144 368 ) (-800 -144 368 ) +4 2723 2725 (-816 -144 368 ) (-1024 -144 368 ) (-1024 -128 368 ) (-816 -128 368 ) +4 2724 2731 (-152 -144 352 ) (-152 -144 354 ) (-624 -144 354 ) (-624 -144 352 ) +4 2724 2730 (-152 -144 354 ) (-152 -144 368 ) (-624 -144 368 ) (-624 -144 354 ) +4 2724 2726 (-152 -144 352 ) (-608 -144 352 ) (-608 -128 352 ) (-152 -128 352 ) +4 2725 3048 (-1024 -144 352 ) (-1024 -144 368 ) (-1024 -128 368 ) (-1024 -128 352 ) +4 2725 2752 (-848 -144 368 ) (-1024 -144 368 ) (-1024 -144 352 ) (-848 -144 352 ) +4 2725 2732 (-848 -144 354 ) (-848 -144 352 ) (-830 -144 352 ) (-830 -144 354 ) +4 2725 2731 (-830 -144 352 ) (-816 -144 352 ) (-816 -144 354 ) (-830 -144 354 ) +4 2725 2730 (-816 -144 368 ) (-848 -144 368 ) (-848 -144 354 ) (-816 -144 354 ) +4 2725 2727 (-832 -144 352 ) (-1024 -144 352 ) (-1024 -128 352 ) (-832 -128 352 ) +4 2726 2734 (-152 -144 336 ) (-152 -144 352 ) (-608 -144 352 ) (-608 -144 336 ) +4 2726 2728 (-152 -144 336 ) (-592 -144 336 ) (-592 -128 336 ) (-152 -128 336 ) +4 2727 3048 (-1024 -144 336 ) (-1024 -144 352 ) (-1024 -128 352 ) (-1024 -128 336 ) +4 2727 2752 (-848 -144 352 ) (-1024 -144 352 ) (-1024 -144 336 ) (-848 -144 336 ) +4 2727 2735 (-832 -144 352 ) (-848 -144 352 ) (-848 -144 336 ) (-832 -144 336 ) +4 2727 2729 (-848 -144 336 ) (-1024 -144 336 ) (-1024 -128 336 ) (-848 -128 336 ) +4 2728 2778 (-152 -128 320 ) (-152 -144 320 ) (-576 -144 320 ) (-576 -128 320 ) +4 2728 2741 (-592 -144 320 ) (-152 -144 320 ) (-152 -144 336 ) (-592 -144 336 ) +4 2729 3048 (-1024 -128 320 ) (-1024 -144 320 ) (-1024 -144 336 ) (-1024 -128 336 ) +4 2729 2787 (-864 -144 320 ) (-1024 -144 320 ) (-1024 -128 320 ) (-864 -128 320 ) +4 2729 2752 (-1024 -144 320 ) (-848 -144 320 ) (-848 -144 336 ) (-1024 -144 336 ) +4 2730 3318 (-848 -1024 5542.669922 ) (-848 -1024 354 ) (-208 -1024 354 ) (-208 -1024 5542.669922 ) +4 2730 3272 (-208 -1024 354 ) (-152 -1024 354 ) (-152 -1024 5542.669922 ) (-208 -1024 5542.669922 ) +4 2730 2752 (-848 -144 5542.669922 ) (-848 -144 354 ) (-848 -496 354 ) (-848 -496 5542.669922 ) +4 2730 2750 (-848 -648 354 ) (-848 -1024 354 ) (-848 -1024 5542.669922 ) (-848 -648 5542.669922 ) +4 2730 2748 (-848 -496 354 ) (-848 -648 354 ) (-848 -648 5542.669922 ) (-848 -496 5542.669922 ) +4 2730 2732 (-848 -486 354 ) (-848 -144 354 ) (-830 -144 354 ) (-830 -486 354 ) +4 2730 2733 (-848 -1024 354 ) (-848 -506 354 ) (-830 -506 354 ) (-830 -1024 354 ) +4 2730 2731 (-830 -144 354 ) (-152 -144 354 ) (-152 -1024 354 ) (-830 -1024 354 ) +4 2731 3318 (-830 -1024 352 ) (-208 -1024 352 ) (-208 -1024 354 ) (-830 -1024 354 ) +4 2731 3272 (-208 -1024 352 ) (-152 -1024 352 ) (-152 -1024 354 ) (-208 -1024 354 ) +4 2731 2738 (-152 -504 352 ) (-152 -1024 352 ) (-830 -1024 352 ) (-830 -504 352 ) +4 2731 2737 (-152 -488 352 ) (-152 -504 352 ) (-830 -504 352 ) (-830 -488 352 ) +4 2731 2734 (-830 -144 352 ) (-152 -144 352 ) (-152 -488 352 ) (-830 -488 352 ) +4 2731 2732 (-830 -144 352 ) (-830 -486 352 ) (-830 -486 354 ) (-830 -144 354 ) +4 2731 2733 (-830 -506 352 ) (-830 -1024 352 ) (-830 -1024 354 ) (-830 -506 354 ) +4 2732 2752 (-848 -144 354 ) (-848 -144 352 ) (-848 -486 352 ) (-848 -486 354 ) +4 2732 2736 (-848 -486 352 ) (-848 -478 352 ) (-830 -478 352 ) (-830 -486 352 ) +4 2732 2735 (-848 -478 352 ) (-848 -144 352 ) (-830 -144 352 ) (-830 -478 352 ) +4 2733 3318 (-848 -1024 354 ) (-848 -1024 352 ) (-830 -1024 352 ) (-830 -1024 354 ) +4 2733 2750 (-848 -648 352 ) (-848 -1024 352 ) (-848 -1024 354 ) (-848 -648 354 ) +4 2733 2748 (-848 -506 352 ) (-848 -648 352 ) (-848 -648 354 ) (-848 -506 354 ) +4 2733 2739 (-848 -514 352 ) (-848 -506 352 ) (-830 -506 352 ) (-830 -514 352 ) +4 2733 2740 (-848 -1024 352 ) (-848 -514 352 ) (-830 -514 352 ) (-830 -1024 352 ) +4 2734 2744 (-152 -480 336 ) (-152 -488 336 ) (-830 -488 336 ) (-830 -480 336 ) +4 2734 2741 (-830 -144 336 ) (-152 -144 336 ) (-152 -480 336 ) (-830 -480 336 ) +4 2734 2737 (-830 -488 336 ) (-152 -488 336 ) (-152 -488 352 ) (-830 -488 352 ) +4 2734 2736 (-830 -488 338 ) (-830 -488 352 ) (-830 -478 352 ) (-830 -478 338 ) +4 2734 2735 (-830 -144 336 ) (-830 -478 336 ) (-830 -478 352 ) (-830 -144 352 ) +4 2735 2752 (-848 -144 352 ) (-848 -144 336 ) (-848 -478 336 ) (-848 -478 352 ) +4 2735 2743 (-848 -478 336 ) (-848 -462 336 ) (-830 -462 336 ) (-830 -478 336 ) +4 2735 2742 (-848 -462 336 ) (-848 -144 336 ) (-830 -144 336 ) (-830 -462 336 ) +4 2735 2736 (-830 -478 338 ) (-830 -478 352 ) (-848 -478 352 ) (-848 -478 338 ) +4 2736 2752 (-848 -488 338 ) (-848 -488 352 ) (-848 -478 352 ) (-848 -478 338 ) +4 2736 2737 (-830 -488 338 ) (-830 -488 352 ) (-832 -488 352 ) (-832 -488 338 ) +4 2737 2744 (-832 -488 336 ) (-152 -488 336 ) (-152 -504 336 ) (-832 -504 336 ) +4 2737 2739 (-830 -504 338 ) (-830 -504 352 ) (-832 -504 352 ) (-832 -504 338 ) +4 2737 2738 (-830 -504 336 ) (-152 -504 336 ) (-152 -504 352 ) (-830 -504 352 ) +4 2738 3318 (-830 -1024 336 ) (-208 -1024 336 ) (-208 -1024 352 ) (-830 -1024 352 ) +4 2738 3272 (-208 -1024 336 ) (-152 -1024 336 ) (-152 -1024 352 ) (-208 -1024 352 ) +4 2738 2745 (-152 -512 336 ) (-152 -1024 336 ) (-830 -1024 336 ) (-830 -512 336 ) +4 2738 2744 (-830 -504 336 ) (-152 -504 336 ) (-152 -512 336 ) (-830 -512 336 ) +4 2738 2739 (-830 -504 352 ) (-830 -504 338 ) (-830 -514 338 ) (-830 -514 352 ) +4 2738 2740 (-830 -514 336 ) (-830 -1024 336 ) (-830 -1024 352 ) (-830 -514 352 ) +4 2739 2748 (-848 -514 338 ) (-848 -514 352 ) (-848 -504 352 ) (-848 -504 338 ) +4 2739 2740 (-830 -514 338 ) (-830 -514 352 ) (-848 -514 352 ) (-848 -514 338 ) +4 2740 3318 (-848 -1024 352 ) (-848 -1024 336 ) (-830 -1024 336 ) (-830 -1024 352 ) +4 2740 2750 (-848 -648 336 ) (-848 -1024 336 ) (-848 -1024 352 ) (-848 -648 352 ) +4 2740 2748 (-848 -514 336 ) (-848 -648 336 ) (-848 -648 352 ) (-848 -514 352 ) +4 2740 2746 (-848 -530 336 ) (-848 -514 336 ) (-830 -514 336 ) (-830 -530 336 ) +4 2740 2747 (-848 -1024 336 ) (-848 -530 336 ) (-830 -530 336 ) (-830 -1024 336 ) +4 2741 2782 (-152 -464 320 ) (-152 -480 320 ) (-830 -480 320 ) (-830 -464 320 ) +4 2741 2779 (-152 -144 320 ) (-152 -464 320 ) (-830 -464 320 ) (-830 -144 320 ) +4 2741 2744 (-152 -480 320 ) (-152 -480 336 ) (-830 -480 336 ) (-830 -480 320 ) +4 2741 2743 (-830 -480 322 ) (-830 -480 336 ) (-830 -462 336 ) (-830 -462 322 ) +4 2741 2742 (-830 -462 336 ) (-830 -144 336 ) (-830 -144 320 ) (-830 -462 320 ) +4 2742 2781 (-848 -462 320 ) (-848 -446 320 ) (-830 -446 320 ) (-830 -462 320 ) +4 2742 2780 (-848 -446 320 ) (-848 -144 320 ) (-830 -144 320 ) (-830 -446 320 ) +4 2742 2752 (-848 -144 336 ) (-848 -144 320 ) (-848 -462 320 ) (-848 -462 336 ) +4 2742 2743 (-830 -462 322 ) (-830 -462 336 ) (-848 -462 336 ) (-848 -462 322 ) +4 2743 2752 (-848 -480 322 ) (-848 -480 336 ) (-848 -462 336 ) (-848 -462 322 ) +4 2743 2744 (-830 -480 336 ) (-832 -480 336 ) (-832 -480 322 ) (-830 -480 322 ) +4 2744 2782 (-152 -480 320 ) (-152 -512 320 ) (-832 -512 320 ) (-832 -480 320 ) +4 2744 2746 (-830 -512 336 ) (-832 -512 336 ) (-832 -512 322 ) (-830 -512 322 ) +4 2744 2745 (-152 -512 320 ) (-152 -512 336 ) (-830 -512 336 ) (-830 -512 320 ) +4 2745 3318 (-830 -1024 320 ) (-208 -1024 320 ) (-208 -1024 336 ) (-830 -1024 336 ) +4 2745 3272 (-208 -1024 320 ) (-152 -1024 320 ) (-152 -1024 336 ) (-208 -1024 336 ) +4 2745 2783 (-152 -528 320 ) (-152 -1024 320 ) (-830 -1024 320 ) (-830 -528 320 ) +4 2745 2782 (-152 -512 320 ) (-152 -528 320 ) (-830 -528 320 ) (-830 -512 320 ) +4 2745 2746 (-830 -512 336 ) (-830 -512 322 ) (-830 -530 322 ) (-830 -530 336 ) +4 2745 2747 (-830 -530 320 ) (-830 -1024 320 ) (-830 -1024 336 ) (-830 -530 336 ) +4 2746 2748 (-848 -530 322 ) (-848 -530 336 ) (-848 -512 336 ) (-848 -512 322 ) +4 2746 2747 (-830 -530 322 ) (-830 -530 336 ) (-848 -530 336 ) (-848 -530 322 ) +4 2747 3318 (-848 -1024 336 ) (-848 -1024 320 ) (-830 -1024 320 ) (-830 -1024 336 ) +4 2747 2784 (-848 -546 320 ) (-848 -530 320 ) (-830 -530 320 ) (-830 -546 320 ) +4 2747 2785 (-830 -1024 320 ) (-848 -1024 320 ) (-848 -546 320 ) (-830 -546 320 ) +4 2747 2751 (-848 -648 320 ) (-848 -656.001953 320 ) (-848 -648.001892 336 ) (-848 -648 336 ) +4 2747 2750 (-848 -656.001953 320 ) (-848 -1024 320 ) (-848 -1024 336 ) (-848 -648.001892 336 ) +4 2747 2748 (-848 -530 320 ) (-848 -648 320 ) (-848 -648 336 ) (-848 -530 336 ) +4 2748 3048 (-1024 -648 360 ) (-1024 -648 5542.669922 ) (-1024 -320 5542.669922 ) (-1024 -320 688 ) +3 2748 2792 (-848 -512 320 ) (-848 -648 320 ) (-984 -648 320 ) +4 2748 2752 (-1024 -320 5542.669922 ) (-848 -496 5542.669922 ) (-848 -496 336 ) (-1024 -320 688 ) +4 2748 2751 (-984 -648 320 ) (-848 -648 320 ) (-848 -648 336.003906 ) (-1000.003967 -648 336.003906 ) +5 2748 2750 (-848 -648 336.003906 ) (-848 -648 5542.669922 ) (-1024 -648 5542.669922 ) (-1024 -648 360 ) (-1000.003967 -648 336.003906 ) +4 2748 2749 (-1024 -320 688.004150 ) (-848 -496 336.003906 ) (-1000 -648 336.003906 ) (-1024 -648 360.003845 ) +4 2749 3048 (-1024 -320 320 ) (-1024 -648 320 ) (-1024 -648 360 ) (-1024 -320 688 ) +4 2749 2793 (-1024 -648 320 ) (-1024 -320 320 ) (-848 -496 320 ) (-1000 -648 320 ) +4 2749 2756 (-1000 -344 320 ) (-1024 -320 320 ) (-1024 -320 336 ) (-1000 -344 336 ) +3 2749 2752 (-848 -496 336 ) (-1024 -320 336 ) (-1024 -320 688 ) +3 2749 2750 (-1000.003906 -648 336.003845 ) (-1024 -648 360 ) (-1024 -648 336.003906 ) +4 2750 3318 (-1024 -1024 5542.669922 ) (-1024 -1024 320 ) (-848 -1024 320 ) (-848 -1024 5542.669922 ) +5 2750 3049 (-1024 -656.001953 320 ) (-1024 -1024 320 ) (-1024 -1024 5542.669922 ) (-1024 -648 5542.669922 ) (-1024 -648 336.003906 ) +3 2750 2795 (-1024 -688 320 ) (-1024 -656.001953 320 ) (-992.002014 -656.001953 320 ) +5 2750 2794 (-848 -1024 320 ) (-1024 -1024 320 ) (-1024 -688 320 ) (-992.002014 -656.001953 320 ) (-848 -656.001953 320 ) +4 2750 2751 (-1000.003967 -648 336.003906 ) (-848 -648 336.003906 ) (-848 -656.001953 320 ) (-992.002014 -656.001953 320 ) +4 2751 2794 (-984 -648 320 ) (-848 -648 320 ) (-848 -656.001953 320 ) (-992.002014 -656.001953 320 ) +6 2752 3048 (-1024 -144 320 ) (-1024 -302 320 ) (-1024 -305.600281 321.600159 ) (-1024 -320 336 ) (-1024 -320 5542.669922 ) (-1024 -144 5542.669922 ) +4 2752 2788 (-1024 -302 320 ) (-1024 -144 320 ) (-848 -144 320 ) (-848 -478 320 ) +4 2752 2756 (-1000.003906 -344.003906 336.001953 ) (-1024 -320.007813 336.001953 ) (-1024 -305.610413 321.604645 ) (-992.805176 -336.805206 321.604645 ) +4 2752 2755 (-848 -481.605469 321.601654 ) (-896.802734 -432.802734 321.601654 ) (-895 -431 320 ) (-848 -478.001740 320 ) +4 2752 2754 (-920.802734 -408.802734 321.601654 ) (-952.802734 -376.802734 321.601685 ) (-951 -375 320 ) (-919 -407 320 ) +4 2752 2753 (-976.802734 -352.802704 321.601685 ) (-1024 -305.605469 321.601685 ) (-1024 -302.001709 320 ) (-975 -351 320 ) +3 2753 3048 (-1024 -302 320 ) (-1024 -304 320 ) (-1024 -305.600281 321.600159 ) +4 2753 2789 (-1024 -304 320 ) (-1024 -302 320 ) (-975 -351 320 ) (-976 -352 320 ) +4 2753 2756 (-992.805237 -336.805206 321.604645 ) (-1024 -305.610413 321.604645 ) (-1024 -304.005737 320 ) (-992.002869 -336.002869 320 ) +4 2754 2790 (-951 -375 320 ) (-919 -407 320 ) (-920 -408 320 ) (-952 -376 320 ) +4 2755 2791 (-895 -431 320 ) (-848 -478 320 ) (-848 -480 320 ) (-896 -432 320 ) +3 2756 3048 (-1024 -304 320 ) (-1024 -320 320 ) (-1024 -320 336 ) +4 2756 2796 (-1024 -320 320 ) (-1024 -304 320 ) (-992 -336 320 ) (-1000 -344 320 ) +4 2757 2864 (-140 0 240 ) (-128 0 240 ) (-128 -88 240 ) (-140 -88 240 ) +4 2757 2767 (-140 0 240 ) (-140 -88 240 ) (-140 -88 320 ) (-140 0 320 ) +4 2758 2759 (-130 -132 240 ) (-128 -132 240 ) (-128 -132 320 ) (-130 -132 320 ) +4 2759 2761 (-130 -196 240 ) (-128 -196 240 ) (-128 -196 320 ) (-130 -196 320 ) +4 2760 2769 (-140 -196 248 ) (-140 -196 312 ) (-140 -132 312 ) (-140 -132 248 ) +4 2762 2772 (-140 -416 248 ) (-140 -416 312 ) (-140 -352 312 ) (-140 -352 248 ) +4 2763 2773 (-140 -636 248 ) (-140 -636 312 ) (-140 -572 312 ) (-140 -572 248 ) +4 2764 2773 (-140 -768 248 ) (-140 -768 312 ) (-140 -704 312 ) (-140 -704 248 ) +4 2765 2773 (-140 -900 248 ) (-140 -900 312 ) (-140 -836 312 ) (-140 -836 248 ) +4 2766 3272 (-128 -1024 240 ) (-128 -1024 320 ) (-140 -1024 320 ) (-140 -1024 240 ) +4 2766 2875 (-128 -964 240 ) (-128 -1024 240 ) (-140 -1024 240 ) (-140 -964 240 ) +4 2766 2774 (-140 -964 240 ) (-140 -1024 240 ) (-140 -1024 320 ) (-140 -964 320 ) +4 2767 2864 (-144 0 240 ) (-140 0 240 ) (-140 -88 240 ) (-144 -88 240 ) +4 2767 2797 (-144 0 240 ) (-144 -88 240 ) (-144 -88 304 ) (-144 0 304 ) +4 2767 2777 (-144 -88 304 ) (-144 -88 320 ) (-144 0 320 ) (-144 0 304 ) +4 2768 2797 (-144 -104 240 ) (-144 -132 240 ) (-144 -132 304 ) (-144 -104 304 ) +4 2768 2778 (-144 -132 304 ) (-144 -132 320 ) (-144 -128 320 ) (-144 -128 304 ) +3 2768 2777 (-144 -104 312 ) (-144 -104 304 ) (-144 -112 304 ) +5 2768 2775 (-144 -128 320 ) (-144 -104 320 ) (-144 -104 312 ) (-144 -112 304 ) (-144 -128 304 ) +4 2768 2770 (-144 -132 320 ) (-144 -132 240 ) (-142 -132 240 ) (-142 -132 320 ) +4 2769 2770 (-142 -132 312 ) (-142 -132 248 ) (-142 -196 248 ) (-142 -196 312 ) +4 2770 2819 (-144 -144 240 ) (-144 -196 240 ) (-144 -196 256 ) (-144 -144 256 ) +4 2770 2816 (-144 -196 256 ) (-144 -196 272 ) (-144 -144 272 ) (-144 -144 256 ) +4 2770 2809 (-144 -196 272 ) (-144 -196 288 ) (-144 -144 288 ) (-144 -144 272 ) +4 2770 2802 (-144 -196 288 ) (-144 -196 304 ) (-144 -144 304 ) (-144 -144 288 ) +4 2770 2797 (-144 -132 240 ) (-144 -144 240 ) (-144 -144 304 ) (-144 -132 304 ) +4 2770 2779 (-144 -196 304 ) (-144 -196 320 ) (-144 -144 320 ) (-144 -144 304 ) +4 2770 2778 (-144 -144 320 ) (-144 -132 320 ) (-144 -132 304 ) (-144 -144 304 ) +4 2770 2771 (-144 -196 320 ) (-144 -196 240 ) (-142 -196 240 ) (-142 -196 320 ) +4 2771 2819 (-144 -196 240 ) (-144 -224 240 ) (-144 -224 256 ) (-144 -196 256 ) +4 2771 2816 (-144 -224 256 ) (-144 -224 272 ) (-144 -196 272 ) (-144 -196 256 ) +4 2771 2809 (-144 -224 272 ) (-144 -224 288 ) (-144 -196 288 ) (-144 -196 272 ) +4 2771 2802 (-144 -224 288 ) (-144 -224 304 ) (-144 -196 304 ) (-144 -196 288 ) +4 2771 2779 (-144 -224 304 ) (-144 -224 320 ) (-144 -196 320 ) (-144 -196 304 ) +4 2772 2822 (-144 -416 240 ) (-144 -528 240 ) (-144 -528 256 ) (-144 -416 256 ) +4 2772 2819 (-144 -240 240 ) (-144 -416 240 ) (-144 -416 256 ) (-144 -240 256 ) +4 2772 2816 (-144 -528 256 ) (-144 -528 272 ) (-144 -240 272 ) (-144 -240 256 ) +4 2772 2812 (-144 -528 272 ) (-144 -528 288 ) (-144 -432 288 ) (-144 -432 272 ) +4 2772 2809 (-144 -432 288 ) (-144 -240 288 ) (-144 -240 272 ) (-144 -432 272 ) +4 2772 2805 (-144 -528 288 ) (-144 -528 304 ) (-144 -448 304 ) (-144 -448 288 ) +4 2772 2802 (-144 -448 304 ) (-144 -240 304 ) (-144 -240 288 ) (-144 -448 288 ) +4 2772 2782 (-144 -528 304 ) (-144 -528 320 ) (-144 -464 320 ) (-144 -464 304 ) +4 2772 2779 (-144 -464 320 ) (-144 -240 320 ) (-144 -240 304 ) (-144 -464 304 ) +4 2773 2823 (-144 -576 240 ) (-144 -928 240 ) (-144 -928 256 ) (-144 -576 256 ) +4 2773 2822 (-144 -544 240 ) (-144 -576 240 ) (-144 -576 256 ) (-144 -544 256 ) +4 2773 2816 (-144 -928 256 ) (-144 -928 272 ) (-144 -544 272 ) (-144 -544 256 ) +4 2773 2813 (-144 -928 272 ) (-144 -928 288 ) (-144 -560 288 ) (-144 -560 272 ) +4 2773 2812 (-144 -560 288 ) (-144 -544 288 ) (-144 -544 272 ) (-144 -560 272 ) +4 2773 2806 (-144 -928 288 ) (-144 -928 304 ) (-144 -544 304 ) (-144 -544 288 ) +4 2773 2783 (-144 -928 304 ) (-144 -928 320 ) (-144 -544 320 ) (-144 -544 304 ) +4 2774 3272 (-140 -1024 320 ) (-144 -1024 320 ) (-144 -1024 240 ) (-140 -1024 240 ) +4 2774 2875 (-140 -964 240 ) (-140 -1024 240 ) (-144 -1024 240 ) (-144 -964 240 ) +4 2774 2823 (-144 -964 240 ) (-144 -1024 240 ) (-144 -1024 256 ) (-144 -964 256 ) +4 2774 2816 (-144 -1024 256 ) (-144 -1024 272 ) (-144 -964 272 ) (-144 -964 256 ) +4 2774 2813 (-144 -1024 272 ) (-144 -1024 288 ) (-144 -964 288 ) (-144 -964 272 ) +4 2774 2806 (-144 -1024 288 ) (-144 -1024 304 ) (-144 -964 304 ) (-144 -964 288 ) +4 2774 2783 (-144 -1024 304 ) (-144 -1024 320 ) (-144 -964 320 ) (-144 -964 304 ) +4 2775 2797 (-144 -112 304 ) (-144 -128 304 ) (-576 -128 304 ) (-576 -112 304 ) +4 2775 2778 (-576 -128 304 ) (-144 -128 304 ) (-144 -128 320 ) (-576 -128 320 ) +4 2775 2777 (-144 -96.003906 320 ) (-144 -112.001961 304 ) (-592 -112.001976 304 ) (-608 -96.002640 320 ) +4 2776 2786 (-848 -112 304 ) (-848 -128 304 ) (-848 -128 320 ) (-848 -96 320 ) +4 2777 2797 (-576 0 304 ) (-144 0 304 ) (-144 -112 304 ) (-576 -112 304 ) +4 2778 2797 (-144 -128 304 ) (-144 -144 304 ) (-576 -144 304 ) (-576 -128 304 ) +4 2778 2779 (-576 -144 304 ) (-144 -144 304 ) (-144 -144 320 ) (-576 -144 320 ) +4 2779 2805 (-144 -448 304 ) (-144 -464 304 ) (-830 -464 304 ) (-830 -448 304 ) +4 2779 2802 (-144 -144 304 ) (-144 -448 304 ) (-830 -448 304 ) (-830 -144 304 ) +4 2779 2782 (-830 -464 304 ) (-144 -464 304 ) (-144 -464 320 ) (-830 -464 320 ) +4 2779 2781 (-830 -464 306 ) (-830 -464 320 ) (-830 -446 320 ) (-830 -446 306 ) +4 2779 2780 (-830 -144 320 ) (-830 -144 304 ) (-830 -446 304 ) (-830 -446 320 ) +4 2780 2804 (-848 -446 304 ) (-848 -430 304 ) (-830 -430 304 ) (-830 -446 304 ) +4 2780 2803 (-848 -430 304 ) (-848 -144 304 ) (-830 -144 304 ) (-830 -430 304 ) +3 2780 2791 (-848 -442 304 ) (-848 -446 304 ) (-848 -446 305.777771 ) +5 2780 2788 (-848 -144 304 ) (-848 -442 304 ) (-848 -446 305.777771 ) (-848 -446 320 ) (-848 -144 320 ) +4 2780 2781 (-848 -446 320 ) (-848 -446 306 ) (-830 -446 306 ) (-830 -446 320 ) +3 2781 2791 (-848 -464 306 ) (-848 -464 313.777771 ) (-848 -446.500000 306 ) +5 2781 2788 (-848 -464 313.777771 ) (-848 -464 320 ) (-848 -446 320 ) (-848 -446 306 ) (-848 -446.500000 306 ) +4 2781 2782 (-832 -464 306 ) (-830 -464 306 ) (-830 -464 320 ) (-832 -464 320 ) +4 2782 2805 (-144 -464 304 ) (-144 -528 304 ) (-832 -528 304 ) (-832 -464 304 ) +4 2782 2784 (-830 -528 306 ) (-830 -528 320 ) (-832 -528 320 ) (-832 -528 306 ) +4 2782 2783 (-830 -528 304 ) (-144 -528 304 ) (-144 -528 320 ) (-830 -528 320 ) +4 2783 3318 (-208 -1024 320 ) (-830 -1024 320 ) (-830 -1024 304 ) (-208 -1024 304 ) +4 2783 3272 (-144 -1024 320 ) (-208 -1024 320 ) (-208 -1024 304 ) (-144 -1024 304 ) +4 2783 2806 (-144 -544 304 ) (-144 -1024 304 ) (-830 -1024 304 ) (-830 -544 304 ) +4 2783 2805 (-144 -528 304 ) (-144 -544 304 ) (-830 -544 304 ) (-830 -528 304 ) +4 2783 2784 (-830 -528 320 ) (-830 -528 306 ) (-830 -546 306 ) (-830 -546 320 ) +4 2783 2785 (-830 -546 304 ) (-830 -1024 304 ) (-830 -1024 320 ) (-830 -546 320 ) +4 2784 2792 (-848 -546 306 ) (-848 -546 320 ) (-848 -528 320 ) (-848 -528 306 ) +4 2784 2785 (-848 -546 320 ) (-848 -546 306 ) (-830 -546 306 ) (-830 -546 320 ) +4 2785 3318 (-830 -1024 320 ) (-848 -1024 320 ) (-848 -1024 304 ) (-830 -1024 304 ) +4 2785 2807 (-848 -562 304 ) (-848 -546 304 ) (-830 -546 304 ) (-830 -562 304 ) +4 2785 2808 (-830 -1024 304 ) (-848 -1024 304 ) (-848 -562 304 ) (-830 -562 304 ) +4 2785 2794 (-848 -648 304 ) (-848 -1024 304 ) (-848 -1024 320 ) (-848 -648 320 ) +4 2785 2792 (-848 -546 304 ) (-848 -648 304 ) (-848 -648 320 ) (-848 -546 320 ) +4 2786 3048 (-1024 -112 304 ) (-1024 -128 304 ) (-1024 -128 320 ) (-1024 -96 320 ) +4 2786 2787 (-1024 -128 304 ) (-864 -128 304 ) (-864 -128 320 ) (-1024 -128 320 ) +4 2787 3048 (-1024 -128 304 ) (-1024 -144 304 ) (-1024 -144 320 ) (-1024 -128 320 ) +4 2787 2840 (-984 -128 304 ) (-864 -128 304 ) (-864 -144 304 ) (-984 -144 304 ) +4 2787 2788 (-1024 -144 304 ) (-864 -144 304 ) (-864 -144 320 ) (-1024 -144 320 ) +4 2788 3048 (-1024 -144 304 ) (-1024 -266 304 ) (-1024 -302 320 ) (-1024 -144 320 ) +4 2788 2842 (-864 -240 304 ) (-864 -288 304 ) (-933 -357 304 ) (-957 -333 304 ) +6 2788 2840 (-984 -144 304 ) (-864 -144 304 ) (-864 -240 304 ) (-952 -328 304 ) (-962 -328 304 ) (-984 -306 304 ) +3 2788 2841 (-952 -328 304 ) (-957 -333 304 ) (-962 -328 304 ) +4 2788 2838 (-864 -352 304 ) (-864 -400 304 ) (-877 -413 304 ) (-901 -389 304 ) +3 2788 2837 (-864 -400 304 ) (-864 -426 304 ) (-877 -413 304 ) +4 2788 2836 (-864 -288 304 ) (-864 -352 304 ) (-901 -389 304 ) (-933 -357 304 ) +4 2788 2834 (-864 -144 304 ) (-848 -144 304 ) (-848 -442 304 ) (-864 -426 304 ) +4 2788 2791 (-876.998840 -412.998840 304 ) (-848 -441.997681 304 ) (-848 -477.997681 320 ) (-894.998840 -430.998810 320 ) +4 2788 2790 (-932.998779 -356.998840 304 ) (-900.998779 -388.998840 304 ) (-918.998779 -406.998840 320 ) (-950.998840 -374.998810 320 ) +4 2788 2789 (-1024 -265.997620 304 ) (-956.998840 -332.998810 304 ) (-974.998840 -350.998779 320 ) (-1024 -301.997620 320 ) +4 2789 3048 (-1024 -266 304 ) (-1024 -288 304 ) (-1024 -304 320 ) (-1024 -302 320 ) +3 2789 2840 (-984 -306 304 ) (-962 -328 304 ) (-984 -328 304 ) +4 2789 2841 (-962 -328 304 ) (-957 -333 304 ) (-968 -344 304 ) (-984 -328 304 ) +4 2789 2796 (-1024 -288 304 ) (-984 -328 304 ) (-992 -336 320 ) (-1024 -304 320 ) +4 2790 2836 (-933 -357 304 ) (-901 -389 304 ) (-912 -400 304 ) (-944 -368 304 ) +4 2791 2837 (-877 -413 304 ) (-864 -426 304 ) (-864 -448 304 ) (-888 -424 304 ) +4 2791 2834 (-864 -426 304 ) (-848 -442 304 ) (-848 -464 304 ) (-864 -448 304 ) +3 2792 2844 (-848 -528 304 ) (-848 -648 304 ) (-968 -648 304 ) +4 2792 2794 (-968 -648 304 ) (-848 -648 304 ) (-848 -648 320 ) (-984 -648 320 ) +4 2793 3048 (-1024 -320 304 ) (-1024 -648 304 ) (-1024 -648 320 ) (-1024 -320 320 ) +5 2793 2846 (-1024 -648 304 ) (-1024 -368 304 ) (-1000 -344 304 ) (-848 -496 304 ) (-1000 -648 304 ) +4 2793 2845 (-1024 -368 304 ) (-1024 -328 304 ) (-1016 -328 304 ) (-1000 -344 304 ) +4 2793 2796 (-1024 -320 320 ) (-1000 -344 320 ) (-1000 -344 304 ) (-1024 -320 304 ) +4 2794 3318 (-848 -1024 320 ) (-1024 -1024 320 ) (-1024 -1024 304 ) (-848 -1024 304 ) +4 2794 3049 (-1024 -704 304 ) (-1024 -1024 304 ) (-1024 -1024 320 ) (-1024 -688 320 ) +5 2794 2847 (-1024 -1024 304 ) (-1024 -704 304 ) (-968 -648 304 ) (-848 -648 304 ) (-848 -1024 304 ) +4 2794 2795 (-983.998047 -664.001953 304 ) (-1024 -704.003906 304 ) (-1024 -688.003906 320 ) (-991.998047 -656.001953 320 ) +4 2795 3049 (-1024 -664.001953 304 ) (-1024 -704 304 ) (-1024 -688 320 ) (-1024 -656.001953 320 ) +3 2795 2848 (-1024 -704 304 ) (-1024 -664.001953 304 ) (-984.001953 -664.001953 304 ) +4 2796 3048 (-1024 -288 304 ) (-1024 -320 304 ) (-1024 -320 320 ) (-1024 -304 320 ) +3 2796 2845 (-984 -328 304 ) (-1000 -344 304 ) (-1016 -328 304 ) +4 2797 2889 (-560 -144 240 ) (-576 -144 240 ) (-576 -128 240 ) (-560 -128 240 ) +4 2797 2888 (-144 -128 240 ) (-144 -144 240 ) (-560 -144 240 ) (-560 -128 240 ) +4 2797 2883 (-576 0 240 ) (-560 0 240 ) (-560 -128 240 ) (-576 -128 240 ) +4 2797 2882 (-560 0 240 ) (-144 0 240 ) (-144 -128 240 ) (-560 -128 240 ) +4 2797 2819 (-576 -144 240 ) (-144 -144 240 ) (-144 -144 256 ) (-576 -144 256 ) +4 2797 2816 (-144 -144 256 ) (-144 -144 272 ) (-576 -144 272 ) (-576 -144 256 ) +4 2797 2809 (-144 -144 272 ) (-144 -144 288 ) (-576 -144 288 ) (-576 -144 272 ) +4 2797 2802 (-144 -144 288 ) (-144 -144 304 ) (-576 -144 304 ) (-576 -144 288 ) +4 2798 2884 (-688 0 240 ) (-592 0 240 ) (-592 -96 240 ) (-688 -96 240 ) +4 2798 2799 (-688 0 240 ) (-688 -96 240 ) (-688 -96 304 ) (-688 0 304 ) +4 2799 2884 (-752 0 240 ) (-688 0 240 ) (-688 -96 240 ) (-752 -96 240 ) +4 2799 2801 (-752 0 240 ) (-752 -96 240 ) (-752 -96 304 ) (-752 0 304 ) +4 2800 2819 (-752 -144 240 ) (-688 -144 240 ) (-688 -144 256 ) (-752 -144 256 ) +4 2800 2816 (-688 -144 256 ) (-688 -144 272 ) (-752 -144 272 ) (-752 -144 256 ) +4 2800 2809 (-688 -144 272 ) (-688 -144 288 ) (-752 -144 288 ) (-752 -144 272 ) +4 2800 2802 (-688 -144 288 ) (-688 -144 304 ) (-752 -144 304 ) (-752 -144 288 ) +4 2801 2948 (-848 0 240 ) (-832 0 240 ) (-832 -96 240 ) (-848 -96 240 ) +4 2801 2884 (-832 0 240 ) (-752 0 240 ) (-752 -96 240 ) (-832 -96 240 ) +4 2801 2849 (-848 0 240 ) (-848 -96 240 ) (-848 -96 256 ) (-848 0 256 ) +4 2801 2833 (-848 -96 256 ) (-848 -96 304 ) (-848 0 304 ) (-848 0 256 ) +4 2802 2812 (-144 -432 288 ) (-144 -448 288 ) (-830 -448 288 ) (-830 -432 288 ) +4 2802 2809 (-830 -144 288 ) (-144 -144 288 ) (-144 -432 288 ) (-830 -432 288 ) +4 2802 2805 (-830 -448 288 ) (-144 -448 288 ) (-144 -448 304 ) (-830 -448 304 ) +4 2802 2804 (-830 -448 290 ) (-830 -448 304 ) (-830 -430 304 ) (-830 -430 290 ) +4 2802 2803 (-830 -144 304 ) (-830 -144 288 ) (-830 -430 288 ) (-830 -430 304 ) +4 2803 2834 (-848 -430 304 ) (-848 -144 304 ) (-848 -144 288 ) (-848 -430 288 ) +4 2803 2811 (-848 -430 288 ) (-848 -414 288 ) (-830 -414 288 ) (-830 -430 288 ) +4 2803 2810 (-848 -414 288 ) (-848 -144 288 ) (-830 -144 288 ) (-830 -414 288 ) +4 2803 2804 (-848 -430 304 ) (-848 -430 290 ) (-830 -430 290 ) (-830 -430 304 ) +4 2804 2834 (-848 -448 304 ) (-848 -430 304 ) (-848 -430 290 ) (-848 -448 290 ) +4 2804 2805 (-832 -448 290 ) (-830 -448 290 ) (-830 -448 304 ) (-832 -448 304 ) +4 2805 2812 (-832 -448 288 ) (-144 -448 288 ) (-144 -544 288 ) (-832 -544 288 ) +4 2805 2807 (-830 -544 290 ) (-830 -544 304 ) (-832 -544 304 ) (-832 -544 290 ) +4 2805 2806 (-830 -544 288 ) (-144 -544 288 ) (-144 -544 304 ) (-830 -544 304 ) +4 2806 3318 (-208 -1024 304 ) (-830 -1024 304 ) (-830 -1024 288 ) (-208 -1024 288 ) +4 2806 3272 (-144 -1024 288 ) (-144 -1024 304 ) (-208 -1024 304 ) (-208 -1024 288 ) +4 2806 2813 (-144 -560 288 ) (-144 -1024 288 ) (-830 -1024 288 ) (-830 -560 288 ) +4 2806 2812 (-830 -544 288 ) (-144 -544 288 ) (-144 -560 288 ) (-830 -560 288 ) +4 2806 2807 (-830 -544 304 ) (-830 -544 290 ) (-830 -562 290 ) (-830 -562 304 ) +4 2806 2808 (-830 -562 288 ) (-830 -1024 288 ) (-830 -1024 304 ) (-830 -562 304 ) +4 2807 2844 (-848 -562 304 ) (-848 -544 304 ) (-848 -544 290 ) (-848 -562 290 ) +4 2807 2808 (-848 -562 304 ) (-848 -562 290 ) (-830 -562 290 ) (-830 -562 304 ) +4 2808 3318 (-830 -1024 304 ) (-848 -1024 304 ) (-848 -1024 288 ) (-830 -1024 288 ) +4 2808 2847 (-848 -1024 288 ) (-848 -1024 304 ) (-848 -648 304 ) (-848 -648 288 ) +4 2808 2844 (-848 -648 304 ) (-848 -562 304 ) (-848 -562 288 ) (-848 -648 288 ) +4 2808 2814 (-848 -578 288 ) (-848 -562 288 ) (-830 -562 288 ) (-830 -578 288 ) +4 2808 2815 (-848 -1024 288 ) (-848 -578 288 ) (-830 -578 288 ) (-830 -1024 288 ) +4 2809 2816 (-830 -144 272 ) (-144 -144 272 ) (-144 -432 272 ) (-830 -432 272 ) +4 2809 2812 (-830 -432 272 ) (-144 -432 272 ) (-144 -432 288 ) (-830 -432 288 ) +4 2809 2811 (-830 -432 274 ) (-830 -432 288 ) (-830 -414 288 ) (-830 -414 274 ) +4 2809 2810 (-830 -144 272 ) (-830 -414 272 ) (-830 -414 288 ) (-830 -144 288 ) +4 2810 2834 (-848 -414 288 ) (-848 -144 288 ) (-848 -144 272 ) (-848 -414 272 ) +4 2810 2817 (-848 -414 272 ) (-848 -144 272 ) (-832 -144 272 ) (-832 -414 272 ) +4 2810 2816 (-832 -144 272 ) (-830 -144 272 ) (-830 -414 272 ) (-832 -414 272 ) +4 2810 2811 (-830 -414 274 ) (-830 -414 288 ) (-848 -414 288 ) (-848 -414 274 ) +4 2811 2834 (-848 -432 288 ) (-848 -414 288 ) (-848 -414 274 ) (-848 -432 274 ) +4 2811 2812 (-830 -432 274 ) (-830 -432 288 ) (-832 -432 288 ) (-832 -432 274 ) +4 2812 2816 (-832 -432 272 ) (-144 -432 272 ) (-144 -560 272 ) (-832 -560 272 ) +4 2812 2814 (-830 -560 274 ) (-830 -560 288 ) (-832 -560 288 ) (-832 -560 274 ) +4 2812 2813 (-830 -560 272 ) (-144 -560 272 ) (-144 -560 288 ) (-830 -560 288 ) +4 2813 3318 (-208 -1024 288 ) (-830 -1024 288 ) (-830 -1024 272 ) (-208 -1024 272 ) +4 2813 3272 (-144 -1024 272 ) (-144 -1024 288 ) (-208 -1024 288 ) (-208 -1024 272 ) +4 2813 2816 (-830 -560 272 ) (-144 -560 272 ) (-144 -1024 272 ) (-830 -1024 272 ) +4 2813 2814 (-830 -560 288 ) (-830 -560 274 ) (-830 -578 274 ) (-830 -578 288 ) +4 2813 2815 (-830 -578 272 ) (-830 -1024 272 ) (-830 -1024 288 ) (-830 -578 288 ) +4 2814 2844 (-848 -578 288 ) (-848 -560 288 ) (-848 -560 274 ) (-848 -578 274 ) +4 2814 2815 (-830 -578 274 ) (-830 -578 288 ) (-848 -578 288 ) (-848 -578 274 ) +4 2815 3318 (-830 -1024 288 ) (-848 -1024 288 ) (-848 -1024 272 ) (-830 -1024 272 ) +4 2815 2847 (-848 -1024 272 ) (-848 -1024 288 ) (-848 -648 288 ) (-848 -648 272 ) +4 2815 2844 (-848 -648 288 ) (-848 -578 288 ) (-848 -578 272 ) (-848 -648 272 ) +4 2815 2818 (-848 -1024 272 ) (-848 -578 272 ) (-832 -578 272 ) (-832 -1024 272 ) +4 2815 2816 (-832 -578 272 ) (-830 -578 272 ) (-830 -1024 272 ) (-832 -1024 272 ) +4 2816 3318 (-208 -1024 272 ) (-832 -1024 272 ) (-832 -1024 256 ) (-208 -1024 256 ) +4 2816 3272 (-144 -1024 256 ) (-144 -1024 272 ) (-208 -1024 272 ) (-208 -1024 256 ) +3 2816 2832 (-832 -576 256 ) (-824 -576 256 ) (-828 -580 256 ) +4 2816 2831 (-832 -592.006592 256 ) (-832 -584 256 ) (-824 -576 256 ) (-815.993408 -576 256 ) +5 2816 2830 (-480 -1024 256 ) (-832 -1024 256 ) (-832 -592.006592 256 ) (-815.993408 -576 256 ) (-480 -576 256 ) +3 2816 2828 (-480 -768 256 ) (-480 -752 256 ) (-464 -768 256 ) +3 2816 2827 (-352 -752 256 ) (-352 -768 256 ) (-368 -768 256 ) +3 2816 2826 (-368 -640 256 ) (-352 -640 256 ) (-352 -656 256 ) +3 2816 2825 (-480 -656 256 ) (-480 -640 256 ) (-464 -640 256 ) +4 2816 2824 (-480 -640 256 ) (-480 -576 256 ) (-352 -576 256 ) (-352 -640 256 ) +4 2816 2829 (-352 -1024 256 ) (-480 -1024 256 ) (-480 -768 256 ) (-352 -768 256 ) +4 2816 2823 (-144 -576 256 ) (-144 -1024 256 ) (-352 -1024 256 ) (-352 -576 256 ) +4 2816 2822 (-144 -416 256 ) (-144 -576 256 ) (-832 -576 256 ) (-832 -416 256 ) +3 2816 2821 (-824 -416 256 ) (-832 -416 256 ) (-828 -412 256 ) +4 2816 2820 (-816 -416 256 ) (-824 -416 256 ) (-832 -408 256 ) (-832 -400 256 ) +5 2816 2819 (-832 -144 256 ) (-144 -144 256 ) (-144 -416 256 ) (-816 -416 256 ) (-832 -400 256 ) +4 2816 2817 (-832 -144 256 ) (-832 -416 256 ) (-832 -416 272 ) (-832 -144 272 ) +4 2816 2818 (-832 -576 256 ) (-832 -1024 256 ) (-832 -1024 272 ) (-832 -576 272 ) +4 2817 2834 (-848 -416 272 ) (-848 -144 272 ) (-848 -144 256 ) (-848 -416 256 ) +4 2817 2820 (-848 -392 256 ) (-848 -384 256 ) (-832 -400 256 ) (-832 -408 256 ) +4 2817 2819 (-848 -384 256 ) (-848 -144 256 ) (-832 -144 256 ) (-832 -400 256 ) +4 2818 3318 (-832 -1024 272 ) (-848 -1024 272 ) (-848 -1024 256 ) (-832 -1024 256 ) +4 2818 2847 (-848 -1024 256 ) (-848 -1024 272 ) (-848 -648 272 ) (-848 -648 256 ) +4 2818 2844 (-848 -648 272 ) (-848 -576 272 ) (-848 -576 256 ) (-848 -648 256 ) +4 2818 2831 (-848 -608.006592 256 ) (-848 -600 256 ) (-832 -584 256 ) (-832 -592.006592 256 ) +4 2818 2830 (-848 -1024 256 ) (-848 -608.006592 256 ) (-832 -592.006592 256 ) (-832 -1024 256 ) +4 2819 2964 (-848 -392 240 ) (-848 -288 240 ) (-832 -288 240 ) (-832 -392 240 ) +4 2819 2967 (-832 -416 240 ) (-848 -400 240 ) (-848 -392 240 ) (-832 -392 240 ) +4 2819 2949 (-848 -288 240 ) (-848 -144 240 ) (-832 -144 240 ) (-832 -288 240 ) +4 2819 2941 (-828 -416 240 ) (-832 -416 240 ) (-832 -352 240 ) (-828 -352 240 ) +4 2819 2938 (-672 -416 240 ) (-704 -416 240 ) (-704 -352 240 ) (-672 -352 240 ) +4 2819 2940 (-704 -416 240 ) (-828 -416 240 ) (-828 -352 240 ) (-704 -352 240 ) +4 2819 2937 (-832 -352 240 ) (-832 -144 240 ) (-768 -144 240 ) (-768 -352 240 ) +4 2819 2935 (-768 -144 240 ) (-672 -144 240 ) (-672 -352 240 ) (-768 -352 240 ) +4 2819 2928 (-576 -416 240 ) (-672 -416 240 ) (-672 -352 240 ) (-576 -352 240 ) +4 2819 2926 (-672 -352 240 ) (-672 -144 240 ) (-640 -144 240 ) (-640 -352 240 ) +4 2819 2925 (-640 -144 240 ) (-576 -144 240 ) (-576 -352 240 ) (-640 -352 240 ) +4 2819 2890 (-560 -416 240 ) (-576 -416 240 ) (-576 -144 240 ) (-560 -144 240 ) +4 2819 2888 (-144 -144 240 ) (-144 -416 240 ) (-560 -416 240 ) (-560 -144 240 ) +5 2819 2851 (-848 -144 240 ) (-848 -400 240 ) (-848 -400 248 ) (-848 -384 256 ) (-848 -144 256 ) +5 2819 2822 (-144 -416 240 ) (-144 -416 256 ) (-816 -416 256 ) (-832 -416 248 ) (-832 -416 240 ) +3 2819 2821 (-832 -416 248.001755 ) (-824 -416 252.001724 ) (-828 -412 252.001724 ) +4 2819 2820 (-824 -416 252.001724 ) (-816.003479 -416 256 ) (-848 -384.003479 256 ) (-848 -392 252.001740 ) +3 2820 2852 (-848 -392 256 ) (-848 -384 256 ) (-848 -392 252 ) +3 2820 2822 (-816 -416 256 ) (-824 -416 256 ) (-824 -416 252 ) +4 2820 2821 (-828 -412 251.994156 ) (-824 -416 251.994156 ) (-824 -416 256 ) (-828 -412 256 ) +4 2821 2822 (-824 -416 256 ) (-832 -416 256 ) (-832 -416 248 ) (-824 -416 252 ) +4 2822 2941 (-828 -576 240 ) (-832 -576 240 ) (-832 -416 240 ) (-828 -416 240 ) +4 2822 2938 (-672 -576 240 ) (-704 -576 240 ) (-704 -416 240 ) (-672 -416 240 ) +4 2822 2940 (-704 -576 240 ) (-828 -576 240 ) (-828 -416 240 ) (-704 -416 240 ) +4 2822 2928 (-576 -576 240 ) (-672 -576 240 ) (-672 -416 240 ) (-576 -416 240 ) +4 2822 2890 (-560 -576 240 ) (-576 -576 240 ) (-576 -416 240 ) (-560 -416 240 ) +4 2822 2888 (-144 -416 240 ) (-144 -576 240 ) (-560 -576 240 ) (-560 -416 240 ) +4 2822 2832 (-824 -576 256 ) (-832 -576 256 ) (-832 -576 247.996689 ) (-824 -576 251.996704 ) +3 2822 2831 (-815.993408 -576 256 ) (-824 -576 256 ) (-824 -576 251.996704 ) +5 2822 2830 (-480 -576 256 ) (-815.993408 -576 256 ) (-832 -576 247.996689 ) (-832 -576 240 ) (-480 -576 240 ) +4 2822 2824 (-352 -576 256 ) (-480 -576 256 ) (-480 -576 240 ) (-352 -576 240 ) +4 2822 2823 (-144 -576 240 ) (-144 -576 256 ) (-352 -576 256 ) (-352 -576 240 ) +4 2823 3319 (-352 -1024 240 ) (-208 -1024 240 ) (-208 -1024 256 ) (-352 -1024 256 ) +4 2823 3272 (-208 -1024 240 ) (-144 -1024 240 ) (-144 -1024 256 ) (-208 -1024 256 ) +4 2823 2902 (-144 -680 240 ) (-144 -1024 240 ) (-352 -1024 240 ) (-352 -784 240 ) +4 2823 2895 (-320 -768 240 ) (-352 -784 240 ) (-352 -744.533325 240 ) (-336 -736 240 ) +3 2823 2894 (-352 -744.533325 240 ) (-352 -704 240 ) (-336 -736 240 ) +4 2823 2893 (-266.666687 -741.333374 240 ) (-320 -768 240 ) (-352 -704 240 ) (-352 -656 240 ) +5 2823 2892 (-144 -640 240 ) (-144 -680 240 ) (-266.666687 -741.333374 240 ) (-352 -656 240 ) (-352 -640 240 ) +4 2823 2888 (-144 -576 240 ) (-144 -640 240 ) (-352 -640 240 ) (-352 -576 240 ) +4 2823 2827 (-352 -752 240 ) (-352 -768 240 ) (-352 -768 256 ) (-352 -752 256 ) +4 2823 2826 (-352 -640 240 ) (-352 -656 240 ) (-352 -656 256 ) (-352 -640 256 ) +4 2823 2824 (-352 -576 256 ) (-352 -576 240 ) (-352 -640 240 ) (-352 -640 256 ) +4 2823 2829 (-352 -768 240 ) (-352 -1024 240 ) (-352 -1024 256 ) (-352 -768 256 ) +4 2824 2888 (-480 -640 240 ) (-480 -576 240 ) (-352 -576 240 ) (-352 -640 240 ) +4 2824 2830 (-480 -576 256 ) (-480 -576 240 ) (-480 -640 240 ) (-480 -640 256 ) +4 2824 2826 (-368 -640 240 ) (-352 -640 240 ) (-352 -640 256 ) (-368 -640 256 ) +4 2824 2825 (-480 -640 256 ) (-480 -640 240 ) (-464 -640 240 ) (-464 -640 256 ) +3 2825 2891 (-480 -656 240 ) (-480 -640 240 ) (-464 -640 240 ) +4 2825 2830 (-480 -640 240 ) (-480 -656 240 ) (-480 -656 256 ) (-480 -640 256 ) +3 2826 2892 (-368 -640 240 ) (-352 -640 240 ) (-352 -656 240 ) +3 2827 2897 (-352 -752 240 ) (-352 -768 240 ) (-368 -768 240 ) +4 2827 2829 (-368 -768 240 ) (-352 -768 240 ) (-352 -768 256 ) (-368 -768 256 ) +3 2828 2896 (-480 -768 240 ) (-480 -752 240 ) (-464 -768 240 ) +4 2828 2830 (-480 -752 240 ) (-480 -768 240 ) (-480 -768 256 ) (-480 -752 256 ) +4 2828 2829 (-480 -768 256 ) (-480 -768 240 ) (-464 -768 240 ) (-464 -768 256 ) +4 2829 3319 (-480 -1024 240 ) (-352 -1024 240 ) (-352 -1024 256 ) (-480 -1024 256 ) +4 2829 2902 (-352 -1024 240 ) (-480 -1024 240 ) (-480 -848 240 ) (-352 -784 240 ) +5 2829 2899 (-480 -848 240 ) (-480 -812.800049 240 ) (-396 -768 240 ) (-352 -768 240 ) (-352 -784 240 ) +3 2829 2898 (-480 -812.800049 240 ) (-480 -768 240 ) (-396 -768 240 ) +4 2829 2830 (-480 -768 240 ) (-480 -1024 240 ) (-480 -1024 256 ) (-480 -768 256 ) +4 2830 3320 (-544 -1024 240 ) (-480 -1024 240 ) (-480 -1024 256 ) (-544 -1024 256 ) +4 2830 3321 (-848 -1024 240 ) (-544 -1024 240 ) (-544 -1024 256 ) (-848 -1024 256 ) +4 2830 2991 (-832 -1024 240 ) (-848 -1024 240 ) (-848 -592 240 ) (-832 -576 240 ) +4 2830 2947 (-672 -1024 240 ) (-832 -1024 240 ) (-832 -896 240 ) (-672 -896 240 ) +4 2830 2941 (-832 -896 240 ) (-832 -576 240 ) (-828 -576 240 ) (-828 -896 240 ) +4 2830 2938 (-704 -576 240 ) (-672 -576 240 ) (-672 -896 240 ) (-704 -896 240 ) +4 2830 2940 (-828 -576 240 ) (-704 -576 240 ) (-704 -896 240 ) (-828 -896 240 ) +4 2830 2932 (-640 -1024 240 ) (-672 -1024 240 ) (-672 -896 240 ) (-640 -896 240 ) +4 2830 2931 (-608 -1024 240 ) (-640 -1024 240 ) (-640 -896 240 ) (-608 -896 240 ) +4 2830 2930 (-576 -1024 240 ) (-608 -1024 240 ) (-608 -896 240 ) (-576 -896 240 ) +4 2830 2929 (-672 -896 240 ) (-672 -864 240 ) (-576 -864 240 ) (-576 -896 240 ) +4 2830 2928 (-672 -864 240 ) (-672 -576 240 ) (-576 -576 240 ) (-576 -864 240 ) +4 2830 2902 (-480 -1024 240 ) (-576 -1024 240 ) (-576 -896 240 ) (-480 -848 240 ) +4 2830 2901 (-576 -896 240 ) (-576 -864 240 ) (-480 -812.800049 240 ) (-480 -848 240 ) +4 2830 2900 (-576 -864 240 ) (-576 -752 240 ) (-480 -656 240 ) (-480 -812.800049 240 ) +4 2830 2891 (-576 -752 240 ) (-576 -640 240 ) (-480 -640 240 ) (-480 -656 240 ) +4 2830 2890 (-576 -640 240 ) (-576 -576 240 ) (-560 -576 240 ) (-560 -640 240 ) +4 2830 2888 (-560 -576 240 ) (-480 -576 240 ) (-480 -640 240 ) (-560 -640 240 ) +5 2830 2856 (-848 -592 240 ) (-848 -1024 240 ) (-848 -1024 256 ) (-848 -608.006592 256 ) (-848 -592 247.996689 ) +4 2830 2832 (-824 -576 251.998062 ) (-831.996155 -576 248 ) (-831.998047 -576.001892 248 ) (-828 -580 251.998062 ) +4 2830 2831 (-848 -608.003906 256 ) (-815.996094 -576 256 ) (-824 -576 251.998062 ) (-848 -600 251.998047 ) +3 2831 2857 (-848 -608.006592 256 ) (-848 -600 256 ) (-848 -600 251.996704 ) +4 2831 2832 (-824 -576 256 ) (-824 -576 251.994110 ) (-828 -580 251.994110 ) (-828 -580 256 ) +4 2833 2849 (-864 0 256 ) (-848 0 256 ) (-848 -96 256 ) (-864 -96 256 ) +4 2833 2835 (-864 0 256 ) (-864 -96 256 ) (-864 -96 304 ) (-864 0 304 ) +4 2834 2852 (-848 -384 256 ) (-848 -392 256 ) (-864 -376 256 ) (-864 -368 256 ) +4 2834 2851 (-848 -144 256 ) (-848 -384 256 ) (-864 -368 256 ) (-864 -144 256 ) +4 2834 2842 (-864 -240 256 ) (-864 -288 256 ) (-864 -288 304 ) (-864 -240 304 ) +4 2834 2840 (-864 -144 256 ) (-864 -240 256 ) (-864 -240 304 ) (-864 -144 304 ) +5 2834 2839 (-864 -352 256 ) (-864 -399.996094 256 ) (-864 -400 256.003876 ) (-864 -400 292.444458 ) (-864 -352 271.111145 ) +4 2834 2838 (-864 -400 292.444458 ) (-864 -400 304 ) (-864 -352 304 ) (-864 -352 271.111145 ) +3 2834 2837 (-864 -400 256.003876 ) (-864 -447.996094 304 ) (-864 -400 304 ) +4 2834 2836 (-864 -288 256 ) (-864 -352 256 ) (-864 -352 304 ) (-864 -288 304 ) +4 2835 3048 (-1024 0 304 ) (-1024 0 256 ) (-1024 -96 256 ) (-1024 -96 304 ) +4 2835 2858 (-1024 -96 256 ) (-1024 0 256 ) (-960 0 256 ) (-960 -96 256 ) +4 2835 2849 (-960 0 256 ) (-864 0 256 ) (-864 -96 256 ) (-960 -96 256 ) +4 2836 2852 (-872 -360 256 ) (-876 -364 256 ) (-908 -332 256 ) (-904 -328 256 ) +4 2836 2851 (-864 -288 256 ) (-864 -352 256 ) (-872 -360 256 ) (-904 -328 256 ) +4 2836 2843 (-879 -303 256 ) (-919.998047 -343.998047 256 ) (-924 -348 264.003998 ) (-924 -348 296 ) +4 2836 2842 (-864 -288 304 ) (-864 -288 256 ) (-879 -303 256 ) (-933 -357 304 ) +5 2836 2839 (-892 -380.001007 263.998108 ) (-888 -376.001953 256 ) (-864 -352.001953 256 ) (-864 -352.001953 271.112000 ) (-892 -380.001007 296 ) +3 2836 2838 (-864 -352.001953 271.112000 ) (-864 -352.001953 304 ) (-900.998962 -389 304 ) +4 2837 2839 (-864 -400 292.444458 ) (-864 -400 256 ) (-868 -404 264 ) (-868 -404 296 ) +3 2837 2838 (-864 -400 304 ) (-864 -400 292.444458 ) (-877 -413 304 ) +4 2838 2839 (-892.001953 -379.998108 296 ) (-864 -351.996094 271.109375 ) (-864 -400 292.441833 ) (-868 -404 295.997437 ) +4 2839 2852 (-864 -368 256 ) (-864 -376 256 ) (-876 -364 256 ) (-872 -360 256 ) +3 2839 2851 (-864 -352 256 ) (-864 -368 256 ) (-872 -360 256 ) +4 2840 2852 (-928 -304 256 ) (-932 -308 256 ) (-960 -280 256 ) (-960 -272 256 ) +5 2840 2851 (-864 -144 256 ) (-864 -240 256 ) (-928 -304 256 ) (-960 -272 256 ) (-960 -144 256 ) +4 2840 2850 (-960 -128 256 ) (-864 -128 256 ) (-864 -144 256 ) (-960 -144 256 ) +4 2840 2843 (-948.001038 -324 264.002075 ) (-944 -319.998047 256 ) (-903 -279 256 ) (-948.001038 -324 296 ) +5 2840 2842 (-903 -279 256 ) (-864 -239.998047 256 ) (-864 -239.998047 304 ) (-952.001953 -328 304 ) (-952.001953 -328 299.556427 ) +3 2840 2841 (-984 -328 304 ) (-951.998047 -328 272 ) (-951.998047 -328 304 ) +3 2841 2842 (-952.001953 -328 299.556427 ) (-952.001953 -328 304 ) (-957 -333 304 ) +4 2842 2851 (-864 -240 256 ) (-864 -288 256 ) (-879 -303 256 ) (-903 -279 256 ) +4 2842 2843 (-948 -324 296.004242 ) (-902.996216 -278.996216 256 ) (-878.998535 -302.994629 256 ) (-924.002014 -347.998108 296.003082 ) +4 2843 2852 (-904 -328 256 ) (-908 -332 256 ) (-932 -308 256 ) (-928 -304 256 ) +4 2843 2851 (-879 -303 256 ) (-904 -328 256 ) (-928 -304 256 ) (-903 -279 256 ) +4 2844 2857 (-848 -600 256 ) (-848 -608.006714 256 ) (-887.993408 -648 256 ) (-896 -648 256 ) +3 2844 2856 (-848 -608.006714 256 ) (-848 -648 256 ) (-887.993408 -648 256 ) +4 2844 2847 (-920 -648 256 ) (-848 -648 256 ) (-848 -648 304 ) (-968 -648 304 ) +4 2845 3048 (-1024 -328 256 ) (-1024 -368 256 ) (-1024 -368 304 ) (-1024 -328 304 ) +3 2845 2862 (-1024 -368 256 ) (-1024 -328 256 ) (-984 -328 256 ) +4 2845 2846 (-1024 -368 256 ) (-1000 -344 256 ) (-1000 -344 304 ) (-1024 -368 304 ) +4 2846 3048 (-1024 -368 256 ) (-1024 -648 256 ) (-1024 -648 304 ) (-1024 -368 304 ) +6 2846 2862 (-1024 -648 256 ) (-1024 -368 256 ) (-1000 -344 256 ) (-976 -368 256 ) (-976 -624 256 ) (-1000 -648 256 ) +4 2846 2861 (-976 -368 256 ) (-960 -384 256 ) (-960 -608 256 ) (-976 -624 256 ) +3 2846 2855 (-928 -576 256 ) (-960 -608 256 ) (-960 -576 256 ) +6 2846 2854 (-928 -416 256 ) (-864 -480 256 ) (-864 -512 256 ) (-928 -576 256 ) (-960 -576 256 ) (-960 -416 256 ) +3 2846 2853 (-960 -384 256 ) (-928 -416 256 ) (-960 -416 256 ) +4 2847 3318 (-1024 -1024 304 ) (-1024 -1024 256 ) (-848 -1024 256 ) (-848 -1024 304 ) +4 2847 3049 (-1024 -752 256 ) (-1024 -1024 256 ) (-1024 -1024 304 ) (-1024 -704 304 ) +5 2847 2863 (-1024 -1024 256 ) (-1024 -752 256 ) (-976 -704 256 ) (-960 -704 256 ) (-960 -1024 256 ) +4 2847 2857 (-896 -648 256 ) (-887.993408 -648 256 ) (-960 -720.006592 256 ) (-960 -712 256 ) +5 2847 2856 (-887.993408 -648 256 ) (-848 -648 256 ) (-848 -1024 256 ) (-960 -1024 256 ) (-960 -720.006592 256 ) +4 2847 2848 (-959.998047 -688.001953 256 ) (-1024 -752.003906 256 ) (-1024 -704.003906 304 ) (-983.998047 -664.001953 304 ) +4 2848 3049 (-1024 -688.001892 256 ) (-1024 -752 256 ) (-1024 -704 304 ) (-1024 -664.001953 304 ) +3 2848 2861 (-976 -688.001892 256 ) (-960.001953 -688.001892 256 ) (-976 -704 256 ) +3 2848 2863 (-1024 -752 256 ) (-1024 -704 256 ) (-976 -704 256 ) +4 2849 2954 (-960 0 240 ) (-864 0 240 ) (-864 -96 240 ) (-960 -96 240 ) +4 2849 2952 (-864 0 240 ) (-848 0 240 ) (-848 -96 240 ) (-864 -96 240 ) +4 2849 2858 (-960 0 240 ) (-960 -96 240 ) (-960 -96 256 ) (-960 0 256 ) +4 2850 2955 (-864 -144 240 ) (-960 -144 240 ) (-960 -128 240 ) (-864 -128 240 ) +4 2850 2851 (-960 -144 256 ) (-960 -144 240 ) (-864 -144 240 ) (-864 -144 256 ) +5 2851 2964 (-848 -288 240 ) (-848 -392 240 ) (-856 -392 240 ) (-888 -360 240 ) (-888 -288 240 ) +3 2851 2967 (-848 -392 240 ) (-848 -400 240 ) (-856 -392 240 ) +3 2851 2968 (-888 -360 240 ) (-960 -288 240 ) (-888 -288 240 ) +4 2851 2955 (-864 -288 240 ) (-960 -288 240 ) (-960 -144 240 ) (-864 -144 240 ) +4 2851 2953 (-848 -144 240 ) (-848 -288 240 ) (-864 -288 240 ) (-864 -144 240 ) +4 2851 2860 (-960 -228 240 ) (-960 -268 240 ) (-960 -268 244 ) (-960 -228 244 ) +4 2851 2859 (-960 -148 240 ) (-960 -188 240 ) (-960 -188 244 ) (-960 -148 244 ) +4 2851 2852 (-960 -272.003540 256 ) (-960 -280 252.001755 ) (-848 -392 252.001740 ) (-848 -384.003479 256 ) +3 2853 2974 (-848 -416 240 ) (-960 -416 240 ) (-960 -304 240 ) +4 2853 2861 (-960 -304 240 ) (-960 -416 240 ) (-960 -416 256 ) (-960 -304 256 ) +4 2853 2854 (-960 -416 256 ) (-960 -416 240 ) (-864 -416 240 ) (-864 -416 256 ) +4 2854 2982 (-864 -576 240 ) (-960 -576 240 ) (-960 -416 240 ) (-864 -416 240 ) +4 2854 2861 (-960 -416 240 ) (-960 -576 240 ) (-960 -576 256 ) (-960 -416 256 ) +4 2854 2855 (-960 -576 256 ) (-960 -576 240 ) (-864 -576 240 ) (-864 -576 256 ) +3 2855 2985 (-864 -592 240 ) (-872 -584 240 ) (-864 -576 240 ) +4 2855 2984 (-888 -616 240 ) (-920 -648 240 ) (-928 -640 240 ) (-896 -608 240 ) +4 2855 2983 (-944 -672 240 ) (-960 -688 240 ) (-960 -672 240 ) (-952 -664 240 ) +3 2855 2982 (-960 -672 240 ) (-960 -576 240 ) (-864 -576 240 ) +3 2855 2981 (-848 -576 240 ) (-864 -592 240 ) (-864 -576 240 ) +4 2855 2861 (-960 -576 240 ) (-960 -688 240 ) (-960 -688 256 ) (-960 -576 256 ) +4 2856 3321 (-960 -1024 240 ) (-848 -1024 240 ) (-848 -1024 256 ) (-960 -1024 256 ) +4 2856 2991 (-848 -592 240 ) (-848 -1024 240 ) (-960 -1024 240 ) (-960 -704 240 ) +5 2856 2863 (-960 -704 240 ) (-960 -1024 240 ) (-960 -1024 256 ) (-960 -720.006592 256 ) (-960 -704 247.996704 ) +4 2856 2857 (-960 -712 251.996185 ) (-960 -720.007690 256 ) (-848 -608.007813 256 ) (-848 -600 251.996124 ) +3 2857 2863 (-960 -720.006592 256 ) (-960 -712 256 ) (-960 -712 251.996719 ) +4 2858 3051 (-1024 0 256 ) (-1024 0 240 ) (-1024 -96 240 ) (-1024 -96 256 ) +4 2858 2956 (-1024 -96 240 ) (-1024 0 240 ) (-960 0 240 ) (-960 -96 240 ) +4 2859 3051 (-1024 -148 240 ) (-1024 -188 240 ) (-1024 -188 244 ) (-1024 -148 244 ) +4 2859 2957 (-1024 -188 240 ) (-1024 -148 240 ) (-960 -148 240 ) (-960 -188 240 ) +4 2860 3051 (-1024 -228 240 ) (-1024 -268 240 ) (-1024 -268 244 ) (-1024 -228 244 ) +4 2860 2958 (-1024 -268 240 ) (-1024 -228 240 ) (-960 -228 240 ) (-960 -268 240 ) +4 2861 2983 (-960 -672 240 ) (-960 -688 240 ) (-976 -704 240 ) (-976 -688 240 ) +4 2861 2982 (-960 -416 240 ) (-960 -672 240 ) (-976 -688 240 ) (-976 -416 240 ) +4 2861 2974 (-976 -288 240 ) (-960 -304 240 ) (-960 -416 240 ) (-976 -416 240 ) +4 2861 2862 (-976 -288 256 ) (-976 -288 240 ) (-976 -688 240 ) (-976 -688 256 ) +4 2862 3051 (-1024 -288 240 ) (-1024 -688 240 ) (-1024 -688 256 ) (-1024 -288 256 ) +4 2862 2986 (-1024 -688 240 ) (-1024 -416 240 ) (-976 -416 240 ) (-976 -688 240 ) +4 2862 2974 (-1024 -416 240 ) (-1024 -288 240 ) (-976 -288 240 ) (-976 -416 240 ) +4 2863 3321 (-1024 -1024 256 ) (-1024 -1024 240 ) (-960 -1024 240 ) (-960 -1024 256 ) +4 2863 3054 (-1024 -704 240 ) (-1024 -1024 240 ) (-1024 -1024 256 ) (-1024 -704 256 ) +4 2863 2990 (-1024 -768 240 ) (-1024 -752 240 ) (-976 -704 240 ) (-960 -704 240 ) +4 2863 2991 (-1024 -1024 240 ) (-1024 -768 240 ) (-960 -704 240 ) (-960 -1024 240 ) +3 2863 2987 (-1024 -752 240 ) (-1024 -704 240 ) (-976 -704 240 ) +4 2864 2882 (-144 0 0 ) (-144 -88 0 ) (-144 -88 240 ) (-144 0 240 ) +4 2865 2888 (-144 -224 88 ) (-144 -224 216 ) (-144 -128 216 ) (-144 -128 88 ) +4 2865 2882 (-144 -128 216 ) (-144 -104 216 ) (-144 -104 88 ) (-144 -128 88 ) +4 2866 2882 (-144 -128 68 ) (-144 -104 68 ) (-144 -104 64 ) (-144 -128 64 ) +4 2866 2868 (-144 -128 64 ) (-144 -104 64 ) (-136 -104 64 ) (-136 -128 64 ) +3 2866 2867 (-144 -128 64 ) (-140 -128 64 ) (-144 -128 68 ) +4 2867 2888 (-144 -224 64 ) (-144 -224 68 ) (-144 -128 68 ) (-144 -128 64 ) +4 2867 2868 (-140 -224 64 ) (-144 -224 64 ) (-144 -128 64 ) (-140 -128 64 ) +4 2868 2888 (-144 -128 0 ) (-144 -224 0 ) (-144 -224 64 ) (-144 -128 64 ) +4 2868 2882 (-144 -104 0 ) (-144 -128 0 ) (-144 -128 64 ) (-144 -104 64 ) +4 2869 2870 (-136 -240 8 ) (-136 -528 8 ) (-136 -528 216 ) (-136 -240 216 ) +4 2870 2888 (-144 -240 0 ) (-144 -528 0 ) (-144 -528 216 ) (-144 -240 216 ) +4 2871 2892 (-144 -640 88 ) (-144 -664 88 ) (-144 -664 216 ) (-144 -640 216 ) +4 2871 2888 (-144 -544 216 ) (-144 -544 88 ) (-144 -640 88 ) (-144 -640 216 ) +4 2872 2906 (-144 -680 88 ) (-144 -796 88 ) (-144 -796 192 ) (-144 -680 192 ) +4 2872 2902 (-144 -796 192 ) (-144 -796 216 ) (-144 -680 216 ) (-144 -680 192 ) +4 2872 2892 (-144 -676 88 ) (-144 -680 88 ) (-144 -680 216 ) (-144 -676 216 ) +4 2873 2907 (-144 -835.840027 88 ) (-144 -848 88 ) (-144 -848 192 ) (-144 -835.840027 192 ) +4 2873 2906 (-144 -808 88 ) (-144 -835.840027 88 ) (-144 -835.840027 192 ) (-144 -808 192 ) +4 2873 2903 (-144 -848 88 ) (-144 -928 88 ) (-144 -928 192 ) (-144 -848 192 ) +4 2873 2902 (-144 -928 192 ) (-144 -928 216 ) (-144 -808 216 ) (-144 -808 192 ) +4 2874 2907 (-144 -835.840027 64 ) (-144 -848 64 ) (-144 -848 68 ) (-144 -835.840027 68 ) +4 2874 2906 (-144 -680 64 ) (-144 -835.840027 64 ) (-144 -835.840027 68 ) (-144 -680 68 ) +4 2874 2903 (-144 -848 64 ) (-144 -928 64 ) (-144 -928 68 ) (-144 -848 68 ) +4 2874 2892 (-144 -640 64 ) (-144 -680 64 ) (-144 -680 68 ) (-144 -640 68 ) +4 2874 2888 (-144 -544 68 ) (-144 -544 64 ) (-144 -640 64 ) (-144 -640 68 ) +4 2874 2880 (-144 -928 64 ) (-144 -816 64 ) (-140 -816 64 ) (-140 -928 64 ) +4 2874 2879 (-144 -816 64 ) (-144 -788 64 ) (-140 -788 64 ) (-140 -816 64 ) +4 2874 2878 (-144 -788 64 ) (-144 -684 64 ) (-140 -684 64 ) (-140 -788 64 ) +4 2874 2877 (-144 -684 64 ) (-144 -656 64 ) (-140 -656 64 ) (-140 -684 64 ) +4 2874 2876 (-144 -656 64 ) (-144 -544 64 ) (-140 -544 64 ) (-140 -656 64 ) +4 2875 3275 (-128 -1024 64 ) (-128 -1024 192 ) (-144 -1024 192 ) (-144 -1024 64 ) +4 2875 3272 (-128 -1024 192 ) (-128 -1024 240 ) (-144 -1024 240 ) (-144 -1024 192 ) +4 2875 2904 (-144 -1024 64 ) (-144 -1024 192 ) (-144 -964 192 ) (-144 -964 64 ) +4 2875 2902 (-144 -1024 192 ) (-144 -1024 240 ) (-144 -964 240 ) (-144 -964 192 ) +4 2875 2881 (-144 -1024 64 ) (-144 -964 64 ) (-128 -964 64 ) (-128 -1024 64 ) +4 2876 2892 (-144 -640 0 ) (-144 -656 0 ) (-144 -656 64 ) (-144 -640 64 ) +4 2876 2888 (-144 -544 0 ) (-144 -640 0 ) (-144 -640 64 ) (-144 -544 64 ) +4 2876 2877 (-140 -656 64 ) (-144 -656 64 ) (-144 -656 0 ) (-140 -656 0 ) +4 2877 2908 (-144 -680 0 ) (-144 -684 0 ) (-144 -684 8 ) (-144 -680 8 ) +4 2877 2906 (-144 -684 8 ) (-144 -684 64 ) (-144 -680 64 ) (-144 -680 8 ) +4 2877 2892 (-144 -656 0 ) (-144 -680 0 ) (-144 -680 64 ) (-144 -656 64 ) +4 2877 2878 (-140 -684 64 ) (-144 -684 64 ) (-144 -684 0 ) (-140 -684 0 ) +4 2878 2908 (-144 -684 0 ) (-144 -788 0 ) (-144 -788 8 ) (-144 -684 8 ) +4 2878 2906 (-144 -788 8 ) (-144 -788 64 ) (-144 -684 64 ) (-144 -684 8 ) +4 2878 2879 (-140 -788 64 ) (-144 -788 64 ) (-144 -788 0 ) (-140 -788 0 ) +4 2879 2908 (-144 -788 0 ) (-144 -816 0 ) (-144 -816 8 ) (-144 -788 8 ) +4 2879 2906 (-144 -816 8 ) (-144 -816 64 ) (-144 -788 64 ) (-144 -788 8 ) +4 2879 2880 (-140 -816 64 ) (-144 -816 64 ) (-144 -816 0 ) (-140 -816 0 ) +4 2880 2908 (-144 -816 0 ) (-144 -848 0 ) (-144 -848 8 ) (-144 -816 8 ) +4 2880 2907 (-144 -848 8 ) (-144 -848 64 ) (-144 -835.840027 64 ) (-144 -835.840027 8 ) +4 2880 2906 (-144 -835.840027 64 ) (-144 -816 64 ) (-144 -816 8 ) (-144 -835.840027 8 ) +4 2880 2903 (-144 -848 0 ) (-144 -928 0 ) (-144 -928 64 ) (-144 -848 64 ) +4 2881 3275 (-128 -1024 0 ) (-128 -1024 64 ) (-144 -1024 64 ) (-144 -1024 0 ) +4 2881 3028 (-128 -964 0 ) (-128 -1024 0 ) (-144 -1024 0 ) (-144 -964 0 ) +4 2881 2904 (-144 -964 0 ) (-144 -1024 0 ) (-144 -1024 64 ) (-144 -964 64 ) +4 2882 2888 (-560 -128 0 ) (-144 -128 0 ) (-144 -128 240 ) (-560 -128 240 ) +4 2882 2883 (-560 -128 48 ) (-560 -128 240 ) (-560 0 240 ) (-560 0 48 ) +4 2883 2889 (-560 -128 48 ) (-560 -128 240 ) (-576 -128 240 ) (-576 -128 48 ) +4 2884 3036 (-832 0 0 ) (-640 0 0 ) (-640 -96 0 ) (-832 -96 0 ) +4 2884 2948 (-832 0 0 ) (-832 -96 0 ) (-832 -96 240 ) (-832 0 240 ) +4 2885 2923 (-608 -128 128 ) (-664 -128 128 ) (-664 -128 72 ) (-608 -128 72 ) +4 2886 2934 (-680 -128 128 ) (-736 -128 128 ) (-736 -128 72 ) (-680 -128 72 ) +7 2887 2934 (-832 -128 112 ) (-832 -128 32 ) (-768 -128 32 ) (-768 -128 112 ) (-784 -128 128 ) (-800 -128 132 ) (-816 -128 128 ) +4 2888 2892 (-368 -640 0 ) (-144 -640 0 ) (-144 -640 240 ) (-368 -640 240 ) +4 2888 2891 (-560 -640 0 ) (-464 -640 0 ) (-464 -640 240 ) (-560 -640 240 ) +4 2888 2889 (-560 -128 240 ) (-560 -128 48 ) (-560 -144 48 ) (-560 -144 240 ) +4 2888 2890 (-560 -144 0 ) (-560 -640 0 ) (-560 -640 240 ) (-560 -144 240 ) +4 2889 2890 (-576 -144 240 ) (-576 -144 48 ) (-560 -144 48 ) (-560 -144 240 ) +4 2890 2928 (-576 -352 0 ) (-576 -640 0 ) (-576 -640 240 ) (-576 -352 240 ) +4 2890 2925 (-576 -144 0 ) (-576 -352 0 ) (-576 -352 240 ) (-576 -144 240 ) +4 2890 2891 (-576 -640 240 ) (-576 -640 0 ) (-560 -640 0 ) (-560 -640 240 ) +4 2891 2928 (-576 -640 0 ) (-576 -752 0 ) (-576 -752 240 ) (-576 -640 240 ) +4 2891 2900 (-576 -752 240 ) (-576 -752 0 ) (-480 -656 0 ) (-480 -656 240 ) +4 2892 2908 (-266.666656 -741.333313 0 ) (-144 -680 0 ) (-144 -680 8 ) (-266.666656 -741.333313 8 ) +4 2892 2906 (-144 -680 8 ) (-144 -680 192 ) (-266.666687 -741.333374 192 ) (-266.666656 -741.333313 8 ) +4 2892 2902 (-144 -680 192 ) (-144 -680 240 ) (-266.666687 -741.333374 240 ) (-266.666687 -741.333374 192 ) +4 2892 2893 (-352 -656 0 ) (-266.665344 -741.334656 0 ) (-266.665344 -741.334656 240 ) (-352 -656 240 ) +4 2893 2908 (-320 -768 0 ) (-266.666656 -741.333313 0 ) (-266.666656 -741.333313 8 ) (-320 -768 8 ) +4 2893 2906 (-266.666656 -741.333313 8 ) (-266.666687 -741.333374 192 ) (-320 -768 192 ) (-320 -768 8 ) +4 2893 2902 (-266.666687 -741.333374 192 ) (-266.666687 -741.333374 240 ) (-320 -768 240 ) (-320 -768 192 ) +4 2893 2895 (-320 -768 32 ) (-320 -768 240 ) (-336 -736 240 ) (-336 -736 33 ) +4 2893 2894 (-352 -704 0 ) (-336 -736 0 ) (-336 -736 240 ) (-352 -704 240 ) +4 2894 2895 (-352 -744.531250 240 ) (-352 -744.531250 34 ) (-336.002380 -736 33 ) (-336.002380 -736 240 ) +4 2895 2906 (-320 -768 32 ) (-320 -768 192 ) (-352 -784 192 ) (-352 -784 34 ) +4 2895 2902 (-320 -768 192 ) (-320 -768 240 ) (-352 -784 240 ) (-352 -784 192 ) +4 2895 2899 (-352 -784.001953 34 ) (-352 -784.001953 240 ) (-352 -768 240 ) (-352 -768 34 ) +4 2895 2897 (-352 -768 240 ) (-352 -752 240 ) (-352 -752 34 ) (-352 -768 34 ) +4 2896 2900 (-480 -752 0 ) (-480 -768 0 ) (-480 -768 240 ) (-480 -752 240 ) +4 2896 2898 (-480 -768 240 ) (-480 -768 0 ) (-464 -768 0 ) (-464 -768 240 ) +4 2897 2899 (-352 -768 34 ) (-352 -768 240 ) (-368 -768 240 ) (-368 -768 35 ) +4 2898 2900 (-480 -768 0 ) (-480 -812.800049 0 ) (-480 -812.800049 240 ) (-480 -768 240 ) +4 2898 2899 (-480 -812.796387 240 ) (-480 -812.796387 42 ) (-396.005859 -768 36.750362 ) (-396.005859 -768 240 ) +4 2899 2917 (-448 -832 192 ) (-480 -848 192 ) (-480 -848 42 ) (-448 -832 40 ) +4 2899 2914 (-415.992859 -815.996460 192 ) (-448 -832 192 ) (-448 -832 40 ) (-415.992859 -815.996460 38 ) +4 2899 2913 (-384 -800 192 ) (-415.992859 -815.996460 192 ) (-415.992859 -815.996460 38 ) (-384 -800 36 ) +4 2899 2912 (-352 -784 34 ) (-352 -784 192 ) (-384 -800 192 ) (-384 -800 36 ) +4 2899 2902 (-352 -784 192 ) (-352 -784 240 ) (-480 -848 240 ) (-480 -848 192 ) +4 2899 2901 (-480 -848 42 ) (-480 -848 240 ) (-480 -812.800049 240 ) (-480 -812.800049 42 ) +4 2900 2928 (-576 -752 0 ) (-576 -864 0 ) (-576 -864 240 ) (-576 -752 240 ) +4 2900 2901 (-576 -863.998047 240 ) (-576 -863.998047 48 ) (-480 -812.797852 42 ) (-480 -812.797852 240 ) +4 2901 2929 (-576 -896 48 ) (-576 -896 240 ) (-576 -864 240 ) (-576 -864 48 ) +4 2901 2918 (-576 -896 192 ) (-576 -896 48 ) (-480 -848 42 ) (-480 -848 192 ) +4 2901 2902 (-576 -896 240 ) (-576 -896 192 ) (-480 -848 192 ) (-480 -848 240 ) +4 2902 3320 (-480 -1024 240 ) (-544 -1024 240 ) (-544 -1024 192 ) (-480 -1024 192 ) +4 2902 3319 (-208 -1024 240 ) (-480 -1024 240 ) (-480 -1024 192 ) (-208 -1024 192 ) +4 2902 3321 (-544 -1024 240 ) (-576 -1024 240 ) (-576 -1024 192 ) (-544 -1024 192 ) +4 2902 3272 (-144 -1024 240 ) (-208 -1024 240 ) (-208 -1024 192 ) (-144 -1024 192 ) +4 2902 2930 (-576 -1024 192 ) (-576 -1024 240 ) (-576 -896 240 ) (-576 -896 192 ) +4 2902 2918 (-576 -1024 192 ) (-576 -896 192 ) (-480 -848 192 ) (-392 -1024 192 ) +4 2902 2917 (-480 -848 192 ) (-448 -832 192 ) (-368 -992 192 ) (-400 -1008 192 ) +3 2902 2916 (-356.571442 -1014.857117 192 ) (-352 -1024 192 ) (-373.333374 -1024 192 ) +5 2902 2915 (-368 -992 192 ) (-356.571442 -1014.857117 192 ) (-373.333374 -1024 192 ) (-392 -1024 192 ) (-400 -1008 192 ) +4 2902 2914 (-448 -832 192 ) (-415.992859 -815.996399 192 ) (-335.992859 -975.996399 192 ) (-368 -992 192 ) +4 2902 2913 (-415.992859 -815.996399 192 ) (-384 -800 192 ) (-304 -960 192 ) (-335.992859 -975.996399 192 ) +4 2902 2912 (-384 -800 192 ) (-352 -784 192 ) (-272 -944 192 ) (-304 -960 192 ) +4 2902 2911 (-296.140381 -981.894775 192 ) (-340 -1024 192 ) (-352 -1024 192 ) (-356.571442 -1014.857117 192 ) +5 2902 2910 (-272 -944 192 ) (-267.027039 -953.945923 192 ) (-296.140381 -981.894775 192 ) (-356.571442 -1014.857117 192 ) (-368 -992 192 ) +4 2902 2907 (-144 -835.840027 192 ) (-144 -848 192 ) (-224 -928 192 ) (-240 -928 192 ) +4 2902 2906 (-352 -784 192 ) (-144 -680 192 ) (-144 -835.840027 192 ) (-267.027039 -953.945923 192 ) +3 2902 2905 (-256 -1024 192 ) (-320 -1024 192 ) (-256 -960 192 ) +4 2902 2904 (-144 -960 192 ) (-144 -1024 192 ) (-256 -1024 192 ) (-256 -960 192 ) +3 2902 2903 (-144 -848 192 ) (-144 -928 192 ) (-224 -928 192 ) +4 2903 2908 (-144 -848 8 ) (-144 -848 0 ) (-224 -928 0 ) (-224 -928 8 ) +4 2903 2907 (-224 -928 192 ) (-144 -848 192 ) (-144 -848 8 ) (-224 -928 8 ) +4 2904 3326 (-256 -1024 0 ) (-208 -1024 0 ) (-208 -1024 192 ) (-256 -1024 192 ) +4 2904 3275 (-208 -1024 0 ) (-144 -1024 0 ) (-144 -1024 192 ) (-208 -1024 192 ) +4 2904 3030 (-224 -1024 0 ) (-256 -1024 0 ) (-256 -960 0 ) (-224 -960 0 ) +4 2904 3029 (-144 -960 0 ) (-144 -1024 0 ) (-224 -1024 0 ) (-224 -960 0 ) +4 2904 2905 (-256 -960 192 ) (-256 -960 0 ) (-256 -1024 0 ) (-256 -1024 192 ) +4 2905 3327 (-320 -1024 0 ) (-256 -1024 0 ) (-256 -1024 192 ) (-320 -1024 192 ) +3 2905 3031 (-256 -1024 0 ) (-320 -1024 0 ) (-256 -960 0 ) +4 2906 2912 (-272 -944 192 ) (-352 -784 192 ) (-352 -784 12 ) (-272 -944 12 ) +4 2906 2910 (-267.027008 -953.945984 192 ) (-272 -944 192 ) (-272 -944 8 ) (-267.027008 -953.945984 8 ) +3 2906 2909 (-267.027008 -953.945984 8 ) (-272 -944 8 ) (-240 -928 8 ) +4 2906 2908 (-320 -768 8 ) (-144 -680 8 ) (-144 -835.839966 8 ) (-240 -928 8 ) +4 2906 2907 (-240 -928 8 ) (-144 -835.839050 8 ) (-144 -835.839050 192 ) (-240 -928 192 ) +4 2907 2908 (-144 -847.998535 8 ) (-224.001801 -928 8 ) (-240 -928 8 ) (-144 -835.839966 8 ) +3 2909 3033 (-267.027008 -953.945984 0 ) (-272 -944 0 ) (-240 -928 0 ) +4 2909 2910 (-267.027039 -953.945923 8 ) (-272 -944 8 ) (-272 -944 0 ) (-267.027039 -953.945923 0 ) +5 2910 3033 (-356.571442 -1014.857117 0 ) (-368 -992 0 ) (-272 -944 0 ) (-267.027039 -953.945923 0 ) (-296.140381 -981.894775 0 ) +4 2910 2915 (-356.571442 -1014.857117 192 ) (-368 -992 192 ) (-368 -992 0 ) (-356.571442 -1014.857117 0 ) +4 2910 2914 (-368 -992 20 ) (-368 -992 192 ) (-335.992859 -975.996399 192 ) (-335.992859 -975.996399 20 ) +4 2910 2913 (-335.992859 -975.996399 16 ) (-335.992859 -975.996399 192 ) (-304 -960 192 ) (-304 -960 16 ) +4 2910 2912 (-272.001953 -944 192 ) (-272.001953 -944 12 ) (-304 -960 12 ) (-304 -960 192 ) +4 2910 2911 (-356.572876 -1014.857117 192 ) (-356.572876 -1014.857117 0 ) (-296.138672 -981.893555 0 ) (-296.138672 -981.893555 192 ) +4 2911 3324 (-352 -1024 0 ) (-340 -1024 0 ) (-340 -1024 192 ) (-352 -1024 192 ) +4 2911 3034 (-340 -1024 0 ) (-352 -1024 0 ) (-356.571442 -1014.857117 0 ) (-296.140381 -981.894775 0 ) +4 2911 2916 (-352 -1024 192 ) (-356.571442 -1014.857117 192 ) (-356.571442 -1014.857117 0 ) (-352 -1024 0 ) +4 2912 2913 (-304 -960 16 ) (-304 -960 192 ) (-384 -800 192 ) (-384 -800 16 ) +4 2913 2914 (-335.995117 -975.994141 20 ) (-335.995117 -975.994141 192 ) (-415.993744 -815.996887 192 ) (-415.993744 -815.996887 20 ) +4 2914 2917 (-368 -992 192 ) (-448 -832 192 ) (-448 -832 24 ) (-368 -992 24 ) +4 2915 3323 (-392 -1024 0 ) (-373.333435 -1024 0 ) (-373.333374 -1024 192 ) (-392 -1024 192 ) +5 2915 3033 (-373.333374 -1024 0 ) (-392 -1024 0 ) (-400 -1008 0 ) (-368 -992 0 ) (-356.571442 -1014.857117 0 ) +4 2915 2920 (-400 -1008 28 ) (-400 -1008 0 ) (-392 -1024 0 ) (-392 -1024 28 ) +4 2915 2919 (-400 -1008 36 ) (-400 -1008 28 ) (-392 -1024 28 ) (-392 -1024 36 ) +4 2915 2918 (-392 -1024 192 ) (-400 -1008 192 ) (-400 -1008 36 ) (-392 -1024 36 ) +4 2915 2917 (-368.001953 -992 192 ) (-368.001953 -992 24 ) (-400 -1008 24 ) (-400 -1008 192 ) +4 2915 2916 (-373.335876 -1024 0 ) (-356.571106 -1014.855835 0 ) (-356.571106 -1014.855835 192 ) (-373.335876 -1024 192 ) +4 2916 3324 (-373.333435 -1024 0 ) (-352 -1024 0 ) (-352 -1024 192 ) (-373.333374 -1024 192 ) +3 2916 3034 (-352 -1024 0 ) (-373.333374 -1024 0 ) (-356.571442 -1014.857117 0 ) +4 2917 2919 (-480 -848 36 ) (-480 -848 28 ) (-400 -1008 28 ) (-400 -1008 36 ) +4 2917 2918 (-400 -1008 192 ) (-480 -848 192 ) (-480 -848 36 ) (-400 -1008 36 ) +4 2918 3329 (-576 -1024 192 ) (-576 -1024 36 ) (-432 -1024 36 ) (-432 -1024 192 ) +4 2918 3323 (-432 -1024 36 ) (-392 -1024 36 ) (-392 -1024 192 ) (-432 -1024 192 ) +4 2918 2930 (-576 -1024 40 ) (-576 -1024 192 ) (-576 -896 192 ) (-576 -896 40 ) +4 2918 2921 (-544 -880 36 ) (-512 -864 36 ) (-432 -1024 36 ) (-472 -1024 36 ) +4 2918 2919 (-512 -864 36 ) (-480 -848 36 ) (-392 -1024 36 ) (-432 -1024 36 ) +4 2919 3323 (-392 -1024 28 ) (-392 -1024 36 ) (-432 -1024 36 ) (-432 -1024 28 ) +4 2919 2921 (-432 -1024 36 ) (-511.998047 -864.003906 36 ) (-511.998047 -864.003906 32 ) (-432 -1024 32 ) +3 2919 2920 (-432 -1024 28 ) (-400 -1008 28 ) (-392 -1024 28 ) +4 2920 3323 (-432 -1024 0 ) (-392 -1024 0 ) (-392 -1024 28 ) (-432 -1024 28 ) +3 2920 3033 (-392 -1024 0 ) (-432 -1024 0 ) (-400 -1008 0 ) +4 2921 3330 (-432 -1024 32 ) (-432 -1024 36 ) (-472 -1024 36 ) (-472 -1024 32 ) +4 2922 2933 (-672 -128 216 ) (-672 -128 192 ) (-672 -144 192 ) (-672 -144 216 ) +4 2922 2926 (-672 -144 216 ) (-672 -144 192 ) (-640 -144 192 ) (-640 -144 205.333344 ) +4 2922 2925 (-640 -144 192 ) (-624 -144 192 ) (-624 -144 200 ) (-640 -144 205.333344 ) +4 2923 2934 (-672 -128 144 ) (-672 -128 64 ) (-672 -144 64 ) (-672 -144 176 ) +4 2923 2926 (-672 -144 176 ) (-672 -144 64 ) (-640 -144 64 ) (-640 -144 176 ) +4 2923 2925 (-640 -144 64 ) (-592 -144 64 ) (-592 -144 176 ) (-640 -144 176 ) +4 2923 2924 (-592 -128 64 ) (-592 -144 64 ) (-640 -144 64 ) (-640 -128 64 ) +4 2924 2925 (-640 -144 0 ) (-592 -144 0 ) (-592 -144 64 ) (-640 -144 64 ) +4 2925 2928 (-640 -352 0 ) (-576 -352 0 ) (-576 -352 240 ) (-640 -352 240 ) +3 2925 2927 (-640 -352 32 ) (-640 -352 64 ) (-640 -256 64 ) +4 2925 2926 (-640 -144 240 ) (-640 -144 64 ) (-640 -352 64 ) (-640 -352 240 ) +4 2926 2935 (-672 -352 64 ) (-672 -352 240 ) (-672 -144 240 ) (-672 -144 64 ) +4 2926 2928 (-672 -352 240 ) (-672 -352 64 ) (-640 -352 64 ) (-640 -352 240 ) +4 2926 2927 (-640 -256 64 ) (-640 -352 64 ) (-672 -352 64 ) (-672 -256 64 ) +3 2927 2935 (-672 -352 32 ) (-672 -352 64 ) (-672 -256 64 ) +4 2927 2928 (-672 -352 64 ) (-672 -352 32 ) (-640 -352 32 ) (-640 -352 64 ) +4 2928 2939 (-672 -352 0 ) (-672 -848 0 ) (-672 -848 80 ) (-672 -352 80 ) +4 2928 2938 (-672 -864 80 ) (-672 -864 240 ) (-672 -352 240 ) (-672 -352 80 ) +4 2928 2929 (-672 -864 240 ) (-672 -864 80 ) (-576 -864 48 ) (-576 -864 240 ) +4 2929 2938 (-672 -896 80 ) (-672 -896 240 ) (-672 -864 240 ) (-672 -864 80 ) +4 2929 2932 (-672 -896 240 ) (-672 -896 80 ) (-640 -896 69.333328 ) (-640 -896 240 ) +4 2929 2931 (-640 -896 69.333328 ) (-608 -896 58.666656 ) (-608 -896 240 ) (-640 -896 240 ) +4 2929 2930 (-608 -896 58.666656 ) (-576 -896 48 ) (-576 -896 240 ) (-608 -896 240 ) +4 2930 3332 (-608 -1024 192 ) (-608 -1024 40 ) (-576 -1024 40 ) (-576 -1024 192 ) +4 2930 3321 (-576 -1024 240 ) (-608 -1024 240 ) (-608 -1024 192 ) (-576 -1024 192 ) +4 2930 2931 (-608 -896 240 ) (-608 -896 44 ) (-608 -1024 44 ) (-608 -1024 240 ) +4 2931 3333 (-640 -1024 192 ) (-640 -1024 44 ) (-608 -1024 44 ) (-608 -1024 192 ) +4 2931 3321 (-608 -1024 240 ) (-640 -1024 240 ) (-640 -1024 192 ) (-608 -1024 192 ) +4 2931 2932 (-640 -896 240 ) (-640 -896 48 ) (-640 -1024 48 ) (-640 -1024 240 ) +4 2932 3334 (-672 -1024 192 ) (-672 -1024 48 ) (-640 -1024 48 ) (-640 -1024 192 ) +4 2932 3321 (-640 -1024 240 ) (-672 -1024 240 ) (-672 -1024 192 ) (-640 -1024 192 ) +4 2932 2947 (-672 -1024 48 ) (-672 -1024 240 ) (-672 -896 240 ) (-672 -896 48 ) +4 2933 2937 (-816 -144 192 ) (-768 -144 192 ) (-768 -144 216 ) (-816 -144 200 ) +5 2933 2935 (-768 -144 192 ) (-672 -144 192 ) (-672 -144 216 ) (-720 -144 220 ) (-768 -144 216 ) +4 2934 2950 (-832 -144 32 ) (-832 -144 176 ) (-832 -128 144 ) (-832 -128 32 ) +4 2934 2937 (-832 -144 176 ) (-832 -144 32 ) (-768 -144 32 ) (-768 -144 176 ) +4 2934 2935 (-768 -144 32 ) (-672 -144 32 ) (-672 -144 176 ) (-768 -144 176 ) +4 2935 2939 (-672 -352 32 ) (-672 -352 80 ) (-704 -352 80 ) (-704 -352 32 ) +4 2935 2938 (-672 -352 80 ) (-672 -352 240 ) (-704 -352 240 ) (-704 -352 80 ) +4 2935 2940 (-704 -352 240 ) (-768 -352 240 ) (-768 -352 32 ) (-704 -352 32 ) +4 2935 2937 (-768 -144 240 ) (-768 -144 32 ) (-768 -352 32 ) (-768 -352 240 ) +4 2935 2936 (-672 -352 32 ) (-768 -352 32 ) (-768 -256 32 ) (-672 -256 32 ) +4 2936 2939 (-704 -352 0 ) (-672 -352 0 ) (-672 -352 32 ) (-704 -352 32 ) +4 2936 2940 (-768 -352 0 ) (-704 -352 0 ) (-704 -352 32 ) (-768 -352 32 ) +4 2937 2965 (-832 -352 32 ) (-832 -352 136 ) (-832 -288 136 ) (-832 -288 32 ) +4 2937 2964 (-832 -352 136 ) (-832 -352 240 ) (-832 -288 240 ) (-832 -288 136 ) +4 2937 2951 (-832 -144 192 ) (-832 -144 32 ) (-832 -288 32 ) (-832 -288 192 ) +4 2937 2949 (-832 -288 240 ) (-832 -144 240 ) (-832 -144 192 ) (-832 -288 192 ) +4 2937 2942 (-832 -352 48 ) (-832 -352 32 ) (-828 -352 32 ) (-828 -352 48 ) +4 2937 2941 (-832 -352 240 ) (-832 -352 48 ) (-828 -352 48 ) (-828 -352 240 ) +4 2937 2940 (-828 -352 32 ) (-768 -352 32 ) (-768 -352 240 ) (-828 -352 240 ) +4 2938 2947 (-672 -896 80 ) (-672 -896 240 ) (-704 -896 240 ) (-704 -896 80 ) +4 2938 2939 (-704 -816 80 ) (-704 -352 80 ) (-672 -352 80 ) (-672 -848 80 ) +4 2938 2940 (-704 -352 240 ) (-704 -352 80 ) (-704 -896 80 ) (-704 -896 240 ) +4 2939 2940 (-704 -352 80 ) (-704 -352 0 ) (-704 -816 0 ) (-704 -816 80 ) +4 2940 3037 (-704 -862.973389 0 ) (-704 -896 0 ) (-828 -896 0 ) (-828 -801.968018 0 ) +4 2940 2947 (-704 -896 48 ) (-704 -896 240 ) (-828 -896 240 ) (-828 -896 48 ) +4 2940 2945 (-828 -512 0 ) (-828 -560 0 ) (-828 -560 44 ) (-828 -512 44 ) +4 2940 2944 (-828 -480 0 ) (-828 -512 0 ) (-828 -512 48 ) (-828 -480 48 ) +4 2940 2946 (-828 -560 0 ) (-828 -896 0 ) (-828 -896 48 ) (-828 -560 48 ) +4 2940 2943 (-828 -432 0 ) (-828 -480 0 ) (-828 -480 44 ) (-828 -432 44 ) +4 2940 2942 (-828 -352 48 ) (-828 -352 0 ) (-828 -432 0 ) (-828 -432 48 ) +4 2940 2941 (-828 -352 240 ) (-828 -352 48 ) (-828 -896 48 ) (-828 -896 240 ) +4 2941 3006 (-832 -624 128 ) (-832 -576 128 ) (-832 -576 48 ) (-832 -624 48 ) +4 2941 3004 (-832 -896 48 ) (-832 -896 128 ) (-832 -624 128 ) (-832 -624 48 ) +4 2941 3003 (-832 -560 128 ) (-832 -512 128 ) (-832 -512 48 ) (-832 -560 48 ) +4 2941 3002 (-832 -480 128 ) (-832 -432 128 ) (-832 -432 48 ) (-832 -480 48 ) +4 2941 2999 (-832 -584 160 ) (-832 -576 160 ) (-832 -576 152 ) (-832 -584 156 ) +3 2941 2996 (-832 -592 160 ) (-832 -584 160 ) (-832 -584 156 ) +5 2941 2995 (-832 -896 128 ) (-832 -896 160 ) (-832 -592 160 ) (-832 -576 152 ) (-832 -576 128 ) +4 2941 2991 (-832 -896 160 ) (-832 -896 240 ) (-832 -576 240 ) (-832 -576 160 ) +4 2941 2965 (-832 -352 136 ) (-832 -352 48 ) (-832 -392 48 ) (-832 -392 136 ) +4 2941 2964 (-832 -392 240 ) (-832 -352 240 ) (-832 -352 136 ) (-832 -392 136 ) +4 2941 2967 (-832 -416 240 ) (-832 -392 240 ) (-832 -392 48 ) (-832 -416 48 ) +4 2941 2947 (-832 -896 240 ) (-832 -896 48 ) (-828 -896 48 ) (-828 -896 240 ) +4 2941 2944 (-828 -480 48 ) (-828 -512 48 ) (-832 -512 48 ) (-832 -480 48 ) +4 2941 2946 (-828 -560 48 ) (-828 -896 48 ) (-832 -896 48 ) (-832 -560 48 ) +4 2941 2942 (-832 -352 48 ) (-828 -352 48 ) (-828 -432 48 ) (-832 -432 48 ) +4 2942 2965 (-832 -392 48 ) (-832 -352 48 ) (-832 -352 32 ) (-832 -392 32 ) +4 2942 2967 (-832 -416 32 ) (-832 -416 48 ) (-832 -392 48 ) (-832 -392 32 ) +4 2942 2943 (-828 -432 0 ) (-828 -432 44 ) (-832 -432 40 ) (-832 -432 0 ) +4 2943 2944 (-828 -480 0 ) (-828 -480 44 ) (-832 -480 40 ) (-832 -480 0 ) +4 2944 2945 (-828 -512 0 ) (-828 -512 44 ) (-832 -512 40 ) (-832 -512 0 ) +4 2945 2946 (-828 -560 0 ) (-828 -560 44 ) (-832 -560 40 ) (-832 -560 0 ) +4 2946 3037 (-832 -896 0 ) (-832 -800 0 ) (-828 -801.968018 0 ) (-828 -896 0 ) +4 2946 3027 (-832 -704 0 ) (-832 -896 0 ) (-832 -896 48 ) (-832 -704 48 ) +4 2946 3026 (-832 -576 0 ) (-832 -704 0 ) (-832 -704 16 ) (-832 -576 16 ) +4 2946 3023 (-832 -584 48 ) (-832 -576 48 ) (-832 -576 40 ) (-832 -584 44 ) +3 2946 3020 (-832 -592 48 ) (-832 -584 48 ) (-832 -584 44 ) +5 2946 3019 (-832 -704 16 ) (-832 -704 48 ) (-832 -592 48 ) (-832 -576 40 ) (-832 -576 16 ) +4 2947 3334 (-832 -1024 192 ) (-832 -1024 48 ) (-672 -1024 48 ) (-672 -1024 192 ) +4 2947 3321 (-672 -1024 240 ) (-832 -1024 240 ) (-832 -1024 192 ) (-672 -1024 192 ) +4 2947 3004 (-832 -1024 48 ) (-832 -1024 128 ) (-832 -896 128 ) (-832 -896 48 ) +4 2947 2995 (-832 -1024 128 ) (-832 -1024 160 ) (-832 -896 160 ) (-832 -896 128 ) +4 2947 2991 (-832 -1024 160 ) (-832 -1024 240 ) (-832 -896 240 ) (-832 -896 160 ) +4 2948 3039 (-848 0 0 ) (-832 0 0 ) (-832 -96 0 ) (-848 -96 0 ) +4 2948 2952 (-848 0 0 ) (-848 -96 0 ) (-848 -96 240 ) (-848 0 240 ) +4 2949 2964 (-832 -288 192 ) (-832 -288 240 ) (-848 -288 240 ) (-848 -288 192 ) +4 2949 2953 (-848 -288 192 ) (-848 -288 240 ) (-848 -144 240 ) (-848 -144 192 ) +4 2949 2951 (-832 -288 192 ) (-848 -288 192 ) (-848 -144 192 ) (-832 -144 192 ) +4 2950 2951 (-848 -144 32 ) (-832 -144 32 ) (-832 -144 176 ) (-848 -144 176 ) +4 2951 2965 (-832 -288 32 ) (-832 -288 136 ) (-848 -288 136 ) (-848 -288 32 ) +4 2951 2964 (-832 -288 136 ) (-832 -288 192 ) (-848 -288 192 ) (-848 -288 136 ) +4 2951 2953 (-848 -288 32 ) (-848 -288 192 ) (-848 -144 192 ) (-848 -144 32 ) +4 2952 3039 (-864 0 0 ) (-848 0 0 ) (-848 -96 0 ) (-864 -96 0 ) +4 2952 2954 (-864 0 0 ) (-864 -96 0 ) (-864 -96 240 ) (-864 0 240 ) +4 2953 2965 (-848 -288 32 ) (-848 -288 136 ) (-864 -288 136 ) (-864 -288 32 ) +4 2953 2964 (-848 -288 136 ) (-848 -288 240 ) (-864 -288 240 ) (-864 -288 136 ) +4 2953 2955 (-864 -288 32 ) (-864 -288 240 ) (-864 -144 240 ) (-864 -144 32 ) +4 2954 3039 (-960 0 0 ) (-864 0 0 ) (-864 -96 0 ) (-960 -96 0 ) +4 2954 2956 (-960 0 0 ) (-960 -96 0 ) (-960 -96 240 ) (-960 0 240 ) +4 2955 2965 (-864 -288 32 ) (-864 -288 136 ) (-888 -288 136 ) (-888 -288 32 ) +4 2955 2964 (-864 -288 136 ) (-864 -288 240 ) (-888 -288 240 ) (-888 -288 136 ) +4 2955 2968 (-888 -288 240 ) (-960 -288 240 ) (-960 -288 32 ) (-888 -288 32 ) +7 2955 2960 (-960 -144 128 ) (-960 -144 32 ) (-960 -272 32 ) (-960 -272 128 ) (-960 -240 136 ) (-960 -208 138 ) (-960 -176 136 ) +4 2955 2958 (-960 -268 240 ) (-960 -228 240 ) (-960 -228 164 ) (-960 -268 164 ) +4 2955 2957 (-960 -188 240 ) (-960 -148 240 ) (-960 -148 164 ) (-960 -188 164 ) +4 2956 3051 (-1024 0 240 ) (-1024 0 0 ) (-1024 -96 0 ) (-1024 -96 240 ) +4 2956 3040 (-1024 -96 0 ) (-1024 0 0 ) (-960 0 0 ) (-960 -96 0 ) +4 2957 3051 (-1024 -188 240 ) (-1024 -148 240 ) (-1024 -148 164 ) (-1024 -188 164 ) +4 2958 3051 (-1024 -268 240 ) (-1024 -228 240 ) (-1024 -228 164 ) (-1024 -268 164 ) +4 2959 3040 (-976 -128 0 ) (-960 -128 0 ) (-960 -144 0 ) (-976 -144 0 ) +4 2959 2961 (-976 -128 32 ) (-976 -128 0 ) (-976 -144 0 ) (-976 -144 32 ) +4 2961 3051 (-1024 -128 0 ) (-1024 -144 0 ) (-1024 -144 32 ) (-1024 -128 32 ) +4 2961 3040 (-1024 -144 0 ) (-1024 -128 0 ) (-976 -128 0 ) (-976 -144 0 ) +4 2961 2962 (-1024 -144 0 ) (-976 -144 0 ) (-976 -144 32 ) (-1024 -144 32 ) +4 2962 3051 (-1024 -144 0 ) (-1024 -272 0 ) (-1024 -272 32 ) (-1024 -144 32 ) +4 2962 3040 (-1024 -272 0 ) (-1024 -144 0 ) (-976 -144 0 ) (-976 -272 0 ) +4 2962 2963 (-1024 -272 0 ) (-976 -272 0 ) (-976 -272 32 ) (-1024 -272 32 ) +4 2963 3051 (-1024 -272 0 ) (-1024 -288 0 ) (-1024 -288 32 ) (-1024 -272 32 ) +4 2963 3040 (-1024 -288 0 ) (-1024 -272 0 ) (-960 -272 0 ) (-960 -288 0 ) +4 2963 2980 (-1024 -288 0 ) (-976 -288 0 ) (-976 -288 32 ) (-1024 -288 32 ) +4 2964 2970 (-856.001953 -392 160 ) (-856.001953 -392 240 ) (-882 -366 240 ) (-882 -366 160 ) +4 2964 2966 (-839.986755 -392 136 ) (-848 -392 136 ) (-888 -352 136 ) (-888 -343.986786 136 ) +5 2964 2965 (-832 -392 136 ) (-839.986755 -392 136 ) (-888 -343.986786 136 ) (-888 -288 136 ) (-832 -288 136 ) +4 2964 2967 (-856 -392 240 ) (-856 -392 136 ) (-832 -392 136 ) (-832 -392 240 ) +4 2964 2968 (-888 -288 240 ) (-888 -288 136 ) (-888 -360 136 ) (-888 -360 240 ) +4 2965 2973 (-888 -360.001953 32 ) (-856.001953 -392 32 ) (-856.001953 -392 48 ) (-888 -360.001953 48 ) +4 2965 2972 (-856.001953 -392 48 ) (-856.001953 -392 127.992363 ) (-888 -360.001953 127.992439 ) (-888 -360.001953 48 ) +4 2965 2966 (-839.988281 -392 136 ) (-888 -343.988281 136 ) (-888 -352 131.994141 ) (-848 -392 131.994110 ) +5 2965 2968 (-888 -288 136 ) (-888 -288 32 ) (-888 -360 32 ) (-888 -360 127.993408 ) (-888 -343.986816 136 ) +5 2965 2967 (-856 -392 127.993408 ) (-856 -392 32 ) (-832 -392 32 ) (-832 -392 136 ) (-839.986694 -392 136 ) +3 2966 2967 (-848 -392 131.993332 ) (-839.986694 -392 136 ) (-848 -392 136 ) +3 2966 2968 (-888 -352 136 ) (-888 -343.986816 136 ) (-888 -352 131.993408 ) +4 2967 2970 (-854 -394.001007 240 ) (-856.001953 -392 240 ) (-856.001953 -392 160 ) (-854 -394.001007 160 ) +4 2968 2971 (-938 -310.001007 48 ) (-910 -338 48 ) (-910 -338 128 ) (-938 -310.001007 128 ) +4 2968 2969 (-938 -310.001007 160 ) (-910 -338 160 ) (-910 -338 240 ) (-938 -310.001007 240 ) +4 2969 2974 (-946 -318 160 ) (-918 -346 160 ) (-918 -346 240 ) (-946 -318 240 ) +4 2970 2974 (-890 -374 160 ) (-862 -402 160 ) (-862 -402 240 ) (-890 -374 240 ) +4 2971 2978 (-920 -344 48 ) (-918 -346 48 ) (-918 -346 128 ) (-920 -344 128 ) +4 2971 2977 (-946 -318 48 ) (-944 -320 48 ) (-944 -320 128 ) (-946 -318 128 ) +4 2972 2973 (-863.994141 -399.994141 48 ) (-895.994141 -367.994110 48 ) (-888 -360 48 ) (-856 -392 48 ) +4 2974 3051 (-1024 -416 128 ) (-1024 -416 240 ) (-1024 -288 240 ) (-1024 -288 128 ) +4 2974 3000 (-976 -416 160 ) (-1024 -416 160 ) (-1024 -416 128 ) (-976 -416 128 ) +4 2974 2992 (-864 -416 160 ) (-976 -416 160 ) (-976 -416 128 ) (-864 -416 128 ) +4 2974 2986 (-976 -416 240 ) (-1024 -416 240 ) (-1024 -416 160 ) (-976 -416 160 ) +4 2974 2982 (-864 -416 240 ) (-976 -416 240 ) (-976 -416 160 ) (-864 -416 160 ) +4 2974 2978 (-920 -344 128 ) (-896 -368 128 ) (-904 -376 128 ) (-928 -352 128 ) +4 2974 2977 (-992 -288 128 ) (-976 -288 128 ) (-944 -320 128 ) (-952 -328 128 ) +4 2974 2976 (-864 -400 128 ) (-848 -416 128 ) (-864 -416 128 ) (-872 -408 128 ) +4 2974 2975 (-1024 -288 128 ) (-992 -288 128 ) (-864 -416 128 ) (-1024 -416 128 ) +4 2975 3051 (-1024 -416 32 ) (-1024 -416 128 ) (-1024 -288 128 ) (-1024 -288 32 ) +4 2975 3024 (-1024 -416 48 ) (-1024 -416 32 ) (-976 -416 32 ) (-976 -416 48 ) +4 2975 3017 (-976 -416 32 ) (-864 -416 32 ) (-864 -416 48 ) (-976 -416 48 ) +4 2975 3011 (-976 -416 128 ) (-1024 -416 128 ) (-1024 -416 48 ) (-976 -416 48 ) +4 2975 3007 (-864 -416 128 ) (-976 -416 128 ) (-976 -416 48 ) (-864 -416 48 ) +4 2975 2978 (-928 -352 128 ) (-904 -376 128 ) (-904 -376 48 ) (-928 -352 48 ) +4 2975 2977 (-992 -288 48 ) (-992 -288 128 ) (-952 -328 128 ) (-952 -328 48 ) +4 2975 2979 (-904 -376 32 ) (-992 -288 32 ) (-992 -288 48 ) (-904 -376 48 ) +4 2975 2976 (-864 -416 32 ) (-872 -408 32 ) (-872 -408 128 ) (-864 -416 128 ) +4 2975 2980 (-1024 -288 32 ) (-992 -288 32 ) (-864 -416 32 ) (-1024 -416 32 ) +4 2976 2980 (-864 -400 32 ) (-848 -416 32 ) (-864 -416 32 ) (-872 -408 32 ) +4 2977 2979 (-976 -288 48 ) (-944 -320 48 ) (-952 -328 48 ) (-992 -288 48 ) +4 2978 2979 (-920 -344 48 ) (-896 -368 48 ) (-904 -376 48 ) (-928 -352 48 ) +4 2979 2980 (-992 -288 32 ) (-976 -288 32 ) (-896 -368 32 ) (-904 -376 32 ) +4 2980 3051 (-1024 -288 0 ) (-1024 -416 0 ) (-1024 -416 32 ) (-1024 -288 32 ) +3 2980 3039 (-960 -304 0 ) (-848 -416 0 ) (-960 -416 0 ) +5 2980 3040 (-1024 -416 0 ) (-1024 -288 0 ) (-976 -288 0 ) (-960 -304 0 ) (-960 -416 0 ) +4 2980 3025 (-1024 -416 0 ) (-864 -416 0 ) (-864 -416 16 ) (-1024 -416 16 ) +4 2980 3024 (-976 -416 32 ) (-1024 -416 32 ) (-1024 -416 16 ) (-976 -416 16 ) +4 2980 3017 (-864 -416 32 ) (-976 -416 32 ) (-976 -416 16 ) (-864 -416 16 ) +3 2981 2993 (-848 -576 160 ) (-864 -592 160 ) (-864 -576 160 ) +4 2981 2985 (-864 -576 160 ) (-864 -592.001953 160 ) (-864 -592.001953 240 ) (-864 -576 240 ) +3 2982 2993 (-864 -576 160 ) (-976 -688 160 ) (-976 -576 160 ) +4 2982 2992 (-976 -416 160 ) (-864 -416 160 ) (-864 -576 160 ) (-976 -576 160 ) +4 2982 2986 (-976 -416 240 ) (-976 -416 160 ) (-976 -688 160 ) (-976 -688 240 ) +4 2982 2985 (-872 -584 160 ) (-864 -576 160 ) (-864 -576 240 ) (-872 -584 240 ) +4 2982 2984 (-928 -640 160 ) (-896 -608 160 ) (-896 -608 240 ) (-928 -640 240 ) +4 2982 2983 (-976 -688 240 ) (-976 -688 160 ) (-952 -664 160 ) (-952 -664 240 ) +4 2983 2993 (-944 -672 160 ) (-976 -704 160 ) (-976 -688 160 ) (-952 -664 160 ) +4 2984 2993 (-888 -616 160 ) (-920 -648 160 ) (-928 -640 160 ) (-896 -608 160 ) +3 2985 2993 (-864 -576 160 ) (-864 -592 160 ) (-872 -584 160 ) +4 2986 3051 (-1024 -688 240 ) (-1024 -416 240 ) (-1024 -416 160 ) (-1024 -688 160 ) +4 2986 3000 (-1024 -416 160 ) (-976 -416 160 ) (-976 -688 160 ) (-1024 -688 160 ) +4 2987 3054 (-1024 -752 240 ) (-1024 -704 240 ) (-1024 -704 160 ) (-1024 -752 160 ) +3 2987 3001 (-976 -704 160 ) (-1024 -752 160 ) (-1024 -704 160 ) +4 2987 2990 (-1024 -752 160 ) (-976 -704 160 ) (-976 -704 240 ) (-1024 -752 240 ) +4 2988 2991 (-880 -624 160 ) (-856 -600 160 ) (-856.001038 -600 240 ) (-880.001038 -624 240 ) +4 2989 2991 (-936 -680 160 ) (-912 -656 160 ) (-912 -656 240 ) (-936 -679.998962 240 ) +4 2990 3054 (-1024 -768 240 ) (-1024 -752 240 ) (-1024 -752 160 ) (-1024 -768 160 ) +4 2990 3001 (-976 -720 160 ) (-1024 -768 160 ) (-1024 -752 160 ) (-976 -704 160 ) +3 2990 2994 (-960 -704 160 ) (-976 -720 160 ) (-976 -704 160 ) +4 2990 2991 (-1024 -768 160 ) (-960 -704 160 ) (-960.001953 -704 240 ) (-1024 -767.998047 240 ) +4 2991 3335 (-1024 -1024 192 ) (-1024 -1024 160 ) (-960 -1024 160 ) (-960 -1024 192 ) +4 2991 3334 (-960 -1024 160 ) (-832 -1024 160 ) (-832 -1024 192 ) (-960 -1024 192 ) +4 2991 3321 (-832 -1024 240 ) (-1024 -1024 240 ) (-1024 -1024 192 ) (-832 -1024 192 ) +4 2991 3054 (-1024 -1024 160 ) (-1024 -1024 240 ) (-1024 -768 240 ) (-1024 -768 160 ) +4 2991 3001 (-976 -1024 160 ) (-1024 -1024 160 ) (-1024 -768 160 ) (-976 -720 160 ) +4 2991 2999 (-832 -576 160 ) (-832 -584 160 ) (-852 -604 160 ) (-856 -600 160 ) +4 2991 2998 (-932 -684 160 ) (-976 -728 160 ) (-976 -720 160 ) (-936 -680 160 ) +4 2991 2997 (-876 -628 160 ) (-908 -660 160 ) (-912 -656 160 ) (-880 -624 160 ) +4 2991 2996 (-832 -584 160 ) (-832 -592 160 ) (-976 -736 160 ) (-976 -728 160 ) +4 2991 2995 (-832 -592 160 ) (-832 -1024 160 ) (-976 -1024 160 ) (-976 -736 160 ) +4 2992 3007 (-976 -416 128 ) (-864 -416 128 ) (-864 -576 128 ) (-976 -576 128 ) +4 2992 3000 (-976 -416 128 ) (-976 -576 128 ) (-976 -576 160 ) (-976 -416 160 ) +4 2992 2993 (-976 -576 160 ) (-976 -576 128 ) (-864 -576 128 ) (-864 -576 160 ) +4 2993 3010 (-976 -704 128 ) (-976 -688 128 ) (-952 -664 128 ) (-944 -672 128 ) +3 2993 3009 (-872 -584 128 ) (-864 -576 128 ) (-864 -592 128 ) +4 2993 3008 (-928 -640 128 ) (-896 -608 128 ) (-888 -616 128 ) (-920 -648 128 ) +3 2993 3007 (-976 -688 128 ) (-976 -576 128 ) (-864 -576 128 ) +3 2993 3005 (-864 -576 128 ) (-848 -576 128 ) (-864 -592 128 ) +4 2993 3000 (-976 -576 128 ) (-976 -688 128 ) (-976 -688 160 ) (-976 -576 160 ) +3 2994 3015 (-960 -704 128 ) (-976 -720 128 ) (-976 -704 128 ) +4 2994 3001 (-976 -704 128 ) (-976 -720 128 ) (-976 -720 160 ) (-976 -704 160 ) +4 2994 2998 (-976 -719.998047 160 ) (-976 -719.998047 151.998993 ) (-960.001953 -704 151.998993 ) (-960.001953 -704 160 ) +4 2994 2995 (-976 -719.998047 151.998993 ) (-976 -719.998047 128 ) (-960.001953 -704 128 ) (-960.001953 -704 151.998993 ) +4 2995 3335 (-976 -1024 128 ) (-960 -1024 128 ) (-960 -1024 160 ) (-976 -1024 160 ) +4 2995 3334 (-960 -1024 128 ) (-832 -1024 128 ) (-832 -1024 160 ) (-960 -1024 160 ) +4 2995 3016 (-864 -1024 128 ) (-976 -1024 128 ) (-976 -720 128 ) (-864 -608 128 ) +3 2995 3006 (-832 -576 128 ) (-832 -624 128 ) (-856 -600 128 ) +5 2995 3004 (-832 -624 128 ) (-832 -1024 128 ) (-864 -1024 128 ) (-864 -608 128 ) (-856 -600 128 ) +5 2995 3001 (-976 -720 128 ) (-976 -1024 128 ) (-976 -1024 160 ) (-976 -736 160 ) (-976 -720 152 ) +4 2995 2999 (-832 -576 151.996048 ) (-856 -600 151.996048 ) (-852 -604 155.996063 ) (-832 -584 155.996063 ) +4 2995 2998 (-936 -680 151.996048 ) (-976 -720 151.996033 ) (-976 -728 155.996063 ) (-932 -684 155.996063 ) +4 2995 2997 (-880 -624 151.996048 ) (-912 -656 151.996048 ) (-908 -660 155.996063 ) (-876 -628 155.996063 ) +4 2995 2996 (-976 -728 155.996063 ) (-976 -736.007935 160 ) (-832 -592.007813 160 ) (-832 -584 155.996063 ) +3 2996 3001 (-976 -736 160 ) (-976 -728 160 ) (-976 -728 156 ) +4 2996 2999 (-832 -583.996094 155.998077 ) (-852.002014 -603.998108 155.998077 ) (-852.002014 -603.998108 160 ) (-832 -583.996094 160 ) +4 2996 2998 (-932.001892 -683.997986 155.998077 ) (-976 -727.996094 155.998077 ) (-976 -727.996094 160 ) (-932.001892 -683.997986 160 ) +4 2996 2997 (-876.002014 -627.998108 155.998077 ) (-908.001953 -659.998047 155.998077 ) (-908.001953 -659.998047 160 ) (-876.002014 -627.998108 160 ) +4 2998 3001 (-976 -728 160 ) (-976 -720 160 ) (-976 -720 152 ) (-976 -728 156 ) +4 3000 3051 (-1024 -688 160 ) (-1024 -416 160 ) (-1024 -416 128 ) (-1024 -688 128 ) +4 3000 3011 (-1024 -688 128 ) (-1024 -416 128 ) (-976 -416 128 ) (-976 -688 128 ) +4 3001 3335 (-1024 -1024 160 ) (-1024 -1024 128 ) (-976 -1024 128 ) (-976 -1024 160 ) +4 3001 3054 (-1024 -1024 128 ) (-1024 -1024 160 ) (-1024 -704 160 ) (-1024 -704 128 ) +4 3001 3015 (-1024 -768 128 ) (-1024 -752 128 ) (-976 -704 128 ) (-976 -720 128 ) +4 3001 3016 (-1024 -1024 128 ) (-1024 -768 128 ) (-976 -720 128 ) (-976 -1024 128 ) +3 3001 3012 (-1024 -752 128 ) (-1024 -704 128 ) (-976 -704 128 ) +4 3004 3334 (-864 -1024 48 ) (-832 -1024 48 ) (-832 -1024 128 ) (-864 -1024 128 ) +4 3004 3027 (-832 -704 48 ) (-832 -896 48 ) (-864 -896 48 ) (-864 -704 48 ) +4 3004 3020 (-864 -624 48 ) (-864 -616 48 ) (-852 -604 48 ) (-848 -608 48 ) +5 3004 3019 (-832 -624 48 ) (-832 -704 48 ) (-864 -704 48 ) (-864 -624 48 ) (-848 -608 48 ) +4 3004 3013 (-864 -592 48 ) (-864 -608 48 ) (-864 -608 128 ) (-864 -592 128 ) +4 3004 3016 (-864 -608 48 ) (-864 -1024 48 ) (-864 -1024 128 ) (-864 -608 128 ) +4 3004 3006 (-832 -624 48 ) (-856 -600 48 ) (-856 -600 128 ) (-832 -624 128 ) +3 3005 3018 (-864 -592 48 ) (-864 -576 48 ) (-848 -576 48 ) +4 3005 3009 (-864 -576 48 ) (-864 -592 48 ) (-864 -592 128 ) (-864 -576 128 ) +4 3006 3023 (-832 -576 48 ) (-832 -584 48 ) (-852 -604 48 ) (-856 -600 48 ) +4 3006 3020 (-832 -584 48 ) (-832 -592 48 ) (-848 -608 48 ) (-852 -604 48 ) +3 3006 3019 (-832 -592 48 ) (-832 -624 48 ) (-848 -608 48 ) +3 3007 3018 (-864 -576 48 ) (-976 -688 48 ) (-976 -576 48 ) +4 3007 3017 (-976 -416 48 ) (-864 -416 48 ) (-864 -576 48 ) (-976 -576 48 ) +4 3007 3011 (-976 -416 48 ) (-976 -688 48 ) (-976 -688 128 ) (-976 -416 128 ) +4 3007 3010 (-976 -688 128 ) (-976 -688 48 ) (-952 -664 48 ) (-952 -664 128 ) +4 3007 3009 (-872 -584 48 ) (-864 -576 48 ) (-864 -576 128 ) (-872 -584 128 ) +4 3007 3008 (-928 -640 48 ) (-896 -608 48 ) (-896 -608 128 ) (-928 -640 128 ) +4 3008 3018 (-888 -616 48 ) (-920 -648 48 ) (-928 -640 48 ) (-896 -608 48 ) +3 3009 3018 (-864 -576 48 ) (-864 -592 48 ) (-872 -584 48 ) +4 3010 3018 (-944 -672 48 ) (-976 -704 48 ) (-976 -688 48 ) (-952 -664 48 ) +4 3011 3051 (-1024 -688 128 ) (-1024 -416 128 ) (-1024 -416 48 ) (-1024 -688 48 ) +4 3011 3024 (-1024 -416 48 ) (-976 -416 48 ) (-976 -688 48 ) (-1024 -688 48 ) +4 3012 3054 (-1024 -752 128 ) (-1024 -704 128 ) (-1024 -704 48 ) (-1024 -752 48 ) +4 3012 3015 (-1024 -752 48 ) (-976 -704 48 ) (-976 -704 128 ) (-1024 -752 128 ) +4 3013 3016 (-880 -624 48 ) (-864 -608 48 ) (-864 -608 128 ) (-880 -624 128 ) +4 3014 3016 (-936 -680 48 ) (-912 -656 48 ) (-912 -656 128 ) (-936 -680 128 ) +4 3015 3054 (-1024 -768 128 ) (-1024 -752 128 ) (-1024 -752 48 ) (-1024 -768 48 ) +4 3015 3016 (-1024 -768 48 ) (-960 -704 48 ) (-960 -704 128 ) (-1024 -768 128 ) +4 3016 3335 (-1024 -1024 128 ) (-1024 -1024 48 ) (-960 -1024 48 ) (-960 -1024 128 ) +4 3016 3334 (-960 -1024 48 ) (-864 -1024 48 ) (-864 -1024 128 ) (-960 -1024 128 ) +4 3016 3054 (-1024 -1024 48 ) (-1024 -1024 128 ) (-1024 -768 128 ) (-1024 -768 48 ) +4 3016 3027 (-864 -704 48 ) (-864 -896 48 ) (-960 -896 48 ) (-960 -704 48 ) +4 3016 3022 (-932 -684 48 ) (-952 -704 48 ) (-960 -704 48 ) (-936 -680 48 ) +4 3016 3021 (-876 -628 48 ) (-908 -660 48 ) (-912 -656 48 ) (-880 -624 48 ) +4 3016 3020 (-864 -616 48 ) (-864 -624 48 ) (-944 -704 48 ) (-952 -704 48 ) +3 3016 3019 (-864 -624 48 ) (-864 -704 48 ) (-944 -704 48 ) +4 3017 3025 (-976 -576 16 ) (-976 -416 16 ) (-864 -416 16 ) (-864 -576 16 ) +4 3017 3024 (-976 -416 16 ) (-976 -576 16 ) (-976 -576 48 ) (-976 -416 48 ) +4 3017 3018 (-976 -576 48 ) (-976 -576 16 ) (-864 -576 16 ) (-864 -576 48 ) +4 3018 3024 (-976 -576 16 ) (-976 -688 16 ) (-976 -688 48 ) (-976 -576 48 ) +5 3019 3027 (-832 -704 16 ) (-832 -704 48 ) (-944 -704 48 ) (-960 -704 40 ) (-960 -704 16 ) +3 3019 3026 (-832 -704 16 ) (-960 -704 16 ) (-832 -576 16 ) +4 3019 3023 (-832 -576.003906 40 ) (-855.998108 -600.002014 40 ) (-852 -604 43.998066 ) (-832 -584 43.998062 ) +4 3019 3022 (-935.997986 -680.001892 40 ) (-959.996094 -704 40 ) (-952 -704 43.998085 ) (-932 -684 43.998081 ) +4 3019 3021 (-879.998108 -624.002014 40 ) (-911.998047 -656.001953 40 ) (-908 -660 43.998077 ) (-876 -628 43.998070 ) +4 3019 3020 (-952 -704 43.998085 ) (-943.996216 -704 48 ) (-832 -592.003906 48 ) (-832 -584 43.998062 ) +3 3020 3027 (-944 -704 48 ) (-952 -704 48 ) (-952 -704 44 ) +4 3020 3023 (-832 -583.996094 44 ) (-852.002014 -603.998108 44 ) (-852.002014 -603.998108 48 ) (-832 -583.996094 48 ) +4 3020 3022 (-932.001892 -683.997986 44 ) (-952.003906 -704 44 ) (-952.003906 -704 48 ) (-932.001892 -683.997986 48 ) +4 3020 3021 (-876.002014 -627.998108 44 ) (-908.001953 -659.998047 44 ) (-908.001953 -659.998047 48 ) (-876.002014 -627.998108 48 ) +4 3022 3027 (-952 -704 48 ) (-960 -704 48 ) (-960 -704 40 ) (-952 -704 44 ) +4 3024 3051 (-1024 -688 48 ) (-1024 -416 48 ) (-1024 -416 16 ) (-1024 -688 16 ) +4 3024 3025 (-1024 -576 16 ) (-1024 -416 16 ) (-976 -416 16 ) (-976 -576 16 ) +4 3025 3051 (-1024 -416 0 ) (-1024 -576 0 ) (-1024 -576 16 ) (-1024 -416 16 ) +4 3025 3039 (-960 -416 0 ) (-864 -416 0 ) (-864 -576 0 ) (-960 -576 0 ) +4 3025 3040 (-1024 -576 0 ) (-1024 -416 0 ) (-960 -416 0 ) (-960 -576 0 ) +4 3026 3027 (-960 -704 0 ) (-832 -704 0 ) (-832 -704 16 ) (-960 -704 16 ) +4 3027 3038 (-832 -784 0 ) (-832 -896 0 ) (-960 -896 0 ) (-960 -720 0 ) +4 3028 3275 (-128 -1024 -64 ) (-128 -1024 0 ) (-144 -1024 0 ) (-144 -1024 -64 ) +4 3028 3042 (-128 -964 -64 ) (-128 -1024 -64 ) (-144 -1024 -64 ) (-144 -964 -64 ) +4 3028 3029 (-144 -964 -64 ) (-144 -1024 -64 ) (-144 -1024 0 ) (-144 -964 0 ) +4 3029 3326 (-208 -1024 0 ) (-224 -1024 0 ) (-224 -1024 -64 ) (-208 -1024 -64 ) +4 3029 3275 (-144 -1024 0 ) (-208 -1024 0 ) (-208 -1024 -64 ) (-144 -1024 -64 ) +4 3029 3043 (-144 -960 -64 ) (-144 -1024 -64 ) (-224 -1024 -64 ) (-224 -960 -64 ) +4 3029 3030 (-224 -960 -64 ) (-224 -1024 -64 ) (-224 -1024 0 ) (-224 -960 0 ) +4 3030 3326 (-224 -1024 0 ) (-256 -1024 0 ) (-256 -1024 -64 ) (-224 -1024 -64 ) +4 3030 3043 (-224 -960 -64 ) (-224 -1024 -64 ) (-256 -1024 -64 ) (-256 -960 -64 ) +4 3030 3032 (-256 -960 -32 ) (-256 -960 -64 ) (-256 -1024 -64 ) (-256 -1024 -32 ) +4 3030 3031 (-256 -960 0 ) (-256 -960 -32 ) (-256 -1024 -32 ) (-256 -1024 0 ) +4 3031 3327 (-256 -1024 0 ) (-320 -1024 0 ) (-320 -1024 -32 ) (-256 -1024 -32 ) +3 3031 3032 (-320 -1024 -32 ) (-256 -960 -32 ) (-256 -1024 -32 ) +4 3032 3328 (-320 -1024 -32 ) (-320 -1024 -64 ) (-256 -1024 -64 ) (-256 -1024 -32 ) +3 3032 3044 (-256 -1024 -64 ) (-320 -1024 -64 ) (-256 -960 -64 ) +4 3033 3336 (-576 -1024 0 ) (-640 -1024 0 ) (-640 -1024 -32 ) (-576 -1024 -32 ) +4 3033 3331 (-432 -1024 0 ) (-576 -1024 0 ) (-576 -1024 -32 ) (-432 -1024 -32 ) +4 3033 3323 (-373.333313 -1024 0 ) (-432 -1024 0 ) (-432 -1024 -32 ) (-373.333313 -1024 -32 ) +4 3033 3037 (-640 -1024 -32 ) (-640 -1024 0 ) (-640 -928 0 ) (-640 -928 -32 ) +5 3033 3035 (-640 -928 -32 ) (-240.003906 -928 -32 ) (-296.149292 -981.899597 -32 ) (-373.333374 -1024 -32 ) (-640 -1024 -32 ) +4 3033 3034 (-373.334686 -1024 -32 ) (-296.144531 -981.896484 -32 ) (-296.144531 -981.896484 0 ) (-373.334656 -1024 0 ) +4 3034 3324 (-340 -1024 0 ) (-373.333313 -1024 0 ) (-373.333313 -1024 -32 ) (-340 -1024 -32 ) +3 3034 3035 (-296.149292 -981.899597 -32 ) (-340.003876 -1024 -32 ) (-373.333374 -1024 -32 ) +4 3035 3336 (-640 -1024 -32 ) (-640 -1024 -64 ) (-576 -1024 -64 ) (-576 -1024 -32 ) +4 3035 3331 (-576 -1024 -64 ) (-432 -1024 -64 ) (-432 -1024 -32 ) (-576 -1024 -32 ) +4 3035 3325 (-432 -1024 -64 ) (-340 -1024 -64 ) (-340 -1024 -32 ) (-432 -1024 -32 ) +3 3035 3046 (-303.366333 -988.831665 -64 ) (-340 -1024 -64 ) (-361.142853 -1024 -64 ) +5 3035 3045 (-240 -928 -64 ) (-303.366333 -988.831665 -64 ) (-361.142853 -1024 -64 ) (-640 -1024 -64 ) (-640 -928 -64 ) +4 3035 3037 (-640 -928 -64 ) (-640 -1024 -64 ) (-640 -1024 -32 ) (-640 -928 -32 ) +4 3036 3041 (-832 0 -64 ) (-640 0 -64 ) (-640 -352 -64 ) (-832 -352 -64 ) +4 3036 3039 (-832 0 -64 ) (-832 -352 -64 ) (-832 -352 0 ) (-832 0 0 ) +4 3037 3336 (-640 -1024 0 ) (-832 -1024 0 ) (-832 -1024 -64 ) (-640 -1024 -64 ) +4 3037 3045 (-640 -928 -64 ) (-640 -1024 -64 ) (-832 -1024 -64 ) (-832 -928 -64 ) +4 3037 3041 (-640 -894.460022 -64 ) (-640 -928 -64 ) (-832 -928 -64 ) (-832 -800 -64 ) +4 3037 3038 (-832 -800 -64 ) (-832 -1024 -64 ) (-832 -1024 0 ) (-832 -800 0 ) +4 3038 3336 (-832 -1024 0 ) (-960 -1024 0 ) (-960 -1024 -64 ) (-832 -1024 -64 ) +4 3038 3045 (-832 -928 -64 ) (-832 -1024 -64 ) (-960 -1024 -64 ) (-960 -928 -64 ) +4 3038 3041 (-832 -784 -64 ) (-832 -928 -64 ) (-960 -928 -64 ) (-960 -720 -64 ) +4 3038 3040 (-960 -720 -64 ) (-960 -1024 -64 ) (-960 -1024 0 ) (-960 -720 0 ) +4 3039 3041 (-960 0 -64 ) (-832 0 -64 ) (-832 -576 -64 ) (-960 -704 -64 ) +4 3039 3040 (-960 0 -64 ) (-960 -704 -64 ) (-960 -704 0 ) (-960 0 0 ) +4 3040 3336 (-960 -1024 0 ) (-1024 -1024 0 ) (-1024 -1024 -64 ) (-960 -1024 -64 ) +4 3040 3055 (-1024 -704 -64 ) (-1024 -1024 -64 ) (-1024 -1024 0 ) (-1024 -704 0 ) +4 3040 3052 (-1024 -688 -64 ) (-1024 -704 -64 ) (-1024 -704 0 ) (-1024 -688 0 ) +4 3040 3051 (-1024 0 0 ) (-1024 0 -64 ) (-1024 -688 -64 ) (-1024 -688 0 ) +4 3040 3045 (-960 -928 -64 ) (-960 -1024 -64 ) (-1024 -1024 -64 ) (-1024 -928 -64 ) +4 3040 3041 (-1024 0 -64 ) (-960 0 -64 ) (-960 -928 -64 ) (-1024 -928 -64 ) +4 3041 3055 (-1024 -704 -128 ) (-1024 -928 -128 ) (-1024 -928 -64 ) (-1024 -704 -64 ) +4 3041 3052 (-1024 -688 -128 ) (-1024 -704 -128 ) (-1024 -704 -64 ) (-1024 -688 -64 ) +4 3041 3051 (-1024 0 -64 ) (-1024 0 -128 ) (-1024 -688 -128 ) (-1024 -688 -64 ) +4 3041 3047 (-1024 -928 -128 ) (-1024 0 -128 ) (-224 0 -128 ) (-224 -928 -128 ) +4 3041 3045 (-1024 -928 -128 ) (-240 -928 -128 ) (-240 -928 -64 ) (-1024 -928 -64 ) +4 3042 3383 (-128 -1024 -128 ) (-128 -1024 -64 ) (-144 -1024 -64 ) (-144 -1024 -128 ) +4 3042 3047 (-128 -964 -128 ) (-128 -1024 -128 ) (-144 -1024 -128 ) (-144 -964 -128 ) +4 3042 3043 (-144 -964 -128 ) (-144 -1024 -128 ) (-144 -1024 -64 ) (-144 -964 -64 ) +4 3043 3384 (-240 -1024 -64 ) (-256 -1024 -64 ) (-256 -1024 -128 ) (-240 -1024 -128 ) +4 3043 3383 (-144 -1024 -64 ) (-240 -1024 -64 ) (-240 -1024 -128 ) (-144 -1024 -128 ) +4 3043 3047 (-144 -960 -128 ) (-144 -1024 -128 ) (-256 -1024 -128 ) (-256 -960 -128 ) +4 3043 3044 (-256 -960 -64 ) (-256 -960 -128 ) (-256 -1024 -128 ) (-256 -1024 -64 ) +4 3044 3396 (-256 -1024 -64 ) (-320 -1024 -64 ) (-320 -1024 -128 ) (-256 -1024 -128 ) +3 3044 3047 (-256 -1024 -128 ) (-320 -1024 -128 ) (-256 -960 -128 ) +4 3045 3393 (-361.142853 -1024 -64 ) (-1024 -1024 -64 ) (-1024 -1024 -128 ) (-361.142883 -1024 -128 ) +4 3045 3055 (-1024 -928 -128 ) (-1024 -1024 -128 ) (-1024 -1024 -64 ) (-1024 -928 -64 ) +5 3045 3047 (-1024 -1024 -128 ) (-1024 -928 -128 ) (-240 -928 -128 ) (-303.366333 -988.831665 -128 ) (-361.142853 -1024 -128 ) +4 3045 3046 (-361.140625 -1024 -128 ) (-303.363281 -988.832031 -128 ) (-303.363281 -988.832031 -64 ) (-361.139221 -1024 -64 ) +4 3046 3397 (-340 -1024 -64 ) (-361.142853 -1024 -64 ) (-361.142883 -1024 -128 ) (-340 -1024 -128 ) +3 3046 3047 (-303.366333 -988.831665 -128 ) (-340 -1024 -128 ) (-361.142853 -1024 -128 ) +4 3047 3413 (-128 -1024 -1284 ) (-128 -1024 -128 ) (-1024 -1024 -128 ) (-1024 -1024 -1284 ) +4 3047 3055 (-1024 -704 -1284 ) (-1024 -1024 -1284 ) (-1024 -1024 -128 ) (-1024 -704 -128 ) +4 3047 3052 (-1024 -688 -1284 ) (-1024 -704 -1284 ) (-1024 -704 -128 ) (-1024 -688 -128 ) +4 3047 3051 (-1024 0 -128 ) (-1024 0 -1284 ) (-1024 -688 -1284 ) (-1024 -688 -128 ) +4 3048 3063 (-2048 -648 5542.669922 ) (-2048 0 5542.669922 ) (-2048 0 256 ) (-2048 -648 256 ) +4 3048 3051 (-1216 0 256 ) (-1024 0 256 ) (-1024 -648 256 ) (-1216 -648 256 ) +4 3048 3053 (-2048 -648 256 ) (-2048 0 256 ) (-1216 0 256 ) (-1216 -648 256 ) +4 3048 3049 (-1024 -648 336.003845 ) (-1024 -648 5542.669922 ) (-1176 -648 5542.669922 ) (-1176 -648 336.003906 ) +4 3048 3050 (-2048 -648 256 ) (-1176 -648 256 ) (-1176 -648 5542.669922 ) (-2048 -648 5542.669922 ) +4 3049 3416 (-1040 -1024 5542.669922 ) (-1056 -1024 5542.669922 ) (-1056 -1024 256 ) (-1040 -1024 256 ) +4 3049 3419 (-1056 -1024 5542.669922 ) (-1552 -1024 5542.669922 ) (-1552 -1024 256 ) (-1056 -1024 256 ) +4 3049 3414 (-1024 -1024 256 ) (-1024 -1024 5542.669922 ) (-1040 -1024 5542.669922 ) (-1040 -1024 256 ) +4 3049 3056 (-1040 -1024 256 ) (-1056 -1024 256 ) (-1056 -704 256 ) (-1040 -704 256 ) +4 3049 3057 (-1056 -1024 256 ) (-1552 -1024 256 ) (-1232 -704 256 ) (-1056 -704 256 ) +4 3049 3054 (-1024 -704 256 ) (-1024 -1024 256 ) (-1040 -1024 256 ) (-1040 -704 256 ) +4 3049 3053 (-1216 -704 256 ) (-1232 -704 256 ) (-1216.001953 -688.001953 256 ) (-1216 -688.001953 256 ) +5 3049 3050 (-1176.001831 -648 5542.669922 ) (-1176.001953 -648 336.003906 ) (-1216.003906 -688.001953 256 ) (-1552.001953 -1024 256 ) (-1552 -1024 5542.669922 ) +4 3050 3419 (-1552 -1024 5542.669922 ) (-2048 -1024 5542.669922 ) (-2048 -1024 256 ) (-1552 -1024 256 ) +4 3050 3063 (-2048 -1024 256 ) (-2048 -1024 5542.669922 ) (-2048 -648 5542.669922 ) (-2048 -648 256 ) +4 3050 3057 (-2048 -1024 256 ) (-2048 -704 256 ) (-1232 -704 256 ) (-1552 -1024 256 ) +3 3050 3051 (-1216 -648 256 ) (-1176 -648 256 ) (-1216 -688 256 ) +5 3050 3053 (-2048 -704 256 ) (-2048 -648 256 ) (-1216 -648 256 ) (-1216 -688 256 ) (-1232 -704 256 ) +4 3051 3052 (-1216 -688 0 ) (-1216 -688 -1284 ) (-1024 -688 -1284 ) (-1024 -688 0 ) +4 3051 3053 (-1216 0 -1284 ) (-1216 -688 -1284 ) (-1216 -688 256 ) (-1216 0 256 ) +4 3052 3058 (-1040 -704 0 ) (-1216 -704 0 ) (-1216 -704 -1284 ) (-1040 -704 -1284 ) +4 3052 3055 (-1024 -704 -1284 ) (-1024 -704 0 ) (-1040 -704 0 ) (-1040 -704 -1284 ) +4 3052 3053 (-1216 -688 -1284 ) (-1216 -704 -1284 ) (-1216 -704 0 ) (-1216 -688 0 ) +4 3053 3063 (-2048 -704 -1284 ) (-2048 -704 256 ) (-2048 0 256 ) (-2048 0 -1284 ) +4 3053 3058 (-2048 -704 32 ) (-2048 -704 -1284 ) (-1216 -704 -1284 ) (-1216 -704 32 ) +4 3053 3057 (-1216 -704 256 ) (-2048 -704 256 ) (-2048 -704 32 ) (-1216 -704 32 ) +4 3054 3414 (-1024 -1024 48 ) (-1024 -1024 256 ) (-1040 -1024 256 ) (-1040 -1024 48 ) +7 3054 3056 (-1040 -704 256 ) (-1040 -704 176 ) (-1040 -800 148 ) (-1040 -896 140 ) (-1040 -992 148 ) (-1040 -1024 157.333313 ) (-1040 -1024 256 ) +4 3055 3434 (-1024 -1024 -1284 ) (-1024 -1024 -128 ) (-1040 -1024 -128 ) (-1040 -1024 -1284 ) +4 3055 3426 (-1024 -1024 -128 ) (-1024 -1024 -64 ) (-1040 -1024 -64 ) (-1040 -1024 -128 ) +4 3055 3415 (-1024 -1024 -64 ) (-1024 -1024 0 ) (-1040 -1024 0 ) (-1040 -1024 -64 ) +4 3055 3058 (-1040 -704 0 ) (-1040 -704 -1284 ) (-1040 -1024 -1284 ) (-1040 -1024 0 ) +4 3056 3416 (-1040 -1024 157.333313 ) (-1040 -1024 256 ) (-1056 -1024 256 ) (-1056 -1024 157.333313 ) +7 3056 3057 (-1056 -704 256 ) (-1056 -704 176 ) (-1056 -800 148 ) (-1056 -896 140 ) (-1056 -992 148 ) (-1056 -1024 157.333313 ) (-1056 -1024 256 ) +4 3057 3419 (-1056 -1024 256 ) (-2048 -1024 256 ) (-2048 -1024 32 ) (-1056 -1024 32 ) +4 3057 3063 (-2048 -1024 32 ) (-2048 -1024 256 ) (-2048 -704 256 ) (-2048 -704 32 ) +4 3057 3058 (-2048 -704 32 ) (-1056 -704 32 ) (-1056 -1024 32 ) (-2048 -1024 32 ) +4 3058 3434 (-1040 -1024 -1284 ) (-1040 -1024 -128 ) (-2048 -1024 -128 ) (-2048 -1024 -1284 ) +4 3058 3426 (-1040 -1024 -128 ) (-1040 -1024 -64 ) (-2048 -1024 -64 ) (-2048 -1024 -128 ) +4 3058 3417 (-1040 -1024 -64 ) (-1040 -1024 32 ) (-1056 -1024 32 ) (-1056 -1024 -64 ) +4 3058 3419 (-1056 -1024 32 ) (-2048 -1024 32 ) (-2048 -1024 -64 ) (-1056 -1024 -64 ) +4 3058 3063 (-2048 -1024 -1284 ) (-2048 -1024 32 ) (-2048 -704 32 ) (-2048 -704 -1284 ) +4 3059 3061 (-2048 1024 -1284 ) (-2048 1024 5542.669922 ) (-3072 1024 5542.669922 ) (-3072 1024 -1284 ) +4 3059 3060 (-3072 1024 -1284 ) (-3072 1024 5542.669922 ) (-3072 2048 5542.669922 ) (-3072 2048 -1284 ) +4 3060 3062 (-3072 1024 -1284 ) (-3072 1024 5542.669922 ) (-4080 1024 5542.669922 ) (-4080 1024 -1284 ) +4 3061 3063 (-2048 0 -1284 ) (-2048 0 5542.669922 ) (-3072 0 5542.669922 ) (-3072 0 -1284 ) +4 3061 3062 (-3072 0 -1284 ) (-3072 0 5542.669922 ) (-3072 1024 5542.669922 ) (-3072 1024 -1284 ) +4 3062 3064 (-4080 0 -1284 ) (-3072 0 -1284 ) (-3072 0 5542.669922 ) (-4080 0 5542.669922 ) +4 3063 3941 (-2048 -1024 -1284 ) (-2048 -1024 -64 ) (-2112 -1024 -64 ) (-2112 -1024 -1284 ) +4 3063 3944 (-2112 -1024 -64 ) (-3072 -1024 -64 ) (-3072 -1024 -1284 ) (-2112 -1024 -1284 ) +4 3063 3940 (-2048 -1024 -64 ) (-2048 -1024 5542.669922 ) (-3072 -1024 5542.669922 ) (-3072 -1024 -64 ) +4 3063 3064 (-3072 0 5542.669922 ) (-3072 0 -1284 ) (-3072 -1024 -1284 ) (-3072 -1024 5542.669922 ) +4 3064 3945 (-3072 -1024 -1284 ) (-3072 -1024 5542.669922 ) (-4080 -1024 5542.669922 ) (-4080 -1024 -1284 ) +4 3065 3476 (720 -2048 5542.669922 ) (704 -2048 5542.669922 ) (704 -2048 863.993164 ) (720 -2048 833.993164 ) +4 3065 3466 (1008 -2048 5542.669922 ) (720 -2048 5542.669922 ) (720 -2048 833.993164 ) (1008 -2048 293.992676 ) +5 3065 3435 (1024 -2048 264 ) (1024 -2048 5542.669922 ) (1008 -2048 5542.669922 ) (1008 -2048 293.992676 ) (1023.996094 -2048 264 ) +4 3065 3143 (704 -2048 863.992798 ) (704 -2048 5542.669922 ) (704 -1920 5542.669922 ) (704 -1920 863.992859 ) +3 3065 3132 (704 -1024 1943.995850 ) (704 -1024 863.993164 ) (704 -1600.001709 863.992981 ) +5 3065 3131 (704 -1920 5542.669922 ) (704 -1024 5542.669922 ) (704 -1024 1943.995850 ) (704 -1600.001709 863.992981 ) (704 -1920 863.992859 ) +3 3065 3077 (960 -1856.003906 383.988983 ) (895.997925 -1792.001831 503.992798 ) (960 -1728 383.988983 ) +5 3065 3076 (895.997925 -1792.001831 503.992798 ) (704 -1600.004028 863.988831 ) (704 -1536 863.988831 ) (960 -1536 383.988953 ) (960 -1728 383.988983 ) +4 3065 3075 (1023.994141 -1792.005737 264 ) (1023.994141 -1919.998047 264 ) (960 -1856.003906 383.988983 ) (960 -1728.011597 383.988983 ) +4 3065 3074 (1023.994141 -1919.998047 264 ) (1023.994141 -2048 264 ) (704 -2048 863.988831 ) (704 -1600.004028 863.988831 ) +4 3065 3072 (1023.994141 -1392 264 ) (1023.994141 -1472 264 ) (1015.460815 -1480.533081 280 ) (1015.460815 -1392 280 ) +4 3065 3070 (1023.994141 -1024 264 ) (1023.994141 -1392 264 ) (1015.460815 -1392 280 ) (1015.460815 -1024 280 ) +5 3065 3066 (959.993896 -1536 384 ) (704 -1536 863.988831 ) (704 -1024 863.988831 ) (1015.460815 -1024 280 ) (1015.460815 -1480.533081 280 ) +3 3066 3136 (704 -1392 294 ) (704 -1439.995728 383.992188 ) (704 -1392 383.992188 ) +5 3066 3133 (704 -1024 383.992188 ) (704 -1024 280 ) (704 -1384.533203 280 ) (704 -1392 294 ) (704 -1392 383.992188 ) +5 3066 3132 (704 -1536 863.992981 ) (704 -1024 863.993164 ) (704 -1024 383.992188 ) (704 -1439.995728 383.992188 ) (704 -1536 564 ) +4 3066 3076 (959.995850 -1536 384 ) (704 -1536 863.992798 ) (704 -1536 564 ) (896 -1536 384 ) +4 3066 3072 (896 -1480.533081 280 ) (718.933594 -1392 280 ) (1015.460938 -1392 280 ) (1015.460938 -1480.533081 280 ) +4 3066 3071 (800 -1024 280 ) (811.636475 -1024 280 ) (768 -1184 280 ) (768 -1152 280 ) +5 3066 3070 (811.636475 -1024 280 ) (1015.460938 -1024 280 ) (1015.460938 -1392 280 ) (720 -1392 280 ) (720 -1360 280 ) +4 3066 3069 (704 -1360 280 ) (704 -1344 280 ) (752 -1152.004395 280 ) (752 -1184.003784 280 ) +3 3066 3068 (704 -1344 280 ) (704 -1024 280 ) (784 -1024 280 ) +3 3066 3067 (896 -1536 384.003937 ) (704 -1536 564.003906 ) (704 -1440 384.003815 ) +4 3067 3132 (704 -1536 383.992188 ) (704 -1536 564 ) (704 -1440 384 ) (704 -1440 383.992218 ) +4 3067 3076 (704 -1536 564 ) (704 -1536 280 ) (896 -1536 280 ) (896 -1536 384 ) +3 3067 3073 (896 -1536 280 ) (704 -1536 280 ) (704 -1440 280 ) +4 3068 3134 (704 -1024 280 ) (704 -1024 264 ) (704 -1322.666992 264 ) (704 -1344 280 ) +3 3068 3079 (704 -1322.666992 264 ) (704 -1024 264 ) (778.666748 -1024 264 ) +4 3068 3069 (704 -1322.658936 264 ) (746.666382 -1151.993652 264 ) (752 -1151.996094 280 ) (704 -1343.992188 280 ) +4 3069 3134 (704 -1322.666992 264 ) (704 -1340.444946 264 ) (704 -1360 280 ) (704 -1344 280 ) +4 3069 3080 (704 -1340.444946 264 ) (704 -1322.666992 264 ) (746.666321 -1152.001709 264 ) (746.666382 -1184.001587 264 ) +6 3070 3081 (816.969788 -1024 264 ) (1024 -1024 264 ) (1024 -1392 264 ) (752 -1392 264 ) (725.333252 -1378.666626 264 ) (725.333252 -1360 264 ) +5 3070 3072 (736 -1392 264 ) (1023.996094 -1392 264 ) (1015.460938 -1392 280 ) (720 -1392 280 ) (720.484802 -1392 278.545502 ) +4 3070 3071 (768 -1183.996216 280 ) (811.635315 -1024 280 ) (816.969116 -1024 264 ) (773.333313 -1183.998169 264 ) +4 3071 3082 (805.333374 -1024 264 ) (816.969788 -1024 264 ) (773.333313 -1184 264 ) (773.333313 -1152 264 ) +4 3072 3083 (752 -1392 264 ) (1024 -1392 264 ) (1024 -1464 264 ) (896 -1464 264 ) +4 3073 3088 (704 -1536 264 ) (704 -1496 264 ) (816 -1496 264 ) (896 -1536 264 ) +4 3073 3085 (704 -1496 264 ) (704 -1464 264 ) (752 -1464 264 ) (816 -1496 264 ) +3 3073 3084 (704 -1464 264 ) (704 -1440 264 ) (752 -1464 264 ) +4 3073 3076 (704 -1536 264 ) (896 -1536 264 ) (896 -1536 280 ) (704 -1536 280 ) +4 3074 3476 (704 -2048 863.993164 ) (704 -2048 264 ) (720 -2048 264 ) (720 -2048 833.993164 ) +4 3074 3466 (720 -2048 264 ) (1008 -2048 264 ) (1008 -2048 293.992706 ) (720 -2048 833.993164 ) +3 3074 3435 (1008 -2048 264 ) (1023.996094 -2048 264 ) (1008 -2048 293.992706 ) +4 3074 3145 (704 -2016 304 ) (704 -1920 304 ) (704 -1920 264 ) (704 -1996 264 ) +4 3074 3144 (704 -2032 352 ) (704 -1984 304 ) (704 -2016 304 ) (704 -2032 336 ) +5 3074 3143 (704 -2048 368 ) (704 -2048 863.992798 ) (704 -1920 863.992859 ) (704 -1920 304 ) (704 -1984 304 ) +4 3074 3131 (704 -1920 863.992859 ) (704 -1600.001831 863.992981 ) (704 -1919.998047 264 ) (704 -1920 264 ) +4 3074 3090 (912.002014 -1919.998047 264 ) (1024 -1919.998047 264 ) (1024 -1928.003784 264 ) (903.996155 -1928.003784 264 ) +4 3074 3089 (704 -2048 264 ) (704 -1928.003784 264 ) (1024 -1928.003784 264 ) (1024 -2048 264 ) +5 3074 3078 (959.996094 -1856 383.997955 ) (960 -1856.003906 383.990631 ) (960 -1919.998901 264 ) (896.001038 -1919.998901 264 ) (832.002136 -1856 383.997955 ) +3 3074 3077 (895.997925 -1792.001831 503.994507 ) (959.996094 -1856 383.997955 ) (832 -1856 383.997955 ) +4 3074 3076 (704 -1600.003906 863.990723 ) (895.997925 -1792.001831 503.994507 ) (832 -1856 383.997955 ) (704 -1856 383.997955 ) +3 3074 3075 (960 -1856.003906 383.990631 ) (1023.994995 -1919.998901 264 ) (960 -1919.998901 264 ) +4 3075 3090 (1024 -1896 264 ) (1024 -1919.998047 264 ) (960 -1919.998047 264 ) (960 -1896 264 ) +4 3075 3087 (1000 -1896 264 ) (960 -1896 264 ) (960 -1872 264 ) (1000 -1832 264 ) +4 3075 3086 (1024 -1808 264 ) (1024 -1896 264 ) (1000 -1896 264 ) (1000 -1832 264 ) +3 3075 3078 (960 -1919.996094 264 ) (960 -1856 383.992188 ) (960 -1856 264 ) +3 3075 3077 (960 -1856 383.992188 ) (960 -1728.007935 383.992493 ) (960 -1856 264 ) +5 3076 3132 (704 -1600.001831 863.992981 ) (704 -1536 863.992981 ) (704 -1536 383.992188 ) (704 -1856 383.992188 ) (704 -1856 383.996338 ) +5 3076 3088 (704 -1856 264 ) (704 -1536 264 ) (960 -1536 264 ) (960 -1728 264 ) (832 -1856 264 ) +3 3076 3077 (832 -1856 384 ) (959.995911 -1728.004150 384 ) (895.998108 -1792.001953 503.996429 ) +4 3077 3078 (960 -1856 264 ) (960 -1856 383.992188 ) (959.996155 -1856 384 ) (832 -1856 384 ) +4 3078 3090 (960 -1896 264 ) (960 -1919.998047 264 ) (912.002075 -1919.998047 264 ) (936 -1896 264 ) +3 3078 3087 (960 -1872 264 ) (960 -1896 264 ) (936 -1896 264 ) +4 3079 3137 (704 -1322.666992 264 ) (704 -1024 264 ) (704 -1024 256 ) (704 -1312 256 ) +4 3079 3093 (704 -1140 256 ) (704 -1024 256 ) (776 -1024 256 ) (744.470642 -1150.117676 256 ) +3 3079 3091 (704 -1312 256 ) (704 -1140 256 ) (744.470642 -1150.117676 256 ) +4 3079 3080 (704 -1311.997314 256 ) (744 -1151.997314 256 ) (746.666382 -1151.998657 264 ) (704 -1322.664063 264 ) +4 3080 3137 (704 -1340.444946 264 ) (704 -1322.666992 264 ) (704 -1312 256 ) (704 -1330.666992 256 ) +3 3080 3123 (704 -1330.666992 256 ) (704 -1327 256 ) (705 -1327 256 ) +5 3080 3091 (704 -1327 256 ) (704 -1312 256 ) (744 -1152 256 ) (744 -1184 256 ) (705 -1327 256 ) +6 3081 3122 (1024 -1327 256 ) (1024 -1392 256 ) (736 -1392 256 ) (728 -1388 256 ) (728 -1360 256 ) (737 -1327 256 ) +4 3081 3104 (1024 -1294 256 ) (1024 -1327 256 ) (737 -1327 256 ) (746 -1294 256 ) +4 3081 3103 (1024 -1250 256 ) (1024 -1294 256 ) (746 -1294 256 ) (758 -1250 256 ) +4 3081 3102 (1024 -1217 256 ) (1024 -1250 256 ) (758 -1250 256 ) (767 -1217 256 ) +5 3081 3099 (880 -1184 256 ) (880 -1217 256 ) (767 -1217 256 ) (767.799744 -1214.067993 256 ) (824.153564 -1170.038330 256 ) +3 3081 3096 (767.799744 -1214.067993 256 ) (782.638428 -1159.659546 256 ) (824.153564 -1170.038330 256 ) +4 3081 3095 (896 -1204 256 ) (896 -1217 256 ) (880 -1217 256 ) (880 -1200 256 ) +4 3081 3094 (896 -1024 256 ) (1024 -1024 256 ) (1024 -1217 256 ) (896 -1217 256 ) +4 3081 3083 (736 -1392 256 ) (1024 -1392 256 ) (1024 -1392 264 ) (752 -1392 264 ) +4 3081 3082 (819.636719 -1024 256 ) (776 -1184.002075 256 ) (773.333313 -1183.998535 264 ) (816.969299 -1024 264 ) +3 3082 3096 (782.638367 -1159.659546 256 ) (776 -1184 256 ) (776 -1158 256 ) +4 3083 3122 (736 -1392 256 ) (1024 -1392 256 ) (1024 -1472 256 ) (896 -1472 256 ) +4 3084 3141 (704 -1464 264 ) (704 -1408 264 ) (704 -1408 256 ) (704 -1472 256 ) +4 3084 3085 (704 -1472 256 ) (848.675293 -1472 256 ) (832.900452 -1464 264 ) (704 -1464 264 ) +4 3085 3141 (704 -1496 264 ) (704 -1464 264 ) (704 -1472 256 ) (704 -1496 256 ) +4 3085 3088 (704 -1496 256 ) (896 -1496 256 ) (896 -1496 264 ) (704 -1496 264 ) +4 3086 3125 (1024 -1792 256 ) (1024 -1882 256 ) (1000 -1882 256 ) (1000 -1816 256 ) +4 3086 3126 (1024 -1882 256 ) (1024 -1896 256 ) (1000 -1896 256 ) (1000 -1882 256 ) +4 3086 3090 (1000 -1896 256 ) (1024 -1896 256 ) (1024 -1896 264 ) (1000 -1896 264 ) +4 3086 3087 (1000 -1816 256 ) (1000 -1896 256 ) (1000 -1896 264 ) (1000 -1832 264 ) +3 3087 3125 (1000 -1816 256 ) (1000 -1882 256 ) (934 -1882 256 ) +4 3087 3126 (1000 -1882 256 ) (1000 -1896 256 ) (920 -1896 256 ) (934 -1882 256 ) +4 3087 3090 (920 -1896 256 ) (1000 -1896 256 ) (1000 -1896 264 ) (936 -1896 264 ) +4 3088 3141 (704 -1896 264 ) (704 -1496 264 ) (704 -1496 256 ) (704 -1896 256 ) +4 3089 3476 (720 -2048 264 ) (704 -2048 264 ) (704 -2048 256 ) (720 -2048 256 ) +4 3089 3466 (1008 -2048 264 ) (720 -2048 264 ) (720 -2048 256 ) (1008 -2048 256 ) +4 3089 3435 (1024 -2048 256 ) (1024 -2048 264 ) (1008 -2048 264 ) (1008 -2048 256 ) +4 3089 3145 (704 -1996 264 ) (704 -1928.003784 264 ) (704 -1920.003784 256 ) (704 -1992 256 ) +4 3089 3130 (720 -2048 256 ) (704 -2048 256 ) (704 -1984 256 ) (720 -1984 256 ) +4 3089 3129 (1024 -2048 256 ) (720 -2048 256 ) (720 -1984 256 ) (1024 -1984 256 ) +4 3089 3128 (704 -1984 256 ) (704 -1920.003784 256 ) (720 -1920.003784 256 ) (720 -1984 256 ) +4 3089 3127 (720 -1920.003784 256 ) (1024 -1920.003784 256 ) (1024 -1984 256 ) (720 -1984 256 ) +4 3089 3090 (1024 -1919.998047 256 ) (896.002136 -1919.998047 256 ) (904.002014 -1927.998047 264 ) (1024 -1927.998047 264 ) +4 3090 3126 (920 -1896 256 ) (1024 -1896 256 ) (1024 -1920.003784 256 ) (895.996155 -1920.003784 256 ) +4 3091 3148 (704 -1327 175.884995 ) (704 -1327 256 ) (704 -1312 256 ) (704 -1312 175.884995 ) +4 3091 3147 (704 -1140 64 ) (704 -1312 64 ) (704 -1312 256 ) (704 -1140 256 ) +4 3091 3123 (715 -1327 256 ) (704 -1327 256 ) (704 -1327 64 ) (715 -1327 64 ) +6 3091 3121 (715 -1327 177 ) (715 -1327 64 ) (745 -1217 64 ) (745 -1217 177 ) (744.270386 -1219.675659 180 ) (715.729797 -1324.324219 180 ) +4 3091 3120 (715.729797 -1324.324219 180 ) (744.270386 -1219.675659 180 ) (743.783875 -1221.459473 182 ) (716.216248 -1322.540527 182 ) +3 3091 3118 (716.216248 -1322.540527 182 ) (724 -1294 182 ) (724 -1294 214 ) +4 3091 3117 (724 -1294 182 ) (736 -1250 182 ) (736 -1250 218 ) (724 -1294 218 ) +3 3091 3114 (736 -1250 182 ) (743.783936 -1221.459473 182 ) (736 -1250 214 ) +4 3091 3093 (752 -1152 64 ) (704 -1140 64 ) (704 -1140 256 ) (752 -1152 256 ) +4 3092 3098 (761.440002 -1156.719971 64 ) (762.042542 -1154.510620 64 ) (762.042725 -1154.510742 256 ) (761.440125 -1156.720215 256 ) +4 3093 3147 (704 -1024 64 ) (704 -1140 64 ) (704 -1140 256 ) (704 -1024 256 ) +4 3094 3220 (896 -1024 64 ) (1024 -1024 64 ) (1024 -1152 64 ) (896 -1152 64 ) +4 3094 3107 (896 -1217 64 ) (1024 -1217 64 ) (1024 -1217 186 ) (896 -1217 186 ) +4 3094 3105 (1024 -1217 186 ) (1024 -1217 218 ) (896 -1217 218 ) (896 -1217 186 ) +4 3094 3102 (1024 -1217 218 ) (1024 -1217 256 ) (896 -1217 256 ) (896 -1217 218 ) +4 3094 3095 (896 -1204 64 ) (896 -1217 64 ) (896 -1217 256 ) (896 -1204 256 ) +4 3095 3107 (880 -1217 64 ) (896 -1217 64 ) (896 -1217 186 ) (880 -1217 186 ) +4 3095 3105 (896 -1217 186 ) (896 -1217 218 ) (880 -1217 218 ) (880 -1217 186 ) +4 3095 3102 (896 -1217 218 ) (896 -1217 256 ) (880 -1217 256 ) (880 -1217 218 ) +4 3095 3100 (880 -1200 64 ) (880 -1217 64 ) (880 -1217 186 ) (880 -1200 186 ) +4 3095 3099 (880 -1217 186 ) (880 -1217 256 ) (880 -1200 256 ) (880 -1200 186 ) +4 3096 3110 (764.047119 -1217 177 ) (764.047119 -1217 186 ) (763.250000 -1217 186 ) (763.250000 -1217 177 ) +4 3096 3109 (763.250000 -1217 64 ) (764.047119 -1217 64 ) (764.047119 -1217 177 ) (763.250000 -1217 177 ) +4 3096 3105 (764.047119 -1217 186 ) (764.047119 -1217 218 ) (763.250000 -1217 218 ) (763.250000 -1217 186 ) +4 3096 3102 (764.047119 -1217 218 ) (764.047119 -1217 256 ) (763.250000 -1217 256 ) (763.250000 -1217 218 ) +4 3096 3101 (823.344177 -1170.668945 64 ) (824.150391 -1170.039063 64 ) (824.150391 -1170.039063 186 ) (823.344177 -1170.668945 186 ) +4 3096 3099 (764.044983 -1217 256 ) (764.044983 -1217 186 ) (824.150391 -1170.039063 186 ) (824.150391 -1170.039063 256 ) +4 3096 3098 (768.326355 -1156.081787 256 ) (768.326355 -1156.081787 64 ) (768 -1160 64 ) (768 -1160 256 ) +4 3096 3097 (766 -1184 64 ) (763.249939 -1217 64 ) (763.249939 -1217 256 ) (766 -1184 256 ) +4 3097 3110 (763.250000 -1217 177 ) (763.250000 -1217 186 ) (757 -1217 186 ) (757 -1217 177 ) +4 3097 3109 (757 -1217 64 ) (763.250000 -1217 64 ) (763.250000 -1217 177 ) (757 -1217 177 ) +4 3097 3105 (763.250000 -1217 186 ) (763.250000 -1217 218 ) (757 -1217 218 ) (757 -1217 186 ) +4 3097 3102 (763.250000 -1217 218 ) (763.250000 -1217 256 ) (757 -1217 256 ) (757 -1217 218 ) +4 3099 3105 (880 -1217 186 ) (880 -1217 218 ) (764.047119 -1217 218 ) (764.047119 -1217 186 ) +4 3099 3102 (880 -1217 218 ) (880 -1217 256 ) (764.047119 -1217 256 ) (764.047119 -1217 218 ) +4 3099 3101 (823.345337 -1170.670410 186 ) (824.148438 -1170.042969 186 ) (829.067932 -1171.272827 186 ) (825.807983 -1173.819946 186 ) +4 3099 3100 (829.067932 -1171.272827 186 ) (880 -1184.005859 186 ) (880 -1217 186 ) (770.541809 -1217 186 ) +4 3100 3107 (770.541870 -1217 64 ) (880 -1217 64 ) (880 -1217 186 ) (770.541870 -1217 186 ) +4 3100 3101 (825.807251 -1173.818970 186 ) (829.070313 -1171.269531 186 ) (829.070313 -1171.269531 64 ) (825.807251 -1173.818970 64 ) +4 3102 3105 (757 -1217 218 ) (1024 -1217 218 ) (1024 -1250 218 ) (748 -1250 218 ) +4 3102 3103 (748 -1250 218 ) (1024 -1250 218 ) (1024 -1250 256 ) (748 -1250 256 ) +4 3103 3111 (748 -1250 218 ) (1024 -1250 218 ) (1024 -1294 218 ) (736 -1294 218 ) +4 3103 3104 (736 -1294 218 ) (1024 -1294 218 ) (1024 -1294 256 ) (736 -1294 256 ) +4 3104 3122 (1024 -1327 256 ) (727.006470 -1327 256 ) (726.998718 -1327 218 ) (1024 -1327 218 ) +4 3104 3112 (1024 -1327 218 ) (726.998718 -1327 218 ) (735.998718 -1294 218 ) (1024 -1294 218 ) +4 3105 3111 (748 -1250 186 ) (1024 -1250 186 ) (1024 -1250 218 ) (748 -1250 218 ) +3 3105 3110 (755.091797 -1223.996948 186 ) (757 -1217 186 ) (764.047180 -1217 186 ) +3 3105 3108 (753.333069 -1230.445435 186 ) (754.636963 -1225.664551 186 ) (756.463013 -1228 186 ) +5 3105 3107 (1024 -1250 186 ) (748 -1250 186 ) (753.333069 -1230.445435 186 ) (770.541931 -1217 186 ) (1024 -1217 186 ) +3 3105 3106 (754.812744 -1225.026978 186 ) (748.001953 -1250 186 ) (748.001953 -1250 214 ) +3 3106 3115 (751.803284 -1225.026978 186 ) (744.993347 -1250 186 ) (744.951477 -1250 214 ) +4 3106 3111 (744.947571 -1250 214 ) (744.989441 -1250 186 ) (748 -1250 186 ) (748 -1250 214 ) +5 3106 3108 (749.505249 -1233.436157 186 ) (751.798401 -1225.026978 186 ) (754.138428 -1225.026978 186 ) (754.636902 -1225.664551 186 ) (753.333008 -1230.445557 186 ) +4 3106 3107 (748 -1250 186 ) (744.988281 -1250 186 ) (749.505249 -1233.436157 186 ) (753.333008 -1230.445557 186 ) +4 3107 3121 (749.743347 -1233.250244 64 ) (745.175781 -1250 64 ) (745.002319 -1250 180 ) (749.522888 -1233.422363 180 ) +4 3107 3115 (745 -1250 182 ) (744.993347 -1250 186 ) (749.511475 -1233.431274 186 ) (749.519104 -1233.425293 182 ) +4 3107 3111 (744.989441 -1250 186 ) (745.171875 -1250 64 ) (1024 -1250 64 ) (1024 -1250 186 ) +4 3107 3108 (749.742004 -1233.250732 64 ) (749.510193 -1233.431885 186 ) (756.462830 -1228 186 ) (756.462769 -1228 64 ) +4 3108 3121 (752.542358 -1222.985718 64 ) (749.743347 -1233.250244 64 ) (749.522888 -1233.422363 180 ) (752.413757 -1222.821289 180 ) +5 3108 3115 (749.519104 -1233.425293 182 ) (749.511475 -1233.431274 186 ) (751.803284 -1225.027100 186 ) (752.409851 -1222.816284 183.521240 ) (752.411560 -1222.818481 182 ) +4 3108 3109 (753.997070 -1224.852295 64 ) (752.541504 -1222.993042 64 ) (752.408997 -1222.823853 183.529648 ) (753.997009 -1224.852295 185.803970 ) +5 3109 3121 (754.005676 -1217 177 ) (754.174622 -1217 64 ) (752.542358 -1222.985718 64 ) (752.413757 -1222.821289 180 ) (753.271545 -1219.675659 180 ) +3 3109 3115 (752.411560 -1222.818481 182 ) (752.409851 -1222.816284 183.521240 ) (752.782104 -1221.459473 182 ) +3 3109 3110 (755.091797 -1223.996948 184.848892 ) (764.047119 -1217 177.003143 ) (757 -1217 177.003677 ) +4 3111 3121 (745.002319 -1250 180 ) (745.175781 -1250 64 ) (733.177368 -1294 64 ) (733.003906 -1294 180 ) +4 3111 3116 (732.947083 -1294 218 ) (744.945496 -1250 218 ) (745 -1250 182 ) (733 -1294 182 ) +4 3111 3113 (732.953430 -1294 214 ) (733.177734 -1294 64 ) (735.967712 -1294 64 ) (735.997864 -1294 214 ) +4 3111 3112 (735.967712 -1294 64 ) (1024 -1294 64 ) (1024 -1294 218 ) (735.998657 -1294 218 ) +4 3112 3122 (726.967651 -1327 64 ) (1024 -1327 64 ) (1024 -1327 218 ) (726.998657 -1327 218 ) +4 3112 3113 (735.996765 -1294 214 ) (735.966553 -1294 64 ) (726.966980 -1327 64 ) (726.989746 -1327 177 ) +5 3113 3121 (724.178528 -1327 64 ) (724.009583 -1327 177 ) (724.734741 -1324.324341 180 ) (733.003906 -1294 180 ) (733.177368 -1294 64 ) +3 3113 3119 (725.218201 -1322.540527 182 ) (732.953064 -1294 214 ) (733 -1294 182 ) +4 3114 3120 (736 -1250 182 ) (743.783813 -1221.459473 182 ) (746.783875 -1221.459473 182 ) (739 -1250 182 ) +4 3114 3117 (736 -1250 182 ) (740 -1250 182 ) (739.997986 -1250 214 ) (736 -1250 214 ) +4 3115 3116 (744 -1250 182 ) (745 -1250 182 ) (744.952148 -1250 214 ) (744 -1250 214 ) +4 3116 3119 (732 -1294 182 ) (733 -1294 182 ) (732.952148 -1294 214 ) (732 -1294 214 ) +4 3117 3120 (724 -1294 182 ) (736 -1250 182 ) (739 -1250 182 ) (727.001343 -1294 182 ) +4 3117 3118 (724 -1294 182 ) (728 -1294 182 ) (727.997620 -1294 214 ) (724 -1294 214 ) +4 3118 3120 (716.216248 -1322.540527 182 ) (724 -1294 182 ) (727.001282 -1294 182 ) (719.218079 -1322.540527 182 ) +4 3120 3121 (715.729797 -1324.324219 180 ) (744.270264 -1219.675659 180 ) (747.270325 -1219.675659 180 ) (718.731689 -1324.324219 180 ) +4 3123 3148 (704 -1367.333618 175.884995 ) (704 -1367.333618 256 ) (704 -1327 256 ) (704 -1327 175.884995 ) +4 3123 3124 (706 -1359.995239 256 ) (704 -1367.330566 256 ) (704 -1367.330566 64 ) (706 -1359.995239 64 ) +4 3124 3148 (704 -1376 175.884995 ) (704 -1376 256 ) (704 -1367.333618 256 ) (704 -1367.333618 175.884995 ) +4 3125 3126 (934.005859 -1882 256 ) (934.005859 -1882 90 ) (1024 -1882 90 ) (1024 -1882 256 ) +4 3126 3127 (1024 -1920 256 ) (896 -1920 256 ) (896 -1920 64 ) (1024 -1920 64 ) +4 3127 3129 (1024 -1984 256 ) (720 -1984 256 ) (720 -1984 64 ) (1024 -1984 64 ) +4 3127 3128 (720 -1920 256 ) (720 -1920 80 ) (720 -1984 80 ) (720 -1984 256 ) +4 3128 3158 (704 -1984 224 ) (704 -1984 240 ) (704 -1920 240 ) (704 -1920 224 ) +4 3128 3156 (704 -1984 240 ) (704 -1984 256 ) (704 -1920 256 ) (704 -1920 240 ) +4 3128 3130 (720 -1984 256 ) (704 -1984 256 ) (704 -1984 80 ) (720 -1984 80 ) +4 3129 3467 (720 -2048 228 ) (720 -2048 64 ) (1008 -2048 64 ) (1008 -2048 228 ) +4 3129 3466 (1008 -2048 256 ) (720 -2048 256 ) (720 -2048 228 ) (1008 -2048 228 ) +4 3129 3435 (1024 -2048 64 ) (1024 -2048 256 ) (1008 -2048 256 ) (1008 -2048 64 ) +4 3129 3130 (720 -1984 256 ) (720 -1984 80 ) (720 -2048 80 ) (720 -2048 256 ) +4 3130 3478 (708 -2048 256 ) (704 -2048 256 ) (704 -2048 80 ) (708 -2048 80 ) +4 3130 3477 (720 -2048 256 ) (708 -2048 256 ) (708 -2048 80 ) (720 -2048 80 ) +4 3130 3160 (704 -2048 80 ) (704 -2048 240 ) (704 -1984 240 ) (704 -1984 80 ) +3 3130 3156 (704 -1992 256 ) (704 -1984 256 ) (704 -1984 240 ) +5 3131 3169 (640 -1472 1103.996094 ) (640 -1919.998047 264 ) (640 -1920 264 ) (640 -1920 5542.669922 ) (640 -1472 5542.669922 ) +4 3131 3161 (640 -1024 5542.669922 ) (640 -1024 1943.995850 ) (640 -1472 1103.996094 ) (640 -1472 5542.669922 ) +4 3131 3146 (640 -1920 5542.669922 ) (640 -1920 264 ) (688 -1920 264 ) (688 -1920 5542.669922 ) +4 3131 3145 (688 -1920 264 ) (704 -1920 264 ) (704 -1920 304 ) (688 -1920 304 ) +4 3131 3143 (704 -1920 304 ) (704 -1920 5542.669922 ) (688 -1920 5542.669922 ) (688 -1920 304 ) +5 3131 3132 (704 -1024 1943.996094 ) (704 -1856.003174 383.992188 ) (640.004150 -1920 264 ) (640 -1920 264 ) (640 -1024 1943.998657 ) +3 3132 3169 (640 -1472 264 ) (640 -1919.998047 264 ) (640 -1472 1103.996094 ) +4 3132 3161 (640 -1024 1943.995850 ) (640 -1024 264 ) (640 -1472 264 ) (640 -1472 1103.996094 ) +4 3132 3136 (640.003906 -1439.996094 264 ) (640.003906 -1392 264 ) (704 -1392 383.992188 ) (704 -1439.995728 383.992188 ) +4 3132 3134 (640.003906 -1392 264 ) (640.003906 -1024 264 ) (648.537292 -1024 280 ) (648.537292 -1392 280 ) +4 3132 3133 (648.537292 -1024 280 ) (704 -1024 383.992188 ) (704 -1392 383.992188 ) (648.537292 -1392 280 ) +4 3133 3136 (704 -1392 383.992859 ) (648.537109 -1392 280 ) (696.533203 -1392 280 ) (704 -1392 294 ) +4 3133 3135 (696.533203 -1392 280 ) (695.272827 -1392 280 ) (704 -1360 280 ) (704 -1384.533203 280 ) +5 3133 3134 (695.272827 -1392 280 ) (648.535156 -1392 280 ) (648.535156 -1024 280 ) (704 -1024 280 ) (704 -1360 280 ) +4 3134 3142 (640 -1392 264 ) (640 -1024 264 ) (656 -1024 264 ) (656 -1392 264 ) +4 3134 3139 (672 -1392 264 ) (656 -1392 264 ) (656 -1328 264 ) (696 -1368 264 ) +5 3134 3137 (656 -1024 264 ) (704 -1024 264 ) (704 -1340.444824 264 ) (696.380981 -1368.381104 264 ) (656 -1328 264 ) +5 3134 3136 (648.537109 -1392 280 ) (640.003784 -1392 264 ) (688 -1392 264 ) (693.171997 -1392 273.697693 ) (695.272827 -1392 280 ) +5 3134 3135 (693.176147 -1392 273.707397 ) (690.668396 -1389.330444 264 ) (698.666321 -1360.004639 264 ) (704 -1360.003906 280 ) (695.273438 -1392 280 ) +3 3135 3138 (696.381042 -1368.381104 264 ) (698.666382 -1360.001465 264 ) (698.666382 -1370.666382 264 ) +3 3135 3136 (693.171997 -1392 273.697693 ) (696.533203 -1392 280 ) (695.272827 -1392 280 ) +4 3136 3142 (640 -1424 264 ) (640 -1392 264 ) (656 -1392 264 ) (656 -1408 264 ) +3 3136 3140 (656 -1392 264 ) (672 -1392 264 ) (656 -1408 264 ) +5 3137 3148 (704 -1312 256 ) (704 -1330.666870 256 ) (694.285767 -1366.285767 256 ) (656 -1328 256 ) (656 -1312 256 ) +4 3137 3147 (656 -1024 256 ) (704 -1024 256 ) (704 -1312 256 ) (656 -1312 256 ) +4 3137 3142 (656 -1024 256 ) (656 -1328 256 ) (656 -1328 264 ) (656 -1024 264 ) +5 3137 3139 (656 -1328.001953 264 ) (656 -1328.001953 256 ) (694.285339 -1366.287231 256 ) (696.301392 -1368.303345 263.697540 ) (695.998901 -1368 264 ) +4 3137 3138 (696.382263 -1368.376343 264 ) (694.287048 -1366.281128 256 ) (696 -1360 256 ) (698.666321 -1360.001587 264 ) +3 3138 3148 (696 -1368 256 ) (694.285767 -1366.285767 256 ) (696 -1360 256 ) +4 3138 3139 (694.285339 -1366.287231 256 ) (696 -1368.001953 256 ) (698 -1370.001465 262 ) (696.301392 -1368.303345 263.697540 ) +5 3139 3148 (688 -1392 256 ) (656 -1392 256 ) (656 -1328 256 ) (696 -1368 256 ) (696 -1384 256 ) +4 3139 3142 (656 -1328 256 ) (656 -1392 256 ) (656 -1392 264 ) (656 -1328 264 ) +4 3139 3140 (656 -1392 264 ) (656 -1392 256 ) (688 -1392 256 ) (672 -1392 264 ) +3 3140 3148 (656 -1424 256 ) (656 -1392 256 ) (688 -1392 256 ) +4 3140 3142 (656 -1392 256 ) (656 -1424 256 ) (656 -1408 264 ) (656 -1392 264 ) +4 3141 3146 (656 -1920 256 ) (688 -1920 256 ) (688 -1920 264 ) (656 -1920 264 ) +4 3141 3145 (688 -1920 256 ) (704 -1920 256 ) (704 -1920 264 ) (688 -1920 264 ) +4 3142 3162 (640 -1024 264 ) (640 -1024 256 ) (640 -1440 256 ) (640 -1424 264 ) +4 3142 3148 (640 -1440 256 ) (640 -1312 256 ) (656 -1312 256 ) (656 -1424 256 ) +4 3142 3147 (640 -1312 256 ) (640 -1024 256 ) (656 -1024 256 ) (656 -1312 256 ) +4 3143 3485 (688 -2048 384 ) (688 -2048 368 ) (704 -2048 368 ) (704 -2048 384 ) +4 3143 3483 (688 -2048 5542.669922 ) (688 -2048 384 ) (704 -2048 384 ) (704 -2048 5542.669922 ) +5 3143 3146 (688 -1920 5542.669922 ) (688 -1920 304 ) (688 -1984 304 ) (688 -2048 368 ) (688 -2048 5542.669922 ) +4 3143 3145 (688 -1984 304 ) (688 -1920 304 ) (704 -1920 304 ) (704 -1984 304 ) +4 3143 3144 (688 -1984.001221 304 ) (704 -1984.001221 304 ) (704 -2032 351.998779 ) (688 -2032 351.998962 ) +4 3144 3146 (688 -1984 304 ) (688 -2016 304 ) (688 -2032 336 ) (688 -2032 352 ) +4 3144 3145 (688 -2016 304 ) (688 -1984 304 ) (704 -1984 304 ) (704 -2016 304 ) +4 3145 3156 (688 -1920 256 ) (704 -1920 256 ) (704 -1992 256 ) (688 -1992 256 ) +4 3145 3146 (688 -1920 304 ) (688 -1920 256 ) (688 -1992 256 ) (688 -2016 304 ) +4 3146 3500 (640 -2048 320 ) (640 -2048 304 ) (688 -2048 304 ) (688 -2048 320 ) +4 3146 3497 (640 -2048 352 ) (640 -2048 320 ) (688 -2048 320 ) (688 -2048 352 ) +4 3146 3492 (640 -2048 384 ) (640 -2048 352 ) (688 -2048 352 ) (688 -2048 384 ) +4 3146 3491 (640 -2048 5542.669922 ) (640 -2048 384 ) (688 -2048 384 ) (688 -2048 5542.669922 ) +5 3146 3211 (640 -1952 256 ) (640 -2024 256 ) (640 -2048 304 ) (640 -2048 464 ) (640 -1952 464 ) +4 3146 3210 (640 -2048 464 ) (640 -2048 5542.669922 ) (640 -1952 5542.669922 ) (640 -1952 464 ) +4 3146 3207 (640 -1920 256 ) (640 -1952 256 ) (640 -1952 5542.669922 ) (640 -1920 5542.669922 ) +4 3146 3157 (640 -2024 256 ) (640 -1920 256 ) (688 -1920 256 ) (688 -2024 256 ) +4 3147 3164 (640 -1024 175.884995 ) (640 -1024 64 ) (640 -1312 64 ) (640 -1312 175.884995 ) +4 3147 3162 (640 -1024 256 ) (640 -1024 175.884995 ) (640 -1312 175.884995 ) (640 -1312 256 ) +4 3147 3148 (704 -1312 175.884995 ) (704 -1312 256 ) (640 -1312 256 ) (640 -1312 175.884995 ) +4 3148 3162 (640 -1440 175.884995 ) (640 -1440 256 ) (640 -1312 256 ) (640 -1312 175.884995 ) +4 3149 3151 (652 -1536 128 ) (652 -1564 128 ) (652 -1564 208 ) (652 -1536 208 ) +4 3150 3151 (652 -1572 128 ) (652 -1600 128 ) (652 -1600 208 ) (652 -1572 208 ) +4 3151 3170 (640 -1600 128 ) (640 -1600 208 ) (640 -1536 208 ) (640 -1536 128 ) +7 3152 3170 (640 -1664 64 ) (640 -1728 64 ) (640 -1728 168 ) (640 -1712 176 ) (640 -1696 180 ) (640 -1680 176 ) (640 -1664 168 ) +4 3153 3155 (652 -1792 128 ) (652 -1820 128 ) (652 -1820 208 ) (652 -1792 208 ) +4 3154 3155 (652 -1828 128 ) (652 -1856 128 ) (652 -1856 208 ) (652 -1828 208 ) +4 3155 3170 (640 -1856 128 ) (640 -1856 208 ) (640 -1792 208 ) (640 -1792 128 ) +4 3156 3158 (688 -1920 240 ) (704 -1920 240 ) (704 -1984 240 ) (688 -1984 240 ) +4 3156 3157 (688 -1920 256 ) (688 -1920 240 ) (688 -1984 240 ) (688 -1992 256 ) +4 3157 3215 (640 -1984 256 ) (640 -1952 256 ) (640 -1952 240 ) (640 -1984 240 ) +4 3157 3160 (640 -2016 240 ) (640 -1984 240 ) (688 -1984 240 ) (688 -2016 240 ) +4 3157 3158 (672 -1920 240 ) (688 -1920 240 ) (688 -1984 240 ) (672 -1984 240 ) +4 3157 3159 (640 -1984 240 ) (640 -1920 240 ) (672 -1920 240 ) (672 -1984 240 ) +4 3158 3160 (704 -1984 224 ) (704 -1984 240 ) (672 -1984 240 ) (672 -1984 224 ) +4 3158 3159 (672 -1984 224 ) (672 -1984 240 ) (672 -1920 240 ) (672 -1920 224 ) +4 3159 3227 (640 -1984 64 ) (640 -1920 64 ) (672 -1920 64 ) (672 -1984 64 ) +4 3159 3218 (640 -1952 64 ) (640 -1984 64 ) (640 -1984 224 ) (640 -1952 224 ) +4 3159 3215 (640 -1984 224 ) (640 -1984 240 ) (640 -1952 240 ) (640 -1952 224 ) +4 3159 3160 (672 -1984 240 ) (640 -1984 240 ) (640 -1984 80 ) (672 -1984 80 ) +4 3160 3518 (640 -2048 224 ) (640 -2048 80 ) (688 -2048 80 ) (688 -2048 224 ) +4 3160 3514 (640 -2048 240 ) (640 -2048 224 ) (688 -2048 224 ) (688 -2048 240 ) +4 3160 3489 (688 -2048 80 ) (704 -2048 80 ) (704 -2048 240 ) (688 -2048 240 ) +4 3160 3219 (640 -2048 80 ) (640 -2048 224 ) (640 -1984 224 ) (640 -1984 80 ) +4 3160 3216 (640 -2048 224 ) (640 -2048 240 ) (640 -1984 240 ) (640 -1984 224 ) +4 3161 3272 (0 -1024 5542.669922 ) (0 -1024 264 ) (0 -1472 264 ) (0 -1472 5542.669922 ) +4 3161 3174 (288 -1472 5542.669922 ) (0 -1472 5542.669922 ) (0 -1472 264 ) (288 -1472 264 ) +4 3161 3171 (320 -1472 5542.669922 ) (288 -1472 5542.669922 ) (288 -1472 264 ) (320 -1472 264 ) +4 3161 3169 (640 -1472 264 ) (640 -1472 5542.669922 ) (320 -1472 5542.669922 ) (320 -1472 264 ) +4 3161 3166 (576 -1472 264 ) (0 -1472 264 ) (0 -1024 264 ) (576 -1024 264 ) +3 3161 3163 (632 -1472 264 ) (592 -1472 264 ) (632 -1432 264 ) +5 3161 3162 (592 -1472 264 ) (576 -1472 264 ) (576 -1024 264 ) (640 -1024 264 ) (640 -1424 264 ) +5 3162 3170 (640 -1472 175.884995 ) (640 -1472 240 ) (592 -1472 264 ) (576 -1472 264 ) (576 -1472 175.884995 ) +4 3162 3166 (576 -1472 175.884995 ) (576 -1472 264 ) (576 -1024 264 ) (576 -1024 175.884995 ) +4 3162 3164 (576 -1312 175.884995 ) (576 -1024 175.884995 ) (640 -1024 175.884995 ) (640 -1312 175.884995 ) +4 3162 3165 (640 -1472 175.884995 ) (576 -1472 175.884995 ) (576 -1440 175.884995 ) (640 -1440 175.884995 ) +4 3162 3163 (632 -1432 264 ) (592 -1472 264 ) (640 -1472 240 ) (640 -1440 256 ) +4 3163 3170 (640 -1472 240 ) (640 -1472 256 ) (632 -1472 264 ) (592 -1472 264 ) +4 3164 3167 (576 -1024 64 ) (576 -1312 64 ) (576 -1312 96 ) (576 -1024 96 ) +4 3164 3166 (576 -1312 96 ) (576 -1312 175.884995 ) (576 -1024 175.884995 ) (576 -1024 96 ) +4 3165 3170 (576 -1472 64 ) (640 -1472 64 ) (640 -1472 175.884995 ) (576 -1472 175.884995 ) +4 3165 3167 (576 -1440 64 ) (576 -1472 64 ) (576 -1472 96 ) (576 -1440 96 ) +4 3165 3166 (576 -1472 96 ) (576 -1472 175.884995 ) (576 -1440 175.884995 ) (576 -1440 96 ) +4 3166 3273 (0 -1024 192 ) (0 -1024 96 ) (0 -1472 96 ) (0 -1472 192 ) +4 3166 3272 (0 -1024 264 ) (0 -1024 192 ) (0 -1472 192 ) (0 -1472 264 ) +7 3166 3175 (0 -1472 256 ) (0 -1472 192 ) (128 -1472 192 ) (168 -1472 200 ) (200 -1472 216 ) (216 -1472 232 ) (224 -1472 256 ) +4 3166 3174 (288 -1472 264 ) (0 -1472 264 ) (0 -1472 256 ) (288 -1472 256 ) +4 3166 3171 (320 -1472 264 ) (288 -1472 264 ) (288 -1472 256 ) (320 -1472 256 ) +4 3166 3170 (576 -1472 96 ) (576 -1472 264 ) (320 -1472 264 ) (320 -1472 96 ) +4 3166 3168 (288.001923 -1472 96 ) (0 -1472 96 ) (0 -1024 96 ) (422.400238 -1024 96 ) +4 3166 3167 (576 -1024 96 ) (576 -1472 96 ) (320 -1472 96 ) (454.399139 -1024 96 ) +4 3167 3170 (320 -1472 64 ) (576 -1472 64 ) (576 -1472 96 ) (320 -1472 96 ) +4 3168 3273 (0 -1024 96 ) (0 -1024 64 ) (0 -1472 64 ) (0 -1472 96 ) +4 3168 3233 (0 -1472 64 ) (0 -1024 64 ) (160 -1024 64 ) (160 -1472 64 ) +4 3168 3225 (160 -1024 64 ) (422.399597 -1024 64 ) (288.001282 -1472 64 ) (160 -1472 64 ) +4 3169 3208 (320 -1920 448 ) (320 -1920 264 ) (330.666656 -1920 264 ) (448 -1920 352 ) +5 3169 3207 (640 -1920 264 ) (640 -1920 5542.669922 ) (320 -1920 5542.669922 ) (320 -1920 448 ) (565.333374 -1920 264 ) +4 3169 3173 (320 -1856 264 ) (320 -1920 264 ) (320 -1920 5542.669922 ) (320 -1856 5542.669922 ) +4 3169 3172 (320 -1568 264 ) (320 -1856 264 ) (320 -1856 5542.669922 ) (320 -1568 5542.669922 ) +4 3169 3171 (320 -1472 5542.669922 ) (320 -1472 264 ) (320 -1568 264 ) (320 -1568 5542.669922 ) +4 3169 3170 (632 -1920 264 ) (320 -1920 264 ) (320 -1472 264 ) (632 -1472 264 ) +4 3170 3209 (320 -1920 64 ) (576 -1920 64 ) (576 -1920 224 ) (320 -1920 224 ) +3 3170 3208 (330.666626 -1920 264 ) (320 -1920 264 ) (320 -1920 256 ) +4 3170 3207 (640 -1920 256 ) (632 -1920 264 ) (565.333313 -1920 264 ) (576 -1920 256 ) +4 3170 3173 (320 -1920 256 ) (320 -1920 264 ) (320 -1856 264 ) (320 -1856 184.888046 ) +4 3170 3172 (320 -1856 65 ) (320 -1856 264 ) (320 -1568 264 ) (320 -1568 65 ) +4 3170 3171 (320 -1472 264 ) (320 -1472 256 ) (320 -1568 256 ) (320 -1568 264 ) +4 3171 3180 (288 -1536 256 ) (288 -1568 256 ) (288 -1568 5542.669922 ) (288 -1536 5542.669922 ) +4 3171 3178 (288 -1528 256 ) (288 -1536 256 ) (288 -1536 5542.669922 ) (288 -1528 5542.669922 ) +4 3171 3176 (288 -1504 256 ) (288 -1528 256 ) (288 -1528 5542.669922 ) (288 -1504 5542.669922 ) +4 3171 3174 (288 -1472 5542.669922 ) (288 -1472 256 ) (288 -1504 256 ) (288 -1504 5542.669922 ) +4 3171 3172 (288 -1568 5542.669922 ) (288 -1568 256 ) (320 -1568 256 ) (320 -1568 5542.669922 ) +4 3172 3198 (288 -1856 65 ) (288 -1856 80 ) (288 -1760 80 ) (288 -1760 65 ) +4 3172 3197 (288 -1856 80 ) (288 -1856 5542.669922 ) (288 -1760 5542.669922 ) (288 -1760 80 ) +4 3172 3183 (288 -1584 65 ) (288 -1760 65 ) (288 -1760 96 ) (288 -1584 96 ) +4 3172 3180 (288 -1584 5542.669922 ) (288 -1568 5542.669922 ) (288 -1568 117.333496 ) (288 -1584 112 ) +4 3172 3181 (288 -1760 5542.669922 ) (288 -1584 5542.669922 ) (288 -1584 96 ) (288 -1760 96 ) +4 3172 3173 (288 -1856 5542.669922 ) (288 -1856 184.887695 ) (320 -1856 184.888062 ) (320 -1856 5542.669922 ) +4 3173 3208 (320 -1920 256 ) (320 -1920 448 ) (288 -1920 472 ) (288 -1920 256 ) +4 3173 3207 (320 -1920 448 ) (320 -1920 5542.669922 ) (288 -1920 5542.669922 ) (288 -1920 472 ) +4 3173 3206 (288 -1920 256 ) (288 -1920 5542.669922 ) (288 -1856 5542.669922 ) (288 -1856 184.887695 ) +4 3174 3272 (0 -1472 5542.669922 ) (0 -1472 256 ) (0 -1504 256 ) (0 -1504 5542.669922 ) +4 3174 3176 (288 -1504 256 ) (288 -1504 5542.669922 ) (152 -1504 5542.669922 ) (152 -1504 256 ) +4 3174 3177 (152 -1504 5542.669922 ) (0 -1504 5542.669922 ) (0 -1504 256 ) (152 -1504 256 ) +4 3174 3175 (224 -1504 256 ) (0 -1504 256 ) (0 -1472 256 ) (224 -1472 256 ) +4 3175 3272 (0 -1472 256 ) (0 -1472 192 ) (0 -1504 192 ) (0 -1504 256 ) +6 3175 3176 (224 -1504 256 ) (152 -1504 256 ) (152 -1504 196.800003 ) (168 -1504 200 ) (200 -1504 216 ) (216 -1504 232 ) +5 3175 3177 (152 -1504 256 ) (0 -1504 256 ) (0 -1504 192 ) (128 -1504 192 ) (152 -1504 196.800003 ) +4 3176 3179 (160 -1528 112 ) (152 -1528 112 ) (152 -1528 104 ) (160 -1528 104 ) +4 3176 3178 (288 -1528 112 ) (288 -1528 5542.669922 ) (152 -1528 5542.669922 ) (152 -1528 112 ) +4 3176 3177 (152 -1528 104 ) (152 -1528 5542.669922 ) (152 -1504 5542.669922 ) (152 -1504 104 ) +4 3177 3279 (0 -1504 192 ) (0 -1504 96 ) (0 -1528 96 ) (0 -1528 192 ) +4 3177 3272 (0 -1504 5542.669922 ) (0 -1504 192 ) (0 -1528 192 ) (0 -1528 5542.669922 ) +4 3177 3190 (0 -1528 96 ) (0 -1504 96 ) (152 -1504 96 ) (152 -1528 96 ) +4 3177 3179 (0 -1528 112 ) (0 -1528 96 ) (152 -1528 96 ) (152 -1528 112 ) +4 3177 3178 (0 -1528 5542.669922 ) (0 -1528 112 ) (152 -1528 112 ) (152 -1528 5542.669922 ) +4 3178 3279 (0 -1528 192 ) (0 -1528 112 ) (0 -1536 112 ) (0 -1536 192 ) +4 3178 3272 (0 -1528 5542.669922 ) (0 -1528 192 ) (0 -1536 192 ) (0 -1536 5542.669922 ) +4 3178 3180 (288 -1536 128 ) (288 -1536 5542.669922 ) (160 -1536 5542.669922 ) (160 -1536 128 ) +4 3178 3182 (160 -1536 5542.669922 ) (0 -1536 5542.669922 ) (0 -1536 112 ) (160 -1536 112 ) +4 3178 3179 (160 -1536 112 ) (0 -1536 112 ) (0 -1528 112 ) (160 -1528 112 ) +4 3179 3279 (0 -1528 112 ) (0 -1528 96 ) (0 -1536 96 ) (0 -1536 112 ) +4 3179 3190 (0 -1536 96 ) (0 -1528 96 ) (152 -1528 96 ) (152 -1536 96 ) +4 3179 3182 (0 -1536 96 ) (160 -1536 96 ) (160 -1536 112 ) (0 -1536 112 ) +4 3180 3181 (160 -1584 5542.669922 ) (160 -1584 112 ) (288 -1584 112 ) (288 -1584 5542.669922 ) +4 3180 3182 (160 -1584 5542.669922 ) (160 -1536 5542.669922 ) (160 -1536 128 ) (160 -1584 112 ) +4 3181 3197 (160 -1760 96 ) (288 -1760 96 ) (288 -1760 5542.669922 ) (160 -1760 5542.669922 ) +4 3181 3183 (288 -1760 96 ) (160 -1760 96 ) (160 -1584 96 ) (288 -1584 96 ) +4 3181 3182 (160 -1760 5542.669922 ) (160 -1584 5542.669922 ) (160 -1584 96 ) (160 -1760 96 ) +4 3182 3283 (0 -1640 96 ) (0 -1760 96 ) (0 -1760 5542.669922 ) (0 -1640 5542.669922 ) +4 3182 3281 (0 -1632 96 ) (0 -1640 96 ) (0 -1640 192 ) (0 -1632 192 ) +4 3182 3279 (0 -1536 192 ) (0 -1536 96 ) (0 -1632 96 ) (0 -1632 192 ) +4 3182 3272 (0 -1536 5542.669922 ) (0 -1536 192 ) (0 -1640 192 ) (0 -1640 5542.669922 ) +4 3182 3204 (0 -1760 5542.669922 ) (0 -1760 96 ) (48 -1760 96 ) (48 -1760 5542.669922 ) +4 3182 3197 (48 -1760 96 ) (160 -1760 96 ) (160 -1760 5542.669922 ) (48 -1760 5542.669922 ) +4 3182 3196 (96 -1760 96 ) (0 -1760 96 ) (0 -1640 96 ) (96 -1640 96 ) +3 3182 3195 (128 -1632 96 ) (136 -1632 96 ) (120 -1636 96 ) +3 3182 3194 (96 -1642 96 ) (96 -1640 96 ) (112 -1638 96 ) +5 3182 3193 (152 -1760 96 ) (96 -1760 96 ) (96 -1642 96 ) (136 -1632 96 ) (152 -1632 96 ) +3 3182 3192 (152 -1574 96 ) (152 -1576 96 ) (150 -1586 96 ) +3 3182 3191 (119 -1627.400146 96 ) (118 -1628 96 ) (106.005600 -1629.998901 96 ) +10 3182 3190 (0 -1632 96 ) (0 -1536 96 ) (152 -1536 96 ) (152 -1574 96 ) (148 -1598 96 ) (142 -1608 96 ) (136 -1616 96 ) (128 -1622 96 ) (119 -1627.400146 96 ) (96 -1632 96 ) +3 3182 3189 (150 -1612 96 ) (147 -1618 96 ) (142 -1622 96 ) +3 3182 3188 (147 -1618 96 ) (144 -1624 96 ) (132 -1630 96 ) +3 3182 3187 (152 -1608 96 ) (152 -1620 96 ) (144 -1624 96 ) +3 3182 3186 (152 -1620 96 ) (152 -1632 96 ) (128 -1632 96 ) +3 3182 3185 (152 -1616 96 ) (152 -1608 96 ) (156 -1600 96 ) +4 3182 3184 (160 -1760 96 ) (152 -1760 96 ) (152 -1616 96 ) (160 -1584 96 ) +4 3183 3199 (256 -1760 64 ) (288 -1760 64 ) (288 -1760 65 ) (256 -1760 65 ) +4 3183 3200 (192 -1760 64 ) (224 -1760 64 ) (224 -1760 65 ) (192 -1760 65 ) +4 3183 3198 (288 -1760 65 ) (288 -1760 80 ) (160 -1760 80 ) (160 -1760 65 ) +4 3183 3197 (288 -1760 80 ) (288 -1760 96 ) (160 -1760 96 ) (160 -1760 80 ) +4 3183 3184 (160 -1760 64 ) (160 -1760 96 ) (160 -1584 96 ) (160 -1584 64 ) +4 3184 3201 (152 -1760 64 ) (160 -1760 64 ) (160 -1760 65 ) (152 -1760 65 ) +4 3184 3198 (160 -1760 65 ) (160 -1760 80 ) (152 -1760 80 ) (152 -1760 65 ) +4 3184 3197 (160 -1760 80 ) (160 -1760 96 ) (152 -1760 96 ) (152 -1760 80 ) +4 3184 3193 (152 -1760 64 ) (152 -1760 96 ) (152 -1632 96 ) (152 -1632 64 ) +4 3184 3187 (152 -1620 96 ) (152 -1616 96 ) (152 -1616 64 ) (152 -1620 64 ) +4 3184 3186 (152 -1632 96 ) (152 -1620 96 ) (152 -1620 64 ) (152 -1632 64 ) +4 3184 3185 (156 -1600.001953 64 ) (152 -1615.998047 64 ) (152 -1615.998047 96 ) (156 -1600.001953 96 ) +4 3185 3187 (152 -1616 96 ) (152 -1608 96 ) (152 -1608 64 ) (152 -1616 64 ) +4 3186 3195 (128 -1632 64 ) (136 -1632 64 ) (136 -1632 96 ) (128 -1632 96 ) +4 3186 3193 (136 -1632 64 ) (152 -1632 64 ) (152 -1632 96 ) (136 -1632 96 ) +4 3186 3188 (144 -1623.998657 64 ) (132.003128 -1629.997437 64 ) (132.003113 -1629.997437 96 ) (144 -1623.998657 96 ) +4 3186 3187 (152 -1620 96 ) (152 -1620 64 ) (144 -1623.998657 64 ) (144 -1623.998657 96 ) +4 3187 3189 (150 -1612 64 ) (147 -1618 64 ) (147 -1618 96 ) (150 -1612 96 ) +4 3187 3188 (147 -1618 64 ) (144 -1624.001953 64 ) (144 -1624.001953 96 ) (147 -1618 96 ) +4 3188 3189 (147 -1618 96 ) (147 -1618 64 ) (141.998932 -1622.001343 64 ) (141.998932 -1622.001343 96 ) +4 3190 3279 (0 -1504 96 ) (0 -1504 88 ) (0 -1632 88 ) (0 -1632 96 ) +4 3190 3192 (149.994049 -1586.029907 88 ) (152 -1573.994141 88 ) (152 -1573.994141 96 ) (149.994049 -1586.029907 96 ) +4 3190 3191 (106.008881 -1629.998413 88 ) (119 -1627.400391 88 ) (119 -1627.400391 96 ) (106.008881 -1629.998413 96 ) +4 3193 3201 (128 -1760 64 ) (152 -1760 64 ) (152 -1760 65 ) (128 -1760 65 ) +4 3193 3198 (152 -1760 65 ) (152 -1760 80 ) (96 -1760 80 ) (96 -1760 65 ) +4 3193 3197 (152 -1760 80 ) (152 -1760 96 ) (96 -1760 96 ) (96 -1760 80 ) +4 3193 3196 (96 -1642 64 ) (96 -1760 64 ) (96 -1760 96 ) (96 -1642 96 ) +4 3193 3195 (136.001953 -1632 96 ) (136.001953 -1632 64 ) (119.997971 -1636 64 ) (119.997971 -1636 96 ) +4 3193 3194 (112.004715 -1638 64 ) (96 -1642 64 ) (96 -1642 96 ) (112.004715 -1638 96 ) +4 3194 3196 (96 -1640 64 ) (96 -1642 64 ) (96 -1642 96 ) (96 -1640 96 ) +4 3196 3283 (0 -1640 64 ) (0 -1760 64 ) (0 -1760 96 ) (0 -1640 96 ) +4 3196 3204 (0 -1760 96 ) (0 -1760 72 ) (48 -1760 80 ) (48 -1760 96 ) +4 3196 3202 (64 -1760 64 ) (96 -1760 64 ) (96 -1760 65 ) (64 -1760 65 ) +4 3196 3198 (96 -1760 65 ) (96 -1760 80 ) (64 -1760 80 ) (64 -1760 65 ) +4 3196 3197 (96 -1760 80 ) (96 -1760 96 ) (48 -1760 96 ) (48 -1760 80 ) +4 3197 3206 (288 -1856 184.888000 ) (288 -1856 5542.669922 ) (48 -1856 5542.669922 ) (48 -1856 184.888184 ) +4 3197 3204 (48 -1760 5542.669922 ) (48 -1760 80 ) (48 -1776 80 ) (48 -1776 5542.669922 ) +4 3197 3205 (48 -1776 80 ) (48 -1856 80 ) (48 -1856 5542.669922 ) (48 -1776 5542.669922 ) +4 3197 3198 (288 -1856 80 ) (64 -1856 80 ) (64 -1760 80 ) (288 -1760 80 ) +4 3198 3203 (288 -1856 65 ) (64 -1856 65 ) (64 -1792 65 ) (288 -1792 65 ) +4 3198 3202 (64 -1792 65 ) (64 -1760 65 ) (96 -1760 65 ) (96 -1792 65 ) +4 3198 3201 (128 -1760 65 ) (160 -1760 65 ) (160 -1792 65 ) (128 -1792 65 ) +4 3198 3199 (256 -1760 65 ) (288 -1760 65 ) (288 -1792 65 ) (256 -1792 65 ) +4 3198 3200 (192 -1760 65 ) (224 -1760 65 ) (224 -1792 65 ) (192 -1792 65 ) +4 3199 3203 (288 -1792 64 ) (288 -1792 65 ) (256 -1792 65 ) (256 -1792 64 ) +4 3200 3203 (224 -1792 65 ) (192 -1792 65 ) (192 -1792 64 ) (224 -1792 64 ) +4 3201 3203 (160 -1792 65 ) (128 -1792 65 ) (128 -1792 64 ) (160 -1792 64 ) +4 3202 3203 (96 -1792 65 ) (64 -1792 65 ) (64 -1792 64 ) (96 -1792 64 ) +4 3204 3294 (0 -1760 256 ) (0 -1760 72 ) (0 -1776 72 ) (0 -1776 256 ) +4 3204 3293 (0 -1760 5542.669922 ) (0 -1760 256 ) (0 -1776 256 ) (0 -1776 5542.669922 ) +4 3204 3205 (48 -1776 80 ) (48 -1776 5542.669922 ) (0 -1776 5542.669922 ) (0 -1776 72 ) +4 3205 3295 (0 -1776 64 ) (0 -1856 64 ) (0 -1856 256 ) (0 -1776 256 ) +4 3205 3293 (0 -1856 256 ) (0 -1856 5542.669922 ) (0 -1776 5542.669922 ) (0 -1776 256 ) +4 3205 3244 (0 -1856 64 ) (0 -1776 64 ) (48 -1776 64 ) (48 -1856 64 ) +4 3205 3206 (48 -1856 184.888031 ) (48 -1856 5542.669922 ) (0 -1856 5542.669922 ) (0 -1856 184.887695 ) +3 3206 3297 (0 -1856 256 ) (0 -1856 184.887695 ) (0 -1920 256 ) +4 3206 3293 (0 -1856 5542.669922 ) (0 -1856 256 ) (0 -1920 256 ) (0 -1920 5542.669922 ) +4 3206 3208 (0 -1920 688 ) (0 -1920 256 ) (288 -1920 256 ) (288 -1920 472 ) +4 3206 3207 (0 -1920 5542.669922 ) (0 -1920 688 ) (288 -1920 472 ) (288 -1920 5542.669922 ) +4 3207 3293 (0 -1920 5542.669922 ) (0 -1920 688 ) (0 -1952 688 ) (0 -1952 5542.669922 ) +4 3207 3212 (272 -1952 5542.669922 ) (256 -1952 5542.669922 ) (256 -1952 496 ) (272 -1952 484 ) +4 3207 3214 (256 -1952 5542.669922 ) (0 -1952 5542.669922 ) (0 -1952 688 ) (256 -1952 496 ) +4 3207 3211 (640 -1952 256 ) (640 -1952 464 ) (469.333374 -1952 336 ) (576 -1952 256 ) +5 3207 3210 (640 -1952 464 ) (640 -1952 5542.669922 ) (272 -1952 5542.669922 ) (272 -1952 484 ) (469.333374 -1952 336 ) +4 3207 3208 (0 -1920 687.998047 ) (447.998688 -1920 352 ) (447.998657 -1952 351.998993 ) (0 -1952 687.997803 ) +4 3208 3293 (0 -1920 688 ) (0 -1920 256 ) (0 -1952 256 ) (0 -1952 688 ) +4 3208 3213 (256 -1952 256 ) (272 -1952 256 ) (272 -1952 272 ) (256 -1952 272 ) +4 3208 3212 (272 -1952 272 ) (272 -1952 484 ) (256 -1952 496 ) (256 -1952 272 ) +4 3208 3214 (0 -1952 688 ) (0 -1952 256 ) (256 -1952 256 ) (256 -1952 496 ) +4 3208 3210 (272 -1952 256 ) (320 -1952 256 ) (448 -1952 352 ) (272 -1952 484 ) +4 3210 3498 (272 -2048 320 ) (272 -2048 304 ) (426.666382 -2048 304 ) (448 -2048 320 ) +4 3210 3497 (272 -2048 352 ) (272 -2048 320 ) (448 -2048 320 ) (490.666718 -2048 352 ) +4 3210 3492 (272 -2048 384 ) (272 -2048 352 ) (490.666718 -2048 352 ) (533.333374 -2048 384 ) +5 3210 3491 (272 -2048 5542.669922 ) (272 -2048 384 ) (533.333374 -2048 384 ) (640 -2048 464 ) (640 -2048 5542.669922 ) +6 3210 3213 (272 -1952 272 ) (272 -1952 256 ) (272 -1984 256 ) (272 -1996 264 ) (272 -2032 336 ) (272 -2032 352 ) +4 3210 3212 (272 -1952 5542.669922 ) (272 -1952 272 ) (272 -2048 368 ) (272 -2048 5542.669922 ) +4 3210 3211 (447.997986 -1952 320.001526 ) (640 -1952 464.003052 ) (640 -2048 464.003052 ) (447.997955 -2048 320.001526 ) +4 3211 3500 (640 -2048 304 ) (640 -2048 320 ) (448 -2048 320 ) (469.333618 -2048 304 ) +4 3211 3497 (640 -2048 320 ) (640 -2048 352 ) (490.666687 -2048 352 ) (448 -2048 320 ) +4 3211 3492 (640 -2048 352 ) (640 -2048 384 ) (533.333374 -2048 384 ) (490.666687 -2048 352 ) +3 3211 3491 (640 -2048 384 ) (640 -2048 464 ) (533.333374 -2048 384 ) +4 3211 3215 (576 -1952 256 ) (640 -1952 256 ) (640 -1984 256 ) (576 -1984 256 ) +4 3212 3509 (272 -2048 368 ) (272 -2048 384 ) (256 -2048 384 ) (256 -2048 368 ) +4 3212 3508 (272 -2048 384 ) (272 -2048 5542.669922 ) (256 -2048 5542.669922 ) (256 -2048 384 ) +4 3212 3213 (256 -2032 352 ) (256 -1952 272 ) (272 -1952 272 ) (272 -2032 352 ) +4 3212 3214 (256 -2048 368 ) (256 -2048 5542.669922 ) (256 -1952 5542.669922 ) (256 -1952 272 ) +6 3213 3214 (256 -1952 256 ) (256 -1984 256 ) (256 -1996 264 ) (256 -2032 336 ) (256 -2032 352 ) (256 -1952 272 ) +4 3214 3513 (0 -2048 341.333496 ) (0 -2048 298.666992 ) (256 -2048 298.666748 ) (256 -2048 341.333313 ) +4 3214 3512 (0 -2048 5542.669922 ) (0 -2048 341.333496 ) (256 -2048 341.333313 ) (256 -2048 5542.669922 ) +5 3214 3293 (0 -2048 298.666718 ) (0 -2048 5542.669922 ) (0 -1952 5542.669922 ) (0 -1952 256 ) (0 -1984 256 ) +4 3215 3218 (576 -1952 224 ) (640 -1952 224 ) (640 -1984 224 ) (576 -1984 224 ) +4 3215 3216 (576 -1984 224 ) (640 -1984 224 ) (640 -1984 240 ) (576 -1984 240 ) +4 3216 3514 (640 -2048 224 ) (640 -2048 240 ) (554.666748 -2048 240 ) (576 -2048 224 ) +4 3216 3219 (576 -1984 224 ) (640 -1984 224 ) (640 -2048 224 ) (576 -2048 224 ) +3 3217 3515 (341.333313 -2048 240 ) (320 -2048 240 ) (320 -2048 224 ) +4 3218 3228 (576 -1952 64 ) (640 -1952 64 ) (640 -1984 64 ) (576 -1984 64 ) +4 3218 3219 (640 -1984 80 ) (640 -1984 224 ) (576 -1984 224 ) (576 -1984 80 ) +4 3219 3519 (508 -2048 224 ) (452 -2048 224 ) (452 -2048 80 ) (508 -2048 80 ) +4 3219 3518 (640 -2048 80 ) (640 -2048 224 ) (508 -2048 224 ) (508 -2048 80 ) +4 3219 3521 (452 -2048 224 ) (320 -2048 224 ) (320 -2048 80 ) (452 -2048 80 ) +4 3220 3223 (896 -1152 64 ) (896 -1024 64 ) (896 -1024 56 ) (896 -1136 56 ) +4 3221 3245 (896 -1024 0 ) (1024 -1024 0 ) (1024 -1152 0 ) (896 -1152 0 ) +4 3221 3223 (896 -1024 0 ) (896 -1152 0 ) (896 -1152 32 ) (896 -1024 32 ) +4 3221 3222 (896 -1152 32 ) (896 -1152 0 ) (1024 -1152 0 ) (1024 -1152 32 ) +4 3222 3245 (1024 -1152 0 ) (1024 -1472 0 ) (896 -1472 0 ) (896 -1152 0 ) +4 3222 3224 (896 -1152 0 ) (896 -1472 0 ) (896 -1472 32 ) (896 -1152 32 ) +4 3223 3245 (784 -1024 0 ) (896 -1024 0 ) (896 -1152 0 ) (752 -1152 0 ) +4 3223 3224 (752 -1152 32 ) (752 -1152 0 ) (896 -1152 0 ) (896 -1152 32 ) +3 3224 3246 (704 -1472 0 ) (672 -1472 0 ) (704 -1344 0 ) +5 3224 3245 (896 -1152 0 ) (896 -1472 0 ) (704 -1472 0 ) (704 -1344 0 ) (752 -1152 0 ) +4 3224 3226 (672 -1472 0 ) (704 -1472 0 ) (704 -1472 32 ) (672 -1472 32 ) +4 3225 3250 (160 -1024 0 ) (422.398285 -1024 0 ) (288 -1472 0 ) (160 -1472 0 ) +4 3225 3239 (160 -1024 0 ) (160 -1472 0 ) (160 -1472 57.599998 ) (160 -1024 57.599998 ) +4 3225 3233 (160 -1472 57.599998 ) (160 -1472 64 ) (160 -1024 64 ) (160 -1024 57.599998 ) +4 3225 3229 (160 -1472 64 ) (160 -1472 0 ) (288 -1472 0 ) (288.001343 -1472 64 ) +4 3226 3247 (640 -1664 0 ) (640 -1472 0 ) (704 -1472 0 ) (704 -1664 0 ) +4 3227 3536 (688 -2048 64 ) (640 -2048 64 ) (640 -2048 0 ) (688 -2048 0 ) +4 3227 3490 (704 -2048 64 ) (688 -2048 64 ) (688 -2048 0 ) (704 -2048 0 ) +4 3227 3247 (704 -2048 0 ) (640 -2048 0 ) (640 -1728 0 ) (704 -1728 0 ) +4 3227 3228 (640 -1952 0 ) (640 -2048 0 ) (640 -2048 64 ) (640 -1952 64 ) +4 3228 3537 (512 -2048 64 ) (416 -2048 64 ) (416 -2048 0 ) (512 -2048 0 ) +4 3228 3536 (640 -2048 64 ) (512 -2048 64 ) (512 -2048 0 ) (640 -2048 0 ) +4 3228 3538 (416 -2048 64 ) (320 -2048 64 ) (320 -2048 0 ) (416 -2048 0 ) +4 3228 3247 (640 -2048 0 ) (320 -2048 0 ) (320 -1952 0 ) (640 -1952 0 ) +4 3229 3255 (288 -1472 0 ) (312 -1472 0 ) (312 -1480 0 ) (285.599915 -1480 0 ) +4 3229 3250 (160 -1480 0 ) (160 -1472 0 ) (288 -1472 0 ) (285.599915 -1480 0 ) +4 3229 3239 (160 -1472 0 ) (160 -1480 0 ) (160 -1480 57.599998 ) (160 -1472 57.599998 ) +4 3229 3233 (160 -1480 57.599998 ) (160 -1480 64 ) (160 -1472 64 ) (160 -1472 57.599998 ) +3 3230 3256 (288 -1504 0 ) (310.400055 -1504 0 ) (288 -1578.667480 0 ) +5 3230 3249 (310.400055 -1504 0 ) (312 -1504 0 ) (312 -1640 0 ) (288 -1640 0 ) (288 -1578.667480 0 ) +4 3230 3232 (288 -1640 0 ) (312 -1640 0 ) (312 -1640 64 ) (288 -1640 64 ) +4 3230 3231 (288 -1504 64 ) (288 -1504 0 ) (288 -1584 0 ) (288 -1584 64 ) +5 3231 3256 (278.399933 -1504 0 ) (288 -1504 0 ) (288 -1578.667480 0 ) (286.400238 -1584 0 ) (254.399902 -1584 0 ) +4 3231 3251 (160 -1584 0 ) (160 -1504 0 ) (278.399933 -1504 0 ) (254.399902 -1584 0 ) +3 3231 3249 (288 -1578.667480 0 ) (288 -1584 0 ) (286.400238 -1584 0 ) +4 3231 3240 (160 -1504 0 ) (160 -1584 0 ) (160 -1584 57.599998 ) (160 -1504 57.599998 ) +4 3231 3234 (160 -1528 64 ) (160 -1504 64 ) (160 -1504 57.599998 ) (160 -1528 57.599998 ) +4 3232 3249 (288 -1640 0 ) (320 -1640 0 ) (320 -1856 0 ) (288 -1856 0 ) +4 3233 3274 (0 -1480 64 ) (0 -1024 64 ) (0 -1024 57.599998 ) (0 -1480 57.599998 ) +4 3233 3239 (0 -1480 57.599998 ) (0 -1024 57.599998 ) (160 -1024 57.599998 ) (160 -1480 57.599998 ) +4 3234 3240 (152 -1504 57.599998 ) (160 -1504 57.599998 ) (160 -1528 57.599998 ) (152 -1528 57.599998 ) +4 3234 3235 (152 -1504 64 ) (152 -1504 57.599998 ) (152 -1528 57.599998 ) (152 -1528 64 ) +9 3235 3240 (96 -1631.666504 57.599998 ) (96 -1504 57.599998 ) (152 -1504 57.599998 ) (152 -1576 57.599998 ) (147.400009 -1599 57.599998 ) (142 -1608 57.599998 ) (136 -1616 57.599998 ) (128 -1622 57.599998 ) (118 -1628 57.599998 ) +4 3235 3238 (96 -1504 64 ) (96 -1504 57.599998 ) (96 -1631.666504 57.599998 ) (96 -1631.666504 64 ) +4 3235 3237 (96 -1631.666992 64 ) (96 -1631.666992 57.599998 ) (105.989365 -1630.002197 57.599998 ) (105.989365 -1630.002197 64 ) +4 3235 3236 (147.400070 -1599.002197 64 ) (147.400070 -1599.002197 57.599998 ) (149.998154 -1586.011230 57.599998 ) (149.998154 -1586.011230 64 ) +3 3236 3240 (148 -1598 57.599998 ) (147.400009 -1599 57.599998 ) (150 -1586 57.599998 ) +3 3237 3240 (96 -1632 57.599998 ) (96 -1631.666504 57.599998 ) (106.004860 -1630 57.599998 ) +4 3237 3238 (96 -1631.666504 57.599998 ) (96 -1632 57.599998 ) (96 -1632 64 ) (96 -1631.666504 64 ) +4 3238 3280 (0 -1632 64 ) (0 -1504 64 ) (0 -1504 57.599998 ) (0 -1632 57.599998 ) +4 3238 3241 (0 -1632 57.599998 ) (0 -1504 57.599998 ) (96 -1504 57.599998 ) (96 -1632 57.599998 ) +4 3239 3274 (0 -1024 57.599998 ) (0 -1024 0 ) (0 -1480 0 ) (0 -1480 57.599998 ) +4 3239 3250 (0 -1480 0 ) (0 -1024 0 ) (160 -1024 0 ) (160 -1480 0 ) +8 3240 3251 (96 -1504 0 ) (160 -1504 0 ) (160 -1584 0 ) (150 -1612 0 ) (142 -1622 0 ) (132 -1630 0 ) (120 -1636 0 ) (96 -1640 0 ) +4 3240 3242 (96 -1632 0 ) (96 -1640 0 ) (96 -1640 32 ) (96 -1632 32 ) +4 3240 3241 (96 -1504 57.599998 ) (96 -1504 0 ) (96 -1632 0 ) (96 -1632 57.599998 ) +4 3241 3280 (0 -1504 0 ) (0 -1632 0 ) (0 -1632 57.599998 ) (0 -1504 57.599998 ) +4 3241 3251 (0 -1632 0 ) (0 -1504 0 ) (96 -1504 0 ) (96 -1632 0 ) +4 3241 3242 (0 -1632 0 ) (96 -1632 0 ) (96 -1632 32 ) (0 -1632 32 ) +4 3242 3282 (0 -1632 0 ) (0 -1640 0 ) (0 -1640 32 ) (0 -1632 32 ) +4 3242 3251 (0 -1640 0 ) (0 -1632 0 ) (96 -1632 0 ) (96 -1640 0 ) +4 3243 3284 (0 -1648 56 ) (0 -1648 0 ) (0 -1752 0 ) (0 -1752 56 ) +4 3243 3251 (0 -1752 0 ) (0 -1648 0 ) (72 -1648 0 ) (72 -1752 0 ) +4 3244 3295 (0 -1856 64 ) (0 -1776 64 ) (0 -1776 0 ) (0 -1856 0 ) +4 3244 3251 (0 -1856 0 ) (0 -1776 0 ) (48 -1776 0 ) (48 -1856 0 ) +4 3245 3257 (704 -1472 -64 ) (704 -1024 -64 ) (1024 -1024 -64 ) (1024 -1472 -64 ) +4 3245 3246 (704 -1024 -64 ) (704 -1472 -64 ) (704 -1472 0 ) (704 -1024 0 ) +4 3246 3258 (486.400208 -1024 -64 ) (704 -1024 -64 ) (704 -1472 -64 ) (352 -1472 -64 ) +4 3246 3247 (352 -1472 -64 ) (704 -1472 -64 ) (704 -1472 0 ) (352 -1472 0 ) +4 3247 3540 (688 -2048 0 ) (320 -2048 0 ) (320 -2048 -64 ) (688 -2048 -64 ) +4 3247 3490 (704 -2048 0 ) (688 -2048 0 ) (688 -2048 -64 ) (704 -2048 -64 ) +4 3247 3268 (704 -2048 -64 ) (320 -2048 -64 ) (320 -1472 -64 ) (704 -1472 -64 ) +4 3247 3248 (320 -1472 0 ) (320 -1472 -64 ) (320 -1480 -64 ) (320 -1480 0 ) +4 3247 3249 (320 -1504 -64 ) (320 -2048 -64 ) (320 -2048 0 ) (320 -1504 0 ) +3 3248 3269 (317.600037 -1480 -64 ) (320 -1472 -64 ) (320 -1480 -64 ) +4 3248 3255 (320 -1472 -64 ) (317.599670 -1480 -64 ) (317.600006 -1480 0 ) (320 -1472 0 ) +4 3249 3540 (320 -2048 0 ) (147.201172 -2048 0 ) (147.201172 -2048 -64 ) (320 -2048 -64 ) +4 3249 3270 (320 -2048 -64 ) (147.201172 -2048 -64 ) (310.400085 -1504 -64 ) (320 -1504 -64 ) +4 3249 3256 (310.399719 -1504 -64 ) (147.201172 -2048 -64 ) (147.201172 -2048 0 ) (310.400055 -1504 0 ) +4 3250 3274 (0 -1480 0 ) (0 -1024 0 ) (0 -1024 -64 ) (0 -1480 -64 ) +4 3250 3269 (0 -1480 -64 ) (0 -1472 -64 ) (288 -1472 -64 ) (285.599976 -1480 -64 ) +4 3250 3260 (0 -1472 -64 ) (0 -1024 -64 ) (422.400208 -1024 -64 ) (288 -1472 -64 ) +6 3250 3254 (302.400513 -1424 -64 ) (340.800598 -1296 -64 ) (333.601135 -1320 -40 ) (326.401306 -1344 -32 ) (316.801300 -1376 -32 ) (309.601044 -1400 -40 ) +4 3250 3255 (285.600494 -1480 -64 ) (288 -1472 -64 ) (288.001923 -1472 0 ) (285.601929 -1480 0 ) +5 3250 3253 (398.400726 -1104 -64 ) (422.400726 -1024 -64 ) (422.401550 -1024 -32 ) (412.801514 -1056 -32 ) (405.601318 -1080 -40 ) +6 3250 3252 (350.400635 -1264 -64 ) (388.800659 -1136 -64 ) (381.601196 -1160 -40 ) (374.401367 -1184 -32 ) (364.801331 -1216 -32 ) (357.601196 -1240 -40 ) +4 3251 3540 (115.199631 -2048 0 ) (0 -2048 0 ) (0 -2048 -64 ) (115.199638 -2048 -64 ) +4 3251 3298 (0 -2048 -64 ) (0 -2048 0 ) (0 -1760 0 ) (0 -1760 -64 ) +4 3251 3292 (0 -1760 0 ) (0 -1640 0 ) (0 -1640 -64 ) (0 -1760 -64 ) +4 3251 3282 (0 -1640 0 ) (0 -1632 0 ) (0 -1632 -64 ) (0 -1640 -64 ) +4 3251 3280 (0 -1632 0 ) (0 -1504 0 ) (0 -1504 -64 ) (0 -1632 -64 ) +4 3251 3270 (115.199631 -2048 -64 ) (0 -2048 -64 ) (0 -1504 -64 ) (278.399963 -1504 -64 ) +4 3251 3256 (115.200203 -2048 -64 ) (278.400482 -1504 -64 ) (278.401917 -1504 0 ) (115.201477 -2048 0 ) +4 3252 3262 (350.400085 -1264 -64 ) (388.800110 -1136 -64 ) (420.799347 -1136 -64 ) (382.399658 -1264 -64 ) +4 3253 3266 (398.400177 -1104 -64 ) (422.400208 -1024 -64 ) (454.399139 -1024 -64 ) (430.399323 -1104 -64 ) +4 3254 3264 (302.399994 -1424 -64 ) (340.800049 -1296 -64 ) (372.799683 -1296 -64 ) (334.399933 -1424 -64 ) +4 3255 3269 (285.599976 -1480 -64 ) (288 -1472 -64 ) (320 -1472 -64 ) (317.600037 -1480 -64 ) +4 3256 3540 (147.201172 -2048 0 ) (115.199631 -2048 0 ) (115.199638 -2048 -64 ) (147.201172 -2048 -64 ) +4 3256 3270 (147.201172 -2048 -64 ) (115.199631 -2048 -64 ) (278.399963 -1504 -64 ) (310.400085 -1504 -64 ) +4 3257 3259 (1024 -1472 -128 ) (704 -1472 -128 ) (704 -1024 -128 ) (1024 -1024 -128 ) +4 3257 3258 (704 -1024 -128 ) (704 -1472 -128 ) (704 -1472 -64 ) (704 -1024 -64 ) +4 3258 3268 (704 -1472 -64 ) (352 -1472 -64 ) (352 -1472 -128 ) (704 -1472 -128 ) +4 3258 3259 (704 -1472 -128 ) (352 -1472 -128 ) (486.400177 -1024 -128 ) (704 -1024 -128 ) +4 3259 3271 (1024 -1472 -1284 ) (1024 -1472 -128 ) (320 -1472 -128 ) (320 -1472 -1284 ) +3 3259 3267 (425.599304 -1120 -128 ) (454.399109 -1024 -128 ) (454.399109 -1024 -512 ) +3 3259 3265 (320 -1472 -896 ) (320 -1472 -128 ) (377.599670 -1280 -128 ) +6 3259 3263 (320 -1472 -1284 ) (320 -1472 -896 ) (377.599670 -1280 -128 ) (425.599304 -1120 -128 ) (454.399109 -1024 -512 ) (454.399109 -1024 -1284 ) +4 3260 3385 (0 -1472 -128 ) (0 -1472 -64 ) (0 -1392 -64 ) (0 -1392 -128 ) +4 3260 3383 (0 -1392 -64 ) (0 -1024 -64 ) (0 -1024 -128 ) (0 -1392 -128 ) +4 3260 3269 (288 -1472 -64 ) (0 -1472 -64 ) (0 -1472 -128 ) (288 -1472 -128 ) +4 3260 3266 (393.602264 -1120 -128 ) (422.402344 -1024 -128 ) (422.402344 -1024 -64 ) (398.402283 -1104 -64 ) +4 3260 3264 (288.001953 -1472 -128 ) (345.602173 -1280 -128 ) (340.802124 -1296 -64 ) (302.401947 -1424 -64 ) +4 3260 3262 (345.602173 -1280 -128 ) (393.602264 -1120 -128 ) (388.802246 -1136 -64 ) (350.402161 -1264 -64 ) +4 3260 3261 (422.396484 -1024 -128 ) (287.996094 -1472 -128 ) (0 -1472 -128 ) (0 -1024 -128 ) +4 3261 3413 (0 -1472 -1284 ) (0 -1472 -128 ) (0 -1024 -128 ) (0 -1024 -1284 ) +4 3261 3271 (0 -1472 -128 ) (0 -1472 -1284 ) (288 -1472 -1284 ) (288 -1472 -128 ) +3 3261 3267 (422.402283 -1024 -512 ) (422.402344 -1024 -128 ) (393.602264 -1120 -128 ) +3 3261 3265 (288.001953 -1472 -128 ) (288.001953 -1472 -896 ) (345.602173 -1280 -128 ) +6 3261 3263 (288.001953 -1472 -896 ) (288.001953 -1472 -1284 ) (422.402191 -1024 -1284 ) (422.402283 -1024 -512 ) (393.602264 -1120 -128 ) (345.602173 -1280 -128 ) +4 3262 3263 (377.601563 -1280 -128 ) (345.601563 -1280 -128 ) (393.601563 -1120 -128 ) (425.599335 -1120 -128 ) +4 3263 3271 (288 -1472 -896 ) (288 -1472 -1284 ) (320 -1472 -1284 ) (320 -1472 -896 ) +4 3263 3267 (422.403961 -1024 -512 ) (393.603577 -1120 -128 ) (425.599792 -1120 -128 ) (454.400116 -1024 -512 ) +4 3263 3265 (320 -1472 -895.998047 ) (377.601013 -1280 -128 ) (345.600677 -1280 -128 ) (288 -1472 -895.998047 ) +4 3264 3265 (320.003906 -1472 -128 ) (288 -1472 -128 ) (345.601563 -1280.001953 -128 ) (377.599060 -1280.001953 -128 ) +4 3265 3271 (288 -1472 -128 ) (288 -1472 -896 ) (320 -1472 -896 ) (320 -1472 -128 ) +4 3266 3267 (425.601563 -1120.001953 -128 ) (393.601563 -1120.001953 -128 ) (422.402191 -1024 -128 ) (454.400391 -1024 -128 ) +4 3268 3540 (688 -2048 -64 ) (320 -2048 -64 ) (320 -2048 -128 ) (688 -2048 -128 ) +4 3268 3490 (704 -2048 -64 ) (688 -2048 -64 ) (688 -2048 -128 ) (704 -2048 -128 ) +4 3268 3271 (704 -2048 -128 ) (320 -2048 -128 ) (320 -1472 -128 ) (704 -1472 -128 ) +4 3268 3269 (320 -1472 -64 ) (320 -1472 -128 ) (320 -1480 -128 ) (320 -1480 -64 ) +4 3268 3270 (320 -1504 -128 ) (320 -2048 -128 ) (320 -2048 -64 ) (320 -1504 -64 ) +4 3269 3386 (0 -1480 -64 ) (0 -1472 -64 ) (0 -1472 -128 ) (0 -1480 -128 ) +4 3269 3271 (0 -1480 -128 ) (0 -1472 -128 ) (320 -1472 -128 ) (320 -1480 -128 ) +4 3270 3540 (320 -2048 -64 ) (0 -2048 -64 ) (0 -2048 -128 ) (320 -2048 -128 ) +4 3270 3387 (0 -2048 -128 ) (0 -2048 -64 ) (0 -1504 -64 ) (0 -1504 -128 ) +4 3270 3271 (320 -2048 -128 ) (0 -2048 -128 ) (0 -1504 -128 ) (320 -1504 -128 ) +4 3271 3540 (688 -2048 -128 ) (0 -2048 -128 ) (0 -2048 -1284 ) (688 -2048 -1284 ) +4 3271 3490 (704 -2048 -128 ) (688 -2048 -128 ) (688 -2048 -1284 ) (704 -2048 -1284 ) +4 3271 3481 (1008 -2048 -128 ) (704 -2048 -128 ) (704 -2048 -1284 ) (1008 -2048 -1284 ) +4 3271 3437 (1024 -2048 -1284 ) (1024 -2048 -128 ) (1008 -2048 -128 ) (1008 -2048 -1284 ) +4 3271 3413 (0 -2048 -1284 ) (0 -2048 -128 ) (0 -1472 -128 ) (0 -1472 -1284 ) +4 3272 3319 (-208 -1640 192 ) (-208 -1640 256 ) (-208 -1024 256 ) (-208 -1024 192 ) +4 3272 3318 (-208 -1640 256 ) (-208 -1640 5542.669922 ) (-208 -1024 5542.669922 ) (-208 -1024 256 ) +4 3272 3289 (-208 -1640 5542.669922 ) (-208 -1640 192 ) (-192 -1640 192 ) (-192 -1640 5542.669922 ) +4 3272 3283 (-192 -1640 192 ) (0 -1640 192 ) (0 -1640 5542.669922 ) (-192 -1640 5542.669922 ) +4 3272 3281 (0 -1640 192 ) (-208 -1640 192 ) (-208 -1632 192 ) (0 -1632 192 ) +4 3272 3279 (-208 -1632 192 ) (-208 -1504 192 ) (0 -1504 192 ) (0 -1632 192 ) +4 3272 3278 (-208 -1504 192 ) (-208 -1408 192 ) (-128 -1408 192 ) (-32 -1504 192 ) +3 3272 3277 (-112 -1408 192 ) (-32 -1408 192 ) (-32 -1488 192 ) +4 3272 3276 (-128 -1392 192 ) (-32 -1392 192 ) (-32 -1408 192 ) (-112 -1408 192 ) +4 3272 3275 (-208 -1392 192 ) (-208 -1024 192 ) (-32 -1024 192 ) (-32 -1392 192 ) +4 3272 3273 (-32 -1024 192 ) (0 -1024 192 ) (0 -1472 192 ) (-32 -1472 192 ) +4 3273 3277 (-32 -1472 192 ) (-32 -1408 192 ) (-32 -1408 64 ) (-32 -1472 64 ) +4 3273 3276 (-32 -1408 192 ) (-32 -1392 192 ) (-32 -1392 64 ) (-32 -1408 64 ) +4 3273 3275 (-32 -1392 192 ) (-32 -1024 192 ) (-32 -1024 64 ) (-32 -1392 64 ) +4 3273 3274 (-32 -1472 64 ) (-32 -1024 64 ) (0 -1024 64 ) (0 -1472 64 ) +4 3274 3386 (0 -1472 -64 ) (0 -1480 -64 ) (-32 -1480 -64 ) (-32 -1472 -64 ) +4 3274 3385 (0 -1392 -64 ) (0 -1472 -64 ) (-32 -1472 -64 ) (-32 -1392 -64 ) +4 3274 3383 (-32 -1024 -64 ) (0 -1024 -64 ) (0 -1392 -64 ) (-32 -1392 -64 ) +4 3274 3277 (-32 -1408 -64 ) (-32 -1480 -64 ) (-32 -1480 64 ) (-32 -1408 64 ) +4 3274 3276 (-32 -1392 -64 ) (-32 -1408 -64 ) (-32 -1408 64 ) (-32 -1392 64 ) +4 3274 3275 (-32 -1024 -64 ) (-32 -1392 -64 ) (-32 -1392 64 ) (-32 -1024 64 ) +4 3275 3383 (-208 -1024 -64 ) (-32 -1024 -64 ) (-32 -1392 -64 ) (-208 -1392 -64 ) +4 3275 3337 (-208 -1088 -64 ) (-208 -1392 -64 ) (-208 -1392 192 ) (-208 -1088 192 ) +4 3275 3326 (-208 -1024 -64 ) (-208 -1088 -64 ) (-208 -1088 192 ) (-208 -1024 192 ) +4 3275 3276 (-32 -1392 -64 ) (-32 -1392 192 ) (-128 -1392 192 ) (-128 -1392 -64 ) +4 3276 3388 (-32 -1392 -64 ) (-32 -1408 -64 ) (-112 -1408 -64 ) (-128 -1392 -64 ) +4 3276 3277 (-32 -1408 -64 ) (-32 -1408 192 ) (-112 -1408 192 ) (-112 -1408 -64 ) +3 3277 3390 (-32 -1472 -64 ) (-32 -1488 -64 ) (-48 -1472 -64 ) +4 3277 3389 (-32 -1408 -64 ) (-32 -1472 -64 ) (-48 -1472 -64 ) (-112 -1408 -64 ) +4 3278 3392 (-32 -1504 -64 ) (-208 -1504 -64 ) (-208 -1472 -64 ) (-64 -1472 -64 ) +4 3278 3391 (-208 -1472 -64 ) (-208 -1408 -64 ) (-128 -1408 -64 ) (-64 -1472 -64 ) +4 3278 3353 (-208 -1408 -64 ) (-208 -1504 -64 ) (-208 -1504 192 ) (-208 -1408 192 ) +4 3278 3279 (-32 -1504 192 ) (-208 -1504 192 ) (-208 -1504 88 ) (-32 -1504 88 ) +4 3278 3280 (-208 -1504 64 ) (-208 -1504 -64 ) (-32 -1504 -64 ) (-32 -1504 64 ) +4 3279 3355 (-208 -1632 88 ) (-208 -1632 192 ) (-208 -1504 192 ) (-208 -1504 88 ) +4 3279 3281 (0 -1632 192 ) (-208 -1632 192 ) (-208 -1632 96 ) (0 -1632 96 ) +4 3280 3392 (-32 -1632 -64 ) (-208 -1632 -64 ) (-208 -1504 -64 ) (-32 -1504 -64 ) +4 3280 3387 (0 -1504 -64 ) (0 -1632 -64 ) (-32 -1632 -64 ) (-32 -1504 -64 ) +4 3280 3359 (-208 -1504 -64 ) (-208 -1632 -64 ) (-208 -1632 32 ) (-208 -1504 32 ) +4 3280 3356 (-208 -1632 32 ) (-208 -1632 64 ) (-208 -1504 64 ) (-208 -1504 32 ) +4 3280 3282 (-208 -1632 32 ) (-208 -1632 -64 ) (0 -1632 -64 ) (0 -1632 32 ) +4 3281 3357 (-208 -1640 96 ) (-208 -1640 192 ) (-208 -1632 192 ) (-208 -1632 96 ) +4 3281 3289 (-208 -1640 192 ) (-208 -1640 96 ) (-192 -1640 96 ) (-192 -1640 192 ) +4 3281 3283 (-192 -1640 96 ) (0 -1640 96 ) (0 -1640 192 ) (-192 -1640 192 ) +4 3282 3392 (-32 -1640 -64 ) (-208 -1640 -64 ) (-208 -1632 -64 ) (-32 -1632 -64 ) +4 3282 3387 (0 -1632 -64 ) (0 -1640 -64 ) (-32 -1640 -64 ) (-32 -1632 -64 ) +4 3282 3359 (-208 -1632 -64 ) (-208 -1640 -64 ) (-208 -1640 32 ) (-208 -1632 32 ) +4 3282 3291 (-208 -1640 32 ) (-208 -1640 0 ) (-192 -1640 0 ) (-192 -1640 32 ) +4 3282 3288 (-192 -1640 0 ) (-64 -1640 0 ) (-64 -1640 32 ) (-192 -1640 32 ) +4 3282 3287 (-64 -1640 0 ) (-32 -1640 0 ) (-32 -1640 32 ) (-64 -1640 32 ) +4 3282 3292 (-208 -1640 0 ) (-208 -1640 -64 ) (0 -1640 -64 ) (0 -1640 0 ) +4 3283 3304 (-128 -1760 64 ) (-64 -1760 64 ) (-64 -1760 176 ) (-128 -1760 176 ) +4 3283 3309 (-192 -1760 176 ) (-192 -1760 64 ) (-128 -1760 64 ) (-128 -1760 176 ) +4 3283 3301 (-192 -1760 256 ) (-192 -1760 176 ) (-64 -1760 176 ) (-64 -1760 256 ) +4 3283 3299 (-64 -1760 5542.669922 ) (-72 -1760 5542.669922 ) (-72 -1760 256 ) (-64 -1760 256 ) +4 3283 3300 (-72 -1760 5542.669922 ) (-192 -1760 5542.669922 ) (-192 -1760 256 ) (-72 -1760 256 ) +4 3283 3296 (-48 -1760 256 ) (-64 -1760 256 ) (-64 -1760 64 ) (-48 -1760 64 ) +4 3283 3294 (0 -1760 72 ) (0 -1760 256 ) (-48 -1760 256 ) (-48 -1760 64 ) +4 3283 3293 (0 -1760 256 ) (0 -1760 5542.669922 ) (-64 -1760 5542.669922 ) (-64 -1760 256 ) +3 3283 3290 (-192 -1760 64 ) (-192 -1760 72 ) (-192 -1744 72 ) +4 3283 3289 (-192 -1640 5542.669922 ) (-192 -1640 72 ) (-192 -1760 72 ) (-192 -1760 5542.669922 ) +4 3283 3285 (-32 -1760 64 ) (-192 -1760 64 ) (-192 -1640 64 ) (-32 -1640 64 ) +4 3284 3292 (-24 -1648 0 ) (0 -1648 0 ) (0 -1752 0 ) (-24 -1752 0 ) +4 3285 3310 (-64 -1760 64 ) (-192 -1760 64 ) (-192 -1760 56 ) (-64 -1760 56 ) +4 3285 3286 (-192 -1760 56 ) (-192 -1640 56 ) (-64 -1640 56 ) (-64 -1760 56 ) +4 3286 3310 (-64 -1760 56 ) (-192 -1760 56 ) (-192 -1760 48 ) (-64 -1760 48 ) +4 3287 3288 (-64 -1640 0 ) (-64 -1760 0 ) (-64 -1760 32 ) (-64 -1640 32 ) +4 3287 3292 (-32 -1760 0 ) (-64 -1760 0 ) (-64 -1640 0 ) (-32 -1640 0 ) +4 3288 3316 (-192 -1760 0 ) (-64 -1760 0 ) (-64 -1760 32 ) (-192 -1760 32 ) +4 3288 3291 (-192 -1640 32 ) (-192 -1640 0 ) (-192 -1760 0 ) (-192 -1760 32 ) +4 3288 3292 (-64 -1760 0 ) (-192 -1760 0 ) (-192 -1640 0 ) (-64 -1640 0 ) +4 3289 3358 (-208 -1760 72 ) (-208 -1760 96 ) (-208 -1640 96 ) (-208 -1640 72 ) +4 3289 3357 (-208 -1760 96 ) (-208 -1760 192 ) (-208 -1640 192 ) (-208 -1640 96 ) +4 3289 3319 (-208 -1760 192 ) (-208 -1760 256 ) (-208 -1640 256 ) (-208 -1640 192 ) +4 3289 3318 (-208 -1760 256 ) (-208 -1760 5542.669922 ) (-208 -1640 5542.669922 ) (-208 -1640 256 ) +4 3289 3309 (-208 -1760 176 ) (-208 -1760 72 ) (-192 -1760 72 ) (-192 -1760 176 ) +4 3289 3301 (-208 -1760 256 ) (-208 -1760 176 ) (-192 -1760 176 ) (-192 -1760 256 ) +4 3289 3300 (-208 -1760 5542.669922 ) (-208 -1760 256 ) (-192 -1760 256 ) (-192 -1760 5542.669922 ) +4 3289 3290 (-192 -1744 72 ) (-192 -1760 72 ) (-208 -1760 72 ) (-208 -1744 72 ) +3 3290 3358 (-208 -1760 64 ) (-208 -1760 72 ) (-208 -1744 72 ) +4 3290 3309 (-208 -1760 72 ) (-208 -1760 64 ) (-192 -1760 64 ) (-192 -1760 72 ) +4 3291 3317 (-208 -1760 32 ) (-208 -1760 0 ) (-192 -1760 0 ) (-192 -1760 32 ) +4 3291 3292 (-192 -1760 0 ) (-208 -1760 0 ) (-208 -1640 0 ) (-192 -1640 0 ) +4 3292 3392 (-32 -1760 -64 ) (-208 -1760 -64 ) (-208 -1640 -64 ) (-32 -1640 -64 ) +4 3292 3387 (0 -1640 -64 ) (0 -1760 -64 ) (-32 -1760 -64 ) (-32 -1640 -64 ) +4 3292 3317 (-208 -1760 0 ) (-208 -1760 -64 ) (-192 -1760 -64 ) (-192 -1760 0 ) +4 3292 3316 (-192 -1760 -64 ) (-64 -1760 -64 ) (-64 -1760 0 ) (-192 -1760 0 ) +4 3292 3298 (-64 -1760 -64 ) (0 -1760 -64 ) (0 -1760 0 ) (-64 -1760 0 ) +4 3293 3651 (0 -2048 298.666718 ) (0 -2048 341.333282 ) (-64 -2048 341.333496 ) (-64 -2048 298.666992 ) +4 3293 3650 (0 -2048 341.333282 ) (0 -2048 5542.669922 ) (-64 -2048 5542.669922 ) (-64 -2048 341.333496 ) +5 3293 3299 (-64 -1760 5542.669922 ) (-64 -1760 256 ) (-64 -1984 256 ) (-64 -2048 298.666718 ) (-64 -2048 5542.669922 ) +4 3293 3297 (-64 -1920 256 ) (-64 -1856 256 ) (0 -1856 256 ) (0 -1920 256 ) +4 3293 3296 (-64 -1856 256 ) (-64 -1760 256 ) (-48 -1760 256 ) (-48 -1856 256 ) +4 3293 3294 (-48 -1760 256 ) (0 -1760 256 ) (0 -1776 256 ) (-48 -1776 256 ) +4 3293 3295 (0 -1776 256 ) (0 -1856 256 ) (-48 -1856 256 ) (-48 -1776 256 ) +4 3294 3296 (-48 -1776 64 ) (-48 -1776 256 ) (-48 -1760 256 ) (-48 -1760 64 ) +4 3294 3295 (-48 -1776 256 ) (-48 -1776 64 ) (0 -1776 72 ) (0 -1776 256 ) +4 3295 3297 (0 -1856 184.888062 ) (0 -1856 256 ) (-48 -1856 256 ) (-48 -1856 184.888062 ) +4 3295 3296 (-48 -1856 64 ) (-48 -1856 256 ) (-48 -1776 256 ) (-48 -1776 64 ) +4 3295 3298 (0 -1776 0 ) (0 -1856 0 ) (-48 -1856 0 ) (-48 -1776 0 ) +4 3296 3304 (-64 -1760 176 ) (-64 -1760 64 ) (-64 -1856 64 ) (-64 -1856 176 ) +4 3296 3301 (-64 -1760 256 ) (-64 -1760 176 ) (-64 -1856 176 ) (-64 -1856 256 ) +4 3296 3297 (-48 -1856 184.888046 ) (-48 -1856 256 ) (-64 -1856 256 ) (-64 -1856 184.888046 ) +3 3297 3303 (-64 -1920 256 ) (-64 -1856 256 ) (-64 -1856 184.888062 ) +4 3298 3661 (0 -2048 -64 ) (0 -2048 0 ) (-64 -2048 0 ) (-64 -2048 -64 ) +4 3298 3392 (-32 -2048 -64 ) (-64 -2048 -64 ) (-64 -1760 -64 ) (-32 -1760 -64 ) +4 3298 3387 (0 -1760 -64 ) (0 -2048 -64 ) (-32 -2048 -64 ) (-32 -1760 -64 ) +4 3298 3316 (-64 -1760 0 ) (-64 -1760 -64 ) (-64 -1792 -64 ) (-64 -1792 0 ) +4 3299 3651 (-64 -2048 298.666718 ) (-64 -2048 341.333282 ) (-72 -2048 341.333496 ) (-72 -2048 298.666992 ) +4 3299 3650 (-64 -2048 341.333282 ) (-64 -2048 5542.669922 ) (-72 -2048 5542.669922 ) (-72 -2048 341.333496 ) +4 3299 3302 (-64 -1856 256 ) (-64 -1984 256 ) (-72 -1984 256 ) (-72 -1856 256 ) +4 3299 3301 (-72 -1760 256 ) (-64 -1760 256 ) (-64 -1856 256 ) (-72 -1856 256 ) +5 3299 3300 (-72 -1760 256 ) (-72 -1984 256 ) (-72 -2048 298.666718 ) (-72 -2048 5542.669922 ) (-72 -1760 5542.669922 ) +4 3300 3652 (-208 -2048 5542.669922 ) (-208 -2048 256 ) (-72 -2048 256 ) (-72 -2048 5542.669922 ) +4 3300 3318 (-208 -2048 256 ) (-208 -2048 5542.669922 ) (-208 -1760 5542.669922 ) (-208 -1760 256 ) +4 3300 3302 (-208 -2048 256 ) (-208 -1856 256 ) (-72 -1856 256 ) (-72 -2048 256 ) +4 3300 3301 (-208 -1856 256 ) (-208 -1760 256 ) (-72 -1760 256 ) (-72 -1856 256 ) +4 3301 3357 (-208 -1760 192 ) (-208 -1760 176 ) (-208 -1856 176 ) (-208 -1856 192 ) +4 3301 3319 (-208 -1856 256 ) (-208 -1760 256 ) (-208 -1760 192 ) (-208 -1856 192 ) +4 3301 3304 (-128 -1760 176 ) (-64 -1760 176 ) (-64 -1856 176 ) (-128 -1856 176 ) +4 3301 3309 (-208 -1856 176 ) (-208 -1760 176 ) (-128 -1760 176 ) (-128 -1856 176 ) +4 3301 3303 (-136 -1856 176 ) (-72 -1856 176 ) (-64 -1856 184.891190 ) (-64 -1856 256 ) +4 3301 3302 (-208 -1856 176 ) (-136 -1856 176 ) (-64 -1856 256 ) (-208 -1856 256 ) +4 3302 3653 (-208 -2048 256 ) (-208 -2048 176 ) (-136 -2048 176 ) (-64 -2048 256 ) +4 3302 3378 (-208 -2048 176 ) (-208 -2048 192 ) (-208 -1952 192 ) (-208 -1952 176 ) +4 3302 3357 (-208 -1952 192 ) (-208 -1856 192 ) (-208 -1856 176 ) (-208 -1952 176 ) +4 3302 3319 (-208 -2048 192 ) (-208 -2048 256 ) (-208 -1856 256 ) (-208 -1856 192 ) +4 3302 3309 (-208 -2048 176 ) (-208 -1856 176 ) (-136 -1856 176 ) (-136 -2048 176 ) +4 3302 3303 (-136 -1920 176 ) (-136 -1856 176 ) (-64 -1856 256 ) (-64 -1919.982788 256 ) +3 3303 3304 (-128 -1856 176 ) (-72 -1856 176 ) (-128 -1912 176 ) +4 3303 3309 (-136 -1856 176 ) (-128 -1856 176 ) (-128 -1912 176 ) (-136 -1920 176 ) +4 3304 3312 (-64 -1800 64 ) (-64 -1856 64 ) (-128 -1920 64 ) (-128 -1800 64 ) +4 3304 3311 (-64 -1768 64 ) (-64 -1800 64 ) (-128 -1800 64 ) (-128 -1768 64 ) +4 3304 3310 (-128 -1760 64 ) (-64 -1760 64 ) (-64 -1768 64 ) (-128 -1768 64 ) +4 3304 3305 (-72 -1864 144 ) (-72 -1864 168 ) (-120 -1912 168 ) (-120 -1912 144 ) +4 3304 3306 (-120 -1912 64 ) (-72 -1864 64 ) (-72 -1864 136 ) (-120 -1912 136 ) +4 3304 3309 (-128 -1760 64 ) (-128 -1920 64 ) (-128 -1920 176 ) (-128 -1760 176 ) +4 3307 3309 (-128 -2040 144 ) (-128 -2040 168 ) (-128 -1928 168 ) (-128 -1928 144 ) +4 3308 3309 (-128 -1928 64 ) (-128 -2040 64 ) (-128 -2040 136 ) (-128 -1928 136 ) +4 3309 3655 (-208 -2048 176 ) (-208 -2048 64 ) (-128 -2048 64 ) (-128 -2048 176 ) +4 3309 3379 (-208 -2048 64 ) (-208 -2048 72 ) (-208 -1952 72 ) (-208 -1952 64 ) +4 3309 3378 (-208 -2048 72 ) (-208 -2048 176 ) (-208 -1952 176 ) (-208 -1952 72 ) +4 3309 3358 (-208 -1760 96 ) (-208 -1760 64 ) (-208 -1952 64 ) (-208 -1952 96 ) +4 3309 3357 (-208 -1952 176 ) (-208 -1760 176 ) (-208 -1760 96 ) (-208 -1952 96 ) +4 3309 3314 (-208 -1776 64 ) (-208 -1760 64 ) (-192 -1760 64 ) (-192 -1776 64 ) +4 3309 3315 (-208 -2048 64 ) (-208 -1776 64 ) (-192 -1776 64 ) (-192 -2048 64 ) +4 3309 3313 (-128 -1800 64 ) (-128 -2048 64 ) (-192 -2048 64 ) (-192 -1800 64 ) +4 3309 3311 (-128 -1768 64 ) (-128 -1800 64 ) (-192 -1800 64 ) (-192 -1768 64 ) +4 3309 3310 (-192 -1760 64 ) (-128 -1760 64 ) (-128 -1768 64 ) (-192 -1768 64 ) +3 3310 3314 (-192 -1768 60 ) (-192 -1768 64 ) (-192 -1760 64 ) +4 3310 3311 (-192 -1768 64 ) (-192 -1768 48 ) (-64 -1768 48 ) (-64 -1768 64 ) +4 3311 3314 (-192 -1776 64 ) (-192 -1768 64 ) (-192 -1768 60 ) (-192 -1776 56 ) +4 3311 3315 (-192 -1800 40 ) (-192 -1800 64 ) (-192 -1776 64 ) (-192 -1776 40 ) +4 3311 3312 (-128 -1800 40 ) (-64 -1800 40 ) (-64 -1800 64 ) (-128 -1800 64 ) +4 3311 3313 (-192 -1800 64 ) (-192 -1800 40 ) (-128 -1800 40 ) (-128 -1800 64 ) +4 3312 3313 (-128 -1800 64 ) (-128 -1800 32 ) (-128 -1920 32 ) (-128 -1920 64 ) +4 3313 3663 (-192 -2048 32 ) (-128 -2048 32 ) (-128 -2048 64 ) (-192 -2048 64 ) +4 3313 3315 (-192 -1800 32 ) (-192 -2048 32 ) (-192 -2048 64 ) (-192 -1800 64 ) +3 3314 3358 (-208 -1776 64 ) (-208 -1760 64 ) (-208 -1776 56 ) +4 3314 3315 (-192 -1776 56 ) (-192 -1776 64 ) (-208 -1776 64 ) (-208 -1776 56 ) +4 3315 3663 (-208 -2048 64 ) (-208 -2048 32 ) (-192 -2048 32 ) (-192 -2048 64 ) +4 3315 3379 (-208 -2048 32 ) (-208 -2048 64 ) (-208 -1952 64 ) (-208 -1952 32 ) +4 3315 3358 (-208 -1952 64 ) (-208 -1776 64 ) (-208 -1776 32 ) (-208 -1952 32 ) +4 3316 3392 (-192 -1792 -64 ) (-192 -1760 -64 ) (-64 -1760 -64 ) (-64 -1792 -64 ) +4 3316 3317 (-192 -1776 32 ) (-192 -1760 32 ) (-192 -1760 -64 ) (-192 -1776 -64 ) +4 3317 3392 (-208 -1776 -64 ) (-208 -1760 -64 ) (-192 -1760 -64 ) (-192 -1776 -64 ) +4 3318 3787 (-1024 -2048 5542.669922 ) (-1024 -2048 256 ) (-960 -2048 256 ) (-960 -2048 5542.669922 ) +4 3318 3708 (-544 -2048 256 ) (-480 -2048 256 ) (-480 -2048 304 ) (-544 -2048 304 ) +4 3318 3709 (-960 -2048 256 ) (-544 -2048 256 ) (-544 -2048 304 ) (-960 -2048 304 ) +4 3318 3707 (-480 -2048 304 ) (-480 -2048 5542.669922 ) (-960 -2048 5542.669922 ) (-960 -2048 304 ) +4 3318 3652 (-480 -2048 256 ) (-208 -2048 256 ) (-208 -2048 5542.669922 ) (-480 -2048 5542.669922 ) +4 3318 3420 (-1024 -1392 256 ) (-1024 -2048 256 ) (-1024 -2048 5542.669922 ) (-1024 -1392 5542.669922 ) +4 3318 3414 (-1024 -1024 5542.669922 ) (-1024 -1024 256 ) (-1024 -1392 256 ) (-1024 -1392 5542.669922 ) +4 3318 3320 (-544 -1024 256 ) (-480 -1024 256 ) (-480 -1952 256 ) (-544 -1952 256 ) +4 3318 3319 (-480 -1024 256 ) (-208 -1024 256 ) (-208 -2048 256 ) (-480 -2048 256 ) +4 3318 3321 (-1024 -1024 256 ) (-544 -1024 256 ) (-544 -2048 256 ) (-1024 -2048 256 ) +4 3319 3653 (-480 -2048 192 ) (-208 -2048 192 ) (-208 -2048 256 ) (-480 -2048 256 ) +4 3319 3378 (-208 -1952 192 ) (-208 -2048 192 ) (-480 -2048 192 ) (-480 -1952 192 ) +4 3319 3368 (-352 -1952 192 ) (-480 -1952 192 ) (-480 -1728 192 ) (-352 -1728 192 ) +3 3319 3366 (-480 -1728 192 ) (-480 -1672 192 ) (-368 -1728 192 ) +4 3319 3360 (-368 -1392 192 ) (-352 -1392 192 ) (-352 -1488 192 ) (-368 -1504 192 ) +4 3319 3361 (-480 -1672 192 ) (-480 -1392 192 ) (-368 -1392 192 ) (-368 -1728 192 ) +4 3319 3357 (-208 -1632 192 ) (-208 -1952 192 ) (-352 -1952 192 ) (-352 -1720 192 ) +4 3319 3355 (-208 -1504.010132 192 ) (-208 -1632 192 ) (-352 -1720 192 ) (-352 -1504.010132 192 ) +3 3319 3354 (-352 -1488 192 ) (-352 -1408 192 ) (-272 -1408 192 ) +5 3319 3353 (-208 -1408 192 ) (-208 -1504.010132 192 ) (-352 -1504.010132 192 ) (-352 -1504 192 ) (-256 -1408 192 ) +4 3319 3352 (-272 -1408 192 ) (-352 -1408 192 ) (-352 -1392 192 ) (-256 -1392 192 ) +5 3319 3344 (-405.333313 -1109.333374 192 ) (-384 -1088 192 ) (-256 -1088 192 ) (-256 -1344 192 ) (-272 -1376 192 ) +5 3319 3343 (-280 -1392 192 ) (-480 -1392 192 ) (-480 -1184 192 ) (-405.333313 -1109.333374 192 ) (-272 -1376 192 ) +3 3319 3342 (-256 -1392 192 ) (-280 -1392 192 ) (-256 -1344 192 ) +3 3319 3340 (-416 -1088 192 ) (-406.666626 -1088 192 ) (-412.972961 -1094.054077 192 ) +4 3319 3339 (-480 -1158.400024 192 ) (-480 -1088 192 ) (-416 -1088 192 ) (-412.972961 -1094.054077 192 ) +4 3319 3338 (-256 -1344 192 ) (-256 -1088 192 ) (-240 -1088 192 ) (-240 -1344 192 ) +4 3319 3337 (-208 -1088 192 ) (-208 -1392 192 ) (-240 -1392 192 ) (-240 -1088 192 ) +3 3319 3329 (-480 -1024 192 ) (-432 -1024 192 ) (-480 -1048 192 ) +4 3319 3327 (-320 -1024 192 ) (-256 -1024 192 ) (-256 -1088 192 ) (-384 -1088 192 ) +4 3319 3326 (-256 -1024 192 ) (-208 -1024 192 ) (-208 -1088 192 ) (-256 -1088 192 ) +5 3319 3324 (-373.333344 -1024 192 ) (-340 -1024 192 ) (-406.666595 -1088 192 ) (-416 -1088 192 ) (-432 -1056 192 ) +4 3319 3323 (-432 -1024 192 ) (-373.333344 -1024 192 ) (-432 -1056 192 ) (-444.799988 -1030.400024 192 ) +4 3319 3322 (-416 -1088 192 ) (-480 -1088 192 ) (-480 -1048 192 ) (-444.799988 -1030.400024 192 ) +4 3319 3320 (-480 -1024 192 ) (-480 -1952 192 ) (-480 -1952 256 ) (-480 -1024 256 ) +4 3320 3368 (-480 -1728 192 ) (-480 -1952 192 ) (-544 -1952 192 ) (-544 -1728 192 ) +4 3320 3366 (-480 -1672 192 ) (-480 -1728 192 ) (-544 -1728 192 ) (-544 -1640 192 ) +4 3320 3361 (-480 -1392 192 ) (-480 -1672 192 ) (-544 -1640 192 ) (-544 -1392 192 ) +4 3320 3343 (-480 -1184 192 ) (-480 -1392 192 ) (-544 -1392 192 ) (-544 -1248 192 ) +4 3320 3339 (-480 -1088 192 ) (-480 -1158.400024 192 ) (-544 -1219.840088 192 ) (-544 -1088 192 ) +4 3320 3329 (-544 -1024 192 ) (-480 -1024 192 ) (-480 -1048 192 ) (-544 -1080 192 ) +4 3320 3322 (-480 -1048 192 ) (-480 -1088 192 ) (-544 -1088 192 ) (-544 -1080 192 ) +4 3320 3321 (-544 -1024 192 ) (-544 -1952 192 ) (-544 -1952 256 ) (-544 -1024 256 ) +4 3321 3787 (-1024 -2048 256 ) (-1024 -2048 192 ) (-960 -2048 192 ) (-960 -2048 256 ) +4 3321 3709 (-960 -2048 192 ) (-544 -2048 192 ) (-544 -2048 256 ) (-960 -2048 256 ) +4 3321 3420 (-1024 -1392 192 ) (-1024 -2048 192 ) (-1024 -2048 256 ) (-1024 -1392 256 ) +4 3321 3414 (-1024 -1024 256 ) (-1024 -1024 192 ) (-1024 -1392 192 ) (-1024 -1392 256 ) +4 3321 3380 (-1024 -2048 192 ) (-1024 -1952 192 ) (-544 -1952 192 ) (-544 -2048 192 ) +4 3321 3375 (-1024 -1952 192 ) (-1024 -1392 192 ) (-720 -1392 192 ) (-1000 -1952 192 ) +4 3321 3368 (-544 -1728 192 ) (-544 -1952 192 ) (-1000 -1952 192 ) (-888 -1728 192 ) +4 3321 3366 (-544 -1640 192 ) (-544 -1728 192 ) (-888 -1728 192 ) (-784 -1520 192 ) +4 3321 3364 (-640 -1440 192 ) (-640 -1592 192 ) (-720 -1552 192 ) (-720 -1520 192 ) +4 3321 3363 (-720 -1392 192 ) (-640 -1392 192 ) (-640 -1424 192 ) (-720 -1504 192 ) +4 3321 3362 (-624 -1424 192 ) (-624 -1600 192 ) (-640 -1592 192 ) (-640 -1440 192 ) +3 3321 3365 (-720 -1392 192 ) (-720 -1552 192 ) (-784 -1520 192 ) +4 3321 3361 (-624 -1392 192 ) (-544 -1392 192 ) (-544 -1640 192 ) (-624 -1600 192 ) +4 3321 3348 (-1024 -1392 192 ) (-1024 -1088 192 ) (-784 -1088 192 ) (-784 -1392 192 ) +3 3321 3347 (-640 -1392 192 ) (-723.333313 -1392 192 ) (-640 -1312 192 ) +5 3321 3346 (-784 -1088 192 ) (-624 -1088 192 ) (-624 -1296.640137 192 ) (-723.333313 -1392 192 ) (-784 -1392 192 ) +4 3321 3343 (-544 -1248 192 ) (-544 -1392 192 ) (-624 -1392 192 ) (-624 -1328 192 ) +4 3321 3339 (-624 -1088 192 ) (-544 -1088 192 ) (-544 -1219.840088 192 ) (-624 -1296.640015 192 ) +4 3321 3335 (-1024 -1088 192 ) (-1024 -1024 192 ) (-960 -1024 192 ) (-960 -1088 192 ) +4 3321 3334 (-960 -1024 192 ) (-640 -1024 192 ) (-640 -1088 192 ) (-960 -1088 192 ) +4 3321 3333 (-640 -1024 192 ) (-608 -1024 192 ) (-608 -1088 192 ) (-640 -1088 192 ) +4 3321 3332 (-608 -1024 192 ) (-576 -1024 192 ) (-576 -1088 192 ) (-608 -1088 192 ) +5 3321 3329 (-576 -1024 192 ) (-544 -1024 192 ) (-544 -1080 192 ) (-560 -1088 192 ) (-576 -1088 192 ) +3 3321 3322 (-544 -1080 192 ) (-544 -1088 192 ) (-560 -1088 192 ) +4 3322 3339 (-416 -1088 192 ) (-560 -1088 192 ) (-560 -1088 -32 ) (-416 -1088 -32 ) +4 3322 3330 (-464 -1040 36 ) (-444.799957 -1030.400024 36 ) (-444.799957 -1030.400024 32 ) (-464 -1040 32 ) +4 3322 3329 (-560 -1088 36 ) (-560 -1088 192 ) (-444.799957 -1030.400024 192 ) (-444.799957 -1030.400024 36 ) +4 3322 3331 (-560 -1088 -32 ) (-560 -1088 0 ) (-444.799957 -1030.400024 0 ) (-444.799957 -1030.400024 -32 ) +4 3322 3324 (-416 -1088 192 ) (-416 -1088 -32 ) (-432 -1056 -32 ) (-432 -1056 192 ) +4 3322 3323 (-432 -1056 -32 ) (-444.799988 -1030.400024 -32 ) (-444.799988 -1030.400024 192 ) (-432 -1056 192 ) +3 3322 3325 (-416 -1088 -32 ) (-560 -1088 -32 ) (-444.799957 -1030.400024 -32 ) +4 3323 3330 (-432 -1024 36 ) (-432 -1024 32 ) (-444.799957 -1030.400024 32 ) (-444.799957 -1030.400024 36 ) +4 3323 3329 (-444.799957 -1030.400024 192 ) (-432 -1024 192 ) (-432 -1024 36 ) (-444.799957 -1030.400024 36 ) +4 3323 3331 (-432 -1024 0 ) (-432 -1024 -32 ) (-444.799957 -1030.400024 -32 ) (-444.799957 -1030.400024 0 ) +4 3323 3325 (-432 -1056 -32 ) (-444.799957 -1030.400024 -32 ) (-432 -1024 -32 ) (-373.333405 -1024 -32 ) +4 3323 3324 (-432 -1056 192 ) (-432 -1056 -32 ) (-373.335114 -1024 -32 ) (-373.335144 -1024 192 ) +4 3324 3340 (-406.666626 -1088 -32 ) (-406.666626 -1088 192 ) (-416 -1088 192 ) (-416 -1088 -32 ) +5 3324 3325 (-340 -1024 -32 ) (-406.666626 -1088 -32 ) (-416 -1088 -32 ) (-432 -1056 -32 ) (-373.333405 -1024 -32 ) +4 3325 3400 (-368 -1050.880005 -64 ) (-406.666626 -1088 -64 ) (-466.285706 -1088 -64 ) (-368 -1028.173950 -64 ) +4 3325 3397 (-361.142883 -1024 -64 ) (-340 -1024 -64 ) (-368 -1050.880005 -64 ) (-368 -1028.173950 -64 ) +4 3325 3393 (-432 -1024 -64 ) (-361.142883 -1024 -64 ) (-466.285706 -1088 -64 ) (-560 -1088 -64 ) +4 3325 3341 (-560 -1088 -64 ) (-406.666626 -1088 -64 ) (-406.666626 -1088 -32 ) (-560 -1088 -32 ) +4 3325 3331 (-560 -1088 -64 ) (-560 -1088 -32 ) (-432 -1024 -32 ) (-432 -1024 -64 ) +4 3326 3384 (-256 -1024 -64 ) (-240 -1024 -64 ) (-240 -1088 -64 ) (-256 -1088 -64 ) +4 3326 3383 (-240 -1024 -64 ) (-208 -1024 -64 ) (-208 -1088 -64 ) (-240 -1088 -64 ) +4 3326 3338 (-256 -1088 -64 ) (-240 -1088 -64 ) (-240 -1088 192 ) (-256 -1088 192 ) +4 3326 3337 (-240 -1088 -64 ) (-208 -1088 -64 ) (-208 -1088 192 ) (-240 -1088 192 ) +4 3326 3328 (-256 -1024 -64 ) (-256 -1088 -64 ) (-256 -1088 -32 ) (-256 -1024 -32 ) +4 3326 3327 (-256 -1088 -32 ) (-256 -1088 192 ) (-256 -1024 192 ) (-256 -1024 -32 ) +4 3327 3344 (-256 -1088 -32 ) (-256 -1088 192 ) (-384 -1088 192 ) (-384 -1088 -32 ) +4 3327 3328 (-384 -1088 -32 ) (-320 -1024 -32 ) (-256 -1024 -32 ) (-256 -1088 -32 ) +3 3328 3405 (-368 -1088 -64 ) (-384 -1088 -64 ) (-368 -1072 -64 ) +5 3328 3396 (-320 -1024 -64 ) (-256 -1024 -64 ) (-256 -1088 -64 ) (-368 -1088 -64 ) (-368 -1072 -64 ) +4 3328 3345 (-384 -1088 -64 ) (-256 -1088 -64 ) (-256 -1088 -32 ) (-384 -1088 -32 ) +4 3329 3339 (-560 -1088 36 ) (-560 -1088 192 ) (-576 -1088 192 ) (-576 -1088 36 ) +4 3329 3332 (-576 -1088 40 ) (-576 -1088 192 ) (-576 -1024 192 ) (-576 -1024 40 ) +3 3329 3330 (-432.007813 -1024 36 ) (-464.001556 -1039.996826 36 ) (-472 -1024 36 ) +4 3331 3393 (-576 -1024 -64 ) (-432 -1024 -64 ) (-560 -1088 -64 ) (-576 -1088 -64 ) +4 3331 3339 (-560 -1088 -32 ) (-560 -1088 0 ) (-576 -1088 0 ) (-576 -1088 -32 ) +4 3331 3341 (-576 -1088 -64 ) (-560 -1088 -64 ) (-560 -1088 -32 ) (-576 -1088 -32 ) +4 3331 3336 (-576 -1024 -64 ) (-576 -1088 -64 ) (-576 -1088 0 ) (-576 -1024 0 ) +4 3332 3339 (-576 -1088 40 ) (-576 -1088 192 ) (-608 -1088 192 ) (-608 -1088 40 ) +4 3332 3333 (-608 -1088 44 ) (-608 -1088 192 ) (-608 -1024 192 ) (-608 -1024 44 ) +4 3333 3346 (-624 -1088 192 ) (-640 -1088 192 ) (-640 -1088 44 ) (-624 -1088 44 ) +4 3333 3339 (-608 -1088 192 ) (-624 -1088 192 ) (-624 -1088 44 ) (-608 -1088 44 ) +4 3333 3334 (-640 -1088 48 ) (-640 -1088 192 ) (-640 -1024 192 ) (-640 -1024 48 ) +4 3334 3348 (-784 -1088 192 ) (-960 -1088 192 ) (-960 -1088 48 ) (-784 -1088 48 ) +4 3334 3346 (-640 -1088 192 ) (-784 -1088 192 ) (-784 -1088 48 ) (-640 -1088 48 ) +4 3334 3335 (-960 -1088 48 ) (-960 -1088 192 ) (-960 -1024 192 ) (-960 -1024 48 ) +4 3335 3414 (-1024 -1024 192 ) (-1024 -1024 48 ) (-1024 -1088 48 ) (-1024 -1088 192 ) +4 3335 3348 (-960 -1088 192 ) (-1024 -1088 192 ) (-1024 -1088 48 ) (-960 -1088 48 ) +4 3336 3415 (-1024 -1024 0 ) (-1024 -1024 -64 ) (-1024 -1088 -64 ) (-1024 -1088 0 ) +4 3336 3393 (-1024 -1088 -64 ) (-1024 -1024 -64 ) (-576 -1024 -64 ) (-576 -1088 -64 ) +4 3336 3351 (-1024 -1088 -64 ) (-784 -1088 -64 ) (-784 -1088 0 ) (-1024 -1088 0 ) +4 3336 3346 (-784 -1088 -64 ) (-624 -1088 -64 ) (-624 -1088 0 ) (-784 -1088 0 ) +4 3336 3339 (-576 -1088 -32 ) (-576 -1088 0 ) (-624 -1088 0 ) (-624 -1088 -32 ) +4 3336 3341 (-624 -1088 -64 ) (-576 -1088 -64 ) (-576 -1088 -32 ) (-624 -1088 -32 ) +4 3337 3383 (-240 -1088 -64 ) (-208 -1088 -64 ) (-208 -1392 -64 ) (-240 -1392 -64 ) +4 3337 3338 (-240 -1088 192 ) (-240 -1088 -64 ) (-240 -1344 -64 ) (-240 -1344 192 ) +4 3338 3384 (-256 -1088 -64 ) (-240 -1088 -64 ) (-240 -1344 -64 ) (-256 -1344 -64 ) +4 3338 3344 (-256 -1088 192 ) (-256 -1088 -32 ) (-256 -1344 -32 ) (-256 -1344 192 ) +4 3338 3345 (-256 -1088 -32 ) (-256 -1088 -64 ) (-256 -1344 -64 ) (-256 -1344 -32 ) +4 3339 3346 (-624 -1088 192 ) (-624 -1088 -32 ) (-624 -1296.640137 -32 ) (-624 -1296.640015 192 ) +4 3339 3341 (-412.972229 -1094.055542 -32 ) (-624 -1296.640625 -32 ) (-624 -1088 -32 ) (-416 -1088 -32 ) +4 3339 3340 (-412.972656 -1094.054688 192 ) (-412.972656 -1094.054688 -32 ) (-416 -1088 -32 ) (-416 -1088 192 ) +3 3340 3341 (-406.664368 -1088 -32 ) (-412.972229 -1094.055542 -32 ) (-416 -1088 -32 ) +4 3341 3400 (-466.285736 -1088 -64 ) (-406.666626 -1088 -64 ) (-580.794189 -1255.162476 -64 ) (-624 -1184 -64 ) +3 3341 3399 (-580.794189 -1255.162476 -64 ) (-624 -1296.640015 -64 ) (-624 -1184 -64 ) +3 3341 3393 (-624 -1088 -64 ) (-466.285736 -1088 -64 ) (-624 -1184 -64 ) +4 3341 3346 (-624 -1088 -32 ) (-624 -1088 -64 ) (-624 -1296.640137 -64 ) (-624 -1296.640137 -32 ) +4 3342 3352 (-256 -1392 -32 ) (-256 -1392 192 ) (-280 -1392 192 ) (-280 -1392 -32 ) +4 3342 3344 (-256 -1344 192 ) (-256 -1344 -32 ) (-272 -1376 -32 ) (-272 -1376 192 ) +4 3342 3343 (-272 -1376 -32 ) (-280 -1392 -32 ) (-280 -1392 192 ) (-272 -1376 192 ) +3 3342 3345 (-256 -1344 -32 ) (-256 -1392 -32 ) (-280 -1392 -32 ) +4 3343 3360 (-352 -1392 192 ) (-368 -1392 192 ) (-368 -1392 -32 ) (-352 -1392 -32 ) +4 3343 3361 (-368 -1392 192 ) (-624 -1392 192 ) (-624 -1392 -32 ) (-368 -1392 -32 ) +4 3343 3352 (-280 -1392 192 ) (-352 -1392 192 ) (-352 -1392 -32 ) (-280 -1392 -32 ) +5 3343 3345 (-624 -1392 -32 ) (-624 -1328 -32 ) (-405.333313 -1109.333252 -32 ) (-272 -1376 -32 ) (-280 -1392 -32 ) +4 3343 3344 (-272.001953 -1375.996094 192 ) (-272.001953 -1375.996094 -32 ) (-405.333313 -1109.333374 -32 ) (-405.333313 -1109.333374 192 ) +5 3344 3345 (-405.333313 -1109.333252 -32 ) (-384 -1088 -32 ) (-256 -1088 -32 ) (-256 -1344 -32 ) (-272 -1376 -32 ) +5 3345 3405 (-384 -1088 -64 ) (-368 -1088 -64 ) (-368 -1168 -64 ) (-533.333252 -1333.333252 -64 ) (-569.599976 -1273.599976 -64 ) +5 3345 3404 (-533.333252 -1333.333252 -64 ) (-592 -1392 -64 ) (-624 -1392 -64 ) (-624 -1328 -64 ) (-569.599976 -1273.599976 -64 ) +4 3345 3402 (-368 -1168 -64 ) (-368 -1392 -64 ) (-497.714233 -1392 -64 ) (-533.333252 -1333.333374 -64 ) +3 3345 3401 (-497.714233 -1392 -64 ) (-592 -1392 -64 ) (-533.333252 -1333.333374 -64 ) +4 3345 3396 (-368 -1088 -64 ) (-256 -1088 -64 ) (-256 -1392 -64 ) (-368 -1392 -64 ) +4 3345 3360 (-368 -1392 -64 ) (-352 -1392 -64 ) (-352 -1392 -32 ) (-368 -1392 -32 ) +4 3345 3361 (-624 -1392 -64 ) (-368 -1392 -64 ) (-368 -1392 -32 ) (-624 -1392 -32 ) +4 3345 3352 (-352 -1392 -64 ) (-256 -1392 -64 ) (-256 -1392 -32 ) (-352 -1392 -32 ) +3 3346 3399 (-624 -1184 -64 ) (-624 -1296.640137 -64 ) (-722.807190 -1391.494873 -64 ) +5 3346 3398 (-624 -1184 -64 ) (-722.807190 -1391.494873 -64 ) (-723.333313 -1392 -64 ) (-784 -1392 -64 ) (-784 -1281.391235 -64 ) +4 3346 3393 (-784 -1088 -64 ) (-624 -1088 -64 ) (-624 -1184 -64 ) (-784 -1281.391235 -64 ) +4 3346 3376 (-784 -1392 -64 ) (-723.333313 -1392 -64 ) (-723.333313 -1392 32 ) (-784 -1392 32 ) +4 3346 3375 (-723.333313 -1392 32 ) (-723.333313 -1392 192 ) (-784 -1392 192 ) (-784 -1392 32 ) +4 3346 3350 (-784 -1120 0 ) (-784 -1344 0 ) (-784 -1344 48 ) (-784 -1120 48 ) +4 3346 3349 (-784 -1088 48 ) (-784 -1088 0 ) (-784 -1120 0 ) (-784 -1120 48 ) +4 3346 3348 (-784 -1088 192 ) (-784 -1088 48 ) (-784 -1392 48 ) (-784 -1392 192 ) +4 3346 3351 (-784 -1088 0 ) (-784 -1088 -64 ) (-784 -1392 -64 ) (-784 -1392 0 ) +4 3346 3347 (-723.332214 -1392 192 ) (-723.332214 -1392 -64 ) (-640 -1312 -64 ) (-640 -1312 192 ) +4 3347 3407 (-720 -1392 -64 ) (-723.047668 -1392 -64 ) (-722.807190 -1391.494873 -64 ) (-720 -1388.799927 -64 ) +4 3347 3406 (-640 -1392 -64 ) (-720 -1392 -64 ) (-720 -1388.799927 -64 ) (-640 -1312 -64 ) +3 3347 3398 (-723.047668 -1392 -64 ) (-723.333313 -1392 -64 ) (-722.807190 -1391.494873 -64 ) +4 3347 3376 (-723.333313 -1392 -64 ) (-720 -1392 -64 ) (-720 -1392 32 ) (-723.333313 -1392 32 ) +4 3347 3375 (-720 -1392 32 ) (-720 -1392 192 ) (-723.333313 -1392 192 ) (-723.333313 -1392 32 ) +4 3347 3363 (-720 -1392 -64 ) (-640 -1392 -64 ) (-640 -1392 192 ) (-720 -1392 192 ) +4 3348 3414 (-1024 -1392 48 ) (-1024 -1392 192 ) (-1024 -1088 192 ) (-1024 -1088 48 ) +4 3348 3375 (-784 -1392 48 ) (-784 -1392 192 ) (-1024 -1392 192 ) (-1024 -1392 48 ) +4 3348 3350 (-784 -1120 48 ) (-784 -1344 48 ) (-848 -1344 48 ) (-848 -1120 48 ) +4 3348 3349 (-816 -1088 48 ) (-784 -1088 48 ) (-784 -1120 48 ) (-816 -1120 48 ) +4 3349 3350 (-816 -1120 0 ) (-784 -1120 0 ) (-784 -1120 48 ) (-816 -1120 48 ) +4 3349 3351 (-816 -1088 0 ) (-784 -1088 0 ) (-784 -1120 0 ) (-816 -1120 0 ) +4 3350 3351 (-784 -1120 0 ) (-784 -1344 0 ) (-848 -1344 0 ) (-848 -1120 0 ) +4 3351 3415 (-1024 -1088 -64 ) (-1024 -1392 -64 ) (-1024 -1392 0 ) (-1024 -1088 0 ) +3 3351 3398 (-784 -1281.391235 -64 ) (-784 -1392 -64 ) (-965.714294 -1392 -64 ) +5 3351 3393 (-1024 -1392 -64 ) (-1024 -1088 -64 ) (-784 -1088 -64 ) (-784 -1281.391235 -64 ) (-965.714294 -1392 -64 ) +4 3352 3396 (-352 -1392 -64 ) (-256 -1392 -64 ) (-272 -1408 -64 ) (-352 -1408 -64 ) +4 3352 3360 (-352 -1392 192 ) (-352 -1392 -64 ) (-352 -1408 -64 ) (-352 -1408 192 ) +4 3352 3354 (-352 -1408 192 ) (-352 -1408 -64 ) (-272 -1408 -64 ) (-272 -1408 192 ) +5 3353 3395 (-275.206116 -1504.010132 -64 ) (-352 -1504.010132 -64 ) (-352 -1504 -64 ) (-256 -1408 -64 ) (-256 -1472 -64 ) +3 3353 3394 (-256 -1504.010132 -64 ) (-275.206116 -1504.010132 -64 ) (-256 -1472 -64 ) +4 3353 3392 (-208 -1472 -64 ) (-208 -1504.010132 -64 ) (-256 -1504.010132 -64 ) (-256 -1472 -64 ) +4 3353 3391 (-208 -1408 -64 ) (-208 -1472 -64 ) (-256 -1472 -64 ) (-256 -1408 -64 ) +4 3353 3359 (-352 -1504.010132 32 ) (-352 -1504.010132 -64 ) (-208 -1504.010132 -64 ) (-208 -1504.010132 32 ) +4 3353 3355 (-352 -1504.010132 192 ) (-352 -1504.010132 88 ) (-208 -1504.010132 88 ) (-208 -1504.010132 192 ) +4 3353 3356 (-352 -1504.010132 64 ) (-352 -1504.010132 32 ) (-208 -1504.010132 32 ) (-208 -1504.010132 64 ) +3 3354 3396 (-352 -1488 -64 ) (-352 -1408 -64 ) (-272 -1408 -64 ) +4 3354 3360 (-352 -1408 -64 ) (-352 -1488 -64 ) (-352 -1488 192 ) (-352 -1408 192 ) +4 3355 3357 (-352 -1720 192 ) (-352 -1720 96 ) (-208 -1632 96 ) (-208 -1632 192 ) +5 3356 3359 (-352 -1640 32 ) (-352 -1504.010132 32 ) (-208 -1504.010132 32 ) (-208 -1632 32 ) (-221.090912 -1640 32 ) +4 3357 3378 (-208 -1952 96 ) (-208 -1952 192 ) (-352 -1952 192 ) (-352 -1952 96 ) +4 3357 3368 (-352 -1952 96 ) (-352 -1952 192 ) (-352 -1728 192 ) (-352 -1728 96 ) +4 3357 3358 (-208 -1952 96 ) (-352 -1952 96 ) (-352 -1728 96 ) (-208 -1640 96 ) +4 3358 3379 (-208 -1952 32 ) (-208 -1952 72 ) (-352 -1952 72 ) (-352 -1952 32 ) +4 3358 3378 (-208 -1952 72 ) (-208 -1952 96 ) (-352 -1952 96 ) (-352 -1952 72 ) +4 3358 3372 (-352 -1744 72 ) (-352 -1728 72 ) (-352 -1728 32 ) (-352 -1744 32 ) +4 3358 3373 (-352 -1756 72 ) (-352 -1744 72 ) (-352 -1744 32 ) (-352 -1756 32 ) +4 3358 3370 (-352 -1952 32 ) (-352 -1952 72 ) (-352 -1756 72 ) (-352 -1756 32 ) +4 3358 3368 (-352 -1952 72 ) (-352 -1952 96 ) (-352 -1728 96 ) (-352 -1728 72 ) +3 3359 3395 (-352 -1632 -64 ) (-352 -1504.010132 -64 ) (-275.206116 -1504.010132 -64 ) +5 3359 3394 (-256 -1640 -64 ) (-352 -1640 -64 ) (-352 -1632 -64 ) (-275.206116 -1504.010132 -64 ) (-256 -1504.010132 -64 ) +4 3359 3392 (-208 -1504.010132 -64 ) (-208 -1640 -64 ) (-256 -1640 -64 ) (-256 -1504.010132 -64 ) +4 3360 3396 (-368 -1392 -64 ) (-352 -1392 -64 ) (-352 -1488 -64 ) (-368 -1504 -64 ) +4 3360 3361 (-368 -1392 192 ) (-368 -1392 -64 ) (-368 -1504 -64 ) (-368 -1504 192 ) +3 3361 3404 (-624 -1392 -64 ) (-592 -1392 -64 ) (-624 -1424 -64 ) +3 3361 3402 (-497.714203 -1392 -64 ) (-368 -1392 -64 ) (-368 -1605.646973 -64 ) +6 3361 3401 (-592 -1392 -64 ) (-497.714203 -1392 -64 ) (-368 -1605.646973 -64 ) (-368 -1728 -64 ) (-624 -1600 -64 ) (-624 -1424 -64 ) +4 3361 3366 (-367.998047 -1728 72 ) (-367.998047 -1728 192 ) (-624 -1600 192 ) (-624 -1600 72 ) +4 3361 3362 (-624 -1424 -64 ) (-624 -1600 -64 ) (-624 -1600 192 ) (-624 -1424 192 ) +4 3362 3401 (-624 -1424 -64 ) (-624 -1600 -64 ) (-640 -1592 -64 ) (-640 -1440 -64 ) +4 3362 3366 (-624 -1600 72 ) (-624 -1600 192 ) (-640 -1592 192 ) (-640 -1592 72 ) +4 3362 3364 (-640 -1440 -64 ) (-640 -1592.001953 -64 ) (-640 -1592.001953 192 ) (-640 -1440 192 ) +4 3363 3406 (-720 -1392 -64 ) (-640 -1392 -64 ) (-640 -1424 -64 ) (-720 -1504 -64 ) +4 3363 3365 (-720 -1392 192 ) (-720 -1392 -64 ) (-720 -1504 -64 ) (-720 -1504 192 ) +4 3364 3401 (-640 -1440 -64 ) (-640 -1592 -64 ) (-720 -1552 -64 ) (-720 -1520 -64 ) +4 3364 3366 (-640 -1592 72 ) (-640 -1592 192 ) (-720 -1552 192 ) (-720 -1552 72 ) +4 3364 3365 (-720 -1520 -64 ) (-720 -1552 -64 ) (-720 -1552 192 ) (-720 -1520 192 ) +3 3365 3407 (-720 -1392 -64 ) (-720 -1552 -64 ) (-784 -1520 -64 ) +4 3365 3376 (-720 -1392 32 ) (-720 -1392 -64 ) (-784 -1520 -64 ) (-784 -1520 32 ) +4 3365 3375 (-720 -1392 192 ) (-720 -1392 32 ) (-784 -1520 32 ) (-784 -1520 192 ) +4 3365 3366 (-783.998047 -1520 192 ) (-783.998047 -1520 72 ) (-720 -1552 72 ) (-720 -1552 192 ) +4 3366 3375 (-888 -1728 72 ) (-888 -1728 192 ) (-784 -1520 192 ) (-784 -1520 72 ) +4 3366 3368 (-888 -1728 192 ) (-888 -1728 72 ) (-368 -1728 72 ) (-368 -1728 192 ) +3 3366 3367 (-408 -1728 72 ) (-888 -1728 72 ) (-791.998535 -1536 72 ) +4 3367 3375 (-888 -1728 32 ) (-888 -1728 72 ) (-792 -1536 72 ) (-792 -1536 32 ) +4 3367 3370 (-888 -1728 72 ) (-888 -1728 32 ) (-408 -1728 32 ) (-408 -1728 72 ) +4 3368 3382 (-1000 -1952 96 ) (-1000 -1952 72 ) (-544 -1952 72 ) (-544 -1952 96 ) +4 3368 3380 (-544 -1952 192 ) (-1000 -1952 192 ) (-1000 -1952 96 ) (-544 -1952 96 ) +4 3368 3378 (-352 -1952 72 ) (-352 -1952 192 ) (-480 -1952 192 ) (-480 -1952 72 ) +4 3368 3375 (-1000 -1952 72 ) (-1000 -1952 192 ) (-888 -1728 192 ) (-888 -1728 72 ) +3 3368 3372 (-352 -1728 72 ) (-352 -1744 72 ) (-360 -1744 72 ) +3 3368 3373 (-352 -1744 72 ) (-352 -1756 72 ) (-376 -1744 72 ) +3 3368 3371 (-472 -1936 72 ) (-440 -1952 72 ) (-464 -1952 72 ) +5 3368 3370 (-888 -1728 72 ) (-408 -1728 72 ) (-352 -1756 72 ) (-352 -1952 72 ) (-440 -1952 72 ) +3 3368 3369 (-1000 -1952 72 ) (-896 -1744 72 ) (-480 -1952 72 ) +4 3369 3382 (-544 -1952 72 ) (-1000 -1952 72 ) (-1000 -1952 32 ) (-544 -1952 32 ) +4 3369 3375 (-1000 -1952 32 ) (-1000 -1952 72 ) (-896 -1744 72 ) (-896 -1744 32 ) +3 3369 3374 (-1000 -1952 32 ) (-896 -1744 32 ) (-480 -1952 32 ) +4 3370 3379 (-352 -1952 32 ) (-352 -1952 72 ) (-440 -1952 72 ) (-440 -1952 32 ) +4 3370 3373 (-352 -1756 32 ) (-376 -1744 32 ) (-376 -1744 72 ) (-352 -1756 72 ) +4 3370 3371 (-472 -1936 32 ) (-440 -1952 32 ) (-440.003906 -1952 72 ) (-471.998718 -1936.002563 72 ) +4 3371 3379 (-440 -1952 72 ) (-464 -1952 72 ) (-464 -1952 32 ) (-440 -1952 32 ) +4 3372 3373 (-360 -1744 32 ) (-352 -1744 32 ) (-352 -1744 72 ) (-360 -1744 72 ) +3 3374 3411 (-480 -1952 -64 ) (-1000 -1952 -64 ) (-896 -1744 -64 ) +4 3374 3381 (-544 -1952 -64 ) (-480 -1952 -64 ) (-480 -1952 0 ) (-544 -1952 0 ) +4 3374 3382 (-1000 -1952 -64 ) (-544 -1952 -64 ) (-544 -1952 32 ) (-1000 -1952 32 ) +4 3374 3377 (-896 -1744 -64 ) (-1000 -1952 -64 ) (-1000 -1952 32 ) (-896 -1744 32 ) +4 3375 3420 (-1024 -1952 32 ) (-1024 -1952 192 ) (-1024 -1392 192 ) (-1024 -1392 32 ) +4 3375 3382 (-1000 -1952 32 ) (-1000 -1952 96 ) (-1024 -1952 96 ) (-1024 -1952 32 ) +4 3375 3380 (-1000 -1952 96 ) (-1000 -1952 192 ) (-1024 -1952 192 ) (-1024 -1952 96 ) +3 3375 3376 (-784 -1392 32 ) (-719.996094 -1392 32 ) (-784 -1520.007813 32 ) +4 3375 3377 (-895.996094 -1744 32 ) (-999.996094 -1952 32 ) (-1024 -1952 32 ) (-1024 -1744 32 ) +3 3376 3407 (-723.047729 -1392 -64 ) (-720 -1392 -64 ) (-784 -1520 -64 ) +3 3376 3398 (-784 -1392 -64 ) (-723.047729 -1392 -64 ) (-784 -1520 -64 ) +4 3377 3421 (-1024 -1744 -64 ) (-1024 -1952 -64 ) (-1024 -1952 32 ) (-1024 -1744 32 ) +4 3377 3411 (-1024 -1952 -64 ) (-1024 -1837.866699 -64 ) (-896 -1744 -64 ) (-1000 -1952 -64 ) +3 3377 3410 (-1024 -1837.866699 -64 ) (-1024 -1744 -64 ) (-896 -1744 -64 ) +4 3377 3382 (-1024 -1952 -64 ) (-1000 -1952 -64 ) (-1000 -1952 32 ) (-1024 -1952 32 ) +4 3378 3656 (-476 -2048 176 ) (-480 -2048 176 ) (-480 -2048 72 ) (-476 -2048 72 ) +4 3378 3655 (-208 -2048 72 ) (-208 -2048 176 ) (-476 -2048 176 ) (-476 -2048 72 ) +4 3378 3653 (-208 -2048 176 ) (-208 -2048 192 ) (-480 -2048 192 ) (-480 -2048 176 ) +5 3378 3379 (-480 -2048 72 ) (-480 -1960 72 ) (-464 -1952 72 ) (-208 -1952 72 ) (-208 -2048 72 ) +4 3379 3663 (-208 -2048 32 ) (-208 -2048 64 ) (-480 -2048 64 ) (-480 -2048 32 ) +4 3379 3656 (-476 -2048 72 ) (-480 -2048 72 ) (-480 -2048 64 ) (-476 -2048 64 ) +4 3379 3655 (-208 -2048 64 ) (-208 -2048 72 ) (-476 -2048 72 ) (-476 -2048 64 ) +4 3380 3787 (-1024 -2048 192 ) (-1024 -2048 96 ) (-960 -2048 96 ) (-960 -2048 192 ) +4 3380 3716 (-960 -2048 96 ) (-544 -2048 96 ) (-544 -2048 192 ) (-960 -2048 192 ) +4 3380 3420 (-1024 -2048 96 ) (-1024 -2048 192 ) (-1024 -1952 192 ) (-1024 -1952 96 ) +4 3380 3382 (-1024 -2048 96 ) (-1024 -1952 96 ) (-544 -1952 96 ) (-544 -2048 96 ) +4 3381 3717 (-544 -2048 -64 ) (-480 -2048 -64 ) (-480 -2048 0 ) (-544 -2048 0 ) +3 3381 3411 (-544 -1952 -64 ) (-480 -1952 -64 ) (-544 -2006.153931 -64 ) +4 3381 3409 (-480 -1952 -64 ) (-480 -2048 -64 ) (-544 -2048 -64 ) (-544 -2006.153931 -64 ) +4 3381 3382 (-544 -1952 0 ) (-544 -1952 -64 ) (-544 -2048 -64 ) (-544 -2048 0 ) +4 3382 3788 (-1024 -2048 -32 ) (-1024 -2048 -64 ) (-960 -2048 -64 ) (-960 -2048 -32 ) +4 3382 3787 (-1024 -2048 96 ) (-1024 -2048 -32 ) (-960 -2048 -32 ) (-960 -2048 96 ) +4 3382 3718 (-960 -2048 -64 ) (-544 -2048 -64 ) (-544 -2048 96 ) (-960 -2048 96 ) +4 3382 3421 (-1024 -1952 -64 ) (-1024 -2048 -64 ) (-1024 -2048 32 ) (-1024 -1952 32 ) +4 3382 3420 (-1024 -2048 32 ) (-1024 -2048 96 ) (-1024 -1952 96 ) (-1024 -1952 32 ) +5 3382 3411 (-1024 -2048 -64 ) (-1024 -1952 -64 ) (-544 -1952 -64 ) (-544 -2006.153931 -64 ) (-593.454407 -2048 -64 ) +3 3382 3409 (-544 -2006.153931 -64 ) (-544 -2048 -64 ) (-593.454407 -2048 -64 ) +4 3383 3413 (-240 -1024 -128 ) (0 -1024 -128 ) (0 -1392 -128 ) (-240 -1392 -128 ) +4 3383 3388 (-128 -1392 -128 ) (-32 -1392 -128 ) (-32 -1392 -64 ) (-128 -1392 -64 ) +4 3383 3385 (-32 -1392 -128 ) (0 -1392 -128 ) (0 -1392 -64 ) (-32 -1392 -64 ) +4 3383 3384 (-240 -1024 -128 ) (-240 -1344 -128 ) (-240 -1344 -64 ) (-240 -1024 -64 ) +4 3384 3413 (-256 -1344 -128 ) (-256 -1024 -128 ) (-240 -1024 -128 ) (-240 -1344 -128 ) +4 3384 3396 (-256 -1024 -128 ) (-256 -1344 -128 ) (-256 -1344 -64 ) (-256 -1024 -64 ) +4 3385 3413 (-32 -1472 -128 ) (-32 -1392 -128 ) (0 -1392 -128 ) (0 -1472 -128 ) +4 3385 3389 (-32 -1408 -128 ) (-32 -1472 -128 ) (-32 -1472 -64 ) (-32 -1408 -64 ) +4 3385 3388 (-32 -1392 -64 ) (-32 -1392 -128 ) (-32 -1408 -128 ) (-32 -1408 -64 ) +4 3385 3386 (-32 -1472 -64 ) (-32 -1472 -128 ) (0 -1472 -128 ) (0 -1472 -64 ) +4 3386 3413 (-32 -1480 -128 ) (-32 -1472 -128 ) (0 -1472 -128 ) (0 -1480 -128 ) +4 3386 3390 (-32 -1472 -128 ) (-32 -1480 -128 ) (-32 -1480 -64 ) (-32 -1472 -64 ) +4 3387 3661 (0 -2048 -128 ) (0 -2048 -64 ) (-32 -2048 -64 ) (-32 -2048 -128 ) +4 3387 3413 (0 -2048 -128 ) (-32 -2048 -128 ) (-32 -1504 -128 ) (0 -1504 -128 ) +4 3387 3392 (-32 -1504 -128 ) (-32 -2048 -128 ) (-32 -2048 -64 ) (-32 -1504 -64 ) +4 3388 3413 (-128 -1392 -128 ) (-32 -1392 -128 ) (-32 -1408 -128 ) (-112 -1408 -128 ) +4 3388 3389 (-112 -1408 -128 ) (-32 -1408 -128 ) (-32 -1408 -64 ) (-112 -1408 -64 ) +4 3389 3413 (-112 -1408 -128 ) (-32 -1408 -128 ) (-32 -1472 -128 ) (-48 -1472 -128 ) +4 3389 3390 (-48 -1472 -64 ) (-48 -1472 -128 ) (-32 -1472 -128 ) (-32 -1472 -64 ) +3 3390 3413 (-32 -1472 -128 ) (-32 -1488 -128 ) (-48 -1472 -128 ) +4 3391 3413 (-256 -1472 -128 ) (-256 -1408 -128 ) (-128 -1408 -128 ) (-64 -1472 -128 ) +4 3391 3395 (-256 -1408 -128 ) (-256 -1472 -128 ) (-256 -1472 -64 ) (-256 -1408 -64 ) +4 3391 3392 (-256 -1472 -64 ) (-256 -1472 -128 ) (-64 -1472 -128 ) (-64 -1472 -64 ) +4 3392 3664 (-64 -2048 -64 ) (-256 -2048 -64 ) (-256 -2048 -128 ) (-64 -2048 -128 ) +4 3392 3661 (-32 -2048 -64 ) (-64 -2048 -64 ) (-64 -2048 -128 ) (-32 -2048 -128 ) +5 3392 3413 (-32 -2048 -128 ) (-256 -2048 -128 ) (-256 -1472 -128 ) (-64 -1472 -128 ) (-32 -1504 -128 ) +4 3392 3412 (-256 -1728 -128 ) (-256 -1762.461548 -128 ) (-256 -1762.461548 -64 ) (-256 -1728 -64 ) +4 3392 3409 (-256 -1762.461548 -128 ) (-256 -2048 -128 ) (-256 -2048 -64 ) (-256 -1762.461548 -64 ) +4 3392 3394 (-256 -1472 -128 ) (-256 -1728 -128 ) (-256 -1728 -64 ) (-256 -1472 -64 ) +4 3393 3426 (-1024 -1024 -64 ) (-1024 -1024 -128 ) (-1024 -1427.478271 -128 ) (-1024 -1427.478271 -64 ) +3 3393 3413 (-1024 -1427.478271 -128 ) (-1024 -1024 -128 ) (-361.142822 -1024 -128 ) +4 3393 3400 (-624 -1184 -128 ) (-368 -1028.173706 -128 ) (-368 -1028.173706 -64 ) (-624 -1184 -64 ) +4 3393 3398 (-1024 -1427.478027 -128 ) (-624 -1184 -128 ) (-624 -1184 -64 ) (-1024 -1427.478027 -64 ) +4 3393 3397 (-368 -1028.173706 -128 ) (-361.143188 -1024 -128 ) (-361.143188 -1024 -64 ) (-368 -1028.173706 -64 ) +4 3394 3413 (-256 -1472 -128 ) (-256 -1728 -128 ) (-352 -1728 -128 ) (-352 -1632 -128 ) +4 3394 3412 (-352 -1728 -128 ) (-256 -1728 -128 ) (-256 -1728 -64 ) (-352 -1728 -64 ) +4 3394 3395 (-256 -1472 -64 ) (-256 -1472 -128 ) (-352 -1632 -128 ) (-352 -1632 -64 ) +4 3395 3413 (-256 -1408 -128 ) (-256 -1472 -128 ) (-352 -1632 -128 ) (-352 -1504 -128 ) +5 3396 3413 (-320 -1024 -128 ) (-256 -1024 -128 ) (-256 -1392 -128 ) (-368 -1504 -128 ) (-368 -1072 -128 ) +4 3396 3405 (-368 -1072 -128 ) (-368 -1168 -128 ) (-368 -1168 -64 ) (-368 -1072 -64 ) +4 3396 3402 (-368 -1168 -128 ) (-368 -1504 -128 ) (-368 -1504 -64 ) (-368 -1168 -64 ) +4 3397 3413 (-368 -1028.173950 -128 ) (-361.142822 -1024 -128 ) (-340 -1024 -128 ) (-368 -1050.880005 -128 ) +4 3397 3400 (-368 -1028.173828 -64 ) (-368 -1028.173828 -128 ) (-368 -1050.880005 -128 ) (-368 -1050.880005 -64 ) +4 3398 3426 (-1024 -1427.478271 -128 ) (-1024 -1728 -128 ) (-1024 -1728 -64 ) (-1024 -1427.478271 -64 ) +4 3398 3413 (-1024 -1728 -128 ) (-1024 -1427.478271 -128 ) (-624 -1184 -128 ) (-883.047607 -1728 -128 ) +4 3398 3410 (-1024 -1728 -128 ) (-883.047607 -1728 -128 ) (-883.047607 -1728 -64 ) (-1024 -1728 -64 ) +4 3398 3408 (-883.048645 -1728 -64 ) (-883.048645 -1728 -128 ) (-784 -1520 -128 ) (-784 -1520 -64 ) +4 3398 3407 (-784 -1520 -128 ) (-722.808228 -1391.495972 -128 ) (-722.808228 -1391.495972 -64 ) (-784 -1520 -64 ) +4 3398 3399 (-722.808228 -1391.495972 -128 ) (-624 -1184 -128 ) (-624 -1184 -64 ) (-722.808228 -1391.495972 -64 ) +3 3399 3413 (-624 -1184 -128 ) (-580.794189 -1255.162354 -128 ) (-722.807068 -1391.494751 -128 ) +4 3399 3407 (-722.806641 -1391.492188 -64 ) (-722.806641 -1391.492188 -128 ) (-720 -1388.797852 -128 ) (-720 -1388.797852 -64 ) +4 3399 3406 (-720 -1388.797852 -128 ) (-640 -1311.997681 -128 ) (-640 -1311.997803 -64 ) (-720 -1388.797852 -64 ) +4 3399 3400 (-580.794922 -1255.162109 -64 ) (-580.794922 -1255.162109 -128 ) (-624 -1184 -128 ) (-624 -1184 -64 ) +4 3400 3413 (-624 -1184 -128 ) (-368 -1028.173950 -128 ) (-368 -1050.880005 -128 ) (-580.794189 -1255.162354 -128 ) +5 3401 3413 (-368 -1605.646973 -128 ) (-368 -1728 -128 ) (-720 -1552 -128 ) (-720 -1520 -128 ) (-533.333252 -1333.333252 -128 ) +4 3401 3407 (-720 -1520 -128 ) (-720 -1552 -128 ) (-720 -1552 -64 ) (-720 -1520 -64 ) +4 3401 3404 (-533.333252 -1333.333252 -128 ) (-624 -1424 -128 ) (-624 -1424 -64 ) (-533.333252 -1333.333252 -64 ) +4 3401 3403 (-720 -1552 -64 ) (-720 -1552 -128 ) (-368 -1728 -128 ) (-368 -1728 -64 ) +4 3401 3402 (-368 -1605.647583 -64 ) (-368 -1605.647583 -128 ) (-533.334717 -1333.332764 -128 ) (-533.334717 -1333.332764 -64 ) +3 3402 3413 (-368 -1168 -128 ) (-368 -1605.646973 -128 ) (-533.333252 -1333.333252 -128 ) +4 3402 3405 (-368 -1168 -64 ) (-368 -1168 -128 ) (-533.333252 -1333.333252 -128 ) (-533.333252 -1333.333252 -64 ) +3 3403 3413 (-368 -1728 -128 ) (-720 -1728 -128 ) (-720 -1552 -128 ) +4 3403 3412 (-720 -1728 -128 ) (-368 -1728 -128 ) (-368 -1728 -64 ) (-720 -1728 -64 ) +4 3403 3408 (-720 -1552 -128 ) (-720 -1728 -128 ) (-720 -1728 -64 ) (-720 -1552 -64 ) +4 3404 3413 (-533.333252 -1333.333252 -128 ) (-624 -1424 -128 ) (-624 -1328 -128 ) (-569.599976 -1273.599976 -128 ) +4 3404 3405 (-533.334656 -1333.334595 -64 ) (-533.334656 -1333.334595 -128 ) (-569.600769 -1273.600830 -128 ) (-569.600769 -1273.600830 -64 ) +4 3405 3413 (-368 -1072 -128 ) (-368 -1168 -128 ) (-533.333252 -1333.333252 -128 ) (-569.599976 -1273.599976 -128 ) +4 3406 3413 (-720 -1504 -128 ) (-720 -1388.799927 -128 ) (-640 -1312 -128 ) (-640 -1424 -128 ) +4 3406 3407 (-720 -1388.796875 -64 ) (-720 -1388.796875 -128 ) (-720 -1504 -128 ) (-720 -1504 -64 ) +4 3407 3413 (-784 -1520 -128 ) (-722.807068 -1391.494751 -128 ) (-720 -1388.799927 -128 ) (-720 -1552 -128 ) +4 3407 3408 (-784 -1520 -64 ) (-784 -1520 -128 ) (-720 -1552 -128 ) (-720 -1552 -64 ) +4 3408 3413 (-720 -1728 -128 ) (-883.047607 -1728 -128 ) (-784 -1520 -128 ) (-720 -1552 -128 ) +4 3408 3412 (-874.181885 -1728 -128 ) (-720 -1728 -128 ) (-720 -1728 -64 ) (-874.181885 -1728 -64 ) +4 3408 3410 (-883.047607 -1728 -128 ) (-874.181885 -1728 -128 ) (-874.181885 -1728 -64 ) (-883.047607 -1728 -64 ) +4 3409 3789 (-480 -2048 -64 ) (-593.454407 -2048 -64 ) (-593.454407 -2048 -128 ) (-480 -2048 -128 ) +4 3409 3664 (-256 -2048 -64 ) (-480 -2048 -64 ) (-480 -2048 -128 ) (-256 -2048 -128 ) +3 3409 3413 (-256 -2048 -128 ) (-593.454407 -2048 -128 ) (-256 -1762.461548 -128 ) +4 3409 3412 (-256 -1762.460938 -64 ) (-256 -1762.460938 -128 ) (-480 -1952 -128 ) (-480 -1952 -64 ) +4 3409 3411 (-480 -1952 -128 ) (-593.455200 -2048 -128 ) (-593.453125 -2048 -64 ) (-480 -1952 -64 ) +4 3410 3426 (-1024 -1728 -128 ) (-1024 -1837.866577 -128 ) (-1024 -1837.866577 -64 ) (-1024 -1728 -64 ) +3 3410 3413 (-1024 -1837.866577 -128 ) (-1024 -1728 -128 ) (-874.181885 -1728 -128 ) +4 3410 3412 (-896 -1744 -128 ) (-874.181885 -1728 -128 ) (-874.181885 -1728 -64 ) (-896 -1744 -64 ) +4 3410 3411 (-1024 -1837.867188 -128 ) (-896 -1744 -128 ) (-896 -1744 -64 ) (-1024 -1837.866577 -64 ) +4 3411 3792 (-593.454407 -2048 -64 ) (-1024 -2048 -64 ) (-1024 -2048 -128 ) (-593.454407 -2048 -128 ) +4 3411 3433 (-1024 -1984 -128 ) (-1024 -2048 -128 ) (-1024 -2048 -64 ) (-1024 -1984 -64 ) +4 3411 3430 (-1024 -1904.551636 -128 ) (-1024 -1984 -128 ) (-1024 -1984 -64 ) (-1024 -1904.551636 -64 ) +4 3411 3427 (-1024 -1837.866577 -128 ) (-1024 -1904.551636 -128 ) (-1024 -1904.551636 -64 ) (-1024 -1837.866577 -64 ) +5 3411 3413 (-593.454407 -2048 -128 ) (-1024 -2048 -128 ) (-1024 -1837.866577 -128 ) (-896 -1744 -128 ) (-480 -1952 -128 ) +4 3411 3412 (-480 -1952 -64 ) (-480 -1952 -128 ) (-896 -1744 -128 ) (-896 -1744 -64 ) +5 3412 3413 (-896 -1744 -128 ) (-874.181885 -1728 -128 ) (-256 -1728 -128 ) (-256 -1762.461548 -128 ) (-480 -1952 -128 ) +4 3413 3793 (-480 -2048 -128 ) (-1024 -2048 -128 ) (-1024 -2048 -1284 ) (-480 -2048 -1284 ) +4 3413 3664 (-64 -2048 -128 ) (-480 -2048 -128 ) (-480 -2048 -1284 ) (-64 -2048 -1284 ) +4 3413 3661 (0 -2048 -1284 ) (0 -2048 -128 ) (-64 -2048 -128 ) (-64 -2048 -1284 ) +4 3413 3434 (-1024 -1024 -128 ) (-1024 -1024 -1284 ) (-1024 -2048 -1284 ) (-1024 -2048 -128 ) +4 3414 3420 (-1024 -1392 48 ) (-1024 -1392 5542.669922 ) (-1040 -1392 5542.669922 ) (-1040 -1392 48 ) +4 3414 3416 (-1040 -1088 5542.669922 ) (-1040 -1024 5542.669922 ) (-1040 -1024 157.333496 ) (-1040 -1088 176 ) +4 3414 3418 (-1040 -1392 48 ) (-1040 -1392 5542.669922 ) (-1040 -1088 5542.669922 ) (-1040 -1088 48 ) +4 3415 3426 (-1040 -1024 -64 ) (-1024 -1024 -64 ) (-1024 -1392 -64 ) (-1040 -1392 -64 ) +4 3415 3417 (-1040 -1024 -64 ) (-1040 -1088 -64 ) (-1040 -1088 0 ) (-1040 -1024 0 ) +4 3415 3418 (-1040 -1088 -64 ) (-1040 -1392 -64 ) (-1040 -1392 0 ) (-1040 -1088 0 ) +4 3416 3419 (-1056 -1088 176 ) (-1056 -1088 5542.669922 ) (-1056 -1024 5542.669922 ) (-1056 -1024 157.333008 ) +4 3416 3418 (-1056 -1088 5542.669922 ) (-1056 -1088 176 ) (-1040 -1088 176 ) (-1040 -1088 5542.669922 ) +4 3417 3426 (-1056 -1024 -64 ) (-1040 -1024 -64 ) (-1040 -1088 -64 ) (-1056 -1088 -64 ) +4 3417 3418 (-1056 -1088 32 ) (-1056 -1088 -64 ) (-1040 -1088 -64 ) (-1040 -1088 32 ) +4 3417 3419 (-1056 -1024 -64 ) (-1056 -1088 -64 ) (-1056 -1088 32 ) (-1056 -1024 32 ) +4 3418 3426 (-1040 -1088 -64 ) (-1040 -1392 -64 ) (-1056 -1392 -64 ) (-1056 -1088 -64 ) +4 3418 3420 (-1040 -1392 32 ) (-1040 -1392 5542.669922 ) (-1056 -1392 5542.669922 ) (-1056 -1392 32 ) +4 3418 3419 (-1056 -1088 -64 ) (-1056 -1392 -64 ) (-1056 -1392 5542.669922 ) (-1056 -1088 5542.669922 ) +4 3419 3940 (-2048 -1024 5542.669922 ) (-2048 -1024 -64 ) (-2048 -1392 -64 ) (-2048 -1392 5542.669922 ) +4 3419 3426 (-2048 -1392 -64 ) (-2048 -1024 -64 ) (-1056 -1024 -64 ) (-1056 -1392 -64 ) +4 3419 3422 (-1104 -1392 48 ) (-1104 -1392 5542.669922 ) (-1136 -1392 5542.669922 ) (-1136 -1392 48 ) +4 3419 3423 (-1136 -1392 -64 ) (-1104 -1392 -64 ) (-1104 -1392 0 ) (-1136 -1392 0 ) +4 3419 3425 (-2048 -1392 5542.669922 ) (-2048 -1392 -64 ) (-1136 -1392 -64 ) (-1136 -1392 5542.669922 ) +4 3419 3420 (-1056 -1392 32 ) (-1056 -1392 5542.669922 ) (-1104 -1392 5542.669922 ) (-1104 -1392 32 ) +4 3420 3807 (-1024 -2048 32 ) (-1024 -2048 5542.669922 ) (-1104 -2048 5542.669922 ) (-1104 -2048 32 ) +4 3420 3422 (-1104 -1392 5542.669922 ) (-1104 -1392 48 ) (-1104 -1744 48 ) (-1104 -1744 5542.669922 ) +4 3420 3424 (-1104 -1744 32 ) (-1104 -2048 32 ) (-1104 -2048 5542.669922 ) (-1104 -1744 5542.669922 ) +4 3420 3421 (-1024 -2048 32 ) (-1104 -2048 32 ) (-1104 -1744 32 ) (-1024 -1744 32 ) +4 3421 3810 (-1104 -2048 -64 ) (-1024 -2048 -64 ) (-1024 -2048 -32 ) (-1104 -2048 -32 ) +4 3421 3807 (-1024 -2048 -32 ) (-1024 -2048 32 ) (-1104 -2048 32 ) (-1104 -2048 -32 ) +4 3421 3433 (-1024 -1984 -64 ) (-1024 -2048 -64 ) (-1056 -2048 -64 ) (-1096 -1984 -64 ) +4 3421 3432 (-1056 -2048 -64 ) (-1104 -2048 -64 ) (-1104 -1984 -64 ) (-1096 -1984 -64 ) +5 3421 3430 (-1024 -1904.551636 -64 ) (-1024 -1984 -64 ) (-1096 -1984 -64 ) (-1104 -1971.199829 -64 ) (-1104 -1915.586182 -64 ) +3 3421 3429 (-1096 -1984 -64 ) (-1104 -1984 -64 ) (-1104 -1971.199829 -64 ) +4 3421 3427 (-1024 -1837.866699 -64 ) (-1024 -1904.551636 -64 ) (-1104 -1915.586182 -64 ) (-1104 -1896.533325 -64 ) +4 3421 3426 (-1024 -1744 -64 ) (-1024 -1837.866699 -64 ) (-1104 -1896.533325 -64 ) (-1104 -1744 -64 ) +4 3421 3424 (-1104 -1744 -64 ) (-1104 -2048 -64 ) (-1104 -2048 32 ) (-1104 -1744 32 ) +4 3422 3425 (-1136 -1744 5542.669922 ) (-1136 -1392 5542.669922 ) (-1136 -1392 48 ) (-1136 -1744 48 ) +4 3422 3424 (-1136 -1744 5542.669922 ) (-1136 -1744 48 ) (-1104 -1744 48 ) (-1104 -1744 5542.669922 ) +4 3423 3426 (-1136 -1392 -64 ) (-1104 -1392 -64 ) (-1104 -1744 -64 ) (-1136 -1744 -64 ) +4 3423 3424 (-1136 -1744 0 ) (-1136 -1744 -64 ) (-1104 -1744 -64 ) (-1104 -1744 0 ) +4 3423 3425 (-1136 -1392 0 ) (-1136 -1392 -64 ) (-1136 -1744 -64 ) (-1136 -1744 0 ) +4 3424 3810 (-1136 -2048 -64 ) (-1104 -2048 -64 ) (-1104 -2048 -32 ) (-1136 -2048 -32 ) +4 3424 3807 (-1104 -2048 -32 ) (-1104 -2048 5542.669922 ) (-1136 -2048 5542.669922 ) (-1136 -2048 -32 ) +4 3424 3432 (-1104 -1984 -64 ) (-1104 -2048 -64 ) (-1136 -2048 -64 ) (-1136 -1984 -64 ) +3 3424 3430 (-1104 -1915.586182 -64 ) (-1104 -1971.199829 -64 ) (-1136 -1920 -64 ) +4 3424 3429 (-1104 -1971.199829 -64 ) (-1104 -1984 -64 ) (-1136 -1984 -64 ) (-1136 -1920 -64 ) +3 3424 3427 (-1104 -1896.533325 -64 ) (-1104 -1915.586182 -64 ) (-1136 -1920 -64 ) +4 3424 3426 (-1104 -1744 -64 ) (-1104 -1896.533325 -64 ) (-1136 -1920 -64 ) (-1136 -1744 -64 ) +4 3424 3425 (-1136 -2048 5542.669922 ) (-1136 -1744 5542.669922 ) (-1136 -1744 -64 ) (-1136 -2048 -64 ) +4 3425 3940 (-2048 -1392 -64 ) (-2048 -2048 -64 ) (-2048 -2048 5542.669922 ) (-2048 -1392 5542.669922 ) +4 3425 3814 (-2048 -2048 -32 ) (-2048 -2048 -64 ) (-1536 -2048 -64 ) (-1536 -2048 -32 ) +4 3425 3810 (-1536 -2048 -64 ) (-1136 -2048 -64 ) (-1136 -2048 -32 ) (-1536 -2048 -32 ) +4 3425 3807 (-2048 -2048 5542.669922 ) (-2048 -2048 -32 ) (-1136 -2048 -32 ) (-1136 -2048 5542.669922 ) +4 3425 3432 (-1600 -1984 -64 ) (-1136 -1984 -64 ) (-1136 -2048 -64 ) (-1590.857056 -2048 -64 ) +4 3425 3431 (-2048 -2048 -64 ) (-2048 -1984 -64 ) (-1600 -1984 -64 ) (-1590.857056 -2048 -64 ) +3 3425 3429 (-1136 -1920 -64 ) (-1136 -1984 -64 ) (-1223.272827 -1984 -64 ) +3 3425 3428 (-1136 -1920 -64 ) (-1223.272827 -1984 -64 ) (-1600 -1984 -64 ) +5 3425 3426 (-2048 -1984 -64 ) (-2048 -1392 -64 ) (-1136 -1392 -64 ) (-1136 -1920 -64 ) (-1600 -1984 -64 ) +4 3426 3941 (-2048 -1024 -64 ) (-2048 -1024 -128 ) (-2048 -1984 -128 ) (-2048 -1984 -64 ) +6 3426 3434 (-2048 -1984 -128 ) (-2048 -1024 -128 ) (-1024 -1024 -128 ) (-1024 -1837.866699 -128 ) (-1136 -1920 -128 ) (-1600 -1984 -128 ) +4 3426 3431 (-2048 -1984 -128 ) (-1600 -1984 -128 ) (-1600 -1984 -64 ) (-2048 -1984 -64 ) +4 3426 3428 (-1600 -1984 -64 ) (-1600 -1984 -128 ) (-1136 -1920 -128 ) (-1136 -1920 -64 ) +4 3426 3427 (-1135.996094 -1920 -64 ) (-1135.996094 -1920 -128 ) (-1024 -1837.869507 -128 ) (-1024 -1837.871094 -64 ) +3 3427 3434 (-1024 -1837.866699 -128 ) (-1024 -1904.551636 -128 ) (-1136 -1920 -128 ) +4 3427 3430 (-1136 -1920 -128 ) (-1024 -1904.551758 -128 ) (-1024 -1904.551758 -64 ) (-1136 -1920 -64 ) +3 3428 3434 (-1223.272827 -1984 -128 ) (-1600 -1984 -128 ) (-1136 -1920 -128 ) +4 3428 3432 (-1600 -1984 -128 ) (-1223.272827 -1984 -128 ) (-1223.272827 -1984 -64 ) (-1600 -1984 -64 ) +4 3428 3429 (-1223.269165 -1984 -64 ) (-1223.269165 -1984 -128 ) (-1135.996094 -1920 -128 ) (-1135.996094 -1920 -64 ) +3 3429 3434 (-1096 -1984 -128 ) (-1223.272827 -1984 -128 ) (-1136 -1920 -128 ) +4 3429 3432 (-1223.272827 -1984 -128 ) (-1096 -1984 -128 ) (-1096 -1984 -64 ) (-1223.272827 -1984 -64 ) +4 3429 3430 (-1096 -1984 -64 ) (-1096 -1984 -128 ) (-1136 -1920 -128 ) (-1136 -1920 -64 ) +4 3430 3434 (-1024 -1904.551636 -128 ) (-1024 -1984 -128 ) (-1096 -1984 -128 ) (-1136 -1920 -128 ) +4 3430 3433 (-1096 -1984 -128 ) (-1024 -1984 -128 ) (-1024 -1984 -64 ) (-1096 -1984 -64 ) +4 3431 3942 (-2048 -1984 -128 ) (-2048 -2048 -128 ) (-2048 -2048 -64 ) (-2048 -1984 -64 ) +4 3431 3822 (-2048 -2048 -64 ) (-2048 -2048 -128 ) (-1590.857056 -2048 -128 ) (-1590.857056 -2048 -64 ) +4 3431 3434 (-1590.857056 -2048 -128 ) (-2048 -2048 -128 ) (-2048 -1984 -128 ) (-1600 -1984 -128 ) +4 3431 3432 (-1590.857422 -2048 -128 ) (-1600 -1984 -128 ) (-1600 -1984 -64 ) (-1590.856689 -2048 -64 ) +4 3432 3823 (-1590.857056 -2048 -128 ) (-1056 -2048 -128 ) (-1056 -2048 -64 ) (-1590.857056 -2048 -64 ) +4 3432 3434 (-1056 -2048 -128 ) (-1590.857056 -2048 -128 ) (-1600 -1984 -128 ) (-1096 -1984 -128 ) +4 3432 3433 (-1056 -2048 -128 ) (-1096 -1984 -128 ) (-1096 -1984 -64 ) (-1056 -2048 -64 ) +4 3433 3824 (-1056 -2048 -128 ) (-1024 -2048 -128 ) (-1024 -2048 -64 ) (-1056 -2048 -64 ) +4 3433 3434 (-1024 -2048 -128 ) (-1056 -2048 -128 ) (-1096 -1984 -128 ) (-1024 -1984 -128 ) +4 3434 3943 (-2048 -1984 -1284 ) (-2048 -2048 -1284 ) (-2048 -2048 -128 ) (-2048 -1984 -128 ) +4 3434 3941 (-2048 -1024 -128 ) (-2048 -1024 -1284 ) (-2048 -1984 -1284 ) (-2048 -1984 -128 ) +4 3434 3826 (-2048 -2048 -128 ) (-2048 -2048 -1284 ) (-1024 -2048 -1284 ) (-1024 -2048 -128 ) +4 3435 3467 (1008 -2048 228 ) (1008 -2048 64 ) (1008 -2112 64 ) (1008 -2112 228 ) +4 3435 3466 (1008 -2048 5542.669922 ) (1008 -2048 228 ) (1008 -2112 228 ) (1008 -2112 5542.669922 ) +4 3435 3436 (1008 -2112 5542.669922 ) (1008 -2112 228 ) (1024 -2112 228 ) (1024 -2112 5542.669922 ) +4 3436 3466 (1008 -2176 228 ) (1008 -2176 5542.669922 ) (1008 -2112 5542.669922 ) (1008 -2112 228 ) +4 3436 3444 (1008 -2176 5542.669922 ) (1008 -2176 228 ) (1012 -2176 228 ) (1012 -2176 5542.669922 ) +4 3436 3442 (1012 -2176 228 ) (1020 -2176 228 ) (1020 -2176 5542.669922 ) (1012 -2176 5542.669922 ) +4 3436 3438 (1020 -2176 228 ) (1024 -2176 228 ) (1024 -2176 5542.669922 ) (1020 -2176 5542.669922 ) +4 3437 3481 (1008 -2048 -128 ) (1008 -2048 -1284 ) (1008 -2176 -1284 ) (1008 -2176 -128 ) +4 3437 3447 (1008 -2176 -128 ) (1008 -2176 -1284 ) (1012 -2176 -1284 ) (1012 -2176 -128 ) +4 3437 3443 (1012 -2176 -1284 ) (1020 -2176 -1284 ) (1020 -2176 -128 ) (1012 -2176 -128 ) +4 3437 3440 (1020 -2176 -1284 ) (1024 -2176 -1284 ) (1024 -2176 -128 ) (1020 -2176 -128 ) +4 3438 3448 (1024 -2320 288 ) (1024 -2320 5542.669922 ) (1020 -2320 5542.669922 ) (1020 -2320 288 ) +5 3438 3442 (1020 -2176 5542.669922 ) (1020 -2176 228 ) (1020 -2260 228 ) (1020 -2320 288 ) (1020 -2320 5542.669922 ) +4 3438 3441 (1020 -2320 288 ) (1020 -2260 228 ) (1024 -2260 228 ) (1024 -2320 288 ) +4 3440 3449 (1024 -2320 -1284 ) (1024 -2320 -128 ) (1020 -2320 -128 ) (1020 -2320 -1284 ) +4 3440 3443 (1020 -2176 -48 ) (1020 -2176 -1284 ) (1020 -2320 -1284 ) (1020 -2320 -48 ) +4 3441 3448 (1024 -2320 228 ) (1024 -2320 288 ) (1020 -2320 288 ) (1020 -2320 228 ) +3 3441 3442 (1020 -2320 228 ) (1020 -2320 288 ) (1020 -2260 228 ) +4 3442 3448 (1020 -2320 228 ) (1020 -2320 5542.669922 ) (1012 -2320 5542.669922 ) (1012 -2320 228 ) +4 3442 3444 (1012 -2176 5542.669922 ) (1012 -2176 228 ) (1012 -2320 228 ) (1012 -2320 5542.669922 ) +4 3443 3449 (1020 -2320 -1284 ) (1020 -2320 -128 ) (1012 -2320 -128 ) (1012 -2320 -1284 ) +4 3443 3447 (1012 -2176 -48 ) (1012 -2176 -1284 ) (1012 -2320 -1284 ) (1012 -2320 -48 ) +4 3444 3573 (1008 -2320 228 ) (1008 -2320 5542.669922 ) (1008 -2304 5542.669922 ) (1008 -2304 228 ) +4 3444 3551 (1008 -2296 240 ) (1008 -2296 228 ) (1008 -2304 228 ) (1008 -2304 240 ) +4 3444 3545 (1008 -2296 256 ) (1008 -2296 240 ) (1008 -2304 240 ) (1008 -2304 256 ) +4 3444 3541 (1008 -2304 5542.669922 ) (1008 -2296 5542.669922 ) (1008 -2296 256 ) (1008 -2304 256 ) +4 3444 3466 (1008 -2296 5542.669922 ) (1008 -2176 5542.669922 ) (1008 -2176 228 ) (1008 -2296 228 ) +4 3444 3448 (1008 -2320 5542.669922 ) (1008 -2320 228 ) (1012 -2320 228 ) (1012 -2320 5542.669922 ) +10 3445 3446 (1010 -2316 123.998291 ) (1010 -2304 160 ) (1010 -2280 184 ) (1010 -2256 192 ) (1010 -2239.992188 192 ) (1010 -2216.003906 184.003876 ) (1010 -2192 160 ) (1010 -2180 124 ) (1010 -2176 88 ) (1010 -2320 88 ) +5 3446 3567 (1008 -2320 80 ) (1008 -2320 88 ) (1008 -2316 124 ) (1008 -2304 160 ) (1008 -2304 80 ) +4 3446 3559 (1008 -2296 112 ) (1008 -2296 80 ) (1008 -2304 80 ) (1008 -2304 112 ) +4 3446 3554 (1008 -2304 160 ) (1008 -2296 168 ) (1008 -2296 112 ) (1008 -2304 112 ) +5 3446 3475 (1008 -2296 168 ) (1008 -2280 184 ) (1008 -2272 186.666626 ) (1008 -2272 80 ) (1008 -2296 80 ) +9 3446 3473 (1008 -2272 186.666626 ) (1008 -2256 192 ) (1008 -2240 192 ) (1008 -2216 184 ) (1008 -2192 160 ) (1008 -2180 124 ) (1008 -2176 88 ) (1008 -2176 80 ) (1008 -2272 80 ) +4 3447 3594 (1008 -2320 -1284 ) (1008 -2320 -48 ) (1008 -2304 -48 ) (1008 -2304 -1284 ) +4 3447 3566 (1008 -2304 -48 ) (1008 -2296 -48 ) (1008 -2296 -1284 ) (1008 -2304 -1284 ) +4 3447 3481 (1008 -2176 -128 ) (1008 -2176 -1284 ) (1008 -2240 -1284 ) (1008 -2240 -128 ) +4 3447 3482 (1008 -2296 -48 ) (1008 -2240 -48 ) (1008 -2240 -1284 ) (1008 -2296 -1284 ) +4 3447 3449 (1008 -2320 -128 ) (1008 -2320 -1284 ) (1012 -2320 -1284 ) (1012 -2320 -128 ) +4 3448 3573 (1008 -2416 228 ) (1008 -2416 5542.669922 ) (1008 -2320 5542.669922 ) (1008 -2320 228 ) +4 3448 3456 (1008 -2416 5542.669922 ) (1008 -2416 228 ) (1012 -2416 228 ) (1012 -2416 5542.669922 ) +4 3448 3454 (1012 -2416 228 ) (1020 -2416 228 ) (1020 -2416 5542.669922 ) (1012 -2416 5542.669922 ) +4 3448 3450 (1020 -2416 228 ) (1024 -2416 228 ) (1024 -2416 5542.669922 ) (1020 -2416 5542.669922 ) +4 3449 3594 (1008 -2416 -1284 ) (1008 -2416 -128 ) (1008 -2320 -128 ) (1008 -2320 -1284 ) +4 3449 3459 (1008 -2416 -128 ) (1008 -2416 -1284 ) (1012 -2416 -1284 ) (1012 -2416 -128 ) +4 3449 3455 (1012 -2416 -1284 ) (1020 -2416 -1284 ) (1020 -2416 -128 ) (1012 -2416 -128 ) +4 3449 3453 (1020 -2416 -1284 ) (1024 -2416 -1284 ) (1024 -2416 -128 ) (1020 -2416 -128 ) +4 3450 3460 (1024 -2560 288 ) (1024 -2560 5542.669922 ) (1020 -2560 5542.669922 ) (1020 -2560 288 ) +5 3450 3454 (1020 -2416 5542.669922 ) (1020 -2416 228 ) (1020 -2500 228 ) (1020 -2560 288 ) (1020 -2560 5542.669922 ) +4 3450 3451 (1020 -2560 288 ) (1020 -2500 228 ) (1024 -2500 228 ) (1024 -2560 288 ) +4 3451 3460 (1024 -2560 228 ) (1024 -2560 288 ) (1020 -2560 288 ) (1020 -2560 228 ) +3 3451 3454 (1020 -2560 228 ) (1020 -2560 288 ) (1020 -2500 228 ) +4 3453 3461 (1024 -2560 -1284 ) (1024 -2560 -128 ) (1020 -2560 -128 ) (1020 -2560 -1284 ) +4 3453 3455 (1020 -2416 -48 ) (1020 -2416 -1284 ) (1020 -2560 -1284 ) (1020 -2560 -48 ) +4 3454 3460 (1020 -2560 228 ) (1020 -2560 5542.669922 ) (1012 -2560 5542.669922 ) (1012 -2560 228 ) +4 3454 3456 (1012 -2416 5542.669922 ) (1012 -2416 228 ) (1012 -2560 228 ) (1012 -2560 5542.669922 ) +4 3455 3461 (1020 -2560 -1284 ) (1020 -2560 -128 ) (1012 -2560 -128 ) (1012 -2560 -1284 ) +4 3455 3459 (1012 -2416 -48 ) (1012 -2416 -1284 ) (1012 -2560 -1284 ) (1012 -2560 -48 ) +4 3456 3573 (1008 -2560 228 ) (1008 -2560 5542.669922 ) (1008 -2416 5542.669922 ) (1008 -2416 228 ) +4 3456 3460 (1008 -2560 5542.669922 ) (1008 -2560 228 ) (1012 -2560 228 ) (1012 -2560 5542.669922 ) +10 3457 3458 (1010 -2556 124.007385 ) (1010 -2544.001953 160 ) (1010 -2519.993652 184.006226 ) (1010 -2496.013428 192 ) (1010 -2479.994141 192 ) (1010 -2456.002686 184.002838 ) (1010 -2432 160 ) (1010 -2420 123.998207 ) (1010 -2416 88 ) (1010 -2560 88 ) +12 3458 3570 (1008 -2560 80 ) (1008 -2560 88 ) (1008 -2556 123.998596 ) (1008 -2544 160 ) (1008 -2520 184 ) (1008 -2496 192 ) (1008 -2480 192 ) (1008 -2456 184 ) (1008 -2432 160 ) (1008 -2420 124 ) (1008 -2416 88 ) (1008 -2416 80 ) +4 3459 3594 (1008 -2560 -1284 ) (1008 -2560 -48 ) (1008 -2416 -48 ) (1008 -2416 -1284 ) +4 3459 3461 (1008 -2560 -128 ) (1008 -2560 -1284 ) (1012 -2560 -1284 ) (1012 -2560 -128 ) +4 3460 3573 (1008 -2624 228 ) (1008 -2624 5542.669922 ) (1008 -2560 5542.669922 ) (1008 -2560 228 ) +4 3460 3462 (1008 -2624 5542.669922 ) (1008 -2624 228 ) (1024 -2624 228 ) (1024 -2624 5542.669922 ) +4 3461 3594 (1008 -2624 -1284 ) (1008 -2624 -128 ) (1008 -2560 -128 ) (1008 -2560 -1284 ) +4 3461 3463 (1008 -2624 -128 ) (1008 -2624 -1284 ) (1024 -2624 -1284 ) (1024 -2624 -128 ) +3 3462 3611 (1008 -2640 240 ) (1008 -2720 320 ) (1008 -2640 320 ) +4 3462 3604 (1008 -2624 320 ) (1008 -2624 224 ) (1008 -2640 240 ) (1008 -2640 320 ) +5 3462 3599 (1008 -2624 624 ) (1008 -2624 320 ) (1008 -2720 320 ) (1008 -2816 416 ) (1008 -2816 624 ) +4 3462 3598 (1008 -2624 5542.669922 ) (1008 -2624 624 ) (1008 -2816 624 ) (1008 -2816 5542.669922 ) +4 3462 3464 (1008 -2816 5542.669922 ) (1008 -2816 416 ) (1024 -2816 416 ) (1024 -2816 5542.669922 ) +4 3463 3617 (1008 -2624 64 ) (1008 -2624 -1284 ) (1008 -2816 -1284 ) (1008 -2816 64 ) +4 3463 3465 (1008 -2816 0 ) (1008 -2816 -1284 ) (1024 -2816 -1284 ) (1024 -2816 0 ) +4 3464 3630 (1024 -3072 416 ) (1024 -3072 5542.669922 ) (1008 -3072 5542.669922 ) (1008 -3072 416 ) +3 3464 3618 (1008 -3072 416 ) (1008 -3072 672 ) (1008 -2816 416 ) +3 3464 3599 (1008 -2816 624 ) (1008 -2816 416 ) (1008 -3024 624 ) +5 3464 3598 (1008 -3072 672 ) (1008 -3072 5542.669922 ) (1008 -2816 5542.669922 ) (1008 -2816 624 ) (1008 -3024 624 ) +4 3465 3649 (1024 -3072 -1284 ) (1024 -3072 0 ) (1008 -3072 0 ) (1008 -3072 -1284 ) +4 3465 3619 (1008 -3072 -1284 ) (1008 -3072 0 ) (1008 -2816 0 ) (1008 -2816 -1284 ) +4 3466 3551 (1008 -2296 228 ) (1008 -2296 240 ) (720 -2296 240 ) (720 -2296 228 ) +4 3466 3545 (1008 -2296 240 ) (1008 -2296 256 ) (720 -2296 256 ) (720 -2296 240 ) +4 3466 3541 (1008 -2296 256 ) (1008 -2296 5542.669922 ) (720 -2296 5542.669922 ) (720 -2296 256 ) +4 3466 3477 (720 -2048 256 ) (720 -2048 228 ) (720 -2296 228 ) (720 -2296 256 ) +4 3466 3476 (720 -2048 5542.669922 ) (720 -2048 256 ) (720 -2296 256 ) (720 -2296 5542.669922 ) +4 3466 3475 (1004 -2296 228 ) (720 -2296 228 ) (720 -2272 228 ) (1004 -2272 228 ) +4 3466 3473 (720 -2272 228 ) (720 -2144 228 ) (1004 -2144 228 ) (1004 -2272 228 ) +4 3466 3471 (720 -2144 228 ) (720 -2112 228 ) (1004 -2112 228 ) (1004 -2144 228 ) +4 3466 3467 (720 -2112 228 ) (720 -2048 228 ) (1008 -2048 228 ) (1008 -2112 228 ) +4 3467 3477 (720 -2048 228 ) (720 -2048 80 ) (720 -2112 80 ) (720 -2112 228 ) +4 3467 3472 (988 -2112 212 ) (840 -2112 64 ) (848 -2112 64 ) (992 -2112 208 ) +4 3467 3471 (1004 -2112 228 ) (720 -2112 228 ) (720 -2112 64 ) (840 -2112 64 ) +4 3467 3469 (992 -2112 64 ) (994 -2112 64 ) (994 -2112 210 ) (992 -2112 208 ) +3 3467 3470 (848 -2112 64 ) (992 -2112 64 ) (992 -2112 208 ) +4 3468 3474 (992 -2144 64 ) (994 -2144 64 ) (994 -2144 72 ) (992 -2144 72 ) +4 3468 3473 (994 -2144 72 ) (994 -2144 210 ) (992 -2144 208 ) (992 -2144 72 ) +4 3468 3470 (992 -2144 64 ) (992 -2144 208 ) (992 -2142 208 ) (992 -2142 64 ) +4 3469 3470 (992 -2114 208 ) (992 -2112 208 ) (992 -2112 64 ) (992 -2114 64 ) +4 3470 3474 (848 -2144 64 ) (992 -2144 64 ) (992 -2144 72 ) (856 -2144 72 ) +3 3470 3473 (992 -2144 72 ) (992 -2144 208 ) (856 -2144 72 ) +4 3470 3472 (848 -2144 64 ) (992 -2144 208 ) (992 -2112 208 ) (848 -2112 64 ) +4 3471 3477 (720 -2144 80 ) (720 -2144 228 ) (720 -2112 228 ) (720 -2112 80 ) +4 3471 3474 (720 -2144 72 ) (720 -2144 64 ) (840 -2144 64 ) (848 -2144 72 ) +4 3471 3473 (1004 -2144 228 ) (720 -2144 228 ) (720 -2144 72 ) (848 -2144 72 ) +4 3471 3472 (840 -2112 64 ) (988 -2112 212 ) (988 -2144 212 ) (840 -2144 64 ) +4 3472 3474 (848 -2144 72 ) (840 -2144 64 ) (848 -2144 64 ) (856 -2144 72 ) +4 3472 3473 (988 -2144 212 ) (848 -2144 72 ) (856 -2144 72 ) (992 -2144 208 ) +4 3473 3477 (720 -2272 80 ) (720 -2272 228 ) (720 -2144 228 ) (720 -2144 80 ) +5 3473 3475 (1004 -2272 228 ) (720 -2272 228 ) (720 -2272 80 ) (1008 -2272 80 ) (1008 -2272 224 ) +4 3473 3474 (720 -2240 72 ) (720 -2144 72 ) (1008 -2144 72 ) (1008 -2240 72 ) +4 3475 3559 (1008 -2296 80 ) (1008 -2296 112 ) (720 -2296 112 ) (720 -2296 80 ) +4 3475 3554 (1008 -2296 112 ) (1008 -2296 208 ) (720 -2296 208 ) (720 -2296 112 ) +5 3475 3552 (1008 -2296 208 ) (1008 -2296 224 ) (1004 -2296 228 ) (720 -2296 228 ) (720 -2296 208 ) +4 3475 3477 (720 -2296 80 ) (720 -2296 228 ) (720 -2272 228 ) (720 -2272 80 ) +4 3476 3541 (704 -2296 5542.669922 ) (704 -2296 256 ) (720 -2296 256 ) (720 -2296 5542.669922 ) +3 3476 3488 (704 -2296 256 ) (704 -2296 304 ) (704 -2272 304 ) +4 3476 3487 (704 -2120 256 ) (704 -2168 256 ) (704 -2168 304 ) (704 -2120 304 ) +5 3476 3486 (704 -2272 304 ) (704 -2296 304 ) (704 -2296 384 ) (704 -2256 384 ) (704 -2256 336 ) +3 3476 3485 (704 -2048 384 ) (704 -2048 368 ) (704 -2064 384 ) +3 3476 3484 (704 -2256 352 ) (704 -2256 384 ) (704 -2224 384 ) +4 3476 3483 (704 -2048 5542.669922 ) (704 -2048 384 ) (704 -2296 384 ) (704 -2296 5542.669922 ) +4 3476 3478 (704 -2112 256 ) (704 -2048 256 ) (708 -2048 256 ) (708 -2112 256 ) +4 3476 3480 (704 -2296 256 ) (704 -2176 256 ) (708 -2176 256 ) (708 -2296 256 ) +4 3476 3477 (708 -2048 256 ) (720 -2048 256 ) (720 -2296 256 ) (708 -2296 256 ) +4 3477 3559 (708 -2296 80 ) (720 -2296 80 ) (720 -2296 112 ) (708 -2296 112 ) +4 3477 3554 (720 -2296 112 ) (720 -2296 208 ) (708 -2296 208 ) (708 -2296 112 ) +4 3477 3552 (720 -2296 208 ) (720 -2296 228 ) (708 -2296 228 ) (708 -2296 208 ) +4 3477 3551 (720 -2296 228 ) (720 -2296 240 ) (708 -2296 240 ) (708 -2296 228 ) +4 3477 3545 (720 -2296 240 ) (720 -2296 256 ) (708 -2296 256 ) (708 -2296 240 ) +4 3477 3479 (708 -2112 80 ) (708 -2176 80 ) (708 -2176 248 ) (708 -2112 248 ) +4 3477 3478 (708 -2048 80 ) (708 -2112 80 ) (708 -2112 256 ) (708 -2048 256 ) +4 3477 3480 (708 -2176 80 ) (708 -2296 80 ) (708 -2296 256 ) (708 -2176 256 ) +4 3478 3489 (704 -2048 240 ) (704 -2048 80 ) (704 -2112 80 ) (704 -2112 240 ) +4 3478 3479 (704 -2112 80 ) (708 -2112 80 ) (708 -2112 248 ) (704 -2112 248 ) +4 3479 3489 (704 -2112 80 ) (704 -2176 80 ) (704 -2176 240 ) (704 -2112 240 ) +4 3479 3480 (704 -2176 80 ) (708 -2176 80 ) (708 -2176 248 ) (704 -2176 248 ) +4 3480 3559 (704 -2296 112 ) (704 -2296 80 ) (708 -2296 80 ) (708 -2296 112 ) +4 3480 3554 (704 -2296 208 ) (704 -2296 112 ) (708 -2296 112 ) (708 -2296 208 ) +4 3480 3552 (704 -2296 228 ) (704 -2296 208 ) (708 -2296 208 ) (708 -2296 228 ) +4 3480 3551 (704 -2296 240 ) (704 -2296 228 ) (708 -2296 228 ) (708 -2296 240 ) +4 3480 3545 (704 -2296 256 ) (704 -2296 240 ) (708 -2296 240 ) (708 -2296 256 ) +4 3480 3489 (704 -2176 80 ) (704 -2296 80 ) (704 -2296 240 ) (704 -2176 240 ) +4 3481 3490 (704 -2048 -128 ) (704 -2048 -1284 ) (704 -2240 -1284 ) (704 -2240 -128 ) +4 3481 3482 (704 -2240 -1284 ) (1008 -2240 -1284 ) (1008 -2240 -128 ) (704 -2240 -128 ) +4 3482 3566 (1008 -2296 -1284 ) (1008 -2296 0 ) (704 -2296 0 ) (704 -2296 -1284 ) +4 3482 3564 (1008 -2296 0 ) (1008 -2296 64 ) (704 -2296 64 ) (704 -2296 0 ) +4 3482 3490 (704 -2240 -1284 ) (704 -2296 -1284 ) (704 -2296 64 ) (704 -2240 64 ) +4 3483 3541 (704 -2296 384 ) (704 -2296 5542.669922 ) (688 -2296 5542.669922 ) (688 -2296 384 ) +4 3483 3491 (688 -2296 384 ) (688 -2296 5542.669922 ) (688 -2048 5542.669922 ) (688 -2048 384 ) +4 3483 3486 (688 -2296 384 ) (688 -2256 384 ) (704 -2256 384 ) (704 -2296 384 ) +4 3483 3485 (688 -2064 384 ) (688 -2048 384 ) (704 -2048 384 ) (704 -2064 384 ) +4 3483 3484 (688 -2256 384 ) (688 -2224 384 ) (704 -2224 384 ) (704 -2256 384 ) +3 3484 3494 (688 -2256 384 ) (688 -2224 384 ) (688 -2256 352 ) +4 3484 3486 (704 -2256 352 ) (704 -2256 384 ) (688 -2256 384 ) (688 -2256 352 ) +3 3485 3492 (688 -2064 384 ) (688 -2048 384 ) (688 -2048 368 ) +4 3486 3541 (704 -2296 304 ) (704 -2296 384 ) (688 -2296 384 ) (688 -2296 304 ) +5 3486 3502 (688 -2296 304 ) (688 -2296 352 ) (688 -2256 352 ) (688 -2256 336 ) (688 -2272 304 ) +4 3486 3494 (688 -2296 352 ) (688 -2296 384 ) (688 -2256 384 ) (688 -2256 352 ) +4 3486 3488 (688 -2296 304 ) (688 -2272 304 ) (704 -2272 304 ) (704 -2296 304 ) +4 3488 3541 (704 -2296 256 ) (704 -2296 304 ) (688 -2296 304 ) (688 -2296 256 ) +3 3488 3502 (688 -2296 256 ) (688 -2296 304 ) (688 -2272 304 ) +4 3489 3526 (688 -2296 80 ) (688 -2296 240 ) (688 -2288 240 ) (688 -2288 80 ) +4 3489 3518 (688 -2048 224 ) (688 -2048 80 ) (688 -2288 80 ) (688 -2288 224 ) +4 3489 3517 (688 -2288 240 ) (688 -2136 240 ) (688 -2136 224 ) (688 -2288 224 ) +4 3489 3514 (688 -2136 240 ) (688 -2048 240 ) (688 -2048 224 ) (688 -2136 224 ) +4 3490 3566 (704 -2296 -1284 ) (704 -2296 0 ) (688 -2296 0 ) (688 -2296 -1284 ) +4 3490 3564 (704 -2296 0 ) (704 -2296 64 ) (688 -2296 64 ) (688 -2296 0 ) +4 3490 3540 (688 -2296 -1284 ) (688 -2296 0 ) (688 -2048 0 ) (688 -2048 -1284 ) +4 3490 3536 (688 -2296 0 ) (688 -2296 64 ) (688 -2048 64 ) (688 -2048 0 ) +3 3491 3544 (472 -2296 384 ) (488 -2296 384 ) (480 -2296 392 ) +4 3491 3542 (272 -2296 600 ) (272 -2296 384 ) (472 -2296 384 ) (480 -2296 392 ) +5 3491 3541 (688 -2296 384 ) (688 -2296 5542.669922 ) (272 -2296 5542.669922 ) (272 -2296 600 ) (488 -2296 384 ) +4 3491 3508 (272 -2296 384 ) (272 -2296 5542.669922 ) (272 -2048 5542.669922 ) (272 -2048 384 ) +3 3491 3496 (484 -2176 384 ) (604 -2296 384 ) (484 -2296 384 ) +4 3491 3494 (484 -2176 384 ) (688 -2176 384 ) (688 -2296 384 ) (604 -2296 384 ) +4 3491 3493 (272 -2296 384 ) (272 -2176 384 ) (476 -2176 384 ) (476 -2296 384 ) +4 3491 3492 (272 -2176 384 ) (272 -2048 384 ) (688 -2048 384 ) (688 -2176 384 ) +3 3492 3509 (272 -2064 384 ) (272 -2048 384 ) (272 -2048 368 ) +4 3492 3497 (272 -2112 352 ) (272 -2048 352 ) (688 -2048 352 ) (688 -2112 352 ) +3 3492 3495 (444 -2144 352 ) (476 -2144 352 ) (476 -2176 384 ) +4 3492 3494 (484 -2144 352 ) (688 -2144 352 ) (688 -2176 384 ) (484 -2176 384 ) +4 3492 3493 (272 -2144 352 ) (444 -2144 352 ) (476 -2176 384 ) (272 -2176 384 ) +4 3493 3542 (472 -2296 384 ) (272 -2296 384 ) (272 -2296 352 ) (440 -2296 352 ) +4 3493 3511 (272 -2296 352 ) (272 -2296 384 ) (272 -2256 384 ) (272 -2256 352 ) +3 3493 3510 (272 -2256 384 ) (272 -2224 384 ) (272 -2256 352 ) +4 3493 3504 (272 -2216 352 ) (272 -2176 352 ) (444 -2176 352 ) (444 -2216 352 ) +4 3493 3503 (272 -2296 352 ) (272 -2216 352 ) (444 -2216 352 ) (444 -2296 352 ) +3 3493 3495 (444 -2176 352 ) (444 -2144 352 ) (476 -2176 384 ) +4 3494 3541 (688 -2296 352 ) (688 -2296 384 ) (604 -2296 384 ) (636 -2296 352 ) +4 3494 3505 (688 -2176 352 ) (688 -2216 352 ) (556 -2216 352 ) (516 -2176 352 ) +4 3494 3502 (688 -2216 352 ) (688 -2296 352 ) (636 -2296 352 ) (556 -2216 352 ) +4 3494 3496 (603.996887 -2296 384 ) (484 -2176.001953 384 ) (516 -2176.001953 352 ) (635.998047 -2296 352 ) +4 3496 3541 (604 -2296 384 ) (488 -2296 384 ) (520 -2296 352 ) (636 -2296 352 ) +3 3496 3505 (516 -2176 352 ) (556 -2216 352 ) (516 -2216 352 ) +4 3496 3502 (556 -2216 352 ) (636 -2296 352 ) (516 -2296 352 ) (516 -2216 352 ) +4 3497 3501 (469.333374 -2080 336 ) (455.111206 -2058.666748 325.333405 ) (688 -2058.666748 325.333405 ) (688 -2080 336 ) +4 3497 3500 (455.111206 -2058.666748 325.333405 ) (448 -2048 320 ) (688 -2048 320 ) (688 -2058.666748 325.333405 ) +4 3497 3499 (272 -2080 336 ) (272 -2058.666748 325.333405 ) (455.111206 -2058.666748 325.333405 ) (469.333374 -2080 336 ) +4 3497 3498 (272 -2058.666748 325.333405 ) (272 -2048 320 ) (448 -2048 320 ) (455.111206 -2058.666748 325.333405 ) +3 3498 3500 (447.998962 -2048.005371 320 ) (455.105469 -2058.665283 325.330750 ) (447.998901 -2056 320 ) +4 3498 3499 (426.663361 -2048 304 ) (455.105469 -2058.666016 325.332031 ) (272 -2058.666016 325.332062 ) (272 -2048 304 ) +4 3499 3501 (455.105469 -2058.665283 325.330750 ) (469.325928 -2079.996338 335.996216 ) (447.998901 -2064 320 ) (447.998901 -2056 320 ) +5 3500 3501 (688 -2058.667969 325.335907 ) (455.117188 -2058.667969 325.335938 ) (448.001343 -2056 320 ) (469.333374 -2048 304 ) (688 -2048 304 ) +4 3502 3541 (616 -2296 256 ) (688 -2296 256 ) (688 -2296 352 ) (520 -2296 352 ) +4 3502 3524 (688 -2288 256 ) (688 -2296 256 ) (640 -2296 256 ) (640 -2288 256 ) +4 3502 3516 (688 -2264 256 ) (688 -2288 256 ) (640 -2288 256 ) (640 -2264 256 ) +4 3502 3507 (563.997070 -2239.997070 304.002960 ) (542.665955 -2229.331787 325.334045 ) (688 -2229.331787 325.334045 ) (688 -2239.997070 304.002960 ) +4 3502 3505 (542.665955 -2229.331787 325.334045 ) (516 -2216 352 ) (688 -2216 352 ) (688 -2229.331787 325.334045 ) +4 3503 3542 (272 -2296 256 ) (344 -2296 256 ) (440 -2296 352 ) (272 -2296 352 ) +4 3503 3525 (320 -2296 256 ) (272 -2296 256 ) (272 -2288 256 ) (320 -2288 256 ) +4 3503 3522 (272 -2288 256 ) (272 -2264 256 ) (320 -2264 256 ) (320 -2288 256 ) +4 3503 3511 (272 -2296 256 ) (272 -2296 352 ) (272 -2256 352 ) (272 -2256 336 ) +4 3503 3506 (272 -2239.997070 304.002960 ) (272 -2229.331787 325.334045 ) (417.334045 -2229.331787 325.334045 ) (396.002960 -2239.997070 304.002960 ) +4 3503 3504 (272 -2229.331787 325.334045 ) (272 -2216 352 ) (444 -2216 352 ) (417.334045 -2229.331787 325.334045 ) +4 3504 3506 (417.332001 -2229.335938 325.332031 ) (272 -2229.335938 325.332031 ) (272 -2208 336 ) (428 -2208 336 ) +4 3505 3507 (688 -2229.335938 325.332031 ) (542.667969 -2229.335938 325.332031 ) (532 -2208 336 ) (688 -2208 336 ) +4 3508 3542 (272 -2296 384 ) (272 -2296 600 ) (256 -2296 616 ) (256 -2296 384 ) +4 3508 3541 (272 -2296 600 ) (272 -2296 5542.669922 ) (256 -2296 5542.669922 ) (256 -2296 616 ) +4 3508 3512 (256 -2048 5542.669922 ) (256 -2048 384 ) (256 -2296 384 ) (256 -2296 5542.669922 ) +4 3508 3511 (256 -2296 384 ) (256 -2256 384 ) (272 -2256 384 ) (272 -2296 384 ) +4 3508 3510 (256 -2256 384 ) (256 -2224 384 ) (272 -2224 384 ) (272 -2256 384 ) +4 3508 3509 (256 -2064 384 ) (256 -2048 384 ) (272 -2048 384 ) (272 -2064 384 ) +3 3509 3512 (256 -2048 384 ) (256 -2048 368 ) (256 -2064 384 ) +3 3510 3512 (256 -2256 352 ) (256 -2256 384 ) (256 -2224 384 ) +4 3510 3511 (272 -2256 352 ) (272 -2256 384 ) (256 -2256 384 ) (256 -2256 352 ) +4 3511 3542 (256 -2296 256 ) (272 -2296 256 ) (272 -2296 384 ) (256 -2296 384 ) +4 3511 3512 (256 -2296 256 ) (256 -2296 384 ) (256 -2256 384 ) (256 -2256 336 ) +4 3512 3665 (0 -2176 256 ) (0 -2296 256 ) (0 -2296 5542.669922 ) (0 -2176 5542.669922 ) +4 3512 3650 (0 -2048 5542.669922 ) (0 -2048 341.333008 ) (0 -2176 256 ) (0 -2176 5542.669922 ) +4 3512 3542 (0 -2296 872 ) (0 -2296 256 ) (256 -2296 256 ) (256 -2296 616 ) +4 3512 3541 (0 -2296 5542.669922 ) (0 -2296 872 ) (256 -2296 616 ) (256 -2296 5542.669922 ) +4 3512 3535 (256 -2296 256 ) (0 -2296 256 ) (0 -2176 256 ) (256 -2176 256 ) +4 3512 3513 (256 -2048 341.332031 ) (256 -2080 320 ) (0 -2079.998779 320 ) (0 -2048 341.331696 ) +3 3513 3651 (0 -2048 341.333008 ) (0 -2048 298.666718 ) (0 -2080 320 ) +4 3514 3518 (576 -2048 224 ) (688 -2048 224 ) (688 -2136 224 ) (576 -2136 224 ) +4 3514 3517 (576 -2136 224 ) (688 -2136 224 ) (688 -2136 240 ) (554.666687 -2136 240 ) +3 3515 3517 (320 -2136 240 ) (320 -2136 224 ) (341.333344 -2136 240 ) +4 3516 3524 (688 -2288 240 ) (688 -2288 256 ) (640 -2288 256 ) (640 -2288 240 ) +4 3516 3517 (688 -2288 240 ) (640 -2288 240 ) (640 -2272 240 ) (688 -2272 240 ) +4 3517 3531 (452 -2288 240 ) (416 -2288 240 ) (416 -2288 224 ) (452 -2288 224 ) +4 3517 3533 (352 -2288 240 ) (320 -2288 240 ) (320 -2288 224 ) (352 -2288 224 ) +4 3517 3529 (508 -2288 240 ) (452 -2288 240 ) (452 -2288 224 ) (508 -2288 224 ) +4 3517 3526 (688 -2288 224 ) (688 -2288 240 ) (608 -2288 240 ) (608 -2288 224 ) +4 3517 3528 (544 -2288 240 ) (508 -2288 240 ) (508 -2288 224 ) (544 -2288 224 ) +4 3517 3523 (320 -2288 224 ) (320 -2288 240 ) (320 -2176 240 ) (320 -2176 224 ) +4 3517 3520 (508 -2288 224 ) (452 -2288 224 ) (452 -2280 224 ) (508 -2280 224 ) +4 3517 3519 (452 -2280 224 ) (452 -2136 224 ) (508 -2136 224 ) (508 -2280 224 ) +4 3517 3518 (688 -2288 224 ) (508 -2288 224 ) (508 -2136 224 ) (688 -2136 224 ) +4 3517 3521 (452 -2288 224 ) (320 -2288 224 ) (320 -2136 224 ) (452 -2136 224 ) +4 3518 3527 (608 -2288 112 ) (608 -2288 116 ) (544 -2288 116 ) (544 -2288 112 ) +4 3518 3526 (608 -2288 80 ) (688 -2288 80 ) (688 -2288 224 ) (608 -2288 224 ) +4 3518 3528 (508 -2288 80 ) (544 -2288 80 ) (544 -2288 224 ) (508 -2288 224 ) +4 3518 3520 (508 -2288 184 ) (508 -2288 224 ) (508 -2280 224 ) (508 -2280 184 ) +4 3518 3519 (508 -2048 80 ) (508 -2280 80 ) (508 -2280 224 ) (508 -2048 224 ) +4 3519 3520 (452 -2280 224 ) (452 -2280 184 ) (508 -2280 184 ) (508 -2280 224 ) +4 3519 3521 (452 -2048 80 ) (452 -2280 80 ) (452 -2280 224 ) (452 -2048 224 ) +7 3520 3530 (508 -2288 184 ) (508 -2288 192 ) (494 -2288 198 ) (480 -2288 200 ) (466 -2288 198 ) (452 -2288 192 ) (452 -2288 184 ) +4 3520 3529 (508 -2288 208 ) (508 -2288 224 ) (452 -2288 224 ) (452 -2288 208 ) +4 3520 3521 (452 -2288 184 ) (452 -2288 224 ) (452 -2280 224 ) (452 -2280 184 ) +4 3521 3532 (352 -2288 80 ) (416 -2288 80 ) (416 -2288 116 ) (352 -2288 116 ) +4 3521 3531 (416 -2288 80 ) (452 -2288 80 ) (452 -2288 224 ) (416 -2288 224 ) +4 3521 3533 (320 -2288 80 ) (352 -2288 80 ) (352 -2288 224 ) (320 -2288 224 ) +4 3521 3523 (320 -2176 80 ) (320 -2288 80 ) (320 -2288 224 ) (320 -2176 224 ) +4 3522 3525 (272 -2288 256 ) (272 -2288 240 ) (320 -2288 240 ) (320 -2288 256 ) +4 3522 3523 (320 -2272 240 ) (320 -2288 240 ) (272 -2288 240 ) (272 -2272 240 ) +4 3523 3534 (272 -2176 80 ) (272 -2288 80 ) (272 -2288 240 ) (272 -2176 240 ) +4 3523 3533 (272 -2288 240 ) (272 -2288 80 ) (320 -2288 80 ) (320 -2288 240 ) +4 3524 3547 (688 -2296 240 ) (688 -2296 256 ) (640 -2296 256 ) (640 -2296 240 ) +4 3524 3526 (640 -2288 240 ) (688 -2288 240 ) (688 -2296 240 ) (640 -2296 240 ) +4 3525 3548 (320 -2296 256 ) (272 -2296 256 ) (272 -2296 240 ) (320 -2296 240 ) +4 3525 3533 (272 -2296 240 ) (272 -2288 240 ) (320 -2288 240 ) (320 -2296 240 ) +4 3526 3527 (608 -2288 116 ) (608 -2288 112 ) (608 -2296 112 ) (608 -2296 116 ) +4 3527 3528 (544 -2288 116 ) (544 -2288 112 ) (544 -2296 112 ) (544 -2296 116 ) +4 3528 3530 (508 -2288 192 ) (508 -2288 184 ) (508 -2296 184 ) (508 -2296 192 ) +4 3528 3529 (508 -2296 240 ) (508 -2288 240 ) (508 -2288 208 ) (508 -2296 208 ) +4 3529 3531 (452 -2296 240 ) (452 -2288 240 ) (452 -2288 208 ) (452 -2296 208 ) +4 3530 3531 (452 -2288 192 ) (452 -2288 184 ) (452 -2296 184 ) (452 -2296 192 ) +4 3531 3532 (416 -2288 116 ) (416 -2288 80 ) (416 -2296 80 ) (416 -2296 116 ) +4 3532 3533 (352 -2288 116 ) (352 -2288 80 ) (352 -2296 80 ) (352 -2296 116 ) +4 3533 3534 (272 -2288 80 ) (272 -2296 80 ) (272 -2296 240 ) (272 -2288 240 ) +4 3534 3535 (256 -2176 80 ) (256 -2296 80 ) (256 -2296 240 ) (256 -2176 240 ) +4 3535 3665 (0 -2176 80 ) (0 -2296 80 ) (0 -2296 256 ) (0 -2176 256 ) +4 3535 3561 (0 -2296 112 ) (0 -2296 80 ) (256 -2296 80 ) (256 -2296 112 ) +4 3535 3558 (0 -2296 208 ) (0 -2296 112 ) (256 -2296 112 ) (256 -2296 208 ) +4 3535 3553 (0 -2296 240 ) (0 -2296 208 ) (256 -2296 208 ) (256 -2296 240 ) +4 3535 3550 (0 -2296 256 ) (0 -2296 240 ) (256 -2296 240 ) (256 -2296 256 ) +4 3535 3539 (240 -2296 80 ) (0 -2296 80 ) (0 -2176 80 ) (240 -2176 80 ) +4 3536 3564 (512 -2296 0 ) (688 -2296 0 ) (688 -2296 64 ) (512 -2296 64 ) +4 3536 3540 (512 -2048 0 ) (688 -2048 0 ) (688 -2296 0 ) (512 -2296 0 ) +4 3536 3537 (512 -2048 0 ) (512 -2288 0 ) (512 -2288 64 ) (512 -2048 64 ) +4 3537 3540 (416 -2048 0 ) (512 -2048 0 ) (512 -2288 0 ) (416 -2288 0 ) +4 3537 3538 (416 -2048 0 ) (416 -2288 0 ) (416 -2288 64 ) (416 -2048 64 ) +4 3538 3565 (320 -2296 0 ) (416 -2296 0 ) (416 -2296 64 ) (320 -2296 64 ) +4 3538 3540 (320 -2048 0 ) (416 -2048 0 ) (416 -2296 0 ) (320 -2296 0 ) +4 3539 3667 (0 -2272 64 ) (0 -2296 64 ) (0 -2296 80 ) (0 -2272 80 ) +4 3539 3563 (0 -2296 80 ) (0 -2296 64 ) (240 -2296 64 ) (240 -2296 80 ) +4 3540 3668 (0 -2272 -1284 ) (0 -2296 -1284 ) (0 -2296 0 ) (0 -2272 0 ) +4 3540 3666 (0 -2176 -1284 ) (0 -2272 -1284 ) (0 -2272 0 ) (0 -2176 0 ) +4 3540 3661 (0 -2048 0 ) (0 -2048 -1284 ) (0 -2176 -1284 ) (0 -2176 0 ) +4 3540 3566 (0 -2296 0 ) (0 -2296 -1284 ) (688 -2296 -1284 ) (688 -2296 0 ) +4 3541 3665 (0 -2304 872 ) (0 -2304 5542.669922 ) (0 -2296 5542.669922 ) (0 -2296 872 ) +4 3541 3574 (512 -2304 5542.669922 ) (448 -2304 5542.669922 ) (448 -2304 424 ) (512 -2304 360 ) +5 3541 3573 (1008 -2304 256 ) (1008 -2304 5542.669922 ) (512 -2304 5542.669922 ) (512 -2304 360 ) (616 -2304 256 ) +4 3541 3577 (448 -2304 5542.669922 ) (0 -2304 5542.669922 ) (0 -2304 872 ) (448 -2304 424 ) +4 3541 3547 (688 -2304 256 ) (640 -2304 256 ) (640 -2296 256 ) (688 -2296 256 ) +4 3541 3546 (704 -2304 256 ) (688 -2304 256 ) (688 -2296 256 ) (704 -2296 256 ) +4 3541 3545 (1008 -2304 256 ) (704 -2304 256 ) (704 -2296 256 ) (1008 -2296 256 ) +4 3541 3544 (480 -2296 392 ) (487.998199 -2296 384 ) (487.998108 -2304 384 ) (480 -2304 392 ) +4 3541 3542 (0 -2296 871.998535 ) (480 -2296 392 ) (480 -2304 392 ) (0 -2304 871.998108 ) +4 3542 3665 (0 -2304 256 ) (0 -2304 872 ) (0 -2296 872 ) (0 -2296 256 ) +3 3542 3574 (448 -2304 360 ) (480 -2304 392 ) (448 -2304 424 ) +5 3542 3577 (0 -2304 872 ) (0 -2304 256 ) (344 -2304 256 ) (448 -2304 360 ) (448 -2304 424 ) +4 3542 3549 (272 -2304 256 ) (256 -2304 256 ) (256 -2296 256 ) (272 -2296 256 ) +4 3542 3548 (320 -2304 256 ) (272 -2304 256 ) (272 -2296 256 ) (320 -2296 256 ) +4 3542 3550 (256 -2304 256 ) (0 -2304 256 ) (0 -2296 256 ) (256 -2296 256 ) +4 3542 3544 (472 -2296 384 ) (480 -2296 392 ) (480 -2304 392 ) (472 -2304 384 ) +7 3543 3574 (448 -2304 256 ) (512 -2304 256 ) (512 -2304 316 ) (496 -2304 324 ) (480 -2304 326 ) (464 -2304 324 ) (448 -2304 316 ) +3 3544 3574 (488 -2304 384 ) (480 -2304 392 ) (472 -2304 384 ) +4 3545 3573 (1008 -2304 240 ) (1008 -2304 256 ) (704 -2304 256 ) (704 -2304 240 ) +4 3545 3551 (1008 -2304 240 ) (704 -2304 240 ) (704 -2296 240 ) (1008 -2296 240 ) +3 3545 3546 (704 -2304 240 ) (704 -2304 256 ) (704 -2296 256 ) +4 3546 3573 (704 -2304 256 ) (688 -2304 256 ) (688 -2304 240 ) (704 -2304 240 ) +3 3546 3547 (688 -2304 240 ) (688 -2304 256 ) (688 -2296 256 ) +4 3547 3573 (688 -2304 256 ) (640 -2304 256 ) (640 -2304 240 ) (688 -2304 240 ) +4 3548 3577 (320 -2304 256 ) (272 -2304 256 ) (272 -2304 240 ) (320 -2304 240 ) +3 3548 3549 (272 -2304 240 ) (272 -2304 256 ) (272 -2296 256 ) +4 3549 3577 (272 -2304 256 ) (256 -2304 256 ) (256 -2304 240 ) (272 -2304 240 ) +3 3549 3550 (256 -2304 240 ) (256 -2304 256 ) (256 -2296 256 ) +4 3550 3665 (0 -2304 240 ) (0 -2304 256 ) (0 -2296 256 ) (0 -2296 240 ) +4 3550 3577 (256 -2304 256 ) (0 -2304 256 ) (0 -2304 240 ) (256 -2304 240 ) +4 3550 3553 (256 -2304 240 ) (0 -2304 240 ) (0 -2296 240 ) (256 -2296 240 ) +4 3551 3573 (1008 -2304 228 ) (1008 -2304 240 ) (704 -2304 240 ) (704 -2304 228 ) +4 3551 3552 (1004 -2304 228 ) (704 -2304 228 ) (704 -2296 228 ) (1004 -2296 228 ) +4 3552 3579 (1008 -2304 224 ) (1004 -2304 228 ) (984 -2304 208 ) (992 -2304 208 ) +4 3552 3578 (1004 -2304 228 ) (704 -2304 228 ) (704 -2304 208 ) (984 -2304 208 ) +3 3552 3567 (1008 -2304 208 ) (1008 -2304 224 ) (992 -2304 208 ) +4 3552 3554 (1008 -2304 208 ) (704 -2304 208 ) (704 -2296 208 ) (1008 -2296 208 ) +4 3553 3665 (0 -2304 208 ) (0 -2304 240 ) (0 -2296 240 ) (0 -2296 208 ) +4 3553 3578 (0 -2304 228 ) (0 -2304 208 ) (256 -2304 208 ) (256 -2304 228 ) +4 3553 3577 (256 -2304 240 ) (0 -2304 240 ) (0 -2304 228 ) (256 -2304 228 ) +4 3553 3558 (256 -2304 208 ) (0 -2304 208 ) (0 -2296 208 ) (256 -2296 208 ) +4 3554 3583 (704 -2304 116 ) (704 -2304 112 ) (896 -2304 112 ) (900 -2304 116 ) +4 3554 3579 (992 -2304 208 ) (984 -2304 208 ) (892 -2304 116 ) (900 -2304 116 ) +4 3554 3578 (984 -2304 208 ) (704 -2304 208 ) (704 -2304 116 ) (892 -2304 116 ) +4 3554 3567 (1008 -2304 112 ) (1008 -2304 208 ) (992 -2304 208 ) (992 -2304 112 ) +3 3554 3572 (992 -2304 208 ) (896 -2304 112 ) (992 -2304 112 ) +4 3554 3559 (1008 -2304 112 ) (704 -2304 112 ) (704 -2296 112 ) (1008 -2296 112 ) +7 3555 3578 (544 -2304 176 ) (544 -2304 116 ) (608 -2304 116 ) (608 -2304 176 ) (592 -2304 182 ) (576 -2304 184 ) (560 -2304 182 ) +4 3556 3584 (452 -2304 116 ) (452 -2304 112 ) (508 -2304 112 ) (508 -2304 116 ) +7 3556 3578 (452 -2304 176 ) (452 -2304 116 ) (508 -2304 116 ) (508 -2304 176 ) (494 -2304 182 ) (480 -2304 184 ) (466 -2304 182 ) +4 3556 3560 (508 -2304 112 ) (452 -2304 112 ) (452 -2296 112 ) (508 -2296 112 ) +7 3557 3578 (352 -2304 176 ) (352 -2304 116 ) (416 -2304 116 ) (416 -2304 176 ) (400 -2304 182 ) (384 -2304 184 ) (368 -2304 182 ) +4 3558 3665 (0 -2304 112 ) (0 -2304 208 ) (0 -2296 208 ) (0 -2296 112 ) +4 3558 3585 (0 -2304 116 ) (0 -2304 112 ) (256 -2304 112 ) (256 -2304 116 ) +4 3558 3578 (256 -2304 208 ) (0 -2304 208 ) (0 -2304 116 ) (256 -2304 116 ) +4 3558 3561 (256 -2304 112 ) (0 -2304 112 ) (0 -2296 112 ) (256 -2296 112 ) +4 3559 3586 (896 -2304 112 ) (704 -2304 112 ) (704 -2304 80 ) (864 -2304 80 ) +4 3559 3567 (1008 -2304 80 ) (1008 -2304 112 ) (992 -2304 112 ) (992 -2304 80 ) +4 3559 3572 (992 -2304 112 ) (896 -2304 112 ) (864 -2304 80 ) (992 -2304 80 ) +4 3560 3586 (508 -2304 112 ) (452 -2304 112 ) (452 -2304 80 ) (508 -2304 80 ) +4 3561 3665 (0 -2304 80 ) (0 -2304 112 ) (0 -2296 112 ) (0 -2296 80 ) +4 3561 3586 (256 -2304 112 ) (0 -2304 112 ) (0 -2304 80 ) (256 -2304 80 ) +3 3561 3562 (240.250000 -2304 80 ) (240 -2304 80 ) (240 -2302 80 ) +4 3561 3563 (240 -2304 80 ) (0 -2304 80 ) (0 -2296 80 ) (240 -2296 80 ) +4 3562 3591 (240.250000 -2304 80 ) (240 -2304 80 ) (240 -2304 64 ) (240.250015 -2304 64 ) +4 3562 3563 (240 -2302 64 ) (240 -2304 64 ) (240 -2304 80 ) (240 -2302 80 ) +4 3563 3667 (0 -2304 64 ) (0 -2304 80 ) (0 -2296 80 ) (0 -2296 64 ) +4 3563 3591 (240 -2304 80 ) (238 -2304 80 ) (238 -2304 64 ) (240 -2304 64 ) +4 3563 3589 (238 -2304 80 ) (220 -2304 80 ) (220 -2304 64 ) (238 -2304 64 ) +4 3563 3588 (220 -2304 80 ) (0 -2304 80 ) (0 -2304 64 ) (220 -2304 64 ) +4 3564 3594 (1008 -2304 0 ) (1008 -2304 64 ) (512 -2304 64 ) (512 -2304 0 ) +4 3564 3566 (1008 -2304 0 ) (512 -2304 0 ) (512 -2296 0 ) (1008 -2296 0 ) +4 3565 3595 (352 -2304 64 ) (320 -2304 64 ) (320 -2304 0 ) (352 -2304 0 ) +4 3565 3594 (416 -2304 64 ) (352 -2304 64 ) (352 -2304 0 ) (416 -2304 0 ) +4 3565 3566 (416 -2304 0 ) (320 -2304 0 ) (320 -2296 0 ) (416 -2296 0 ) +4 3566 3668 (0 -2304 -1284 ) (0 -2304 0 ) (0 -2296 0 ) (0 -2296 -1284 ) +4 3566 3597 (320 -2304 0 ) (0 -2304 0 ) (0 -2304 -1284 ) (320 -2304 -1284 ) +4 3566 3595 (352 -2304 0 ) (320 -2304 0 ) (320 -2304 -1284 ) (352 -2304 -1284 ) +4 3566 3594 (1008 -2304 -1284 ) (1008 -2304 0 ) (352 -2304 0 ) (352 -2304 -1284 ) +4 3567 3579 (1008 -2304 224 ) (992 -2304 208 ) (992 -2352 208 ) (1008 -2352 224 ) +4 3567 3569 (992 -2352 208 ) (992 -2352 80 ) (994 -2352 80 ) (994 -2352 210 ) +4 3567 3572 (992 -2304 80 ) (992 -2352 80 ) (992 -2352 208 ) (992 -2304 208 ) +4 3568 3572 (992 -2382 80 ) (992 -2384 80 ) (992 -2384 208 ) (992 -2382 208 ) +4 3568 3570 (992 -2384 208 ) (992 -2384 80 ) (994 -2384 80 ) (994 -2384 210 ) +4 3569 3572 (992 -2352 80 ) (992 -2354 80 ) (992 -2354 208 ) (992 -2352 208 ) +4 3570 3581 (992 -2384 208 ) (992 -2592 208 ) (1008 -2592 224 ) (1008 -2384 224 ) +4 3570 3571 (992 -2592 208 ) (992 -2592 80 ) (994 -2592 80 ) (994 -2592 210 ) +4 3570 3572 (992 -2384 80 ) (992 -2592 80 ) (992 -2592 208 ) (992 -2384 208 ) +4 3571 3572 (992 -2592 80 ) (992 -2594 80 ) (992 -2594 208 ) (992 -2592 208 ) +4 3572 3583 (900 -2304 116 ) (896 -2304 112 ) (896 -2308 112 ) (900 -2308 116 ) +4 3572 3586 (896 -2304 112 ) (864 -2304 80 ) (864 -2308 80 ) (896 -2308 112 ) +4 3572 3587 (864 -2308 80 ) (864 -2624 80 ) (900 -2624 116 ) (900 -2308 116 ) +4 3572 3582 (900 -2592 116 ) (900 -2624 116 ) (992 -2624 208 ) (992 -2592 208 ) +4 3572 3581 (900 -2384 116 ) (900 -2592 116 ) (992 -2592 208 ) (992 -2384 208 ) +4 3572 3580 (900 -2352 116 ) (900 -2384 116 ) (992 -2384 208 ) (992 -2352 208 ) +4 3572 3579 (992 -2304 208 ) (900 -2304 116 ) (900 -2352 116 ) (992 -2352 208 ) +4 3573 3608 (512 -2624 228 ) (576 -2624 228 ) (576 -2624 320 ) (512 -2624 320 ) +4 3573 3607 (608 -2624 256 ) (608 -2624 320 ) (576 -2624 320 ) (576 -2624 256 ) +4 3573 3606 (608 -2624 228 ) (704 -2624 228 ) (704 -2624 320 ) (608 -2624 320 ) +4 3573 3605 (720 -2624 228 ) (784 -2624 228 ) (784 -2624 320 ) (720 -2624 320 ) +4 3573 3604 (800 -2624 228 ) (1008 -2624 228 ) (1008 -2624 320 ) (800 -2624 320 ) +4 3573 3603 (512 -2624 448 ) (512 -2624 320 ) (576 -2624 320 ) (576 -2624 512 ) +4 3573 3602 (576 -2624 5542.669922 ) (512 -2624 5542.669922 ) (512 -2624 448 ) (576 -2624 512 ) +4 3573 3600 (608 -2624 5542.669922 ) (576 -2624 5542.669922 ) (576 -2624 320 ) (608 -2624 320 ) +4 3573 3599 (1008 -2624 320 ) (1008 -2624 624 ) (752 -2624 368 ) (800 -2624 320 ) +5 3573 3598 (1008 -2624 624 ) (1008 -2624 5542.669922 ) (608 -2624 5542.669922 ) (608 -2624 320 ) (704 -2624 320 ) +4 3573 3578 (512 -2304 228 ) (1004 -2304 228 ) (1004 -2624 228 ) (512 -2624 228 ) +4 3573 3574 (512 -2308 256 ) (512 -2308 5542.669922 ) (512 -2304 5542.669922 ) (512 -2304 256 ) +4 3573 3575 (512 -2304 228 ) (512 -2308 228 ) (512 -2308 252 ) (512 -2304 252 ) +4 3573 3576 (512 -2308 228 ) (512 -2624 228 ) (512 -2624 5542.669922 ) (512 -2308 5542.669922 ) +4 3574 3577 (448 -2308 256 ) (448 -2308 5542.669922 ) (448 -2304 5542.669922 ) (448 -2304 256 ) +4 3574 3576 (448 -2308 5542.669922 ) (448 -2308 256 ) (512 -2308 256 ) (512 -2308 5542.669922 ) +4 3575 3578 (448 -2304 228 ) (512 -2304 228 ) (512 -2308 228 ) (448 -2308 228 ) +4 3575 3576 (448 -2308 252 ) (448 -2308 228 ) (512 -2308 228 ) (512 -2308 252 ) +4 3575 3577 (448 -2304 228 ) (448 -2308 228 ) (448 -2308 252 ) (448 -2304 252 ) +4 3576 3609 (448 -2624 228 ) (464 -2624 228 ) (464 -2624 320 ) (448 -2624 320 ) +4 3576 3608 (480 -2624 228 ) (512 -2624 228 ) (512 -2624 320 ) (480 -2624 320 ) +5 3576 3603 (512 -2624 320 ) (512 -2624 448 ) (448 -2624 384 ) (448 -2624 352 ) (480 -2624 320 ) +4 3576 3602 (512 -2624 448 ) (512 -2624 5542.669922 ) (448 -2624 5542.669922 ) (448 -2624 384 ) +4 3576 3578 (512 -2308 228 ) (512 -2624 228 ) (448 -2624 228 ) (448 -2308 228 ) +4 3576 3577 (448 -2308 228 ) (448 -2624 228 ) (448 -2624 5542.669922 ) (448 -2308 5542.669922 ) +4 3577 3686 (0 -2624 256 ) (0 -2624 5542.669922 ) (0 -2592 5542.669922 ) (0 -2592 256 ) +4 3577 3683 (0 -2592 5542.669922 ) (0 -2496 5542.669922 ) (0 -2496 240 ) (0 -2592 240 ) +4 3577 3681 (0 -2496 5542.669922 ) (0 -2432 5542.669922 ) (0 -2432 256 ) (0 -2496 256 ) +4 3577 3665 (0 -2432 5542.669922 ) (0 -2304 5542.669922 ) (0 -2304 228 ) (0 -2432 228 ) +4 3577 3609 (400 -2624 228 ) (448 -2624 228 ) (448 -2624 320 ) (400 -2624 320 ) +4 3577 3610 (0 -2624 320 ) (0 -2624 228 ) (384 -2624 228 ) (384 -2624 320 ) +3 3577 3603 (448 -2624 352 ) (448 -2624 384 ) (432 -2624 368 ) +5 3577 3602 (0 -2624 5542.669922 ) (0 -2624 320 ) (384 -2624 320 ) (448 -2624 384 ) (448 -2624 5542.669922 ) +4 3577 3578 (0 -2304 228 ) (448 -2304 228 ) (448 -2624 228 ) (0 -2624 228 ) +4 3578 3684 (0 -2496 176 ) (0 -2496 116 ) (0 -2592 116 ) (0 -2592 176 ) +4 3578 3665 (0 -2432 228 ) (0 -2304 228 ) (0 -2304 116 ) (0 -2432 116 ) +4 3578 3620 (0 -2624 224 ) (0 -2624 116 ) (320 -2624 116 ) (320 -2624 224 ) +5 3578 3616 (384 -2624 116 ) (480 -2624 116 ) (480 -2624 160 ) (432 -2624 168 ) (384 -2624 160 ) +4 3578 3609 (400 -2624 224 ) (464 -2624 224 ) (464 -2624 228 ) (400 -2624 228 ) +4 3578 3610 (0 -2624 228 ) (0 -2624 224 ) (384 -2624 224 ) (384 -2624 228 ) +4 3578 3608 (480 -2624 224 ) (576 -2624 224 ) (576 -2624 228 ) (480 -2624 228 ) +4 3578 3606 (608 -2624 224 ) (704 -2624 224 ) (704 -2624 228 ) (608 -2624 228 ) +4 3578 3605 (720 -2624 224 ) (784 -2624 224 ) (784 -2624 228 ) (720 -2624 228 ) +4 3578 3604 (800 -2624 224 ) (1000 -2624 224 ) (1004 -2624 228 ) (800 -2624 228 ) +4 3578 3584 (416 -2304 116 ) (544 -2304 116 ) (544 -2308 116 ) (416 -2308 116 ) +4 3578 3583 (608 -2304 116 ) (892 -2304 116 ) (892 -2308 116 ) (608 -2308 116 ) +4 3578 3585 (0 -2304 116 ) (352 -2304 116 ) (352 -2308 116 ) (0 -2308 116 ) +4 3578 3587 (892 -2308 116 ) (892 -2624 116 ) (0 -2624 116 ) (0 -2308 116 ) +4 3578 3582 (892 -2624 116 ) (892 -2592 116 ) (988 -2592 212 ) (988 -2624 212 ) +4 3578 3581 (892 -2592 116 ) (892 -2384 116 ) (1004 -2384 228 ) (1004 -2592 228 ) +4 3578 3580 (892 -2384 116 ) (892 -2352 116 ) (988 -2352 212 ) (988 -2384 212 ) +4 3578 3579 (892 -2352 116 ) (892 -2304 116 ) (1004 -2304 228 ) (1004 -2352 228 ) +4 3579 3583 (892 -2304 116 ) (899.997986 -2304 116 ) (899.997986 -2308 116 ) (892 -2308 116 ) +4 3579 3587 (899.997986 -2308 116 ) (899.997986 -2352 116 ) (892 -2352 116 ) (892 -2308 116 ) +4 3579 3580 (988.001953 -2352 211.998016 ) (892.003906 -2352 116 ) (900 -2352 116 ) (992 -2352 208 ) +4 3580 3587 (899.997986 -2352 116 ) (899.997986 -2384 116 ) (892 -2384 116 ) (892 -2352 116 ) +4 3580 3581 (988.001953 -2384 211.998016 ) (892.003906 -2384 116 ) (900 -2384 116 ) (992 -2384 208 ) +4 3581 3587 (899.997986 -2384 116 ) (899.997986 -2592 116 ) (892 -2592 116 ) (892 -2384 116 ) +4 3581 3582 (988.001953 -2592 211.998016 ) (892.003906 -2592 116 ) (900 -2592 116 ) (992 -2592 208 ) +4 3582 3587 (899.997986 -2592 116 ) (899.997986 -2624 116 ) (892 -2624 116 ) (892 -2592 116 ) +4 3583 3586 (896 -2308 112 ) (608 -2308 112 ) (608 -2304 112 ) (896 -2304 112 ) +4 3583 3587 (895.995667 -2308 112 ) (899.996094 -2308 116 ) (608 -2308 116 ) (608 -2308 112 ) +4 3584 3586 (544 -2308 112 ) (416 -2308 112 ) (416 -2304 112 ) (544 -2304 112 ) +4 3584 3587 (544 -2308 116 ) (416 -2308 116 ) (416 -2308 112 ) (544 -2308 112 ) +4 3585 3665 (0 -2308 116 ) (0 -2304 116 ) (0 -2304 112 ) (0 -2308 112 ) +4 3585 3586 (352 -2308 112 ) (0 -2308 112 ) (0 -2304 112 ) (352 -2304 112 ) +4 3585 3587 (352 -2308 116 ) (0 -2308 116 ) (0 -2308 112 ) (352 -2308 112 ) +4 3586 3665 (0 -2304 112 ) (0 -2304 80 ) (0 -2308 80 ) (0 -2308 112 ) +4 3586 3591 (238 -2304 80 ) (240.250015 -2304 80 ) (240.750000 -2308 80 ) (240 -2308 80 ) +4 3586 3589 (220 -2304 80 ) (238 -2304 80 ) (240 -2308 80 ) (228 -2308 80 ) +4 3586 3588 (0 -2308 80 ) (0 -2304 80 ) (220 -2304 80 ) (228 -2308 80 ) +4 3586 3587 (0 -2308 80 ) (863.992188 -2308 80 ) (895.995667 -2308 112 ) (0 -2308 112 ) +4 3587 3684 (0 -2592 116 ) (0 -2496 116 ) (0 -2496 96 ) (0 -2592 96 ) +4 3587 3665 (0 -2432 116 ) (0 -2308 116 ) (0 -2308 80 ) (0 -2432 80 ) +4 3587 3620 (0 -2624 116 ) (0 -2624 80 ) (320 -2624 80 ) (320 -2624 116 ) +4 3587 3616 (384 -2624 80 ) (480 -2624 80 ) (480 -2624 116 ) (384 -2624 116 ) +4 3587 3592 (384 -2624 80 ) (352 -2624 80 ) (352 -2320 80 ) (384 -2320 80 ) +4 3587 3593 (352 -2624 80 ) (0 -2624 80 ) (0 -2320 80 ) (352 -2320 80 ) +3 3587 3591 (240 -2308 80 ) (240.750000 -2308 80 ) (241 -2310 80 ) +3 3587 3590 (258 -2320 80 ) (252 -2320 80 ) (250 -2319 80 ) +3 3587 3589 (228 -2308 80 ) (240 -2308 80 ) (244 -2316 80 ) +4 3587 3588 (0 -2320 80 ) (0 -2308 80 ) (228 -2308 80 ) (252 -2320 80 ) +4 3588 3667 (0 -2320 80 ) (0 -2304 80 ) (0 -2304 64 ) (0 -2320 64 ) +4 3588 3593 (0 -2320 64 ) (252 -2320 64 ) (252 -2320 80 ) (0 -2320 80 ) +4 3588 3590 (252 -2320 80 ) (252 -2320 64 ) (250 -2319 64 ) (250 -2319 80 ) +4 3588 3589 (244 -2316 64 ) (220 -2304 64 ) (220 -2304 80 ) (244 -2316 80 ) +4 3589 3591 (241 -2310 64 ) (238 -2304 64 ) (238 -2304 80 ) (241 -2310 80 ) +4 3590 3593 (252 -2320 64 ) (258 -2320 64 ) (258 -2320 80 ) (252 -2320 80 ) +4 3592 3593 (352 -2320 80 ) (352 -2320 72 ) (352 -2624 72 ) (352 -2624 80 ) +4 3593 3667 (0 -2432 80 ) (0 -2320 80 ) (0 -2320 64 ) (0 -2432 64 ) +4 3593 3620 (0 -2624 80 ) (0 -2624 64 ) (320 -2624 64 ) (320 -2624 80 ) +4 3594 3617 (1008 -2624 -1284 ) (1008 -2624 64 ) (352 -2624 64 ) (352 -2624 -1284 ) +4 3594 3596 (352 -2320 -1284 ) (352 -2624 -1284 ) (352 -2624 56 ) (352 -2320 56 ) +4 3594 3595 (352 -2304 -1284 ) (352 -2320 -1284 ) (352 -2320 64 ) (352 -2304 64 ) +4 3595 3597 (320 -2304 0 ) (320 -2304 -1284 ) (320 -2320 -1284 ) (320 -2320 0 ) +4 3595 3596 (320 -2320 56 ) (320 -2320 -1284 ) (352 -2320 -1284 ) (352 -2320 56 ) +4 3596 3617 (320 -2624 56 ) (320 -2624 -1284 ) (352 -2624 -1284 ) (352 -2624 56 ) +4 3596 3597 (320 -2624 -1284 ) (320 -2624 0 ) (320 -2320 0 ) (320 -2320 -1284 ) +4 3597 3687 (0 -2624 -1284 ) (0 -2624 0 ) (0 -2592 0 ) (0 -2592 -1284 ) +4 3597 3685 (0 -2592 0 ) (0 -2496 0 ) (0 -2496 -1284 ) (0 -2592 -1284 ) +4 3597 3682 (0 -2496 0 ) (0 -2432 0 ) (0 -2432 -1284 ) (0 -2496 -1284 ) +4 3597 3668 (0 -2432 0 ) (0 -2304 0 ) (0 -2304 -1284 ) (0 -2432 -1284 ) +4 3597 3629 (0 -2624 0 ) (0 -2624 -1284 ) (320 -2624 -1284 ) (320 -2624 0 ) +4 3598 3630 (1008 -3072 672 ) (1008 -3072 5542.669922 ) (608 -3072 5542.669922 ) (608 -3072 672 ) +5 3598 3618 (1008 -3023.998047 624 ) (1008 -3072 672.001953 ) (608 -3072 672.001953 ) (608 -2816 416.001953 ) (800.001953 -2816 416.001923 ) +4 3598 3612 (704 -2719.998047 320 ) (608 -2719.998047 320 ) (608 -2640 320 ) (704 -2640 320 ) +4 3598 3606 (608 -2640 320 ) (608 -2624 320 ) (704 -2624 320 ) (704 -2640 320 ) +5 3598 3600 (608 -2624 320 ) (608 -2688 320 ) (608 -2816 448 ) (608 -2816 5542.669922 ) (608 -2624 5542.669922 ) +4 3598 3601 (608 -2816 416 ) (608 -3072 672 ) (608 -3072 5542.669922 ) (608 -2816 5542.669922 ) +4 3598 3599 (752 -2624 368 ) (1008 -2624 624 ) (1008 -3023.996094 624 ) (752 -2767.996094 368 ) +3 3599 3618 (1008 -2816 416.001923 ) (1008 -3023.998047 624 ) (800.001953 -2816 416.001923 ) +4 3599 3611 (1008 -2719.998047 320 ) (800 -2719.998047 320 ) (800 -2640 320 ) (1008 -2640 320 ) +4 3599 3604 (800 -2640 320 ) (800 -2624 320 ) (1008 -2624 320 ) (1008 -2640 320 ) +4 3600 3613 (576 -2688 320 ) (576 -2640 320 ) (608 -2640 320 ) (608 -2688 320 ) +4 3600 3607 (576 -2640 320 ) (576 -2624 320 ) (608 -2624 320 ) (608 -2640 320 ) +5 3600 3603 (576 -2624 320 ) (576 -2688 320 ) (576 -2816 448 ) (576 -2816 512 ) (576 -2624 512 ) +4 3600 3602 (576 -2816 512 ) (576 -2816 5542.669922 ) (576 -2624 5542.669922 ) (576 -2624 512 ) +4 3600 3601 (576 -2816 5542.669922 ) (576 -2816 448 ) (608 -2816 448 ) (608 -2816 5542.669922 ) +4 3601 3630 (608 -3072 5542.669922 ) (576 -3072 5542.669922 ) (576 -3072 672 ) (608 -3072 672 ) +4 3601 3618 (608 -3072 672.001953 ) (576 -3072 672.001953 ) (576 -2816 416.001953 ) (608 -2816 416.001953 ) +3 3601 3603 (576 -2816 416 ) (576 -2912 512 ) (576 -2816 512 ) +5 3601 3602 (576 -2912 512 ) (576 -3072 672 ) (576 -3072 5542.669922 ) (576 -2816 5542.669922 ) (576 -2816 512 ) +4 3602 3794 (0 -3072 672 ) (0 -3072 5542.669922 ) (0 -2976 5542.669922 ) (0 -2976 576 ) +4 3602 3698 (0 -2976 5542.669922 ) (0 -2944 5542.669922 ) (0 -2944 544 ) (0 -2976 576 ) +4 3602 3697 (0 -2944 5542.669922 ) (0 -2752 5542.669922 ) (0 -2752 352 ) (0 -2944 544 ) +5 3602 3696 (0 -2752 5542.669922 ) (0 -2688 5542.669922 ) (0 -2688 320 ) (0 -2720 320 ) (0 -2752 352 ) +4 3602 3691 (0 -2688 5542.669922 ) (0 -2624 5542.669922 ) (0 -2624 320 ) (0 -2688 320 ) +4 3602 3632 (320 -3072 5542.669922 ) (0 -3072 5542.669922 ) (0 -3072 672 ) (320 -3072 672 ) +4 3602 3630 (576 -3072 5542.669922 ) (320 -3072 5542.669922 ) (320 -3072 672 ) (576 -3072 672 ) +4 3602 3627 (320 -3072 672.001953 ) (0 -3072 672.001953 ) (0 -3040 640.001953 ) (320 -3040 640.001953 ) +4 3602 3626 (0 -3040 640.001953 ) (0 -2976 576.001953 ) (320 -2976 576.001953 ) (320 -3040 640.001953 ) +4 3602 3624 (0 -2976 576.001953 ) (0 -2944 544.001953 ) (320 -2944 544.001953 ) (320 -2976 576.001953 ) +4 3602 3623 (0 -2944 544.001953 ) (0 -2752 352.001953 ) (128 -2752 352.001953 ) (128 -2944 544.001953 ) +4 3602 3622 (0 -2752 352.001953 ) (0 -2719.998047 320 ) (128 -2719.998047 320 ) (128 -2752 352.001953 ) +4 3602 3621 (128 -2719.998047 320 ) (320 -2719.998047 320 ) (320 -2944 544.001953 ) (128 -2944 544.001953 ) +5 3602 3618 (576 -3072 672.001953 ) (320 -3072 672.001953 ) (320 -2816 416.001953 ) (480.001984 -2816 416.001923 ) (576 -2911.998047 512 ) +4 3602 3615 (384 -2719.998047 320 ) (0 -2719.998047 320 ) (0 -2640 320 ) (384 -2640 320 ) +4 3602 3610 (0 -2640 320 ) (0 -2624 320 ) (384 -2624 320 ) (384 -2640 320 ) +4 3602 3603 (432 -2624 368 ) (576 -2624 512.001892 ) (576 -2912.007813 512.001892 ) (432 -2768 368 ) +3 3603 3618 (576 -2816 416.001923 ) (576 -2911.998047 512 ) (480.001984 -2816 416.001923 ) +4 3603 3614 (576 -2719.998047 320 ) (480 -2719.998047 320 ) (480 -2640 320 ) (576 -2640 320 ) +4 3603 3608 (480 -2640 320 ) (480 -2624 320 ) (576 -2624 320 ) (576 -2640 320 ) +4 3604 3611 (800 -2640 240 ) (1008 -2640 240 ) (1008 -2640 320 ) (800 -2640 320 ) +4 3606 3612 (608 -2640 240 ) (704 -2640 240 ) (704 -2640 320 ) (608 -2640 320 ) +4 3606 3607 (608 -2640 272 ) (608 -2640 320 ) (608 -2624 320 ) (608 -2624 256 ) +4 3607 3613 (608 -2640 272 ) (608 -2640 320 ) (576 -2640 320 ) (576 -2640 272 ) +4 3607 3608 (576 -2640 272 ) (576 -2640 320 ) (576 -2624 320 ) (576 -2624 256 ) +4 3608 3614 (480 -2640 240 ) (576 -2640 240 ) (576 -2640 320 ) (480 -2640 320 ) +4 3610 3691 (0 -2624 320 ) (0 -2624 256 ) (0 -2640 256 ) (0 -2640 320 ) +4 3610 3620 (0 -2624 224.001953 ) (320 -2624 224.001968 ) (320 -2640 240.001968 ) (0 -2640 240.001953 ) +4 3610 3615 (0 -2640 240 ) (384 -2640 240 ) (384 -2640 320 ) (0 -2640 320 ) +3 3612 3613 (608 -2640 320 ) (608 -2640 272 ) (608 -2688 320 ) +3 3613 3614 (576 -2640 320 ) (576 -2640 272 ) (576 -2688 320 ) +3 3615 3696 (0 -2688 288 ) (0 -2720 320 ) (0 -2688 320 ) +5 3615 3691 (0 -2656 256 ) (0 -2688 288 ) (0 -2688 320 ) (0 -2640 320 ) (0 -2640 256 ) +4 3615 3620 (320 -2719.998047 320 ) (0 -2719.998047 320 ) (0 -2640 240.001953 ) (320 -2640 240.001968 ) +4 3616 3617 (384 -2624 64 ) (480 -2624 64 ) (480 -2640 64 ) (384 -2640 64 ) +4 3617 3629 (320 -2624 0 ) (320 -2624 -1284 ) (320 -2816 -1284 ) (320 -2816 0 ) +4 3617 3619 (320 -2816 0 ) (320 -2816 -1284 ) (1008 -2816 -1284 ) (1008 -2816 0 ) +4 3618 3630 (1008 -3072 416 ) (1008 -3072 672 ) (320 -3072 672 ) (320 -3072 416 ) +4 3618 3627 (320 -3072 672 ) (320 -3040 640 ) (320 -3040 416 ) (320 -3072 416 ) +4 3618 3626 (320 -3040 640 ) (320 -2976 576 ) (320 -2976 416 ) (320 -3040 416 ) +4 3618 3624 (320 -2976 576 ) (320 -2944 544 ) (320 -2944 416 ) (320 -2976 416 ) +3 3618 3621 (320 -2944 544 ) (320 -2816 416 ) (320 -2944 416 ) +4 3619 3649 (1008 -3072 -1284 ) (1008 -3072 0 ) (320 -3072 0 ) (320 -3072 -1284 ) +4 3619 3629 (320 -2816 0 ) (320 -2816 -1284 ) (320 -3072 -1284 ) (320 -3072 0 ) +4 3620 3696 (0 -2720 320 ) (0 -2688 288 ) (0 -2688 256 ) (0 -2720 256 ) +4 3620 3692 (0 -2624 176 ) (0 -2624 64 ) (0 -2688 64 ) (0 -2688 176 ) +3 3620 3691 (0 -2688 288 ) (0 -2656 256 ) (0 -2688 256 ) +4 3620 3622 (128 -2720 320 ) (0 -2720 320 ) (0 -2720 80 ) (128 -2720 80 ) +4 3620 3621 (320 -2720 64 ) (320 -2720 320 ) (128 -2720 320 ) (128 -2720 64 ) +4 3621 3624 (320 -2944 96 ) (320 -2944 544 ) (128 -2944 544 ) (128 -2944 96 ) +4 3621 3623 (128 -2752 64 ) (128 -2944 64 ) (128 -2944 544 ) (128 -2752 352 ) +4 3621 3622 (128 -2720 320 ) (128 -2720 80 ) (128 -2752 80 ) (128 -2752 352 ) +4 3622 3696 (0 -2752 352 ) (0 -2720 320 ) (0 -2720 256 ) (0 -2752 256 ) +4 3622 3623 (128 -2752 80 ) (128 -2752 352 ) (0 -2752 352 ) (0 -2752 80 ) +4 3623 3697 (0 -2944 544 ) (0 -2752 352 ) (0 -2752 32 ) (0 -2944 32 ) +3 3623 3625 (128 -2944 96 ) (0 -2944 96 ) (0 -2944 64 ) +4 3623 3624 (128 -2944 96 ) (128 -2944 544 ) (0 -2944 544 ) (0 -2944 96 ) +4 3624 3698 (0 -2976 576 ) (0 -2944 544 ) (0 -2944 96 ) (0 -2976 96 ) +4 3624 3626 (320 -2976 96 ) (320 -2976 576 ) (0 -2976 576 ) (0 -2976 96 ) +4 3624 3625 (128 -2976 96 ) (0 -2976 96 ) (0 -2944 96 ) (128 -2944 96 ) +4 3625 3698 (0 -2944 96 ) (0 -2944 64 ) (0 -2976 64 ) (0 -2976 96 ) +3 3625 3626 (128 -2976 96 ) (0 -2976 96 ) (0 -2976 64 ) +4 3626 3798 (0 -2976 220 ) (0 -2976 0 ) (0 -3040 0 ) (0 -3040 220 ) +4 3626 3794 (0 -3040 640 ) (0 -2976 576 ) (0 -2976 220 ) (0 -3040 220 ) +4 3626 3629 (320 -2976 0 ) (320 -3040 0 ) (0 -3040 0 ) (0 -2976 0 ) +4 3626 3628 (0 -3040 0 ) (128 -3040 0 ) (128 -3040 288 ) (0 -3040 288 ) +4 3626 3627 (320 -3040 288 ) (320 -3040 640 ) (0 -3040 640 ) (0 -3040 288 ) +4 3627 3794 (0 -3072 288 ) (0 -3072 672 ) (0 -3040 640 ) (0 -3040 288 ) +4 3627 3632 (320 -3072 288 ) (320 -3072 672 ) (0 -3072 672 ) (0 -3072 288 ) +4 3627 3628 (0 -3040 288 ) (128 -3040 288 ) (96 -3072 288 ) (0 -3072 288 ) +4 3628 3798 (0 -3072 0 ) (0 -3072 220 ) (0 -3040 220 ) (0 -3040 0 ) +4 3628 3794 (0 -3072 220 ) (0 -3072 288 ) (0 -3040 288 ) (0 -3040 220 ) +4 3628 3633 (96 -3072 288 ) (0 -3072 288 ) (0 -3072 0 ) (96 -3072 0 ) +4 3628 3629 (96 -3072 0 ) (0 -3072 0 ) (0 -3040 0 ) (128 -3040 0 ) +4 3629 3806 (0 -3072 -1284 ) (0 -3072 -64 ) (0 -2976 -64 ) (0 -2976 -1284 ) +4 3629 3803 (0 -3072 -64 ) (0 -3072 0 ) (0 -2976 0 ) (0 -2976 -64 ) +4 3629 3700 (0 -2976 0 ) (0 -2688 0 ) (0 -2688 -1284 ) (0 -2976 -1284 ) +4 3629 3694 (0 -2624 -16 ) (0 -2624 -1284 ) (0 -2688 -1284 ) (0 -2688 -16 ) +4 3629 3649 (320 -3072 -1284 ) (320 -3072 0 ) (0 -3072 0 ) (0 -3072 -1284 ) +4 3630 3642 (1024 -3296 416 ) (1024 -3296 5542.669922 ) (320 -3296 5542.669922 ) (320 -3296 416 ) +4 3630 3632 (320 -3072 5542.669922 ) (320 -3072 416 ) (320 -3296 416 ) (320 -3296 5542.669922 ) +4 3630 3631 (1024 -3296 416 ) (320 -3296 416 ) (320 -3264 416 ) (1024 -3264 416 ) +4 3631 3649 (1024 -3264 0 ) (1024 -3296 0 ) (320 -3296 0 ) (320 -3264 0 ) +4 3631 3643 (320 -3296 0 ) (1024 -3296 0 ) (1024 -3296 288 ) (320 -3296 288 ) +4 3631 3642 (1024 -3296 288 ) (1024 -3296 416 ) (320 -3296 416 ) (320 -3296 288 ) +4 3631 3635 (320 -3264 0 ) (320 -3296 0 ) (320 -3296 256 ) (320 -3264 256 ) +4 3631 3632 (320 -3296 288 ) (320 -3296 416 ) (320 -3264 416 ) (320 -3264 288 ) +4 3632 3827 (0 -3072 5542.669922 ) (0 -3072 288 ) (0 -3296 288 ) (0 -3296 5542.669922 ) +4 3632 3642 (320 -3296 288 ) (320 -3296 5542.669922 ) (0 -3296 5542.669922 ) (0 -3296 288 ) +3 3632 3633 (0 -3168 288 ) (0 -3072 288 ) (96 -3072 288 ) +4 3633 3838 (0 -3072 32 ) (0 -3072 0 ) (0 -3168 0 ) (0 -3168 32 ) +4 3633 3829 (0 -3072 40 ) (0 -3072 32 ) (0 -3168 32 ) (0 -3168 40 ) +4 3633 3828 (0 -3072 288 ) (0 -3072 40 ) (0 -3168 40 ) (0 -3168 288 ) +3 3633 3649 (0 -3168 0 ) (0 -3072 0 ) (96 -3072 0 ) +4 3634 3649 (32 -3200 0 ) (320 -3200 0 ) (320 -3216 0 ) (32 -3216 0 ) +4 3634 3635 (32 -3216 0 ) (320 -3216 0 ) (320 -3216 256 ) (32 -3216 256 ) +4 3635 3649 (32 -3216 0 ) (320 -3216 0 ) (320 -3296 0 ) (32 -3296 0 ) +4 3635 3644 (32 -3296 0 ) (320 -3296 0 ) (320 -3296 256 ) (32 -3296 256 ) +4 3635 3637 (32 -3264 160 ) (32 -3296 160 ) (32 -3296 256 ) (32 -3264 256 ) +4 3635 3636 (32 -3216 256 ) (32 -3216 160 ) (32 -3264 160 ) (32 -3264 256 ) +4 3636 3637 (24 -3264 256 ) (24 -3264 160 ) (32 -3264 160 ) (32 -3264 256 ) +4 3638 3833 (0 -3264 256 ) (0 -3216 256 ) (0 -3216 160 ) (0 -3264 160 ) +4 3638 3639 (0 -3264 160 ) (16 -3264 160 ) (16 -3264 256 ) (0 -3264 256 ) +4 3639 3843 (0 -3296 160 ) (0 -3296 256 ) (0 -3264 256 ) (0 -3264 160 ) +4 3640 3836 (0 -3216 40 ) (0 -3220 32 ) (0 -3264 32 ) (0 -3264 40 ) +4 3640 3834 (0 -3264 96 ) (0 -3216 96 ) (0 -3216 40 ) (0 -3264 40 ) +4 3640 3641 (0 -3264 32 ) (8 -3264 32 ) (8 -3264 96 ) (0 -3264 96 ) +4 3641 3844 (0 -3296 32 ) (0 -3296 96 ) (0 -3264 96 ) (0 -3264 32 ) +4 3642 3937 (1024 -4096 288 ) (1024 -4096 5542.669922 ) (0 -4096 5542.669922 ) (0 -4096 288 ) +4 3642 3827 (0 -4096 288 ) (0 -4096 5542.669922 ) (0 -3296 5542.669922 ) (0 -3296 288 ) +4 3642 3648 (32 -4096 288 ) (0 -4096 288 ) (0 -3520 288 ) (32 -3520 288 ) +4 3642 3647 (0 -3520 288 ) (0 -3456 288 ) (32 -3456 288 ) (32 -3520 288 ) +4 3642 3645 (320 -4096 288 ) (32 -4096 288 ) (32 -3456 288 ) (320 -3456 288 ) +4 3642 3643 (1024 -4096 288 ) (320 -4096 288 ) (320 -3296 288 ) (1024 -3296 288 ) +4 3643 3937 (1024 -4096 0 ) (1024 -4096 288 ) (320 -4096 288 ) (320 -4096 0 ) +4 3643 3649 (1024 -4096 0 ) (320 -4096 0 ) (320 -3296 0 ) (1024 -3296 0 ) +4 3643 3644 (320 -3296 256 ) (320 -3296 0 ) (320 -3456 0 ) (320 -3456 256 ) +4 3643 3645 (320 -4096 288 ) (320 -3456 288 ) (320 -3456 0 ) (320 -4096 0 ) +4 3644 3649 (32 -3456 0 ) (32 -3296 0 ) (320 -3296 0 ) (320 -3456 0 ) +4 3644 3645 (32 -3456 256 ) (32 -3456 0 ) (320 -3456 0 ) (320 -3456 256 ) +4 3645 3937 (320 -4096 288 ) (32 -4096 288 ) (32 -4096 0 ) (320 -4096 0 ) +4 3645 3649 (320 -4096 0 ) (32 -4096 0 ) (32 -3456 0 ) (320 -3456 0 ) +4 3645 3648 (32 -4096 288 ) (32 -3520 288 ) (32 -3520 0 ) (32 -4096 0 ) +4 3645 3647 (32 -3520 288 ) (32 -3456 288 ) (32 -3456 0 ) (32 -3520 0 ) +6 3646 3846 (0 -3328 96 ) (0 -3328 0 ) (0 -3424 0 ) (0 -3424 96 ) (0 -3392 112 ) (0 -3360 112 ) +4 3646 3649 (0 -3424 0 ) (0 -3328 0 ) (8 -3328 0 ) (8 -3424 0 ) +4 3647 3851 (0 -3520 288 ) (0 -3488 288 ) (0 -3488 0 ) (0 -3520 0 ) +4 3647 3649 (0 -3520 0 ) (0 -3456 0 ) (32 -3456 0 ) (32 -3520 0 ) +4 3647 3648 (0 -3520 0 ) (32 -3520 0 ) (32 -3520 288 ) (0 -3520 288 ) +4 3648 3937 (32 -4096 288 ) (0 -4096 288 ) (0 -4096 0 ) (32 -4096 0 ) +4 3648 3852 (0 -4096 0 ) (0 -4096 288 ) (0 -3520 288 ) (0 -3520 0 ) +4 3648 3649 (32 -4096 0 ) (0 -4096 0 ) (0 -3520 0 ) (32 -3520 0 ) +4 3649 3937 (1024 -4096 -1284 ) (1024 -4096 0 ) (0 -4096 0 ) (0 -4096 -1284 ) +4 3649 3882 (0 -4096 -1284 ) (0 -4096 -64 ) (0 -3072 -64 ) (0 -3072 -1284 ) +4 3649 3874 (0 -4096 -64 ) (0 -4096 0 ) (0 -3264 0 ) (0 -3264 -64 ) +4 3649 3869 (0 -3264 0 ) (0 -3072 0 ) (0 -3072 -64 ) (0 -3264 -64 ) +4 3650 3669 (-72 -2176 256 ) (-32 -2176 256 ) (-32 -2176 5542.669922 ) (-72 -2176 5542.669922 ) +4 3650 3665 (-32 -2176 256 ) (0 -2176 256 ) (0 -2176 5542.669922 ) (-32 -2176 5542.669922 ) +4 3650 3651 (-72 -2079.998047 319.998718 ) (-72 -2048 341.330688 ) (0 -2048 341.330688 ) (0 -2079.998047 319.998718 ) +4 3650 3652 (-72 -2176 256 ) (-72 -2176 5542.669922 ) (-72 -2048 5542.669922 ) (-72 -2048 341.333008 ) +3 3651 3652 (-72 -2080 320 ) (-72 -2048 341.333008 ) (-72 -2048 298.666718 ) +4 3652 3708 (-480 -2048 304 ) (-480 -2048 256 ) (-480 -2176 256 ) (-480 -2176 304 ) +4 3652 3707 (-480 -2048 5542.669922 ) (-480 -2048 304 ) (-480 -2176 304 ) (-480 -2176 5542.669922 ) +4 3652 3669 (-480 -2176 5542.669922 ) (-480 -2176 256 ) (-72 -2176 256 ) (-72 -2176 5542.669922 ) +4 3652 3653 (-72 -2176 256 ) (-480 -2176 256 ) (-480 -2048 256 ) (-72 -2048 256 ) +4 3653 3710 (-480 -2080 176 ) (-480 -2176 176 ) (-480 -2176 192 ) (-480 -2080 192 ) +4 3653 3669 (-480 -2176 256 ) (-480 -2176 176 ) (-136 -2176 176 ) (-64 -2176 256 ) +4 3653 3657 (-476 -2176 176 ) (-480 -2176 176 ) (-480 -2080 176 ) (-476 -2080 176 ) +4 3653 3656 (-480 -2080 176 ) (-480 -2048 176 ) (-476 -2048 176 ) (-476 -2080 176 ) +4 3653 3655 (-136 -2176 176 ) (-476 -2176 176 ) (-476 -2048 176 ) (-136 -2048 176 ) +4 3653 3654 (-136 -2176 176 ) (-136 -2048 176 ) (-64 -2048 256 ) (-64 -2176 256 ) +3 3654 3669 (-136 -2176 176 ) (-64 -2176 176 ) (-64 -2176 256 ) +4 3654 3655 (-64 -2176 176 ) (-136 -2176 176 ) (-136 -2048 176 ) (-64 -2120 176 ) +4 3655 3670 (-476 -2176 64 ) (-64 -2176 64 ) (-64 -2176 96 ) (-476 -2176 96 ) +4 3655 3669 (-64 -2176 96 ) (-64 -2176 176 ) (-476 -2176 176 ) (-476 -2176 96 ) +4 3655 3662 (-64 -2176 64 ) (-128 -2176 64 ) (-128 -2048 64 ) (-64 -2112 64 ) +4 3655 3663 (-128 -2176 64 ) (-476 -2176 64 ) (-476 -2048 64 ) (-128 -2048 64 ) +4 3655 3659 (-120 -2056 144 ) (-120 -2056 168 ) (-72 -2104 168 ) (-72 -2104 144 ) +4 3655 3660 (-72 -2104 64 ) (-120 -2056 64 ) (-120 -2056 136 ) (-72 -2104 136 ) +4 3655 3658 (-476 -2080 64 ) (-476 -2176 64 ) (-476 -2176 92 ) (-476 -2080 92 ) +4 3655 3657 (-476 -2176 96 ) (-476 -2176 176 ) (-476 -2080 176 ) (-476 -2080 96 ) +4 3655 3656 (-476 -2048 64 ) (-476 -2080 64 ) (-476 -2080 176 ) (-476 -2048 176 ) +4 3656 3663 (-480 -2080 64 ) (-480 -2048 64 ) (-476 -2048 64 ) (-476 -2080 64 ) +4 3656 3658 (-480 -2080 64 ) (-476 -2080 64 ) (-476 -2080 92 ) (-480 -2080 88 ) +4 3656 3657 (-476 -2080 96 ) (-476 -2080 176 ) (-480 -2080 176 ) (-480 -2080 96 ) +4 3657 3710 (-480 -2176 96 ) (-480 -2176 176 ) (-480 -2080 176 ) (-480 -2080 96 ) +4 3657 3669 (-480 -2176 176 ) (-480 -2176 96 ) (-476 -2176 96 ) (-476 -2176 176 ) +4 3658 3671 (-480 -2176 88 ) (-480 -2176 64 ) (-476 -2176 64 ) (-476 -2176 92 ) +4 3658 3663 (-476 -2176 64 ) (-480 -2176 64 ) (-480 -2080 64 ) (-476 -2080 64 ) +4 3661 3680 (-64 -2176 -64 ) (-64 -2176 -1284 ) (-32 -2176 -1284 ) (-32 -2176 -64 ) +4 3661 3666 (0 -2176 -1284 ) (0 -2176 0 ) (-32 -2176 0 ) (-32 -2176 -1284 ) +4 3661 3664 (-64 -2176 -1284 ) (-64 -2176 -64 ) (-64 -2048 -64 ) (-64 -2048 -1284 ) +4 3662 3670 (-128 -2176 32 ) (-64 -2176 32 ) (-64 -2176 64 ) (-128 -2176 64 ) +4 3662 3663 (-128 -2048 32 ) (-128 -2176 32 ) (-128 -2176 64 ) (-128 -2048 64 ) +4 3663 3671 (-480 -2176 64 ) (-480 -2176 32 ) (-476 -2176 32 ) (-476 -2176 64 ) +4 3663 3670 (-476 -2176 32 ) (-128 -2176 32 ) (-128 -2176 64 ) (-476 -2176 64 ) +4 3664 3793 (-480 -2048 -128 ) (-480 -2048 -1284 ) (-480 -2176 -1284 ) (-480 -2176 -128 ) +4 3664 3789 (-480 -2048 -64 ) (-480 -2048 -128 ) (-480 -2176 -128 ) (-480 -2176 -64 ) +4 3664 3680 (-480 -2176 -64 ) (-480 -2176 -1284 ) (-64 -2176 -1284 ) (-64 -2176 -64 ) +4 3665 3681 (0 -2432 256 ) (0 -2432 5542.669922 ) (-32 -2432 5542.669922 ) (-32 -2432 256 ) +4 3665 3673 (-32 -2272 80 ) (-32 -2432 80 ) (-32 -2432 96 ) (-32 -2272 96 ) +4 3665 3670 (-32 -2176 96 ) (-32 -2176 80 ) (-32 -2272 80 ) (-32 -2272 96 ) +4 3665 3669 (-32 -2176 5542.669922 ) (-32 -2176 96 ) (-32 -2432 96 ) (-32 -2432 5542.669922 ) +4 3665 3667 (0 -2432 80 ) (-32 -2432 80 ) (-32 -2272 80 ) (0 -2272 80 ) +4 3666 3680 (-32 -2176 -64 ) (-32 -2176 -1284 ) (-32 -2272 -1284 ) (-32 -2272 -64 ) +4 3666 3668 (0 -2272 -1284 ) (0 -2272 0 ) (-32 -2272 0 ) (-32 -2272 -1284 ) +4 3667 3673 (-32 -2432 56 ) (-32 -2432 80 ) (-32 -2272 80 ) (-32 -2272 56 ) +4 3668 3682 (0 -2432 -1284 ) (0 -2432 0 ) (-32 -2432 0 ) (-32 -2432 -1284 ) +4 3668 3680 (-32 -2432 -1284 ) (-32 -2432 -64 ) (-32 -2272 -64 ) (-32 -2272 -1284 ) +4 3668 3674 (-32 -2432 -64 ) (-32 -2432 0 ) (-32 -2272 0 ) (-32 -2272 -64 ) +4 3669 3719 (-480 -2432 256 ) (-480 -2432 304 ) (-480 -2368 304 ) (-480 -2368 256 ) +4 3669 3713 (-480 -2240 96 ) (-480 -2336 96 ) (-480 -2336 192 ) (-480 -2240 192 ) +4 3669 3708 (-480 -2368 304 ) (-480 -2176 304 ) (-480 -2176 256 ) (-480 -2368 256 ) +4 3669 3707 (-480 -2432 304 ) (-480 -2432 5542.669922 ) (-480 -2176 5542.669922 ) (-480 -2176 304 ) +4 3669 3703 (-480 -2432 128 ) (-480 -2432 96 ) (-384 -2432 96 ) (-384 -2432 128 ) +4 3669 3702 (-480 -2432 5542.669922 ) (-480 -2432 224 ) (-384 -2432 224 ) (-384 -2432 5542.669922 ) +4 3669 3701 (-352 -2432 224 ) (-352 -2432 5542.669922 ) (-384 -2432 5542.669922 ) (-384 -2432 224 ) +4 3669 3681 (-32 -2432 256 ) (-32 -2432 5542.669922 ) (-352 -2432 5542.669922 ) (-352 -2432 256 ) +4 3669 3679 (-476 -2432 96 ) (-480 -2432 96 ) (-480 -2336 96 ) (-476 -2336 96 ) +4 3669 3677 (-96 -2432 96 ) (-476 -2432 96 ) (-476 -2272 96 ) (-96 -2272 96 ) +4 3669 3675 (-64 -2432 96 ) (-96 -2432 96 ) (-96 -2272 96 ) (-64 -2272 96 ) +4 3669 3673 (-32 -2272 96 ) (-32 -2432 96 ) (-64 -2432 96 ) (-64 -2272 96 ) +4 3669 3671 (-480 -2176 96 ) (-476 -2176 96 ) (-476 -2240 96 ) (-480 -2240 96 ) +4 3669 3670 (-476 -2176 96 ) (-32 -2176 96 ) (-32 -2272 96 ) (-476 -2272 96 ) +4 3670 3677 (-96 -2272 96 ) (-476 -2272 96 ) (-476 -2272 32 ) (-96 -2272 32 ) +4 3670 3675 (-64 -2272 96 ) (-96 -2272 96 ) (-96 -2272 40 ) (-64 -2272 40 ) +4 3670 3673 (-32 -2272 48 ) (-32 -2272 96 ) (-64 -2272 96 ) (-64 -2272 48 ) +4 3670 3672 (-476 -2240 32 ) (-476 -2272 32 ) (-476 -2272 92 ) (-476 -2240 92 ) +4 3670 3671 (-476 -2176 32 ) (-476 -2240 32 ) (-476 -2240 96 ) (-476 -2176 96 ) +4 3671 3672 (-480 -2240 32 ) (-476 -2240 32 ) (-476 -2240 92 ) (-480 -2240 88 ) +4 3672 3678 (-480 -2272 88 ) (-480 -2272 32 ) (-476 -2272 32 ) (-476 -2272 92 ) +4 3673 3675 (-64 -2272 96 ) (-64 -2272 48 ) (-64 -2432 48 ) (-64 -2432 96 ) +4 3674 3682 (-64 -2432 -64 ) (-32 -2432 -64 ) (-32 -2432 0 ) (-64 -2432 0 ) +4 3674 3680 (-32 -2272 -64 ) (-32 -2432 -64 ) (-64 -2432 -64 ) (-64 -2272 -64 ) +4 3674 3676 (-64 -2272 0 ) (-64 -2272 -64 ) (-64 -2432 -64 ) (-64 -2432 0 ) +4 3675 3677 (-96 -2272 96 ) (-96 -2272 40 ) (-96 -2432 40 ) (-96 -2432 96 ) +4 3676 3682 (-96 -2432 -64 ) (-64 -2432 -64 ) (-64 -2432 0 ) (-96 -2432 0 ) +4 3676 3680 (-64 -2432 -64 ) (-96 -2432 -64 ) (-96 -2272 -64 ) (-64 -2272 -64 ) +4 3677 3703 (-476 -2432 32 ) (-384 -2432 32 ) (-384 -2432 96 ) (-476 -2432 96 ) +4 3677 3678 (-476 -2272 92 ) (-476 -2272 32 ) (-476 -2336 32 ) (-476 -2336 92 ) +4 3677 3679 (-476 -2336 32 ) (-476 -2432 32 ) (-476 -2432 96 ) (-476 -2336 96 ) +4 3678 3679 (-480 -2336 32 ) (-476 -2336 32 ) (-476 -2336 92 ) (-480 -2336 88 ) +4 3679 3703 (-480 -2432 96 ) (-480 -2432 32 ) (-476 -2432 32 ) (-476 -2432 96 ) +4 3680 3793 (-480 -2432 -1284 ) (-480 -2432 -128 ) (-480 -2176 -128 ) (-480 -2176 -1284 ) +4 3680 3789 (-480 -2432 -128 ) (-480 -2432 -64 ) (-480 -2176 -64 ) (-480 -2176 -128 ) +4 3680 3705 (-480 -2432 -64 ) (-480 -2432 -1284 ) (-352 -2432 -1284 ) (-352 -2432 -64 ) +4 3680 3682 (-352 -2432 -1284 ) (-32 -2432 -1284 ) (-32 -2432 -64 ) (-352 -2432 -64 ) +4 3681 3701 (-352 -2432 5542.669922 ) (-352 -2432 256 ) (-352 -2496 256 ) (-352 -2496 5542.669922 ) +4 3681 3689 (-352 -2496 5542.669922 ) (-352 -2496 256 ) (-320 -2496 256 ) (-320 -2496 5542.669922 ) +4 3681 3688 (-320 -2496 256 ) (-32 -2496 256 ) (-32 -2496 5542.669922 ) (-320 -2496 5542.669922 ) +4 3681 3683 (-32 -2496 256 ) (0 -2496 256 ) (0 -2496 5542.669922 ) (-32 -2496 5542.669922 ) +4 3682 3705 (-352 -2432 0 ) (-352 -2432 -1284 ) (-352 -2496 -1284 ) (-352 -2496 0 ) +4 3682 3690 (-352 -2496 0 ) (-352 -2496 -1284 ) (-32 -2496 -1284 ) (-32 -2496 0 ) +4 3682 3685 (-32 -2496 -1284 ) (0 -2496 -1284 ) (0 -2496 0 ) (-32 -2496 0 ) +4 3683 3688 (-32 -2496 5542.669922 ) (-32 -2496 240 ) (-32 -2592 240 ) (-32 -2592 5542.669922 ) +4 3683 3686 (-32 -2592 5542.669922 ) (-32 -2592 256 ) (0 -2592 256 ) (0 -2592 5542.669922 ) +4 3685 3690 (-32 -2496 0 ) (-32 -2496 -1284 ) (-32 -2592 -1284 ) (-32 -2592 0 ) +4 3685 3687 (-32 -2592 0 ) (-32 -2592 -1284 ) (0 -2592 -1284 ) (0 -2592 0 ) +4 3686 3691 (0 -2624 256 ) (0 -2624 5542.669922 ) (-32 -2624 5542.669922 ) (-32 -2624 256 ) +4 3686 3688 (-32 -2624 256 ) (-32 -2624 5542.669922 ) (-32 -2592 5542.669922 ) (-32 -2592 256 ) +4 3687 3694 (0 -2624 -1284 ) (0 -2624 -16 ) (-16 -2624 -16 ) (-16 -2624 -1284 ) +4 3687 3695 (-16 -2624 0 ) (-32 -2624 0 ) (-32 -2624 -1284 ) (-16 -2624 -1284 ) +4 3687 3690 (-32 -2624 -1284 ) (-32 -2624 0 ) (-32 -2592 0 ) (-32 -2592 -1284 ) +4 3688 3691 (-32 -2624 256 ) (-32 -2624 5542.669922 ) (-320 -2624 5542.669922 ) (-320 -2624 256 ) +4 3688 3690 (-320 -2496 176 ) (-32 -2496 176 ) (-32 -2624 176 ) (-320 -2624 176 ) +4 3688 3689 (-320 -2624 256 ) (-320 -2624 5542.669922 ) (-320 -2496 5542.669922 ) (-320 -2496 256 ) +4 3689 3701 (-352 -2624 256 ) (-352 -2624 5542.669922 ) (-352 -2496 5542.669922 ) (-352 -2496 256 ) +4 3689 3691 (-352 -2624 5542.669922 ) (-352 -2624 256 ) (-320 -2624 256 ) (-320 -2624 5542.669922 ) +4 3690 3705 (-352 -2624 -1284 ) (-352 -2624 0 ) (-352 -2496 0 ) (-352 -2496 -1284 ) +4 3690 3695 (-352 -2624 64 ) (-352 -2624 -1284 ) (-32 -2624 -1284 ) (-32 -2624 64 ) +4 3690 3693 (-352 -2624 176 ) (-352 -2624 64 ) (-32 -2624 64 ) (-32 -2624 176 ) +4 3691 3701 (-352 -2688 256 ) (-352 -2688 5542.669922 ) (-352 -2624 5542.669922 ) (-352 -2624 256 ) +4 3691 3696 (-352 -2688 5542.669922 ) (-352 -2688 256 ) (0 -2688 256 ) (0 -2688 5542.669922 ) +4 3693 3695 (-32 -2688 64 ) (-352 -2688 64 ) (-352 -2624 64 ) (-32 -2624 64 ) +4 3694 3700 (-16 -2688 -1284 ) (0 -2688 -1284 ) (0 -2688 -16 ) (-16 -2688 -16 ) +4 3694 3695 (-16 -2624 -1284 ) (-16 -2688 -1284 ) (-16 -2688 -16 ) (-16 -2624 -16 ) +4 3695 3705 (-352 -2688 -1284 ) (-352 -2688 0 ) (-352 -2624 0 ) (-352 -2624 -1284 ) +4 3695 3700 (-352 -2688 0 ) (-352 -2688 -1284 ) (-16 -2688 -1284 ) (-16 -2688 0 ) +4 3696 3701 (-352 -2688 5542.669922 ) (-352 -2688 256 ) (-352 -2752 256 ) (-352 -2752 5542.669922 ) +4 3696 3697 (-352 -2752 5542.669922 ) (-352 -2752 256 ) (0 -2752 256 ) (0 -2752 5542.669922 ) +4 3697 3706 (-352 -2752 5542.669922 ) (-352 -2752 0 ) (-352 -2944 0 ) (-352 -2944 5542.669922 ) +4 3697 3700 (-352 -2944 0 ) (-352 -2752 0 ) (-128 -2752 0 ) (-128 -2944 0 ) +4 3697 3698 (0 -2944 64 ) (0 -2944 5542.669922 ) (-128 -2944 5542.669922 ) (-128 -2944 32 ) +4 3697 3699 (-352 -2944 5542.669922 ) (-352 -2944 0 ) (-128 -2944 0 ) (-128 -2944 5542.669922 ) +4 3698 3798 (0 -2976 64 ) (0 -2976 220 ) (-128 -2976 220 ) (-128 -2976 32 ) +4 3698 3794 (0 -2976 220 ) (0 -2976 5542.669922 ) (-128 -2976 5542.669922 ) (-128 -2976 220 ) +4 3698 3699 (-128 -2976 5542.669922 ) (-128 -2944 5542.669922 ) (-128 -2944 32 ) (-128 -2976 32 ) +4 3699 3798 (-352 -2976 220 ) (-352 -2976 0 ) (-128 -2976 0 ) (-128 -2976 220 ) +4 3699 3794 (-128 -2976 5542.669922 ) (-352 -2976 5542.669922 ) (-352 -2976 220 ) (-128 -2976 220 ) +4 3699 3706 (-352 -2976 0 ) (-352 -2976 5542.669922 ) (-352 -2944 5542.669922 ) (-352 -2944 0 ) +4 3699 3700 (-128 -2976 0 ) (-352 -2976 0 ) (-352 -2944 0 ) (-128 -2944 0 ) +4 3700 3806 (0 -2976 -1284 ) (0 -2976 -64 ) (-352 -2976 -64 ) (-352 -2976 -1284 ) +4 3700 3803 (0 -2976 -64 ) (0 -2976 0 ) (-352 -2976 0 ) (-352 -2976 -64 ) +4 3700 3706 (-352 -2976 -1284 ) (-352 -2976 0 ) (-352 -2752 0 ) (-352 -2752 -1284 ) +4 3700 3705 (-352 -2752 0 ) (-352 -2688 0 ) (-352 -2688 -1284 ) (-352 -2752 -1284 ) +4 3701 3706 (-352 -2752 168 ) (-352 -2752 5542.669922 ) (-384 -2752 5542.669922 ) (-384 -2752 168 ) +4 3701 3702 (-384 -2432 5542.669922 ) (-384 -2432 224 ) (-384 -2752 168 ) (-384 -2752 5542.669922 ) +4 3702 3722 (-480 -2752 168 ) (-480 -2752 304 ) (-480 -2432 304 ) (-480 -2432 224 ) +4 3702 3707 (-480 -2752 304 ) (-480 -2752 5542.669922 ) (-480 -2432 5542.669922 ) (-480 -2432 304 ) +4 3702 3706 (-480 -2752 5542.669922 ) (-480 -2752 168 ) (-384 -2752 168 ) (-384 -2752 5542.669922 ) +4 3704 3706 (-480 -2752 128 ) (-480 -2752 32 ) (-384 -2752 32 ) (-384 -2752 128 ) +4 3705 3793 (-480 -2752 -1284 ) (-480 -2752 -128 ) (-480 -2432 -128 ) (-480 -2432 -1284 ) +4 3705 3789 (-480 -2752 -128 ) (-480 -2752 -64 ) (-480 -2432 -64 ) (-480 -2432 -128 ) +4 3705 3743 (-480 -2752 -32 ) (-480 -2752 0 ) (-480 -2656 0 ) (-480 -2656 -32 ) +4 3705 3742 (-480 -2656 0 ) (-480 -2432 0 ) (-480 -2432 -32 ) (-480 -2656 -32 ) +4 3705 3746 (-480 -2752 -64 ) (-480 -2752 -32 ) (-480 -2432 -32 ) (-480 -2432 -64 ) +4 3705 3706 (-480 -2752 0 ) (-480 -2752 -1284 ) (-352 -2752 -1284 ) (-352 -2752 0 ) +4 3706 3806 (-352 -2976 -1284 ) (-352 -2976 -64 ) (-480 -2976 -64 ) (-480 -2976 -1284 ) +4 3706 3803 (-352 -2976 -64 ) (-352 -2976 0 ) (-480 -2976 0 ) (-480 -2976 -64 ) +4 3706 3798 (-352 -2976 0 ) (-352 -2976 220 ) (-480 -2976 220 ) (-480 -2976 0 ) +4 3706 3794 (-352 -2976 220 ) (-352 -2976 5542.669922 ) (-480 -2976 5542.669922 ) (-480 -2976 220 ) +4 3706 3793 (-480 -2976 -1284 ) (-480 -2976 -128 ) (-480 -2752 -128 ) (-480 -2752 -1284 ) +4 3706 3789 (-480 -2976 -128 ) (-480 -2976 -64 ) (-480 -2752 -64 ) (-480 -2752 -128 ) +4 3706 3780 (-480 -2976 -64 ) (-480 -2976 160 ) (-480 -2960 160 ) (-480 -2960 -64 ) +4 3706 3778 (-480 -2960 160 ) (-480 -2816 160 ) (-480 -2816 -64 ) (-480 -2960 -64 ) +4 3706 3747 (-480 -2976 160 ) (-480 -2976 304 ) (-480 -2816 304 ) (-480 -2816 160 ) +4 3706 3744 (-480 -2752 160 ) (-480 -2752 -32 ) (-480 -2816 -32 ) (-480 -2816 160 ) +4 3706 3746 (-480 -2752 -32 ) (-480 -2752 -64 ) (-480 -2816 -64 ) (-480 -2816 -32 ) +4 3706 3723 (-480 -2816 304 ) (-480 -2752 304 ) (-480 -2752 160 ) (-480 -2816 160 ) +4 3706 3707 (-480 -2976 304 ) (-480 -2976 5542.669922 ) (-480 -2752 5542.669922 ) (-480 -2752 304 ) +4 3707 3795 (-720 -2976 5542.669922 ) (-752 -2976 5542.669922 ) (-752 -2976 304 ) (-720 -2976 304 ) +4 3707 3794 (-480 -2976 304 ) (-480 -2976 5542.669922 ) (-720 -2976 5542.669922 ) (-720 -2976 304 ) +4 3707 3797 (-752 -2976 5542.669922 ) (-960 -2976 5542.669922 ) (-960 -2976 304 ) (-752 -2976 304 ) +4 3707 3787 (-960 -2048 5542.669922 ) (-960 -2048 304 ) (-960 -2976 304 ) (-960 -2976 5542.669922 ) +4 3707 3769 (-960 -2976 304 ) (-960 -2968 304 ) (-757.333313 -2968 304 ) (-757.333313 -2976 304 ) +4 3707 3768 (-757.333313 -2968 304 ) (-528 -2968 304 ) (-528 -2976 304 ) (-757.333313 -2976 304 ) +4 3707 3767 (-960 -2968 304 ) (-960 -2928 304 ) (-944 -2928 304 ) (-944 -2968 304 ) +4 3707 3766 (-960 -2928 304 ) (-960 -2896 304 ) (-944 -2896 304 ) (-944 -2928 304 ) +4 3707 3757 (-714.666626 -2816 304 ) (-528 -2816 304 ) (-528 -2968 304 ) (-714.666626 -2968 304 ) +4 3707 3756 (-944 -2816 304 ) (-714.666626 -2816 304 ) (-714.666626 -2968 304 ) (-944 -2968 304 ) +4 3707 3752 (-512 -2928 304 ) (-512 -2976 304 ) (-528 -2976 304 ) (-528 -2928 304 ) +4 3707 3751 (-512 -2896 304 ) (-512 -2928 304 ) (-528 -2928 304 ) (-528 -2896 304 ) +4 3707 3748 (-512 -2816 304 ) (-508 -2816 304 ) (-508 -2848 304 ) (-512 -2848 304 ) +4 3707 3750 (-508 -2848 304 ) (-508 -2976 304 ) (-512 -2976 304 ) (-512 -2848 304 ) +4 3707 3747 (-508 -2816 304 ) (-480 -2816 304 ) (-480 -2976 304 ) (-508 -2976 304 ) +4 3707 3741 (-960 -2736 304 ) (-960 -2704 304 ) (-944 -2704 304 ) (-944 -2736 304 ) +4 3707 3740 (-960 -2704 304 ) (-960 -2432 304 ) (-944 -2432 304 ) (-944 -2704 304 ) +4 3707 3731 (-944 -2432 304 ) (-528 -2432 304 ) (-528 -2816 304 ) (-944 -2816 304 ) +4 3707 3728 (-512 -2704 304 ) (-512 -2736 304 ) (-528 -2736 304 ) (-528 -2704 304 ) +4 3707 3727 (-528 -2432 304 ) (-512 -2432 304 ) (-512 -2704 304 ) (-528 -2704 304 ) +4 3707 3725 (-508 -2816 304 ) (-512 -2816 304 ) (-512 -2784 304 ) (-508 -2784 304 ) +4 3707 3724 (-512 -2784 304 ) (-512 -2752 304 ) (-508 -2752 304 ) (-508 -2784 304 ) +4 3707 3723 (-480 -2752 304 ) (-480 -2816 304 ) (-508 -2816 304 ) (-508 -2752 304 ) +4 3707 3722 (-512 -2432 304 ) (-480 -2432 304 ) (-480 -2752 304 ) (-512 -2752 304 ) +4 3707 3719 (-768 -2368 304 ) (-480 -2368 304 ) (-480 -2432 304 ) (-768 -2432 304 ) +4 3707 3721 (-960 -2432 304 ) (-960 -2368 304 ) (-768 -2368 304 ) (-768 -2432 304 ) +4 3707 3708 (-544 -2048 304 ) (-480 -2048 304 ) (-480 -2368 304 ) (-544 -2368 304 ) +4 3707 3709 (-960 -2368 304 ) (-960 -2048 304 ) (-544 -2048 304 ) (-544 -2368 304 ) +4 3708 3719 (-480 -2368 304 ) (-544 -2368 304 ) (-544 -2368 256 ) (-480 -2368 256 ) +4 3708 3709 (-544 -2368 256 ) (-544 -2368 304 ) (-544 -2048 304 ) (-544 -2048 256 ) +4 3709 3787 (-960 -2048 304 ) (-960 -2048 192 ) (-960 -2368 192 ) (-960 -2368 304 ) +4 3709 3719 (-544 -2368 304 ) (-768 -2368 304 ) (-768 -2368 256 ) (-544 -2368 256 ) +4 3709 3721 (-768 -2368 304 ) (-960 -2368 304 ) (-960 -2368 192 ) (-768 -2368 192 ) +4 3709 3716 (-544 -2368 192 ) (-960 -2368 192 ) (-960 -2048 192 ) (-544 -2048 192 ) +4 3710 3711 (-492 -2080 192 ) (-492 -2080 96 ) (-492 -2124 96 ) (-492 -2124 192 ) +4 3710 3712 (-492 -2132 96 ) (-492 -2176 96 ) (-492 -2176 192 ) (-492 -2132 192 ) +4 3713 3714 (-492 -2240 192 ) (-492 -2240 96 ) (-492 -2284 96 ) (-492 -2284 192 ) +4 3713 3715 (-492 -2292 96 ) (-492 -2336 96 ) (-492 -2336 192 ) (-492 -2292 192 ) +4 3716 3787 (-960 -2048 192 ) (-960 -2048 96 ) (-960 -2368 96 ) (-960 -2368 192 ) +4 3716 3721 (-960 -2368 192 ) (-960 -2368 96 ) (-768 -2368 96 ) (-768 -2368 192 ) +4 3716 3718 (-544 -2368 96 ) (-960 -2368 96 ) (-960 -2048 96 ) (-544 -2048 96 ) +4 3717 3789 (-544 -2048 -64 ) (-480 -2048 -64 ) (-480 -2368 -64 ) (-544 -2368 -64 ) +4 3717 3720 (-544 -2368 -64 ) (-480 -2368 -64 ) (-480 -2368 0 ) (-544 -2368 0 ) +4 3717 3718 (-544 -2048 -64 ) (-544 -2368 -64 ) (-544 -2368 0 ) (-544 -2048 0 ) +4 3718 3792 (-960 -2048 -64 ) (-593.454407 -2048 -64 ) (-896 -2304 -64 ) (-960 -2201.599854 -64 ) +3 3718 3791 (-896 -2304 -64 ) (-960 -2316.800049 -64 ) (-960 -2201.599854 -64 ) +3 3718 3790 (-896 -2304 -64 ) (-960 -2358.153809 -64 ) (-960 -2316.800049 -64 ) +5 3718 3789 (-593.454407 -2048 -64 ) (-544 -2048 -64 ) (-544 -2368 -64 ) (-960 -2368 -64 ) (-960 -2358.153809 -64 ) +4 3718 3788 (-960 -2048 -32 ) (-960 -2048 -64 ) (-960 -2368 -64 ) (-960 -2368 -32 ) +4 3718 3787 (-960 -2048 96 ) (-960 -2048 -32 ) (-960 -2368 -32 ) (-960 -2368 96 ) +4 3718 3720 (-768 -2368 -64 ) (-544 -2368 -64 ) (-544 -2368 0 ) (-768 -2368 0 ) +4 3718 3721 (-960 -2368 96 ) (-960 -2368 -64 ) (-768 -2368 -64 ) (-768 -2368 96 ) +4 3719 3735 (-768 -2432 272 ) (-768 -2432 256 ) (-576 -2432 256 ) (-576 -2432 272 ) +4 3719 3732 (-576 -2432 256 ) (-528 -2432 256 ) (-528 -2432 272 ) (-576 -2432 272 ) +4 3719 3731 (-528 -2432 304 ) (-768 -2432 304 ) (-768 -2432 272 ) (-528 -2432 272 ) +4 3719 3727 (-512 -2432 304 ) (-528 -2432 304 ) (-528 -2432 256 ) (-512 -2432 256 ) +4 3719 3722 (-480 -2432 304 ) (-512 -2432 304 ) (-512 -2432 256 ) (-480 -2432 256 ) +4 3719 3721 (-768 -2368 304 ) (-768 -2368 256 ) (-768 -2432 256 ) (-768 -2432 304 ) +4 3720 3789 (-480 -2368 -64 ) (-480 -2432 -64 ) (-768 -2432 -64 ) (-768 -2368 -64 ) +4 3720 3745 (-768 -2432 0 ) (-768 -2432 -32 ) (-576 -2432 -32 ) (-576 -2432 0 ) +4 3720 3742 (-576 -2432 -32 ) (-480 -2432 -32 ) (-480 -2432 0 ) (-576 -2432 0 ) +4 3720 3746 (-768 -2432 -32 ) (-768 -2432 -64 ) (-480 -2432 -64 ) (-480 -2432 -32 ) +4 3720 3721 (-768 -2368 0 ) (-768 -2368 -64 ) (-768 -2432 -64 ) (-768 -2432 0 ) +4 3721 3789 (-768 -2432 -64 ) (-960 -2432 -64 ) (-960 -2368 -64 ) (-768 -2368 -64 ) +4 3721 3788 (-960 -2368 -64 ) (-960 -2432 -64 ) (-960 -2432 -32 ) (-960 -2368 -32 ) +4 3721 3787 (-960 -2432 -32 ) (-960 -2432 304 ) (-960 -2368 304 ) (-960 -2368 -32 ) +4 3721 3745 (-960 -2432 160 ) (-960 -2432 -32 ) (-768 -2432 -32 ) (-768 -2432 160 ) +4 3721 3746 (-960 -2432 -32 ) (-960 -2432 -64 ) (-768 -2432 -64 ) (-768 -2432 -32 ) +4 3721 3740 (-944 -2432 304 ) (-960 -2432 304 ) (-960 -2432 160 ) (-944 -2432 160 ) +4 3721 3735 (-944 -2432 272 ) (-944 -2432 160 ) (-768 -2432 160 ) (-768 -2432 272 ) +4 3721 3731 (-768 -2432 304 ) (-944 -2432 304 ) (-944 -2432 272 ) (-768 -2432 272 ) +3 3722 3729 (-512 -2432 224 ) (-512 -2667.402344 182.804565 ) (-512 -2688 224 ) +3 3722 3728 (-512 -2736 304 ) (-512 -2704 304 ) (-512 -2704 272 ) +5 3722 3727 (-512 -2432 304 ) (-512 -2432 224 ) (-512 -2688 224 ) (-512 -2704 256 ) (-512 -2704 304 ) +4 3722 3724 (-512 -2752 304 ) (-512 -2752 168 ) (-508 -2752 168 ) (-508 -2752 304 ) +4 3722 3723 (-508 -2752 168 ) (-480 -2752 168 ) (-480 -2752 304 ) (-508 -2752 304 ) +4 3723 3747 (-480 -2816 304 ) (-508 -2816 304 ) (-508 -2816 160 ) (-480 -2816 160 ) +4 3723 3744 (-480 -2816 160 ) (-508 -2816 160 ) (-508 -2752 160 ) (-480 -2752 160 ) +4 3723 3725 (-508 -2816 176 ) (-508 -2816 304 ) (-508 -2784 304 ) (-508 -2784 176 ) +4 3723 3726 (-508 -2784 160 ) (-508 -2816 160 ) (-508 -2816 168 ) (-508 -2784 168 ) +4 3723 3724 (-508 -2752 304 ) (-508 -2752 160 ) (-508 -2784 160 ) (-508 -2784 304 ) +4 3724 3744 (-512 -2784 160 ) (-512 -2752 160 ) (-508 -2752 160 ) (-508 -2784 160 ) +4 3724 3725 (-512 -2784 304 ) (-512 -2784 176 ) (-508 -2784 176 ) (-508 -2784 304 ) +4 3724 3726 (-512 -2784 168 ) (-512 -2784 160 ) (-508 -2784 160 ) (-508 -2784 168 ) +4 3725 3748 (-508 -2816 304 ) (-512 -2816 304 ) (-512 -2816 176 ) (-508 -2816 176 ) +4 3725 3730 (-512 -2816 176 ) (-512 -2816 224 ) (-512 -2792 224 ) (-512 -2792 176 ) +4 3726 3749 (-512 -2816 168 ) (-512 -2816 160 ) (-508 -2816 160 ) (-508 -2816 168 ) +4 3726 3744 (-508 -2816 160 ) (-512 -2816 160 ) (-512 -2784 160 ) (-508 -2784 160 ) +5 3727 3732 (-528 -2432 272 ) (-528 -2432 224 ) (-528 -2688 224 ) (-528 -2704 256 ) (-528 -2704 272 ) +4 3727 3731 (-528 -2432 304 ) (-528 -2432 272 ) (-528 -2704 272 ) (-528 -2704 304 ) +4 3727 3729 (-528 -2688 224 ) (-528 -2432 224 ) (-512 -2432 224 ) (-512 -2688 224 ) +4 3727 3728 (-528 -2704 304 ) (-528 -2704 272 ) (-512 -2704 272 ) (-512 -2704 304 ) +3 3728 3731 (-528 -2736 304 ) (-528 -2704 304 ) (-528 -2704 272 ) +3 3729 3732 (-528 -2432 224 ) (-528 -2667.402344 182.804611 ) (-528 -2688 224 ) +4 3730 3753 (-528 -2816 224 ) (-528 -2816 176 ) (-512 -2816 176 ) (-512 -2816 224 ) +5 3731 3757 (-528 -2816 304 ) (-714.666626 -2816 304 ) (-736 -2816 288 ) (-714.666626 -2816 272 ) (-528 -2816 272 ) +4 3731 3756 (-714.666626 -2816 304 ) (-944 -2816 304 ) (-944 -2816 272 ) (-757.333313 -2816 272 ) +3 3731 3741 (-944 -2704 272 ) (-944 -2736 304 ) (-944 -2704 304 ) +4 3731 3740 (-944 -2432 304 ) (-944 -2432 272 ) (-944 -2704 272 ) (-944 -2704 304 ) +4 3731 3738 (-944 -2784 272 ) (-944 -2768 272 ) (-576 -2768 272 ) (-576 -2784 272 ) +4 3731 3737 (-944 -2768 272 ) (-944 -2744 272 ) (-576 -2744 272 ) (-576 -2768 272 ) +4 3731 3736 (-944 -2744 272 ) (-944 -2656 272 ) (-576 -2656 272 ) (-576 -2744 272 ) +4 3731 3735 (-944 -2656 272 ) (-944 -2432 272 ) (-576 -2432 272 ) (-576 -2656 272 ) +4 3731 3734 (-528 -2752 272 ) (-528 -2784 272 ) (-576 -2784 272 ) (-576 -2752 272 ) +4 3731 3733 (-528 -2744 272 ) (-528 -2752 272 ) (-576 -2752 272 ) (-576 -2744 272 ) +4 3731 3732 (-576 -2432 272 ) (-528 -2432 272 ) (-528 -2744 272 ) (-576 -2744 272 ) +4 3732 3736 (-576 -2744 272 ) (-576 -2656 272 ) (-576 -2656 192 ) (-576 -2704 192 ) +4 3732 3735 (-576 -2656 272 ) (-576 -2432 272 ) (-576 -2432 224 ) (-576 -2656 184.799988 ) +4 3732 3733 (-528 -2720 224 ) (-528 -2744 272 ) (-576 -2744 272 ) (-576 -2720 224 ) +4 3733 3737 (-576 -2752 256 ) (-576 -2752 272 ) (-576 -2744 272 ) (-576 -2720 224 ) +4 3733 3734 (-576 -2752 272 ) (-576 -2752 256 ) (-528 -2752 256 ) (-528 -2752 272 ) +3 3734 3738 (-576 -2784 272 ) (-576 -2768 272 ) (-576 -2752 256 ) +3 3734 3737 (-576 -2768 272 ) (-576 -2752 272 ) (-576 -2752 256 ) +4 3735 3745 (-944 -2656 160 ) (-944 -2432 160 ) (-576 -2432 160 ) (-576 -2656 160 ) +4 3735 3740 (-944 -2432 272 ) (-944 -2432 160 ) (-944 -2656 160 ) (-944 -2656 272 ) +4 3735 3739 (-896 -2656 192 ) (-944 -2656 192 ) (-944 -2656 160 ) (-896 -2656 160 ) +4 3735 3736 (-576 -2656 192 ) (-576 -2656 272 ) (-944 -2656 272 ) (-944 -2656 192 ) +5 3736 3740 (-944 -2704 272 ) (-944 -2656 272 ) (-944 -2656 192 ) (-944 -2672 192 ) (-944 -2704 256 ) +4 3736 3739 (-944 -2704 192 ) (-944 -2656 192 ) (-896 -2656 192 ) (-896 -2704 192 ) +4 3736 3737 (-576 -2719.998047 223.998062 ) (-576 -2744 272 ) (-944 -2744 272 ) (-944 -2719.998047 223.998062 ) +4 3737 3738 (-576 -2752 256 ) (-576 -2768 272 ) (-944 -2768 272 ) (-944 -2752 256 ) +3 3739 3740 (-944 -2656 160 ) (-944 -2672 192 ) (-944 -2656 192 ) +5 3740 3787 (-960 -2704 304 ) (-960 -2432 304 ) (-960 -2432 160 ) (-960 -2656 160 ) (-960 -2704 256 ) +4 3740 3745 (-960 -2656 160 ) (-960 -2432 160 ) (-944 -2432 160 ) (-944 -2656 160 ) +4 3740 3741 (-944 -2704 272 ) (-944 -2704 304 ) (-960 -2704 304 ) (-960 -2704 272 ) +3 3741 3787 (-960 -2736 304 ) (-960 -2704 304 ) (-960 -2704 272 ) +4 3742 3745 (-576 -2432 -32 ) (-576 -2656 -32 ) (-576 -2656 0 ) (-576 -2432 0 ) +4 3742 3743 (-512 -2656 -32 ) (-480 -2656 -32 ) (-480 -2656 0 ) (-512 -2656 0 ) +4 3742 3746 (-576 -2656 -32 ) (-576 -2432 -32 ) (-480 -2432 -32 ) (-480 -2656 -32 ) +4 3743 3744 (-512 -2752 -32 ) (-480 -2752 -32 ) (-480 -2752 0 ) (-512 -2752 0 ) +4 3743 3746 (-512 -2656 -32 ) (-480 -2656 -32 ) (-480 -2752 -32 ) (-512 -2752 -32 ) +4 3744 3778 (-512 -2816 -32 ) (-480 -2816 -32 ) (-480 -2816 160 ) (-512 -2816 160 ) +4 3744 3746 (-480 -2816 -32 ) (-512 -2816 -32 ) (-512 -2752 -32 ) (-480 -2752 -32 ) +4 3745 3787 (-960 -2656 160 ) (-960 -2432 160 ) (-960 -2432 -32 ) (-960 -2656 -32 ) +4 3745 3746 (-960 -2656 -32 ) (-960 -2432 -32 ) (-576 -2432 -32 ) (-576 -2656 -32 ) +4 3746 3789 (-480 -2432 -64 ) (-480 -2816 -64 ) (-960 -2816 -64 ) (-960 -2432 -64 ) +4 3746 3788 (-960 -2432 -64 ) (-960 -2816 -64 ) (-960 -2816 -32 ) (-960 -2432 -32 ) +4 3746 3779 (-960 -2816 -32 ) (-960 -2816 -64 ) (-512 -2816 -64 ) (-512 -2816 -32 ) +4 3746 3778 (-512 -2816 -64 ) (-480 -2816 -64 ) (-480 -2816 -32 ) (-512 -2816 -32 ) +4 3747 3798 (-480 -2976 160 ) (-480 -2976 220 ) (-508 -2976 220 ) (-508 -2976 160 ) +4 3747 3794 (-480 -2976 220 ) (-480 -2976 304 ) (-508 -2976 304 ) (-508 -2976 220 ) +4 3747 3780 (-480 -2960 160 ) (-480 -2976 160 ) (-508 -2976 160 ) (-508 -2960 160 ) +4 3747 3778 (-508 -2816 160 ) (-480 -2816 160 ) (-480 -2960 160 ) (-508 -2960 160 ) +4 3747 3748 (-508 -2816 304 ) (-508 -2816 176 ) (-508 -2848 176 ) (-508 -2848 304 ) +4 3747 3749 (-508 -2816 168 ) (-508 -2816 160 ) (-508 -2848 160 ) (-508 -2848 168 ) +4 3747 3750 (-508 -2848 160 ) (-508 -2976 160 ) (-508 -2976 304 ) (-508 -2848 304 ) +4 3748 3753 (-512 -2816 224 ) (-512 -2816 176 ) (-512 -2840 176 ) (-512 -2840 224 ) +4 3748 3750 (-512 -2848 304 ) (-512 -2848 176 ) (-508 -2848 176 ) (-508 -2848 304 ) +4 3749 3778 (-512 -2816 160 ) (-508 -2816 160 ) (-508 -2848 160 ) (-512 -2848 160 ) +4 3749 3750 (-512 -2848 168 ) (-512 -2848 160 ) (-508 -2848 160 ) (-508 -2848 168 ) +4 3750 3798 (-512 -2976 220 ) (-512 -2976 160 ) (-508 -2976 160 ) (-508 -2976 220 ) +4 3750 3794 (-508 -2976 304 ) (-512 -2976 304 ) (-512 -2976 220 ) (-508 -2976 220 ) +4 3750 3780 (-508 -2960 160 ) (-508 -2976 160 ) (-512 -2976 160 ) (-512 -2960 160 ) +4 3750 3778 (-508 -2848 160 ) (-508 -2960 160 ) (-512 -2960 160 ) (-512 -2848 160 ) +3 3750 3755 (-512 -2976 160 ) (-512 -2976 176 ) (-512 -2968 176 ) +4 3750 3754 (-512 -2976 176 ) (-512 -2976 224 ) (-512 -2944 224 ) (-512 -2968 176 ) +5 3750 3752 (-512 -2976 224 ) (-512 -2976 304 ) (-512 -2928 304 ) (-512 -2928 256 ) (-512 -2944 224 ) +3 3750 3751 (-512 -2928 304 ) (-512 -2896 304 ) (-512 -2928 272 ) +3 3751 3757 (-528 -2928 272 ) (-528 -2928 304 ) (-528 -2896 304 ) +4 3751 3752 (-528 -2928 304 ) (-528 -2928 272 ) (-512 -2928 272 ) (-512 -2928 304 ) +4 3752 3794 (-512 -2976 304 ) (-528 -2976 304 ) (-528 -2976 224 ) (-512 -2976 224 ) +4 3752 3770 (-528 -2968 224 ) (-528 -2976 224 ) (-528 -2976 264 ) (-528 -2968 264 ) +4 3752 3768 (-528 -2976 264 ) (-528 -2976 304 ) (-528 -2968 304 ) (-528 -2968 264 ) +5 3752 3759 (-528 -2944 224 ) (-528 -2968 224 ) (-528 -2968 272 ) (-528 -2928 272 ) (-528 -2928 256 ) +4 3752 3757 (-528 -2968 272 ) (-528 -2968 304 ) (-528 -2928 304 ) (-528 -2928 272 ) +4 3752 3754 (-528 -2976 224 ) (-528 -2944 224 ) (-512 -2944 224 ) (-512 -2976 224 ) +4 3754 3798 (-528 -2976 220 ) (-528 -2976 176 ) (-512 -2976 176 ) (-512 -2976 220 ) +4 3754 3794 (-528 -2976 224 ) (-528 -2976 220 ) (-512 -2976 220 ) (-512 -2976 224 ) +4 3754 3775 (-528 -2968 176 ) (-528 -2976 176 ) (-528 -2976 192 ) (-528 -2968 192 ) +4 3754 3774 (-528 -2976 192 ) (-528 -2976 224 ) (-528 -2968 224 ) (-528 -2968 192 ) +3 3754 3764 (-528 -2968 176 ) (-528 -2968 192 ) (-528 -2960 192 ) +4 3754 3762 (-528 -2968 192 ) (-528 -2968 212 ) (-528 -2944 224 ) (-528 -2960 192 ) +3 3754 3759 (-528 -2968 212 ) (-528 -2968 224 ) (-528 -2944 224 ) +4 3754 3755 (-528 -2976 176 ) (-528 -2968 176 ) (-512 -2968 176 ) (-512 -2976 176 ) +4 3755 3798 (-528 -2976 176 ) (-528 -2976 160 ) (-512 -2976 160 ) (-512 -2976 176 ) +3 3755 3775 (-528 -2976 160 ) (-528 -2976 176 ) (-528 -2968 176 ) +5 3756 3769 (-757.333313 -2968 304 ) (-944 -2968 304 ) (-944 -2968 272 ) (-757.333313 -2968 272 ) (-736 -2968 288 ) +3 3756 3768 (-714.666626 -2968 304 ) (-757.333313 -2968 304 ) (-736 -2968 288 ) +4 3756 3767 (-944 -2928 272 ) (-944 -2968 272 ) (-944 -2968 304 ) (-944 -2928 304 ) +3 3756 3766 (-944 -2928 272 ) (-944 -2928 304 ) (-944 -2896 304 ) +4 3756 3758 (-757.333313 -2968 272 ) (-944 -2968 272 ) (-944 -2848 272 ) (-757.333313 -2848 272 ) +4 3756 3757 (-714.667236 -2968 304 ) (-736 -2968 288 ) (-736 -2816 288 ) (-714.667236 -2816 304 ) +5 3757 3768 (-528 -2968 272 ) (-528 -2968 304 ) (-714.666626 -2968 304 ) (-736 -2968 288 ) (-714.666626 -2968 272 ) +4 3757 3759 (-528 -2968 272 ) (-714.666626 -2968 272 ) (-714.666626 -2848 272 ) (-528 -2848 272 ) +4 3758 3773 (-944 -2968 224 ) (-944 -2968 212 ) (-837.333313 -2968 212 ) (-821.333313 -2968 224 ) +4 3758 3772 (-944 -2968 264 ) (-944 -2968 224 ) (-821.333313 -2968 224 ) (-768 -2968 264 ) +4 3758 3769 (-757.333313 -2968 272 ) (-944 -2968 272 ) (-944 -2968 264 ) (-768 -2968 264 ) +5 3758 3767 (-944 -2968 212 ) (-944 -2968 272 ) (-944 -2928 272 ) (-944 -2928 256 ) (-944 -2944 224 ) +4 3758 3760 (-837.333313 -2968 212 ) (-944 -2968 212 ) (-944 -2880 256 ) (-778.666382 -2880 256 ) +4 3759 3774 (-528 -2968 212 ) (-528 -2968 224 ) (-650.666626 -2968 224 ) (-634.666626 -2968 212 ) +4 3759 3770 (-528 -2968 224 ) (-528 -2968 264 ) (-704 -2968 264 ) (-650.666626 -2968 224 ) +4 3759 3768 (-528 -2968 264 ) (-528 -2968 272 ) (-714.666626 -2968 272 ) (-704 -2968 264 ) +4 3759 3762 (-528 -2968 212 ) (-634.666626 -2968 212 ) (-693.333557 -2880 256 ) (-528 -2880 256 ) +4 3760 3773 (-837.333313 -2968 212 ) (-944 -2968 212 ) (-944 -2968 192 ) (-864 -2968 192 ) +4 3760 3767 (-944 -2960 192 ) (-944 -2968 192 ) (-944 -2968 212 ) (-944 -2944 224 ) +4 3760 3765 (-896 -2968 192 ) (-944 -2968 192 ) (-944 -2944 192 ) (-896 -2944 192 ) +4 3760 3761 (-821.337341 -2912.003906 223.992081 ) (-863.993469 -2943.996094 192 ) (-944 -2943.996094 192 ) (-944 -2912.003906 223.992081 ) +4 3761 3765 (-944 -2944 192 ) (-944 -2928 192 ) (-896 -2928 192 ) (-896 -2944 192 ) +4 3762 3774 (-528 -2968 192 ) (-528 -2968 212 ) (-634.666626 -2968 212 ) (-608 -2968 192 ) +4 3762 3764 (-528 -2968 192 ) (-576 -2968 192 ) (-576 -2944 192 ) (-528 -2944 192 ) +4 3762 3763 (-528 -2943.996094 192 ) (-608 -2943.996094 192 ) (-650.656067 -2912.003906 223.992081 ) (-528 -2912.003906 223.992081 ) +4 3763 3764 (-528 -2928 192 ) (-528 -2944 192 ) (-576 -2944 192 ) (-576 -2928 192 ) +4 3764 3775 (-576 -2968 160 ) (-528 -2968 160 ) (-528 -2968 192 ) (-576 -2968 192 ) +4 3765 3776 (-944 -2968 160 ) (-896 -2968 160 ) (-896 -2968 192 ) (-944 -2968 192 ) +3 3765 3767 (-944 -2968 176 ) (-944 -2968 192 ) (-944 -2960 192 ) +3 3766 3787 (-960 -2928 304 ) (-960 -2896 304 ) (-960 -2928 272 ) +4 3766 3767 (-944 -2928 272 ) (-944 -2928 304 ) (-960 -2928 304 ) (-960 -2928 272 ) +4 3767 3787 (-960 -2968 304 ) (-960 -2928 304 ) (-960 -2928 256 ) (-960 -2968 176 ) +4 3767 3777 (-944 -2968 176 ) (-944 -2968 192 ) (-960 -2968 192 ) (-960 -2968 176 ) +4 3767 3773 (-944 -2968 192 ) (-944 -2968 224 ) (-960 -2968 224 ) (-960 -2968 192 ) +4 3767 3772 (-944 -2968 224 ) (-944 -2968 264 ) (-960 -2968 264 ) (-960 -2968 224 ) +4 3767 3769 (-944 -2968 264 ) (-944 -2968 304 ) (-960 -2968 304 ) (-960 -2968 264 ) +4 3768 3795 (-720 -2976 304 ) (-752 -2976 304 ) (-752 -2976 300 ) (-720 -2976 276 ) +5 3768 3794 (-528 -2976 304 ) (-720 -2976 304 ) (-720 -2976 276 ) (-704 -2976 264 ) (-528 -2976 264 ) +3 3768 3797 (-752 -2976 304 ) (-757.333313 -2976 304 ) (-752 -2976 300 ) +4 3768 3770 (-704 -2968 264 ) (-528 -2968 264 ) (-528 -2976 264 ) (-704 -2976 264 ) +4 3768 3769 (-757.335938 -2976 304 ) (-757.335938 -2968 304 ) (-736 -2968 288 ) (-736 -2976 288 ) +3 3769 3795 (-752 -2976 276 ) (-736 -2976 288 ) (-752 -2976 300 ) +6 3769 3797 (-757.333313 -2976 304 ) (-960 -2976 304 ) (-960 -2976 264 ) (-768 -2976 264 ) (-752 -2976 276 ) (-752 -2976 300 ) +4 3769 3787 (-960 -2976 264 ) (-960 -2976 304 ) (-960 -2968 304 ) (-960 -2968 264 ) +4 3769 3772 (-960 -2976 264 ) (-960 -2968 264 ) (-768 -2968 264 ) (-768 -2976 264 ) +4 3770 3794 (-650.663513 -2976 224 ) (-528 -2976 224 ) (-528 -2976 264 ) (-703.995300 -2976 264 ) +4 3770 3774 (-650.663513 -2968 224 ) (-528 -2968 224 ) (-528 -2976 224 ) (-650.663513 -2976 224 ) +4 3771 3795 (-752 -2976 224 ) (-720 -2976 224 ) (-720 -2976 264 ) (-752 -2976 264 ) +4 3772 3797 (-960 -2976 264 ) (-960 -2976 224 ) (-821.341125 -2976 224 ) (-768 -2976 264 ) +4 3772 3787 (-960 -2976 224 ) (-960 -2976 264 ) (-960 -2968 264 ) (-960 -2968 224 ) +4 3772 3773 (-960 -2976 224 ) (-960 -2968 224 ) (-821.332092 -2968 224 ) (-821.341125 -2976 224 ) +4 3773 3802 (-960 -2976 220 ) (-960 -2976 192 ) (-864 -2976 192 ) (-826.669800 -2976 220 ) +4 3773 3797 (-960 -2976 224 ) (-960 -2976 220 ) (-826.669800 -2976 220 ) (-821.336914 -2976 224 ) +4 3773 3787 (-960 -2976 192 ) (-960 -2976 224 ) (-960 -2968 224 ) (-960 -2968 192 ) +4 3773 3777 (-960 -2976 192 ) (-960 -2968 192 ) (-944 -2968 192 ) (-944 -2976 192 ) +4 3773 3776 (-944 -2968 192 ) (-896 -2968 192 ) (-896 -2976 192 ) (-944 -2976 192 ) +3 3774 3799 (-608 -2976 192 ) (-608 -2976 220 ) (-645.330994 -2976 220 ) +4 3774 3798 (-608 -2976 192 ) (-528 -2976 192 ) (-528 -2976 220 ) (-608 -2976 220 ) +4 3774 3794 (-528 -2976 220 ) (-528 -2976 224 ) (-650.664001 -2976 224 ) (-645.330994 -2976 220 ) +4 3774 3775 (-576 -2968 192 ) (-528 -2968 192 ) (-528 -2976 192 ) (-576 -2976 192 ) +4 3775 3798 (-576 -2976 160 ) (-528 -2976 160 ) (-528 -2976 192 ) (-576 -2976 192 ) +4 3776 3802 (-944 -2976 160 ) (-896 -2976 160 ) (-896 -2976 192 ) (-944 -2976 192 ) +4 3776 3777 (-944 -2976 192 ) (-944 -2968 192 ) (-944 -2968 176 ) (-944 -2976 160 ) +4 3777 3802 (-960 -2976 192 ) (-960 -2976 160 ) (-944 -2976 160 ) (-944 -2976 192 ) +4 3777 3787 (-960 -2976 160 ) (-960 -2976 192 ) (-960 -2968 192 ) (-960 -2968 176 ) +4 3778 3789 (-480 -2816 -64 ) (-480 -2960 -64 ) (-512 -2960 -64 ) (-512 -2816 -64 ) +4 3778 3780 (-480 -2960 160 ) (-512 -2960 160 ) (-512 -2960 -64 ) (-480 -2960 -64 ) +4 3778 3779 (-512 -2960 -64 ) (-512 -2960 -32 ) (-512 -2816 -32 ) (-512 -2816 -64 ) +4 3779 3789 (-512 -2960 -64 ) (-960 -2960 -64 ) (-960 -2816 -64 ) (-512 -2816 -64 ) +4 3779 3788 (-960 -2816 -64 ) (-960 -2960 -64 ) (-960 -2960 -32 ) (-960 -2816 -32 ) +4 3779 3786 (-960 -2960 -32 ) (-960 -2960 -64 ) (-800 -2960 -64 ) (-800 -2960 -32 ) +4 3779 3784 (-704 -2960 -64 ) (-672 -2960 -64 ) (-672 -2960 -32 ) (-704 -2960 -32 ) +4 3779 3783 (-672 -2960 -64 ) (-608 -2960 -64 ) (-608 -2960 -32 ) (-672 -2960 -32 ) +4 3779 3781 (-608 -2960 -64 ) (-512 -2960 -64 ) (-512 -2960 -32 ) (-608 -2960 -32 ) +4 3780 3803 (-480 -2976 -64 ) (-480 -2976 0 ) (-512 -2976 0 ) (-512 -2976 -64 ) +4 3780 3798 (-480 -2976 0 ) (-480 -2976 160 ) (-512 -2976 160 ) (-512 -2976 0 ) +4 3780 3789 (-480 -2960 -64 ) (-480 -2976 -64 ) (-512 -2976 -64 ) (-512 -2960 -64 ) +4 3780 3781 (-512 -2960 0 ) (-512 -2960 -64 ) (-512 -2976 -64 ) (-512 -2976 0 ) +4 3781 3789 (-512 -2976 -64 ) (-608 -2976 -64 ) (-608 -2960 -64 ) (-512 -2960 -64 ) +4 3781 3783 (-608 -2960 0 ) (-608 -2960 -64 ) (-608 -2976 -64 ) (-608 -2976 0 ) +5 3782 3799 (-672 -2976 96 ) (-672 -2976 40 ) (-608 -2976 40 ) (-608 -2976 96 ) (-640 -2976 104 ) +4 3783 3789 (-608 -2976 -64 ) (-672 -2976 -64 ) (-672 -2960 -64 ) (-608 -2960 -64 ) +4 3783 3784 (-672 -2960 0 ) (-672 -2960 -64 ) (-672 -2976 -64 ) (-672 -2976 0 ) +4 3784 3789 (-672 -2976 -64 ) (-704 -2976 -64 ) (-704 -2960 -64 ) (-672 -2960 -64 ) +5 3785 3802 (-800 -2976 96 ) (-800 -2976 0 ) (-704 -2976 0 ) (-704 -2976 96 ) (-752 -2976 104 ) +4 3786 3789 (-800 -2976 -64 ) (-960 -2976 -64 ) (-960 -2960 -64 ) (-800 -2960 -64 ) +4 3786 3788 (-960 -2960 -64 ) (-960 -2976 -64 ) (-960 -2976 -32 ) (-960 -2960 -32 ) +4 3787 3807 (-1024 -2048 5542.669922 ) (-1024 -2048 -32 ) (-1024 -2976 -32 ) (-1024 -2976 5542.669922 ) +4 3787 3805 (-1024 -2976 -28 ) (-1024 -2976 -32 ) (-960 -2976 -32 ) (-960 -2976 -20 ) +4 3787 3804 (-1024 -2976 0 ) (-1024 -2976 -28 ) (-960 -2976 -20 ) (-960 -2976 0 ) +4 3787 3802 (-1024 -2976 220 ) (-1024 -2976 0 ) (-960 -2976 0 ) (-960 -2976 220 ) +4 3787 3797 (-1024 -2976 5542.669922 ) (-1024 -2976 220 ) (-960 -2976 220 ) (-960 -2976 5542.669922 ) +4 3787 3788 (-960 -2048 -32 ) (-960 -2976 -32 ) (-1024 -2944 -32 ) (-1024 -2048 -32 ) +4 3788 3812 (-1024 -2771.199951 -64 ) (-1024 -2944 -64 ) (-1024 -2944 -32 ) (-1024 -2771.199951 -32 ) +4 3788 3811 (-1024 -2630.399902 -64 ) (-1024 -2771.199951 -64 ) (-1024 -2771.199951 -32 ) (-1024 -2630.399902 -32 ) +4 3788 3810 (-1024 -2048 -32 ) (-1024 -2048 -64 ) (-1024 -2630.399902 -64 ) (-1024 -2630.399902 -32 ) +4 3788 3792 (-1024 -2048 -64 ) (-960 -2048 -64 ) (-960 -2201.599854 -64 ) (-1024 -2099.199707 -64 ) +4 3788 3791 (-960 -2201.599854 -64 ) (-960 -2316.800049 -64 ) (-1024 -2329.600098 -64 ) (-1024 -2099.199707 -64 ) +4 3788 3790 (-960 -2316.800049 -64 ) (-960 -2358.153809 -64 ) (-1024 -2412.307617 -64 ) (-1024 -2329.600098 -64 ) +4 3788 3789 (-960 -2358.153809 -64 ) (-960 -2976 -64 ) (-1024 -2944 -64 ) (-1024 -2412.307617 -64 ) +4 3789 3821 (-1024 -2412.307861 -128 ) (-1024 -2432 -128 ) (-1024 -2432 -64 ) (-1024 -2412.307861 -64 ) +4 3789 3825 (-1024 -2432 -128 ) (-1024 -2976 -128 ) (-1024 -2976 -64 ) (-1024 -2432 -64 ) +4 3789 3806 (-480 -2976 -128 ) (-480 -2976 -64 ) (-1024 -2976 -64 ) (-1024 -2976 -128 ) +5 3789 3793 (-480 -2048 -128 ) (-480 -2976 -128 ) (-1024 -2976 -128 ) (-1024 -2412.307861 -128 ) (-593.454468 -2048 -128 ) +4 3789 3792 (-593.454529 -2048 -128 ) (-896 -2304 -128 ) (-896 -2304 -64 ) (-593.454712 -2048 -64 ) +4 3789 3790 (-896 -2304 -128 ) (-1024 -2412.307617 -128 ) (-1024 -2412.307129 -64 ) (-896 -2304 -64 ) +4 3790 3821 (-1024 -2329.600098 -128 ) (-1024 -2412.307861 -128 ) (-1024 -2412.307861 -64 ) (-1024 -2329.600098 -64 ) +3 3790 3793 (-1024 -2412.307861 -128 ) (-1024 -2329.600098 -128 ) (-896 -2304 -128 ) +4 3790 3791 (-896.001953 -2304 -64 ) (-896.001953 -2304 -128 ) (-1024 -2329.600098 -128 ) (-1024 -2329.600098 -64 ) +4 3791 3823 (-1024 -2099.199707 -128 ) (-1024 -2329.600098 -128 ) (-1024 -2329.600098 -64 ) (-1024 -2099.199707 -64 ) +3 3791 3793 (-1024 -2329.600098 -128 ) (-1024 -2099.199707 -128 ) (-896 -2304 -128 ) +4 3791 3792 (-896 -2303.998047 -64 ) (-896 -2303.998047 -128 ) (-1024 -2099.197998 -128 ) (-1024 -2099.199707 -64 ) +4 3792 3824 (-1024 -2048 -64 ) (-1024 -2048 -128 ) (-1024 -2099.199707 -128 ) (-1024 -2099.199707 -64 ) +4 3792 3793 (-1024 -2099.199707 -128 ) (-1024 -2048 -128 ) (-593.454468 -2048 -128 ) (-896 -2304 -128 ) +4 3793 3826 (-1024 -2048 -128 ) (-1024 -2048 -1284 ) (-1024 -2976 -1284 ) (-1024 -2976 -128 ) +4 3793 3806 (-480 -2976 -1284 ) (-480 -2976 -128 ) (-1024 -2976 -128 ) (-1024 -2976 -1284 ) +4 3794 3828 (0 -3072 220 ) (0 -3072 288 ) (-68 -3072 288 ) (-68 -3072 220 ) +4 3794 3830 (-68 -3072 288 ) (-720 -3072 288 ) (-720 -3072 220 ) (-68 -3072 220 ) +4 3794 3827 (0 -3072 288 ) (0 -3072 5542.669922 ) (-720 -3072 5542.669922 ) (-720 -3072 288 ) +4 3794 3799 (-672 -2976 220 ) (-608 -2976 220 ) (-608 -2980 220 ) (-672 -2980 220 ) +4 3794 3801 (-608 -2980 220 ) (-608 -3072 220 ) (-672 -3072 220 ) (-672 -2980 220 ) +4 3794 3802 (-720 -2976 220 ) (-672 -2976 220 ) (-672 -3072 220 ) (-720 -3072 220 ) +4 3794 3798 (-608 -2976 220 ) (0 -2976 220 ) (0 -3072 220 ) (-608 -3072 220 ) +4 3794 3795 (-720 -2980 224 ) (-720 -2980 5542.669922 ) (-720 -2976 5542.669922 ) (-720 -2976 224 ) +4 3794 3796 (-720 -2980 220 ) (-720 -3072 220 ) (-720 -3072 5542.669922 ) (-720 -2980 5542.669922 ) +4 3795 3796 (-752 -2980 5542.669922 ) (-752 -2980 224 ) (-720 -2980 224 ) (-720 -2980 5542.669922 ) +4 3795 3797 (-752 -2980 224 ) (-752 -2980 5542.669922 ) (-752 -2976 5542.669922 ) (-752 -2976 224 ) +4 3796 3830 (-752 -3072 288 ) (-752 -3072 220 ) (-720 -3072 220 ) (-720 -3072 288 ) +4 3796 3827 (-720 -3072 5542.669922 ) (-752 -3072 5542.669922 ) (-752 -3072 288 ) (-720 -3072 288 ) +4 3796 3802 (-720 -2980 220 ) (-720 -3072 220 ) (-752 -3072 220 ) (-752 -2980 220 ) +4 3796 3797 (-752 -2980 220 ) (-752 -3072 220 ) (-752 -3072 5542.669922 ) (-752 -2980 5542.669922 ) +4 3797 3830 (-1024 -3072 288 ) (-1024 -3072 220 ) (-752 -3072 220 ) (-752 -3072 288 ) +4 3797 3827 (-752 -3072 5542.669922 ) (-1024 -3072 5542.669922 ) (-1024 -3072 288 ) (-752 -3072 288 ) +4 3797 3807 (-1024 -3072 220 ) (-1024 -3072 5542.669922 ) (-1024 -2976 5542.669922 ) (-1024 -2976 220 ) +4 3797 3802 (-1024 -3072 220 ) (-1024 -2976 220 ) (-752 -2976 220 ) (-752 -3072 220 ) +4 3798 3838 (0 -3072 0 ) (0 -3072 32 ) (-608 -3072 32 ) (-608 -3072 0 ) +4 3798 3829 (0 -3072 32 ) (0 -3072 40 ) (-68 -3072 40 ) (-68 -3072 32 ) +4 3798 3828 (0 -3072 40 ) (0 -3072 220 ) (-68 -3072 220 ) (-68 -3072 40 ) +4 3798 3830 (-68 -3072 220 ) (-608 -3072 220 ) (-608 -3072 32 ) (-68 -3072 32 ) +4 3798 3803 (0 -3072 0 ) (-512 -3072 0 ) (-512 -2976 0 ) (0 -2976 0 ) +4 3798 3799 (-608 -2980 40 ) (-608 -2980 220 ) (-608 -2976 220 ) (-608 -2976 40 ) +4 3798 3800 (-608 -2976 0 ) (-608 -2980 0 ) (-608 -2980 32 ) (-608 -2976 32 ) +4 3798 3801 (-608 -2980 0 ) (-608 -3072 0 ) (-608 -3072 220 ) (-608 -2980 220 ) +4 3799 3802 (-672 -2980 40 ) (-672 -2980 220 ) (-672 -2976 220 ) (-672 -2976 40 ) +4 3799 3801 (-672 -2980 220 ) (-672 -2980 40 ) (-608 -2980 40 ) (-608 -2980 220 ) +4 3800 3801 (-672 -2980 32 ) (-672 -2980 0 ) (-608 -2980 0 ) (-608 -2980 32 ) +4 3800 3802 (-672 -2976 0 ) (-672 -2980 0 ) (-672 -2980 32 ) (-672 -2976 32 ) +4 3801 3838 (-672 -3072 32 ) (-672 -3072 0 ) (-608 -3072 0 ) (-608 -3072 32 ) +4 3801 3830 (-608 -3072 220 ) (-672 -3072 220 ) (-672 -3072 32 ) (-608 -3072 32 ) +4 3801 3802 (-672 -2980 0 ) (-672 -3072 0 ) (-672 -3072 220 ) (-672 -2980 220 ) +4 3802 3838 (-1024 -3072 32 ) (-1024 -3072 0 ) (-672 -3072 0 ) (-672 -3072 32 ) +4 3802 3830 (-672 -3072 220 ) (-1024 -3072 220 ) (-1024 -3072 32 ) (-672 -3072 32 ) +4 3802 3807 (-1024 -3072 0 ) (-1024 -3072 220 ) (-1024 -2976 220 ) (-1024 -2976 0 ) +4 3802 3804 (-800 -3072 0 ) (-1024 -3072 0 ) (-1024 -2976 0 ) (-800 -2976 0 ) +4 3803 3869 (0 -3072 -64 ) (0 -3072 0 ) (-512 -3072 0 ) (-512 -3072 -64 ) +4 3803 3806 (-512 -2976 -64 ) (0 -2976 -64 ) (0 -3072 -64 ) (-512 -3072 -64 ) +3 3804 3871 (-800 -3072 0 ) (-816 -3072 0 ) (-832 -3072 -4 ) +4 3804 3870 (-816 -3072 0 ) (-1024 -3072 0 ) (-1024 -3072 -28 ) (-832 -3072 -4 ) +4 3804 3807 (-1024 -3072 -28 ) (-1024 -3072 0 ) (-1024 -2976 0 ) (-1024 -2976 -28 ) +4 3804 3805 (-1024 -2976 -28 ) (-831.997986 -2976 -4 ) (-831.997986 -3072 -4 ) (-1024 -3072 -28 ) +5 3805 3870 (-832 -3072 -4 ) (-1024 -3072 -28 ) (-1024 -3072 -32 ) (-960 -3072 -32 ) (-928.001587 -3072 -28 ) +4 3805 3807 (-1024 -3072 -32 ) (-1024 -3072 -28 ) (-1024 -2976 -28 ) (-1024 -2976 -32 ) +4 3806 3882 (0 -3072 -1284 ) (0 -3072 -64 ) (-1024 -3072 -64 ) (-1024 -3072 -1284 ) +4 3806 3826 (-1024 -3072 -1284 ) (-1024 -3072 -128 ) (-1024 -2976 -128 ) (-1024 -2976 -1284 ) +4 3806 3825 (-1024 -3072 -128 ) (-1024 -3072 -64 ) (-1024 -2976 -64 ) (-1024 -2976 -128 ) +4 3807 3948 (-2048 -2560 576 ) (-2048 -2048 576 ) (-2048 -2048 -32 ) (-2048 -2560 -32 ) +4 3807 3946 (-2048 -3072 576 ) (-2048 -3072 5542.669922 ) (-2048 -2048 5542.669922 ) (-2048 -2048 576 ) +4 3807 3889 (-1376 -3072 -32 ) (-1312 -3072 -32 ) (-1312 -3072 8 ) (-1376 -3072 8 ) +4 3807 3888 (-1312 -3072 -32 ) (-1024 -3072 -32 ) (-1024 -3072 8 ) (-1312 -3072 8 ) +4 3807 3891 (-2048 -3072 8 ) (-2048 -3072 -32 ) (-1376 -3072 -32 ) (-1376 -3072 8 ) +4 3807 3884 (-1264 -3072 8 ) (-1232 -3072 8 ) (-1232 -3072 5542.669922 ) (-1264 -3072 5542.669922 ) +4 3807 3883 (-1232 -3072 8 ) (-1024 -3072 8 ) (-1024 -3072 5542.669922 ) (-1232 -3072 5542.669922 ) +4 3807 3887 (-2048 -3072 5542.669922 ) (-2048 -3072 8 ) (-1264 -3072 8 ) (-1264 -3072 5542.669922 ) +4 3807 3820 (-1856 -3072 -32 ) (-2048 -3072 -32 ) (-2048 -2816 -32 ) (-1856 -2816 -32 ) +3 3807 3818 (-1888 -2816 -32 ) (-1924.977661 -2816 -32 ) (-1933 -2797 -32 ) +3 3807 3819 (-2019.555420 -2592 -32 ) (-1952 -2592 -32 ) (-1952 -2752 -32 ) +4 3807 3817 (-2048 -2816 -32 ) (-2048 -2592 -32 ) (-2019.555420 -2592 -32 ) (-1924.977661 -2816 -32 ) +3 3807 3816 (-1924.977783 -2528 -32 ) (-1888 -2528 -32 ) (-1933 -2547 -32 ) +4 3807 3815 (-2048 -2592 -32 ) (-2048 -2528 -32 ) (-1924.977783 -2528 -32 ) (-1952 -2592 -32 ) +4 3807 3814 (-2048 -2528 -32 ) (-2048 -2048 -32 ) (-1536 -2048 -32 ) (-1536 -2528 -32 ) +3 3807 3813 (-1088 -2848 -32 ) (-1024 -2944 -32 ) (-1056 -2912 -32 ) +3 3807 3812 (-1216 -2656 -32 ) (-1024 -2771.199951 -32 ) (-1024 -2944 -32 ) +3 3807 3811 (-1376 -2560 -32 ) (-1024 -2630.399902 -32 ) (-1024 -2771.199951 -32 ) +4 3807 3810 (-1536 -2528 -32 ) (-1536 -2048 -32 ) (-1024 -2048 -32 ) (-1024 -2630.399902 -32 ) +3 3807 3809 (-1408 -2944 -32 ) (-1472 -2848 -32 ) (-1440 -2880 -32 ) +4 3807 3808 (-1322.666504 -3072 -32 ) (-1536 -3072 -32 ) (-1536 -2816 -32 ) (-1472 -2848 -32 ) +4 3808 3892 (-1536 -3072 -64 ) (-1322.666504 -3072 -64 ) (-1322.666504 -3072 -32 ) (-1536 -3072 -32 ) +4 3808 3825 (-1322.666504 -3072 -64 ) (-1536 -3072 -64 ) (-1536 -2816 -64 ) (-1472 -2848 -64 ) +4 3808 3809 (-1408.006470 -2943.987061 -64 ) (-1471.997437 -2848.001221 -64 ) (-1471.998047 -2848 -32 ) (-1408.003784 -2943.992432 -32 ) +3 3809 3825 (-1408 -2944 -64 ) (-1472 -2848 -64 ) (-1440 -2880 -64 ) +3 3810 3824 (-1024 -2048 -64 ) (-1024 -2099.199707 -64 ) (-1056 -2048 -64 ) +5 3810 3823 (-1024 -2099.199707 -64 ) (-1024 -2329.600098 -64 ) (-1536 -2432 -64 ) (-1536 -2048 -64 ) (-1056 -2048 -64 ) +3 3810 3821 (-1024 -2329.600098 -64 ) (-1024 -2432 -64 ) (-1536 -2432 -64 ) +4 3810 3825 (-1024 -2432 -64 ) (-1024 -2630.399902 -64 ) (-1536 -2528 -64 ) (-1536 -2432 -64 ) +4 3810 3814 (-1536 -2048 -64 ) (-1536 -2528 -64 ) (-1536 -2528 -32 ) (-1536 -2048 -32 ) +4 3810 3811 (-1376.001587 -2560 -64 ) (-1024 -2630.399658 -64 ) (-1024 -2630.399414 -32 ) (-1376.001831 -2560 -32 ) +3 3811 3825 (-1024 -2630.399902 -64 ) (-1024 -2771.199951 -64 ) (-1376 -2560 -64 ) +4 3811 3812 (-1215.997314 -2656.004150 -64 ) (-1024 -2771.202637 -64 ) (-1024 -2771.202637 -32 ) (-1215.997314 -2656.004150 -32 ) +3 3812 3825 (-1024 -2771.199951 -64 ) (-1024 -2944 -64 ) (-1216 -2656 -64 ) +4 3812 3813 (-1088.004517 -2847.990479 -64 ) (-1024 -2943.998291 -64 ) (-1024 -2943.998291 -32 ) (-1088.004517 -2847.990479 -32 ) +3 3813 3825 (-1024 -2944 -64 ) (-1056 -2912 -64 ) (-1088 -2848 -64 ) +4 3814 3948 (-2048 -2528 -32 ) (-2048 -2048 -32 ) (-2048 -2048 -64 ) (-2048 -2528 -64 ) +3 3814 3823 (-1590.856934 -2048 -64 ) (-1536 -2048 -64 ) (-1536 -2432 -64 ) +4 3814 3822 (-2048 -2432 -64 ) (-2048 -2048 -64 ) (-1590.856934 -2048 -64 ) (-1536 -2432 -64 ) +4 3814 3825 (-2048 -2528 -64 ) (-2048 -2432 -64 ) (-1536 -2432 -64 ) (-1536 -2528 -64 ) +4 3814 3816 (-1924.977783 -2528 -64 ) (-1888 -2528 -64 ) (-1888 -2528 -32 ) (-1924.977783 -2528 -32 ) +4 3814 3815 (-2048 -2528 -64 ) (-1924.977783 -2528 -64 ) (-1924.977783 -2528 -32 ) (-2048 -2528 -32 ) +4 3815 3948 (-2048 -2560 -32 ) (-2048 -2528 -32 ) (-2048 -2528 -64 ) (-2048 -2560 -64 ) +4 3815 3825 (-2048 -2592 -64 ) (-2048 -2528 -64 ) (-1924.977783 -2528 -64 ) (-1952 -2592 -64 ) +4 3815 3819 (-1952 -2592 -48 ) (-1952 -2592 -32 ) (-2019.555420 -2592 -32 ) (-2019.555420 -2592 -48 ) +4 3815 3817 (-2019.555420 -2592 -32 ) (-2048 -2592 -32 ) (-2048 -2592 -48 ) (-2019.555420 -2592 -48 ) +4 3815 3816 (-1933 -2547 -64 ) (-1924.977539 -2528 -64 ) (-1924.977539 -2528 -32 ) (-1933 -2547 -32 ) +3 3816 3825 (-1924.977783 -2528 -64 ) (-1888 -2528 -64 ) (-1933 -2547 -64 ) +4 3817 3820 (-2048 -2816 -48 ) (-1924.977661 -2816 -48 ) (-1924.977661 -2816 -32 ) (-2048 -2816 -32 ) +4 3817 3818 (-1924.978516 -2816 -32 ) (-1924.978516 -2816 -48 ) (-1933 -2797 -48 ) (-1933 -2797 -32 ) +4 3817 3819 (-1952 -2752.001709 -48 ) (-2019.556274 -2592 -48 ) (-2019.556274 -2592 -32 ) (-1952 -2752.001709 -32 ) +4 3818 3820 (-1924.977661 -2816 -48 ) (-1888 -2816 -48 ) (-1888 -2816 -32 ) (-1924.977661 -2816 -32 ) +4 3820 3895 (-2048 -3072 -32 ) (-2048 -3072 -48 ) (-1856 -3072 -48 ) (-1856 -3072 -32 ) +3 3821 3826 (-1024 -2329.600098 -128 ) (-1024 -2432 -128 ) (-1536 -2432 -128 ) +4 3821 3823 (-1024 -2329.600342 -128 ) (-1535.998047 -2432 -128 ) (-1535.998047 -2432 -64 ) (-1024 -2329.600342 -64 ) +4 3821 3825 (-1536 -2432 -128 ) (-1024 -2432 -128 ) (-1024 -2432 -64 ) (-1536 -2432 -64 ) +4 3822 3951 (-2048 -2432 -64 ) (-2048 -2048 -64 ) (-2048 -2048 -128 ) (-2048 -2432 -128 ) +4 3822 3826 (-2048 -2432 -128 ) (-2048 -2048 -128 ) (-1590.857056 -2048 -128 ) (-1536 -2432 -128 ) +4 3822 3823 (-1536 -2432 -64 ) (-1536 -2432 -128 ) (-1590.856689 -2048 -128 ) (-1590.856689 -2048 -64 ) +4 3822 3825 (-2048 -2432 -128 ) (-1536 -2432 -128 ) (-1536 -2432 -64 ) (-2048 -2432 -64 ) +5 3823 3826 (-1590.857056 -2048 -128 ) (-1056 -2048 -128 ) (-1024 -2099.199707 -128 ) (-1024 -2329.600098 -128 ) (-1536 -2432 -128 ) +4 3823 3824 (-1024 -2099.202148 -128 ) (-1056.001343 -2048 -128 ) (-1056.001465 -2048 -64 ) (-1024 -2099.202393 -64 ) +3 3824 3826 (-1056 -2048 -128 ) (-1024 -2048 -128 ) (-1024 -2099.199707 -128 ) +4 3825 3952 (-2048 -2560 -64 ) (-2048 -2432 -64 ) (-2048 -2432 -128 ) (-2048 -2560 -128 ) +4 3825 3896 (-2048 -3072 -64 ) (-2048 -3072 -128 ) (-1024 -3072 -128 ) (-1024 -3072 -64 ) +4 3825 3826 (-1024 -3072 -128 ) (-2048 -3072 -128 ) (-2048 -2432 -128 ) (-1024 -2432 -128 ) +4 3826 3955 (-2048 -3072 -1284 ) (-2048 -3072 -128 ) (-2048 -2048 -128 ) (-2048 -2048 -1284 ) +4 3826 3896 (-2048 -3072 -128 ) (-2048 -3072 -1284 ) (-1024 -3072 -1284 ) (-1024 -3072 -128 ) +4 3827 3938 (0 -4096 288 ) (0 -4096 5542.669922 ) (-1024 -4096 5542.669922 ) (-1024 -4096 288 ) +4 3827 3917 (-1024 -3456 288 ) (-1024 -4096 288 ) (-1024 -4096 5542.669922 ) (-1024 -3456 5542.669922 ) +4 3827 3906 (-1024 -3304 288 ) (-1024 -3456 288 ) (-1024 -3456 5542.669922 ) (-1024 -3304 5542.669922 ) +4 3827 3898 (-1024 -3296 288 ) (-1024 -3304 288 ) (-1024 -3304 424 ) (-1024 -3296 424 ) +4 3827 3897 (-1024 -3304 424 ) (-1024 -3304 5542.669922 ) (-1024 -3296 5542.669922 ) (-1024 -3296 424 ) +4 3827 3883 (-1024 -3072 5542.669922 ) (-1024 -3072 288 ) (-1024 -3296 288 ) (-1024 -3296 5542.669922 ) +4 3827 3867 (-1024 -3296 288 ) (-1024 -3264 288 ) (-848 -3264 288 ) (-848 -3296 288 ) +4 3827 3868 (-848 -4096 288 ) (-1024 -4096 288 ) (-1024 -3296 288 ) (-848 -3296 288 ) +4 3827 3865 (-848 -3296 288 ) (-848 -3272 288 ) (-768 -3272 288 ) (-768 -3296 288 ) +4 3827 3866 (-768 -4096 288 ) (-848 -4096 288 ) (-848 -3296 288 ) (-768 -3296 288 ) +4 3827 3863 (-848 -3272 288 ) (-848 -3264 288 ) (-768 -3264 288 ) (-768 -3272 288 ) +4 3827 3860 (-768 -3296 288 ) (-768 -3264 288 ) (-736 -3264 288 ) (-736 -3296 288 ) +4 3827 3861 (-768 -3520 288 ) (-768 -3296 288 ) (-736 -3296 288 ) (-736 -3520 288 ) +4 3827 3859 (-736 -3264 288 ) (-704 -3264 288 ) (-704 -3520 288 ) (-736 -3520 288 ) +4 3827 3858 (-704 -3264 288 ) (-560 -3264 288 ) (-560 -3520 288 ) (-704 -3520 288 ) +4 3827 3857 (-560 -3264 288 ) (-544 -3264 288 ) (-544 -3520 288 ) (-560 -3520 288 ) +4 3827 3856 (-352 -3296 288 ) (-352 -3520 288 ) (-512 -3520 288 ) (-512 -3296 288 ) +4 3827 3853 (-320 -3264 288 ) (-256 -3264 288 ) (-256 -3456 288 ) (-320 -3456 288 ) +4 3827 3854 (-256 -3488 288 ) (-256 -3520 288 ) (-320 -3520 288 ) (-320 -3488 288 ) +4 3827 3862 (-256 -4096 288 ) (-768 -4096 288 ) (-768 -3520 288 ) (-256 -3520 288 ) +4 3827 3852 (0 -4096 288 ) (-256 -4096 288 ) (-256 -3520 288 ) (0 -3520 288 ) +4 3827 3851 (-256 -3520 288 ) (-256 -3488 288 ) (0 -3488 288 ) (0 -3520 288 ) +4 3827 3842 (-256 -3456 288 ) (-256 -3264 288 ) (-32 -3264 288 ) (-32 -3456 288 ) +4 3827 3831 (-1024 -3264 288 ) (-1024 -3200 288 ) (-32 -3200 288 ) (-32 -3264 288 ) +5 3827 3828 (-68 -3072 288 ) (0 -3072 288 ) (0 -3168 288 ) (-32 -3200 288 ) (-68 -3200 288 ) +4 3827 3830 (-1024 -3200 288 ) (-1024 -3072 288 ) (-68 -3072 288 ) (-68 -3200 288 ) +4 3828 3835 (-68 -3200 256 ) (-68 -3200 40 ) (-32 -3200 40 ) (-32 -3200 256 ) +4 3828 3831 (-32 -3200 288 ) (-68 -3200 288 ) (-68 -3200 256 ) (-32 -3200 256 ) +5 3828 3829 (-32 -3200 40 ) (-68 -3200 40 ) (-68 -3072 40 ) (0 -3072 40 ) (0 -3168 40 ) +4 3828 3830 (-68 -3200 40 ) (-68 -3200 288 ) (-68 -3072 288 ) (-68 -3072 40 ) +5 3829 3838 (-68 -3072 32 ) (0 -3072 32 ) (0 -3168 32 ) (-28 -3196 32 ) (-68 -3196 32 ) +4 3829 3830 (-68 -3072 32 ) (-68 -3196 32 ) (-68 -3200 40 ) (-68 -3072 40 ) +4 3830 3883 (-1024 -3072 288 ) (-1024 -3072 32 ) (-1024 -3200 32 ) (-1024 -3200 288 ) +4 3830 3838 (-1024 -3200 32 ) (-1024 -3072 32 ) (-68 -3072 32 ) (-68 -3200 32 ) +4 3830 3837 (-1024 -3200 32 ) (-68 -3200 32 ) (-68 -3200 40 ) (-1024 -3200 40 ) +4 3830 3835 (-68 -3200 40 ) (-68 -3200 256 ) (-1024 -3200 256 ) (-1024 -3200 40 ) +4 3830 3831 (-68 -3200 256 ) (-68 -3200 288 ) (-1024 -3200 288 ) (-1024 -3200 256 ) +4 3831 3883 (-1024 -3264 256 ) (-1024 -3264 288 ) (-1024 -3200 288 ) (-1024 -3200 256 ) +4 3831 3867 (-848 -3264 288 ) (-1024 -3264 288 ) (-1024 -3264 256 ) (-848 -3264 256 ) +4 3831 3863 (-768 -3264 288 ) (-848 -3264 288 ) (-848 -3264 256 ) (-768 -3264 256 ) +4 3831 3860 (-736 -3264 288 ) (-768 -3264 288 ) (-768 -3264 256 ) (-736 -3264 256 ) +4 3831 3859 (-704 -3264 288 ) (-736 -3264 288 ) (-736 -3264 256 ) (-704 -3264 256 ) +4 3831 3858 (-560 -3264 288 ) (-704 -3264 288 ) (-704 -3264 256 ) (-560 -3264 256 ) +4 3831 3857 (-544 -3264 288 ) (-560 -3264 288 ) (-560 -3264 256 ) (-544 -3264 256 ) +4 3831 3853 (-256 -3264 288 ) (-320 -3264 288 ) (-320 -3264 256 ) (-256 -3264 256 ) +4 3831 3842 (-32 -3264 288 ) (-256 -3264 288 ) (-256 -3264 256 ) (-32 -3264 256 ) +4 3831 3835 (-32 -3264 256 ) (-1024 -3264 256 ) (-1024 -3200 256 ) (-32 -3200 256 ) +4 3832 3833 (-8 -3216 256 ) (-8 -3216 160 ) (0 -3216 160 ) (0 -3216 256 ) +4 3832 3834 (-8 -3216 152 ) (-8 -3216 40 ) (0 -3216 40 ) (0 -3216 152 ) +4 3832 3835 (-8 -3200 40 ) (-8 -3216 40 ) (-8 -3216 256 ) (-8 -3200 256 ) +4 3833 3843 (0 -3264 160 ) (0 -3264 256 ) (-8 -3264 256 ) (-8 -3264 160 ) +4 3833 3835 (-8 -3264 160 ) (-8 -3264 256 ) (-8 -3216 256 ) (-8 -3216 160 ) +4 3834 3844 (0 -3264 40 ) (0 -3264 152 ) (-8 -3264 152 ) (-8 -3264 40 ) +4 3834 3836 (0 -3264 40 ) (-8 -3264 40 ) (-8 -3216 40 ) (0 -3216 40 ) +4 3834 3835 (-8 -3216 40 ) (-8 -3264 40 ) (-8 -3264 152 ) (-8 -3216 152 ) +4 3835 3883 (-1024 -3264 40 ) (-1024 -3264 256 ) (-1024 -3200 256 ) (-1024 -3200 40 ) +4 3835 3867 (-848 -3264 256 ) (-1024 -3264 256 ) (-1024 -3264 192 ) (-848 -3264 192 ) +6 3835 3864 (-848 -3264 112 ) (-848 -3264 40 ) (-768 -3264 40 ) (-768 -3264 112 ) (-792 -3264 120 ) (-824 -3264 120 ) +4 3835 3863 (-768 -3264 256 ) (-848 -3264 256 ) (-848 -3264 192 ) (-768 -3264 192 ) +4 3835 3860 (-736 -3264 256 ) (-768 -3264 256 ) (-768 -3264 192 ) (-736 -3264 192 ) +4 3835 3859 (-704 -3264 256 ) (-736 -3264 256 ) (-736 -3264 192 ) (-704 -3264 192 ) +4 3835 3858 (-560 -3264 256 ) (-704 -3264 256 ) (-704 -3264 40 ) (-560 -3264 40 ) +4 3835 3857 (-544 -3264 256 ) (-560 -3264 256 ) (-560 -3264 40 ) (-544 -3264 40 ) +6 3835 3855 (-432 -3264 112 ) (-432 -3264 40 ) (-352 -3264 40 ) (-352 -3264 112 ) (-376 -3264 120 ) (-408 -3264 120 ) +4 3835 3853 (-256 -3264 256 ) (-320 -3264 256 ) (-320 -3264 40 ) (-256 -3264 40 ) +4 3835 3847 (-8 -3264 256 ) (-256 -3264 256 ) (-256 -3264 40 ) (-8 -3264 40 ) +4 3835 3836 (-8 -3264 40 ) (-68 -3264 40 ) (-68 -3216 40 ) (-8 -3216 40 ) +4 3835 3837 (-68 -3264 40 ) (-1024 -3264 40 ) (-1024 -3200 40 ) (-68 -3200 40 ) +4 3836 3844 (0 -3264 32 ) (0 -3264 40 ) (-8 -3264 40 ) (-8 -3264 32 ) +4 3836 3847 (-8 -3264 40 ) (-68 -3264 40 ) (-68 -3264 32 ) (-8 -3264 32 ) +4 3836 3841 (-8 -3264 32 ) (-68 -3264 32 ) (-68 -3220 32 ) (-8 -3220 32 ) +4 3836 3837 (-68 -3264 40 ) (-68 -3216 40 ) (-68 -3220 32 ) (-68 -3264 32 ) +4 3837 3883 (-1024 -3200 32 ) (-1024 -3264 32 ) (-1024 -3264 40 ) (-1024 -3200 40 ) +4 3837 3864 (-768 -3264 40 ) (-848 -3264 40 ) (-848 -3264 32 ) (-768 -3264 32 ) +4 3837 3858 (-560 -3264 40 ) (-704 -3264 40 ) (-704 -3264 32 ) (-560 -3264 32 ) +4 3837 3857 (-544 -3264 40 ) (-560 -3264 40 ) (-560 -3264 32 ) (-544 -3264 32 ) +4 3837 3855 (-352 -3264 40 ) (-432 -3264 40 ) (-432 -3264 32 ) (-352 -3264 32 ) +4 3837 3853 (-256 -3264 40 ) (-320 -3264 40 ) (-320 -3264 32 ) (-256 -3264 32 ) +4 3837 3847 (-68 -3264 40 ) (-256 -3264 40 ) (-256 -3264 32 ) (-68 -3264 32 ) +4 3837 3841 (-68 -3264 32 ) (-1024 -3264 32 ) (-1024 -3216 32 ) (-68 -3216 32 ) +4 3837 3839 (-1024 -3216 32 ) (-1024 -3200 32 ) (-68 -3200 32 ) (-68 -3216 32 ) +4 3838 3888 (-1024 -3072 8 ) (-1024 -3072 0 ) (-1024 -3200 0 ) (-1024 -3200 8 ) +4 3838 3883 (-1024 -3072 32 ) (-1024 -3072 8 ) (-1024 -3200 8 ) (-1024 -3200 32 ) +4 3838 3871 (-816 -3072 0 ) (-800 -3072 0 ) (-800 -3200 0 ) (-816 -3200 0 ) +4 3838 3870 (-1024 -3072 0 ) (-816 -3072 0 ) (-816 -3200 0 ) (-1024 -3200 0 ) +5 3838 3869 (-512 -3072 0 ) (0 -3072 0 ) (0 -3168 0 ) (-32 -3200 0 ) (-512 -3200 0 ) +4 3838 3839 (-1024 -3200 0 ) (-64 -3200 0 ) (-64 -3200 32 ) (-1024 -3200 32 ) +4 3839 3888 (-1024 -3200 0 ) (-1024 -3216 0 ) (-1024 -3216 8 ) (-1024 -3200 8 ) +4 3839 3883 (-1024 -3216 8 ) (-1024 -3216 32 ) (-1024 -3200 32 ) (-1024 -3200 8 ) +4 3839 3871 (-800 -3216 0 ) (-816 -3216 0 ) (-816 -3200 0 ) (-800 -3200 0 ) +4 3839 3870 (-816 -3216 0 ) (-1024 -3216 0 ) (-1024 -3200 0 ) (-816 -3200 0 ) +4 3839 3869 (-64 -3216 0 ) (-512 -3216 0 ) (-512 -3200 0 ) (-64 -3200 0 ) +4 3839 3841 (-1024 -3216 0 ) (-64 -3216 0 ) (-64 -3216 32 ) (-1024 -3216 32 ) +4 3840 3869 (0 -3216 0 ) (0 -3264 0 ) (-8 -3264 0 ) (-8 -3216 0 ) +4 3840 3845 (-8 -3264 0 ) (0 -3264 0 ) (0 -3264 24 ) (-8 -3264 24 ) +4 3840 3841 (-8 -3216 24 ) (-8 -3216 0 ) (-8 -3264 0 ) (-8 -3264 24 ) +4 3841 3888 (-1024 -3216 0 ) (-1024 -3264 0 ) (-1024 -3264 8 ) (-1024 -3216 8 ) +4 3841 3883 (-1024 -3264 8 ) (-1024 -3264 32 ) (-1024 -3216 32 ) (-1024 -3216 8 ) +4 3841 3871 (-800 -3264 0 ) (-816 -3264 0 ) (-816 -3216 0 ) (-800 -3216 0 ) +4 3841 3870 (-816 -3264 0 ) (-1024 -3264 0 ) (-1024 -3216 0 ) (-816 -3216 0 ) +4 3841 3869 (-8 -3264 0 ) (-512 -3264 0 ) (-512 -3216 0 ) (-8 -3216 0 ) +4 3841 3864 (-848 -3264 0 ) (-768 -3264 0 ) (-768 -3264 32 ) (-848 -3264 32 ) +4 3841 3858 (-704 -3264 0 ) (-560 -3264 0 ) (-560 -3264 32 ) (-704 -3264 32 ) +4 3841 3857 (-560 -3264 0 ) (-544 -3264 0 ) (-544 -3264 32 ) (-560 -3264 32 ) +4 3841 3855 (-432 -3264 0 ) (-352 -3264 0 ) (-352 -3264 32 ) (-432 -3264 32 ) +4 3841 3853 (-320 -3264 0 ) (-256 -3264 0 ) (-256 -3264 32 ) (-320 -3264 32 ) +4 3841 3847 (-256 -3264 0 ) (-8 -3264 0 ) (-8 -3264 32 ) (-256 -3264 32 ) +4 3842 3853 (-256 -3264 288 ) (-256 -3264 256 ) (-256 -3456 256 ) (-256 -3456 288 ) +4 3842 3847 (-32 -3456 256 ) (-256 -3456 256 ) (-256 -3264 256 ) (-32 -3264 256 ) +4 3843 3847 (-8 -3296 256 ) (-8 -3264 256 ) (-8 -3264 160 ) (-8 -3296 160 ) +4 3843 3846 (-8 -3296 256 ) (-8 -3296 160 ) (0 -3296 160 ) (0 -3296 256 ) +4 3844 3846 (-8 -3296 152 ) (-8 -3296 32 ) (0 -3296 32 ) (0 -3296 152 ) +4 3844 3847 (-8 -3264 152 ) (-8 -3264 32 ) (-8 -3296 32 ) (-8 -3296 152 ) +4 3845 3874 (0 -3264 0 ) (0 -3296 0 ) (-8 -3296 0 ) (-8 -3264 0 ) +4 3845 3847 (-8 -3264 24 ) (-8 -3264 0 ) (-8 -3296 0 ) (-8 -3296 24 ) +4 3845 3846 (-8 -3296 24 ) (-8 -3296 0 ) (0 -3296 0 ) (0 -3296 24 ) +4 3846 3874 (0 -3296 0 ) (0 -3456 0 ) (-8 -3456 0 ) (-8 -3296 0 ) +4 3846 3847 (-8 -3456 0 ) (-8 -3456 256 ) (-8 -3296 256 ) (-8 -3296 0 ) +4 3847 3875 (-64 -3456 0 ) (-256 -3456 0 ) (-256 -3264 0 ) (-64 -3264 0 ) +4 3847 3874 (-8 -3456 0 ) (-64 -3456 0 ) (-64 -3264 0 ) (-8 -3264 0 ) +4 3847 3853 (-256 -3264 256 ) (-256 -3264 0 ) (-256 -3456 0 ) (-256 -3456 256 ) +4 3847 3850 (-256 -3456 128 ) (-256 -3456 0 ) (-64 -3456 0 ) (-64 -3456 128 ) +4 3847 3848 (-176 -3456 160 ) (-64 -3456 160 ) (-64 -3456 256 ) (-176 -3456 256 ) +4 3847 3849 (-256 -3456 256 ) (-256 -3456 160 ) (-208 -3456 160 ) (-208 -3456 256 ) +4 3851 3876 (-64 -3520 0 ) (-256 -3520 0 ) (-256 -3488 0 ) (-64 -3488 0 ) +4 3851 3874 (0 -3488 0 ) (0 -3520 0 ) (-64 -3520 0 ) (-64 -3488 0 ) +4 3851 3854 (-256 -3488 0 ) (-256 -3520 0 ) (-256 -3520 288 ) (-256 -3488 288 ) +4 3851 3852 (-256 -3520 288 ) (-256 -3520 0 ) (0 -3520 0 ) (0 -3520 288 ) +4 3852 3938 (0 -4096 0 ) (0 -4096 288 ) (-256 -4096 288 ) (-256 -4096 0 ) +4 3852 3876 (-64 -4096 0 ) (-256 -4096 0 ) (-256 -3520 0 ) (-64 -3520 0 ) +4 3852 3874 (0 -3520 0 ) (0 -4096 0 ) (-64 -4096 0 ) (-64 -3520 0 ) +4 3852 3862 (-256 -3520 0 ) (-256 -4096 0 ) (-256 -4096 288 ) (-256 -3520 288 ) +4 3853 3877 (-320 -3264 0 ) (-256 -3264 0 ) (-256 -3456 0 ) (-320 -3456 0 ) +4 3854 3877 (-256 -3488 0 ) (-256 -3520 0 ) (-320 -3520 0 ) (-320 -3488 0 ) +4 3854 3862 (-320 -3520 0 ) (-256 -3520 0 ) (-256 -3520 288 ) (-320 -3520 288 ) +4 3855 3877 (-432 -3264 0 ) (-352 -3264 0 ) (-352 -3272 0 ) (-432 -3272 0 ) +4 3856 3877 (-352 -3296 0 ) (-352 -3520 0 ) (-512 -3520 0 ) (-512 -3296 0 ) +4 3856 3862 (-512 -3520 0 ) (-352 -3520 0 ) (-352 -3520 288 ) (-512 -3520 288 ) +4 3857 3862 (-560 -3520 0 ) (-544 -3520 0 ) (-544 -3520 288 ) (-560 -3520 288 ) +4 3857 3858 (-560 -3264 288 ) (-560 -3264 0 ) (-560 -3520 0 ) (-560 -3520 288 ) +4 3858 3859 (-704 -3264 288 ) (-704 -3264 192 ) (-704 -3520 192 ) (-704 -3520 288 ) +4 3858 3862 (-704 -3520 0 ) (-560 -3520 0 ) (-560 -3520 288 ) (-704 -3520 288 ) +4 3859 3860 (-736 -3264 288 ) (-736 -3264 192 ) (-736 -3296 192 ) (-736 -3296 288 ) +4 3859 3861 (-736 -3296 192 ) (-736 -3520 192 ) (-736 -3520 288 ) (-736 -3296 288 ) +4 3859 3862 (-704 -3520 192 ) (-704 -3520 288 ) (-736 -3520 288 ) (-736 -3520 192 ) +4 3860 3865 (-768 -3272 192 ) (-768 -3296 192 ) (-768 -3296 288 ) (-768 -3272 288 ) +4 3860 3863 (-768 -3264 288 ) (-768 -3264 192 ) (-768 -3272 192 ) (-768 -3272 288 ) +4 3860 3861 (-768 -3296 288 ) (-768 -3296 192 ) (-736 -3296 192 ) (-736 -3296 288 ) +4 3861 3879 (-768 -3520 0 ) (-768 -3296 0 ) (-736 -3296 0 ) (-736 -3520 0 ) +4 3861 3866 (-768 -3296 0 ) (-768 -3520 0 ) (-768 -3520 288 ) (-768 -3296 288 ) +4 3861 3862 (-768 -3520 288 ) (-768 -3520 0 ) (-736 -3520 0 ) (-736 -3520 288 ) +4 3862 3938 (-256 -4096 288 ) (-768 -4096 288 ) (-768 -4096 0 ) (-256 -4096 0 ) +4 3862 3879 (-704 -4096 0 ) (-768 -4096 0 ) (-768 -3520 0 ) (-704 -3520 0 ) +4 3862 3878 (-544 -4096 0 ) (-704 -4096 0 ) (-704 -3520 0 ) (-544 -3520 0 ) +4 3862 3877 (-256 -4096 0 ) (-544 -4096 0 ) (-544 -3520 0 ) (-256 -3520 0 ) +4 3862 3866 (-768 -3520 0 ) (-768 -4096 0 ) (-768 -4096 288 ) (-768 -3520 288 ) +4 3863 3867 (-848 -3264 288 ) (-848 -3264 192 ) (-848 -3272 192 ) (-848 -3272 288 ) +4 3863 3865 (-848 -3272 288 ) (-848 -3272 192 ) (-768 -3272 192 ) (-768 -3272 288 ) +4 3865 3867 (-848 -3296 192 ) (-848 -3296 288 ) (-848 -3272 288 ) (-848 -3272 192 ) +4 3865 3866 (-848 -3296 288 ) (-848 -3296 192 ) (-768 -3296 192 ) (-768 -3296 288 ) +4 3866 3938 (-768 -4096 288 ) (-848 -4096 288 ) (-848 -4096 0 ) (-768 -4096 0 ) +4 3866 3880 (-768 -4096 0 ) (-848 -4096 0 ) (-848 -3296 0 ) (-768 -3296 0 ) +4 3866 3868 (-848 -3296 0 ) (-848 -4096 0 ) (-848 -4096 288 ) (-848 -3296 288 ) +4 3867 3883 (-1024 -3296 192 ) (-1024 -3296 288 ) (-1024 -3264 288 ) (-1024 -3264 192 ) +4 3867 3868 (-848 -3296 192 ) (-848 -3296 288 ) (-1024 -3296 288 ) (-1024 -3296 192 ) +4 3868 3938 (-848 -4096 288 ) (-1024 -4096 288 ) (-1024 -4096 0 ) (-848 -4096 0 ) +4 3868 3930 (-1024 -3456 0 ) (-1024 -4096 0 ) (-1024 -4096 128 ) (-1024 -3456 128 ) +4 3868 3917 (-1024 -4096 128 ) (-1024 -4096 288 ) (-1024 -3456 288 ) (-1024 -3456 128 ) +4 3868 3906 (-1024 -3456 288 ) (-1024 -3304 288 ) (-1024 -3304 128 ) (-1024 -3456 128 ) +4 3868 3904 (-1024 -3296 160 ) (-1024 -3296 128 ) (-1024 -3304 128 ) (-1024 -3304 160 ) +4 3868 3902 (-1024 -3296 192 ) (-1024 -3296 160 ) (-1024 -3304 160 ) (-1024 -3304 192 ) +4 3868 3899 (-1024 -3296 232 ) (-1024 -3296 192 ) (-1024 -3304 192 ) (-1024 -3304 232 ) +4 3868 3898 (-1024 -3304 288 ) (-1024 -3296 288 ) (-1024 -3296 232 ) (-1024 -3304 232 ) +4 3868 3881 (-848 -4096 0 ) (-1024 -4096 0 ) (-1024 -3296 0 ) (-848 -3296 0 ) +4 3869 3882 (-512 -3072 -64 ) (0 -3072 -64 ) (0 -3264 -64 ) (-512 -3264 -64 ) +4 3869 3877 (-512 -3264 -64 ) (-256 -3264 -64 ) (-256 -3264 0 ) (-512 -3264 0 ) +4 3869 3875 (-256 -3264 -64 ) (-64 -3264 -64 ) (-64 -3264 0 ) (-256 -3264 0 ) +4 3869 3874 (-64 -3264 -64 ) (0 -3264 -64 ) (0 -3264 0 ) (-64 -3264 0 ) +4 3870 3888 (-1024 -3072 0 ) (-1024 -3072 -32 ) (-1024 -3264 -32 ) (-1024 -3264 0 ) +3 3870 3872 (-960 -3264 -32 ) (-1024 -3264 -32 ) (-1024 -3251.199951 -32 ) +4 3870 3871 (-832.004150 -3072 -4 ) (-816.002075 -3072 0 ) (-816.002075 -3264 0 ) (-832.004150 -3264 -4 ) +4 3872 3893 (-1024 -3251.199951 -40 ) (-1024 -3264 -40 ) (-1024 -3264 -32 ) (-1024 -3251.199951 -32 ) +3 3872 3873 (-960.001099 -3264 -32 ) (-1024 -3264 -40 ) (-1024 -3251.199951 -40 ) +4 3873 3893 (-1024 -3251.199951 -64 ) (-1024 -3264 -64 ) (-1024 -3264 -40 ) (-1024 -3251.199951 -40 ) +3 3873 3882 (-1024 -3264 -64 ) (-1024 -3251.199951 -64 ) (-960 -3264 -64 ) +4 3874 3938 (0 -4096 -64 ) (0 -4096 0 ) (-64 -4096 0 ) (-64 -4096 -64 ) +4 3874 3882 (0 -4096 -64 ) (-64 -4096 -64 ) (-64 -3264 -64 ) (0 -3264 -64 ) +4 3874 3875 (-64 -3264 0 ) (-64 -3264 -64 ) (-64 -3456 -64 ) (-64 -3456 0 ) +4 3874 3876 (-64 -3488 -64 ) (-64 -4096 -64 ) (-64 -4096 0 ) (-64 -3488 0 ) +4 3875 3882 (-256 -3456 -64 ) (-256 -3264 -64 ) (-64 -3264 -64 ) (-64 -3456 -64 ) +4 3875 3877 (-256 -3264 0 ) (-256 -3264 -64 ) (-256 -3456 -64 ) (-256 -3456 0 ) +4 3876 3938 (-64 -4096 0 ) (-256 -4096 0 ) (-256 -4096 -64 ) (-64 -4096 -64 ) +4 3876 3882 (-64 -4096 -64 ) (-256 -4096 -64 ) (-256 -3488 -64 ) (-64 -3488 -64 ) +4 3876 3877 (-256 -3488 -64 ) (-256 -4096 -64 ) (-256 -4096 0 ) (-256 -3488 0 ) +4 3877 3938 (-256 -4096 0 ) (-544 -4096 0 ) (-544 -4096 -64 ) (-256 -4096 -64 ) +4 3877 3882 (-256 -4096 -64 ) (-544 -4096 -64 ) (-544 -3264 -64 ) (-256 -3264 -64 ) +4 3877 3878 (-544 -3520 -64 ) (-544 -4096 -64 ) (-544 -4096 0 ) (-544 -3520 0 ) +4 3878 3938 (-544 -4096 0 ) (-704 -4096 0 ) (-704 -4096 -64 ) (-544 -4096 -64 ) +4 3878 3882 (-544 -4096 -64 ) (-704 -4096 -64 ) (-704 -3520 -64 ) (-544 -3520 -64 ) +4 3878 3879 (-704 -3520 -64 ) (-704 -4096 -64 ) (-704 -4096 0 ) (-704 -3520 0 ) +4 3879 3938 (-704 -4096 0 ) (-768 -4096 0 ) (-768 -4096 -64 ) (-704 -4096 -64 ) +4 3879 3882 (-704 -4096 -64 ) (-768 -4096 -64 ) (-768 -3264 -64 ) (-704 -3264 -64 ) +4 3879 3880 (-768 -3296 -64 ) (-768 -4096 -64 ) (-768 -4096 0 ) (-768 -3296 0 ) +4 3880 3938 (-768 -4096 0 ) (-848 -4096 0 ) (-848 -4096 -64 ) (-768 -4096 -64 ) +4 3880 3882 (-768 -4096 -64 ) (-848 -4096 -64 ) (-848 -3296 -64 ) (-768 -3296 -64 ) +4 3880 3881 (-848 -3296 -64 ) (-848 -4096 -64 ) (-848 -4096 0 ) (-848 -3296 0 ) +4 3881 3938 (-848 -4096 0 ) (-1024 -4096 0 ) (-1024 -4096 -64 ) (-848 -4096 -64 ) +4 3881 3932 (-1024 -3296 -64 ) (-1024 -4096 -64 ) (-1024 -4096 -32 ) (-1024 -3296 -32 ) +4 3881 3930 (-1024 -4096 -32 ) (-1024 -4096 0 ) (-1024 -3456 0 ) (-1024 -3456 -32 ) +4 3881 3882 (-848 -4096 -64 ) (-1024 -4096 -64 ) (-1024 -3296 -64 ) (-848 -3296 -64 ) +4 3882 3938 (0 -4096 -1284 ) (0 -4096 -64 ) (-1024 -4096 -64 ) (-1024 -4096 -1284 ) +4 3882 3936 (-1024 -3296 -1284 ) (-1024 -4096 -1284 ) (-1024 -4096 -64 ) (-1024 -3296 -64 ) +4 3882 3896 (-1024 -3072 -64 ) (-1024 -3072 -1284 ) (-1024 -3296 -1284 ) (-1024 -3296 -64 ) +4 3883 3927 (-1232 -3296 8 ) (-1184 -3296 8 ) (-1184 -3296 64 ) (-1232 -3296 72 ) +4 3883 3904 (-1024 -3296 128 ) (-1024 -3296 160 ) (-1088 -3296 160 ) (-1088 -3296 128 ) +4 3883 3902 (-1024 -3296 160 ) (-1024 -3296 192 ) (-1162.659912 -3296 192 ) (-1120 -3296 160 ) +4 3883 3899 (-1024 -3296 192 ) (-1024 -3296 232 ) (-1216 -3296 232 ) (-1162.659912 -3296 192 ) +5 3883 3898 (-1024 -3296 232 ) (-1024 -3296 424 ) (-1232 -3296 268 ) (-1232 -3296 244 ) (-1216 -3296 232 ) +4 3883 3897 (-1024 -3296 424 ) (-1024 -3296 5542.669922 ) (-1232 -3296 5542.669922 ) (-1232 -3296 268 ) +4 3883 3888 (-1024 -3296 8 ) (-1232 -3296 8 ) (-1232 -3072 8 ) (-1024 -3072 8 ) +4 3883 3885 (-1232 -3296 192 ) (-1232 -3296 5542.669922 ) (-1232 -3292 5542.669922 ) (-1232 -3292 192 ) +4 3883 3886 (-1232 -3292 8 ) (-1232 -3296 8 ) (-1232 -3296 188 ) (-1232 -3292 188 ) +4 3883 3884 (-1232 -3072 8 ) (-1232 -3292 8 ) (-1232 -3292 5542.669922 ) (-1232 -3072 5542.669922 ) +4 3884 3888 (-1264 -3292 8 ) (-1264 -3072 8 ) (-1232 -3072 8 ) (-1232 -3292 8 ) +4 3884 3885 (-1264 -3292 5542.669922 ) (-1264 -3292 192 ) (-1232 -3292 192 ) (-1232 -3292 5542.669922 ) +4 3884 3886 (-1264 -3292 188 ) (-1264 -3292 8 ) (-1232 -3292 8 ) (-1232 -3292 188 ) +4 3884 3887 (-1264 -3072 8 ) (-1264 -3292 8 ) (-1264 -3292 5542.669922 ) (-1264 -3072 5542.669922 ) +4 3885 3900 (-1232 -3296 192 ) (-1232 -3296 232 ) (-1264 -3296 232 ) (-1264 -3296 192 ) +3 3885 3898 (-1232 -3296 244 ) (-1232 -3296 268 ) (-1248 -3296 256 ) +4 3885 3897 (-1232 -3296 268 ) (-1232 -3296 5542.669922 ) (-1264 -3296 5542.669922 ) (-1264 -3296 244 ) +4 3885 3887 (-1264 -3296 192 ) (-1264 -3296 5542.669922 ) (-1264 -3292 5542.669922 ) (-1264 -3292 192 ) +4 3886 3927 (-1264 -3296 8 ) (-1232 -3296 8 ) (-1232 -3296 72 ) (-1264 -3296 66.666679 ) +4 3886 3888 (-1232 -3296 8 ) (-1264 -3296 8 ) (-1264 -3292 8 ) (-1232 -3292 8 ) +4 3886 3887 (-1264 -3292 8 ) (-1264 -3296 8 ) (-1264 -3296 188 ) (-1264 -3292 188 ) +4 3887 3957 (-2048 -3296 576 ) (-2048 -3296 5542.669922 ) (-2048 -3072 5542.669922 ) (-2048 -3072 576 ) +4 3887 3929 (-2048 -3296 128 ) (-2048 -3296 8 ) (-1472 -3296 8 ) (-1472 -3296 128 ) +5 3887 3928 (-1376 -3296 8 ) (-1312 -3296 8 ) (-1312 -3296 64 ) (-1344 -3296 72 ) (-1376 -3296 64 ) +4 3887 3927 (-1280 -3296 8 ) (-1264 -3296 8 ) (-1264 -3296 66.666679 ) (-1280 -3296 64 ) +4 3887 3926 (-2048 -3296 5542.669922 ) (-2048 -3296 128 ) (-1472 -3296 128 ) (-1472 -3296 5542.669922 ) +4 3887 3924 (-1472 -3296 128 ) (-1456 -3296 128 ) (-1456 -3296 144 ) (-1472 -3296 144 ) +4 3887 3922 (-1456 -3296 144 ) (-1456 -3296 192 ) (-1472 -3296 192 ) (-1472 -3296 144 ) +4 3887 3919 (-1456 -3296 192 ) (-1456 -3296 272 ) (-1472 -3296 272 ) (-1472 -3296 192 ) +4 3887 3918 (-1456 -3296 272 ) (-1456 -3296 5542.669922 ) (-1472 -3296 5542.669922 ) (-1472 -3296 272 ) +4 3887 3905 (-1456 -3296 128 ) (-1408 -3296 128 ) (-1408 -3296 160 ) (-1456 -3296 160 ) +4 3887 3903 (-1333.339844 -3296 192 ) (-1456 -3296 192 ) (-1456 -3296 160 ) (-1376 -3296 160 ) +4 3887 3901 (-1279.993530 -3296 232 ) (-1456 -3296 232 ) (-1456 -3296 192 ) (-1333.322510 -3296 192 ) +5 3887 3897 (-1264 -3296 244 ) (-1264 -3296 5542.669922 ) (-1456 -3296 5542.669922 ) (-1456 -3296 232 ) (-1280 -3296 232 ) +4 3887 3889 (-1376 -3292 8 ) (-1376 -3072 8 ) (-1312 -3072 8 ) (-1312 -3292 8 ) +4 3887 3888 (-1264 -3296 8 ) (-1312 -3296 8 ) (-1312 -3072 8 ) (-1264 -3072 8 ) +4 3887 3891 (-1376 -3296 8 ) (-2048 -3296 8 ) (-2048 -3072 8 ) (-1376 -3072 8 ) +4 3888 3927 (-1280 -3296 -32 ) (-1184 -3296 -32 ) (-1184 -3296 8 ) (-1280 -3296 8 ) +3 3888 3894 (-1230.769165 -3209.846191 -32 ) (-1280 -3136 -32 ) (-1120 -3232 -32 ) +4 3888 3893 (-1024 -3296 -32 ) (-1173.333252 -3296 -32 ) (-1230.769165 -3209.846191 -32 ) (-1024 -3251.200195 -32 ) +3 3888 3892 (-1173.333252 -3296 -32 ) (-1312 -3296 -32 ) (-1312 -3088 -32 ) +4 3888 3890 (-1312 -3292 -32 ) (-1312 -3296 -32 ) (-1312 -3296 0 ) (-1312 -3292 0 ) +4 3888 3889 (-1312 -3072 -32 ) (-1312 -3292 -32 ) (-1312 -3292 8 ) (-1312 -3072 8 ) +5 3889 3892 (-1376 -3292 -32 ) (-1376 -3072 -32 ) (-1322.666626 -3072 -32 ) (-1312 -3088 -32 ) (-1312 -3292 -32 ) +4 3889 3890 (-1376 -3292 0 ) (-1376 -3292 -32 ) (-1312 -3292 -32 ) (-1312 -3292 0 ) +4 3889 3891 (-1376 -3072 -32 ) (-1376 -3292 -32 ) (-1376 -3292 8 ) (-1376 -3072 8 ) +4 3890 3892 (-1312 -3296 -32 ) (-1376 -3296 -32 ) (-1376 -3292 -32 ) (-1312 -3292 -32 ) +4 3890 3891 (-1376 -3292 -32 ) (-1376 -3296 -32 ) (-1376 -3296 0 ) (-1376 -3292 0 ) +4 3891 3929 (-2048 -3296 8 ) (-2048 -3296 -32 ) (-1472 -3296 -32 ) (-1472 -3296 8 ) +4 3891 3895 (-1856 -3296 -32 ) (-2048 -3296 -32 ) (-2048 -3072 -32 ) (-1856 -3072 -32 ) +4 3891 3892 (-1376 -3296 -32 ) (-1536 -3296 -32 ) (-1536 -3072 -32 ) (-1376 -3072 -32 ) +4 3892 3932 (-1536 -3296 -64 ) (-1173.333130 -3296 -64 ) (-1173.333130 -3296 -32 ) (-1536 -3296 -32 ) +4 3892 3896 (-1173.333130 -3296 -64 ) (-1536 -3296 -64 ) (-1536 -3072 -64 ) (-1322.666504 -3072 -64 ) +4 3892 3894 (-1230.767578 -3209.846680 -64 ) (-1279.997803 -3136.001221 -64 ) (-1279.997803 -3136.001221 -32 ) (-1230.767578 -3209.846680 -32 ) +4 3892 3893 (-1173.332031 -3296 -64 ) (-1230.767578 -3209.846680 -64 ) (-1230.767578 -3209.846680 -32 ) (-1173.332031 -3296 -32 ) +4 3893 3932 (-1173.333130 -3296 -64 ) (-1024 -3296 -64 ) (-1024 -3296 -32 ) (-1173.333130 -3296 -32 ) +4 3893 3896 (-1024 -3296 -64 ) (-1173.333130 -3296 -64 ) (-1230.768921 -3209.846436 -64 ) (-1024 -3251.200195 -64 ) +4 3893 3894 (-1119.998047 -3232 -64 ) (-1230.771484 -3209.846191 -64 ) (-1230.771484 -3209.846191 -32 ) (-1119.998535 -3232 -32 ) +3 3894 3896 (-1230.768921 -3209.846436 -64 ) (-1280 -3136 -64 ) (-1120 -3232 -64 ) +4 3895 3934 (-2048 -3296 -32 ) (-2048 -3296 -48 ) (-1856 -3296 -48 ) (-1856 -3296 -32 ) +4 3896 3960 (-2048 -3296 -1284 ) (-2048 -3296 -128.032013 ) (-2048 -3072 -128.032013 ) (-2048 -3072 -1284 ) +4 3896 3936 (-2048 -3296 -64 ) (-2048 -3296 -1284 ) (-1024 -3296 -1284 ) (-1024 -3296 -64 ) +4 3897 3919 (-1456 -3296 272 ) (-1456 -3296 232 ) (-1456 -3304 232 ) (-1456 -3304 272 ) +4 3897 3918 (-1456 -3296 5542.669922 ) (-1456 -3296 272 ) (-1456 -3304 272 ) (-1456 -3304 5542.669922 ) +4 3897 3910 (-1456 -3304 240 ) (-1456 -3304 232 ) (-1280 -3304 232 ) (-1269.333374 -3304 240 ) +4 3897 3908 (-1456 -3304 412 ) (-1456 -3304 240 ) (-1269.333374 -3304 240 ) (-1248 -3304 256 ) +5 3897 3907 (-1456 -3304 5542.669922 ) (-1456 -3304 412 ) (-1248 -3304 256 ) (-1040 -3304 412 ) (-1040 -3304 5542.669922 ) +4 3897 3906 (-1040 -3304 412 ) (-1024 -3304 424 ) (-1024 -3304 5542.669922 ) (-1040 -3304 5542.669922 ) +4 3897 3901 (-1280 -3304 232 ) (-1456 -3304 232 ) (-1456 -3296 232 ) (-1280 -3296 232 ) +4 3897 3898 (-1024 -3304 423.997070 ) (-1247.998047 -3304 255.998566 ) (-1247.998047 -3296 255.998566 ) (-1024 -3296 423.997070 ) +4 3898 3909 (-1216 -3304 232 ) (-1040 -3304 232 ) (-1040 -3304 240 ) (-1226.666626 -3304 240 ) +4 3898 3907 (-1040 -3304 240 ) (-1040 -3304 412 ) (-1248 -3304 256 ) (-1226.666626 -3304 240 ) +4 3898 3906 (-1040 -3304 232 ) (-1024 -3304 232 ) (-1024 -3304 424 ) (-1040 -3304 412 ) +4 3898 3899 (-1024 -3304 232 ) (-1216 -3304 232 ) (-1216 -3296 232 ) (-1024 -3296 232 ) +4 3899 3909 (-1162.669922 -3304 192 ) (-1040 -3304 192 ) (-1040 -3304 232 ) (-1216.010010 -3304 232 ) +4 3899 3906 (-1040 -3304 192 ) (-1024 -3304 192 ) (-1024 -3304 232 ) (-1040 -3304 232 ) +4 3899 3902 (-1024 -3304 192 ) (-1162.669922 -3304 192 ) (-1162.659912 -3296 192 ) (-1024 -3296 192 ) +4 3901 3919 (-1456 -3296 232 ) (-1456 -3296 192 ) (-1456 -3304 192 ) (-1456 -3304 232 ) +4 3901 3910 (-1456 -3304 232 ) (-1456 -3304 192 ) (-1333.322510 -3304 192 ) (-1279.993530 -3304 232 ) +4 3901 3903 (-1333.322510 -3304 192 ) (-1456 -3304 192 ) (-1456 -3296 192 ) (-1333.322510 -3296 192 ) +4 3902 3911 (-1120 -3304 160 ) (-1040 -3304 160 ) (-1040 -3304 180 ) (-1146.662598 -3304 180 ) +4 3902 3909 (-1040 -3304 180 ) (-1040 -3304 192 ) (-1162.660034 -3304 192 ) (-1146.662598 -3304 180 ) +4 3902 3906 (-1040 -3304 160 ) (-1024 -3304 160 ) (-1024 -3304 192 ) (-1040 -3304 192 ) +4 3902 3904 (-1024 -3304 160 ) (-1088 -3304 160 ) (-1088 -3296 160 ) (-1024 -3296 160 ) +4 3903 3922 (-1456 -3296 192 ) (-1456 -3296 160 ) (-1456 -3304 160 ) (-1456 -3304 192 ) +4 3903 3912 (-1456 -3304 180 ) (-1456 -3304 160 ) (-1376 -3304 160 ) (-1349.337280 -3304 180 ) +4 3903 3910 (-1456 -3304 192 ) (-1456 -3304 180 ) (-1349.337280 -3304 180 ) (-1333.339844 -3304 192 ) +4 3903 3905 (-1408 -3304 160 ) (-1456 -3304 160 ) (-1456 -3296 160 ) (-1408 -3296 160 ) +4 3904 3915 (-1088 -3304 128 ) (-1040 -3304 128 ) (-1040 -3304 160 ) (-1088 -3304 160 ) +4 3904 3906 (-1040 -3304 128 ) (-1024 -3304 128 ) (-1024 -3304 160 ) (-1040 -3304 160 ) +3 3905 3924 (-1456 -3296 144 ) (-1456 -3296 128 ) (-1456 -3304 144 ) +4 3905 3922 (-1456 -3296 160 ) (-1456 -3296 144 ) (-1456 -3304 144 ) (-1456 -3304 160 ) +4 3905 3916 (-1456 -3304 160 ) (-1456 -3304 128 ) (-1408 -3304 128 ) (-1408 -3304 160 ) +4 3906 3917 (-1040 -3456 128 ) (-1024 -3456 128 ) (-1024 -3456 5542.669922 ) (-1040 -3456 5542.669922 ) +4 3906 3915 (-1040 -3344 160 ) (-1040 -3304 160 ) (-1040 -3304 128 ) (-1040 -3328 128 ) +3 3906 3913 (-1040 -3360 192 ) (-1040 -3328 160 ) (-1040 -3344 160 ) +4 3906 3911 (-1040 -3392 224 ) (-1040 -3304 180 ) (-1040 -3304 160 ) (-1040 -3328 160 ) +3 3906 3909 (-1040 -3424 240 ) (-1040 -3304 240 ) (-1040 -3304 180 ) +4 3906 3907 (-1040 -3456 240 ) (-1040 -3456 5542.669922 ) (-1040 -3304 5542.669922 ) (-1040 -3304 240 ) +4 3907 3918 (-1456 -3456 412 ) (-1456 -3456 5542.669922 ) (-1456 -3304 5542.669922 ) (-1456 -3304 412 ) +5 3907 3917 (-1456 -3456 5542.669922 ) (-1456 -3456 412 ) (-1226.666626 -3456 240 ) (-1040 -3456 240 ) (-1040 -3456 5542.669922 ) +4 3907 3909 (-1226.666626 -3304 240 ) (-1040 -3304 240 ) (-1040 -3424 240 ) (-1226.666626 -3424 240 ) +4 3907 3908 (-1456 -3304 412 ) (-1248 -3304 256 ) (-1248 -3456 256 ) (-1456 -3456 412 ) +3 3908 3920 (-1456 -3376 272 ) (-1456 -3344 272 ) (-1456 -3344 240 ) +4 3908 3919 (-1456 -3344 272 ) (-1456 -3304 272 ) (-1456 -3304 240 ) (-1456 -3344 240 ) +4 3908 3918 (-1456 -3456 272 ) (-1456 -3456 412 ) (-1456 -3304 412 ) (-1456 -3304 272 ) +4 3908 3917 (-1456 -3456 412 ) (-1456 -3456 240 ) (-1269.333374 -3456 240 ) (-1248 -3456 256 ) +4 3908 3910 (-1456 -3304 240 ) (-1269.333374 -3304 240 ) (-1269.333374 -3424 240 ) (-1456 -3424 240 ) +4 3909 3911 (-1205.333374 -3392 224 ) (-1146.666626 -3304 180 ) (-1040 -3304 180 ) (-1040 -3392 224 ) +3 3910 3922 (-1456 -3304 192 ) (-1456 -3304 180 ) (-1456 -3328 192 ) +5 3910 3919 (-1456 -3344 240 ) (-1456 -3304 240 ) (-1456 -3304 192 ) (-1456 -3328 192 ) (-1456 -3344 224 ) +4 3910 3912 (-1456 -3392 224 ) (-1456 -3304 180 ) (-1349.333374 -3304 180 ) (-1290.666626 -3392 224 ) +4 3911 3915 (-1088 -3304 160 ) (-1040 -3304 160 ) (-1040 -3328 160 ) (-1088 -3328 160 ) +4 3911 3913 (-1120 -3327.996094 160 ) (-1040 -3327.996094 160 ) (-1040 -3360.004150 192.008148 ) (-1162.677490 -3360.004150 192.008148 ) +4 3912 3922 (-1456 -3328 192 ) (-1456 -3304 180 ) (-1456 -3304 160 ) (-1456 -3312 160 ) +4 3912 3916 (-1456 -3304 160 ) (-1408 -3304 160 ) (-1408 -3328 160 ) (-1456 -3328 160 ) +4 3912 3914 (-1456 -3327.996094 160 ) (-1376 -3327.996094 160 ) (-1333.322510 -3360.004150 192.008148 ) (-1456 -3360.004150 192.008148 ) +4 3913 3915 (-1040 -3328 160 ) (-1040 -3344 160 ) (-1088 -3344 160 ) (-1088 -3328 160 ) +4 3914 3916 (-1456 -3344 160 ) (-1456 -3328 160 ) (-1408 -3328 160 ) (-1408 -3344 160 ) +3 3916 3922 (-1456 -3312 160 ) (-1456 -3304 160 ) (-1456 -3304 144 ) +4 3917 3939 (-1024 -4096 128 ) (-1024 -4096 5542.669922 ) (-1456 -4096 5542.669922 ) (-1456 -4096 128 ) +4 3917 3930 (-1024 -4096 128 ) (-1456 -4096 128 ) (-1456 -3456 128 ) (-1024 -3456 128 ) +4 3917 3925 (-1456 -3456 128 ) (-1456 -4096 128 ) (-1456 -4096 144 ) (-1456 -3456 144 ) +4 3917 3923 (-1456 -4096 144 ) (-1456 -4096 192 ) (-1456 -3456 192 ) (-1456 -3456 144 ) +4 3917 3921 (-1456 -4096 192 ) (-1456 -4096 272 ) (-1456 -3456 272 ) (-1456 -3456 192 ) +4 3917 3918 (-1456 -4096 272 ) (-1456 -4096 5542.669922 ) (-1456 -3456 5542.669922 ) (-1456 -3456 272 ) +4 3918 3939 (-1472 -4096 5542.669922 ) (-1472 -4096 272 ) (-1456 -4096 272 ) (-1456 -4096 5542.669922 ) +4 3918 3926 (-1472 -3296 5542.669922 ) (-1472 -3296 272 ) (-1472 -4096 272 ) (-1472 -4096 5542.669922 ) +4 3918 3920 (-1472 -3376 272 ) (-1472 -3344 272 ) (-1456 -3344 272 ) (-1456 -3376 272 ) +4 3918 3919 (-1472 -3344 272 ) (-1472 -3296 272 ) (-1456 -3296 272 ) (-1456 -3344 272 ) +4 3918 3921 (-1472 -4096 272 ) (-1472 -3456 272 ) (-1456 -3456 272 ) (-1456 -4096 272 ) +5 3919 3926 (-1472 -3296 272 ) (-1472 -3296 192 ) (-1472 -3328 192 ) (-1472 -3344 224 ) (-1472 -3344 272 ) +4 3919 3922 (-1472 -3328 192 ) (-1472 -3296 192 ) (-1456 -3296 192 ) (-1456 -3328 192 ) +4 3919 3920 (-1456 -3344 240 ) (-1456 -3344 272 ) (-1472 -3344 272 ) (-1472 -3344 240 ) +3 3920 3926 (-1472 -3376 272 ) (-1472 -3344 272 ) (-1472 -3344 240 ) +4 3921 3939 (-1472 -4096 272 ) (-1472 -4096 192 ) (-1456 -4096 192 ) (-1456 -4096 272 ) +4 3921 3926 (-1472 -3456 192 ) (-1472 -4096 192 ) (-1472 -4096 272 ) (-1472 -3456 272 ) +4 3921 3923 (-1472 -4096 192 ) (-1472 -3456 192 ) (-1456 -3456 192 ) (-1456 -4096 192 ) +4 3922 3926 (-1472 -3296 192 ) (-1472 -3296 144 ) (-1472 -3304 144 ) (-1472 -3328 192 ) +4 3922 3924 (-1472 -3304 144 ) (-1472 -3296 144 ) (-1456 -3296 144 ) (-1456 -3304 144 ) +4 3923 3939 (-1472 -4096 192 ) (-1472 -4096 144 ) (-1456 -4096 144 ) (-1456 -4096 192 ) +4 3923 3926 (-1472 -3432 144 ) (-1472 -4096 144 ) (-1472 -4096 192 ) (-1472 -3432 192 ) +4 3923 3925 (-1472 -4096 144 ) (-1472 -3456 144 ) (-1456 -3456 144 ) (-1456 -4096 144 ) +3 3924 3926 (-1472 -3296 144 ) (-1472 -3296 128 ) (-1472 -3304 144 ) +4 3925 3939 (-1472 -4096 144 ) (-1472 -4096 128 ) (-1456 -4096 128 ) (-1456 -4096 144 ) +4 3925 3930 (-1456 -4096 128 ) (-1472 -4096 128 ) (-1472 -3456 128 ) (-1456 -3456 128 ) +4 3925 3926 (-1472 -3456 128 ) (-1472 -4096 128 ) (-1472 -4096 144 ) (-1472 -3456 144 ) +4 3926 3957 (-2048 -3584 5542.669922 ) (-2048 -3296 5542.669922 ) (-2048 -3296 576 ) (-2048 -3584 576 ) +4 3926 3958 (-2048 -4096 128 ) (-2048 -4096 5542.669922 ) (-2048 -3584 5542.669922 ) (-2048 -3584 128 ) +4 3926 3939 (-2048 -4096 5542.669922 ) (-2048 -4096 128 ) (-1472 -4096 128 ) (-1472 -4096 5542.669922 ) +4 3926 3931 (-1472 -4096 128 ) (-2048 -4096 128 ) (-2048 -3312 128 ) (-1472 -3312 128 ) +4 3926 3929 (-2048 -3312 128 ) (-2048 -3296 128 ) (-1472 -3296 128 ) (-1472 -3312 128 ) +4 3927 3932 (-1280 -3296 -32 ) (-1184 -3296 -32 ) (-1184 -3312 -32 ) (-1280 -3312 -32 ) +4 3929 3934 (-2048 -3312 -32 ) (-2048 -3296 -32 ) (-1856 -3296 -32 ) (-1856 -3312 -32 ) +4 3929 3932 (-1536 -3296 -32 ) (-1472 -3296 -32 ) (-1472 -3312 -32 ) (-1536 -3312 -32 ) +4 3929 3931 (-2048 -3312 -32 ) (-1472 -3312 -32 ) (-1472 -3312 128 ) (-2048 -3312 128 ) +4 3930 3939 (-1024 -4096 -32 ) (-1024 -4096 128 ) (-1472 -4096 128 ) (-1472 -4096 -32 ) +4 3930 3932 (-1024 -3456 -32 ) (-1024 -4096 -32 ) (-1472 -4096 -32 ) (-1472 -3456 -32 ) +4 3930 3931 (-1472 -3456 -32 ) (-1472 -4096 -32 ) (-1472 -4096 128 ) (-1472 -3456 128 ) +4 3931 3958 (-2048 -4096 -32 ) (-2048 -4096 128 ) (-2048 -3584 128 ) (-2048 -3584 -32 ) +4 3931 3939 (-1472 -4096 128 ) (-2048 -4096 128 ) (-2048 -4096 -32 ) (-1472 -4096 -32 ) +4 3931 3934 (-2048 -3520 -32 ) (-2048 -3312 -32 ) (-1856 -3312 -32 ) (-1856 -3520 -32 ) +4 3931 3935 (-2048 -4096 -32 ) (-2048 -3520 -32 ) (-1856 -3520 -32 ) (-1856 -4096 -32 ) +4 3931 3933 (-1536 -3520 -32 ) (-1536 -4096 -32 ) (-1856 -4096 -32 ) (-1856 -3520 -32 ) +4 3931 3932 (-1536 -3312 -32 ) (-1472 -3312 -32 ) (-1472 -4096 -32 ) (-1536 -4096 -32 ) +4 3932 3939 (-1024 -4096 -64 ) (-1024 -4096 -32 ) (-1536 -4096 -32 ) (-1536 -4096 -64 ) +4 3932 3936 (-1024 -4096 -64 ) (-1536 -4096 -64 ) (-1536 -3296 -64 ) (-1024 -3296 -64 ) +4 3932 3933 (-1536 -3520 -64 ) (-1536 -4096 -64 ) (-1536 -4096 -32 ) (-1536 -3520 -32 ) +4 3933 3939 (-1536 -4096 -32 ) (-1856 -4096 -32 ) (-1856 -4096 -64 ) (-1536 -4096 -64 ) +4 3933 3936 (-1536 -4096 -64 ) (-1856 -4096 -64 ) (-1856 -3520 -64 ) (-1536 -3520 -64 ) +4 3933 3935 (-1856 -3520 -64 ) (-1856 -4096 -64 ) (-1856 -4096 -32 ) (-1856 -3520 -32 ) +4 3934 3935 (-1856 -3520 -48 ) (-1856 -3520 -32 ) (-2048 -3520 -32 ) (-2048 -3520 -48 ) +4 3935 3958 (-2048 -4096 -64 ) (-2048 -4096 -32 ) (-2048 -3584 -32 ) (-2048 -3584 -64 ) +4 3935 3939 (-1856 -4096 -32 ) (-2048 -4096 -32 ) (-2048 -4096 -64 ) (-1856 -4096 -64 ) +4 3935 3936 (-1856 -4096 -64 ) (-2048 -4096 -64 ) (-2048 -3520 -64 ) (-1856 -3520 -64 ) +4 3936 3960 (-2048 -4096 -1284 ) (-2048 -4096 -128.032013 ) (-2048 -3296 -128.032013 ) (-2048 -3296 -1284 ) +4 3936 3958 (-2048 -4096 -128.032013 ) (-2048 -4096 -64 ) (-2048 -3584 -64 ) (-2048 -3584 -128.032013 ) +4 3936 3939 (-1024 -4096 -1284 ) (-1024 -4096 -64 ) (-2048 -4096 -64 ) (-2048 -4096 -1284 ) +4 3937 3938 (0 -5120 -1284 ) (0 -5120 5542.669922 ) (0 -4096 5542.669922 ) (0 -4096 -1284 ) +4 3938 3939 (-1024 -4096 5542.669922 ) (-1024 -4096 -1284 ) (-1024 -5120 -1284 ) (-1024 -5120 5542.669922 ) +4 3939 3962 (-2048 -5120 -1284 ) (-2048 -5120 5542.669922 ) (-2048 -4096 5542.669922 ) (-2048 -4096 -1284 ) +4 3940 3949 (-2560 -2048 576 ) (-2816 -2048 576 ) (-2816 -2048 -64 ) (-2560 -2048 -64 ) +4 3940 3948 (-2048 -2048 -64 ) (-2048 -2048 576 ) (-2560 -2048 576 ) (-2560 -2048 -64 ) +4 3940 3947 (-2816 -2048 576 ) (-3072 -2048 576 ) (-3072 -2048 -64 ) (-2816 -2048 -64 ) +4 3940 3946 (-2048 -2048 576 ) (-2048 -2048 5542.669922 ) (-3072 -2048 5542.669922 ) (-3072 -2048 576 ) +4 3940 3945 (-3072 -1024 5542.669922 ) (-3072 -1024 -64 ) (-3072 -2048 -64 ) (-3072 -2048 5542.669922 ) +4 3940 3942 (-2048 -2048 -64 ) (-2112 -2048 -64 ) (-2112 -1984 -64 ) (-2048 -1984 -64 ) +4 3940 3941 (-2112 -1984 -64 ) (-2112 -1024 -64 ) (-2048 -1024 -64 ) (-2048 -1984 -64 ) +4 3940 3944 (-2112 -2048 -64 ) (-3072 -2048 -64 ) (-3072 -1024 -64 ) (-2112 -1024 -64 ) +4 3941 3943 (-2112 -1984 -128 ) (-2112 -1984 -1284 ) (-2048 -1984 -1284 ) (-2048 -1984 -128 ) +4 3941 3942 (-2112 -1984 -64 ) (-2112 -1984 -128 ) (-2048 -1984 -128 ) (-2048 -1984 -64 ) +4 3941 3944 (-2112 -1024 -1284 ) (-2112 -1984 -1284 ) (-2112 -1984 -64 ) (-2112 -1024 -64 ) +4 3942 3951 (-2048 -2048 -128 ) (-2048 -2048 -64 ) (-2112 -2048 -64 ) (-2112 -2048 -128 ) +4 3942 3944 (-2112 -2048 -128 ) (-2112 -2048 -64 ) (-2112 -1984 -64 ) (-2112 -1984 -128 ) +4 3942 3943 (-2048 -2048 -128 ) (-2112 -2048 -128 ) (-2112 -1984 -128 ) (-2048 -1984 -128 ) +4 3943 3955 (-2048 -2048 -1284 ) (-2048 -2048 -128 ) (-2112 -2048 -128 ) (-2112 -2048 -1284 ) +4 3943 3944 (-2112 -1984 -1284 ) (-2112 -2048 -1284 ) (-2112 -2048 -128 ) (-2112 -1984 -128 ) +4 3944 3955 (-3072 -2048 -128.032013 ) (-3072 -2048 -1284 ) (-2112 -2048 -1284 ) (-2112 -2048 -128.032013 ) +4 3944 3954 (-2560 -2048 -64 ) (-2816 -2048 -64 ) (-2816 -2048 -128.032013 ) (-2560 -2048 -128.032013 ) +4 3944 3953 (-2112 -2048 -64 ) (-2560 -2048 -64 ) (-2560 -2048 -128.032013 ) (-2112 -2048 -128.032013 ) +4 3944 3950 (-2816 -2048 -64 ) (-3072 -2048 -64 ) (-3072 -2048 -128.032013 ) (-2816 -2048 -128.032013 ) +4 3944 3945 (-3072 -1024 -64 ) (-3072 -1024 -1284 ) (-3072 -2048 -1284 ) (-3072 -2048 -64 ) +4 3945 3956 (-3072 -2048 -1284 ) (-3072 -2048 5542.669922 ) (-4080 -2048 5542.669922 ) (-4080 -2048 -1284 ) +4 3946 3957 (-2048 -3072 576 ) (-2048 -3072 5542.669922 ) (-2176 -3072 5542.669922 ) (-2176 -3072 576 ) +4 3946 3959 (-2176 -3072 5542.669922 ) (-3072 -3072 5542.669922 ) (-3072 -3072 576 ) (-2176 -3072 576 ) +4 3946 3956 (-3072 -3072 576 ) (-3072 -3072 5542.669922 ) (-3072 -2048 5542.669922 ) (-3072 -2048 576 ) +4 3946 3949 (-2816 -2048 576 ) (-2560 -2048 576 ) (-2176 -2432 576 ) (-2304 -2560 576 ) +3 3946 3948 (-2560 -2048 576 ) (-2048 -2048 576 ) (-2048 -2560 576 ) +5 3946 3947 (-3072 -3072 576 ) (-3072 -2048 576 ) (-2816 -2048 576 ) (-2176 -2688 576 ) (-2176 -3072 576 ) +4 3947 3959 (-2176 -3072 576 ) (-3072 -3072 576 ) (-3072 -3072 -64 ) (-2176 -3072 -64 ) +4 3947 3956 (-3072 -3072 -64 ) (-3072 -3072 576 ) (-3072 -2048 576 ) (-3072 -2048 -64 ) +5 3947 3950 (-2176 -3072 -64 ) (-3072 -3072 -64 ) (-3072 -2048 -64 ) (-2816 -2048 -64 ) (-2176 -2688 -64 ) +4 3947 3949 (-2304 -2560 -64 ) (-2816 -2048 -64 ) (-2816.003906 -2048 576 ) (-2304.001953 -2560.001953 576 ) +4 3948 3952 (-2048 -2432 -64 ) (-2048 -2560 -64 ) (-2112 -2496 -64 ) (-2112 -2432 -64 ) +4 3948 3951 (-2112 -2048 -64 ) (-2048 -2048 -64 ) (-2048 -2432 -64 ) (-2112 -2432 -64 ) +3 3948 3953 (-2560 -2048 -64 ) (-2112 -2048 -64 ) (-2112 -2496 -64 ) +4 3948 3949 (-2560 -2048 -64 ) (-2176 -2432 -64 ) (-2176 -2432 576 ) (-2560 -2048 576 ) +4 3949 3954 (-2816 -2048 -64 ) (-2560 -2048 -64 ) (-2176 -2432 -64 ) (-2304 -2560 -64 ) +4 3950 3959 (-2176 -3072 -64 ) (-3072 -3072 -64 ) (-3072 -3072 -128.032013 ) (-2176 -3072 -128.032013 ) +4 3950 3956 (-3072 -3072 -128.032013 ) (-3072 -3072 -64 ) (-3072 -2048 -64 ) (-3072 -2048 -128.032013 ) +5 3950 3955 (-3072 -3072 -128.032013 ) (-3072 -2048 -128.032013 ) (-2816 -2048 -128.032013 ) (-2176 -2688 -128.032013 ) (-2176 -3072 -128.032013 ) +4 3950 3954 (-2304 -2560 -128.032013 ) (-2816 -2048 -128.032013 ) (-2816.003906 -2048 -64 ) (-2304.001953 -2560.001953 -64 ) +4 3951 3955 (-2112 -2048 -128.032013 ) (-2048 -2048 -128.032013 ) (-2048 -2432 -128.032013 ) (-2112 -2432 -128.032013 ) +4 3951 3953 (-2112 -2048 -128.032013 ) (-2112 -2432 -128.032013 ) (-2112 -2432 -64 ) (-2112 -2048 -64 ) +4 3951 3952 (-2112 -2432 -64 ) (-2112 -2432 -128.032013 ) (-2048 -2432 -128.032013 ) (-2048 -2432 -64 ) +4 3952 3955 (-2048 -2432 -128.032013 ) (-2048 -2560 -128.032013 ) (-2112 -2496 -128.032013 ) (-2112 -2432 -128.032013 ) +4 3952 3953 (-2112 -2432 -128.032013 ) (-2112 -2496 -128.032013 ) (-2112 -2496 -64 ) (-2112 -2432 -64 ) +3 3953 3955 (-2560 -2048 -128.032013 ) (-2112 -2048 -128.032013 ) (-2112 -2496 -128.032013 ) +4 3953 3954 (-2560 -2048 -128.032013 ) (-2176 -2432 -128.032013 ) (-2176 -2432 -64 ) (-2560 -2048 -64 ) +4 3954 3955 (-2816 -2048 -128.032013 ) (-2560 -2048 -128.032013 ) (-2176 -2432 -128.032013 ) (-2304 -2560 -128.032013 ) +4 3955 3960 (-2048 -3072 -1284 ) (-2048 -3072 -128.032013 ) (-3072 -3072 -128.032013 ) (-3072 -3072 -1284 ) +4 3955 3956 (-3072 -3072 -1284 ) (-3072 -3072 -128.032013 ) (-3072 -2048 -128.032013 ) (-3072 -2048 -1284 ) +4 3956 3961 (-4080 -3072 -1284 ) (-3072 -3072 -1284 ) (-3072 -3072 5542.669922 ) (-4080 -3072 5542.669922 ) +4 3957 3958 (-2176 -3584 5542.669922 ) (-2176 -3584 576 ) (-2048 -3584 576 ) (-2048 -3584 5542.669922 ) +4 3957 3959 (-2176 -3584 576 ) (-2176 -3584 5542.669922 ) (-2176 -3072 5542.669922 ) (-2176 -3072 576 ) +4 3958 3962 (-2048 -4096 -128.032013 ) (-2048 -4096 5542.669922 ) (-2176 -4096 5542.669922 ) (-2176 -4096 -128.032013 ) +4 3958 3960 (-2048 -4096 -128.032013 ) (-2176 -4096 -128.032013 ) (-2176 -3584 -128.032013 ) (-2048 -3584 -128.032013 ) +4 3958 3959 (-2176 -3584 -128.032013 ) (-2176 -4096 -128.032013 ) (-2176 -4096 5542.669922 ) (-2176 -3584 5542.669922 ) +4 3959 3962 (-2176 -4096 5542.669922 ) (-3072 -4096 5542.669922 ) (-3072 -4096 -128.032013 ) (-2176 -4096 -128.032013 ) +4 3959 3961 (-3072 -3072 5542.669922 ) (-3072 -3072 -128.032013 ) (-3072 -4096 -128.032013 ) (-3072 -4096 5542.669922 ) +4 3959 3960 (-2176 -4096 -128.032013 ) (-3072 -4096 -128.032013 ) (-3072 -3072 -128.032013 ) (-2176 -3072 -128.032013 ) +4 3960 3962 (-2048 -4096 -1284 ) (-2048 -4096 -128.032013 ) (-3072 -4096 -128.032013 ) (-3072 -4096 -1284 ) +4 3960 3961 (-3072 -3072 -128.032013 ) (-3072 -3072 -1284 ) (-3072 -4096 -1284 ) (-3072 -4096 -128.032013 ) +4 3961 3963 (-3072 -4096 -1284 ) (-3072 -4096 5542.669922 ) (-4080 -4096 5542.669922 ) (-4080 -4096 -1284 ) +4 3962 3963 (-3072 -4096 5542.669922 ) (-3072 -4096 -1284 ) (-3072 -5120 -1284 ) (-3072 -5120 5542.669922 ) diff --git a/MCDV/shaders/dev.fs b/MCDV/shaders/dev.fs new file mode 100644 index 0000000..0a69127 --- /dev/null +++ b/MCDV/shaders/dev.fs @@ -0,0 +1,20 @@ +#version 330 core +// OPENGL +// ____________________________________________________________________________________________ +in vec2 TexCoords; +out vec4 FragColor; + +// SAMPLER UNIFORMS +// Image Inputs _______________________________________________________________________________ +uniform usampler2D uMainTex; // Buyzones +uniform sampler2D MainTex; + +// SHADER PROGRAM +// ____________________________________________________________________________________________ +// ( Write all your shader code & functions here ) + +void main(){ + uint flags = texture(uMainTex, TexCoords).r; + + FragColor = vec4(float((flags >> 0) & 0x1U),0,0,1); +} \ No newline at end of file diff --git a/MCDV/shaders/fullscreenbase.fs b/MCDV/shaders/fullscreenbase.fs new file mode 100644 index 0000000..b754e48 --- /dev/null +++ b/MCDV/shaders/fullscreenbase.fs @@ -0,0 +1,251 @@ +#version 330 core +// OPENGL +// ____________________________________________________________________________________________ +in vec2 TexCoords; +out vec4 FragColor; + +// UNIFORMS +// Vector Information _________________________________________________________________________ +// ( A bunch of vectors that give you the location of different entities ) +uniform vec3 bounds_NWU; // North-West-Upper coordinate of the playspace (worldspace) +uniform vec3 bounds_SEL; // South-East-Lower coordinate of the playspace (worldspace) + +// SAMPLER UNIFORMS +// Image Inputs _______________________________________________________________________________ +uniform sampler2D tex_gradient; +uniform sampler2D tex_background; +uniform sampler2D tex_modulate; +uniform sampler2D gbuffer_position; +uniform sampler2D gbuffer_clean_position; +uniform sampler2D gbuffer_normal; +uniform usampler2D gbuffer_info; +uniform usampler2D umask_playspace; +uniform usampler2D umask_objectives; +uniform usampler2D umask_buyzone; + +uniform vec3 samples[256]; +uniform sampler2D ssaoRotations; +uniform float ssaoScale; +uniform mat4 projection; +uniform mat4 view; + +const vec2 noiseScale = vec2(1024.0/256.0, 1024.0/256.0); + +uniform vec4 color_objective; +uniform vec4 color_buyzone; +uniform vec4 color_cover; +uniform vec4 color_cover2; + +// SHADER HELPERS +// ____________________________________________________________________________________________ +// --------------------------------------- Blend modes ---------------------------------------- + +float lerp(float a, float b, float w) +{ + return a + w*(b-a); +} + +vec3 lerp(vec3 a, vec3 b, float w) +{ + return a + w*(b-a); +} + +vec4 blend_normal(vec4 a, vec4 b, float s) +{ + return vec4(lerp(a.rgb, b.rgb, b.a * s), a.a + (b.a * s)); +} + +vec4 blend_add(vec4 a, vec4 b, float s) +{ + return vec4(a.rgb + (b.rgb * s), a.a); +} + +// ------------------------------------------ maths ------------------------------------------- +float remap(float value, float low1, float high1, float low2, float high2) +{ + return low2 + (value - low1) * (high2 - low2) / (high1 - low1); +} + +// SHADER PROGRAM +// ____________________________________________________________________________________________ +// ( Write all your shader code & functions here ) + +vec4 sample_gradient(float height) +{ + return vec4(texture(tex_gradient, vec2(remap(height, bounds_SEL.y, bounds_NWU.y, 0, 1), 0))); +} + +float kernel_filter_glow(sampler2D sampler, int channelID, int sample_size, int inverse) +{ + vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); + + float sT = 0; + int sample_double = sample_size * 2; + + // Process kernel + for(int x = 0; x <= sample_double; x++){ + for(int y = 0; y <= sample_double; y++){ + if(inverse == 0) + sT += texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; + else sT += 1 - texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; + } + } + + sT /= (sample_double * sample_double); + + return sT; +} + +// Given a 0-1 mask, return an outline drawn around that mask +float kernel_filter_outline(sampler2D sampler, int channelID, int sample_size) +{ + vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); + + float sT = 0; + int sample_double = sample_size * 2; + + // Process kernel + for(int x = 0; x <= sample_double; x++){ + for(int y = 0; y <= sample_double; y++){ + sT += //texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; + (sample_size - min(length(vec2(-sample_size + x, -sample_size + y)), sample_size)) * + texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; + } + } + + return max(min(sT, 1) - texture(sampler, TexCoords)[channelID], 0); +} + +float kernel_filter_glow(usampler2D sampler, int sample_size, int inverse) +{ + vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); + + uint sT = 0U; + int sample_double = sample_size * 2; + + // Process kernel + for(int x = 0; x <= sample_double; x++){ + for(int y = 0; y <= sample_double; y++){ + if(inverse == 0) + sT += texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y)).r; + else sT += 1U - texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y)).r; + } + } + float r = float(sT) / (sample_double * sample_double); + return r * r; +} + +// Given a 0-1 mask, return an outline drawn around that mask +float kernel_filter_outline(usampler2D sampler, int sample_size) +{ + vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); + + float sT = 0; + int sample_double = sample_size * 2; + + // Process kernel + for(int x = 0; x <= sample_double; x++){ + for(int y = 0; y <= sample_double; y++){ + sT += + (sample_size - min(length(vec2(-sample_size + x, -sample_size + y)), sample_size)) * + float(texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y)).r); + } + } + + return float(max(min(sT, 1U) - texture(sampler, TexCoords).r, 0U)); +} + +void main() +{ + //vec4 s_background = texture(tex_background, TexCoords); + vec4 final = vec4(0,0,0,0); + + vec4 s_position = texture(gbuffer_position, TexCoords); + vec4 s_modulate_1_5 = texture(tex_modulate, TexCoords * 1.5); + vec4 s_modulate = texture(tex_modulate, TexCoords); + vec4 s_position_clean = texture(gbuffer_clean_position, TexCoords); + float htest = remap(s_position.y, bounds_SEL.y, bounds_NWU.y, 0, 1); + + uint s_um_playspace = texture(umask_playspace, TexCoords).r; + + float m_playspace_clean = float(((s_um_playspace >> 0) & 0x1U)); + + float m_objectives = float(texture(umask_objectives, TexCoords).r); + float m_buyzones = float(texture(umask_buyzone, TexCoords).r); + uint s_info = texture(gbuffer_info, TexCoords).r; + float m_playspace = float(((s_um_playspace >> 0) & 0x1U) | ((s_info >> 1) & 0x1U)); + + final = blend_normal(final, + sample_gradient( + lerp(s_position_clean.y, s_position.y, clamp((1 - s_modulate.r) + (float((s_info >> 1) & 0x1U) - m_playspace_clean), 0, 1)) + ), m_playspace); + + final = blend_normal(final, color_cover, float((s_info >> 7) & 0x1U) * m_playspace); + final = blend_normal(final, color_cover * vec4(0.4, 0.4, 0.4, 1.0), float((s_info >> 7) & 0x1U) * m_playspace * (1 - ((s_position.y - s_position_clean.y) / 256))); + + vec4 s_normal = texture(gbuffer_normal, TexCoords); + vec3 randVec = texture(ssaoRotations, TexCoords * noiseScale).rgb; + + vec3 tangent = normalize(randVec - s_normal.rgb * dot(randVec, s_normal.rgb)); + vec3 bitangent = cross(s_normal.rgb, tangent); + mat3 TBN = mat3(tangent, bitangent, s_normal.rgb); + + float occlusion = 0.0; + for(int i = 0; i < 256; i++) + { + vec3 sample = TBN * samples[i]; + sample = s_position.xyz + sample * ssaoScale; + + vec4 offset = vec4(sample, 1.0); + offset = projection * view * offset; + offset.xyz /= offset.w; + offset.xyz = offset.xyz * 0.5 + 0.5; + + float sDepth = texture(gbuffer_position, offset.xy).y; + + occlusion += (sDepth >= sample.y + 10.0 ? 1.0 : 0.0); + } + + final = blend_normal(final, vec4(0,0,0,1), (occlusion / 200) * m_playspace); + + + final = blend_normal(final, color_objective, // Objectives + ( + (kernel_filter_glow(umask_objectives, 13, 1)) + * m_objectives + * ( 1 - float((s_info >> 7) & 0x1U)) + ) + + + ( + kernel_filter_outline(umask_objectives, 2) * 0.9 + * ( 1 - float((s_info >> 7) & 0x1U)) * s_modulate_1_5.r + ) + + + ( + (kernel_filter_glow(umask_objectives, 13, 0)) + * ( 1 - m_objectives ) + * ( 1 - float((s_info >> 7) & 0x1U)) + ) + ); + + final = blend_normal(final, color_buyzone, // Objectives + ( + (kernel_filter_glow(umask_buyzone, 13, 1)) + * m_buyzones + * ( 1 - float((s_info >> 7) & 0x1U)) + ) + + + ( + kernel_filter_outline(umask_buyzone, 2) * 0.9 + * ( 1 - float((s_info >> 7) & 0x1U)) + ) + + + ( + (kernel_filter_glow(umask_buyzone, 13, 0)) + * ( 1 - m_buyzones ) + * ( 1 - float((s_info >> 7) & 0x1U)) + ) + ); + + FragColor = final; +} \ No newline at end of file diff --git a/MCDV/shaders/gBuffer.fs b/MCDV/shaders/gBuffer.fs new file mode 100644 index 0000000..f3ecdc8 --- /dev/null +++ b/MCDV/shaders/gBuffer.fs @@ -0,0 +1,16 @@ +#version 330 core + +in vec3 FragPos; +in vec3 Normal; +uniform uint Info; + +layout (location = 0) out vec3 gPosition; +layout (location = 1) out vec3 gNormal; +layout (location = 2) out uint gInfo; + +void main() +{ + gPosition = FragPos; + gNormal = normalize(Normal); + gInfo = Info; +} \ No newline at end of file diff --git a/MCDV/shaders/gBuffer.vs b/MCDV/shaders/gBuffer.vs new file mode 100644 index 0000000..8d09566 --- /dev/null +++ b/MCDV/shaders/gBuffer.vs @@ -0,0 +1,20 @@ +#version 330 core +layout (location = 0) in vec3 aPos; +layout (location = 1) in vec3 aNormal; + +out vec3 FragPos; +out vec3 Normal; + +uniform mat4 model; +uniform mat4 view; +uniform mat4 projection; + +void main() +{ + FragPos = vec3(model * vec4(aPos, 1.0)); + + mat3 normalMatrix = transpose(inverse(mat3(model))); + Normal = normalMatrix * aNormal; + + gl_Position = projection * view * model * vec4(aPos, 1.0); +} \ No newline at end of file diff --git a/MCDV/shaders/iBuffer.fs b/MCDV/shaders/iBuffer.fs new file mode 100644 index 0000000..69b4d11 --- /dev/null +++ b/MCDV/shaders/iBuffer.fs @@ -0,0 +1,17 @@ +#version 330 core + +in vec3 FragPos; +in vec3 Normal; + +uniform uint srcChr; + +//layout (location = 0) out vec3 gPosition; + +layout (location = 0) out uint gInfo; + +void main() +{ + //gPosition = FragPos; + //gNormal = vec3(1,0,0);//normalize(Normal); + gInfo = srcChr; +} \ No newline at end of file diff --git a/MCDV/shaders/ss_comp_main.fs b/MCDV/shaders/ss_comp_main.fs index 97b47a1..1cc5057 100644 --- a/MCDV/shaders/ss_comp_main.fs +++ b/MCDV/shaders/ss_comp_main.fs @@ -37,32 +37,18 @@ uniform vec4 cover_color;// = vec4(0.700, 0.700, 0.700, 1.000); // SAMPLER UNIFORMS // Image Inputs _______________________________________________________________________________ // ( Standard generated maps from the engine ) -uniform sampler2D tex_background; // Background texture -uniform sampler2D tex_playspace; // Playspace - // R: Height (Regular) - // G: Height (Reverse rendering order) - // **B: Baked Lighting - // A: Playable Space (0 or 1) - -uniform sampler2D tex_objectives; // Objectives - // R: Objectives (0 or 1) - // G: Buzones (0 or 1) - // B: none - // A: Buyzones & Bombsites (mask 0-1) - -uniform sampler2D tex_props; // Props - // **R: Height (0-1 normalized) - // **G: none - // **B: none - // **A: Props (0 or 1) +uniform usampler2D umask_playspace; +uniform usampler2D umask_objectives; +uniform usampler2D umask_buyzones; + +uniform sampler2D gbuffer_position; +uniform sampler2D gbuffer_normals; + +uniform sampler2D tex_background; uniform sampler2D tex_gradient; // Gradient input // RGBA: 256x1 image defining a gradient -uniform sampler2D texture0; // Custom Image input 3 (**RGBA) -uniform sampler2D texture1; // Custom Image input 4 (**RGBA) -uniform sampler2D texture2; // Custom Image input 5 (**RGBA) - // SHADER HELPERS // ____________________________________________________________________________________________ // --------------------------------------- Blend modes ---------------------------------------- @@ -89,39 +75,15 @@ float remap(float value, float low1, float high1, float low2, float high2) } // ---------------------------------------- transforms ---------------------------------------- -vec2 worlspaceToScreen(vec3 worldCoord) -{ - return vec2( - remap(worldCoord.x, bounds_NWU.x, bounds_SEL.x, 0, 1), - remap(worldCoord.y, bounds_SEL.y, bounds_NWU.y, 0, 1)); -} - -vec3 screenSpaceToWorld(vec2 screenCoord, float heightSample) -{ - return vec3( - remap(screenCoord.x, 0, 1, bounds_NWU.x, bounds_SEL.x), - remap(screenCoord.y, 0, 1, bounds_SEL.y, bounds_NWU.y), - remap(heightSample, 0, 1, bounds_SEL.z, bounds_NWU.z)); -} -float screenHeightToWorld(float screenHeight) -{ - return remap(screenHeight, 0, 1, bounds_SEL.z, bounds_NWU.z); -} // -------------------------------------- sample helpers -------------------------------------- vec4 sample_gradient(float height) { - return vec4(texture(tex_gradient, vec2(height, 0))); + return vec4(texture(tex_gradient, vec2(remap(height, bounds_SEL.y, bounds_NWU.y, 0, 1), 0))); } -float get_playspace(vec4 sample_playspace) { return sample_playspace.a; } -float get_playspace_height(vec4 sample_playspace) { return sample_playspace.a * sample_playspace.r; } -float get_playspace_inverse_height(vec4 sample_playspace) { return sample_playspace.a * sample_playspace.g; } - -float get_height(vec4 sample_playspace) { return sample_playspace.r; } - // ---------------------------------- kernel / trace filters ---------------------------------- // Given an 0-1 mask, return a 'glow value' @@ -166,58 +128,6 @@ float kernel_filter_outline(sampler2D sampler, int channelID, int sample_size) return max(min(sT, 1) - texture(sampler, TexCoords)[channelID], 0); } -// Given a height map, return a shadow map for this sample -float trace_shadow(sampler2D heightSampler, int channelID) -{ - int traceCount = 1024; - - vec3 angleV = vec3(-0.5, 1, 1); - - vec3 sampleWorldCoord = screenSpaceToWorld(TexCoords, texture(heightSampler, TexCoords).r); - - float sD = 0; - - for(int i = 0; i < traceCount; i++) - { - vec3 traceOffset = angleV * i; - vec3 stepSampleLoc = sampleWorldCoord + traceOffset; - vec2 uvSampleLoc = worlspaceToScreen(stepSampleLoc); - float stepSampleHeight = screenHeightToWorld(texture(heightSampler, uvSampleLoc).r); - - if(stepSampleHeight-sampleWorldCoord.z > traceOffset.z) - { - sD += 1; - } - } - - return clamp(sD, 0, 1); -} - -// 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, int sample_size) -{ - vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); - - float sT = 0; - int sample_double = sample_size * 2; - - float thisHeight = texture(sampler, TexCoords)[channelID]; - - // Process kernel - for(int x = 0; x <= sample_double; x++){ - for(int y = 0; y <= sample_double; y++){ - float dif = texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID] - thisHeight; - sT += clamp(dif, 0, 0.04); - } - } - - sT /= (sample_double * sample_double); - sT *= 16; - - return sT; -} - // SHADER PROGRAM // ____________________________________________________________________________________________ // ( Write all your shader code & functions here ) @@ -225,28 +135,13 @@ float kernel_ao_basic(sampler2D sampler, int channelID, int sample_size) void main() { vec4 sBackground = vec4(texture(tex_background, TexCoords)); - vec4 sPlayspace = vec4(texture(tex_playspace, TexCoords)); - vec4 sObjectives = vec4(texture(tex_objectives, TexCoords)); + vec4 sGBPosition = vec4(texture(gbuffer_position, TexCoords)); + uint mPlayspace = texture(umask_playspace, TexCoords).r; vec4 final = sBackground; - final = blend_normal(final, vec4(0,0,0,1), 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) * 0.2); // Shadows - if(cmdl_ao_enable == 1) final = blend_normal(final, ao_color, kernel_ao_basic(tex_playspace, 0, cmdl_ao_size) * 0.9 * sPlayspace.a); // AO - - if(cmdl_outline_enable == 1) final = blend_normal(final, outline_color, kernel_filter_outline(tex_playspace, 3, cmdl_outline_size)); // Outline - final = blend_normal(final, objective_color, // Objectives - (kernel_filter_glow(tex_objectives, 0, 16, 1) * sObjectives.r) + - kernel_filter_outline(tex_objectives, 0, 2)); - - final = blend_normal(final, buyzone_color, // Buyzones - (kernel_filter_glow(tex_objectives, 1, 16, 1) * sObjectives.g) + - kernel_filter_outline(tex_objectives, 1, 2)); - + final = blend_normal(final, sample_gradient(sGBPosition.b), float(mPlayspace)); // Playspace // Return the final output color - FragColor = final; + FragColor = texture(gbuffer_position, TexCoords); } \ No newline at end of file diff --git a/MCDV/shaders/ss_comp_main.fso b/MCDV/shaders/ss_comp_main.fso new file mode 100644 index 0000000..97b47a1 --- /dev/null +++ b/MCDV/shaders/ss_comp_main.fso @@ -0,0 +1,252 @@ +#version 330 core +// Note:: All channels marked with an ** are currently not filled out by the engine. + +// OPENGL +// ____________________________________________________________________________________________ +in vec2 TexCoords; +out vec4 FragColor; + +// UNIFORMS +// Vector Information _________________________________________________________________________ +// ( A bunch of vectors that give you the location of different entities ) +uniform vec3 bounds_NWU; // North-West-Upper coordinate of the playspace (worldspace) +uniform vec3 bounds_SEL; // South-East-Lower coordinate of the playspace (worldspace) +uniform vec2 bounds_NWU_SS; // **North-West coordinate of the playspace (UV Screenspace) +uniform vec2 bounds_SEL_SS; // **South-East coordinate of the playspace (UV Screenspace) + +uniform vec2 pos_spawn_ct; // **Location of the CT Spawn (UV Screenspace) +uniform vec2 pos_spawn_t; // **Location of the T Spawn (UV Screenspace) +uniform vec2 bombsite_a; // **Location of bomsite A (UV Screenspace) +uniform vec2 bombsite_b; // **Location of bombsite B (UV Screenspace) + +uniform int cmdl_shadows_enable; // Commandline switch --ao + +uniform int cmdl_ao_enable; // Commandline switch --shadows +uniform int cmdl_ao_size; + +uniform int cmdl_outline_enable; +uniform int cmdl_outline_size; + +uniform vec4 outline_color;// = vec4(0.8, 0.8, 0.8, 0.6); +uniform vec4 ao_color;// = vec4(0.0, 0.0, 0.0, 1.0); + +uniform vec4 buyzone_color;// = vec4(0.180, 0.828, 0.225, 0.667); +uniform vec4 objective_color;// = vec4(0.770, 0.295, 0.171, 1.000); +uniform vec4 cover_color;// = vec4(0.700, 0.700, 0.700, 1.000); + +// SAMPLER UNIFORMS +// Image Inputs _______________________________________________________________________________ +// ( Standard generated maps from the engine ) +uniform sampler2D tex_background; // Background texture +uniform sampler2D tex_playspace; // Playspace + // R: Height (Regular) + // G: Height (Reverse rendering order) + // **B: Baked Lighting + // A: Playable Space (0 or 1) + +uniform sampler2D tex_objectives; // Objectives + // R: Objectives (0 or 1) + // G: Buzones (0 or 1) + // B: none + // A: Buyzones & Bombsites (mask 0-1) + +uniform sampler2D tex_props; // Props + // **R: Height (0-1 normalized) + // **G: none + // **B: none + // **A: Props (0 or 1) + +uniform sampler2D tex_gradient; // Gradient input + // RGBA: 256x1 image defining a gradient + +uniform sampler2D texture0; // Custom Image input 3 (**RGBA) +uniform sampler2D texture1; // Custom Image input 4 (**RGBA) +uniform sampler2D texture2; // Custom Image input 5 (**RGBA) + +// SHADER HELPERS +// ____________________________________________________________________________________________ +// --------------------------------------- Blend modes ---------------------------------------- + +vec3 lerp(vec3 a, vec3 b, float w) +{ + return a + w*(b-a); +} + +vec4 blend_normal(vec4 a, vec4 b, float s) +{ + return vec4(lerp(a.rgb, b.rgb, b.a * s), a.a + (b.a * s)); +} + +vec4 blend_add(vec4 a, vec4 b, float s) +{ + return vec4(a.rgb + (b.rgb * s), a.a); +} + +// ------------------------------------------ maths ------------------------------------------- +float remap(float value, float low1, float high1, float low2, float high2) +{ + return low2 + (value - low1) * (high2 - low2) / (high1 - low1); +} + +// ---------------------------------------- transforms ---------------------------------------- +vec2 worlspaceToScreen(vec3 worldCoord) +{ + return vec2( + remap(worldCoord.x, bounds_NWU.x, bounds_SEL.x, 0, 1), + remap(worldCoord.y, bounds_SEL.y, bounds_NWU.y, 0, 1)); +} + +vec3 screenSpaceToWorld(vec2 screenCoord, float heightSample) +{ + return vec3( + remap(screenCoord.x, 0, 1, bounds_NWU.x, bounds_SEL.x), + remap(screenCoord.y, 0, 1, bounds_SEL.y, bounds_NWU.y), + remap(heightSample, 0, 1, bounds_SEL.z, bounds_NWU.z)); +} + +float screenHeightToWorld(float screenHeight) +{ + return remap(screenHeight, 0, 1, bounds_SEL.z, bounds_NWU.z); +} + +// -------------------------------------- sample helpers -------------------------------------- + +vec4 sample_gradient(float height) +{ + return vec4(texture(tex_gradient, vec2(height, 0))); +} + +float get_playspace(vec4 sample_playspace) { return sample_playspace.a; } +float get_playspace_height(vec4 sample_playspace) { return sample_playspace.a * sample_playspace.r; } +float get_playspace_inverse_height(vec4 sample_playspace) { return sample_playspace.a * sample_playspace.g; } + +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, int sample_size, int inverse) +{ + vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); + + float sT = 0; + int sample_double = sample_size * 2; + + // Process kernel + for(int x = 0; x <= sample_double; x++){ + for(int y = 0; y <= sample_double; y++){ + if(inverse == 0) + sT += texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; + else sT += 1 - texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; + } + } + + sT /= (sample_double * sample_double); + + return sT; +} + +// Given a 0-1 mask, return an outline drawn around that mask +float kernel_filter_outline(sampler2D sampler, int channelID, int sample_size) +{ + vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); + + float sT = 0; + int sample_double = sample_size * 2; + + // Process kernel + for(int x = 0; x <= sample_double; x++){ + for(int y = 0; y <= sample_double; y++){ + sT += //texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; + (sample_size - min(length(vec2(-sample_size + x, -sample_size + y)), sample_size)) * + texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID]; + } + } + + return max(min(sT, 1) - texture(sampler, TexCoords)[channelID], 0); +} + +// Given a height map, return a shadow map for this sample +float trace_shadow(sampler2D heightSampler, int channelID) +{ + int traceCount = 1024; + + vec3 angleV = vec3(-0.5, 1, 1); + + vec3 sampleWorldCoord = screenSpaceToWorld(TexCoords, texture(heightSampler, TexCoords).r); + + float sD = 0; + + for(int i = 0; i < traceCount; i++) + { + vec3 traceOffset = angleV * i; + vec3 stepSampleLoc = sampleWorldCoord + traceOffset; + vec2 uvSampleLoc = worlspaceToScreen(stepSampleLoc); + float stepSampleHeight = screenHeightToWorld(texture(heightSampler, uvSampleLoc).r); + + if(stepSampleHeight-sampleWorldCoord.z > traceOffset.z) + { + sD += 1; + } + } + + return clamp(sD, 0, 1); +} + +// 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, int sample_size) +{ + vec2 pixel_size = 1.0 / vec2(textureSize(sampler, 0)); + + float sT = 0; + int sample_double = sample_size * 2; + + float thisHeight = texture(sampler, TexCoords)[channelID]; + + // Process kernel + for(int x = 0; x <= sample_double; x++){ + for(int y = 0; y <= sample_double; y++){ + float dif = texture(sampler, TexCoords + vec2((-sample_size + x) * pixel_size.x, (-sample_size + y) * pixel_size.y))[channelID] - thisHeight; + sT += clamp(dif, 0, 0.04); + } + } + + sT /= (sample_double * sample_double); + sT *= 16; + + return sT; +} + +// SHADER PROGRAM +// ____________________________________________________________________________________________ +// ( Write all your shader code & functions here ) + +void main() +{ + vec4 sBackground = vec4(texture(tex_background, TexCoords)); + vec4 sPlayspace = vec4(texture(tex_playspace, TexCoords)); + vec4 sObjectives = vec4(texture(tex_objectives, TexCoords)); + + vec4 final = sBackground; + final = blend_normal(final, vec4(0,0,0,1), 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) * 0.2); // Shadows + if(cmdl_ao_enable == 1) final = blend_normal(final, ao_color, kernel_ao_basic(tex_playspace, 0, cmdl_ao_size) * 0.9 * sPlayspace.a); // AO + + if(cmdl_outline_enable == 1) final = blend_normal(final, outline_color, kernel_filter_outline(tex_playspace, 3, cmdl_outline_size)); // Outline + + final = blend_normal(final, objective_color, // Objectives + (kernel_filter_glow(tex_objectives, 0, 16, 1) * sObjectives.r) + + kernel_filter_outline(tex_objectives, 0, 2)); + + final = blend_normal(final, buyzone_color, // Buyzones + (kernel_filter_glow(tex_objectives, 1, 16, 1) * sObjectives.g) + + kernel_filter_outline(tex_objectives, 1, 2)); + + + // Return the final output color + FragColor = final; +} \ No newline at end of file diff --git a/MCDV/tar_config.hpp b/MCDV/tar_config.hpp new file mode 100644 index 0000000..7c63967 --- /dev/null +++ b/MCDV/tar_config.hpp @@ -0,0 +1,126 @@ +#pragma once +#include "vmf_new.hpp" + +#include +#include +#include + +#include +#include +#include + +#include "Texture.hpp" +#include "GradientMap.hpp" + +struct tar_config_layer { + float layer_max; + float layer_min; + + tar_config_layer() + : + layer_max(10000.0f), + layer_min(10000.0f) {} + + tar_config_layer(float min, float max) + : + layer_max(max), + layer_min(min) {} +}; + +class tar_config { +public: + std::vector layers; + + // Textures + Texture* m_texture_gradient; + Texture* m_texture_background; + + // Lighting settings + bool m_ao_enable; + float m_ao_scale; + bool m_shadows_enable; + + // Outline settings + bool m_outline_enable; + int m_outline_width; + bool m_outline_stripes_enable; + + // Color settings + glm::vec4 m_color_cover; + glm::vec4 m_color_cover2; + glm::vec4 m_color_outline; + glm::vec4 m_color_ao; + glm::vec4 m_color_buyzone; + glm::vec4 m_color_objective; + + // Visgroups + std::string m_visgroup_layout; + std::string m_visgroup_mask; + std::string m_visgroup_cover; + std::string m_visgroup_overlap; + + tar_config(vmf* v) { + // Search for tar_config entity + std::map kvs; + std::vector cfgs = v->get_entities_by_classname("tar_config"); + if (cfgs.size() != 0) kvs = cfgs[0]->m_keyvalues; + + // Load color scheme gradient + // TODO: Entity based gradients + std::string schemeNum = kv::tryGetStringValue(kvs, "colorScheme", "0"); + if (schemeNum == "-1" || schemeNum == "-2") { + this->m_texture_gradient = new GradientTexture( + kv::tryGetStringValue(kvs, "customCol0", "39 56 79 255"), + kv::tryGetStringValue(kvs, "customCol1", "77 74 72 255"), + kv::tryGetStringValue(kvs, "customCol2", "178 113 65 255") + ); + } else { + this->m_texture_gradient = new Texture("textures/gradients/gradientmap_" + schemeNum + ".png", true); + } + + this->m_texture_background = new Texture("textures/" + kv::tryGetStringValue(kvs, "background", "grid.png"), true); + + // Load the rest of the config options + this->m_ao_enable = (kv::tryGetStringValue(kvs, "enableAO", "1") == "1"); + this->m_ao_scale = kv::tryGetValue(kvs, "aoSize", 1000.0f); + + this->m_outline_enable = (kv::tryGetStringValue(kvs, "enableOutline", "0") == "1"); + this->m_outline_width = kv::tryGetValue(kvs, "outlineWidth", 2); + + this->m_shadows_enable = (kv::tryGetStringValue(kvs, "enableShadows", "0") == "1"); + + this->m_color_cover = parseVec4(kv::tryGetStringValue(kvs, "zColCover", "179 179 179 255")); + this->m_color_cover2 = parseVec4(kv::tryGetStringValue(kvs, "zColCover2", "0 0 0 0 ")); + this->m_color_outline = parseVec4(kv::tryGetStringValue(kvs, "zColOutline", "204 204 204 153")); + this->m_color_ao = parseVec4(kv::tryGetStringValue(kvs, "zColAO", "0 0 0 255")); + this->m_color_buyzone = parseVec4(kv::tryGetStringValue(kvs, "zColBuyzone", "46 211 57 170")); + this->m_color_objective = parseVec4(kv::tryGetStringValue(kvs, "zColObjective", "196 75 44 255")); + + this->m_outline_stripes_enable = (kv::tryGetStringValue(kvs, "ObjectiveUseStripes", "0") == "1"); + + this->m_visgroup_cover = kv::tryGetStringValue(kvs, "vgroup_cover", "tar_cover"); + this->m_visgroup_layout = kv::tryGetStringValue(kvs, "vgroup_layout", "tar_layout"); + this->m_visgroup_mask = kv::tryGetStringValue(kvs, "vgroup_negative", "tar_mask"); + this->m_visgroup_overlap = kv::tryGetStringValue(kvs, "vgroup_overlap", "tar_overlap"); + + // Get map splits + std::vector splitters = v->get_entities_by_classname("tar_map_divider"); + + if (splitters.size() == 0) { + this->layers.push_back(tar_config_layer()); + return; + } + // Process the split entities + std::vector splits = {}; + std::sort(splits.begin(), splits.end()); + + for (auto && s : splitters) splits.push_back(s->m_origin.y); + + this->layers.push_back(tar_config_layer(-10000.0f, splits[0])); + + for (int i = 0; i < splits.size() - 1; i++) + this->layers.push_back(tar_config_layer(splits[i], splits[i + 1])); + + this->layers.push_back(tar_config_layer(splits.back(), 10000.0f)); + } +}; \ No newline at end of file diff --git a/MCDV/vdf.hpp b/MCDV/vdf.hpp index b424e05..b4d0636 100644 --- a/MCDV/vdf.hpp +++ b/MCDV/vdf.hpp @@ -133,7 +133,14 @@ namespace kv return NULL; } - //Gets all sub blocks by type + DataBlock* _GetFirstByName(const std::string& _name) { + for (auto && i : this->SubBlocks) + if (i.name == _name) + return &i; + return NULL; + } + + // OBSOLETE: use _GetAllByName std::vector GetAllByName(std::string _name) { std::vector c; @@ -144,6 +151,17 @@ namespace kv return c; } + + // New ver + std::vector _GetAllByName(const std::string& _name) { + std::vector c; + + for (auto && i : this->SubBlocks) + if (i.name == _name) + c.push_back(&i); + + return c; + } }; class FileData diff --git a/MCDV/vmf.hpp b/MCDV/vmf.hpp index 6f5c943..c65875b 100644 --- a/MCDV/vmf.hpp +++ b/MCDV/vmf.hpp @@ -31,6 +31,9 @@ #include "../AutoRadar_installer/FileSystemHelper.h" +#undef min +#undef max + namespace vmf_parse { //Pass Vector3 bool Vector3f(std::string str, glm::vec3* vec) @@ -746,6 +749,7 @@ namespace vmf { std::vector meshPoints; std::vector finalPoints; + std::vector finalNormals; glm::vec3* NWU = &v.bounds.NWU; glm::vec3* SEL = &v.bounds.SEL; @@ -765,6 +769,7 @@ namespace vmf { P = P + offset; //Add offset to P finalPoints.push_back(P); + finalNormals.push_back(info->normals[col][row]); //Recompute bounds while we are at it NWU->x = glm::max(-P.x, NWU->x); @@ -773,32 +778,7 @@ namespace vmf { SEL->x = glm::min(-P.x, SEL->x); SEL->y = glm::min(P.z, SEL->y); - SEL->z = glm::min(P.y, SEL->z); - - continue; - - /* TESTING TRIANGLES */ - meshPoints.push_back(-P.x); - meshPoints.push_back(P.z); - meshPoints.push_back(P.y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); - - meshPoints.push_back(-P.x); - meshPoints.push_back(P.z); - meshPoints.push_back(P.y + 8.0f); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); - - - meshPoints.push_back(-P.x + 8.0f); - meshPoints.push_back(P.z); - meshPoints.push_back(P.y + 8.0f); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + SEL->z = glm::min(P.y, SEL->z); } } @@ -808,89 +788,90 @@ namespace vmf { // Gather point pointers // hehe :( - glm::vec3* SW = &finalPoints[((row + 0) * points) + (col + 0)]; - glm::vec3* SE = &finalPoints[((row + 0) * points) + (col + 1)]; - - glm::vec3* NW = &finalPoints[((row + 1) * points) + (col + 0)]; - glm::vec3* NE = &finalPoints[((row + 1) * points) + (col + 1)]; + glm::vec3* SW = &finalPoints [((row + 0) * points) + (col + 0)]; + glm::vec3* SW_N = &finalNormals [((row + 0) * points) + (col + 0)]; + glm::vec3* SE = &finalPoints [((row + 0) * points) + (col + 1)]; + glm::vec3* SE_N = &finalNormals [((row + 0) * points) + (col + 1)]; + glm::vec3* NW = &finalPoints [((row + 1) * points) + (col + 0)]; + glm::vec3* NW_N = &finalNormals [((row + 1) * points) + (col + 0)]; + glm::vec3* NE = &finalPoints [((row + 1) * points) + (col + 1)]; + glm::vec3* NE_N = &finalNormals [((row + 1) * points) + (col + 1)]; if (i_condition++ % 2 == 0) {//Condition 0 meshPoints.push_back(-SW->x); meshPoints.push_back(SW->z); meshPoints.push_back(SW->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-SW_N->x); + meshPoints.push_back(SW_N->z); + meshPoints.push_back(SW_N->y); meshPoints.push_back(-NW->x); meshPoints.push_back(NW->z); meshPoints.push_back(NW->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-NW_N->x); + meshPoints.push_back(NW_N->z); + meshPoints.push_back(NW_N->y); meshPoints.push_back(-NE->x); meshPoints.push_back(NE->z); meshPoints.push_back(NE->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); - - meshPoints.push_back(-SW->x); + meshPoints.push_back(-NE_N->x); + meshPoints.push_back(NE_N->z); + meshPoints.push_back(NE_N->y); + meshPoints.push_back(-SW->x); // tri2 meshPoints.push_back(SW->z); meshPoints.push_back(SW->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-SW_N->x); + meshPoints.push_back(SW_N->z); + meshPoints.push_back(SW_N->y); meshPoints.push_back(-NE->x); meshPoints.push_back(NE->z); meshPoints.push_back(NE->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-NE_N->x); + meshPoints.push_back(NE_N->z); + meshPoints.push_back(NE_N->y); meshPoints.push_back(-SE->x); meshPoints.push_back(SE->z); meshPoints.push_back(SE->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-SE_N->x); + meshPoints.push_back(SE_N->z); + meshPoints.push_back(SE_N->y); } else { //Condition 1 meshPoints.push_back(-SW->x); meshPoints.push_back(SW->z); meshPoints.push_back(SW->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-SW_N->x); + meshPoints.push_back(SW_N->z); + meshPoints.push_back(SW_N->y); meshPoints.push_back(-NW->x); meshPoints.push_back(NW->z); meshPoints.push_back(NW->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-NW_N->x); + meshPoints.push_back(NW_N->z); + meshPoints.push_back(NW_N->y); meshPoints.push_back(-SE->x); meshPoints.push_back(SE->z); meshPoints.push_back(SE->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); - - meshPoints.push_back(-NW->x); + meshPoints.push_back(-SE_N->x); + meshPoints.push_back(SE_N->z); + meshPoints.push_back(SE_N->y); + meshPoints.push_back(-NW->x); //tri2 meshPoints.push_back(NW->z); meshPoints.push_back(NW->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-NW_N->x); + meshPoints.push_back(NW_N->z); + meshPoints.push_back(NW_N->y); meshPoints.push_back(-NE->x); meshPoints.push_back(NE->z); meshPoints.push_back(NE->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-NE_N->x); + meshPoints.push_back(NE_N->z); + meshPoints.push_back(NE_N->y); meshPoints.push_back(-SE->x); meshPoints.push_back(SE->z); meshPoints.push_back(SE->y); - meshPoints.push_back(0); - meshPoints.push_back(0); - meshPoints.push_back(1); + meshPoints.push_back(-SE_N->x); + meshPoints.push_back(SE_N->z); + meshPoints.push_back(SE_N->y); } } i_condition++; @@ -938,12 +919,7 @@ namespace vmf { this->solids[i].mesh = NULL; } - for (auto i : this->entities) { - for (auto m : i.internal_solids) { - delete m.mesh; - m.mesh = NULL; - } - } + /* Add code for entities mem cleanup */ } ~vmf() { diff --git a/MCDV/vmf_new.hpp b/MCDV/vmf_new.hpp new file mode 100644 index 0000000..98d795b --- /dev/null +++ b/MCDV/vmf_new.hpp @@ -0,0 +1,923 @@ +// io +#pragma once +#include +#include +#include +#include "vdf.hpp" + +// stl containers +#include +#include +#include + +// opengl +#include +#include +#include +#include +#include + +//engine +#include "Util.h" +#include "plane.h" +#include "Mesh.hpp" +#include "Shader.hpp" +#include "IRenderable.hpp" +#include "interpolation.h" + +// other +#include + +// Source sdk +#include "vfilesys.hpp" + +// UINT16 buffer bit definitions ================ +// Byte 0 +#define TAR_MIBUFFER_PLAYSPACE 0x1 +#define TAR_MIBUFFER_OVERLAP 0x2 +#define TAR_MIBUFFER_OBJECTIVE_B 0x4 +#define TAR_MIBUFFER_OBJECTIVE_X 0x8 +#define TAR_MIBUFFER_BUYZONE_CT 0x10 +#define TAR_MIBUFFER_BUYZONE_T 0x20 +#define TAR_MIBUFFER_BUYZONE_X 0x40 +#define TAR_MIBUFFER_COVER0 0x80 +// Byte 1 +#define TAR_MIBUFFER_COVER1 0x100 +#define TAR_MIBUFFER_MODEL 0x200 +#define TAR_MIBUFFER_FUNC_DETAIL 0x400 +#define TAR_MIBUFFER_NEGATIVE 0x800 +#define TAR_MIBUFFER_USER0 0x1000 +#define TAR_MIBUFFER_USER1 0x2000 +#define TAR_MIBUFFER_USER2 0x4000 +#define TAR_MIBUFFER_USER3 0x8000 +// ============================================ + +typedef unsigned int TAR_MIBUFFER_FLAGS; +std::map g_visgroup_flag_translations; + +bool use_verbose = true; +std::string prefix = ""; + +inline glm::vec3 get_normal(const glm::vec3& A, const glm::vec3& B, const glm::vec3& C) { + return glm::normalize(glm::cross(A - C, B - C)); +} + +constexpr +unsigned int hash(const char* str, int h = 0) +{ + return !str[h] ? 5381 : (hash(str, h + 1) * 33) ^ str[h]; +} + +//Variadic print +void _debug() { + std::cout << std::endl; +} + +template +void _debug(First arg, const Strings&... rest) { + std::cout << arg; + _debug(rest...); +} + +template +void debug(First arg, const Strings&... rest) { + if (use_verbose) { + std::cout << prefix; + _debug(arg, rest...); + } +} + +namespace vmf_parse { + //Pass Vector3 + bool Vector3f(std::string str, glm::vec3* vec) + { + str = sutil::removeChar(str, '('); + str = sutil::removeChar(str, ')'); + + std::vector elems = split(str, ' '); + std::vector pelems; + + for (int i = 0; i < elems.size(); i++) { + std::string f = sutil::trim(elems[i]); + + //TODO: error check against invalid values here + float e = ::atof(f.c_str()); + pelems.push_back(e); + } + + if (pelems.size() == 3) { + *vec = glm::vec3(pelems[0], pelems[1], pelems[2]); + return true; + } + + return false; + } + + //Parse Vector 3 with square barackets. Thanks again, valve + bool Vector3fS(std::string str, glm::vec3* vec) + { + str = sutil::removeChar(str, '['); + str = sutil::removeChar(str, ']'); + + std::vector elems = split(str, ' '); + std::vector pelems; + + for (int i = 0; i < elems.size(); i++) { + std::string f = sutil::trim(elems[i]); + + //TODO: error check against invalid values here + float e = ::atof(f.c_str()); + pelems.push_back(e); + } + + if (pelems.size() == 3) { + *vec = glm::vec3(pelems[0], pelems[1], pelems[2]); + return true; + } + + return false; + } + + //Parse plane from standard 3 point notation (ax, ay, az) (bx, by, bz) ... + bool plane(std::string str, Plane* plane) + { + std::vector points = split(str, '('); + + if (points.size() != 4) { return false; } + + glm::vec3 A, B, C; + + if (!(Vector3f(points[1], &A) && Vector3f(points[2], &B) && Vector3f(points[3], &C))) { + return false; + } + + *plane = Plane(A, B, C); + + return true; + } +} + +class material { +public: + material() { + // ok.. what now? + } + + /* + static std::map material_index; + + static material* get(const std::string& tex) { + if (!material_index.count(tex)) material_index.insert({ tex, new material() }); + return material_index[tex]; + }*/ + + static material* get(const std::string& tex) { + return NULL; + } +}; + +class dispinfo; + +class side { +public: + int m_ID; + material* m_texture; + Plane m_plane; + dispinfo* m_dispinfo = NULL; + std::vector m_vertices; + + static side* create(kv::DataBlock* dataSrc); + + void howmany() { + debug(this->m_vertices.size()); + } +}; + +class dispinfo : public IRenderable{ +public: + unsigned int power; + glm::vec3 startposition; + + std::vector> normals; + std::vector> distances; + + side* m_source_side = NULL; + + dispinfo(kv::DataBlock* dataSrc, side* src_side) { + this->m_source_side = src_side; + + kv::DataBlock* kv_normals = dataSrc->_GetFirstByName("normals"); + kv::DataBlock* kv_distances = dataSrc->_GetFirstByName("distances"); + + this->power = std::stoi(dataSrc->Values["power"]); + vmf_parse::Vector3fS(dataSrc->Values["startposition"], &this->startposition); + + int i_target = glm::pow(2, this->power) + 1; + + for (int x = 0; x < i_target; x++) { + this->normals.push_back(std::vector()); + this->distances.push_back(std::vector()); + + // Read normals + std::vector list; + for (auto && v : split(kv_normals->Values["row" + std::to_string(x)])) + list.push_back(::atof(v.c_str())); + + for (int xx = 0; xx < i_target; xx++) { + this->normals[x].push_back( + glm::vec3( + list[xx * 3 + 0], + list[xx * 3 + 1], + list[xx * 3 + 2]) + ); + } + + // Read distances + for (auto && v : split(kv_distances->Values["row" + std::to_string(x)])) + this->distances[x].push_back(std::stof(v.c_str())); + } + } + + // internal draw method + void IRenderable::_Draw(Shader* shader, std::vector transform_stack = {}) { + this->m_mesh->Draw(); + } + + // Compute GL Mesh + void IRenderable::SetupDrawable() { + if (this->m_source_side->m_vertices.size() != 4) { + debug("Displacement info matched to face with {", this->m_source_side->m_vertices.size(), "} vertices!!!"); + return; + } + + // Match 'starting point' + std::map distancesToStart; + for (auto && p : this->m_source_side->m_vertices) + distancesToStart.insert({ glm::distance(this->startposition, p), &p }); + + // The corners of displacement + glm::vec3* SW = distancesToStart.begin()->second; + + // Find what point in vector it was + int pos = 0; + for (auto && point : this->m_source_side->m_vertices) + if (&point == SW) break; else pos++; + + // Get the rest of the points, in clockwise order (they should already be sorted by polytope generation) + glm::vec3* NW = &this->m_source_side->m_vertices[(pos + 1) % 4]; + glm::vec3* NE = &this->m_source_side->m_vertices[(pos + 2) % 4]; + glm::vec3* SE = &this->m_source_side->m_vertices[(pos + 3) % 4]; + + int points = glm::pow(2, this->power) + 1; // calculate the point count (5, 9, 17) + + // Initialize list for floats + std::vector meshData; + + std::vector finalPoints; + std::vector finalNormals; + + for (int row = 0; row < points; row++) { + for (int col = 0; col < points; col++) { + //Generate original base points + + float dx = (float)col / (float)(points - 1); //Time values for linear interpolation + float dy = (float)row / (float)(points - 1); + + glm::vec3 LWR = lerp(*SW, *SE, dx); + glm::vec3 UPR = lerp(*NW, *NE, dx); + glm::vec3 P = lerp(LWR, UPR, dy); // Original point location + + glm::vec3 offset = this->normals[col][row] * this->distances[col][row]; // Calculate offset + P = P + offset; //Add offset to P + + finalPoints.push_back(P); + } + } + + for (int row = 0; row < points; row++) { + for (int col = 0; col < points; col++) { + std::vector kernalpts = { NULL, NULL, NULL, NULL }; + + if(row + 1 < points) kernalpts[0] = &finalPoints[((row + 1) * points) + (col + 0)]; + if(col - 1 > 0) kernalpts[1] = &finalPoints[((row + 0) * points) + (col - 1)]; + + if(row - 1 > 0) kernalpts[2] = &finalPoints[((row - 1) * points) + (col + 0)]; + if(col + 1 < points) kernalpts[3] = &finalPoints[((row + 0) * points) + (col + 1)]; + + glm::vec3* A = &finalPoints[((row + 0) * points) + (col + 0)]; + glm::vec3 cNorm = glm::vec3(1, 0, 0); + + for (int t = 0; t < 1; t++) { + glm::vec3* B = kernalpts[(t + 0) % 4]; + glm::vec3* C = kernalpts[(t + 1) % 4]; + + if ((B != NULL) && (C != NULL)) { + glm::vec3 v0 = *A - *C; + glm::vec3 v1 = *B - *C; + glm::vec3 n = glm::cross(v0, v1); + cNorm += glm::normalize(n); + } + } + + finalNormals.push_back(glm::normalize(cNorm)); + } + } + + int i_condition = 0; + for (int row = 0; row < points - 1; row++) { + for (int col = 0; col < points - 1; col++) { + // Gather point pointers + // hehe :( + glm::vec3* SW = &finalPoints [((row + 0) * points) + (col + 0)]; + glm::vec3* SW_N = &finalNormals [((row + 0) * points) + (col + 0)]; + glm::vec3* SE = &finalPoints [((row + 0) * points) + (col + 1)]; + glm::vec3* SE_N = &finalNormals [((row + 0) * points) + (col + 1)]; + glm::vec3* NW = &finalPoints [((row + 1) * points) + (col + 0)]; + glm::vec3* NW_N = &finalNormals [((row + 1) * points) + (col + 0)]; + glm::vec3* NE = &finalPoints [((row + 1) * points) + (col + 1)]; + glm::vec3* NE_N = &finalNormals [((row + 1) * points) + (col + 1)]; + +#pragma region lots of triangles + // Insert triangles. + if (i_condition++ % 2 == 0) {//Condition 0 + glm::vec3 n1 = get_normal(*SW, *NW, *NE); + meshData.push_back(-NE->x); + meshData.push_back(NE->z); + meshData.push_back(NE->y); + meshData.push_back(-n1.x); + meshData.push_back(n1.z); + meshData.push_back(n1.y); + + meshData.push_back(-NW->x); + meshData.push_back(NW->z); + meshData.push_back(NW->y); + meshData.push_back(-n1.x); + meshData.push_back(n1.z); + meshData.push_back(n1.y); + + meshData.push_back(-SW->x); + meshData.push_back(SW->z); + meshData.push_back(SW->y); + meshData.push_back(-n1.x); + meshData.push_back(n1.z); + meshData.push_back(n1.y); + + glm::vec3 n2 = get_normal(*SW, *NE, *SE); + meshData.push_back(-SE->x); + meshData.push_back(SE->z); + meshData.push_back(SE->y); + meshData.push_back(-n2.x); + meshData.push_back(n2.z); + meshData.push_back(n2.y); + + meshData.push_back(-NE->x); + meshData.push_back(NE->z); + meshData.push_back(NE->y); + meshData.push_back(-n2.x); + meshData.push_back(n2.z); + meshData.push_back(n2.y); + + meshData.push_back(-SW->x); // tri2 + meshData.push_back(SW->z); + meshData.push_back(SW->y); + meshData.push_back(-n2.x); + meshData.push_back(n2.z); + meshData.push_back(n2.y); + } + else { //Condition 1 + glm::vec3 n1 = get_normal(*SW, *NW, *SE); + meshData.push_back(-SE->x); + meshData.push_back(SE->z); + meshData.push_back(SE->y); + meshData.push_back(-n1.x); + meshData.push_back(n1.z); + meshData.push_back(n1.y); + + meshData.push_back(-NW->x); + meshData.push_back(NW->z); + meshData.push_back(NW->y); + meshData.push_back(-n1.x); + meshData.push_back(n1.z); + meshData.push_back(n1.y); + + meshData.push_back(-SW->x); + meshData.push_back(SW->z); + meshData.push_back(SW->y); + meshData.push_back(-n1.x); + meshData.push_back(n1.z); + meshData.push_back(n1.y); + + + glm::vec3 n2 = get_normal(*NW, *NE, *SE); + meshData.push_back(-SE->x); + meshData.push_back(SE->z); + meshData.push_back(SE->y); + meshData.push_back(-n2.x); + meshData.push_back(n2.z); + meshData.push_back(n2.y); + + meshData.push_back(-NE->x); + meshData.push_back(NE->z); + meshData.push_back(NE->y); + meshData.push_back(-n2.x); + meshData.push_back(n2.z); + meshData.push_back(n2.y); + + meshData.push_back(-NW->x); //tri2 + meshData.push_back(NW->z); + meshData.push_back(NW->y); + meshData.push_back(-n2.x); + meshData.push_back(n2.z); + meshData.push_back(n2.y); + } +#pragma endregion + + } + i_condition++; + } + + this->m_mesh = new Mesh(meshData, MeshMode::POS_XYZ_NORMAL_XYZ); + } +}; + +side* side::create(kv::DataBlock* dataSrc) { + side* s = new side(); + s->m_ID = ::atof(dataSrc->Values["id"].c_str()); + s->m_texture = material::get(dataSrc->Values["material"]); + + if (!vmf_parse::plane(dataSrc->Values["plane"], &s->m_plane)) return s; + + kv::DataBlock* kv_dispInfo = dataSrc->_GetFirstByName("dispinfo"); + if (kv_dispInfo != NULL) s->m_dispinfo = new dispinfo(kv_dispInfo, s); + return s; +} + +class vmf; + +class editorvalues { +public: + std::vector m_visgroups; + glm::vec3 m_editorcolor; + + TAR_MIBUFFER_FLAGS m_miflags; + + editorvalues(){} + editorvalues(kv::DataBlock* dataSrc) { + if (dataSrc == NULL) return; + + for (auto && vgroup : kv::getList(dataSrc->Values, "visgroupid")) { + unsigned int vgroupid = std::stoi(vgroup); + this->m_visgroups.push_back(vgroupid); + + if (g_visgroup_flag_translations.count(vgroupid)) + this->m_miflags |= g_visgroup_flag_translations[vgroupid]; + } + +#ifdef VMF_READ_SOLID_COLORS + if (vmf_parse::Vector3f(dataSrc->Values["color"], &this->m_editorcolor)) + this->m_editorcolor = this->m_editorcolor / 255.0f; + else + this->m_editorcolor = glm::vec3(1, 0, 0); +#endif + } +}; + +class solid : public IRenderable { +public: + std::vector m_sides; + editorvalues m_editorvalues; + glm::vec3 NWU; + glm::vec3 SEL; + + solid(kv::DataBlock* dataSrc) { + // Read editor values + this->m_editorvalues = editorvalues(dataSrc->_GetFirstByName("editor")); + + // Read solids + for (auto && s : dataSrc->_GetAllByName("side")) m_sides.push_back(side::create(s)); + + // Process polytope problem. (still questionable why this is a thing) + std::vector intersecting; + + float x, _x, y, _y, z, _z; + _x = _y = _z = std::numeric_limits::max(); + x = y = z = std::numeric_limits::min(); + + for (int i = 0; i < m_sides.size(); i++) { + for (int j = 0; j < m_sides.size(); j++) { + for (int k = 0; k < m_sides.size(); k++) { + // skip common planes + if (i == j || i == k || j == k) continue; + + // Calculate intersection of 3 planes + // will return false if unable to solve (planes are parralel) + glm::vec3 p(0, 0, 0); + if (!Plane::FinalThreePlaneIntersection( + this->m_sides[i]->m_plane, + this->m_sides[j]->m_plane, + this->m_sides[k]->m_plane, + &p)) continue; + + // Check if we are part of the solid using simple polarity checks + bool inbounds = true; + for (auto && m : this->m_sides) { + if (Plane::EvalPointPolarity(m->m_plane, p) < -0.01f) { + inbounds = false; + break; + } + } if (!inbounds) continue; + + // Check if there is already a very similar vertex, and skip it + bool similar = false; + for (auto && v : intersecting) + if (glm::distance(v, p) < 0.5f) { + similar = true; break; + } + if (similar) continue; + + // Add points to all surfaces + this->m_sides[i]->m_vertices.push_back(p); + this->m_sides[j]->m_vertices.push_back(p); + this->m_sides[k]->m_vertices.push_back(p); + + intersecting.push_back(p); + + // Calculate bounds + _x = glm::min(_x, p.x); + _y = glm::min(_y, p.y); + _z = glm::min(_z, p.z); + x = glm::max(x, p.x); + y = glm::max(y, p.y); + z = glm::max(z, p.z); + } + } + } + + for (auto && side : this->m_sides) { + // Sort out deez rascals + Plane::InPlaceOrderCoplanarClockWise(side->m_plane, &side->m_vertices); + } + + // Append bounds data + this->NWU = glm::vec3(-x, z, y); + this->SEL = glm::vec3(-_x, _z, _y); + } + + /* Check if this solid contains any displacement infos. */ + bool containsDisplacements() { + for (auto && s : this->m_sides) { + if (s->m_dispinfo != NULL) + return true; + } + return false; + } + + void IRenderable::_Draw(Shader* shader, std::vector transform_stack = {}) { + bool dispDrawn = false; + for (auto && s : this->m_sides) { + if (s->m_dispinfo != NULL) { + s->m_dispinfo->Draw(shader); + dispDrawn = true; + } + } + + // Only draw solid if thre is no displacement info + if (!dispDrawn) { + this->m_mesh->Draw(); + } + } + + void IRenderable::SetupDrawable() { + std::vector verts; + for (auto && s : this->m_sides) { + if (s->m_dispinfo != NULL) continue; + if (s->m_vertices.size() < 3) continue; + + for (int j = 0; j < s->m_vertices.size() - 2; j++) { + glm::vec3* c = &s->m_vertices[0]; + glm::vec3* b = &s->m_vertices[j + 1]; + glm::vec3* a = &s->m_vertices[j + 2]; + + verts.push_back(-a->x); + verts.push_back(a->z); + verts.push_back(a->y); + + verts.push_back(s->m_plane.normal.x); + verts.push_back(-s->m_plane.normal.z); + verts.push_back(-s->m_plane.normal.y); + + verts.push_back(-b->x); + verts.push_back(b->z); + verts.push_back(b->y); + + verts.push_back(s->m_plane.normal.x); + verts.push_back(-s->m_plane.normal.z); + verts.push_back(-s->m_plane.normal.y); + + verts.push_back(-c->x); + verts.push_back(c->z); + verts.push_back(c->y); + + verts.push_back(s->m_plane.normal.x); + verts.push_back(-s->m_plane.normal.z); + verts.push_back(-s->m_plane.normal.y); + } + } + + this->m_mesh = new Mesh(verts, MeshMode::POS_XYZ_NORMAL_XYZ); + } +}; + +class entity { +public: + std::string m_classname; + int m_id; + std::map m_keyvalues; + editorvalues m_editorvalues; + std::vector m_internal_solids; + glm::vec3 m_origin; + + entity (kv::DataBlock* dataSrc) { + + + if ((dataSrc->_GetFirstByName("solid") == NULL) && (dataSrc->Values.count("origin") == 0)) + throw std::exception(("origin could not be resolved for entity ID: " + dataSrc->Values["id"]).c_str()); + + this->m_classname = dataSrc->Values["classname"]; + this->m_id = (int)::atof(dataSrc->Values["id"].c_str()); + this->m_keyvalues = dataSrc->Values; + this->m_editorvalues = editorvalues(dataSrc->_GetFirstByName("editor")); + + if (dataSrc->_GetFirstByName("solid") == NULL) { + vmf_parse::Vector3f(dataSrc->Values["origin"], &this->m_origin); + this->m_origin = glm::vec3(-this->m_origin.x, this->m_origin.z, this->m_origin.y); + } + else { + for (auto && s : dataSrc->_GetAllByName("solid")) { + this->m_internal_solids.push_back(solid(s)); + } + + // Calculate origin + glm::vec3 NWU = this->m_internal_solids[0].NWU; + glm::vec3 SEL = this->m_internal_solids[0].SEL; + for (auto && i : this->m_internal_solids) { + NWU.z = glm::max(NWU.z, i.NWU.z); + NWU.y = glm::max(NWU.y, i.NWU.y); + NWU.x = glm::max(NWU.x, i.NWU.x); + SEL.z = glm::min(SEL.z, i.SEL.z); + SEL.y = glm::min(SEL.y, i.SEL.y); + SEL.x = glm::min(SEL.x, i.SEL.x); + } + + this->m_origin = (NWU + SEL) * 0.5f; + } + } +}; + +struct BoundingBox { + glm::vec3 NWU; + glm::vec3 SEL; +}; + +bool check_in_whitelist(std::vector* visgroups_in, std::set filter) { + if (filter.count(0xBEEEEEEE)) return true; + + for (auto && vgroup : *visgroups_in) + if (filter.count(vgroup)) + return true; + + return false; +} + +class vmf { +private: + static vfilesys* s_fileSystem; + +public: + // Static setup functions + static void LinkVFileSystem(vfilesys* sys) { + vmf::s_fileSystem = sys; + } + + vmf() {} + + std::vector m_solids; + std::vector m_entities; + + std::map m_visgroups; + + std::set m_whitelist_visgroups; + std::set m_whitelist_classnames; + + static std::map s_model_dict; + + void LinkVisgroupFlagTranslations(std::map map) { + for (auto && translation : map) { + if (this->m_visgroups.count(translation.first)) { + g_visgroup_flag_translations.insert({ this->m_visgroups[translation.first], translation.second }); + } + } + } + + static vmf* from_file(const std::string& path, std::map translations = {}) { + vmf* v = new vmf(); + prefix = "vmf [" + path + "] "; + use_verbose = true; + debug("Opening"); + + std::ifstream ifs(path); + if (!ifs) throw std::exception("355 VMF File read error."); + + std::string file_str((std::istreambuf_iterator(ifs)), std::istreambuf_iterator()); + + debug("Processing VMF data"); + kv::FileData file_kv(file_str); + + debug("Processing visgroups"); + // Process visgroup list + for (auto && vg : file_kv.headNode._GetFirstByName("visgroups")->_GetAllByName("visgroup")) { + v->m_visgroups.insert({ vg->Values["name"], std::stoi(vg->Values["visgroupid"]) }); + std::cout << "'" << vg->Values["name"] << "': " << std::stoi(vg->Values["visgroupid"]) << "\n"; + } + v->LinkVisgroupFlagTranslations(translations); + + debug("Processing solids"); + // Solids + for (auto && kv_solid : file_kv.headNode._GetFirstByName("world")->_GetAllByName("solid")) { + v->m_solids.push_back(solid(kv_solid)); + } + + debug("Processing entities"); + // Entities + for (auto && kv_entity : file_kv.headNode._GetAllByName("entity")) { + try { + entity ent = entity(kv_entity); + v->m_entities.push_back(ent); + } catch (std::exception e) { + debug("374 ENTITY::EXCEPTION ( ", e.what(), ") "); + } + } + + debug("Done!"); + return v; + } + + void InitModelDict() { + for (auto && i : this->m_entities) { + switch (hash(i.m_classname.c_str())) { + case hash("prop_static"): + case hash("prop_dynamic"): + case hash("prop_physics"): + + std::string modelName = kv::tryGetStringValue(i.m_keyvalues, "model", "error.mdl"); + std::string baseName = split(modelName, ".")[0]; + if (vmf::s_model_dict.count(modelName)) continue; // Skip already defined models + + vtx_mesh* vtx = vmf::s_fileSystem->get_resource_handle(baseName + ".dx90.vtx"); + vvd_data* vvd = vmf::s_fileSystem->get_resource_handle(baseName + ".vvd"); + + if (vvd == NULL || vtx == NULL) { + debug( "Failed to load resource: ", baseName, "\n"); + continue; + } + + // GENERATE MESH TING + std::vector meshData; + for (auto && vert : vtx->vertexSequence) { + meshData.push_back(vvd->verticesLOD0[vert].m_vecPosition.x); + meshData.push_back(vvd->verticesLOD0[vert].m_vecPosition.y); + meshData.push_back(vvd->verticesLOD0[vert].m_vecPosition.z); + meshData.push_back(-vvd->verticesLOD0[vert].m_vecNormal.x); + meshData.push_back(vvd->verticesLOD0[vert].m_vecNormal.z); + meshData.push_back(vvd->verticesLOD0[vert].m_vecNormal.y); + } + + vmf::s_model_dict.insert({ modelName, new Mesh(meshData, MeshMode::POS_XYZ_NORMAL_XYZ) }); // Add to our list + break; + } + } + } + + void SetFilters(std::set visgroups, std::set classnames){ + this->m_whitelist_visgroups = std::set{}; + if (visgroups.size() == 0) this->m_whitelist_visgroups.insert(0xBEEEEEEE); + + for (auto && vname : visgroups) + if (this->m_visgroups.count(vname)) + this->m_whitelist_visgroups.insert(this->m_visgroups[vname]); + + this->m_whitelist_classnames = classnames; + } + + void DrawWorld(Shader* shader, std::vector transform_stack = {}, unsigned int infoFlags = 0x00) { + glm::mat4 model = glm::mat4(); + shader->setMatrix("model", model); + shader->setUnsigned("Info", infoFlags); + + // Draw solids + for (auto && solid : this->m_solids) { + if (check_in_whitelist(&solid.m_editorvalues.m_visgroups, this->m_whitelist_visgroups)) { + shader->setUnsigned("Info", infoFlags); + solid.Draw(shader); + } + } + + model = glm::mat4(); + shader->setMatrix("model", model); + // Draw + } + + void DrawEntities(Shader* shader, std::vector transform_stack = {}, unsigned int infoFlags = 0x00) { + glm::mat4 model = glm::mat4(); + shader->setMatrix("model", model); + shader->setUnsigned("Info", infoFlags); + + // Draw props + for (auto && ent : this->m_entities) { + // Visgroup pre-check + if (check_in_whitelist(&ent.m_editorvalues.m_visgroups, this->m_whitelist_visgroups)) { + + if (this->m_whitelist_classnames.count(ent.m_classname)) { + if (ent.m_classname == "prop_static" || + ent.m_classname == "prop_dynamic" || + ent.m_classname == "prop_physics" ) { + + model = glm::mat4(); + model = glm::translate(model, ent.m_origin); + glm::vec3 rot; + vmf_parse::Vector3f(kv::tryGetStringValue(ent.m_keyvalues, "angles", "0 0 0"), &rot); + model = glm::rotate(model, glm::radians(rot.y), glm::vec3(0, 1, 0)); // Yaw + model = glm::rotate(model, glm::radians(rot.x), glm::vec3(0, 0, 1)); // ROOOOOLLLLL + model = glm::rotate(model, -glm::radians(rot.z), glm::vec3(1, 0, 0)); // Pitch + model = glm::scale(model, glm::vec3(::atof(kv::tryGetStringValue(ent.m_keyvalues, "uniformscale", "1").c_str()))); + shader->setMatrix("model", model); + shader->setUnsigned("Info", infoFlags); + + vmf::s_model_dict[kv::tryGetStringValue(ent.m_keyvalues, "model", "error.mdl")]->Draw(); + } + else { + model = glm::mat4(); + shader->setMatrix("model", model); + shader->setUnsigned("Info", infoFlags); + + for (auto && s : ent.m_internal_solids) { + s.Draw(shader); + } + } + } + } + } + + // Resets + model = glm::mat4(); + shader->setMatrix("model", model); + shader->setUnsigned("Info", infoFlags); + } + + BoundingBox getVisgroupBounds(const std::string& visgroup) { + BoundingBox bounds; + if (!this->m_visgroups.count(visgroup)) return bounds; + + unsigned int vgroup = this->m_visgroups[visgroup]; + + bounds.NWU = glm::vec3( + std::numeric_limits::min(), + std::numeric_limits::min(), + std::numeric_limits::min()); + + bounds.SEL = glm::vec3( + std::numeric_limits::max(), + std::numeric_limits::max(), + std::numeric_limits::max()); + + for (auto && iSolid : this->m_solids) { + if (!check_in_whitelist(&iSolid.m_editorvalues.m_visgroups, std::set{ vgroup })) continue; + if (iSolid.NWU.z > bounds.NWU.z) bounds.NWU.z = iSolid.NWU.z; + if (iSolid.NWU.y > bounds.NWU.y) bounds.NWU.y = iSolid.NWU.y; + if (iSolid.NWU.x > bounds.NWU.x) bounds.NWU.x = iSolid.NWU.x; + + if (iSolid.SEL.z < bounds.SEL.z) bounds.SEL.z = iSolid.SEL.z; + if (iSolid.SEL.y < bounds.SEL.y) bounds.SEL.y = iSolid.SEL.y; + if (iSolid.SEL.x < bounds.SEL.x) bounds.SEL.x = iSolid.SEL.x; + } + + std::cout << "Bounds MAXY: " << bounds.NWU.y << "\n"; + std::cout << "Bounds MINY: " << bounds.SEL.y << "\n"; + + return bounds; + } + + std::vector get_entities_by_classname(const std::string& classname) { + std::vector ents; + for (auto && i : this->m_entities) { + if (i.m_classname == classname) { + ents.push_back(&i); + } + } + + return ents; + } +}; + +vfilesys* vmf::s_fileSystem = NULL; +std::map vmf::s_model_dict; \ No newline at end of file diff --git a/MCDV/vpk.txt b/MCDV/vpk.txt index e58db10..acb00de 100644 --- a/MCDV/vpk.txt +++ b/MCDV/vpk.txt @@ -122,6 +122,7 @@ materials/panorama/images/test_images/wedge.svg materials/panorama/images/masks/wedge_select_quarter.svg materials/panorama/images/masks/wedge_select.svg materials/panorama/images/map_icons/map_icon_gd_rialto.svg +materials/panorama/images/map_icons/map_icon_dz_sirocco.svg materials/panorama/images/map_icons/map_icon_dz_blacksite.svg materials/panorama/images/map_icons/map_icon_de_zoo.svg materials/panorama/images/map_icons/map_icon_de_vertigo.svg @@ -133,6 +134,7 @@ materials/panorama/images/map_icons/map_icon_de_shortnuke.svg materials/panorama/images/map_icons/map_icon_de_shortdust.svg materials/panorama/images/map_icons/map_icon_de_shipped.svg materials/panorama/images/map_icons/map_icon_de_safehouse.svg +materials/panorama/images/map_icons/map_icon_de_ruby.svg materials/panorama/images/map_icons/map_icon_de_overpass.svg materials/panorama/images/map_icons/map_icon_de_nuke.svg materials/panorama/images/map_icons/map_icon_de_mirage.svg @@ -148,6 +150,7 @@ materials/panorama/images/map_icons/map_icon_de_bank.svg materials/panorama/images/map_icons/map_icon_de_aztec.svg materials/panorama/images/map_icons/map_icon_de_austria.svg materials/panorama/images/map_icons/map_icon_de_abbey.svg +materials/panorama/images/map_icons/map_icon_cs_workout.svg materials/panorama/images/map_icons/map_icon_cs_office.svg materials/panorama/images/map_icons/map_icon_cs_militia.svg materials/panorama/images/map_icons/map_icon_cs_italy.svg @@ -219,7 +222,9 @@ materials/panorama/images/icons/ui/recent.svg materials/panorama/images/icons/ui/random.svg materials/panorama/images/icons/ui/quest.svg materials/panorama/images/icons/ui/profile.svg +materials/panorama/images/icons/ui/pro_team.svg materials/panorama/images/icons/ui/pro_player.svg +materials/panorama/images/icons/ui/pro_event.svg materials/panorama/images/icons/ui/prime.svg materials/panorama/images/icons/ui/power.svg materials/panorama/images/icons/ui/plus.svg @@ -236,6 +241,7 @@ materials/panorama/images/icons/ui/ping_2.svg materials/panorama/images/icons/ui/ping_1.svg materials/panorama/images/icons/ui/picture.svg materials/panorama/images/icons/ui/pause.svg +materials/panorama/images/icons/ui/parachute_hud.svg materials/panorama/images/icons/ui/parachute.svg materials/panorama/images/icons/ui/overwatch.svg materials/panorama/images/icons/ui/outofammo.svg @@ -308,7 +314,12 @@ materials/panorama/images/icons/ui/friendaccept.svg materials/panorama/images/icons/ui/flyingscoutsman.svg materials/panorama/images/icons/ui/find.svg materials/panorama/images/icons/ui/film.svg +materials/panorama/images/icons/ui/favorite_yes.svg +materials/panorama/images/icons/ui/favorite_no.svg +materials/panorama/images/icons/ui/explorebonus.svg materials/panorama/images/icons/ui/expand.svg +materials/panorama/images/icons/ui/exojump_hud.svg +materials/panorama/images/icons/ui/exojump.svg materials/panorama/images/icons/ui/exit.svg materials/panorama/images/icons/ui/elimination_headshot.svg materials/panorama/images/icons/ui/elimination.svg @@ -342,6 +353,11 @@ materials/panorama/images/icons/ui/bullet_burst_outline.svg materials/panorama/images/icons/ui/bullet_burst.svg materials/panorama/images/icons/ui/bullet.svg materials/panorama/images/icons/ui/bug.svg +materials/panorama/images/icons/ui/broadcast_ring_inner.svg +materials/panorama/images/icons/ui/broadcast_ring.svg +materials/panorama/images/icons/ui/broadcast_pole.svg +materials/panorama/images/icons/ui/broadcast.svg +materials/panorama/images/icons/ui/bombwavebonus.svg materials/panorama/images/icons/ui/bomb_icon.svg materials/panorama/images/icons/ui/bomb_c4.svg materials/panorama/images/icons/ui/bomb_arrow_segment.svg @@ -408,6 +424,7 @@ materials/panorama/images/icons/equipment/ssg08.svg materials/panorama/images/icons/equipment/spanner.svg materials/panorama/images/icons/equipment/snowball.svg materials/panorama/images/icons/equipment/smokegrenade.svg +materials/panorama/images/icons/equipment/shield.svg materials/panorama/images/icons/equipment/sg556.svg materials/panorama/images/icons/equipment/scar20.svg materials/panorama/images/icons/equipment/sawedoff.svg @@ -474,7 +491,9 @@ materials/panorama/images/icons/equipment/defuser.svg materials/panorama/images/icons/equipment/decoy.svg materials/panorama/images/icons/equipment/deagle.svg materials/panorama/images/icons/equipment/cz75a.svg +materials/panorama/images/icons/equipment/controldrone.svg materials/panorama/images/icons/equipment/c4.svg +materials/panorama/images/icons/equipment/bumpmine.svg materials/panorama/images/icons/equipment/breachcharge_projectile.svg materials/panorama/images/icons/equipment/breachcharge.svg materials/panorama/images/icons/equipment/bizon.svg @@ -534,6 +553,7 @@ scripts/soundscapes_mirage.vsc scripts/soundscapes_mill.vsc scripts/soundscapes_militia.vsc scripts/soundscapes_italy.vsc +scripts/soundscapes_island_dust.vsc scripts/soundscapes_island.vsc scripts/soundscapes_inferno_new.vsc scripts/soundscapes_inferno.vsc @@ -618,6 +638,19 @@ materials/correction/cc_assault.raw materials/correction/cc_alleyway.raw materials/correction/airport_main.raw particles/particles_manifest.txt +sound/music/theverkkars_01/wonround.mp3 +sound/music/theverkkars_01/startround_02.mp3 +sound/music/theverkkars_01/startround_01.mp3 +sound/music/theverkkars_01/startaction_02.mp3 +sound/music/theverkkars_01/startaction_01.mp3 +sound/music/theverkkars_01/roundtenseccount.mp3 +sound/music/theverkkars_01/roundmvpanthem_01.mp3 +sound/music/theverkkars_01/mainmenu.mp3 +sound/music/theverkkars_01/lostround.mp3 +sound/music/theverkkars_01/deathcam.mp3 +sound/music/theverkkars_01/chooseteam.mp3 +sound/music/theverkkars_01/bombtenseccount.mp3 +sound/music/theverkkars_01/bombplanted.mp3 sound/coop_radio/hydra/hydra_win_930.mp3 sound/coop_radio/hydra/hydra_win_922.mp3 sound/coop_radio/hydra/hydra_win_920.mp3 @@ -1306,6 +1339,13 @@ sound/music/austinwintory_01/deathcam.mp3 sound/music/austinwintory_01/chooseteam.mp3 sound/music/austinwintory_01/bombtenseccount.mp3 sound/music/austinwintory_01/bombplanted.mp3 +sound/physics/shield/bullet_hit_shield_07.wav +sound/physics/shield/bullet_hit_shield_06.wav +sound/physics/shield/bullet_hit_shield_05.wav +sound/physics/shield/bullet_hit_shield_04.wav +sound/physics/shield/bullet_hit_shield_03.wav +sound/physics/shield/bullet_hit_shield_02.wav +sound/physics/shield/bullet_hit_shield_01.wav sound/player/winter/snowball_throw_04.wav sound/player/winter/snowball_throw_03.wav sound/player/winter/snowball_throw_02.wav @@ -1376,6 +1416,9 @@ sound/survival/tablet_upgradesuccess_02.wav sound/survival/tablet_upgradestart_01.wav sound/survival/tablet_pickup_sdcard_01.wav sound/survival/tablet_draw_01.wav +sound/survival/shield_equip_05.wav +sound/survival/shield_equip_04.wav +sound/survival/sheild_push_01.wav sound/survival/select_drop_location.wav sound/survival/securitydoor_payment_start.wav sound/survival/securitydoor_payment_failed.wav @@ -1401,6 +1444,8 @@ sound/survival/missile_gas_01.wav sound/survival/missile_close_03.wav sound/survival/missile_close_02.wav sound/survival/missile_close_01.wav +sound/survival/jump_ability_long_01.wav +sound/survival/jump_ability_01.wav sound/survival/info_tips_01.wav sound/survival/gascanhit.wav sound/survival/dropzone_select_02.wav @@ -1430,6 +1475,11 @@ sound/survival/container_damage_02.wav sound/survival/container_damage_01.wav sound/survival/buy_item_failed_01.wav sound/survival/buy_item_01.wav +sound/survival/bumpmine_throw.wav +sound/survival/bumpmine_pickup.wav +sound/survival/bumpmine_launch_01.wav +sound/survival/bumpmine_land_01.wav +sound/survival/bumpmine_detonate.wav sound/survival/briefcase_unlocking_01.wav sound/survival/briefcase_open_success_01.wav sound/survival/breach_warning_beep_01.wav @@ -1441,6 +1491,7 @@ sound/survival/breach_defuse_01.wav sound/survival/breach_charge_pickup_01.wav sound/survival/breach_activate_nobombs_01.wav sound/survival/breach_activate_01.wav +sound/survival/bonus_award_01.wav sound/survival/barrel_fall_03.wav sound/survival/barrel_fall_02.wav sound/survival/barrel_fall_01.wav @@ -1451,12 +1502,10 @@ sound/survival/bag_damage_02.wav sound/survival/bag_damage_01.wav sound/survival/armor_pickup_02.wav sound/survival/armor_pickup_01.wav -sound/ambient/survival/tree_06.wav -sound/ambient/survival/tree_05.wav -sound/ambient/survival/tree_04.wav -sound/ambient/survival/tree_03.wav -sound/ambient/survival/tree_02.wav -sound/ambient/survival/tree_01.wav +sound/ambient/survival/t4.wav +sound/ambient/survival/t3.wav +sound/ambient/survival/t2.wav +sound/ambient/survival/t1.wav sound/ambient/survival/outside_forest_low_01.wav sound/ambient/survival/outside_forest_high_0l.wav sound/ambient/survival/outside_forest_high_01.wav @@ -1493,6 +1542,10 @@ sound/ambient/survival/house_stress_04.wav sound/ambient/survival/house_stress_03.wav sound/ambient/survival/house_stress_02.wav sound/ambient/survival/house_stress_01.wav +sound/ambient/survival/deep_info_04.wav +sound/ambient/survival/deep_info_03.wav +sound/ambient/survival/deep_info_02.wav +sound/ambient/survival/deep_info_01.wav sound/ambient/survival/cicadas_04.wav sound/ambient/survival/cicadas_03.wav sound/ambient/survival/cicadas_02.wav @@ -1507,6 +1560,12 @@ sound/ambient/survival/bridge_stress_03.wav sound/ambient/survival/bridge_stress_02.wav sound/ambient/survival/bridge_stress_01.wav sound/ambient/survival/beacon_01.wav +sound/ambient/survival/tree_06.wav +sound/ambient/survival/tree_05.wav +sound/ambient/survival/tree_04.wav +sound/ambient/survival/tree_03.wav +sound/ambient/survival/tree_02.wav +sound/ambient/survival/tree_01.wav sound/player/halloween/swish_02.wav sound/player/halloween/swish_01.wav sound/player/halloween/spray_04.wav @@ -2837,164 +2896,6 @@ sound/weapons/knife_push/knife_push_attack1_heavy_04.wav sound/weapons/knife_push/knife_push_attack1_heavy_03.wav sound/weapons/knife_push/knife_push_attack1_heavy_02.wav sound/weapons/knife_push/knife_push_attack1_heavy_01.wav -sound/player/footsteps/new/land_mud_01.wav -sound/player/footsteps/new/land_metal_vent_06.wav -sound/player/footsteps/new/land_metal_vent_05.wav -sound/player/footsteps/new/land_metal_vent_04.wav -sound/player/footsteps/new/land_metal_vent_03.wav -sound/player/footsteps/new/land_metal_vent_02.wav -sound/player/footsteps/new/land_metal_vent_01.wav -sound/player/footsteps/new/land_metal_solid_06.wav -sound/player/footsteps/new/land_metal_solid_05.wav -sound/player/footsteps/new/land_metal_solid_04.wav -sound/player/footsteps/new/land_metal_solid_03.wav -sound/player/footsteps/new/land_metal_solid_02.wav -sound/player/footsteps/new/land_metal_solid_01.wav -sound/player/footsteps/new/land_metal_grate_06.wav -sound/player/footsteps/new/land_metal_grate_05.wav -sound/player/footsteps/new/land_metal_grate_04.wav -sound/player/footsteps/new/land_metal_grate_03.wav -sound/player/footsteps/new/land_metal_grate_02.wav -sound/player/footsteps/new/land_metal_grate_01.wav -sound/player/footsteps/new/land_metal_barrel_04.wav -sound/player/footsteps/new/land_metal_barrel_03.wav -sound/player/footsteps/new/land_metal_barrel_02.wav -sound/player/footsteps/new/land_metal_barrel_01.wav -sound/player/footsteps/new/land_gravel_05.wav -sound/player/footsteps/new/land_gravel_04.wav -sound/player/footsteps/new/land_gravel_03.wav -sound/player/footsteps/new/land_gravel_02.wav -sound/player/footsteps/new/land_gravel_01.wav -sound/player/footsteps/new/land_grass_05.wav -sound/player/footsteps/new/land_grass_04.wav -sound/player/footsteps/new/land_grass_03.wav -sound/player/footsteps/new/land_grass_02.wav -sound/player/footsteps/new/land_grass_01.wav -sound/player/footsteps/new/land_glass_05.wav -sound/player/footsteps/new/land_glass_04.wav -sound/player/footsteps/new/land_glass_03.wav -sound/player/footsteps/new/land_glass_02.wav -sound/player/footsteps/new/land_glass_01.wav -sound/player/footsteps/new/land_dirt_05.wav -sound/player/footsteps/new/land_dirt_04.wav -sound/player/footsteps/new/land_dirt_03.wav -sound/player/footsteps/new/land_dirt_02.wav -sound/player/footsteps/new/land_dirt_01.wav -sound/player/footsteps/new/land_concrete_01.wav -sound/player/footsteps/new/land_carpet_05.wav -sound/player/footsteps/new/land_carpet_04.wav -sound/player/footsteps/new/land_carpet_03.wav -sound/player/footsteps/new/land_carpet_02.wav -sound/player/footsteps/new/land_carpet_01.wav -sound/player/footsteps/new/land_cardboard_03.wav -sound/player/footsteps/new/land_cardboard_02.wav -sound/player/footsteps/new/land_cardboard_01.wav -sound/player/footsteps/new/land_basket_03.wav -sound/player/footsteps/new/land_basket_02.wav -sound/player/footsteps/new/land_basket_01.wav -sound/player/footsteps/new/land_auto_05.wav -sound/player/footsteps/new/land_auto_04.wav -sound/player/footsteps/new/land_auto_03.wav -sound/player/footsteps/new/land_auto_02.wav -sound/player/footsteps/new/land_auto_01.wav -sound/player/footsteps/new/ladder_12.wav -sound/player/footsteps/new/ladder_11.wav -sound/player/footsteps/new/ladder_10.wav -sound/player/footsteps/new/ladder_09.wav -sound/player/footsteps/new/ladder_08.wav -sound/player/footsteps/new/ladder_07.wav -sound/player/footsteps/new/ladder_06.wav -sound/player/footsteps/new/ladder_05.wav -sound/player/footsteps/new/ladder_04.wav -sound/player/footsteps/new/ladder_03.wav -sound/player/footsteps/new/ladder_02.wav -sound/player/footsteps/new/ladder_01.wav -sound/player/footsteps/new/gravel_10.wav -sound/player/footsteps/new/gravel_09.wav -sound/player/footsteps/new/gravel_08.wav -sound/player/footsteps/new/gravel_07.wav -sound/player/footsteps/new/gravel_06.wav -sound/player/footsteps/new/gravel_05.wav -sound/player/footsteps/new/gravel_04.wav -sound/player/footsteps/new/gravel_03.wav -sound/player/footsteps/new/gravel_02.wav -sound/player/footsteps/new/gravel_01.wav -sound/player/footsteps/new/grass_13.wav -sound/player/footsteps/new/grass_12.wav -sound/player/footsteps/new/grass_11.wav -sound/player/footsteps/new/grass_10.wav -sound/player/footsteps/new/grass_09.wav -sound/player/footsteps/new/grass_08.wav -sound/player/footsteps/new/grass_07.wav -sound/player/footsteps/new/grass_06.wav -sound/player/footsteps/new/grass_05.wav -sound/player/footsteps/new/grass_04.wav -sound/player/footsteps/new/grass_03.wav -sound/player/footsteps/new/grass_02.wav -sound/player/footsteps/new/grass_01.wav -sound/player/footsteps/new/glass_13.wav -sound/player/footsteps/new/glass_12.wav -sound/player/footsteps/new/glass_11.wav -sound/player/footsteps/new/glass_10.wav -sound/player/footsteps/new/glass_09.wav -sound/player/footsteps/new/glass_08.wav -sound/player/footsteps/new/glass_07.wav -sound/player/footsteps/new/glass_01.wav -sound/player/footsteps/new/dirt_14.wav -sound/player/footsteps/new/dirt_13.wav -sound/player/footsteps/new/dirt_12.wav -sound/player/footsteps/new/dirt_11.wav -sound/player/footsteps/new/dirt_10.wav -sound/player/footsteps/new/dirt_09.wav -sound/player/footsteps/new/dirt_08.wav -sound/player/footsteps/new/dirt_07.wav -sound/player/footsteps/new/dirt_06.wav -sound/player/footsteps/new/dirt_05.wav -sound/player/footsteps/new/dirt_04.wav -sound/player/footsteps/new/dirt_03.wav -sound/player/footsteps/new/dirt_02.wav -sound/player/footsteps/new/dirt_01.wav -sound/player/footsteps/new/concrete_ct_17.wav -sound/player/footsteps/new/concrete_ct_16.wav -sound/player/footsteps/new/concrete_ct_15.wav -sound/player/footsteps/new/concrete_ct_14.wav -sound/player/footsteps/new/concrete_ct_13.wav -sound/player/footsteps/new/concrete_ct_12.wav -sound/player/footsteps/new/concrete_ct_11.wav -sound/player/footsteps/new/concrete_ct_10.wav -sound/player/footsteps/new/concrete_ct_09.wav -sound/player/footsteps/new/concrete_ct_08.wav -sound/player/footsteps/new/concrete_ct_07.wav -sound/player/footsteps/new/concrete_ct_06.wav -sound/player/footsteps/new/concrete_ct_05.wav -sound/player/footsteps/new/concrete_ct_04.wav -sound/player/footsteps/new/concrete_ct_03.wav -sound/player/footsteps/new/concrete_ct_02.wav -sound/player/footsteps/new/concrete_ct_01.wav -sound/player/footsteps/new/carpet_20.wav -sound/player/footsteps/new/carpet_19.wav -sound/player/footsteps/new/carpet_18.wav -sound/player/footsteps/new/carpet_17.wav -sound/player/footsteps/new/carpet_16.wav -sound/player/footsteps/new/carpet_15.wav -sound/player/footsteps/new/carpet_14.wav -sound/player/footsteps/new/carpet_11.wav -sound/player/footsteps/new/carpet_09.wav -sound/player/footsteps/new/carpet_08.wav -sound/player/footsteps/new/carpet_05.wav -sound/player/footsteps/new/carpet_04.wav -sound/player/footsteps/new/carpet_03.wav -sound/player/footsteps/new/carpet_01.wav -sound/player/footsteps/new/bass_10.wav -sound/player/footsteps/new/bass_09.wav -sound/player/footsteps/new/bass_08.wav -sound/player/footsteps/new/bass_07.wav -sound/player/footsteps/new/bass_06.wav -sound/player/footsteps/new/bass_05.wav -sound/player/footsteps/new/bass_04.wav -sound/player/footsteps/new/bass_03.wav -sound/player/footsteps/new/bass_02.wav -sound/player/footsteps/new/bass_01.wav sound/player/footsteps/new/wood_15.wav sound/player/footsteps/new/wood_14.wav sound/player/footsteps/new/wood_13.wav @@ -3159,6 +3060,164 @@ sound/player/footsteps/new/land_mud_05.wav sound/player/footsteps/new/land_mud_04.wav sound/player/footsteps/new/land_mud_03.wav sound/player/footsteps/new/land_mud_02.wav +sound/player/footsteps/new/land_mud_01.wav +sound/player/footsteps/new/land_metal_vent_06.wav +sound/player/footsteps/new/land_metal_vent_05.wav +sound/player/footsteps/new/land_metal_vent_04.wav +sound/player/footsteps/new/land_metal_vent_03.wav +sound/player/footsteps/new/land_metal_vent_02.wav +sound/player/footsteps/new/land_metal_vent_01.wav +sound/player/footsteps/new/land_metal_solid_06.wav +sound/player/footsteps/new/land_metal_solid_05.wav +sound/player/footsteps/new/land_metal_solid_04.wav +sound/player/footsteps/new/land_metal_solid_03.wav +sound/player/footsteps/new/land_metal_solid_02.wav +sound/player/footsteps/new/land_metal_solid_01.wav +sound/player/footsteps/new/land_metal_grate_06.wav +sound/player/footsteps/new/land_metal_grate_05.wav +sound/player/footsteps/new/land_metal_grate_04.wav +sound/player/footsteps/new/land_metal_grate_03.wav +sound/player/footsteps/new/land_metal_grate_02.wav +sound/player/footsteps/new/land_metal_grate_01.wav +sound/player/footsteps/new/land_metal_barrel_04.wav +sound/player/footsteps/new/land_metal_barrel_03.wav +sound/player/footsteps/new/land_metal_barrel_02.wav +sound/player/footsteps/new/land_metal_barrel_01.wav +sound/player/footsteps/new/land_gravel_05.wav +sound/player/footsteps/new/land_gravel_04.wav +sound/player/footsteps/new/land_gravel_03.wav +sound/player/footsteps/new/land_gravel_02.wav +sound/player/footsteps/new/land_gravel_01.wav +sound/player/footsteps/new/land_grass_05.wav +sound/player/footsteps/new/land_grass_04.wav +sound/player/footsteps/new/land_grass_03.wav +sound/player/footsteps/new/land_grass_02.wav +sound/player/footsteps/new/land_grass_01.wav +sound/player/footsteps/new/land_glass_05.wav +sound/player/footsteps/new/land_glass_04.wav +sound/player/footsteps/new/land_glass_03.wav +sound/player/footsteps/new/land_glass_02.wav +sound/player/footsteps/new/land_glass_01.wav +sound/player/footsteps/new/land_dirt_05.wav +sound/player/footsteps/new/land_dirt_04.wav +sound/player/footsteps/new/land_dirt_03.wav +sound/player/footsteps/new/land_dirt_02.wav +sound/player/footsteps/new/land_dirt_01.wav +sound/player/footsteps/new/land_concrete_01.wav +sound/player/footsteps/new/land_carpet_05.wav +sound/player/footsteps/new/land_carpet_04.wav +sound/player/footsteps/new/land_carpet_03.wav +sound/player/footsteps/new/land_carpet_02.wav +sound/player/footsteps/new/land_carpet_01.wav +sound/player/footsteps/new/land_cardboard_03.wav +sound/player/footsteps/new/land_cardboard_02.wav +sound/player/footsteps/new/land_cardboard_01.wav +sound/player/footsteps/new/land_basket_03.wav +sound/player/footsteps/new/land_basket_02.wav +sound/player/footsteps/new/land_basket_01.wav +sound/player/footsteps/new/land_auto_05.wav +sound/player/footsteps/new/land_auto_04.wav +sound/player/footsteps/new/land_auto_03.wav +sound/player/footsteps/new/land_auto_02.wav +sound/player/footsteps/new/land_auto_01.wav +sound/player/footsteps/new/ladder_12.wav +sound/player/footsteps/new/ladder_11.wav +sound/player/footsteps/new/ladder_10.wav +sound/player/footsteps/new/ladder_09.wav +sound/player/footsteps/new/ladder_08.wav +sound/player/footsteps/new/ladder_07.wav +sound/player/footsteps/new/ladder_06.wav +sound/player/footsteps/new/ladder_05.wav +sound/player/footsteps/new/ladder_04.wav +sound/player/footsteps/new/ladder_03.wav +sound/player/footsteps/new/ladder_02.wav +sound/player/footsteps/new/ladder_01.wav +sound/player/footsteps/new/gravel_10.wav +sound/player/footsteps/new/gravel_09.wav +sound/player/footsteps/new/gravel_08.wav +sound/player/footsteps/new/gravel_07.wav +sound/player/footsteps/new/gravel_06.wav +sound/player/footsteps/new/gravel_05.wav +sound/player/footsteps/new/gravel_04.wav +sound/player/footsteps/new/gravel_03.wav +sound/player/footsteps/new/gravel_02.wav +sound/player/footsteps/new/gravel_01.wav +sound/player/footsteps/new/grass_13.wav +sound/player/footsteps/new/grass_12.wav +sound/player/footsteps/new/grass_11.wav +sound/player/footsteps/new/grass_10.wav +sound/player/footsteps/new/grass_09.wav +sound/player/footsteps/new/grass_08.wav +sound/player/footsteps/new/grass_07.wav +sound/player/footsteps/new/grass_06.wav +sound/player/footsteps/new/grass_05.wav +sound/player/footsteps/new/grass_04.wav +sound/player/footsteps/new/grass_03.wav +sound/player/footsteps/new/grass_02.wav +sound/player/footsteps/new/grass_01.wav +sound/player/footsteps/new/glass_13.wav +sound/player/footsteps/new/glass_12.wav +sound/player/footsteps/new/glass_11.wav +sound/player/footsteps/new/glass_10.wav +sound/player/footsteps/new/glass_09.wav +sound/player/footsteps/new/glass_08.wav +sound/player/footsteps/new/glass_07.wav +sound/player/footsteps/new/glass_01.wav +sound/player/footsteps/new/dirt_14.wav +sound/player/footsteps/new/dirt_13.wav +sound/player/footsteps/new/dirt_12.wav +sound/player/footsteps/new/dirt_11.wav +sound/player/footsteps/new/dirt_10.wav +sound/player/footsteps/new/dirt_09.wav +sound/player/footsteps/new/dirt_08.wav +sound/player/footsteps/new/dirt_07.wav +sound/player/footsteps/new/dirt_06.wav +sound/player/footsteps/new/dirt_05.wav +sound/player/footsteps/new/dirt_04.wav +sound/player/footsteps/new/dirt_03.wav +sound/player/footsteps/new/dirt_02.wav +sound/player/footsteps/new/dirt_01.wav +sound/player/footsteps/new/concrete_ct_17.wav +sound/player/footsteps/new/concrete_ct_16.wav +sound/player/footsteps/new/concrete_ct_15.wav +sound/player/footsteps/new/concrete_ct_14.wav +sound/player/footsteps/new/concrete_ct_13.wav +sound/player/footsteps/new/concrete_ct_12.wav +sound/player/footsteps/new/concrete_ct_11.wav +sound/player/footsteps/new/concrete_ct_10.wav +sound/player/footsteps/new/concrete_ct_09.wav +sound/player/footsteps/new/concrete_ct_08.wav +sound/player/footsteps/new/concrete_ct_07.wav +sound/player/footsteps/new/concrete_ct_06.wav +sound/player/footsteps/new/concrete_ct_05.wav +sound/player/footsteps/new/concrete_ct_04.wav +sound/player/footsteps/new/concrete_ct_03.wav +sound/player/footsteps/new/concrete_ct_02.wav +sound/player/footsteps/new/concrete_ct_01.wav +sound/player/footsteps/new/carpet_20.wav +sound/player/footsteps/new/carpet_19.wav +sound/player/footsteps/new/carpet_18.wav +sound/player/footsteps/new/carpet_17.wav +sound/player/footsteps/new/carpet_16.wav +sound/player/footsteps/new/carpet_15.wav +sound/player/footsteps/new/carpet_14.wav +sound/player/footsteps/new/carpet_11.wav +sound/player/footsteps/new/carpet_09.wav +sound/player/footsteps/new/carpet_08.wav +sound/player/footsteps/new/carpet_05.wav +sound/player/footsteps/new/carpet_04.wav +sound/player/footsteps/new/carpet_03.wav +sound/player/footsteps/new/carpet_01.wav +sound/player/footsteps/new/bass_10.wav +sound/player/footsteps/new/bass_09.wav +sound/player/footsteps/new/bass_08.wav +sound/player/footsteps/new/bass_07.wav +sound/player/footsteps/new/bass_06.wav +sound/player/footsteps/new/bass_05.wav +sound/player/footsteps/new/bass_04.wav +sound/player/footsteps/new/bass_03.wav +sound/player/footsteps/new/bass_02.wav +sound/player/footsteps/new/bass_01.wav sound/animation/jets/jet_sonicboom_03.wav sound/animation/jets/jet_sonicboom_02.wav sound/animation/jets/jet_sonicboom_01.wav @@ -8995,6 +9054,50 @@ sound/player/vo/anarchist/affirmative03.wav sound/player/vo/anarchist/affirmative02.wav sound/player/vo/anarchist/affirmative01.wav sound/player/general/flesh_burn.wav +sound/player/footsteps/woodpanel6.wav +sound/player/footsteps/woodpanel5.wav +sound/player/footsteps/woodpanel4.wav +sound/player/footsteps/woodpanel3.wav +sound/player/footsteps/woodpanel2.wav +sound/player/footsteps/woodpanel1.wav +sound/player/footsteps/wood6.wav +sound/player/footsteps/wood5.wav +sound/player/footsteps/wood4.wav +sound/player/footsteps/wood3.wav +sound/player/footsteps/wood2.wav +sound/player/footsteps/wood1.wav +sound/player/footsteps/wade8.wav +sound/player/footsteps/wade7.wav +sound/player/footsteps/wade6.wav +sound/player/footsteps/wade5.wav +sound/player/footsteps/wade4.wav +sound/player/footsteps/wade3.wav +sound/player/footsteps/wade2.wav +sound/player/footsteps/wade1.wav +sound/player/footsteps/tile6.wav +sound/player/footsteps/tile5.wav +sound/player/footsteps/tile4.wav +sound/player/footsteps/tile3.wav +sound/player/footsteps/tile2.wav +sound/player/footsteps/tile1.wav +sound/player/footsteps/snow6.wav +sound/player/footsteps/snow5.wav +sound/player/footsteps/snow4.wav +sound/player/footsteps/snow3.wav +sound/player/footsteps/snow2.wav +sound/player/footsteps/snow1.wav +sound/player/footsteps/slosh6.wav +sound/player/footsteps/slosh5.wav +sound/player/footsteps/slosh4.wav +sound/player/footsteps/slosh3.wav +sound/player/footsteps/slosh2.wav +sound/player/footsteps/slosh1.wav +sound/player/footsteps/sand6.wav +sound/player/footsteps/sand5.wav +sound/player/footsteps/sand4.wav +sound/player/footsteps/sand3.wav +sound/player/footsteps/sand2.wav +sound/player/footsteps/sand1.wav sound/player/footsteps/mud6.wav sound/player/footsteps/mud5.wav sound/player/footsteps/mud4.wav @@ -9062,64 +9165,9 @@ sound/player/footsteps/chainlink4.wav sound/player/footsteps/chainlink3.wav sound/player/footsteps/chainlink2.wav sound/player/footsteps/chainlink1.wav -sound/player/footsteps/woodpanel6.wav -sound/player/footsteps/woodpanel5.wav -sound/player/footsteps/woodpanel4.wav -sound/player/footsteps/woodpanel3.wav -sound/player/footsteps/woodpanel2.wav -sound/player/footsteps/woodpanel1.wav -sound/player/footsteps/wood6.wav -sound/player/footsteps/wood5.wav -sound/player/footsteps/wood4.wav -sound/player/footsteps/wood3.wav -sound/player/footsteps/wood2.wav -sound/player/footsteps/wood1.wav -sound/player/footsteps/wade8.wav -sound/player/footsteps/wade7.wav -sound/player/footsteps/wade6.wav -sound/player/footsteps/wade5.wav -sound/player/footsteps/wade4.wav -sound/player/footsteps/wade3.wav -sound/player/footsteps/wade2.wav -sound/player/footsteps/wade1.wav -sound/player/footsteps/tile6.wav -sound/player/footsteps/tile5.wav -sound/player/footsteps/tile4.wav -sound/player/footsteps/tile3.wav -sound/player/footsteps/tile2.wav -sound/player/footsteps/tile1.wav -sound/player/footsteps/snow6.wav -sound/player/footsteps/snow5.wav -sound/player/footsteps/snow4.wav -sound/player/footsteps/snow3.wav -sound/player/footsteps/snow2.wav -sound/player/footsteps/snow1.wav -sound/player/footsteps/slosh6.wav -sound/player/footsteps/slosh5.wav -sound/player/footsteps/slosh4.wav -sound/player/footsteps/slosh3.wav -sound/player/footsteps/slosh2.wav -sound/player/footsteps/slosh1.wav -sound/player/footsteps/sand6.wav -sound/player/footsteps/sand5.wav -sound/player/footsteps/sand4.wav -sound/player/footsteps/sand3.wav -sound/player/footsteps/sand2.wav -sound/player/footsteps/sand1.wav -sound/player/death6.wav -sound/player/death5.wav -sound/player/death4.wav -sound/player/death3.wav -sound/player/death2.wav -sound/player/death1.wav -sound/player/damage3.wav -sound/player/damage2.wav -sound/player/damage1.wav -sound/player/breathe1.wav -sound/player/bhit_helmet-1.wav -sound/player/ammo_pack_use.wav sound/player/suit_sprint.wav sound/player/suit_denydevice.wav +sound/player/playerping.wav sound/player/pl_wade2.wav sound/player/pl_wade1.wav sound/player/pl_shell3.wav @@ -9160,6 +9208,18 @@ sound/player/headshot1.wav sound/player/geiger3.wav sound/player/geiger2.wav sound/player/geiger1.wav +sound/player/death6.wav +sound/player/death5.wav +sound/player/death4.wav +sound/player/death3.wav +sound/player/death2.wav +sound/player/death1.wav +sound/player/damage3.wav +sound/player/damage2.wav +sound/player/damage1.wav +sound/player/breathe1.wav +sound/player/bhit_helmet-1.wav +sound/player/ammo_pack_use.wav sound/physics/wood/wood_strain8.wav sound/physics/wood/wood_strain7.wav sound/physics/wood/wood_strain6.wav @@ -9265,6 +9325,12 @@ sound/physics/rubber/rubber_tire_impact_hard1.wav sound/physics/rubber/rubber_tire_impact_bullet3.wav sound/physics/rubber/rubber_tire_impact_bullet2.wav sound/physics/rubber/rubber_tire_impact_bullet1.wav +sound/physics/rubber/ball_impact_a_06.wav +sound/physics/rubber/ball_impact_a_05.wav +sound/physics/rubber/ball_impact_a_04.wav +sound/physics/rubber/ball_impact_a_03.wav +sound/physics/rubber/ball_impact_a_02.wav +sound/physics/rubber/ball_impact_a_01.wav sound/physics/plastic/plastic_box_strain3.wav sound/physics/plastic/plastic_box_strain2.wav sound/physics/plastic/plastic_box_strain1.wav @@ -9680,11 +9746,11 @@ sound/physics/body/body_impact_fists_04.wav sound/physics/body/body_impact_fists_03.wav sound/physics/body/body_impact_fists_02.wav sound/physics/body/body_impact_fists_01.wav +sound/music/cs_stinger.wav sound/music/survival_review_victory.wav sound/music/revenge.wav sound/music/point_captured_t.wav sound/music/point_captured_ct.wav -sound/music/cs_stinger.wav sound/music/nemesis.wav sound/music/kill_bonus.wav sound/music/kill_03.wav @@ -9719,6 +9785,7 @@ sound/items/healthshot_thud_01.wav sound/items/healthshot_success_01.wav sound/items/healthshot_prepare_01.wav sound/items/flashlight1.wav +sound/items/exosuit_long_jump.wav sound/items/equip_nvg.wav sound/items/defuser_equip.wav sound/items/battery_pickup.wav @@ -10531,14 +10598,14 @@ sound/ambient/energy/spark6.wav sound/ambient/energy/spark5.wav sound/ambient/energy/force_field_loop1.wav sound/ambient/energy/electric_loop.wav +sound/ambient/flamenco.wav +sound/ambient/fallscream.wav +sound/ambient/opera.wav sound/ambient/waterrun.wav sound/ambient/water_splash3.wav sound/ambient/water_splash2.wav sound/ambient/water_splash1.wav sound/ambient/tankidle2.wav -sound/ambient/opera.wav -sound/ambient/flamenco.wav -sound/ambient/fallscream.wav sound/ambient/de_train_trainloop.wav sound/ambient/de_train_radio.wav sound/ambient/de_overpass_trainbell.wav @@ -10791,6 +10858,42 @@ sound/ambient/animal/birds_1shot_05.wav sound/ambient/animal/birds_1shot_04.wav sound/ambient/animal/birds_1shot_03.wav sound/ambient/animal/birds_1shot_02.wav +resource/flash/econ/stickers/feral_predators/toxic_glossy_large.png +resource/flash/econ/stickers/feral_predators/toxic_glossy.png +resource/flash/econ/stickers/feral_predators/toxic_foil_large.png +resource/flash/econ/stickers/feral_predators/toxic_foil.png +resource/flash/econ/stickers/feral_predators/scavenger_holo_large.png +resource/flash/econ/stickers/feral_predators/scavenger_holo.png +resource/flash/econ/stickers/feral_predators/scavenger_glossy_large.png +resource/flash/econ/stickers/feral_predators/scavenger_glossy.png +resource/flash/econ/stickers/feral_predators/one_sting_holo_large.png +resource/flash/econ/stickers/feral_predators/one_sting_holo.png +resource/flash/econ/stickers/feral_predators/one_sting_glossy_large.png +resource/flash/econ/stickers/feral_predators/one_sting_glossy.png +resource/flash/econ/stickers/feral_predators/lurker_glossy_large.png +resource/flash/econ/stickers/feral_predators/lurker_glossy.png +resource/flash/econ/stickers/feral_predators/lurker_foil_large.png +resource/flash/econ/stickers/feral_predators/lurker_foil.png +resource/flash/econ/stickers/feral_predators/free_hugs_holo_large.png +resource/flash/econ/stickers/feral_predators/free_hugs_holo.png +resource/flash/econ/stickers/feral_predators/free_hugs_glossy_large.png +resource/flash/econ/stickers/feral_predators/free_hugs_glossy.png +resource/flash/econ/stickers/feral_predators/first_blood_holo_large.png +resource/flash/econ/stickers/feral_predators/first_blood_holo.png +resource/flash/econ/stickers/feral_predators/first_blood_glossy_large.png +resource/flash/econ/stickers/feral_predators/first_blood_glossy.png +resource/flash/econ/stickers/feral_predators/cluck_holo_large.png +resource/flash/econ/stickers/feral_predators/cluck_holo.png +resource/flash/econ/stickers/feral_predators/cluck_glossy_large.png +resource/flash/econ/stickers/feral_predators/cluck_glossy.png +resource/flash/econ/stickers/feral_predators/bite_me_glossy_large.png +resource/flash/econ/stickers/feral_predators/bite_me_glossy.png +resource/flash/econ/stickers/feral_predators/bite_me_foil_large.png +resource/flash/econ/stickers/feral_predators/bite_me_foil.png +resource/flash/econ/stickers/feral_predators/baited_holo_large.png +resource/flash/econ/stickers/feral_predators/baited_holo.png +resource/flash/econ/stickers/feral_predators/baited_glossy_large.png +resource/flash/econ/stickers/feral_predators/baited_glossy.png resource/flash/econ/stickers/katowice2019/wins_large.png resource/flash/econ/stickers/katowice2019/wins_holo_large.png resource/flash/econ/stickers/katowice2019/wins_holo.png @@ -11772,6 +11875,7 @@ materials/panorama/images/survival/teammate/teammate.png materials/panorama/images/survival/spawnselect/tablet-hex-selected.png materials/panorama/images/survival/spawnselect/tablet-hex.png materials/panorama/images/survival/spawnselect/stripe_bg.png +materials/panorama/images/survival/spawnselect/map_dz_sirocco.png materials/panorama/images/survival/spawnselect/map_dz_blacksite.png materials/panorama/images/survival/spawnselect/map_blank.png materials/panorama/images/survival/spawnselect/hex-unselected.png @@ -11782,22 +11886,11 @@ materials/panorama/images/survival/spawnselect/hex-hover.png materials/panorama/images/survival/endofmatch/hex.png materials/panorama/images/survival/compass/rescue.png materials/panorama/images/survival/buymenu/survival_buymenu_zone.png -materials/panorama/images/survival/buymenu/survival_buymenu_weapon.png -materials/panorama/images/survival/buymenu/survival_buymenu_utility.png -materials/panorama/images/survival/buymenu/survival_buymenu_sniper.png -materials/panorama/images/survival/buymenu/survival_buymenu_rifle.png -materials/panorama/images/survival/buymenu/survival_buymenu_pistol.png -materials/panorama/images/survival/buymenu/survival_buymenu_medical.png -materials/panorama/images/survival/buymenu/survival_buymenu_largeammo.png -materials/panorama/images/survival/buymenu/survival_buymenu_knife.png -materials/panorama/images/survival/buymenu/survival_buymenu_jammer.png +materials/panorama/images/survival/buymenu/survival_buymenu_pilot.png materials/panorama/images/survival/buymenu/survival_buymenu_hires.png -materials/panorama/images/survival/buymenu/survival_buymenu_heavyarmor.png materials/panorama/images/survival/buymenu/survival_buymenu_drone.png materials/panorama/images/survival/buymenu/survival_buymenu_bg.png -materials/panorama/images/survival/buymenu/survival_buymenu_awp.png -materials/panorama/images/survival/buymenu/survival_buymenu_armorhelmet.png -materials/panorama/images/survival/buymenu/survival_buymenu_ammo.png +maps/dz_sirocco_spawnmask.png maps/dz_blacksite_spawnmask.png resource/flash/econ/stickers/skillgroup_capsule/smfc_large.png resource/flash/econ/stickers/skillgroup_capsule/smfc_holo_large.png @@ -12838,7 +12931,10 @@ materials/panorama/images/test_images/9_15_2017_welcome2.png materials/panorama/images/overheadmaps/default.png materials/panorama/images/masks/top-bottom-fade.png materials/panorama/images/masks/survival-eom.png +materials/panorama/images/masks/ring-blur.png +materials/panorama/images/masks/ring.png materials/panorama/images/masks/hex.png +materials/panorama/images/masks/circle.png materials/panorama/images/masks/case-opening-outer.png materials/panorama/images/masks/case-opening.png materials/panorama/images/masks/bottom-top-fade.png @@ -13258,6 +13354,7 @@ materials/panorama/images/backgrounds/background.png materials/panorama/images/map_icons/screenshots/360p/training.png materials/panorama/images/map_icons/screenshots/360p/random.png materials/panorama/images/map_icons/screenshots/360p/gd_rialto.png +materials/panorama/images/map_icons/screenshots/360p/dz_sirocco.png materials/panorama/images/map_icons/screenshots/360p/dz_blacksite.png materials/panorama/images/map_icons/screenshots/360p/de_zoo.png materials/panorama/images/map_icons/screenshots/360p/de_vertigo.png @@ -13273,6 +13370,7 @@ materials/panorama/images/map_icons/screenshots/360p/de_shipped.png materials/panorama/images/map_icons/screenshots/360p/de_season.png materials/panorama/images/map_icons/screenshots/360p/de_santorini.png materials/panorama/images/map_icons/screenshots/360p/de_safehouse.png +materials/panorama/images/map_icons/screenshots/360p/de_ruby.png materials/panorama/images/map_icons/screenshots/360p/de_royal.png materials/panorama/images/map_icons/screenshots/360p/de_overpass.png materials/panorama/images/map_icons/screenshots/360p/de_overgrown.png @@ -13320,9 +13418,20 @@ materials/panorama/images/map_icons/screenshots/360p/ar_shoots.png materials/panorama/images/map_icons/screenshots/360p/ar_monastery.png materials/panorama/images/map_icons/screenshots/360p/ar_dizzy.png materials/panorama/images/map_icons/screenshots/360p/ar_baggage.png +materials/panorama/images/map_icons/screenshots/1080p/cs_italy.png +materials/panorama/images/map_icons/screenshots/1080p/cs_insertion.png +materials/panorama/images/map_icons/screenshots/1080p/cs_downtown.png +materials/panorama/images/map_icons/screenshots/1080p/cs_cruise.png +materials/panorama/images/map_icons/screenshots/1080p/cs_assault.png +materials/panorama/images/map_icons/screenshots/1080p/cs_agency.png +materials/panorama/images/map_icons/screenshots/1080p/ar_shoots.png +materials/panorama/images/map_icons/screenshots/1080p/ar_monastery.png +materials/panorama/images/map_icons/screenshots/1080p/ar_dizzy.png +materials/panorama/images/map_icons/screenshots/1080p/ar_baggage.png materials/panorama/images/map_icons/screenshots/1080p/training.png materials/panorama/images/map_icons/screenshots/1080p/random.png materials/panorama/images/map_icons/screenshots/1080p/gd_rialto.png +materials/panorama/images/map_icons/screenshots/1080p/dz_sirocco.png materials/panorama/images/map_icons/screenshots/1080p/dz_blacksite.png materials/panorama/images/map_icons/screenshots/1080p/default.png materials/panorama/images/map_icons/screenshots/1080p/de_zoo.png @@ -13334,20 +13443,12 @@ materials/panorama/images/map_icons/screenshots/1080p/de_sugarcane.png materials/panorama/images/map_icons/screenshots/1080p/de_subzero.png materials/panorama/images/map_icons/screenshots/1080p/de_stmarc.png materials/panorama/images/map_icons/screenshots/1080p/de_shortnuke.png -materials/panorama/images/map_icons/screenshots/1080p/cs_insertion.png -materials/panorama/images/map_icons/screenshots/1080p/cs_downtown.png -materials/panorama/images/map_icons/screenshots/1080p/cs_cruise.png -materials/panorama/images/map_icons/screenshots/1080p/cs_assault.png -materials/panorama/images/map_icons/screenshots/1080p/cs_agency.png -materials/panorama/images/map_icons/screenshots/1080p/ar_shoots.png -materials/panorama/images/map_icons/screenshots/1080p/ar_monastery.png -materials/panorama/images/map_icons/screenshots/1080p/ar_dizzy.png -materials/panorama/images/map_icons/screenshots/1080p/ar_baggage.png materials/panorama/images/map_icons/screenshots/1080p/de_shortdust.png materials/panorama/images/map_icons/screenshots/1080p/de_shipped.png materials/panorama/images/map_icons/screenshots/1080p/de_season.png materials/panorama/images/map_icons/screenshots/1080p/de_santorini.png materials/panorama/images/map_icons/screenshots/1080p/de_safehouse.png +materials/panorama/images/map_icons/screenshots/1080p/de_ruby.png materials/panorama/images/map_icons/screenshots/1080p/de_royal.png materials/panorama/images/map_icons/screenshots/1080p/de_overpass.png materials/panorama/images/map_icons/screenshots/1080p/de_overgrown.png @@ -13385,7 +13486,6 @@ materials/panorama/images/map_icons/screenshots/1080p/cs_office.png materials/panorama/images/map_icons/screenshots/1080p/cs_museum.png materials/panorama/images/map_icons/screenshots/1080p/cs_motel.png materials/panorama/images/map_icons/screenshots/1080p/cs_militia.png -materials/panorama/images/map_icons/screenshots/1080p/cs_italy.png resource/flash/econ/stickers/comm2018_01/small_arms_large.png resource/flash/econ/stickers/comm2018_01/small_arms_holo_large.png resource/flash/econ/stickers/comm2018_01/small_arms_holo.png @@ -17270,40 +17370,6 @@ resource/flash/econ/stickers/columbus2016/astr_gold.png resource/flash/econ/stickers/columbus2016/astr_foil_large.png resource/flash/econ/stickers/columbus2016/astr_foil.png resource/flash/econ/stickers/columbus2016/astr.png -resource/flash/images/journal/campaign/comic/8_1_14.png -resource/flash/images/journal/campaign/comic/8_1_13.png -resource/flash/images/journal/campaign/comic/8_1_12.png -resource/flash/images/journal/campaign/comic/8_1_11.png -resource/flash/images/journal/campaign/comic/8_1_10.png -resource/flash/images/journal/campaign/comic/8_1_1.png -resource/flash/images/journal/campaign/comic/8_1_0.png -resource/flash/images/journal/campaign/comic/8_0_9.png -resource/flash/images/journal/campaign/comic/8_0_8.png -resource/flash/images/journal/campaign/comic/8_0_7.png -resource/flash/images/journal/campaign/comic/8_0_6.png -resource/flash/images/journal/campaign/comic/8_0_5.png -resource/flash/images/journal/campaign/comic/8_0_4.png -resource/flash/images/journal/campaign/comic/8_0_3.png -resource/flash/images/journal/campaign/comic/8_0_26.png -resource/flash/images/journal/campaign/comic/8_0_25.png -resource/flash/images/journal/campaign/comic/8_0_24.png -resource/flash/images/journal/campaign/comic/8_0_23.png -resource/flash/images/journal/campaign/comic/8_0_22.png -resource/flash/images/journal/campaign/comic/8_0_21.png -resource/flash/images/journal/campaign/comic/8_0_20.png -resource/flash/images/journal/campaign/comic/8_0_2.png -resource/flash/images/journal/campaign/comic/8_0_19.png -resource/flash/images/journal/campaign/comic/8_0_18.png -resource/flash/images/journal/campaign/comic/8_0_17.png -resource/flash/images/journal/campaign/comic/8_0_16.png -resource/flash/images/journal/campaign/comic/8_0_15.png -resource/flash/images/journal/campaign/comic/8_0_14.png -resource/flash/images/journal/campaign/comic/8_0_13.png -resource/flash/images/journal/campaign/comic/8_0_12.png -resource/flash/images/journal/campaign/comic/8_0_11.png -resource/flash/images/journal/campaign/comic/8_0_10.png -resource/flash/images/journal/campaign/comic/8_0_1.png -resource/flash/images/journal/campaign/comic/8_0_0.png resource/flash/images/journal/campaign/comic/icon_8_4.png resource/flash/images/journal/campaign/comic/icon_8_3.png resource/flash/images/journal/campaign/comic/icon_8_2.png @@ -17384,6 +17450,40 @@ resource/flash/images/journal/campaign/comic/8_1_18.png resource/flash/images/journal/campaign/comic/8_1_17.png resource/flash/images/journal/campaign/comic/8_1_16.png resource/flash/images/journal/campaign/comic/8_1_15.png +resource/flash/images/journal/campaign/comic/8_1_14.png +resource/flash/images/journal/campaign/comic/8_1_13.png +resource/flash/images/journal/campaign/comic/8_1_12.png +resource/flash/images/journal/campaign/comic/8_1_11.png +resource/flash/images/journal/campaign/comic/8_1_10.png +resource/flash/images/journal/campaign/comic/8_1_1.png +resource/flash/images/journal/campaign/comic/8_1_0.png +resource/flash/images/journal/campaign/comic/8_0_9.png +resource/flash/images/journal/campaign/comic/8_0_8.png +resource/flash/images/journal/campaign/comic/8_0_7.png +resource/flash/images/journal/campaign/comic/8_0_6.png +resource/flash/images/journal/campaign/comic/8_0_5.png +resource/flash/images/journal/campaign/comic/8_0_4.png +resource/flash/images/journal/campaign/comic/8_0_3.png +resource/flash/images/journal/campaign/comic/8_0_26.png +resource/flash/images/journal/campaign/comic/8_0_25.png +resource/flash/images/journal/campaign/comic/8_0_24.png +resource/flash/images/journal/campaign/comic/8_0_23.png +resource/flash/images/journal/campaign/comic/8_0_22.png +resource/flash/images/journal/campaign/comic/8_0_21.png +resource/flash/images/journal/campaign/comic/8_0_20.png +resource/flash/images/journal/campaign/comic/8_0_2.png +resource/flash/images/journal/campaign/comic/8_0_19.png +resource/flash/images/journal/campaign/comic/8_0_18.png +resource/flash/images/journal/campaign/comic/8_0_17.png +resource/flash/images/journal/campaign/comic/8_0_16.png +resource/flash/images/journal/campaign/comic/8_0_15.png +resource/flash/images/journal/campaign/comic/8_0_14.png +resource/flash/images/journal/campaign/comic/8_0_13.png +resource/flash/images/journal/campaign/comic/8_0_12.png +resource/flash/images/journal/campaign/comic/8_0_11.png +resource/flash/images/journal/campaign/comic/8_0_10.png +resource/flash/images/journal/campaign/comic/8_0_1.png +resource/flash/images/journal/campaign/comic/8_0_0.png resource/flash/images/ui_images/revolver.png resource/flash/images/ui_images/op7_two_vs.png resource/flash/images/ui_images/op7_skirmish.png @@ -19176,12 +19276,12 @@ resource/flash/images/journal/campaign/difficulty_2_strike.png resource/flash/images/journal/campaign/difficulty_2.png resource/flash/images/journal/campaign/difficulty_1_strike.png resource/flash/images/journal/campaign/difficulty_1.png -resource/flash/images/journal/badge-active.png resource/flash/images/journal/op_pic_7.png resource/flash/images/journal/op_pic_6.png resource/flash/images/journal/op_pic_5.png resource/flash/images/journal/op_pic_4.png resource/flash/images/journal/op_pic_3.png +resource/flash/images/journal/badge-active.png resource/flash/freezecam/holiday_border_4.png resource/flash/freezecam/holiday_border_3.png resource/flash/freezecam/holiday_border_2.png @@ -19197,6 +19297,7 @@ resource/flash/econ/weapons/base_weapons/weapon_ssg08.png resource/flash/econ/weapons/base_weapons/weapon_spanner.png resource/flash/econ/weapons/base_weapons/weapon_snowball.png resource/flash/econ/weapons/base_weapons/weapon_smokegrenade.png +resource/flash/econ/weapons/base_weapons/weapon_shield.png resource/flash/econ/weapons/base_weapons/weapon_sg556.png resource/flash/econ/weapons/base_weapons/weapon_scar20.png resource/flash/econ/weapons/base_weapons/weapon_sawedoff.png @@ -19247,6 +19348,7 @@ resource/flash/econ/weapons/base_weapons/weapon_decoy.png resource/flash/econ/weapons/base_weapons/weapon_deagle.png resource/flash/econ/weapons/base_weapons/weapon_cz75a.png resource/flash/econ/weapons/base_weapons/weapon_c4.png +resource/flash/econ/weapons/base_weapons/weapon_bumpmine.png resource/flash/econ/weapons/base_weapons/weapon_breachcharge.png resource/flash/econ/weapons/base_weapons/weapon_bizon.png resource/flash/econ/weapons/base_weapons/weapon_bayonet.png @@ -19336,6 +19438,8 @@ resource/flash/econ/weapon_cases/crate_sticker_pack_illuminate_capsule_02_small. resource/flash/econ/weapon_cases/crate_sticker_pack_illuminate_capsule_02.png resource/flash/econ/weapon_cases/crate_sticker_pack_illuminate_capsule_01_small.png resource/flash/econ/weapon_cases/crate_sticker_pack_illuminate_capsule_01.png +resource/flash/econ/weapon_cases/crate_sticker_pack_feral_predators_capsule_small.png +resource/flash/econ/weapon_cases/crate_sticker_pack_feral_predators_capsule.png resource/flash/econ/weapon_cases/crate_sticker_pack_eslkatowice2015_02_small.png resource/flash/econ/weapon_cases/crate_sticker_pack_eslkatowice2015_02.png resource/flash/econ/weapon_cases/crate_sticker_pack_eslkatowice2015_01_small.png @@ -20787,6 +20891,9 @@ resource/flash/econ/status_icons/maptoken_rush.png resource/flash/econ/status_icons/maptoken_ruins_small.png resource/flash/econ/status_icons/maptoken_ruins_large.png resource/flash/econ/status_icons/maptoken_ruins.png +resource/flash/econ/status_icons/maptoken_ruby_small.png +resource/flash/econ/status_icons/maptoken_ruby_large.png +resource/flash/econ/status_icons/maptoken_ruby.png resource/flash/econ/status_icons/maptoken_royal_small.png resource/flash/econ/status_icons/maptoken_royal_large.png resource/flash/econ/status_icons/maptoken_royal.png @@ -21359,6 +21466,7 @@ resource/flash/econ/music_kits/valve_01.png resource/flash/econ/music_kits/twinatlantic_01.png resource/flash/econ/music_kits/troelsfolmann_01_store.png resource/flash/econ/music_kits/troelsfolmann_01.png +resource/flash/econ/music_kits/theverkkars_01.png resource/flash/econ/music_kits/skog_03.png resource/flash/econ/music_kits/skog_02_store.png resource/flash/econ/music_kits/skog_02.png @@ -21752,22 +21860,21 @@ resource/ui/appchooser.res resource/ui/achievementsdialog.res resource/ui/achievementnotification.res resource/ui/achievementitem.res -resource/clientscheme.res -resource/bxmovierecord.res -resource/buguipanel.res -resource/boxrocket.res -resource/workshoppreviewdialog.res -resource/modevents.res resource/trackerscheme.res resource/sourcescheme.res resource/publishweaponfinishdialog.res resource/publishstickerdialog.res resource/publishmodeldialog.res resource/publishmapdialog.res +resource/modevents.res resource/matchsystem.res resource/gamemenu.360.res resource/foguipanel.res -resource/tablet_text_panel.res +resource/clientscheme.res +resource/bxmovierecord.res +resource/buguipanel.res +resource/boxrocket.res +resource/workshoppreviewdialog.res resource/serverevents.res resource/gameevents.res resource/publishmusickitdialog.res @@ -21976,25 +22083,36 @@ models/destruction_tanker/destruction_tanker_debris_4.ani models/destruction_tanker/destruction_tanker_debris_3.ani models/destruction_tanker/destruction_tanker_debris_2.ani models/destruction_tanker/destruction_tanker_debris_1.ani +models/weapons/v_ct_knife_anim.ani +models/weapons/v_healthshot.ani +models/weapons/v_hammer.ani +models/weapons/v_fists.ani +models/weapons/w_eq_taser.ani +models/weapons/v_eq_taser.ani +models/weapons/v_eq_snowball.ani +models/weapons/w_eq_smokegrenade.ani +models/weapons/v_eq_smokegrenade.ani +models/weapons/w_eq_molotov.ani +models/weapons/v_eq_molotov.ani +models/weapons/w_eq_incendiarygrenade.ani +models/weapons/v_eq_incendiarygrenade.ani +models/weapons/w_eq_fraggrenade.ani +models/weapons/v_eq_fraggrenade.ani +models/weapons/w_eq_flashbang.ani +models/weapons/v_eq_flashbang.ani +models/weapons/w_eq_decoy.ani +models/weapons/v_eq_decoy.ani +models/weapons/v_tablet.ani +models/weapons/v_t_knife_anim.ani +models/weapons/t_arms_leet.ani +models/weapons/t_arms_anarchist.ani models/weapons/w_shot_sawedoff.ani models/weapons/v_shot_sawedoff.ani models/weapons/w_shot_nova.ani models/weapons/v_shot_nova.ani models/weapons/w_shot_mag7.ani models/weapons/v_shot_mag7.ani -models/weapons/w_rif_sg556.ani -models/weapons/v_rif_sg556.ani -models/weapons/v_rif_m4a1_s.ani -models/weapons/w_rif_m4a1.ani -models/weapons/v_rif_m4a1.ani -models/weapons/w_rif_galilar.ani -models/weapons/v_rif_galilar.ani -models/weapons/w_rif_famas.ani -models/weapons/v_rif_famas.ani -models/weapons/w_rif_aug.ani -models/weapons/v_rif_aug.ani -models/weapons/w_rif_ak47.ani -models/weapons/v_rif_ak47.ani +models/weapons/v_shield.ani models/weapons/w_knife_gut.ani models/weapons/v_knife_gut.ani models/weapons/v_knife_ghost.ani @@ -22016,28 +22134,20 @@ models/weapons/w_knife.ani models/weapons/v_knife.ani models/weapons/w_ied.ani models/weapons/v_ied.ani -models/weapons/w_mach_negev.ani -models/weapons/v_mach_negev.ani -models/weapons/w_mach_m249para.ani -models/weapons/v_mach_m249para.ani -models/weapons/v_knife_widowmaker_anim.ani -models/weapons/v_knife_widowmaker.ani -models/weapons/v_knife_ursus_anim.ani -models/weapons/v_knife_ursus.ani -models/weapons/v_knife_tactical.ani -models/weapons/v_knife_survival_bowie_anim.ani -models/weapons/v_knife_survival_bowie.ani -models/weapons/v_knife_stiletto_anim.ani -models/weapons/v_knife_stiletto.ani -models/weapons/v_knife_push_anim.ani -models/weapons/v_knife_push.ani -models/weapons/v_knife_m9_bay_anim.ani -models/weapons/v_knife_m9_bay.ani -models/weapons/v_knife_karam_anim.ani -models/weapons/v_knife_karam.ani -models/weapons/v_knife_gypsy_jackknife_anim.ani -models/weapons/v_knife_gypsy_jackknife.ani -models/weapons/v_knife_gut_anim.ani +models/weapons/v_bumpmine.ani +models/weapons/w_rif_sg556.ani +models/weapons/v_rif_sg556.ani +models/weapons/v_rif_m4a1_s.ani +models/weapons/w_rif_m4a1.ani +models/weapons/v_rif_m4a1.ani +models/weapons/w_rif_galilar.ani +models/weapons/v_rif_galilar.ani +models/weapons/w_rif_famas.ani +models/weapons/v_rif_famas.ani +models/weapons/w_rif_aug.ani +models/weapons/v_rif_aug.ani +models/weapons/w_rif_ak47.ani +models/weapons/v_rif_ak47.ani models/weapons/v_sonar_bomb.ani models/weapons/w_snip_ssg08.ani models/weapons/v_snip_ssg08.ani @@ -22060,30 +22170,6 @@ models/weapons/w_smg_mac10.ani models/weapons/v_smg_mac10.ani models/weapons/w_smg_bizon.ani models/weapons/v_smg_bizon.ani -models/weapons/v_healthshot.ani -models/weapons/v_hammer.ani -models/weapons/v_fists.ani -models/weapons/w_eq_taser.ani -models/weapons/v_eq_taser.ani -models/weapons/v_eq_snowball.ani -models/weapons/w_eq_smokegrenade.ani -models/weapons/v_eq_smokegrenade.ani -models/weapons/w_eq_molotov.ani -models/weapons/v_eq_molotov.ani -models/weapons/w_eq_incendiarygrenade.ani -models/weapons/v_eq_incendiarygrenade.ani -models/weapons/w_eq_fraggrenade.ani -models/weapons/v_eq_fraggrenade.ani -models/weapons/w_eq_flashbang.ani -models/weapons/v_eq_flashbang.ani -models/weapons/w_eq_decoy.ani -models/weapons/v_eq_decoy.ani -models/weapons/v_tablet.ani -models/weapons/v_t_knife_anim.ani -models/weapons/t_arms_leet.ani -models/weapons/t_arms_anarchist.ani -models/weapons/v_breachcharge.ani -models/weapons/v_axe.ani models/weapons/w_pist_tec9.ani models/weapons/v_pist_tec9.ani models/weapons/v_pist_revolver.ani @@ -22102,12 +22188,35 @@ models/weapons/v_pist_deagle.ani models/weapons/v_pist_cz_75.ani models/weapons/w_pist_223.ani models/weapons/v_pist_223.ani +models/weapons/w_mach_negev.ani +models/weapons/v_mach_negev.ani +models/weapons/w_mach_m249para.ani +models/weapons/v_mach_m249para.ani +models/weapons/v_knife_widowmaker_anim.ani +models/weapons/v_knife_widowmaker.ani +models/weapons/v_knife_ursus_anim.ani +models/weapons/v_knife_ursus.ani +models/weapons/v_knife_tactical.ani +models/weapons/v_knife_survival_bowie_anim.ani +models/weapons/v_knife_survival_bowie.ani +models/weapons/v_knife_stiletto_anim.ani +models/weapons/v_knife_stiletto.ani +models/weapons/v_knife_push_anim.ani +models/weapons/v_knife_push.ani +models/weapons/v_knife_m9_bay_anim.ani +models/weapons/v_knife_m9_bay.ani +models/weapons/v_knife_karam_anim.ani +models/weapons/v_knife_karam.ani +models/weapons/v_knife_gypsy_jackknife_anim.ani +models/weapons/v_knife_gypsy_jackknife.ani +models/weapons/v_knife_gut_anim.ani +models/weapons/v_breachcharge.ani +models/weapons/v_axe.ani models/weapons/v_spanner.ani -models/weapons/v_ct_knife_anim.ani models/weapons/w_shot_xm1014.ani models/weapons/v_shot_xm1014.ani -models/player/ct_animations.ani models/player/t_animations.ani +models/player/ct_animations.ani models/seagull.ani models/crow.ani models/pigeon.ani @@ -22118,6 +22227,104 @@ models/characters/hostage_04.phz models/characters/hostage_03.phz models/characters/hostage_02.phz models/characters/hostage_01.phz +models/weapons/shield_gibs/shield_gib9.phy +models/weapons/shield_gibs/shield_gib8.phy +models/weapons/shield_gibs/shield_gib7.phy +models/weapons/shield_gibs/shield_gib6.phy +models/weapons/shield_gibs/shield_gib5.phy +models/weapons/shield_gibs/shield_gib4.phy +models/weapons/shield_gibs/shield_gib3.phy +models/weapons/shield_gibs/shield_gib2.phy +models/weapons/shield_gibs/shield_gib10.phy +models/weapons/shield_gibs/shield_gib1.phy +models/props/dust_massive/towers/broadcast_tower001.phy +models/props/dust_massive/stairs/spiral_stairs_03.phy +models/props/dust_massive/stairs/spiral_stairs_02.phy +models/props/dust_massive/stairs/spiral_stairs_01.phy +models/props/dust_massive/stairs/bunker_stairs_02.phy +models/props/dust_massive/stairs/bunker_stairs_01.phy +models/props/dust_massive/stairs/base_stairs_02.phy +models/props/dust_massive/stairs/base_stairs_01.phy +models/props/dust_massive/scaffolding/roof_scaffolding_004.phy +models/props/dust_massive/scaffolding/roof_scaffolding_003.phy +models/props/dust_massive/scaffolding/roof_scaffolding_002.phy +models/props/dust_massive/scaffolding/roof_scaffolding_001.phy +models/props/dust_massive/roof/military_base_roof_01.phy +models/props/dust_massive/rocks/underwater_rock001.phy +models/props/dust_massive/rocks/cliff_wall008.phy +models/props/dust_massive/rocks/cliff_wall007.phy +models/props/dust_massive/rocks/cliff_wall006.phy +models/props/dust_massive/rocks/cliff_wall005.phy +models/props/dust_massive/rocks/cliff_wall004.phy +models/props/dust_massive/rocks/cliff_wall003.phy +models/props/dust_massive/rocks/cliff_wall002.phy +models/props/dust_massive/rocks/cliff_wall001.phy +models/props/dust_massive/rocks/cliff_rock007.phy +models/props/dust_massive/rocks/cliff_rock006.phy +models/props/dust_massive/rocks/cliff_rock005.phy +models/props/dust_massive/rocks/cliff_rock004.phy +models/props/dust_massive/rocks/cliff_rock003.phy +models/props/dust_massive/rocks/cliff_rock002.phy +models/props/dust_massive/rocks/cliff_rock001.phy +models/props/dust_massive/oil_drum/oil_drum_pallet.phy +models/props/dust_massive/front_loader/front_loader_glass.phy +models/props/dust_massive/front_loader/front_loader_front.phy +models/props/dust_massive/front_loader/front_loader_back.phy +models/props/dust_massive/docks/radar_dome_pipe_platform001.phy +models/props/dust_massive/docks/radar_dome_pipe001f.phy +models/props/dust_massive/docks/radar_dome_pipe001e.phy +models/props/dust_massive/docks/radar_dome_pipe001d.phy +models/props/dust_massive/docks/radar_dome_pipe001c.phy +models/props/dust_massive/docks/radar_dome_pipe001b.phy +models/props/dust_massive/docks/radar_dome_pipe001.phy +models/props/dust_massive/docks/radar_dome_dolphin001d.phy +models/props/dust_massive/docks/radar_dome_dolphin001c.phy +models/props/dust_massive/docks/radar_dome_dolphin001b.phy +models/props/dust_massive/docks/radar_dome_dolphin001.phy +models/props/dust_massive/docks/radar_dome001.phy +models/props/dust_massive/docks/dock_stairs001d.phy +models/props/dust_massive/docks/dock_stairs001c.phy +models/props/dust_massive/docks/dock_stairs001b.phy +models/props/dust_massive/docks/dock_stairs001.phy +models/props/dust_massive/docks/dock_pylon_sign001.phy +models/props/dust_massive/docks/dock_pylon_holder001.phy +models/props/dust_massive/docks/dock_pylon001.phy +models/props/dust_massive/docks/dock_bumper001.phy +models/props/dust_massive/docks/dock_bollard001.phy +models/props/dust_massive/debris/debris_floor_02.phy +models/props/dust_massive/debris/debris_floor_01.phy +models/props/dust_massive/debris/debris_04.phy +models/props/dust_massive/debris/debris_03.phy +models/props/dust_massive/debris/debris_02.phy +models/props/dust_massive/debris/debris_01.phy +models/props/dust_massive/debris/broken_roof_005.phy +models/props/dust_massive/debris/broken_roof_004.phy +models/props/dust_massive/debris/broken_roof_003.phy +models/props/dust_massive/debris/broken_roof_002.phy +models/props/dust_massive/debris/broken_roof_001.phy +models/props/dust_massive/dam/dam.phy +models/props/dust_massive/cargo_container/cargo_container_square_closed.phy +models/props/dust_massive/cargo_container/cargo_container_square.phy +models/props/dust_massive/buoy/buoy001.phy +models/props/dust_massive/buildings/lighthouse01.phy +models/props/dust_massive/bridges/metal_bridge_frame.phy +models/props/dust_massive/bridges/bridge_pier.phy +models/props/dust_massive/bridges/bridge_arch_02.phy +models/props/dust_massive/bridges/bridge_arch_01.phy +models/props/dust_massive/boats/row_boat002.phy +models/props/dust_massive/boats/row_boat001.phy +models/props/dust_massive/barge/crane_cockpit.phy +models/props/dust_massive/barge/crane_arm.phy +models/props/dust_massive/barge/barge.phy +models/props/dust_massive/apc_wreck/apc_wreck.phy +models/props/de_vertigo/construction_elevator/construction_elevator_support_2.phy +models/props/de_vertigo/construction_elevator/construction_elevator_support.phy +models/props/de_vertigo/construction_elevator/construction_elevator_car.phy +models/props/de_train/hr_t/train_car_d/train_car_d_details.phy +models/props/de_train/hr_t/train_car_d/train_car_d.phy +models/props/de_vertigo/ibc/ibc_1_plastic.phy +models/props/de_vertigo/ibc/ibc_1_metal.phy +models/props/hr_vertigo/floor_grinder/floor_grinder.phy models/props/hr_vertigo/vertigo_traffic_cone/traffic_cone.phy models/props/hr_vertigo/vertigo_support_jack/support_jack.phy models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_03.phy @@ -22125,6 +22332,7 @@ models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_02.phy models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp.phy models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_02.phy models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_01.phy +models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_corner_railing.phy models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_weight.phy models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_shaft_01.phy models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_frame.phy @@ -22138,6 +22346,9 @@ models/props/hr_vertigo/vertigo_elevator/elevator_beam_512.phy models/props/hr_vertigo/vertigo_elevator/elevator_beam_256.phy models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bags_02.phy models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bags_01.phy +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_03.phy +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_02.phy +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_01.phy models/props/hr_vertigo/vertigo_cables/vertigo_cable_loop_96.phy models/props/hr_vertigo/vertigo_cables/vertigo_cable_end.phy models/props/hr_vertigo/vertigo_cables/vertigo_cable_bundle.phy @@ -22174,6 +22385,7 @@ models/props_survival/upgrades/upgrade_dz_helmet.phy models/props_survival/upgrades/upgrade_dz_armor_helmet.phy models/props_survival/upgrades/upgrade_dz_armor.phy models/props_survival/upgrades/parachutepack.phy +models/props_survival/upgrades/exojump.phy models/props_survival/safe/safe_door.phy models/props_survival/safe/safe.phy models/props_survival/jammer/jammer_gib06.phy @@ -22192,23 +22404,17 @@ models/props_survival/dronegun/dronegun_gib3.phy models/props_survival/dronegun/dronegun_gib2.phy models/props_survival/dronegun/dronegun_gib1.phy models/props_survival/dronegun/dronegun.phy +models/props_survival/drone/drone_gib6.phy +models/props_survival/drone/drone_gib5.phy +models/props_survival/drone/drone_gib4.phy +models/props_survival/drone/drone_gib3.phy +models/props_survival/drone/drone_gib2.phy +models/props_survival/drone/drone_gib1.phy models/props_survival/drone/delivery_drone.phy models/props_survival/drone/br_drone.phy models/props_survival/crates/crate_ammobox.phy models/props_survival/cash/prop_cash_stack.phy models/props_survival/cash/dufflebag.phy -models/props_survival/cases/case_explosive_gib011.phy -models/props_survival/cases/case_explosive_gib010.phy -models/props_survival/cases/case_explosive_gib009.phy -models/props_survival/cases/case_explosive_gib008.phy -models/props_survival/cases/case_explosive_gib007.phy -models/props_survival/cases/case_explosive_gib006.phy -models/props_survival/cases/case_explosive_gib005.phy -models/props_survival/cases/case_explosive_gib004.phy -models/props_survival/cases/case_explosive_gib003.phy -models/props_survival/cases/case_explosive_gib002.phy -models/props_survival/cases/case_explosive_gib001.phy -models/props_survival/cases/case_explosive.phy models/props_survival/cases/case_tools_static.phy models/props_survival/cases/case_tools_heavy_static.phy models/props_survival/cases/case_tools_heavy_gib036.phy @@ -22274,6 +22480,7 @@ models/props_survival/cases/case_tools_gib003.phy models/props_survival/cases/case_tools_gib002.phy models/props_survival/cases/case_tools_gib001.phy models/props_survival/cases/case_tools.phy +models/props_survival/cases/case_respawn.phy models/props_survival/cases/case_random_drop_gib039.phy models/props_survival/cases/case_random_drop_gib038.phy models/props_survival/cases/case_random_drop_gib037.phy @@ -22518,6 +22725,18 @@ models/props_survival/cases/case_explosive_gib015.phy models/props_survival/cases/case_explosive_gib014.phy models/props_survival/cases/case_explosive_gib013.phy models/props_survival/cases/case_explosive_gib012.phy +models/props_survival/cases/case_explosive_gib011.phy +models/props_survival/cases/case_explosive_gib010.phy +models/props_survival/cases/case_explosive_gib009.phy +models/props_survival/cases/case_explosive_gib008.phy +models/props_survival/cases/case_explosive_gib007.phy +models/props_survival/cases/case_explosive_gib006.phy +models/props_survival/cases/case_explosive_gib005.phy +models/props_survival/cases/case_explosive_gib004.phy +models/props_survival/cases/case_explosive_gib003.phy +models/props_survival/cases/case_explosive_gib002.phy +models/props_survival/cases/case_explosive_gib001.phy +models/props_survival/cases/case_explosive.phy models/props_survival/briefcase/briefcase.phy models/props/hr_massive/wood_spool/wood_spool.phy models/props/hr_massive/wood_planks/wood_plank_4_4_128.phy @@ -22875,9 +23094,9 @@ models/props/hr_massive/beach_rock_1/beach_rock_2.phy models/props/hr_massive/beach_rock_1/beach_rock_1.phy models/props/hr_massive/barrel/barrel_1.phy models/props/de_nuke/hr_nuke/skylight_2/skylight_2.phy +models/props/de_dust/hr_dust/dust_soccerball/soccer_goal.phy models/props/de_dust/hr_dust/dust_soccerball/dust_soccer_ball001.phy models/props/de_dust/hr_dust/wooden_structures/wooden_structure_01.phy -models/props/de_dust/hr_dust/foliage/potted_plant_05.phy models/props/de_dust/hr_dust/foliage/palm_tree_small_06.phy models/props/de_dust/hr_dust/foliage/palm_tree_small_05.phy models/props/de_dust/hr_dust/foliage/palm_tree_small_04.phy @@ -22891,6 +23110,8 @@ models/props/de_dust/hr_dust/foliage/palm_tree_01.phy models/props/de_dust/hr_dust/foliage/olive_tree_small_02.phy models/props/de_dust/hr_dust/foliage/olive_tree_small_01.phy models/props/de_dust/hr_dust/foliage/olive_tree_card_01.phy +models/props/de_dust/hr_dust/foliage/olive_tree_03b.phy +models/props/de_dust/hr_dust/foliage/olive_tree_03.phy models/props/de_dust/hr_dust/foliage/olive_tree_02.phy models/props/de_dust/hr_dust/foliage/olive_tree_01b.phy models/props/de_dust/hr_dust/foliage/olive_tree_01.phy @@ -22900,6 +23121,7 @@ models/props/de_dust/hr_dust/foliage/fan_palm_01.phy models/props/de_dust/hr_dust/foliage/banana_plant_03.phy models/props/de_dust/hr_dust/foliage/banana_plant_02.phy models/props/de_dust/hr_dust/foliage/banana_plant_01.phy +models/props/de_dust/hr_dust/foliage/potted_plant_05.phy models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_stack_01.phy models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_broken.phy models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_01_small.phy @@ -22969,9 +23191,11 @@ models/props/de_dust/hr_dust/dust_windows/dust_window_shutters_24x24_01_open.phy models/props/de_dust/hr_dust/dust_windows/dust_window_shutters_24x24_01_closed_lod.phy models/props/de_dust/hr_dust/dust_windows/dust_window_shutters_24x24_01_closed.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_02.phy +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_01_complete.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_01.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x24_02.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x24_01.phy +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_48x48_01_grill.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_02.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_01.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x62_round_02.phy @@ -22979,6 +23203,7 @@ models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x62_round_01. models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x64_02.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x64_01.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_02.phy +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_01_complete.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_01.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_64x64_01.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_64x24_01.phy @@ -22987,11 +23212,16 @@ models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_36x62_round_ models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_24x64_01.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_24x24_01.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x64_01.phy +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x24_01_complete.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x24_01.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_56x90_01.phy +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x64_01_complete.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x64_01.phy +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x62_round_01_complete.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x62_round_01.phy +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x64_01_complete.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x64_01.phy +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x24_01_complete.phy models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x24_01.phy models/props/de_dust/hr_dust/dust_windows/dust_window_bars_64x64_06.phy models/props/de_dust/hr_dust/dust_windows/dust_window_bars_64x64_05.phy @@ -23098,6 +23328,7 @@ models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_interior.phy models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass_opaque.phy models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass.phy models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_body.phy +models/props/de_dust/hr_dust/dust_vehicles/dust_taxi2_body.phy models/props/de_dust/hr_dust/dust_vehicles/dust_limo_lowpoly.phy models/props/de_dust/hr_dust/dust_vehicles/dust_hatchback_wheels.phy models/props/de_dust/hr_dust/dust_vehicles/dust_hatchback_interior.phy @@ -23138,6 +23369,7 @@ models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_64.phy models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_32.phy models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_256.phy models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_128.phy +models/props/de_dust/hr_dust/dust_trims/dust_stairs006_96.phy models/props/de_dust/hr_dust/dust_trims/dust_stairs003b_256.phy models/props/de_dust/hr_dust/dust_trims/dust_stairs003_64.phy models/props/de_dust/hr_dust/dust_trims/dust_stairs003_256.phy @@ -23337,6 +23569,37 @@ models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_bracket_01.phy models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_03.phy models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_02.phy models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_03.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02_flush.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01_flush.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_right_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_left_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x64_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x32_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x256_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x128_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_board_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x64_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x32_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x256_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x128_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_l_tunnels_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_03.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_01.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_wood_wall_64_03.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_wood_wall_64_02.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_wood_wall_64_01.phy @@ -23432,6 +23695,11 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_04.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_03.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_02.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_end_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_end_01.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_03.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_02.phy +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_01.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_02.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_01.phy @@ -23470,36 +23738,6 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_bombsite_96_02.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_bombsite_96_01.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_bombsite_50_interior.phy models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_bombsite_50_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_03.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02_flush.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01_flush.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_right_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_left_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_02.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x64_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x32_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x256_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x128_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_board_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x64_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x32_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x256_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x128_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_02.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_l_tunnels_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_03.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_02.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_02.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_02.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_01.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_02.phy -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_01.phy models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_lid.phy models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_02.phy models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_01.phy @@ -23556,7 +23794,9 @@ models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_192x128_inset_01.phy models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_surface_01.phy models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_open_01.phy models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_inset_01.phy +models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_96x128_01_complete.phy models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_96x128_01.phy +models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_89x128_01_complete.phy models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_89x128_01.phy models/props/de_dust/hr_dust/dust_doors/dust_door_underpass_01.phy models/props/de_dust/hr_dust/dust_doors/dust_door_transome_window_round_06.phy @@ -23609,6 +23849,7 @@ models/props/de_dust/hr_dust/dust_doorframes/dust_doortransome_01.phy models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_03.phy models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_02.phy models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_01.phy +models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_56x106_03_complete.phy models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_03.phy models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_02.phy models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_01.phy @@ -23639,6 +23880,10 @@ models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_128_a_striped.phy models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_128_a.phy models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_1024_a_striped.phy models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_1024_a.phy +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_02.phy +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_01.phy +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_02.phy +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_01.phy models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate_stack_02.phy models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate_stack_01.phy models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate.phy @@ -23681,10 +23926,6 @@ models/props/de_dust/hr_dust/dust_crates/dust_crate_style_01_32x16x64.phy models/props/de_dust/hr_dust/dust_crates/dust_crate_style_01_32x16x32.phy models/props/de_dust/hr_dust/dust_crates/dust_crate_assembly_100x100_01_tarp.phy models/props/de_dust/hr_dust/dust_crates/dust_crate_assembly_100x100_01.phy -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_02.phy -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_01.phy -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_02.phy -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_01.phy models/props/de_dust/hr_dust/dust_construction/dust_rebar_stack.phy models/props/de_dust/hr_dust/dust_construction/dust_flexconduit_spool.phy models/props/de_dust/hr_dust/dust_cloth_line/cloth_line_mount.phy @@ -25792,6 +26033,31 @@ models/props/coop_cementplant/coop_ammo_stash/coop_ammo_stash_full.phy models/props/coop_cementplant/coop_ammo_stash/coop_ammo_stash_empty.phy models/player/custom_player/scaffold_t.phy models/player/custom_player/scaffold_ct.phy +models/player/custom_player/legacy/ctm_sas_variantb.phy +models/player/custom_player/legacy/ctm_sas_varianta.phy +models/player/custom_player/legacy/ctm_sas.phy +models/player/custom_player/legacy/ctm_idf_variantf.phy +models/player/custom_player/legacy/ctm_idf_variante.phy +models/player/custom_player/legacy/ctm_idf_variantd.phy +models/player/custom_player/legacy/ctm_idf_variantc.phy +models/player/custom_player/legacy/ctm_idf_variantb.phy +models/player/custom_player/legacy/ctm_idf.phy +models/player/custom_player/legacy/ctm_heavy.phy +models/player/custom_player/legacy/ctm_gsg9_variantd.phy +models/player/custom_player/legacy/ctm_gsg9_variantc.phy +models/player/custom_player/legacy/ctm_gsg9_variantb.phy +models/player/custom_player/legacy/ctm_gsg9_varianta.phy +models/player/custom_player/legacy/ctm_gsg9.phy +models/player/custom_player/legacy/ctm_gign_variantd.phy +models/player/custom_player/legacy/ctm_gign_variantc.phy +models/player/custom_player/legacy/ctm_gign_variantb.phy +models/player/custom_player/legacy/ctm_gign_varianta.phy +models/player/custom_player/legacy/ctm_gign.phy +models/player/custom_player/legacy/ctm_fbi_variantd.phy +models/player/custom_player/legacy/ctm_fbi_variantc.phy +models/player/custom_player/legacy/ctm_fbi_variantb.phy +models/player/custom_player/legacy/ctm_fbi_varianta.phy +models/player/custom_player/legacy/ctm_fbi.phy models/player/custom_player/legacy/tm_separatist_variantd.phy models/player/custom_player/legacy/tm_separatist_variantc.phy models/player/custom_player/legacy/tm_separatist_variantb.phy @@ -25844,31 +26110,6 @@ models/player/custom_player/legacy/ctm_st6.phy models/player/custom_player/legacy/ctm_sas_variante.phy models/player/custom_player/legacy/ctm_sas_variantd.phy models/player/custom_player/legacy/ctm_sas_variantc.phy -models/player/custom_player/legacy/ctm_sas_variantb.phy -models/player/custom_player/legacy/ctm_sas_varianta.phy -models/player/custom_player/legacy/ctm_sas.phy -models/player/custom_player/legacy/ctm_idf_variantf.phy -models/player/custom_player/legacy/ctm_idf_variante.phy -models/player/custom_player/legacy/ctm_idf_variantd.phy -models/player/custom_player/legacy/ctm_idf_variantc.phy -models/player/custom_player/legacy/ctm_idf_variantb.phy -models/player/custom_player/legacy/ctm_idf.phy -models/player/custom_player/legacy/ctm_heavy.phy -models/player/custom_player/legacy/ctm_gsg9_variantd.phy -models/player/custom_player/legacy/ctm_gsg9_variantc.phy -models/player/custom_player/legacy/ctm_gsg9_variantb.phy -models/player/custom_player/legacy/ctm_gsg9_varianta.phy -models/player/custom_player/legacy/ctm_gsg9.phy -models/player/custom_player/legacy/ctm_gign_variantd.phy -models/player/custom_player/legacy/ctm_gign_variantc.phy -models/player/custom_player/legacy/ctm_gign_variantb.phy -models/player/custom_player/legacy/ctm_gign_varianta.phy -models/player/custom_player/legacy/ctm_gign.phy -models/player/custom_player/legacy/ctm_fbi_variantd.phy -models/player/custom_player/legacy/ctm_fbi_variantc.phy -models/player/custom_player/legacy/ctm_fbi_variantb.phy -models/player/custom_player/legacy/ctm_fbi_varianta.phy -models/player/custom_player/legacy/ctm_fbi.phy models/props/gd_crashsite/bricks_damaged/bricks_damaged.phy models/props/gd_crashsite/rubble_a/rubble_a.phy models/props/gd_crashsite/pillar_a/pillar_a.phy @@ -25885,9 +26126,9 @@ models/props/de_train/hr_t/pigeon_sign/pigeon_sign.phy models/effects/urban_puddle_model03a.phy models/effects/urban_puddle_model02a.phy models/effects/urban_puddle_model01a.phy -models/props_yard/playground_swingset02.phy models/props_yard/playground_structure.phy models/props_yard/playground_slide.phy +models/props_yard/playground_swingset02.phy models/props_windows/window_urban_sash_48_88_tframe.phy models/props_windows/window_urban_sash_48_88_rounded.phy models/props_windows/window_urban_sash_48_88_open.phy @@ -27278,9 +27519,11 @@ models/props/de_vertigo/scaffolding_walkway_03.phy models/props/de_vertigo/scaffolding_walkway_02.phy models/props/de_vertigo/scaffolding_walkway_01.phy models/props/de_vertigo/scaffolding_end_open.phy +models/props/de_vertigo/scaffolding_end_b.phy models/props/de_vertigo/scaffolding_end.phy models/props/de_vertigo/scaffolding_building_edge_support.phy models/props/de_vertigo/scaffolding_building_edge_guard.phy +models/props/de_vertigo/scaffolding_building_edge_corner_02.phy models/props/de_vertigo/scaffolding_building_edge_corner.phy models/props/de_vertigo/scaffolding_building_edge.phy models/props/de_vertigo/scaffolding_brace.phy @@ -27351,11 +27594,13 @@ models/props/de_vertigo/insulation_scappiece_02.phy models/props/de_vertigo/insulation_scappiece_01.phy models/props/de_vertigo/ibeams_big01.phy models/props/de_vertigo/ibeam_vertical_medium.phy +models/props/de_vertigo/ibeam_vertical_large_high.phy models/props/de_vertigo/ibeam_vertical_large.phy models/props/de_vertigo/ibeam_stack.phy models/props/de_vertigo/ibeam_horizontal_small_02.phy models/props/de_vertigo/ibeam_horizontal_small.phy models/props/de_vertigo/ibeam_horizontal_large_hole.phy +models/props/de_vertigo/ibeam_horizontal_large_high.phy models/props/de_vertigo/ibeam_horizontal_large_04.phy models/props/de_vertigo/ibeam_horizontal_large_03.phy models/props/de_vertigo/ibeam_horizontal_large_02.phy @@ -27393,6 +27638,7 @@ models/props/de_vertigo/flexconduit_bundle.phy models/props/de_vertigo/fencerail_constructionnetting_02.phy models/props/de_vertigo/fencerail_constructionnetting_01.phy models/props/de_vertigo/fencerail_constructioncables_01.phy +models/props/de_vertigo/fencerail_construction_netting_03.phy models/props/de_vertigo/fencerail_construction2x4_break_base.phy models/props/de_vertigo/fencepost_constructionmetal_01.phy models/props/de_vertigo/corrugated_floor_plate_01.phy @@ -27837,6 +28083,67 @@ models/props/de_mill/de_mill_grinder_ramp_01.phy models/props/de_mill/de_mill_grinder_cutter01_ramp.phy models/props/de_mill/de_mill_grinder_cutter01.phy models/props/de_mill/de_mill_cane_carrier01.phy +models/props/de_inferno/de_inferno_well.phy +models/props/de_inferno/de_inferno_boulder_02.phy +models/props/de_inferno/de_inferno_boulder_01.phy +models/props/de_inferno/confessional_new.phy +models/props/de_inferno/confessional.phy +models/props/de_inferno/clock01.phy +models/props/de_inferno/claypot03_damage_06.phy +models/props/de_inferno/claypot03_damage_05.phy +models/props/de_inferno/claypot03_damage_04.phy +models/props/de_inferno/claypot03_damage_03.phy +models/props/de_inferno/claypot03_damage_02.phy +models/props/de_inferno/claypot03_damage_01.phy +models/props/de_inferno/claypot03.phy +models/props/de_inferno/claypot02_static.phy +models/props/de_inferno/claypot02.phy +models/props/de_inferno/clayoven.phy +models/props/de_inferno/cinderblock.phy +models/props/de_inferno/churchprop05.phy +models/props/de_inferno/churchprop04.phy +models/props/de_inferno/churchprop03.phy +models/props/de_inferno/churchprop02.phy +models/props/de_inferno/churchprop01.phy +models/props/de_inferno/church_stone_trim_new.phy +models/props/de_inferno/church_ornament_01.phy +models/props/de_inferno/chimney02.phy +models/props/de_inferno/chairantique_static.phy +models/props/de_inferno/ceiling_light.phy +models/props/de_inferno/ceiling_fan_blade.phy +models/props/de_inferno/ceiling_fan.phy +models/props/de_inferno/cart_wheel_static.phy +models/props/de_inferno/cannon_gun.phy +models/props/de_inferno/cannon_base.phy +models/props/de_inferno/brokenwall.phy +models/props/de_inferno/brokenboard_damage_02.phy +models/props/de_inferno/brokenboard_damage_01.phy +models/props/de_inferno/brokenboard.phy +models/props/de_inferno/bridge_arch01_new.phy +models/props/de_inferno/bridge_arch01.phy +models/props/de_inferno/brickpillarb.phy +models/props/de_inferno/bombsiteroof.phy +models/props/de_inferno/bomb_tanks.phy +models/props/de_inferno/bomb_shells_2_wood.phy +models/props/de_inferno/bomb_shells_2_metal.phy +models/props/de_inferno/bomb_shells_1_wood.phy +models/props/de_inferno/bomb_shells_1_metal.phy +models/props/de_inferno/bomb_drums_02.phy +models/props/de_inferno/bomb_drums_01.phy +models/props/de_inferno/bomb_drum_nitro.phy +models/props/de_inferno/bomb_crate_nitrostack.phy +models/props/de_inferno/bomb_crate_nitro.phy +models/props/de_inferno/bench_wood_new.phy +models/props/de_inferno/bench_wood.phy +models/props/de_inferno/bench_concrete.phy +models/props/de_inferno/bell_small.phy +models/props/de_inferno/bell_large.phy +models/props/de_inferno/bed.phy +models/props/de_inferno/archwaysupport.phy +models/props/de_inferno/arch_stones03_new.phy +models/props/de_inferno/arch_stones03.phy +models/props/de_inferno/arch_stones02_new.phy +models/props/de_inferno/arch_stones02.phy models/props/de_inferno/wood_fence_end.phy models/props/de_inferno/wood_fence.phy models/props/de_inferno/wire_spool02_new.phy @@ -27937,67 +28244,6 @@ models/props/de_inferno/inferno_fence_02.phy models/props/de_inferno/inferno_fence_01.phy models/props/de_inferno/inferno_church_entrance.phy models/props/de_inferno/infarchc_new.phy -models/props/de_inferno/de_inferno_well.phy -models/props/de_inferno/de_inferno_boulder_02.phy -models/props/de_inferno/de_inferno_boulder_01.phy -models/props/de_inferno/confessional_new.phy -models/props/de_inferno/confessional.phy -models/props/de_inferno/clock01.phy -models/props/de_inferno/claypot03_damage_06.phy -models/props/de_inferno/claypot03_damage_05.phy -models/props/de_inferno/claypot03_damage_04.phy -models/props/de_inferno/claypot03_damage_03.phy -models/props/de_inferno/claypot03_damage_02.phy -models/props/de_inferno/claypot03_damage_01.phy -models/props/de_inferno/claypot03.phy -models/props/de_inferno/claypot02_static.phy -models/props/de_inferno/claypot02.phy -models/props/de_inferno/clayoven.phy -models/props/de_inferno/cinderblock.phy -models/props/de_inferno/churchprop05.phy -models/props/de_inferno/churchprop04.phy -models/props/de_inferno/churchprop03.phy -models/props/de_inferno/churchprop02.phy -models/props/de_inferno/churchprop01.phy -models/props/de_inferno/church_stone_trim_new.phy -models/props/de_inferno/church_ornament_01.phy -models/props/de_inferno/chimney02.phy -models/props/de_inferno/chairantique_static.phy -models/props/de_inferno/ceiling_light.phy -models/props/de_inferno/ceiling_fan_blade.phy -models/props/de_inferno/ceiling_fan.phy -models/props/de_inferno/cart_wheel_static.phy -models/props/de_inferno/cannon_gun.phy -models/props/de_inferno/cannon_base.phy -models/props/de_inferno/brokenwall.phy -models/props/de_inferno/brokenboard_damage_02.phy -models/props/de_inferno/brokenboard_damage_01.phy -models/props/de_inferno/brokenboard.phy -models/props/de_inferno/bridge_arch01_new.phy -models/props/de_inferno/bridge_arch01.phy -models/props/de_inferno/brickpillarb.phy -models/props/de_inferno/bombsiteroof.phy -models/props/de_inferno/bomb_tanks.phy -models/props/de_inferno/bomb_shells_2_wood.phy -models/props/de_inferno/bomb_shells_2_metal.phy -models/props/de_inferno/bomb_shells_1_wood.phy -models/props/de_inferno/bomb_shells_1_metal.phy -models/props/de_inferno/bomb_drums_02.phy -models/props/de_inferno/bomb_drums_01.phy -models/props/de_inferno/bomb_drum_nitro.phy -models/props/de_inferno/bomb_crate_nitrostack.phy -models/props/de_inferno/bomb_crate_nitro.phy -models/props/de_inferno/bench_wood_new.phy -models/props/de_inferno/bench_wood.phy -models/props/de_inferno/bench_concrete.phy -models/props/de_inferno/bell_small.phy -models/props/de_inferno/bell_large.phy -models/props/de_inferno/bed.phy -models/props/de_inferno/archwaysupport.phy -models/props/de_inferno/arch_stones03_new.phy -models/props/de_inferno/arch_stones03.phy -models/props/de_inferno/arch_stones02_new.phy -models/props/de_inferno/arch_stones02.phy models/props/de_inferno/head_sculpture.phy models/props/de_inferno/hay_bails.phy models/props/de_inferno/hay_bail_stack.phy @@ -28078,49 +28324,6 @@ models/props/de_dust/objects/dust_walltop_180_sm.phy models/props/de_dust/objects/dust_walltop_132_xsm_cap.phy models/props/de_dust/objects/dust_walltop_128_sm.phy models/props/de_dust/objects/dust_walltop_128.phy -models/props/de_dust/grainbasket01c_static.phy -models/props/de_dust/grainbasket01c_gib2.phy -models/props/de_dust/grainbasket01c_gib1.phy -models/props/de_dust/grainbasket01c.phy -models/props/de_dust/grainbasket01b.phy -models/props/de_dust/grainbasket01a.phy -models/props/de_dust/dust_rusty_barrel.phy -models/props/de_dust/dust_metal_door2.phy -models/props/de_dust/dust_metal_door.phy -models/props/de_dust/dust_metal_crate.phy -models/props/de_dust/dust_med_sign.phy -models/props/de_dust/dust_large_wood_door.phy -models/props/de_dust/dust_large_sign_falling.phy -models/props/de_dust/dust_large_sign.phy -models/props/de_dust/dust_food_crates_74.phy -models/props/de_dust/dust_food_crates_56.phy -models/props/de_dust/dust_food_crate.phy -models/props/de_dust/dust_bombsite_gap_step.phy -models/props/de_dust/dust_bombsite_gap.phy -models/props/de_dust/dust_balcony03.phy -models/props/de_dust/dust_balcony02.phy -models/props/de_dust/dust_arch_small.phy -models/props/de_dust/dust_arch_long.phy -models/props/de_dust/dust_arch_large.phy -models/props/de_dust/dust_arch_decorative.phy -models/props/de_dust/dust_arch_damaged.phy -models/props/de_dust/dust_aid_crate_74.phy -models/props/de_dust/dust_aid_crate_56.phy -models/props/de_dust/dust2_arch_decorative.phy -models/props/de_dust/du_window_88x80.phy -models/props/de_dust/du_window_88x56_shut.phy -models/props/de_dust/du_window_88x56.phy -models/props/de_dust/du_crate_64x64_stone.phy -models/props/de_dust/du_antenna_b.phy -models/props/de_dust/door01a.phy -models/props/de_dust/awning_smalldoor.phy -models/props/de_dust/awning04.phy -models/props/de_dust/awning03.phy -models/props/de_dust/awning02.phy -models/props/de_dust/awning01.phy -models/props/de_dust/archwayhallmed.phy -models/props/de_dust/archwayhalllarge.phy -models/props/de_dust/archhalllargewide.phy models/props/de_dust/wagon.phy models/props/de_dust/technical01.phy models/props/de_dust/stoneblocks48.phy @@ -28171,6 +28374,49 @@ models/props/de_dust/palaceinteriorarches.phy models/props/de_dust/palace_bigdomeskybox.phy models/props/de_dust/palace_bigdome.phy models/props/de_dust/mosquetop02.phy +models/props/de_dust/grainbasket01c_static.phy +models/props/de_dust/grainbasket01c_gib2.phy +models/props/de_dust/grainbasket01c_gib1.phy +models/props/de_dust/grainbasket01c.phy +models/props/de_dust/grainbasket01b.phy +models/props/de_dust/grainbasket01a.phy +models/props/de_dust/dust_rusty_barrel.phy +models/props/de_dust/dust_metal_door2.phy +models/props/de_dust/dust_metal_door.phy +models/props/de_dust/dust_metal_crate.phy +models/props/de_dust/dust_med_sign.phy +models/props/de_dust/dust_large_wood_door.phy +models/props/de_dust/dust_large_sign_falling.phy +models/props/de_dust/dust_large_sign.phy +models/props/de_dust/dust_food_crates_74.phy +models/props/de_dust/dust_food_crates_56.phy +models/props/de_dust/dust_food_crate.phy +models/props/de_dust/dust_bombsite_gap_step.phy +models/props/de_dust/dust_bombsite_gap.phy +models/props/de_dust/dust_balcony03.phy +models/props/de_dust/dust_balcony02.phy +models/props/de_dust/dust_arch_small.phy +models/props/de_dust/dust_arch_long.phy +models/props/de_dust/dust_arch_large.phy +models/props/de_dust/dust_arch_decorative.phy +models/props/de_dust/dust_arch_damaged.phy +models/props/de_dust/dust_aid_crate_74.phy +models/props/de_dust/dust_aid_crate_56.phy +models/props/de_dust/dust2_arch_decorative.phy +models/props/de_dust/du_window_88x80.phy +models/props/de_dust/du_window_88x56_shut.phy +models/props/de_dust/du_window_88x56.phy +models/props/de_dust/du_crate_64x64_stone.phy +models/props/de_dust/du_antenna_b.phy +models/props/de_dust/door01a.phy +models/props/de_dust/awning_smalldoor.phy +models/props/de_dust/awning04.phy +models/props/de_dust/awning03.phy +models/props/de_dust/awning02.phy +models/props/de_dust/awning01.phy +models/props/de_dust/archwayhallmed.phy +models/props/de_dust/archwayhalllarge.phy +models/props/de_dust/archhalllargewide.phy models/props/de_depot/flatbed_rocket.phy models/props/de_cbble/window_d/window_d_glow.phy models/props/de_cbble/window_d/window_d.phy @@ -28842,10 +29088,10 @@ models/props/cs_assault/box_stack1.phy models/props/cs_assault/assault_metal_awning.phy models/props/cs_assault/acunit02.phy models/props/cs_assault/acunit01.phy +models/hostage/hostage.phy models/hostage/hostage_variantc.phy models/hostage/hostage_variantb.phy models/hostage/hostage_varianta.phy -models/hostage/hostage.phy models/gibs/wood_gib01e.phy models/gibs/wood_gib01d.phy models/gibs/wood_gib01c.phy @@ -28878,13 +29124,6 @@ models/destruction_tanker/destruction_tanker_front.phy models/de_alleyway/tanker_drawing_table.phy models/de_alleyway/tanker_alleyway_layout.phy models/de_alleyway/street_basketball_hoop.phy -models/player/zombie_ghost.phy -models/player/zombie.phy -models/player/tm_separatist_variantd.phy -models/player/tm_separatist_variantc.phy -models/player/tm_separatist_variantb.phy -models/player/tm_separatist_varianta.phy -models/player/tm_anarchist.phy models/player/ctm_swat_variantd.phy models/player/ctm_swat_variantc.phy models/player/ctm_swat_variantb.phy @@ -28923,6 +29162,13 @@ models/player/ctm_fbi_variantc.phy models/player/ctm_fbi_variantb.phy models/player/ctm_fbi_varianta.phy models/player/ctm_fbi.phy +models/player/tm_anarchist.phy +models/player/zombie_ghost.phy +models/player/zombie.phy +models/player/tm_separatist_variantd.phy +models/player/tm_separatist_variantc.phy +models/player/tm_separatist_variantb.phy +models/player/tm_separatist_varianta.phy models/player/tm_separatist.phy models/player/tm_professional_var4.phy models/player/tm_professional_var3.phy @@ -28979,24 +29225,42 @@ models/characters/hostage_04.phy models/characters/hostage_03.phy models/characters/hostage_02.phy models/characters/hostage_01.phy +models/weapons/w_hammer_dropped.phy +models/weapons/w_eq_taser.phy +models/weapons/w_eq_tablet_dropped.phy +models/weapons/w_eq_snowball_dropped.phy +models/weapons/w_eq_smokegrenade_thrown.phy +models/weapons/w_eq_smokegrenade_dropped.phy +models/weapons/w_eq_smokegrenade.phy +models/weapons/w_eq_shield_back.phy +models/weapons/w_eq_shield.phy +models/weapons/w_eq_sensorgrenade_thrown.phy +models/weapons/w_eq_sensorgrenade_dropped.phy +models/weapons/w_eq_molotov_thrown.phy +models/weapons/w_eq_molotov_dropped.phy +models/weapons/w_eq_molotov.phy +models/weapons/w_eq_incendiarygrenade_thrown.phy +models/weapons/w_eq_incendiarygrenade_dropped.phy +models/weapons/w_eq_incendiarygrenade.phy +models/weapons/w_eq_healthshot_dropped.phy +models/weapons/w_eq_healthshot.phy +models/weapons/w_eq_fraggrenade_thrown.phy +models/weapons/w_eq_fraggrenade_dropped.phy +models/weapons/w_eq_fraggrenade.phy +models/weapons/w_eq_flashbang_thrown.phy +models/weapons/w_eq_flashbang_dropped.phy +models/weapons/w_eq_flashbang.phy +models/weapons/w_eq_eholster_elite.phy +models/weapons/w_eq_eholster.phy +models/weapons/w_eq_decoy_thrown.phy +models/weapons/w_eq_decoy_dropped.phy +models/weapons/w_eq_decoy.phy +models/weapons/w_eq_charge_dropped.phy +models/weapons/w_eq_bumpmine_dropped.phy models/weapons/w_shot_nova_mag.phy models/weapons/w_shot_nova_dropped.phy models/weapons/w_shot_mag7_mag.phy models/weapons/w_shot_mag7_dropped.phy -models/weapons/w_rif_sg556_mag.phy -models/weapons/w_rif_sg556_dropped.phy -models/weapons/w_rif_m4a1_s_mag.phy -models/weapons/w_rif_m4a1_s_dropped.phy -models/weapons/w_rif_m4a1_mag.phy -models/weapons/w_rif_m4a1_dropped.phy -models/weapons/w_rif_galilar_mag.phy -models/weapons/w_rif_galilar_dropped.phy -models/weapons/w_rif_famas_mag.phy -models/weapons/w_rif_famas_dropped.phy -models/weapons/w_rif_aug_mag.phy -models/weapons/w_rif_aug_dropped.phy -models/weapons/w_rif_ak47_mag.phy -models/weapons/w_rif_ak47_dropped.phy models/weapons/w_knife_gut.phy models/weapons/w_knife_gg.phy models/weapons/w_knife_flip_dropped.phy @@ -29013,6 +29277,70 @@ models/weapons/w_knife_bayonet.phy models/weapons/w_knife.phy models/weapons/w_ied_dropped.phy models/weapons/w_ied.phy +models/weapons/w_c4_planted.phy +models/weapons/w_rif_sg556_mag.phy +models/weapons/w_rif_sg556_dropped.phy +models/weapons/w_rif_m4a1_s_mag.phy +models/weapons/w_rif_m4a1_s_dropped.phy +models/weapons/w_rif_m4a1_mag.phy +models/weapons/w_rif_m4a1_dropped.phy +models/weapons/w_rif_galilar_mag.phy +models/weapons/w_rif_galilar_dropped.phy +models/weapons/w_rif_famas_mag.phy +models/weapons/w_rif_famas_dropped.phy +models/weapons/w_rif_aug_mag.phy +models/weapons/w_rif_aug_dropped.phy +models/weapons/w_rif_ak47_mag.phy +models/weapons/w_rif_ak47_dropped.phy +models/weapons/w_snip_ssg08_mag.phy +models/weapons/w_snip_ssg08_dropped.phy +models/weapons/w_snip_scar20_mag.phy +models/weapons/w_snip_scar20_dropped.phy +models/weapons/w_snip_g3sg1_mag.phy +models/weapons/w_snip_g3sg1_dropped.phy +models/weapons/w_snip_awp_mag.phy +models/weapons/w_snip_awp_dropped.phy +models/weapons/w_smg_ump45_mag.phy +models/weapons/w_smg_ump45_dropped.phy +models/weapons/w_smg_ump45.phy +models/weapons/w_smg_p90_mag.phy +models/weapons/w_smg_p90_dropped.phy +models/weapons/w_smg_p90.phy +models/weapons/w_smg_mp9_mag.phy +models/weapons/w_smg_mp9_dropped.phy +models/weapons/w_smg_mp7_mag.phy +models/weapons/w_smg_mp7_dropped.phy +models/weapons/w_smg_mp5sd_mag.phy +models/weapons/w_smg_mp5sd_dropped.phy +models/weapons/w_smg_mac10_mag.phy +models/weapons/w_smg_mac10_dropped.phy +models/weapons/w_smg_mac10.phy +models/weapons/w_smg_bizon_mag.phy +models/weapons/w_smg_bizon_dropped.phy +models/weapons/w_pist_tec9_mag.phy +models/weapons/w_pist_tec9_dropped.phy +models/weapons/w_pist_revolver_dropped.phy +models/weapons/w_pist_revolver.phy +models/weapons/w_pist_p250_mag.phy +models/weapons/w_pist_p250_dropped.phy +models/weapons/w_pist_hkp2000_mag.phy +models/weapons/w_pist_hkp2000_dropped.phy +models/weapons/w_pist_glock18_mag.phy +models/weapons/w_pist_glock18_dropped.phy +models/weapons/w_pist_fiveseven_mag.phy +models/weapons/w_pist_fiveseven_dropped.phy +models/weapons/w_pist_elite_single.phy +models/weapons/w_pist_elite_mag.phy +models/weapons/w_pist_elite_dropped.phy +models/weapons/w_pist_elite.phy +models/weapons/w_pist_deagle_mag.phy +models/weapons/w_pist_deagle_dropped.phy +models/weapons/w_pist_cz_75_mag.phy +models/weapons/w_pist_cz_75_dropped.phy +models/weapons/w_pist_cz_75.phy +models/weapons/w_pist_223_mag.phy +models/weapons/w_pist_223_dropped.phy +models/weapons/w_pist_223.phy models/weapons/w_mach_negev_mag.phy models/weapons/w_mach_negev_dropped.phy models/weapons/w_mach_negev.phy @@ -29035,91 +29363,187 @@ models/weapons/w_knife_gypsy_jackknife_dropped.phy models/weapons/w_knife_gut_dropped.phy models/weapons/w_defuser_display.phy models/weapons/w_defuser.phy -models/weapons/w_snip_ssg08_mag.phy -models/weapons/w_snip_ssg08_dropped.phy -models/weapons/w_snip_scar20_mag.phy -models/weapons/w_snip_scar20_dropped.phy -models/weapons/w_snip_g3sg1_mag.phy -models/weapons/w_snip_g3sg1_dropped.phy -models/weapons/w_snip_awp_mag.phy -models/weapons/w_snip_awp_dropped.phy -models/weapons/w_smg_ump45_mag.phy -models/weapons/w_smg_ump45_dropped.phy -models/weapons/w_smg_ump45.phy -models/weapons/w_smg_p90_mag.phy -models/weapons/w_smg_p90_dropped.phy -models/weapons/w_smg_p90.phy -models/weapons/w_smg_mp9_mag.phy -models/weapons/w_smg_mp9_dropped.phy -models/weapons/w_smg_mp7_mag.phy -models/weapons/w_smg_mp7_dropped.phy -models/weapons/w_smg_mp5sd_mag.phy -models/weapons/w_smg_mp5sd_dropped.phy -models/weapons/w_smg_mac10_mag.phy -models/weapons/w_smg_mac10_dropped.phy -models/weapons/w_smg_mac10.phy -models/weapons/w_smg_bizon_mag.phy -models/weapons/w_smg_bizon_dropped.phy -models/weapons/w_hammer_dropped.phy -models/weapons/w_eq_taser.phy -models/weapons/w_eq_tablet_dropped.phy -models/weapons/w_eq_snowball_dropped.phy -models/weapons/w_eq_smokegrenade_thrown.phy -models/weapons/w_eq_smokegrenade_dropped.phy -models/weapons/w_eq_smokegrenade.phy -models/weapons/w_eq_sensorgrenade_thrown.phy -models/weapons/w_eq_sensorgrenade_dropped.phy -models/weapons/w_eq_molotov_thrown.phy -models/weapons/w_eq_molotov_dropped.phy -models/weapons/w_eq_molotov.phy -models/weapons/w_eq_incendiarygrenade_thrown.phy -models/weapons/w_eq_incendiarygrenade_dropped.phy -models/weapons/w_eq_incendiarygrenade.phy -models/weapons/w_eq_healthshot_dropped.phy -models/weapons/w_eq_healthshot.phy -models/weapons/w_eq_fraggrenade_thrown.phy -models/weapons/w_eq_fraggrenade_dropped.phy -models/weapons/w_eq_fraggrenade.phy -models/weapons/w_eq_flashbang_thrown.phy -models/weapons/w_eq_flashbang_dropped.phy -models/weapons/w_eq_flashbang.phy -models/weapons/w_eq_eholster_elite.phy -models/weapons/w_eq_eholster.phy -models/weapons/w_eq_decoy_thrown.phy -models/weapons/w_eq_decoy_dropped.phy -models/weapons/w_eq_decoy.phy -models/weapons/w_eq_charge_dropped.phy -models/weapons/w_c4_planted.phy models/weapons/w_axe_dropped.phy -models/weapons/w_pist_tec9_mag.phy -models/weapons/w_pist_tec9_dropped.phy -models/weapons/w_pist_revolver_dropped.phy -models/weapons/w_pist_revolver.phy -models/weapons/w_pist_p250_mag.phy -models/weapons/w_pist_p250_dropped.phy -models/weapons/w_pist_hkp2000_mag.phy -models/weapons/w_pist_hkp2000_dropped.phy -models/weapons/w_pist_glock18_mag.phy -models/weapons/w_pist_glock18_dropped.phy -models/weapons/w_pist_fiveseven_mag.phy -models/weapons/w_pist_fiveseven_dropped.phy -models/weapons/w_pist_elite_single.phy -models/weapons/w_pist_elite_mag.phy -models/weapons/w_pist_elite_dropped.phy -models/weapons/w_pist_elite.phy -models/weapons/w_pist_deagle_mag.phy -models/weapons/w_pist_deagle_dropped.phy -models/weapons/w_pist_cz_75_mag.phy -models/weapons/w_pist_cz_75_dropped.phy -models/weapons/w_pist_cz_75.phy -models/weapons/w_pist_223_mag.phy -models/weapons/w_pist_223_dropped.phy -models/weapons/w_pist_223.phy models/weapons/w_spanner_dropped.phy models/weapons/w_shot_xm1014_mag.phy models/weapons/w_shot_xm1014_dropped.phy models/weapons/w_shot_sawedoff_mag.phy models/weapons/w_shot_sawedoff_dropped.phy +materials/particle/playerping/playerping_ring.vmt +materials/particle/playerping/playerping_dot_outline.vmt +materials/particle/playerping/playerping_dot.vmt +materials/particle/playerping/playerping_arrow_outline.vmt +materials/particle/playerping/playerping_arrow.vmt +materials/models/weapons/w_models/w_eq_shield/shield_gibs.vmt +materials/models/weapons/w_models/w_eq_shield/shield.vmt +materials/models/weapons/v_models/shield/shield.vmt +materials/models/weapons/v_models/bump_mine/bump_mine_glow.vmt +materials/models/weapons/v_models/bump_mine/bump_mine_color.vmt +materials/models/props/dust_massive/towers/guard_tower001_color.vmt +materials/models/props/dust_massive/towers/broadcast_tower001_color.vmt +materials/models/props/dust_massive/stairs/stairs_02_color.vmt +materials/models/props/dust_massive/stairs/base_stairs_01.vmt +materials/models/props/dust_massive/skybox/skydome_clouds_02.vmt +materials/models/props/dust_massive/skybox/sky_dust_massive.vmt +materials/models/props/dust_massive/signs/sign_logo001.vmt +materials/models/props/dust_massive/roof/military_base_roof_01.vmt +materials/models/props/dust_massive/rock/underwater_rock001_normal.vmt +materials/models/props/dust_massive/rock/underwater_rock001_color.vmt +materials/models/props/dust_massive/rock/cliff_wall006_normal.vmt +materials/models/props/dust_massive/rock/cliff_wall006_color.vmt +materials/models/props/dust_massive/rock/cliff_wall005_normal.vmt +materials/models/props/dust_massive/rock/cliff_wall005_color.vmt +materials/models/props/dust_massive/rock/cliff_wall004_normal.vmt +materials/models/props/dust_massive/rock/cliff_wall004_color.vmt +materials/models/props/dust_massive/rock/cliff_wall003_normal.vmt +materials/models/props/dust_massive/rock/cliff_wall003_color.vmt +materials/models/props/dust_massive/rock/cliff_wall002_normal.vmt +materials/models/props/dust_massive/rock/cliff_wall002_color.vmt +materials/models/props/dust_massive/rock/cliff_wall001_normal.vmt +materials/models/props/dust_massive/rock/cliff_wall001_color.vmt +materials/models/props/dust_massive/rock/cliff_rock003_normal.vmt +materials/models/props/dust_massive/rock/cliff_rock003_color.vmt +materials/models/props/dust_massive/rock/cliff_rock002_normal.vmt +materials/models/props/dust_massive/rock/cliff_rock002_color.vmt +materials/models/props/dust_massive/rock/cliff_rock001_normal.vmt +materials/models/props/dust_massive/rock/cliff_rock001_color.vmt +materials/models/props/dust_massive/oil_drum/oil_drum_color.vmt +materials/models/props/dust_massive/front_loader/front_loader_color.vmt +materials/models/props/dust_massive/front_loader/front_loader_02_color.vmt +materials/models/props/dust_massive/docks/radar_dome_platform_skybox_cheap001_color.vmt +materials/models/props/dust_massive/docks/radar_dome_platform001c_color.vmt +materials/models/props/dust_massive/docks/radar_dome_platform001b_color.vmt +materials/models/props/dust_massive/docks/radar_dome_platform001a_color.vmt +materials/models/props/dust_massive/docks/radar_dome_pipe_platform001a_color.vmt +materials/models/props/dust_massive/docks/radar_dome_pipe001d_color.vmt +materials/models/props/dust_massive/docks/radar_dome_pipe001c_color.vmt +materials/models/props/dust_massive/docks/radar_dome_pipe001b_color.vmt +materials/models/props/dust_massive/docks/radar_dome_pipe001_color.vmt +materials/models/props/dust_massive/docks/radar_dome_parts002_color.vmt +materials/models/props/dust_massive/docks/radar_dome_parts001_color.vmt +materials/models/props/dust_massive/docks/radar_dome_dolphin001_color.vmt +materials/models/props/dust_massive/docks/radar_dome001_color.vmt +materials/models/props/dust_massive/docks/dock_stairs001_color.vmt +materials/models/props/dust_massive/docks/dock_pylon001_color.vmt +materials/models/props/dust_massive/docks/dock_dolphin001_color.vmt +materials/models/props/dust_massive/debris/dust_debris.vmt +materials/models/props/dust_massive/debris/dust_broken_roof_03.vmt +materials/models/props/dust_massive/debris/dust_broken_roof_02.vmt +materials/models/props/dust_massive/debris/dust_broken_roof.vmt +materials/models/props/dust_massive/dam/dam_color.vmt +materials/models/props/dust_massive/cargo_container_square/cargo_container_paint.vmt +materials/models/props/dust_massive/buoy/buoy001_normal.vmt +materials/models/props/dust_massive/buoy/buoy001_color.vmt +materials/models/props/dust_massive/buildings/lighthouse_01.vmt +materials/models/props/dust_massive/bridges/metal_bridge_frame_color.vmt +materials/models/props/dust_massive/bridges/concrete_bridge_arch_color.vmt +materials/models/props/dust_massive/bridges/concrete_bridge_arch_02_color.vmt +materials/models/props/dust_massive/bridges/bridge_pier_color.vmt +materials/models/props/dust_massive/boats/row_boat002.vmt +materials/models/props/dust_massive/boats/row_boat001.vmt +materials/models/props/dust_massive/blimp/blimp001_color.vmt +materials/models/props/dust_massive/beachwaves_dust/beachwaves_dust.vmt +materials/models/props/dust_massive/barge/crane_cockpit_color.vmt +materials/models/props/dust_massive/barge/crane_arm_color.vmt +materials/models/props/dust_massive/barge/barge_03_color.vmt +materials/models/props/dust_massive/barge/barge_02_color.vmt +materials/models/props/dust_massive/barge/barge_01_color.vmt +materials/models/props/dust_massive/apc/apc_wreck_wheel_color.vmt +materials/models/props/dust_massive/apc/apc_wreck_color.vmt +materials/dust_massive/dust_massive_water_underground.vmt +materials/dust_massive/dust_massive_water_skybox_dark.vmt +materials/dust_massive/dust_massive_water_marsh_dark.vmt +materials/dust_massive/dust_massive_water_marsh.vmt +materials/dust_massive/dust_massive_water_dark.vmt +materials/dust_massive/dust_massive_water.vmt +materials/dust_massive/dust_massive_megatexture_02.vmt +materials/dust_massive/skybox_horizon_fade.vmt +materials/dust_massive/sign_warning_01.vmt +materials/dust_massive/sewage_gunk_overlay.vmt +materials/dust_massive/road_02_edge_transparent.vmt +materials/dust_massive/road_01_transparent_end.vmt +materials/dust_massive/road_01_transparent.vmt +materials/dust_massive/road_01_edge_transparent.vmt +materials/dust_massive/road_01.vmt +materials/dust_massive/overlay_sign_south.vmt +materials/dust_massive/overlay_sign_north.vmt +materials/dust_massive/overlay_sign_east.vmt +materials/dust_massive/overlay_sand_ground_01.vmt +materials/dust_massive/overlay_numbers_1_09.vmt +materials/dust_massive/overlay_numbers_1_08.vmt +materials/dust_massive/overlay_numbers_1_07.vmt +materials/dust_massive/overlay_numbers_1_06.vmt +materials/dust_massive/overlay_numbers_1_05.vmt +materials/dust_massive/overlay_numbers_1_04.vmt +materials/dust_massive/overlay_numbers_1_03.vmt +materials/dust_massive/overlay_numbers_1_02.vmt +materials/dust_massive/overlay_numbers_1_01.vmt +materials/dust_massive/overlay_helipad.vmt +materials/dust_massive/overlay_exit_south_r.vmt +materials/dust_massive/overlay_exit_north_r.vmt +materials/dust_massive/overlay_exit_east_r.vmt +materials/dust_massive/overlay_checkered_01.vmt +materials/dust_massive/metal_silo001.vmt +materials/dust_massive/light_glow_nofog.vmt +materials/dust_massive/kasbah_mudbrick_01.vmt +materials/dust_massive/dust_tile_03.vmt +materials/dust_massive/dust_tile_02.vmt +materials/dust_massive/dust_tile_01.vmt +materials/dust_massive/dust_plaster_17.vmt +materials/dust_massive/dust_massive_water_skybox.vmt +materials/dust_massive/dust_massive_water_marsh_cheap.vmt +materials/dust_massive/dust_massive_water_cheap.vmt +materials/dust_massive/dust_massive_rock_01.vmt +materials/dust_massive/dust_massive_overview.vmt +materials/dust_massive/dust_massive_megatexture_01c.vmt +materials/dust_massive/dust_massive_megatexture_01b.vmt +materials/dust_massive/dust_massive_megatexture_01_nograss.vmt +materials/dust_massive/dust_massive_megatexture_01.vmt +materials/dust_massive/dust_massive_ground_sand_01.vmt +materials/dust_massive/dust_massive_ground_rock_01.vmt +materials/dust_massive/dust_massive_concrete_wall_03.vmt +materials/dust_massive/dust_massive_concrete_wall_02.vmt +materials/dust_massive/dust_massive_concrete_wall_01.vmt +materials/dust_massive/dust_massive_concrete_ground_01.vmt +materials/dust_massive/dust_graffiti_waves_01.vmt +materials/dust_massive/dust_cinderblock_checkered_01.vmt +materials/dust_massive/dock_grate001.vmt +materials/dust_massive/blend_stone_sand_01.vmt +materials/dust_massive/blend_rock_sand_01.vmt +materials/dust_massive/blend_mudbrick-plaster_02_base.vmt +materials/dust_massive/blend_mudbrick-plaster_02.vmt +materials/dust_massive/blend_concrete_wall_01.vmt +materials/dust_massive/blend_concrete_ground_01.vmt +materials/dust_massive/blend_mudbrick-plaster_base.vmt +materials/models/props/de_vertigo/construction_elevator/construction_elevator_support_2.vmt +materials/models/props/de_vertigo/construction_elevator/construction_elevator_support.vmt +materials/models/props/de_vertigo/construction_elevator/construction_elevator_chain.vmt +materials/models/props/de_vertigo/construction_elevator/construction_elevator_1.vmt +materials/models/props/de_train/hr_t/train_car_d/train_car_d_details.vmt +materials/models/props/de_train/hr_t/train_car_d/train_car_d.vmt +materials/models/weapons/customization/stickers/feral_predators/toxic_glossy.vmt +materials/models/weapons/customization/stickers/feral_predators/toxic_foil.vmt +materials/models/weapons/customization/stickers/feral_predators/scavenger_holo.vmt +materials/models/weapons/customization/stickers/feral_predators/scavenger_glossy.vmt +materials/models/weapons/customization/stickers/feral_predators/one_sting_holo.vmt +materials/models/weapons/customization/stickers/feral_predators/one_sting_glossy.vmt +materials/models/weapons/customization/stickers/feral_predators/lurker_glossy.vmt +materials/models/weapons/customization/stickers/feral_predators/lurker_foil.vmt +materials/models/weapons/customization/stickers/feral_predators/free_hugs_holo.vmt +materials/models/weapons/customization/stickers/feral_predators/free_hugs_glossy.vmt +materials/models/weapons/customization/stickers/feral_predators/first_blood_holo.vmt +materials/models/weapons/customization/stickers/feral_predators/first_blood_glossy.vmt +materials/models/weapons/customization/stickers/feral_predators/cluck_holo.vmt +materials/models/weapons/customization/stickers/feral_predators/cluck_glossy.vmt +materials/models/weapons/customization/stickers/feral_predators/bite_me_glossy.vmt +materials/models/weapons/customization/stickers/feral_predators/bite_me_foil.vmt +materials/models/weapons/customization/stickers/feral_predators/baited_holo.vmt +materials/models/weapons/customization/stickers/feral_predators/baited_glossy.vmt +materials/models/props/hr_vertigo/floor_grinder/floor_grinder_color.vmt +materials/models/props/de_vertigo/ibc/ibc_1_plastic.vmt +materials/models/props/de_vertigo/ibc/ibc_1_metal.vmt +materials/models/inventory_items/music_kit/theverkkars_01/mp3_detail.vmt +materials/models/inventory_items/music_kit/theverkkars_01/mp3_screen.vmt materials/models/props/hr_vertigo/vertigo_support_jack/support_jack_color.vmt materials/models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_color.vmt materials/models/props/hr_vertigo/vertigo_railing_platform/vertigo_railing_platform_color.vmt @@ -29661,6 +30085,16 @@ materials/models/weapons/w_models/w_eq_tablet/tablet_upgrade2.vmt materials/models/weapons/w_models/w_eq_tablet/tablet_upgrade1.vmt materials/models/weapons/w_models/w_eq_tablet/tablet_upgrade0.vmt materials/models/weapons/w_models/w_eq_tablet/tablet.vmt +materials/models/weapons/v_models/tablet/tablet_screen_highres.vmt +materials/models/weapons/v_models/tablet/tablet_screen.vmt +materials/models/weapons/v_models/tablet/tablet_panolayer.vmt +materials/models/weapons/v_models/tablet/tablet_drone_teammate.vmt +materials/models/weapons/v_models/tablet/tablet_drone_tag.vmt +materials/models/weapons/v_models/tablet/tablet_drone_select.vmt +materials/models/weapons/v_models/tablet/tablet_drone_reticle.vmt +materials/models/weapons/v_models/tablet/tablet_drone_point.vmt +materials/models/weapons/v_models/tablet/tablet_drone_claw.vmt +materials/models/weapons/v_models/tablet/tablet_crate.vmt materials/models/weapons/v_models/tablet/tablet_zone_wash.vmt materials/models/weapons/v_models/tablet/tablet_zone_prediction.vmt materials/models/weapons/v_models/tablet/tablet_zone_overlay_prediction.vmt @@ -29678,10 +30112,8 @@ materials/models/weapons/v_models/tablet/tablet_upgrade_card_drone.vmt materials/models/weapons/v_models/tablet/tablet_upgrade_card_contacts.vmt materials/models/weapons/v_models/tablet/tablet_teammate.vmt materials/models/weapons/v_models/tablet/tablet_tag.vmt -materials/models/weapons/v_models/tablet/tablet_screen_highres.vmt materials/models/weapons/v_models/tablet/tablet_screen_buylight.vmt materials/models/weapons/v_models/tablet/tablet_screen_backdrop.vmt -materials/models/weapons/v_models/tablet/tablet_screen.vmt materials/models/weapons/v_models/tablet/tablet_scan_paid.vmt materials/models/weapons/v_models/tablet/tablet_scan_map.vmt materials/models/weapons/v_models/tablet/tablet_scan_bg.vmt @@ -29751,6 +30183,7 @@ materials/models/weapons/shared/paracord/paracord01.vmt materials/models/weapons/shared/paracord/descender.vmt materials/models/weapons/shared/paracord/carabiner.vmt materials/models/weapons/customization/stickers/danger_zone/blacksite_foil.vmt +materials/models/props_survival/upgrades/exojump.vmt materials/models/props_survival/upgrades/parachutepack.vmt materials/models/props_survival/upgrades/dz_armor.vmt materials/models/props_survival/safe/safe_explosives_lights.vmt @@ -29771,13 +30204,13 @@ materials/models/props_survival/drone/br_drone.vmt materials/models/props_survival/crates/ammobox_can.vmt materials/models/props_survival/crates/ammobox_empty.vmt materials/models/props_survival/crates/ammobox.vmt -materials/models/props_survival/counter/counter_frame.vmt materials/models/props_survival/counter/counter_digit_thousands.vmt materials/models/props_survival/counter/counter_digit_tenthousands.vmt materials/models/props_survival/counter/counter_digit_tens.vmt materials/models/props_survival/counter/counter_digit_ones.vmt materials/models/props_survival/counter/counter_digit_hundredthousands.vmt materials/models/props_survival/counter/counter_digit_hundreds.vmt +materials/models/props_survival/counter/counter_frame.vmt materials/models/props_survival/cash/prop_cash_stack.vmt materials/models/props_survival/cash/dufflebag.vmt materials/models/props_survival/briefcase/briefcase_color.vmt @@ -29973,7 +30406,7 @@ materials/models/props/hr_massive/beach_rock_1/beach_rock_1.vmt materials/models/props/hr_massive/barrel/barrel_c.vmt materials/models/props/hr_massive/barrel/barrel_b.vmt materials/models/props/hr_massive/barrel/barrel.vmt -materials/models/props_survival/cases/case_explosive_color_damage_proxy.vmt +materials/models/props_survival/cases/case_random_drop_beacon_glow.vmt materials/models/props_survival/cases/case_weapon_light_color_damage_proxy.vmt materials/models/props_survival/cases/case_weapon_heavy_color_damage_proxy.vmt materials/models/props_survival/cases/case_tools_heavy_color_damage_proxy.vmt @@ -29982,7 +30415,7 @@ materials/models/props_survival/cases/case_random_drop_color_damage_proxy.vmt materials/models/props_survival/cases/case_pistol_heavy_color_damage_proxy.vmt materials/models/props_survival/cases/case_pistol_color_damage_proxy.vmt materials/models/props_survival/cases/case_paradrop_color_damage_proxy.vmt -materials/models/props_survival/cases/case_random_drop_beacon_glow.vmt +materials/models/props_survival/cases/case_explosive_color_damage_proxy.vmt materials/models/props_survival/cases/paradrop_chute_color.vmt materials/models/props_survival/cases/case_weapon_light_color_damaged.vmt materials/models/props_survival/cases/case_weapon_light_color.vmt @@ -30026,7 +30459,11 @@ materials/models/props/hr_massive/foliage_ported/fir_branch_2.vmt materials/models/props/hr_massive/foliage_ported/fir_branch_1.vmt materials/models/props/hr_massive/foliage_ported/fir_bark_1.vmt materials/models/props/hr_massive/foliage_ported/trees_farm_1.vmt -materials/hr_massive/signage_katowice2019_showmatch.vmt +materials/hr_massive/town_tile_1_blend_1.vmt +materials/hr_massive/survival_island_4wayblend_3.vmt +materials/hr_massive/survival_island_4wayblend_2.vmt +materials/hr_massive/survival_island_4wayblend_1.vmt +materials/hr_massive/enclave_sea_foam.vmt materials/hr_massive/rock_wall_2_4wayblend_1.vmt materials/hr_massive/mud_ground_1_blend_3.vmt materials/hr_massive/mud_ground_1_blend_2.vmt @@ -30043,10 +30480,7 @@ materials/hr_massive/broken_road_1_blend_1.vmt materials/hr_massive/broken_road_1_4wayblend_1.vmt materials/hr_massive/beach_sand_4_blend_1.vmt materials/hr_massive/beach_sand_1_blend_3.vmt -materials/hr_massive/town_tile_1_blend_1.vmt -materials/hr_massive/survival_island_4wayblend_3.vmt -materials/hr_massive/survival_island_4wayblend_2.vmt -materials/hr_massive/survival_island_4wayblend_1.vmt +materials/hr_massive/signage_katowice2019_showmatch.vmt materials/hr_massive/wood_siding_1_yellow_damaged.vmt materials/hr_massive/wood_siding_1_yellow_blend.vmt materials/hr_massive/wood_siding_1_tan.vmt @@ -30248,7 +30682,6 @@ materials/hr_massive/experiment_decal_03.vmt materials/hr_massive/experiment_decal_02.vmt materials/hr_massive/experiment_decal_01.vmt materials/hr_massive/enclave_sea_foam_03.vmt -materials/hr_massive/enclave_sea_foam.vmt materials/hr_massive/dirt_ground_1b_nograss.vmt materials/hr_massive/dirt_ground_1b.vmt materials/hr_massive/dirt_ground_1_blend_3_grass.vmt @@ -30317,6 +30750,7 @@ materials/hr_massive/beach_sand_1.vmt materials/models/player/custom_player/econ/body/tm_jumpsuit/jumpsuit_pants.vmt materials/models/player/custom_player/econ/body/tm_jumpsuit/jumpsuit_legs.vmt materials/models/player/custom_player/econ/body/tm_jumpsuit/jumpsuit_body.vmt +materials/models/weapons/customization/stickers/skillgroup_capsule/global_elite_normal.vmt materials/models/weapons/customization/stickers/skillgroup_capsule/smfc_holo.vmt materials/models/weapons/customization/stickers/skillgroup_capsule/smfc.vmt materials/models/weapons/customization/stickers/skillgroup_capsule/silver_normal.vmt @@ -30334,11 +30768,9 @@ materials/models/weapons/customization/stickers/skillgroup_capsule/gold_nova.vmt materials/models/weapons/customization/stickers/skillgroup_capsule/global_elite.vmt materials/models/weapons/customization/stickers/skillgroup_capsule/dmg_holo.vmt materials/models/weapons/customization/stickers/skillgroup_capsule/dmg.vmt -materials/models/weapons/customization/stickers/skillgroup_capsule/global_elite_normal.vmt materials/models/weapons/w_models/w_knife_flip/ghost/knife_flip_ghost.vmt materials/models/weapons/v_models/knife_flip/ghost/knife_flip_ghost.vmt materials/models/weapons/v_models/arms/ghost/ghost_arms.vmt -materials/models/player/custom_player/econ/head/ctm_fbi/tm_leet_v2_head_variantb.vmt materials/models/player/custom_player/econ/head/ctm_fbi/ctm_fbi_v2_head_variantc.vmt materials/models/player/custom_player/econ/head/ctm_fbi/ctm_fbi_v2_head_variantb.vmt materials/models/player/custom_player/econ/head/ctm_fbi/ctm_fbi_v2_head_varianta.vmt @@ -31453,6 +31885,8 @@ materials/models/inventory_items/service_medal_2018/glass_lvl4.vmt materials/models/inventory_items/service_medal_2018/glass_lvl3.vmt materials/models/inventory_items/service_medal_2018/glass_lvl2.vmt materials/models/inventory_items/service_medal_2018/glass_lvl1.vmt +materials/models/props/de_dust/hr_dust/dust_soccerball/soccer_goal_color.vmt +materials/models/props/de_dust/hr_dust/dust_soccerball/soccer_goal_chainlink_color.vmt materials/models/props/de_dust/hr_dust/dust_soccerball/soccerball001_pumpkin_color.vmt materials/models/props/de_dust/hr_dust/dust_soccerball/soccerball001_color.vmt materials/models/props/de_dust/hr_dust/wooden_structures/wooden_structure_2.vmt @@ -31481,6 +31915,7 @@ materials/models/props/de_dust/hr_dust/dust_wall_braces/dust_wall_braces_color.v materials/models/props/de_dust/hr_dust/dust_wall_braces/dust_wall_braces_arch_color_low.vmt materials/models/props/de_dust/hr_dust/dust_wall_braces/dust_wall_braces_arch_color.vmt materials/models/props/de_dust/hr_dust/dust_vents/dust_wall_vents_01.vmt +materials/models/props/de_dust/hr_dust/dust_vehicles/dust_300d2_color.vmt materials/models/props/de_dust/hr_dust/dust_vehicles/dust_vehicle_glass_opaque_color.vmt materials/models/props/de_dust/hr_dust/dust_vehicles/dust_vehicle_glass_color.vmt materials/models/props/de_dust/hr_dust/dust_vehicles/dust_r5_color.vmt @@ -31536,6 +31971,7 @@ materials/models/props/de_dust/hr_dust/dust_trims/dust_trim_decoractive_01.vmt materials/models/props/de_dust/hr_dust/dust_trap_door/dust_trap_door_color.vmt materials/models/props/de_dust/hr_dust/dust_tire/hr_dust_tire001_normal.vmt materials/models/props/de_dust/hr_dust/dust_tire/hr_dust_tire001_color.vmt +materials/models/props/de_dust/hr_dust/dust_skybox/sky_dust_massive.vmt materials/models/props/de_dust/hr_dust/dust_skybox/sky_dust2.vmt materials/models/props/de_dust/hr_dust/dust_skybox/hr_dust_skybox_buildings_combined_01.vmt materials/models/props/de_dust/hr_dust/dust_skybox/hr_dust_skybox_buildings_02.vmt @@ -31589,6 +32025,7 @@ materials/models/props/de_dust/hr_dust/dust_manholes/dust_manhole_01_color.vmt materials/models/props/de_dust/hr_dust/dust_lights/street_lantern_03/street_lantern_03_color.vmt materials/models/props/de_dust/hr_dust/dust_lights/street_lantern_02/street_lantern_02_on_color.vmt materials/models/props/de_dust/hr_dust/dust_lights/street_lantern_02/street_lantern_02_color.vmt +materials/models/props/de_dust/hr_dust/dust_lights/street_lantern_01/street_lantern_01_on_color.vmt materials/models/props/de_dust/hr_dust/dust_lights/street_lantern_01/street_lantern_01_color.vmt materials/models/props/de_dust/hr_dust/dust_lights/street_lamp_03/street_lamp_03_color.vmt materials/models/props/de_dust/hr_dust/dust_lights/street_lamp_02/street_lamp_02_on_color.vmt @@ -31712,10 +32149,13 @@ materials/models/props/de_dust/hr_dust/dust_access_panels/dust_access_panel_02_c materials/models/props/de_dust/hr_dust/dust_access_panels/dust_access_panel_01_color.vmt materials/models/props/de_dust/hr_dust/dust_ac_unit/dust_ac_unit_color.vmt materials/models/props/de_dust/hr_dust/balcony_railing_set/balcony_railing_set_color.vmt -materials/models/props/de_dust/hr_dust/foliage/sumac_01.vmt materials/models/props/de_dust/hr_dust/foliage/palm_frond_02.vmt materials/models/props/de_dust/hr_dust/foliage/palm_frond_01.vmt materials/models/props/de_dust/hr_dust/foliage/olive_branch_01.vmt +materials/models/props/de_dust/hr_dust/foliage/olive_bark_01.vmt +materials/models/props/de_dust/hr_dust/foliage/barberry_02.vmt +materials/models/props/de_dust/hr_dust/foliage/zebra_grass_01.vmt +materials/models/props/de_dust/hr_dust/foliage/sumac_01.vmt materials/models/props/de_dust/hr_dust/foliage/yarrow_weed_01.vmt materials/models/props/de_dust/hr_dust/foliage/weeds_cressa_01.vmt materials/models/props/de_dust/hr_dust/foliage/sagebrush_01.vmt @@ -31723,7 +32163,6 @@ materials/models/props/de_dust/hr_dust/foliage/potted_plant_02.vmt materials/models/props/de_dust/hr_dust/foliage/potted_plant_01.vmt materials/models/props/de_dust/hr_dust/foliage/palm_treecard_01.vmt materials/models/props/de_dust/hr_dust/foliage/palm_bark_01.vmt -materials/models/props/de_dust/hr_dust/foliage/olive_bark_01.vmt materials/models/props/de_dust/hr_dust/foliage/locust_01.vmt materials/models/props/de_dust/hr_dust/foliage/grape_leaves_01.vmt materials/models/props/de_dust/hr_dust/foliage/dust_weeds_02a.vmt @@ -31731,7 +32170,6 @@ materials/models/props/de_dust/hr_dust/foliage/dust_weeds_02.vmt materials/models/props/de_dust/hr_dust/foliage/dust_weeds_01.vmt materials/models/props/de_dust/hr_dust/foliage/banana_leaf_01.vmt materials/models/props/de_dust/hr_dust/foliage/agave_plant_01.vmt -materials/models/props/de_dust/hr_dust/foliage/zebra_grass_01.vmt materials/de_dust/hr_dust/hr_dust_sand_02.vmt materials/de_dust/hr_dust/hr_dust_sand_01.vmt materials/de_dust/hr_dust/hr_dust_plaster_13b.vmt @@ -31889,6 +32327,7 @@ materials/models/player/custom_player/econ/head/tm_leet/tm_leet_v2_shemagh_varia materials/models/player/custom_player/econ/head/tm_leet/tm_leet_v2_head_variantc.vmt materials/models/player/custom_player/econ/head/tm_leet/tm_leet_v2_head_variantb.vmt materials/models/player/custom_player/econ/head/tm_leet/tm_leet_v2_head_varianta.vmt +materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_variantd.vmt materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_variantc.vmt materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_variantb.vmt materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_varianta.vmt @@ -31897,7 +32336,6 @@ materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_body_variantd materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_body_variantc.vmt materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_body_variantb.vmt materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_body_varianta.vmt -materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_variantd.vmt materials/models/weapons/customization/stickers/illuminate_capsule_02/red_koi_holo.vmt materials/models/weapons/customization/stickers/illuminate_capsule_02/zombie.vmt materials/models/weapons/customization/stickers/illuminate_capsule_02/swallow_2.vmt @@ -32539,7 +32977,6 @@ materials/models/player/custom_player/econ/head/tm_phoenix/tm_phoenix_v2_balacla materials/models/player/custom_player/econ/head/tm_phoenix/tm_phoenix_v2_balaclava_variantb.vmt materials/models/player/custom_player/econ/head/tm_phoenix/tm_phoenix_v2_balaclava_varianta_103.vmt materials/models/player/custom_player/econ/head/tm_phoenix/tm_phoenix_v2_balaclava_varianta.vmt -materials/models/player/custom_player/econ/body/tm_phoenix/tm_jumpsuit_darkvest.vmt materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_legs_variantc.vmt materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_legs_variantb.vmt materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_legs_varianta.vmt @@ -32548,6 +32985,7 @@ materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_va materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_variantc.vmt materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_variantb.vmt materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_varianta.vmt +materials/models/player/custom_player/econ/body/tm_phoenix/tm_jumpsuit_darkvest.vmt materials/models/weapons/customization/stickers/atlanta2017/vp_holo.vmt materials/models/weapons/customization/stickers/atlanta2017/vp_gold.vmt materials/models/weapons/customization/stickers/atlanta2017/vp_foil.vmt @@ -36166,6 +36604,12 @@ materials/sprites/640_pain_up.vmt materials/sprites/640_pain_right.vmt materials/sprites/640_pain_left.vmt materials/sprites/640_pain_down.vmt +materials/skybox/dustblankup.vmt +materials/skybox/dustblankrt.vmt +materials/skybox/dustblanklf.vmt +materials/skybox/dustblankft.vmt +materials/skybox/dustblankdn.vmt +materials/skybox/dustblankbk.vmt materials/skybox/hr_dust_ground_sand_skybox.vmt materials/skybox/sky_veniceup.vmt materials/skybox/sky_venicert.vmt @@ -36532,6 +36976,7 @@ materials/particle/particle_flares/aircraft_white_noignorez.vmt materials/particle/particle_flares/aircraft_white.vmt materials/particle/particle_flares/aircraft_red.vmt materials/particle/particle_flares/aircraft_green.vmt +materials/particle/particle_debris_burst/debris_motes.vmt materials/particle/particle_debris_burst/particle_debris_burst_003.vmt materials/particle/particle_debris_burst/particle_debris_burst_002_add.vmt materials/particle/particle_debris_burst/particle_debris_burst_002.vmt @@ -36653,6 +37098,13 @@ materials/overlays/german_signs/german_posters_wall_color.vmt materials/overlays/german_signs/german_posters.vmt materials/overlays/german_signs/german_construction_company.vmt materials/overlays/german_signs/german_billboard_01.vmt +materials/overlays/survival_road_overlay.vmt +materials/overlays/survival_road_cap_overlay.vmt +materials/overlays/survival_hostage_zone.vmt +materials/overlays/survival_hostage_arrow.vmt +materials/overlays/survival_dust_accumulation_overlay.vmt +materials/overlays/shorelap.vmt +materials/overlays/overlay_drywall_paint_color.vmt materials/overlays/vertigo_sign_overlay.vmt materials/overlays/vertigo_sign_hat_overlay.vmt materials/overlays/vertigo_sign_fall_overlay.vmt @@ -36865,6 +37317,7 @@ materials/models/weapons/w_models/w_eq_eholster/w_eq_eholster.vmt materials/models/weapons/w_models/w_eq_defuser/w_eq_defuser_display.vmt materials/models/weapons/w_models/w_eq_defuser/w_eq_multimeter.vmt materials/models/weapons/w_models/w_eq_defuser/w_eq_defuser.vmt +materials/models/weapons/w_models/w_c4/c4_light.vmt materials/models/weapons/w_models/w_c4/c4_switch.vmt materials/models/weapons/w_models/w_c4/c4.vmt materials/models/weapons/v_models/snip_ssg08/glass.vmt @@ -39537,7 +39990,6 @@ materials/models/player/ct_gign/ctm_gign_head_variantc.vmt materials/models/player/ct_gign/ctm_gign_head_variantb.vmt materials/models/player/ct_gign/ctm_gign_head_varianta.vmt materials/models/player/ct_gign/ctm_gign_head.vmt -materials/models/player/ct_fbi/tm_leet_v2_head_variantb.vmt materials/models/player/ct_fbi/ctm_fbi_shared.vmt materials/models/player/ct_fbi/ct_fbi_upperbody.vmt materials/models/player/ct_fbi/ct_fbi_lowerbody.vmt @@ -40234,6 +40686,7 @@ materials/engine/filmdust.vmt materials/engine/depthwrite.vmt materials/engine/colorcorrection.vmt materials/engine/additivevertexcolorvertexalpha.vmt +materials/effects/dronecam.vmt materials/effects/underwater_overlay.vmt materials/effects/timer_dots.vmt materials/effects/timer_60frames.vmt @@ -40452,6 +40905,7 @@ materials/editor/addlight1.vmt materials/editor/addlight0.vmt materials/editor/addlight.vmt materials/dry_wall/hr_dw/dry_wall_a.vmt +materials/detail/dust_massive_detail_sprites.vmt materials/detail/detailsprites_survival.vmt materials/detail/detailsprites_overgrown_massive9.vmt materials/detail/detailsprites_overgrown.vmt @@ -40530,6 +40984,10 @@ materials/decals/plaster/plaster02_subrect.vmt materials/decals/plaster/plaster02.vmt materials/decals/plaster/plaster01_subrect.vmt materials/decals/plaster/plaster01.vmt +materials/decals/metal/steel04.vmt +materials/decals/metal/steel03.vmt +materials/decals/metal/steel02.vmt +materials/decals/metal/steel01.vmt materials/decals/metal/shot7_subrect.vmt materials/decals/metal/shot7.vmt materials/decals/metal/shot6_subrect.vmt @@ -40681,6 +41139,7 @@ materials/decals/asphalt/asphalt2_subrect.vmt materials/decals/asphalt/asphalt2.vmt materials/decals/asphalt/asphalt1_subrect.vmt materials/decals/asphalt/asphalt1.vmt +materials/decals/decals_mod2x.vmt materials/decals/51.vmt materials/decals/50.vmt materials/decals/poster_profumox.vmt @@ -41195,7 +41654,6 @@ materials/decals/decalsigndanger001d.vmt materials/decals/decalsigndanger001c.vmt materials/decals/decalsigndanger001a.vmt materials/decals/decalsigncaution001c.vmt -materials/decals/decals_mod2x.vmt materials/decals/decals_bulletsheet.vmt materials/decals/decalrug006a.vmt materials/decals/decalrug005a.vmt @@ -41445,6 +41903,7 @@ materials/debug/debugdecalwireframe.vmt materials/debug/debugcamerarendertarget.vmt materials/debug/debugbrushwireframe.vmt materials/debug/debugambientcube.vmt +materials/de_vertigo/metal2x4.vmt materials/de_vertigo/safety_sign_text.vmt materials/de_vertigo/safety_sign.vmt materials/de_vertigo/tv_news02.vmt @@ -42609,6 +43068,8 @@ materials/grass/hr_grass/grass_d.vmt materials/grass/hr_grass/grass_c.vmt materials/grass/hr_grass/grass_b.vmt materials/grass/hr_grass/grass_a.vmt +materials/dev/depthblur.vmt +materials/dev/dev_waterbeneath_cap.vmt materials/dev/dev_waterbeneath2.vmt materials/dev/dev_water5.vmt materials/dev/dev_water4.vmt @@ -43186,21 +43647,211 @@ particles/maps/cs_italy.pcf particles/maps/ar_monastery.pcf particles/weapons/cs_weapon_fx.pcf particles/critters/chicken.pcf -particles/screen_fx.pcf -particles/rain_fx.pcf -particles/overhead_icon_fx.pcf -particles/water_impact.pcf -particles/inferno_fx.pcf -particles/impact_fx.pcf -particles/lighting.pcf particles/footstep_fx.pcf particles/explosions_fx.pcf particles/error.pcf +particles/overhead_icon_fx.pcf +particles/survival_fx.pcf +particles/inferno_fx.pcf +particles/impact_fx.pcf particles/burning_fx.pcf +particles/screen_fx.pcf +particles/lighting.pcf +particles/rain_fx.pcf +particles/money_fx.pcf +particles/water_impact.pcf particles/ambient_fx.pcf -particles/survival_fx.pcf particles/blood_impact.pcf -particles/money_fx.pcf +materials/models/weapons/v_models/tablet/tag/tag.vtf +materials/models/props/dust_massive/towers/guard_tower001_color.vtf +materials/models/props/dust_massive/towers/broadcast_tower001_color.vtf +materials/models/props/dust_massive/stairs/stairs_02_normal.vtf +materials/models/props/dust_massive/stairs/stairs_02_color.vtf +materials/models/props/dust_massive/stairs/base_stairs_01.vtf +materials/models/props/dust_massive/skybox/skydome_clouds_02.vtf +materials/models/props/dust_massive/skybox/skybox_clouds_002.vtf +materials/models/props/dust_massive/skybox/skybox_clouds_001.vtf +materials/models/props/dust_massive/skybox/sky_dust_massive.vtf +materials/models/props/dust_massive/signs/sign_logo001.vtf +materials/models/props/dust_massive/roof/military_base_roof_01.vtf +materials/models/props/dust_massive/rock/underwater_rock001_normal.vtf +materials/models/props/dust_massive/rock/underwater_rock001_color.vtf +materials/models/props/dust_massive/rock/cliff_wall006_normal.vtf +materials/models/props/dust_massive/rock/cliff_wall006_color.vtf +materials/models/props/dust_massive/rock/cliff_wall005_normal.vtf +materials/models/props/dust_massive/rock/cliff_wall005_color.vtf +materials/models/props/dust_massive/rock/cliff_wall004_normal.vtf +materials/models/props/dust_massive/rock/cliff_wall004_color.vtf +materials/models/props/dust_massive/rock/cliff_wall003_normal.vtf +materials/models/props/dust_massive/rock/cliff_wall003_color.vtf +materials/models/props/dust_massive/rock/cliff_wall002_normal.vtf +materials/models/props/dust_massive/rock/cliff_wall002_color.vtf +materials/models/props/dust_massive/rock/cliff_wall001_normal.vtf +materials/models/props/dust_massive/rock/cliff_wall001_color.vtf +materials/models/props/dust_massive/rock/cliff_rock003_normal.vtf +materials/models/props/dust_massive/rock/cliff_rock003_color.vtf +materials/models/props/dust_massive/rock/cliff_rock002_normal.vtf +materials/models/props/dust_massive/rock/cliff_rock002_color.vtf +materials/models/props/dust_massive/rock/cliff_rock001_normal.vtf +materials/models/props/dust_massive/rock/cliff_rock001_color.vtf +materials/models/props/dust_massive/oil_drum/oil_drum_normal.vtf +materials/models/props/dust_massive/oil_drum/oil_drum_color.vtf +materials/models/props/dust_massive/front_loader/front_loader_color.vtf +materials/models/props/dust_massive/front_loader/front_loader_02_mask.vtf +materials/models/props/dust_massive/front_loader/front_loader_02_color.vtf +materials/models/props/dust_massive/docks/radar_dome_platform_skybox_cheap001_color.vtf +materials/models/props/dust_massive/docks/radar_dome_platform001c_color.vtf +materials/models/props/dust_massive/docks/radar_dome_platform001b_color.vtf +materials/models/props/dust_massive/docks/radar_dome_platform001a_color.vtf +materials/models/props/dust_massive/docks/radar_dome_pipe_platform001a_color.vtf +materials/models/props/dust_massive/docks/radar_dome_pipe001d_color.vtf +materials/models/props/dust_massive/docks/radar_dome_pipe001c_color.vtf +materials/models/props/dust_massive/docks/radar_dome_pipe001b_color.vtf +materials/models/props/dust_massive/docks/radar_dome_pipe001_color.vtf +materials/models/props/dust_massive/docks/radar_dome_parts002_color.vtf +materials/models/props/dust_massive/docks/radar_dome_parts001_color.vtf +materials/models/props/dust_massive/docks/radar_dome_dolphin001_color.vtf +materials/models/props/dust_massive/docks/radar_dome001_color.vtf +materials/models/props/dust_massive/docks/dock_stairs001_color.vtf +materials/models/props/dust_massive/docks/dock_pylon001_color.vtf +materials/models/props/dust_massive/docks/dock_dolphin001_color.vtf +materials/models/props/dust_massive/dam/dam_color.vtf +materials/models/props/dust_massive/cargo_container_square/cargo_container_paint.vtf +materials/models/props/dust_massive/buoy/buoy001_normal.vtf +materials/models/props/dust_massive/buoy/buoy001_color.vtf +materials/models/props/dust_massive/buildings/lighthouse_01_normal.vtf +materials/models/props/dust_massive/buildings/lighthouse_01.vtf +materials/models/props/dust_massive/bridges/metal_bridge_frame_color.vtf +materials/models/props/dust_massive/bridges/concrete_bridge_arch_color.vtf +materials/models/props/dust_massive/bridges/concrete_bridge_arch_02_color.vtf +materials/models/props/dust_massive/bridges/bridge_pier_normal.vtf +materials/models/props/dust_massive/bridges/bridge_pier_color.vtf +materials/models/props/dust_massive/boats/row_boat002_tint.vtf +materials/models/props/dust_massive/boats/row_boat002.vtf +materials/models/props/dust_massive/boats/row_boat001.vtf +materials/models/props/dust_massive/blimp/blimp001_color.vtf +materials/models/props/dust_massive/beachwaves_dust/beachwaves_dust.vtf +materials/models/props/dust_massive/barge/crane_cockpit_color.vtf +materials/models/props/dust_massive/barge/crane_arm_color.vtf +materials/models/props/dust_massive/barge/barge_03_color.vtf +materials/models/props/dust_massive/barge/barge_02_color.vtf +materials/models/props/dust_massive/barge/barge_01_color.vtf +materials/models/props/dust_massive/apc/apc_wreck_wheel_color.vtf +materials/models/props/dust_massive/apc/apc_wreck_color.vtf +materials/particle/playerping/playerping_ring.vtf +materials/particle/playerping/playerping_dot_outline.vtf +materials/particle/playerping/playerping_dot.vtf +materials/particle/playerping/playerping_arrow_outline.vtf +materials/particle/playerping/playerping_arrow.vtf +materials/models/weapons/w_models/w_eq_shield/shield_damage.vtf +materials/models/weapons/w_models/w_eq_shield/shield.vtf +materials/dust_massive/skybox_horizon_fade.vtf +materials/dust_massive/sign_warning_01.vtf +materials/dust_massive/sewage_gunk_overlay.vtf +materials/dust_massive/road_02_edge_transparent.vtf +materials/dust_massive/road_01_transparent_end.vtf +materials/dust_massive/road_01_transparent.vtf +materials/dust_massive/road_01_edge_transparent.vtf +materials/dust_massive/road_01.vtf +materials/dust_massive/overlay_sign_south.vtf +materials/dust_massive/overlay_sign_north.vtf +materials/dust_massive/overlay_sign_east.vtf +materials/dust_massive/overlay_sand_ground_01.vtf +materials/dust_massive/overlay_numbers_1_09.vtf +materials/dust_massive/overlay_numbers_1_08.vtf +materials/dust_massive/overlay_numbers_1_07.vtf +materials/dust_massive/overlay_numbers_1_06.vtf +materials/dust_massive/overlay_numbers_1_05.vtf +materials/dust_massive/overlay_numbers_1_04.vtf +materials/dust_massive/overlay_numbers_1_03.vtf +materials/dust_massive/overlay_numbers_1_02.vtf +materials/dust_massive/overlay_numbers_1_01.vtf +materials/dust_massive/overlay_helipad.vtf +materials/dust_massive/overlay_exit_south_r.vtf +materials/dust_massive/overlay_exit_north_r.vtf +materials/dust_massive/overlay_exit_east_r.vtf +materials/dust_massive/overlay_checkered_01.vtf +materials/dust_massive/mudbrick_plaster_02_blendmod.vtf +materials/dust_massive/metal_silo001_normal.vtf +materials/dust_massive/metal_silo001.vtf +materials/dust_massive/light_glow.vtf +materials/dust_massive/kasbah_mudbrick_01_normal.vtf +materials/dust_massive/kasbah_mudbrick_01_blend.vtf +materials/dust_massive/kasbah_mudbrick_01.vtf +materials/dust_massive/dust_massive_water_flowmap.vtf +materials/dust_massive/dust_massive_rock_01_normal.vtf +materials/dust_massive/dust_massive_rock_01_color.vtf +materials/dust_massive/dust_massive_overview.vtf +materials/dust_massive/dust_massive_megatexture_02.vtf +materials/dust_massive/dust_massive_megatexture_01b.vtf +materials/dust_massive/dust_massive_megatexture_01.vtf +materials/dust_massive/dust_massive_ground_sand_01_normal.vtf +materials/dust_massive/dust_massive_ground_sand_01_color.vtf +materials/dust_massive/dust_massive_ground_rock_01_normal.vtf +materials/dust_massive/dust_massive_ground_rock_01_height.vtf +materials/dust_massive/dust_massive_ground_rock_01_color.vtf +materials/dust_massive/dust_massive_concrete_wall_03_color.vtf +materials/dust_massive/dust_massive_concrete_wall_02_color.vtf +materials/dust_massive/dust_massive_concrete_wall_01_normal.vtf +materials/dust_massive/dust_massive_concrete_wall_01_height.vtf +materials/dust_massive/dust_massive_concrete_wall_01_color.vtf +materials/dust_massive/dust_massive_concrete_ground_01_normal.vtf +materials/dust_massive/dust_massive_concrete_ground_01_color.vtf +materials/dust_massive/dust_graffiti_waves_01.vtf +materials/dust_massive/dust_cinderblock_checkered_01_color.vtf +materials/dust_massive/dock_grate001_normal.vtf +materials/dust_massive/dock_grate001.vtf +materials/dust_massive/detail_ground_03.vtf +materials/dust_massive/detail_ground_02.vtf +materials/dust_massive/detail_ground_01.vtf +materials/models/weapons/v_models/bump_mine/bump_mine_glow_02.vtf +materials/models/weapons/v_models/bump_mine/bump_mine_glow_01.vtf +materials/models/weapons/v_models/bump_mine/bump_mine_exponent.vtf +materials/models/weapons/v_models/bump_mine/bump_mine_color.vtf +materials/models/props/de_vertigo/construction_elevator/construction_elevator_support_2.vtf +materials/models/props/de_vertigo/construction_elevator/construction_elevator_support.vtf +materials/models/props/de_vertigo/construction_elevator/construction_elevator_chain.vtf +materials/models/props/de_vertigo/construction_elevator/construction_elevator_1.vtf +materials/models/props/de_train/hr_t/train_car_d/train_car_d_normals.vtf +materials/models/props/de_train/hr_t/train_car_d/train_car_d_env.vtf +materials/models/props/de_train/hr_t/train_car_d/train_car_d_details.vtf +materials/models/props/de_train/hr_t/train_car_d/train_car_d_ao.vtf +materials/models/props/de_train/hr_t/train_car_d/train_car_d.vtf +materials/models/props/hr_vertigo/floor_grinder/floor_grinder_normal.vtf +materials/models/props/hr_vertigo/floor_grinder/floor_grinder_color.vtf +materials/models/props/de_vertigo/ibc/ibc_1_plastic_normal.vtf +materials/models/props/de_vertigo/ibc/ibc_1_plastic.vtf +materials/models/props/de_vertigo/ibc/ibc_1_metal_normal.vtf +materials/models/props/de_vertigo/ibc/ibc_1_metal.vtf +materials/models/inventory_items/music_kit/theverkkars_01/mp3_screen.vtf +materials/models/inventory_items/music_kit/theverkkars_01/mp3_detail.vtf +materials/models/weapons/customization/stickers/feral_predators/toxic_glossy.vtf +materials/models/weapons/customization/stickers/feral_predators/toxic_foil_normal.vtf +materials/models/weapons/customization/stickers/feral_predators/toxic_foil.vtf +materials/models/weapons/customization/stickers/feral_predators/scavenger_holomask.vtf +materials/models/weapons/customization/stickers/feral_predators/scavenger_holo.vtf +materials/models/weapons/customization/stickers/feral_predators/scavenger_glossy.vtf +materials/models/weapons/customization/stickers/feral_predators/one_sting_holomask.vtf +materials/models/weapons/customization/stickers/feral_predators/one_sting_holo.vtf +materials/models/weapons/customization/stickers/feral_predators/one_sting_glossy.vtf +materials/models/weapons/customization/stickers/feral_predators/lurker_glossy.vtf +materials/models/weapons/customization/stickers/feral_predators/lurker_foil_normal.vtf +materials/models/weapons/customization/stickers/feral_predators/lurker_foil.vtf +materials/models/weapons/customization/stickers/feral_predators/free_hugs_holomask.vtf +materials/models/weapons/customization/stickers/feral_predators/free_hugs_holo.vtf +materials/models/weapons/customization/stickers/feral_predators/free_hugs_glossy.vtf +materials/models/weapons/customization/stickers/feral_predators/first_blood_holomask.vtf +materials/models/weapons/customization/stickers/feral_predators/first_blood_holo.vtf +materials/models/weapons/customization/stickers/feral_predators/first_blood_glossy.vtf +materials/models/weapons/customization/stickers/feral_predators/cluck_holomask.vtf +materials/models/weapons/customization/stickers/feral_predators/cluck_holo.vtf +materials/models/weapons/customization/stickers/feral_predators/cluck_glossy.vtf +materials/models/weapons/customization/stickers/feral_predators/bite_me_glossy.vtf +materials/models/weapons/customization/stickers/feral_predators/bite_me_foil_normal.vtf +materials/models/weapons/customization/stickers/feral_predators/bite_me_foil.vtf +materials/models/weapons/customization/stickers/feral_predators/baited_holomask.vtf +materials/models/weapons/customization/stickers/feral_predators/baited_holo.vtf +materials/models/weapons/customization/stickers/feral_predators/baited_glossy.vtf materials/models/props/hr_vertigo/vertigo_support_jack/support_jack_color.vtf materials/models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_tint.vtf materials/models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_normal.vtf @@ -43271,6 +43922,137 @@ materials/decals/sprays/katowice2019/avg_graffiti_nodrips.vtf materials/decals/sprays/katowice2019/avg_graffiti.vtf materials/decals/sprays/katowice2019/astr_graffiti_nodrips.vtf materials/decals/sprays/katowice2019/astr_graffiti.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_brehze_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_brehze_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_brehze.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_boombl4_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_boombl4_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_boombl4.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_bodyy_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_bodyy_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_bodyy.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_bntet_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_bntet_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_bntet.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_azr_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_azr_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_azr.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_autimatic_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_autimatic_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_autimatic.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_auman_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_auman_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_auman.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_attacker_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_attacker_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_attacker.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_art_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_art_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_art.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_apex_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_apex_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_apex.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_angel_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_angel_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_angel.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_allu_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_allu_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_allu.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_alex_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_alex_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_alex.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_aleksib_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_aleksib_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_aleksib.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_aerial_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_aerial_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_aerial.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_advent_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_advent_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_advent.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_adrenkz_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_adrenkz_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_adrenkz.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_ablej_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_ablej_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/sig_ablej.vtf +materials/models/weapons/customization/stickers/katowice2019/ren_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/ren_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/ren_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/ren.vtf +materials/models/weapons/customization/stickers/katowice2019/nrg_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/nrg_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/nrg_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/nrg.vtf +materials/models/weapons/customization/stickers/katowice2019/nip_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/nip_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/nip_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/nip.vtf +materials/models/weapons/customization/stickers/katowice2019/navi_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/navi_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/navi_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/navi.vtf +materials/models/weapons/customization/stickers/katowice2019/mibr_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/mibr_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/mibr_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/mibr.vtf +materials/models/weapons/customization/stickers/katowice2019/liq_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/liq_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/liq_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/liq.vtf +materials/models/weapons/customization/stickers/katowice2019/iem_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/iem_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/iem_holoback.vtf +materials/models/weapons/customization/stickers/katowice2019/iem_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/iem.vtf +materials/models/weapons/customization/stickers/katowice2019/hlr_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/hlr_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/hlr_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/hlr.vtf +materials/models/weapons/customization/stickers/katowice2019/gray_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/gray_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/gray_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/gray.vtf +materials/models/weapons/customization/stickers/katowice2019/g2_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/g2_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/g2_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/g2.vtf +materials/models/weapons/customization/stickers/katowice2019/furi_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/furi_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/furi_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/furi.vtf +materials/models/weapons/customization/stickers/katowice2019/fntc_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/fntc_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/fntc_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/fntc.vtf +materials/models/weapons/customization/stickers/katowice2019/faze_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/faze_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/faze_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/faze.vtf +materials/models/weapons/customization/stickers/katowice2019/ence_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/ence_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/ence_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/ence.vtf +materials/models/weapons/customization/stickers/katowice2019/col_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/col_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/col_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/col.vtf +materials/models/weapons/customization/stickers/katowice2019/c9_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/c9_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/c9_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/c9.vtf +materials/models/weapons/customization/stickers/katowice2019/big_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/big_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/big_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/big.vtf +materials/models/weapons/customization/stickers/katowice2019/avg_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/avg_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/avg_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/avg.vtf +materials/models/weapons/customization/stickers/katowice2019/astr_normal.vtf +materials/models/weapons/customization/stickers/katowice2019/astr_holomask.vtf +materials/models/weapons/customization/stickers/katowice2019/astr_foilback.vtf +materials/models/weapons/customization/stickers/katowice2019/astr.vtf materials/models/weapons/customization/stickers/katowice2019/wins_normal.vtf materials/models/weapons/customization/stickers/katowice2019/wins_holomask.vtf materials/models/weapons/customization/stickers/katowice2019/wins_foilback.vtf @@ -43604,137 +44386,6 @@ materials/models/weapons/customization/stickers/katowice2019/sig_buster.vtf materials/models/weapons/customization/stickers/katowice2019/sig_brollan_normal.vtf materials/models/weapons/customization/stickers/katowice2019/sig_brollan_foilback.vtf materials/models/weapons/customization/stickers/katowice2019/sig_brollan.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_brehze_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_brehze_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_brehze.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_boombl4_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_boombl4_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_boombl4.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_bodyy_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_bodyy_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_bodyy.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_bntet_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_bntet_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_bntet.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_azr_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_azr_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_azr.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_autimatic_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_autimatic_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_autimatic.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_auman_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_auman_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_auman.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_attacker_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_attacker_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_attacker.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_art_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_art_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_art.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_apex_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_apex_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_apex.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_angel_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_angel_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_angel.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_allu_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_allu_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_allu.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_alex_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_alex_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_alex.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_aleksib_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_aleksib_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_aleksib.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_aerial_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_aerial_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_aerial.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_advent_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_advent_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_advent.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_adrenkz_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_adrenkz_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_adrenkz.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_ablej_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_ablej_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/sig_ablej.vtf -materials/models/weapons/customization/stickers/katowice2019/ren_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/ren_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/ren_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/ren.vtf -materials/models/weapons/customization/stickers/katowice2019/nrg_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/nrg_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/nrg_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/nrg.vtf -materials/models/weapons/customization/stickers/katowice2019/nip_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/nip_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/nip_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/nip.vtf -materials/models/weapons/customization/stickers/katowice2019/navi_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/navi_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/navi_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/navi.vtf -materials/models/weapons/customization/stickers/katowice2019/mibr_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/mibr_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/mibr_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/mibr.vtf -materials/models/weapons/customization/stickers/katowice2019/liq_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/liq_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/liq_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/liq.vtf -materials/models/weapons/customization/stickers/katowice2019/iem_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/iem_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/iem_holoback.vtf -materials/models/weapons/customization/stickers/katowice2019/iem_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/iem.vtf -materials/models/weapons/customization/stickers/katowice2019/hlr_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/hlr_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/hlr_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/hlr.vtf -materials/models/weapons/customization/stickers/katowice2019/gray_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/gray_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/gray_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/gray.vtf -materials/models/weapons/customization/stickers/katowice2019/g2_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/g2_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/g2_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/g2.vtf -materials/models/weapons/customization/stickers/katowice2019/furi_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/furi_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/furi_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/furi.vtf -materials/models/weapons/customization/stickers/katowice2019/fntc_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/fntc_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/fntc_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/fntc.vtf -materials/models/weapons/customization/stickers/katowice2019/faze_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/faze_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/faze_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/faze.vtf -materials/models/weapons/customization/stickers/katowice2019/ence_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/ence_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/ence_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/ence.vtf -materials/models/weapons/customization/stickers/katowice2019/col_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/col_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/col_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/col.vtf -materials/models/weapons/customization/stickers/katowice2019/c9_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/c9_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/c9_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/c9.vtf -materials/models/weapons/customization/stickers/katowice2019/big_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/big_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/big_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/big.vtf -materials/models/weapons/customization/stickers/katowice2019/avg_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/avg_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/avg_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/avg.vtf -materials/models/weapons/customization/stickers/katowice2019/astr_normal.vtf -materials/models/weapons/customization/stickers/katowice2019/astr_holomask.vtf -materials/models/weapons/customization/stickers/katowice2019/astr_foilback.vtf -materials/models/weapons/customization/stickers/katowice2019/astr.vtf materials/models/props/de_vertigo/garbage_chute/garbage_chute_2_normal.vtf materials/models/props/de_vertigo/garbage_chute/garbage_chute_2.vtf materials/models/props/de_vertigo/garbage_chute/garbage_chute_1_normal.vtf @@ -43813,12 +44464,13 @@ materials/models/weapons/v_models/tablet/tablet_scan.vtf materials/models/weapons/v_models/tablet/tablet_rescue.vtf materials/models/weapons/v_models/tablet/tablet_ragdoll.vtf materials/models/weapons/v_models/tablet/tablet_radar_xl_dust_dark.vtf -materials/models/weapons/v_models/tablet/tablet_radar_xl_dust.vtf +materials/models/weapons/v_models/tablet/tablet_radar_dz_sirocco.vtf materials/models/weapons/v_models/tablet/tablet_radar_dz_blacksite.vtf materials/models/weapons/v_models/tablet/tablet_pulse.vtf materials/models/weapons/v_models/tablet/tablet_player_path.vtf materials/models/weapons/v_models/tablet/tablet_player_other.vtf materials/models/weapons/v_models/tablet/tablet_player.vtf +materials/models/weapons/v_models/tablet/tablet_panolayer.vtf materials/models/weapons/v_models/tablet/tablet_mini_compass.vtf materials/models/weapons/v_models/tablet/tablet_menu.vtf materials/models/weapons/v_models/tablet/tablet_map_bg.vtf @@ -43844,10 +44496,16 @@ materials/models/weapons/v_models/tablet/tablet_grid_gassed.vtf materials/models/weapons/v_models/tablet/tablet_grid_contractkill.vtf materials/models/weapons/v_models/tablet/tablet_grid_border.vtf materials/models/weapons/v_models/tablet/tablet_glass.vtf +materials/models/weapons/v_models/tablet/tablet_drone_teammate.vtf +materials/models/weapons/v_models/tablet/tablet_drone_select.vtf +materials/models/weapons/v_models/tablet/tablet_drone_reticle.vtf +materials/models/weapons/v_models/tablet/tablet_drone_point.vtf materials/models/weapons/v_models/tablet/tablet_drone_other.vtf materials/models/weapons/v_models/tablet/tablet_drone_line.vtf materials/models/weapons/v_models/tablet/tablet_drone_incoming.vtf +materials/models/weapons/v_models/tablet/tablet_drone_claw.vtf materials/models/weapons/v_models/tablet/tablet_drone.vtf +materials/models/weapons/v_models/tablet/tablet_crate.vtf materials/models/weapons/v_models/tablet/tablet_circle_future.vtf materials/models/weapons/v_models/tablet/tablet_circle.vtf materials/models/weapons/v_models/tablet/tablet_c4_safe.vtf @@ -43868,6 +44526,8 @@ materials/models/weapons/shared/paracord/carabiner.vtf materials/particle/screen/eyeball_veins_01.vtf materials/models/props_survival/upgrades/parachutepack_normal.vtf materials/models/props_survival/upgrades/parachutepack.vtf +materials/models/props_survival/upgrades/exojump_normal.vtf +materials/models/props_survival/upgrades/exojump.vtf materials/models/props_survival/upgrades/dz_armor.vtf materials/models/props_survival/safe/safe_normal.vtf materials/models/props_survival/safe/safe_exponent.vtf @@ -43897,8 +44557,6 @@ materials/models/props_survival/counter/counter_numerals.vtf materials/models/props_survival/cash/prop_cash_stack.vtf materials/models/props_survival/cash/dufflebag_normal.vtf materials/models/props_survival/cash/dufflebag.vtf -materials/models/props_survival/cases/case_explosive_exponent.vtf -materials/models/props_survival/cases/case_explosive_color.vtf materials/models/props_survival/cases/paradrop_chute_normal.vtf materials/models/props_survival/cases/paradrop_chute_color.vtf materials/models/props_survival/cases/damage_low.vtf @@ -43935,6 +44593,8 @@ materials/models/props_survival/cases/case_large_damaged.vtf materials/models/props_survival/cases/case_frame_normal.vtf materials/models/props_survival/cases/case_frame_exponent.vtf materials/models/props_survival/cases/case_frame_color.vtf +materials/models/props_survival/cases/case_explosive_exponent.vtf +materials/models/props_survival/cases/case_explosive_color.vtf materials/models/props_survival/briefcase/briefcase_selfillum.vtf materials/models/props_survival/briefcase/briefcase_normal.vtf materials/models/props_survival/briefcase/briefcase_color.vtf @@ -44229,6 +44889,78 @@ materials/models/weapons/v_models/melee/spanner_color.vtf materials/models/weapons/v_models/melee/hammer_exponent.vtf materials/models/weapons/v_models/melee/hammer_color.vtf materials/models/weapons/v_models/melee/axe_exponent.vtf +materials/hr_massive/wood_siding_1_yellow_damaged.vtf +materials/hr_massive/wood_siding_1_tan.vtf +materials/hr_massive/wood_siding_1_red_damaged.vtf +materials/hr_massive/wood_siding_1_normal.vtf +materials/hr_massive/wood_siding_1_grey.vtf +materials/hr_massive/wood_siding_1_damaged.vtf +materials/hr_massive/wood_siding_1_blue.vtf +materials/hr_massive/wood_siding_1_blend_modulate.vtf +materials/hr_massive/wood_planks_5_normal.vtf +materials/hr_massive/wood_planks_5.vtf +materials/hr_massive/wood_planks_4_normal.vtf +materials/hr_massive/wood_planks_4.vtf +materials/hr_massive/wood_planks_3_normal.vtf +materials/hr_massive/wood_planks_3.vtf +materials/hr_massive/wood_planks_2_normal.vtf +materials/hr_massive/wood_planks_2.vtf +materials/hr_massive/wood_planks_1_normal.vtf +materials/hr_massive/wood_planks_1.vtf +materials/hr_massive/wood_floor_1_normal.vtf +materials/hr_massive/wood_floor_1.vtf +materials/hr_massive/wood_ext_05_yellow.vtf +materials/hr_massive/wood_ext_05_red.vtf +materials/hr_massive/wood_ext_05_grey.vtf +materials/hr_massive/wood_ext_05_blue.vtf +materials/hr_massive/wallpaper_3.vtf +materials/hr_massive/wallpaper_2.vtf +materials/hr_massive/wallpaper_1_normal.vtf +materials/hr_massive/wallpaper_1.vtf +materials/hr_massive/town_tile_2_trim.vtf +materials/hr_massive/town_tile_1_trim_normal.vtf +materials/hr_massive/town_tile_1_trim.vtf +materials/hr_massive/town_tile_1_normal.vtf +materials/hr_massive/town_tile_1_dirty_normal.vtf +materials/hr_massive/town_tile_1_dirty.vtf +materials/hr_massive/town_tile_1_blend_1_tooltexture.vtf +materials/hr_massive/town_tile_1_blend_1_modulate.vtf +materials/hr_massive/town_tile_1.vtf +materials/hr_massive/town_plaster_damage_2.vtf +materials/hr_massive/town_plaster_damage_1_normal.vtf +materials/hr_massive/town_plaster_damage_1.vtf +materials/hr_massive/town_plaster_blend_modulate.vtf +materials/hr_massive/town_plaster_3_blend_1_tooltexture.vtf +materials/hr_massive/town_plaster_3.vtf +materials/hr_massive/town_plaster_2_normal.vtf +materials/hr_massive/town_plaster_2_blend_1_tooltexture.vtf +materials/hr_massive/town_plaster_2.vtf +materials/hr_massive/town_plaster_1_normal.vtf +materials/hr_massive/town_plaster_1_blend_1_tooltexture.vtf +materials/hr_massive/town_plaster_1.vtf +materials/hr_massive/tire_burnout_2.vtf +materials/hr_massive/tire_burnout_1.vtf +materials/hr_massive/tiling_rock_1_normal.vtf +materials/hr_massive/tiling_rock_1.vtf +materials/hr_massive/test_massive9_overview.vtf +materials/hr_massive/survival_woodsiding_worn_color.vtf +materials/hr_massive/survival_woodsiding_waterstains.vtf +materials/hr_massive/survival_woodsiding_normal.vtf +materials/hr_massive/survival_woodsiding_color.vtf +materials/hr_massive/survival_woodsiding_chipped_overlay.vtf +materials/hr_massive/survival_woodsiding_02_normal.vtf +materials/hr_massive/survival_woodsiding_02_color.vtf +materials/hr_massive/survival_island_4wayblend_3_tooltexture.vtf +materials/hr_massive/survival_island_4wayblend_2_tooltexture.vtf +materials/hr_massive/survival_island_4wayblend_1_tooltexture.vtf +materials/hr_massive/survival_info_kiosk_color.vtf +materials/hr_massive/survival_industrial_window_illum_color.vtf +materials/hr_massive/survival_industrial_window_color.vtf +materials/hr_massive/survival_corrugated_roof_normal.vtf +materials/hr_massive/survival_corrugated_roof_color.vtf +materials/hr_massive/survival_corrugated_metal_normal.vtf +materials/hr_massive/survival_corrugated_metal_color.vtf +materials/hr_massive/survival_corrugated_metal_04_normal.vtf materials/hr_massive/survival_corrugated_metal_04_color.vtf materials/hr_massive/survival_corrugated_metal_02b_normal.vtf materials/hr_massive/survival_corrugated_metal_02b_color.vtf @@ -44450,6 +45182,7 @@ materials/hr_massive/brick_wall_2_blend_1_tooltexture.vtf materials/hr_massive/brick_wall_2.vtf materials/hr_massive/brick_wall_1_normal.vtf materials/hr_massive/brick_wall_1.vtf +materials/hr_massive/blacksite_flowmap.vtf materials/hr_massive/beach_sand_6_normal.vtf materials/hr_massive/beach_sand_6.vtf materials/hr_massive/beach_sand_5_normal.vtf @@ -44478,78 +45211,6 @@ materials/hr_massive/beach_sand_1_blend_2_tooltexture.vtf materials/hr_massive/beach_sand_1_blend_1_tooltexture.vtf materials/hr_massive/beach_sand_1_blend_1_modulate.vtf materials/hr_massive/beach_sand_1.vtf -materials/hr_massive/wood_siding_1_yellow_damaged.vtf -materials/hr_massive/wood_siding_1_tan.vtf -materials/hr_massive/wood_siding_1_red_damaged.vtf -materials/hr_massive/wood_siding_1_normal.vtf -materials/hr_massive/wood_siding_1_grey.vtf -materials/hr_massive/wood_siding_1_damaged.vtf -materials/hr_massive/wood_siding_1_blue.vtf -materials/hr_massive/wood_siding_1_blend_modulate.vtf -materials/hr_massive/wood_planks_5_normal.vtf -materials/hr_massive/wood_planks_5.vtf -materials/hr_massive/wood_planks_4_normal.vtf -materials/hr_massive/wood_planks_4.vtf -materials/hr_massive/wood_planks_3_normal.vtf -materials/hr_massive/wood_planks_3.vtf -materials/hr_massive/wood_planks_2_normal.vtf -materials/hr_massive/wood_planks_2.vtf -materials/hr_massive/wood_planks_1_normal.vtf -materials/hr_massive/wood_planks_1.vtf -materials/hr_massive/wood_floor_1_normal.vtf -materials/hr_massive/wood_floor_1.vtf -materials/hr_massive/wood_ext_05_yellow.vtf -materials/hr_massive/wood_ext_05_red.vtf -materials/hr_massive/wood_ext_05_grey.vtf -materials/hr_massive/wood_ext_05_blue.vtf -materials/hr_massive/wallpaper_3.vtf -materials/hr_massive/wallpaper_2.vtf -materials/hr_massive/wallpaper_1_normal.vtf -materials/hr_massive/wallpaper_1.vtf -materials/hr_massive/town_tile_2_trim.vtf -materials/hr_massive/town_tile_1_trim_normal.vtf -materials/hr_massive/town_tile_1_trim.vtf -materials/hr_massive/town_tile_1_normal.vtf -materials/hr_massive/town_tile_1_dirty_normal.vtf -materials/hr_massive/town_tile_1_dirty.vtf -materials/hr_massive/town_tile_1_blend_1_tooltexture.vtf -materials/hr_massive/town_tile_1_blend_1_modulate.vtf -materials/hr_massive/town_tile_1.vtf -materials/hr_massive/town_plaster_damage_2.vtf -materials/hr_massive/town_plaster_damage_1_normal.vtf -materials/hr_massive/town_plaster_damage_1.vtf -materials/hr_massive/town_plaster_blend_modulate.vtf -materials/hr_massive/town_plaster_3_blend_1_tooltexture.vtf -materials/hr_massive/town_plaster_3.vtf -materials/hr_massive/town_plaster_2_normal.vtf -materials/hr_massive/town_plaster_2_blend_1_tooltexture.vtf -materials/hr_massive/town_plaster_2.vtf -materials/hr_massive/town_plaster_1_normal.vtf -materials/hr_massive/town_plaster_1_blend_1_tooltexture.vtf -materials/hr_massive/town_plaster_1.vtf -materials/hr_massive/tire_burnout_2.vtf -materials/hr_massive/tire_burnout_1.vtf -materials/hr_massive/tiling_rock_1_normal.vtf -materials/hr_massive/tiling_rock_1.vtf -materials/hr_massive/test_massive9_overview.vtf -materials/hr_massive/survival_woodsiding_worn_color.vtf -materials/hr_massive/survival_woodsiding_waterstains.vtf -materials/hr_massive/survival_woodsiding_normal.vtf -materials/hr_massive/survival_woodsiding_color.vtf -materials/hr_massive/survival_woodsiding_chipped_overlay.vtf -materials/hr_massive/survival_woodsiding_02_normal.vtf -materials/hr_massive/survival_woodsiding_02_color.vtf -materials/hr_massive/survival_island_4wayblend_3_tooltexture.vtf -materials/hr_massive/survival_island_4wayblend_2_tooltexture.vtf -materials/hr_massive/survival_island_4wayblend_1_tooltexture.vtf -materials/hr_massive/survival_info_kiosk_color.vtf -materials/hr_massive/survival_industrial_window_illum_color.vtf -materials/hr_massive/survival_industrial_window_color.vtf -materials/hr_massive/survival_corrugated_roof_normal.vtf -materials/hr_massive/survival_corrugated_roof_color.vtf -materials/hr_massive/survival_corrugated_metal_normal.vtf -materials/hr_massive/survival_corrugated_metal_color.vtf -materials/hr_massive/survival_corrugated_metal_04_normal.vtf materials/models/weapons/w_models/w_eq_tablet/tablet_light.vtf materials/models/weapons/w_models/w_eq_tablet/tablet.vtf materials/models/weapons/customization/stickers/danger_zone/blacksite_normal.vtf @@ -44605,7 +45266,6 @@ materials/models/weapons/customization/stickers/skillgroup_capsule/dmg_holo.vtf materials/models/weapons/customization/stickers/skillgroup_capsule/dmg.vtf materials/models/weapons/v_models/knife_flip/ghost/knife_flip_ghost.vtf materials/models/weapons/v_models/arms/ghost/ghost_arms.vtf -materials/models/player/custom_player/econ/head/ctm_fbi/ctm_leet_v2_head_varianta_masks2.vtf materials/models/player/custom_player/econ/head/ctm_fbi/ctm_fbi_v2_head_variantc_normal.vtf materials/models/player/custom_player/econ/head/ctm_fbi/ctm_fbi_v2_head_variantc_masks1.vtf materials/models/player/custom_player/econ/head/ctm_fbi/ctm_fbi_v2_head_variantc_color.vtf @@ -45696,6 +46356,8 @@ materials/models/inventory_items/service_medal_2018/service_medal_2018_exponent. materials/models/props/de_dust/hr_dust/dust_soccerball/soccerball001_pumpkin_color.vtf materials/models/props/de_dust/hr_dust/dust_soccerball/soccerball001_normal.vtf materials/models/props/de_dust/hr_dust/dust_soccerball/soccerball001_color.vtf +materials/models/props/de_dust/hr_dust/dust_soccerball/soccer_goal_color.vtf +materials/models/props/de_dust/hr_dust/dust_soccerball/soccer_goal_chainlink_color.vtf materials/models/props/de_dust/hr_dust/wooden_structures/wooden_structure_2.vtf materials/models/props/de_dust/hr_dust/wooden_structures/wooden_structure_1.vtf materials/models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_temp.vtf @@ -45706,8 +46368,6 @@ materials/models/props/de_dust/hr_dust/power_pole_insulators/power_pole_03_mask. materials/models/props/de_dust/hr_dust/power_pole_insulators/power_pole_03_color.vtf materials/models/props/de_dust/hr_dust/power_pole_insulators/power_pole_02_mask.vtf materials/models/props/de_dust/hr_dust/power_pole_insulators/power_pole_02_color.vtf -materials/models/props/de_dust/hr_dust/foliage/sumac_01.vtf -materials/models/props/de_dust/hr_dust/foliage/sagebrush_01.vtf materials/models/props/de_dust/hr_dust/foliage/potted_plant_02.vtf materials/models/props/de_dust/hr_dust/foliage/potted_plant_01.vtf materials/models/props/de_dust/hr_dust/foliage/palm_treecard_01.vtf @@ -45721,11 +46381,14 @@ materials/models/props/de_dust/hr_dust/foliage/grape_leaves_01.vtf materials/models/props/de_dust/hr_dust/foliage/dust_weeds_02a.vtf materials/models/props/de_dust/hr_dust/foliage/dust_weeds_02.vtf materials/models/props/de_dust/hr_dust/foliage/dust_weeds_01.vtf +materials/models/props/de_dust/hr_dust/foliage/barberry_02.vtf materials/models/props/de_dust/hr_dust/foliage/banana_leaf_01.vtf materials/models/props/de_dust/hr_dust/foliage/agave_plant_01.vtf materials/models/props/de_dust/hr_dust/foliage/zebra_grass_01.vtf materials/models/props/de_dust/hr_dust/foliage/yarrow_weed_01.vtf materials/models/props/de_dust/hr_dust/foliage/weeds_cressa_01.vtf +materials/models/props/de_dust/hr_dust/foliage/sumac_01.vtf +materials/models/props/de_dust/hr_dust/foliage/sagebrush_01.vtf materials/models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_normal.vtf materials/models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_color.vtf materials/models/props/de_dust/hr_dust/dust_wires/dust_wires_01_tint.vtf @@ -45772,6 +46435,7 @@ materials/models/props/de_dust/hr_dust/dust_vehicles/dust_300d_mask.vtf materials/models/props/de_dust/hr_dust/dust_vehicles/dust_300d_interior_normal.vtf materials/models/props/de_dust/hr_dust/dust_vehicles/dust_300d_interior_color.vtf materials/models/props/de_dust/hr_dust/dust_vehicles/dust_300d_color.vtf +materials/models/props/de_dust/hr_dust/dust_vehicles/dust_300d2_color.vtf materials/models/props/de_dust/hr_dust/dust_trims/wall_trim_01.vtf materials/models/props/de_dust/hr_dust/dust_trims/hr_dust_wall_trim001_normal.vtf materials/models/props/de_dust/hr_dust/dust_trims/hr_dust_wall_trim001_color.vtf @@ -45817,6 +46481,7 @@ materials/models/props/de_dust/hr_dust/dust_trap_door/dust_trap_door_mask.vtf materials/models/props/de_dust/hr_dust/dust_trap_door/dust_trap_door_color.vtf materials/models/props/de_dust/hr_dust/dust_tire/hr_dust_tire001_normal.vtf materials/models/props/de_dust/hr_dust/dust_tire/hr_dust_tire001_color.vtf +materials/models/props/de_dust/hr_dust/dust_skybox/sky_dust_massive.vtf materials/models/props/de_dust/hr_dust/dust_skybox/sky_dust2.vtf materials/models/props/de_dust/hr_dust/dust_skybox/hr_dust_skybox_lighting_01.vtf materials/models/props/de_dust/hr_dust/dust_skybox/hr_dust_skybox_buildings_02.vtf @@ -45921,6 +46586,10 @@ materials/models/props/de_dust/hr_dust/dust_light_pole/dust_light_pole_02_color. materials/models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_01_tint.vtf materials/models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_01_normal.vtf materials/models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_01_color.vtf +materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_normal.vtf +materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_color.vtf +materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_normal.vtf +materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_color.vtf materials/models/props/de_dust/hr_dust/dust_kasbah/dust_mudbrick_transition_normal.vtf materials/models/props/de_dust/hr_dust/dust_kasbah/dust_mudbrick_transition_color.vtf materials/models/props/de_dust/hr_dust/dust_kasbah/dust_mudbrick_plaster_normal.vtf @@ -45961,10 +46630,6 @@ materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_normal.vtf materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_color.vtf materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_normal.vtf materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_color.vtf -materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_normal.vtf -materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_color.vtf -materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_normal.vtf -materials/models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_color.vtf materials/models/props/de_dust/hr_dust/dust_hr_oil_drum/dust_hr_oil_drum_tint.vtf materials/models/props/de_dust/hr_dust/dust_hr_oil_drum/dust_hr_oil_drum_normal.vtf materials/models/props/de_dust/hr_dust/dust_hr_oil_drum/dust_hr_oil_drum_color.vtf @@ -46061,8 +46726,6 @@ materials/models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_painted_tin materials/models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_painted.vtf materials/models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001.vtf materials/models/props/de_dust/hr_dust/dust_cubemap/dust_cubemap.vtf -materials/models/props/de_dust/hr_dust/dust_crates/dust_shipping_crate_01_normal.vtf -materials/models/props/de_dust/hr_dust/dust_crates/dust_shipping_crate_01_decal.vtf materials/models/props/de_dust/hr_dust/dust_crates/wooden_fruit_crate_01_color.vtf materials/models/props/de_dust/hr_dust/dust_crates/plastic_crate_01_tint.vtf materials/models/props/de_dust/hr_dust/dust_crates/plastic_crate_01_color.vtf @@ -46082,6 +46745,8 @@ materials/models/props/de_dust/hr_dust/dust_crates/dust_shipping_crate_01_wood_c materials/models/props/de_dust/hr_dust/dust_crates/dust_shipping_crate_01_painted_tint.vtf materials/models/props/de_dust/hr_dust/dust_crates/dust_shipping_crate_01_painted_normal.vtf materials/models/props/de_dust/hr_dust/dust_crates/dust_shipping_crate_01_painted_color.vtf +materials/models/props/de_dust/hr_dust/dust_crates/dust_shipping_crate_01_normal.vtf +materials/models/props/de_dust/hr_dust/dust_crates/dust_shipping_crate_01_decal.vtf materials/models/props/de_dust/hr_dust/dust_construction/dust_construction_site_01_normal.vtf materials/models/props/de_dust/hr_dust/dust_construction/dust_construction_site_01_color.vtf materials/models/props/de_dust/hr_dust/dust_cloth_line/dust_cloth_line_color.vtf @@ -46380,6 +47045,7 @@ materials/models/player/custom_player/econ/head/tm_leet/tm_leet_v2_head_variantb materials/models/player/custom_player/econ/head/tm_leet/tm_leet_v2_head_varianta_normal.vtf materials/models/player/custom_player/econ/head/tm_leet/tm_leet_v2_head_varianta_masks1.vtf materials/models/player/custom_player/econ/head/tm_leet/tm_leet_v2_head_varianta_color.vtf +materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_variantd_color.vtf materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_variantc_color.vtf materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_variantb_normal.vtf materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_variantb_color.vtf @@ -46402,7 +47068,6 @@ materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_body_variantb materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_body_varianta_normal.vtf materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_body_varianta_masks1.vtf materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_body_varianta_color.vtf -materials/models/player/custom_player/econ/body/tm_leet/tm_leet_v2_lower_body_variantd_color.vtf materials/decals/sprays/illuminate_capsule/zombie_nodrips.vtf materials/decals/sprays/illuminate_capsule/toytiger_nodrips.vtf materials/decals/sprays/illuminate_capsule/toytiger.vtf @@ -47145,7 +47810,6 @@ materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_legs_va materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_legs_varianta_color.vtf materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_variante_color.vtf materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_variantd_color.vtf -materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_variantc_color_source.vtf materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_variantc_color.vtf materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_variantb_color.vtf materials/models/player/custom_player/econ/body/tm_phoenix/tm_phoenix_v2_body_varianta_color.vtf @@ -48097,8 +48761,6 @@ materials/models/sprays/pillar_ao.vtf materials/models/sprays/concrete_crack.vtf materials/models/sprays/ceiling_ao.vtf materials/models/sprays/base_grime.vtf -materials/decals/sprays/valve_sprays/ace_01_nodrips.vtf -materials/decals/sprays/valve_sprays/ace_01.vtf materials/decals/sprays/valve_sprays/wings_nodrips.vtf materials/decals/sprays/valve_sprays/wings.vtf materials/decals/sprays/valve_sprays/welcome_clutch_nodrips.vtf @@ -48133,6 +48795,8 @@ materials/decals/sprays/valve_sprays/cerberus_nodrips.vtf materials/decals/sprays/valve_sprays/cerberus.vtf materials/decals/sprays/valve_sprays/banana_nodrips.vtf materials/decals/sprays/valve_sprays/banana.vtf +materials/decals/sprays/valve_sprays/ace_01_nodrips.vtf +materials/decals/sprays/valve_sprays/ace_01.vtf materials/decals/sprays/default/wings_nodrips.vtf materials/decals/sprays/default/wings.vtf materials/decals/sprays/default/tongue_nodrips.vtf @@ -50875,10 +51539,10 @@ materials/models/inventory_items/vanguard_gold/vanguard_gold.vtf materials/models/inventory_items/vanguard_gold/vanguard_detail_exponent.vtf materials/models/inventory_items/vanguard_bronze/vanguard_bronze_detail.vtf materials/models/inventory_items/vanguard_bronze/vanguard_bronze.vtf +materials/models/effects/cube_white.vtf +materials/models/effects/crystal_cube_vertigo_hdr.vtf materials/models/effects/urban_puddle01a_normal.vtf materials/models/effects/urban_puddle01a.vtf -materials/models/effects/crystal_cube_vertigo_hdr.vtf -materials/models/effects/cube_white.vtf materials/models/weapons/uid/uid_charset.vtf materials/models/weapons/uid/uid.vtf materials/trash/hr_t/hr_trash_mud_a_normals.vtf @@ -51717,9 +52381,9 @@ materials/models/weapons/w_models/w_rif_ak47/ak47_exponent.vtf materials/models/weapons/w_models/w_rif_ak47/ak47.vtf materials/models/weapons/v_models/rif_ak47/ak47_exponent.vtf materials/models/weapons/v_models/rif_ak47/ak47.vtf -materials/models/props_yard/playground_swingset02.vtf materials/models/props_yard/playground_structure.vtf materials/models/props_yard/playground_slide.vtf +materials/models/props_yard/playground_swingset02.vtf materials/models/props_windows/windows_urban_boarded.vtf materials/models/props_windows/windows_urban01.vtf materials/models/props_windows/window_urban_bars.vtf @@ -51753,12 +52417,6 @@ materials/models/props_vents/borealis_vent001c.vtf materials/models/props_vents/borealis_vent001b.vtf materials/models/props_vents/borealis_vent001_normal.vtf materials/models/props_vents/borealis_vent001.vtf -materials/models/props_vehicles/airliner_finale3.vtf -materials/models/props_vehicles/airliner_finale2.vtf -materials/models/props_vehicles/airliner_finale1.vtf -materials/models/props_vehicles/4carz1024_glass.vtf -materials/models/props_vehicles/4carz1024_envmask.vtf -materials/models/props_vehicles/4carz1024.vtf materials/models/props_vehicles/van1_ref.vtf materials/models/props_vehicles/van1.vtf materials/models/props_vehicles/van001b_01.vtf @@ -51850,6 +52508,12 @@ materials/models/props_vehicles/airport_catering_truck1_ref.vtf materials/models/props_vehicles/airport_catering_truck1.vtf materials/models/props_vehicles/airport_baggage_cart_ref.vtf materials/models/props_vehicles/airport_baggage_cart.vtf +materials/models/props_vehicles/airliner_finale3.vtf +materials/models/props_vehicles/airliner_finale2.vtf +materials/models/props_vehicles/airliner_finale1.vtf +materials/models/props_vehicles/4carz1024_glass.vtf +materials/models/props_vehicles/4carz1024_envmask.vtf +materials/models/props_vehicles/4carz1024.vtf materials/models/props_urban/pillar_cap_a/pillar_cap_a.vtf materials/models/props_urban/ornate_fence_a/ornate_fence_a_normal.vtf materials/models/props_urban/ornate_fence_a/ornate_fence_a.vtf @@ -53309,6 +53973,49 @@ materials/models/props/de_mill/front_loader01_glass_ref.vtf materials/models/props/de_mill/front_loader01_glass.vtf materials/models/props/de_mill/front_loader01.vtf materials/models/props/de_mill/cableswithties.vtf +materials/models/props/de_inferno/de_inferno_boulder_02.vtf +materials/models/props/de_inferno/de_inferno_boulder.vtf +materials/models/props/de_inferno/confessional_new_ref.vtf +materials/models/props/de_inferno/confessional_new_color.vtf +materials/models/props/de_inferno/confessional.vtf +materials/models/props/de_inferno/claypot_plants01.vtf +materials/models/props/de_inferno/claypot03.vtf +materials/models/props/de_inferno/claypot02.vtf +materials/models/props/de_inferno/clayoven2.vtf +materials/models/props/de_inferno/clayoven.vtf +materials/models/props/de_inferno/cinderblock.vtf +materials/models/props/de_inferno/churchprops04.vtf +materials/models/props/de_inferno/churchprops03.vtf +materials/models/props/de_inferno/churchprops02.vtf +materials/models/props/de_inferno/churchprops01.vtf +materials/models/props/de_inferno/church_ornament_01_normal.vtf +materials/models/props/de_inferno/church_ornament_01_color.vtf +materials/models/props/de_inferno/chimney02.vtf +materials/models/props/de_inferno/chem_drum01.vtf +materials/models/props/de_inferno/chairantique.vtf +materials/models/props/de_inferno/ceiling_light.vtf +materials/models/props/de_inferno/ceiling_fan_ref.vtf +materials/models/props/de_inferno/ceiling_fan.vtf +materials/models/props/de_inferno/cart_wheel_ref.vtf +materials/models/props/de_inferno/cart_wheel.vtf +materials/models/props/de_inferno/cannon_ref.vtf +materials/models/props/de_inferno/cannon.vtf +materials/models/props/de_inferno/bushgreen.vtf +materials/models/props/de_inferno/bridge_arch01_new_color.vtf +materials/models/props/de_inferno/bomb_tanks.vtf +materials/models/props/de_inferno/bomb_crate.vtf +materials/models/props/de_inferno/bench_wood_mask.vtf +materials/models/props/de_inferno/bench_wood_color.vtf +materials/models/props/de_inferno/bench_wood.vtf +materials/models/props/de_inferno/bench_concrete.vtf +materials/models/props/de_inferno/bell_small.vtf +materials/models/props/de_inferno/bell_large.vtf +materials/models/props/de_inferno/bed.vtf +materials/models/props/de_inferno/artillery02.vtf +materials/models/props/de_inferno/archwaysupport.vtf +materials/models/props/de_inferno/archroofb.vtf +materials/models/props/de_inferno/arch_stone03_new_color.vtf +materials/models/props/de_inferno/ammo_pallet01.vtf materials/models/props/de_inferno/woodfloor008a.vtf materials/models/props/de_inferno/wood_fence.vtf materials/models/props/de_inferno/wire_spool_new_normal.vtf @@ -53385,49 +54092,6 @@ materials/models/props/de_inferno/inferno_church_entrance_color.vtf materials/models/props/de_inferno/infceilinga.vtf materials/models/props/de_inferno/infarchc_new_color.vtf materials/models/props/de_inferno/infarchc.vtf -materials/models/props/de_inferno/de_inferno_boulder_02.vtf -materials/models/props/de_inferno/de_inferno_boulder.vtf -materials/models/props/de_inferno/confessional_new_ref.vtf -materials/models/props/de_inferno/confessional_new_color.vtf -materials/models/props/de_inferno/confessional.vtf -materials/models/props/de_inferno/claypot_plants01.vtf -materials/models/props/de_inferno/claypot03.vtf -materials/models/props/de_inferno/claypot02.vtf -materials/models/props/de_inferno/clayoven2.vtf -materials/models/props/de_inferno/clayoven.vtf -materials/models/props/de_inferno/cinderblock.vtf -materials/models/props/de_inferno/churchprops04.vtf -materials/models/props/de_inferno/churchprops03.vtf -materials/models/props/de_inferno/churchprops02.vtf -materials/models/props/de_inferno/churchprops01.vtf -materials/models/props/de_inferno/church_ornament_01_normal.vtf -materials/models/props/de_inferno/church_ornament_01_color.vtf -materials/models/props/de_inferno/chimney02.vtf -materials/models/props/de_inferno/chem_drum01.vtf -materials/models/props/de_inferno/chairantique.vtf -materials/models/props/de_inferno/ceiling_light.vtf -materials/models/props/de_inferno/ceiling_fan_ref.vtf -materials/models/props/de_inferno/ceiling_fan.vtf -materials/models/props/de_inferno/cart_wheel_ref.vtf -materials/models/props/de_inferno/cart_wheel.vtf -materials/models/props/de_inferno/cannon_ref.vtf -materials/models/props/de_inferno/cannon.vtf -materials/models/props/de_inferno/bushgreen.vtf -materials/models/props/de_inferno/bridge_arch01_new_color.vtf -materials/models/props/de_inferno/bomb_tanks.vtf -materials/models/props/de_inferno/bomb_crate.vtf -materials/models/props/de_inferno/bench_wood_mask.vtf -materials/models/props/de_inferno/bench_wood_color.vtf -materials/models/props/de_inferno/bench_wood.vtf -materials/models/props/de_inferno/bench_concrete.vtf -materials/models/props/de_inferno/bell_small.vtf -materials/models/props/de_inferno/bell_large.vtf -materials/models/props/de_inferno/bed.vtf -materials/models/props/de_inferno/artillery02.vtf -materials/models/props/de_inferno/archwaysupport.vtf -materials/models/props/de_inferno/archroofb.vtf -materials/models/props/de_inferno/arch_stone03_new_color.vtf -materials/models/props/de_inferno/ammo_pallet01.vtf materials/models/props/de_inferno/head_sculpture_normal.vtf materials/models/props/de_inferno/head_sculpture_color.vtf materials/models/props/de_inferno/hazard_ribbons.vtf @@ -53462,23 +54126,6 @@ materials/models/props/de_house/de_house_table01.vtf materials/models/props/de_house/de_house_railing_interior01.vtf materials/models/props/de_house/de_house_curtains01.vtf materials/models/props/de_house/bed_rustic.vtf -materials/models/props/de_dust/dust_rusty_barrel.vtf -materials/models/props/de_dust/dust_metal_door_normal.vtf -materials/models/props/de_dust/dust_metal_door.vtf -materials/models/props/de_dust/dust_metal_box.vtf -materials/models/props/de_dust/dust_large_wood_door.vtf -materials/models/props/de_dust/dust_large_sign_ref.vtf -materials/models/props/de_dust/dust_large_sign.vtf -materials/models/props/de_dust/dust_food_crates.vtf -materials/models/props/de_dust/dust_bombsite_gap_step.vtf -materials/models/props/de_dust/dust_bombsite_gap.vtf -materials/models/props/de_dust/dust_balcony03.vtf -materials/models/props/de_dust/dust_balcony02.vtf -materials/models/props/de_dust/dust_arch_small.vtf -materials/models/props/de_dust/dust_aid_pallet.vtf -materials/models/props/de_dust/dust_aid_crate_tethers.vtf -materials/models/props/de_dust/awning_smalldoor.vtf -materials/models/props/de_dust/awning01.vtf materials/models/props/de_dust/window_palace_interior.vtf materials/models/props/de_dust/technical03.vtf materials/models/props/de_dust/technical02.vtf @@ -53510,6 +54157,23 @@ materials/models/props/de_dust/palaceinteriordome.vtf materials/models/props/de_dust/palace_pillars.vtf materials/models/props/de_dust/palace_bigdome.vtf materials/models/props/de_dust/mosquetop02.vtf +materials/models/props/de_dust/dust_rusty_barrel.vtf +materials/models/props/de_dust/dust_metal_door_normal.vtf +materials/models/props/de_dust/dust_metal_door.vtf +materials/models/props/de_dust/dust_metal_box.vtf +materials/models/props/de_dust/dust_large_wood_door.vtf +materials/models/props/de_dust/dust_large_sign_ref.vtf +materials/models/props/de_dust/dust_large_sign.vtf +materials/models/props/de_dust/dust_food_crates.vtf +materials/models/props/de_dust/dust_bombsite_gap_step.vtf +materials/models/props/de_dust/dust_bombsite_gap.vtf +materials/models/props/de_dust/dust_balcony03.vtf +materials/models/props/de_dust/dust_balcony02.vtf +materials/models/props/de_dust/dust_arch_small.vtf +materials/models/props/de_dust/dust_aid_pallet.vtf +materials/models/props/de_dust/dust_aid_crate_tethers.vtf +materials/models/props/de_dust/awning_smalldoor.vtf +materials/models/props/de_dust/awning01.vtf materials/models/props/de_depot/flatbed_rocket.vtf materials/models/props/de_cbble/window_d/window_d_normal.vtf materials/models/props/de_cbble/window_d/window_d_glow.vtf @@ -54130,11 +54794,11 @@ materials/models/props/crates/customization/weapon_crate_a/weapon_crate_a_ao.vtf materials/props/cardboardbox001c.vtf materials/props/cardboardbox001b.vtf materials/props/cardboardbox001a.vtf +materials/props/acousticceiling002a.vtf materials/props/plasticceiling002a.vtf materials/props/metalpanel020a.vtf materials/props/metalfan001a.vtf materials/props/metalcrate004d.vtf -materials/props/acousticceiling002a.vtf materials/props/woodcrate005a.vtf materials/props/woodcrate004b.vtf materials/props/woodcrate004a.vtf @@ -54339,6 +55003,7 @@ materials/particle/particle_flares/aircraft_red.vtf materials/particle/particle_flares/aircraft_green.vtf materials/particle/particle_debris_burst/particle_debris_burst_002.vtf materials/particle/particle_debris_burst/particle_debris_burst_001.vtf +materials/particle/particle_debris_burst/debris_motes.vtf materials/particle/paper/paper.vtf materials/overlays/german_signs/overpass_bank_sign.vtf materials/overlays/german_signs/german_signs_normal.vtf @@ -54358,12 +55023,19 @@ materials/overlays/urban_paintswatch_03a.vtf materials/overlays/urban_paintswatch_02a.vtf materials/overlays/urban_paintswatch_01a.vtf materials/overlays/trash_01.vtf +materials/overlays/survival_road_overlay.vtf +materials/overlays/survival_road_cap_overlay.vtf materials/overlays/survival_riverbed_color.vtf +materials/overlays/survival_hostage_zone.vtf +materials/overlays/survival_hostage_arrow.vtf +materials/overlays/survival_dust_accumulation_overlay.vtf materials/overlays/street_cover_06.vtf materials/overlays/sign_34.vtf materials/overlays/sign_32.vtf materials/overlays/sign_19.vtf materials/overlays/sign_13.vtf +materials/overlays/shorewave001a.vtf +materials/overlays/shorelap.vtf materials/overlays/shacks_storage.vtf materials/overlays/shacks_sandwich.vtf materials/overlays/shacks_restaurant03.vtf @@ -54383,6 +55055,7 @@ materials/overlays/road_stripe_01.vtf materials/overlays/road_stripe_00.vtf materials/overlays/plaster_side_05.vtf materials/overlays/plaster_side_01.vtf +materials/overlays/overlay_drywall_paint_color.vtf materials/overlays/milllogo.vtf materials/overlays/military_stencil_font.vtf materials/overlays/metalfloor_rust.vtf @@ -55037,6 +55710,11 @@ materials/models/hostage/v_hostage_arm/v_hostage_arm_skin_warp.vtf materials/models/hostage/v_hostage_arm/v_hostage_arm_skin_normal.vtf materials/models/hostage/v_hostage_arm/v_hostage_arm_skin_exp.vtf materials/models/hostage/v_hostage_arm/v_hostage_arm_skin.vtf +materials/models/hostage/hostage_head_normal.vtf +materials/models/hostage/hostage_head_exponent.vtf +materials/models/hostage/hostage_head.vtf +materials/models/hostage/hostage_hair_normal.vtf +materials/models/hostage/hostage_hair.vtf materials/models/hostage/hostage_upperbody_varianta.vtf materials/models/hostage/hostage_upperbody_normal.vtf materials/models/hostage/hostage_upperbody_exponent.vtf @@ -55056,11 +55734,6 @@ materials/models/hostage/hostage_head_variantb.vtf materials/models/hostage/hostage_head_variant_a.vtf materials/models/hostage/hostage_head_normal_variantc.vtf materials/models/hostage/hostage_head_normal_variantb.vtf -materials/models/hostage/hostage_head_normal.vtf -materials/models/hostage/hostage_head_exponent.vtf -materials/models/hostage/hostage_head.vtf -materials/models/hostage/hostage_hair_normal.vtf -materials/models/hostage/hostage_hair.vtf materials/models/player/holiday/santahat_normal.vtf materials/models/player/holiday/santahat_exp.vtf materials/models/player/holiday/santahat.vtf @@ -55331,32 +56004,11 @@ materials/engine/defaultcubemap.vtf materials/engine/camerarendertarget.vtf materials/engine/beziergrid.vtf materials/engine/bezierdetail.vtf -materials/models/editor/cone_helper.vtf -materials/models/editor/camera_sheet.vtf materials/models/editor/spot_sheet.vtf materials/models/editor/scripted_sequence.vtf materials/models/editor/overlay_helper.vtf -materials/editor/cube_vertigo.vtf -materials/editor/cordon.vtf -materials/editor/color_correction.vtf -materials/editor/climb_node.vtf -materials/editor/choreo_scene.vtf -materials/editor/choreo_manager.vtf -materials/editor/bullseye.vtf -materials/editor/basealphaenvmapmaskicon.vtf -materials/editor/axis_helper.vtf -materials/editor/assault_rally.vtf -materials/editor/assault_point.vtf -materials/editor/ambient_generic.vtf -materials/editor/aiscripted_schedule.vtf -materials/editor/air_node_hint.vtf -materials/editor/air_node.vtf -materials/editor/ai_sound.vtf -materials/editor/ai_relationship.vtf -materials/editor/ai_goal_standoff.vtf -materials/editor/ai_goal_police.vtf -materials/editor/ai_goal_lead.vtf -materials/editor/ai_goal_follow.vtf +materials/models/editor/cone_helper.vtf +materials/models/editor/camera_sheet.vtf materials/editor/worldtextsheet.vtf materials/editor/wireframe.vtf materials/editor/waterlodcontrol.vtf @@ -55436,6 +56088,27 @@ materials/editor/dotted.vtf materials/editor/cubemap.hdr.vtf materials/editor/cubemap.vtf materials/editor/cube_vertigo_blurred_hdr.vtf +materials/editor/cube_vertigo.vtf +materials/editor/cordon.vtf +materials/editor/color_correction.vtf +materials/editor/climb_node.vtf +materials/editor/choreo_scene.vtf +materials/editor/choreo_manager.vtf +materials/editor/bullseye.vtf +materials/editor/basealphaenvmapmaskicon.vtf +materials/editor/axis_helper.vtf +materials/editor/assault_rally.vtf +materials/editor/assault_point.vtf +materials/editor/ambient_generic.vtf +materials/editor/aiscripted_schedule.vtf +materials/editor/air_node_hint.vtf +materials/editor/air_node.vtf +materials/editor/ai_sound.vtf +materials/editor/ai_relationship.vtf +materials/editor/ai_goal_standoff.vtf +materials/editor/ai_goal_police.vtf +materials/editor/ai_goal_lead.vtf +materials/editor/ai_goal_follow.vtf materials/dry_wall/hr_dw/dry_wall_a_normals.vtf materials/dry_wall/hr_dw/dry_wall_a.vtf materials/particle/droplets/droplets.vtf @@ -55597,6 +56270,8 @@ materials/detail/metal_detail_01.vtf materials/detail/foliage_atlas002_masks.vtf materials/detail/foliage_atlas002.vtf materials/detail/foliage_atlas.vtf +materials/detail/dust_massive_grass_type.vtf +materials/detail/dust_massive_grass_tint.vtf materials/detail/dt_wood2.vtf materials/detail/dt_wood1.vtf materials/detail/dt_wood.vtf @@ -55670,6 +56345,10 @@ materials/decals/plaster/plaster04.vtf materials/decals/plaster/plaster03.vtf materials/decals/plaster/plaster02.vtf materials/decals/plaster/plaster01.vtf +materials/decals/metal/steel04.vtf +materials/decals/metal/steel03.vtf +materials/decals/metal/steel02.vtf +materials/decals/metal/steel01.vtf materials/decals/metal/shot7.vtf materials/decals/metal/shot6.vtf materials/decals/metal/shot5.vtf @@ -55764,6 +56443,97 @@ materials/decals/asphalt/asphalt4.vtf materials/decals/asphalt/asphalt3.vtf materials/decals/asphalt/asphalt2.vtf materials/decals/asphalt/asphalt1.vtf +materials/decals/{target2.vtf +materials/decals/{target.vtf +materials/decals/{pstripe2.vtf +materials/decals/{pstripe1.vtf +materials/decals/{arrow_r.vtf +materials/decals/{arrow_l.vtf +materials/decals/zutritt_verboten_02.vtf +materials/decals/zutritt_verboten.vtf +materials/decals/yblood1.vtf +materials/decals/xray_neck_side.vtf +materials/decals/wires04.vtf +materials/decals/wires03.vtf +materials/decals/wires02.vtf +materials/decals/wires01.vtf +materials/decals/window_wood40.vtf +materials/decals/window_wood31.vtf +materials/decals/window_wood30.vtf +materials/decals/window_wood25b.vtf +materials/decals/window_wood25.vtf +materials/decals/window_wood23b.vtf +materials/decals/window_wood23.vtf +materials/decals/window_wood14.vtf +materials/decals/window_wood01.vtf +materials/decals/window_metal04.vtf +materials/decals/window_glass03.vtf +materials/decals/window_brick12.vtf +materials/decals/win_square.vtf +materials/decals/win_rectang02.vtf +materials/decals/win_rectang.vtf +materials/decals/wallstain01a.vtf +materials/decals/vostok_windowstain.vtf +materials/decals/vostok_window11_ref.vtf +materials/decals/vostok_window11.vtf +materials/decals/vostok_window10.vtf +materials/decals/vostok_window09.vtf +materials/decals/vostok_window08.vtf +materials/decals/vostok_window07.vtf +materials/decals/vostok_window06_ref.vtf +materials/decals/vostok_window06.vtf +materials/decals/vostok_window05.vtf +materials/decals/vostok_window04.vtf +materials/decals/vostok_window03.vtf +materials/decals/vostok_window02.vtf +materials/decals/vostok_window01.vtf +materials/decals/vostok_wall01.vtf +materials/decals/vostok_exposedwood01.vtf +materials/decals/vostok_door01.vtf +materials/decals/vostok_dirt01.vtf +materials/decals/vostok_detail01.vtf +materials/decals/vostok_bulletholes_03.vtf +materials/decals/vostok_bulletholes_02.vtf +materials/decals/vostok_bulletholes_01.vtf +materials/decals/vostok_brickarch.vtf +materials/decals/vostok_ashes_01.vtf +materials/decals/vertigo_sign_accessladder.vtf +materials/decals/vertigo_sheetrockdust.vtf +materials/decals/vertigo_paint.vtf +materials/decals/vertigo_ibeam_end.vtf +materials/decals/vent_residential_00.vtf +materials/decals/vent_commercial_00.vtf +materials/decals/vent01.vtf +materials/decals/trashdecal05a.vtf +materials/decals/trashdecal04a.vtf +materials/decals/trashdecal03a.vtf +materials/decals/trashdecal02a.vtf +materials/decals/trashdecal01b.vtf +materials/decals/trashdecal01a.vtf +materials/decals/trash_00.vtf +materials/decals/trash01.vtf +materials/decals/training_start_arrow.vtf +materials/decals/training_exit_arrow.vtf +materials/decals/train_warning_signs.vtf +materials/decals/train_modern_signs.vtf +materials/decals/train_general_signs.vtf +materials/decals/torn_paper02.vtf +materials/decals/tol_hearts01.vtf +materials/decals/tol_cupid01.vtf +materials/decals/tiretracks_01.vtf +materials/decals/tilebacksplash01.vtf +materials/decals/tides_redcarpet.vtf +materials/decals/terminal_rollbahn.vtf +materials/decals/target.vtf +materials/decals/tag_grenade_instruct.vtf +materials/decals/switch02.vtf +materials/decals/switch01.vtf +materials/decals/swampleaves_decal01.vtf +materials/decals/street_zebra_crossing.vtf +materials/decals/stonework05_trim_decal.vtf +materials/decals/stainred_01.vtf +materials/decals/stain01.vtf +materials/decals/stain008.vtf materials/decals/prodgrassa.vtf materials/decals/prodflrlghta_ref.vtf materials/decals/prodflrlghta.vtf @@ -56368,97 +57138,6 @@ materials/decals/prodstaina.vtf materials/decals/prodshadow.vtf materials/decals/prodplatea.vtf materials/decals/prodpipestain01.vtf -materials/decals/{target2.vtf -materials/decals/{target.vtf -materials/decals/{pstripe2.vtf -materials/decals/{pstripe1.vtf -materials/decals/{arrow_r.vtf -materials/decals/{arrow_l.vtf -materials/decals/zutritt_verboten_02.vtf -materials/decals/zutritt_verboten.vtf -materials/decals/yblood1.vtf -materials/decals/xray_neck_side.vtf -materials/decals/wires04.vtf -materials/decals/wires03.vtf -materials/decals/wires02.vtf -materials/decals/wires01.vtf -materials/decals/window_wood40.vtf -materials/decals/window_wood31.vtf -materials/decals/window_wood30.vtf -materials/decals/window_wood25b.vtf -materials/decals/window_wood25.vtf -materials/decals/window_wood23b.vtf -materials/decals/window_wood23.vtf -materials/decals/window_wood14.vtf -materials/decals/window_wood01.vtf -materials/decals/window_metal04.vtf -materials/decals/window_glass03.vtf -materials/decals/window_brick12.vtf -materials/decals/win_square.vtf -materials/decals/win_rectang02.vtf -materials/decals/win_rectang.vtf -materials/decals/wallstain01a.vtf -materials/decals/vostok_windowstain.vtf -materials/decals/vostok_window11_ref.vtf -materials/decals/vostok_window11.vtf -materials/decals/vostok_window10.vtf -materials/decals/vostok_window09.vtf -materials/decals/vostok_window08.vtf -materials/decals/vostok_window07.vtf -materials/decals/vostok_window06_ref.vtf -materials/decals/vostok_window06.vtf -materials/decals/vostok_window05.vtf -materials/decals/vostok_window04.vtf -materials/decals/vostok_window03.vtf -materials/decals/vostok_window02.vtf -materials/decals/vostok_window01.vtf -materials/decals/vostok_wall01.vtf -materials/decals/vostok_exposedwood01.vtf -materials/decals/vostok_door01.vtf -materials/decals/vostok_dirt01.vtf -materials/decals/vostok_detail01.vtf -materials/decals/vostok_bulletholes_03.vtf -materials/decals/vostok_bulletholes_02.vtf -materials/decals/vostok_bulletholes_01.vtf -materials/decals/vostok_brickarch.vtf -materials/decals/vostok_ashes_01.vtf -materials/decals/vertigo_sign_accessladder.vtf -materials/decals/vertigo_sheetrockdust.vtf -materials/decals/vertigo_paint.vtf -materials/decals/vertigo_ibeam_end.vtf -materials/decals/vent_residential_00.vtf -materials/decals/vent_commercial_00.vtf -materials/decals/vent01.vtf -materials/decals/trashdecal05a.vtf -materials/decals/trashdecal04a.vtf -materials/decals/trashdecal03a.vtf -materials/decals/trashdecal02a.vtf -materials/decals/trashdecal01b.vtf -materials/decals/trashdecal01a.vtf -materials/decals/trash_00.vtf -materials/decals/trash01.vtf -materials/decals/training_start_arrow.vtf -materials/decals/training_exit_arrow.vtf -materials/decals/train_warning_signs.vtf -materials/decals/train_modern_signs.vtf -materials/decals/train_general_signs.vtf -materials/decals/torn_paper02.vtf -materials/decals/tol_hearts01.vtf -materials/decals/tol_cupid01.vtf -materials/decals/tiretracks_01.vtf -materials/decals/tilebacksplash01.vtf -materials/decals/tides_redcarpet.vtf -materials/decals/terminal_rollbahn.vtf -materials/decals/target.vtf -materials/decals/tag_grenade_instruct.vtf -materials/decals/switch02.vtf -materials/decals/switch01.vtf -materials/decals/swampleaves_decal01.vtf -materials/decals/street_zebra_crossing.vtf -materials/decals/stonework05_trim_decal.vtf -materials/decals/stainred_01.vtf -materials/decals/stain01.vtf -materials/decals/stain008.vtf materials/debug/particleerror.vtf materials/debug/debugworldwireframezbuffer.vtf materials/debug/debugwireframe.vtf @@ -56474,6 +57153,7 @@ materials/de_vertigo/safety_sign_text.vtf materials/de_vertigo/safety_sign.vtf materials/de_vertigo/news_overlay_2.vtf materials/de_vertigo/news_overlay.vtf +materials/de_vertigo/metal2x4.vtf materials/de_train/trainyard_metalwall06_normal.vtf materials/de_train/trainyard_metalwall06.vtf materials/de_train/trainyard_metalwall05_normal.vtf @@ -57254,6 +57934,15 @@ materials/de_aztec/aztec_carving_01.vtf materials/de_aztec/aztec_carving02_normal.vtf materials/de_aztec/aztec_carving01_normal.vtf materials/de_aztec/azstatc.vtf +materials/models/weapons/customization/uvs/weapon_fiveseven.vtf +materials/models/weapons/customization/uvs/weapon_famas.vtf +materials/models/weapons/customization/uvs/weapon_elite.vtf +materials/models/weapons/customization/uvs/weapon_deagle.vtf +materials/models/weapons/customization/uvs/weapon_cz75a.vtf +materials/models/weapons/customization/uvs/weapon_bizon.vtf +materials/models/weapons/customization/uvs/weapon_awp.vtf +materials/models/weapons/customization/uvs/weapon_aug.vtf +materials/models/weapons/customization/uvs/weapon_ak47.vtf materials/models/weapons/customization/uvs/weapon_xm1014.vtf materials/models/weapons/customization/uvs/weapon_usp_silencer.vtf materials/models/weapons/customization/uvs/weapon_ump45.vtf @@ -57284,15 +57973,6 @@ materials/models/weapons/customization/uvs/weapon_hkp2000.vtf materials/models/weapons/customization/uvs/weapon_glock.vtf materials/models/weapons/customization/uvs/weapon_galilar.vtf materials/models/weapons/customization/uvs/weapon_g3sg1.vtf -materials/models/weapons/customization/uvs/weapon_fiveseven.vtf -materials/models/weapons/customization/uvs/weapon_famas.vtf -materials/models/weapons/customization/uvs/weapon_elite.vtf -materials/models/weapons/customization/uvs/weapon_deagle.vtf -materials/models/weapons/customization/uvs/weapon_cz75a.vtf -materials/models/weapons/customization/uvs/weapon_bizon.vtf -materials/models/weapons/customization/uvs/weapon_awp.vtf -materials/models/weapons/customization/uvs/weapon_aug.vtf -materials/models/weapons/customization/uvs/weapon_ak47.vtf materials/models/weapons/customization/stickers/stickers2/welcome_clutch.vtf materials/models/weapons/customization/stickers/stickers2/stupid_banana_foil_normal.vtf materials/models/weapons/customization/stickers/stickers2/stupid_banana.vtf @@ -58125,6 +58805,13 @@ materials/models/weapons/customization/paints/custom/workshop/fiveseven_hyperbea materials/models/weapons/customization/paints/custom/workshop/fiveseven_banana.vtf materials/models/weapons/customization/paints/custom/workshop/fiveseven_augmented.vtf materials/models/weapons/customization/paints/custom/workshop/five_seven_daimyo_majestic_nose8c_srgb_3.vtf +materials/models/weapons/customization/paints/custom/bloodinthewater_ssg08.vtf +materials/models/weapons/customization/paints/custom/bittersweet.vtf +materials/models/weapons/customization/paints/custom/bayonet_lore.vtf +materials/models/weapons/customization/paints/custom/asiimov_tec09.vtf +materials/models/weapons/customization/paints/custom/ascii_famas.vtf +materials/models/weapons/customization/paints/custom/antique_bizon.vtf +materials/models/weapons/customization/paints/custom/anime_aug.vtf materials/models/weapons/customization/paints/custom/zone9_p90.vtf materials/models/weapons/customization/paints/custom/zone9_m4.vtf materials/models/weapons/customization/paints/custom/zone9_awp.vtf @@ -58148,13 +58835,6 @@ materials/models/weapons/customization/paints/custom/rubber_ak47.vtf materials/models/weapons/customization/paints/custom/retribution_beretta.vtf materials/models/weapons/customization/paints/custom/progressiv_aug.vtf materials/models/weapons/customization/paints/custom/poseidon_m4.vtf -materials/models/weapons/customization/paints/custom/bloodinthewater_ssg08.vtf -materials/models/weapons/customization/paints/custom/bittersweet.vtf -materials/models/weapons/customization/paints/custom/bayonet_lore.vtf -materials/models/weapons/customization/paints/custom/asiimov_tec09.vtf -materials/models/weapons/customization/paints/custom/ascii_famas.vtf -materials/models/weapons/customization/paints/custom/antique_bizon.vtf -materials/models/weapons/customization/paints/custom/anime_aug.vtf materials/models/weapons/customization/paints/custom/leather_p2000.vtf materials/models/weapons/customization/paints/custom/labyrinth.vtf materials/models/weapons/customization/paints/custom/knife_tactical_purple.vtf @@ -58234,6 +58914,7 @@ materials/models/weapons/customization/paints/antiqued/workshop/nova_sci_fi.vtf materials/models/weapons/customization/paints/antiqued/workshop/mp7um06.vtf materials/models/weapons/customization/paints/antiqued/workshop/mag7_swag7.vtf materials/models/weapons/customization/paints/antiqued/workshop/mac_10_alien_camo.vtf +materials/models/weapons/customization/paints/antiqued/workshop/jinn_normal.vtf materials/models/weapons/customization/paints/antiqued/workshop/jinn.vtf materials/models/weapons/customization/paints/antiqued/workshop/glock_flames_blue_green.vtf materials/models/weapons/customization/paints/antiqued/workshop/glock_dark_fall.vtf @@ -58242,11 +58923,13 @@ materials/models/weapons/customization/paints/antiqued/workshop/famas_contour.vt materials/models/weapons/customization/paints/antiqued/workshop/dualberettas_cartel.vtf materials/models/weapons/customization/paints/antiqued/workshop/dual_berettas_cartel_normal.vtf materials/models/weapons/customization/paints/antiqued/workshop/deserteagle_kumichodragon.vtf +materials/models/weapons/customization/paints/antiqued/workshop/deagle_naga_normal.vtf materials/models/weapons/customization/paints/antiqued/workshop/deagle_naga.vtf materials/models/weapons/customization/paints/antiqued/workshop/deagle_corinthian.vtf materials/models/weapons/customization/paints/antiqued/workshop/de_constable_normal.vtf materials/models/weapons/customization/paints/antiqued/workshop/de_constable.vtf materials/models/weapons/customization/paints/antiqued/workshop/coridium_p250_contour_blue.vtf +materials/models/weapons/customization/paints/antiqued/workshop/basilisk_normal.vtf materials/models/weapons/customization/paints/antiqued/workshop/basilisk.vtf materials/models/weapons/customization/paints/antiqued/workshop/awp_twine.vtf materials/models/weapons/customization/paints/antiqued/workshop/ak47_cartel_normal.vtf @@ -58569,6 +59252,14 @@ materials/models/player/ct_gign/ctm_gign_head_normal_varianta.vtf materials/models/player/ct_gign/ctm_gign_head_normal.vtf materials/models/player/ct_gign/ctm_gign_head_exponent.vtf materials/models/player/ct_gign/ctm_gign_head.vtf +materials/models/player/ct_fbi/ct_fbi_upperbody_normal.vtf +materials/models/player/ct_fbi/ct_fbi_upperbody_exponent.vtf +materials/models/player/ct_fbi/ct_fbi_upperbody.vtf +materials/models/player/ct_fbi/ct_fbi_lowerbody_normal.vtf +materials/models/player/ct_fbi/ct_fbi_lowerbody_exponent.vtf +materials/models/player/ct_fbi/ct_fbi_lowerbody.vtf +materials/models/player/ct_fbi/ct_fbi_head_variantd.vtf +materials/models/player/ct_fbi/ct_fbi_head_variantc.vtf materials/models/player/ct_fbi/ct_fbi_head_variantb.vtf materials/models/player/ct_fbi/ct_fbi_head_varianta.vtf materials/models/player/ct_fbi/ct_fbi_head_normal_variantd.vtf @@ -58583,14 +59274,6 @@ materials/models/player/ct_fbi/ct_fbi_head_exponent_varianta.vtf materials/models/player/ct_fbi/ct_fbi_head_exponent.vtf materials/models/player/ct_fbi/ct_fbi_head.vtf materials/models/player/ct_fbi/ct_fbi_glass.vtf -materials/models/player/ct_fbi/ct_fbi_upperbody_normal.vtf -materials/models/player/ct_fbi/ct_fbi_upperbody_exponent.vtf -materials/models/player/ct_fbi/ct_fbi_upperbody.vtf -materials/models/player/ct_fbi/ct_fbi_lowerbody_normal.vtf -materials/models/player/ct_fbi/ct_fbi_lowerbody_exponent.vtf -materials/models/player/ct_fbi/ct_fbi_lowerbody.vtf -materials/models/player/ct_fbi/ct_fbi_head_variantd.vtf -materials/models/player/ct_fbi/ct_fbi_head_variantc.vtf materials/cstrike/{tk_grate.vtf materials/cs_office/cs_whiteboard_04.vtf materials/cs_office/cs_whiteboard_01.vtf @@ -59147,6 +59830,7 @@ materials/cable/cablenormalmap.vtf materials/cable/cable.vtf materials/cable/black.vtf materials/models/weapons/w_models/w_c4/c4_switch.vtf +materials/models/weapons/w_models/w_c4/c4_light.vtf materials/models/weapons/w_models/w_c4/c4.vtf materials/models/weapons/v_models/c4/c4_switch.vtf materials/models/weapons/v_models/c4/c4_icon_plant.vtf @@ -59327,41 +60011,6 @@ materials/models/inventory_items/bravo_bronze_01/bravo_bronze_01.vtf materials/particle/blood_splatter/bloodsplatter_normal.vtf materials/particle/blood_splatter/bloodsplatter_light.vtf materials/particle/blood_splatter/bloodsplatter.vtf -materials/effects/screentear1.vtf -materials/effects/redflare.vtf -materials/effects/red_dot.vtf -materials/effects/red.vtf -materials/effects/puddle_ref.vtf -materials/effects/puddle.vtf -materials/effects/offgaragedr_ref.vtf -materials/effects/offgaragedr.vtf -materials/effects/offelevdrsa_ref.vtf -materials/effects/offelevdrsa.vtf -materials/effects/muzzleflashx.vtf -materials/effects/muzzleflash4.vtf -materials/effects/muzzleflash3_brightness.vtf -materials/effects/muzzleflash3.vtf -materials/effects/muzzleflash2.vtf -materials/effects/muzzleflash1_brightness.vtf -materials/effects/muzzleflash1.vtf -materials/effects/yellowflare.vtf -materials/effects/trainsky2.vtf -materials/effects/trainsky.vtf -materials/effects/coopphoenixloadingscreen.vtf -materials/effects/ibeama.vtf -materials/effects/e3_logodoor.vtf -materials/effects/drtrimc.vtf -materials/effects/drtrimb_ref.vtf -materials/effects/drtrimb.vtf -materials/effects/drtrima.vtf -materials/effects/digital_numbers_secdots.vtf -materials/effects/digital_numbers.vtf -materials/effects/digital_level_bar.vtf -materials/effects/slime1.vtf -materials/effects/slideshow_projector_04.vtf -materials/effects/slideshow_projector_03.vtf -materials/effects/slideshow_projector_02.vtf -materials/effects/slideshow_projector_01.vtf materials/effects/healthboost.vtf materials/effects/gunshiptracer.vtf materials/effects/fleck_wood2.vtf @@ -59396,14 +60045,55 @@ materials/effects/fire_cloud1.vtf materials/effects/energysplash.vtf materials/effects/energyball.vtf materials/effects/ember_swirling001.vtf -materials/effects/clear.vtf -materials/effects/christmas_bulb.vtf -materials/effects/bubble.vtf +materials/effects/e3_logodoor.vtf +materials/effects/offgaragedr_ref.vtf +materials/effects/offgaragedr.vtf +materials/effects/offelevdrsa_ref.vtf +materials/effects/offelevdrsa.vtf +materials/effects/muzzleflashx.vtf +materials/effects/muzzleflash4.vtf +materials/effects/muzzleflash3_brightness.vtf +materials/effects/muzzleflash3.vtf +materials/effects/muzzleflash2.vtf +materials/effects/muzzleflash1_brightness.vtf +materials/effects/muzzleflash1.vtf materials/effects/timer_dots.vtf materials/effects/timer_60frames.vtf materials/effects/tesla_glow.vtf materials/effects/survival_zone_projection_inv.vtf materials/effects/survival_zone_projection.vtf +materials/effects/ibeama.vtf +materials/effects/clear.vtf +materials/effects/christmas_bulb.vtf +materials/effects/bubble.vtf +materials/effects/screentear1.vtf +materials/effects/slime1.vtf +materials/effects/slideshow_projector_04.vtf +materials/effects/slideshow_projector_03.vtf +materials/effects/slideshow_projector_02.vtf +materials/effects/slideshow_projector_01.vtf +materials/effects/drtrimc.vtf +materials/effects/drtrimb_ref.vtf +materials/effects/drtrimb.vtf +materials/effects/drtrima.vtf +materials/effects/digital_numbers_secdots.vtf +materials/effects/digital_numbers.vtf +materials/effects/digital_level_bar.vtf +materials/effects/coopphoenixloadingscreen.vtf +materials/effects/redflare.vtf +materials/effects/red_dot.vtf +materials/effects/red.vtf +materials/effects/puddle_ref.vtf +materials/effects/puddle.vtf +materials/effects/metaltruss022d.vtf +materials/effects/metaltruss022c.vtf +materials/effects/metaltruss022b.vtf +materials/effects/metalrail011a.vtf +materials/effects/metalfence007a.vtf +materials/effects/metaldoor017a.vtf +materials/effects/yellowflare.vtf +materials/effects/trainsky2.vtf +materials/effects/trainsky.vtf materials/effects/bluespark.vtf materials/effects/blueblacklargebeam.vtf materials/effects/blood_puff.vtf @@ -59424,17 +60114,12 @@ materials/effects/splash3.vtf materials/effects/splash2.vtf materials/effects/splash1.vtf materials/effects/spark.vtf -materials/effects/metaltruss022d.vtf -materials/effects/metaltruss022c.vtf -materials/effects/metaltruss022b.vtf -materials/effects/metalrail011a.vtf -materials/effects/metalfence007a.vtf -materials/effects/metaldoor017a.vtf materials/effects/dangerzone_screen.vtf materials/effects/combinemuzzle2_dark.vtf materials/effects/combinemuzzle2.vtf materials/effects/combinemuzzle1_dark.vtf materials/effects/combinemuzzle1.vtf +materials/particle/muzzleflashcloud.vtf materials/particle/particle_sphere.vtf materials/particle/particle_smokegrenade_2.vtf materials/particle/particle_smokegrenade.vtf @@ -59451,10 +60136,12 @@ materials/particle/particle_glow_01.vtf materials/particle/particle_debris_02.vtf materials/particle/particle_composite.vtf materials/particle/particle_anamorphic_lens.vtf +materials/particle/snow.vtf +materials/particle/smokesprites0001.vtf materials/particle/rain_streak.vtf materials/particle/rain.vtf materials/particle/radio_icon_particle.vtf -materials/particle/muzzleflashcloud.vtf +materials/particle/molotovscorch.vtf materials/particle/warp_ripple_normal.vtf materials/particle/warp_ripple3_normal.vtf materials/particle/warp_ripple2_normal.vtf @@ -59465,8 +60152,6 @@ materials/particle/warp_rain2_height.vtf materials/particle/warp5_explosion.vtf materials/particle/warp1_normal.vtf materials/particle/voice_icon_particle.vtf -materials/particle/snow.vtf -materials/particle/smokesprites0001.vtf materials/particle/blood_drop.vtf materials/particle/bleedout_01.vtf materials/particle/billownormalmap.vtf @@ -59474,7 +60159,6 @@ materials/particle/bendibeam.vtf materials/particle/beam_taser.vtf materials/particle/beam_smoke_01.vtf materials/particle/sparkles.vtf -materials/particle/molotovscorch.vtf materials/asphalt/asphalt_damage_e_blend.vtf materials/asphalt/asphalt_c_normals.vtf materials/asphalt/asphalt_c.vtf @@ -59532,6 +60216,133 @@ materials/models/antlers/antlers.vtf materials/ads/ad01.vtf materials/models/inventory_items/5_year_coin/5_year_coin_normal.vtf materials/models/inventory_items/5_year_coin/5_year_coin.vtf +models/weapons/shield_gibs/shield_gib9.dx90.vtx +models/weapons/shield_gibs/shield_gib8.dx90.vtx +models/weapons/shield_gibs/shield_gib7.dx90.vtx +models/weapons/shield_gibs/shield_gib6.dx90.vtx +models/weapons/shield_gibs/shield_gib5.dx90.vtx +models/weapons/shield_gibs/shield_gib4.dx90.vtx +models/weapons/shield_gibs/shield_gib3.dx90.vtx +models/weapons/shield_gibs/shield_gib2.dx90.vtx +models/weapons/shield_gibs/shield_gib10.dx90.vtx +models/weapons/shield_gibs/shield_gib1.dx90.vtx +models/props/dust_massive/towers/guard_tower001_skybox.dx90.vtx +models/props/dust_massive/towers/guard_tower001.dx90.vtx +models/props/dust_massive/towers/broadcast_tower001.dx90.vtx +models/props/dust_massive/stairs/spiral_stairs_03.dx90.vtx +models/props/dust_massive/stairs/spiral_stairs_02.dx90.vtx +models/props/dust_massive/stairs/spiral_stairs_01.dx90.vtx +models/props/dust_massive/stairs/bunker_stairs_02.dx90.vtx +models/props/dust_massive/stairs/bunker_stairs_01.dx90.vtx +models/props/dust_massive/stairs/base_stairs_02.dx90.vtx +models/props/dust_massive/stairs/base_stairs_01.dx90.vtx +models/props/dust_massive/skydome_dust_massive.dx90.vtx +models/props/dust_massive/skybox/skydome_dust_massive.dx90.vtx +models/props/dust_massive/skybox/skydome_clouds_02.dx90.vtx +models/props/dust_massive/skybox/dust_massive_night.dx90.vtx +models/props/dust_massive/signs/sign_logo001b.dx90.vtx +models/props/dust_massive/signs/sign_logo001.dx90.vtx +models/props/dust_massive/scaffolding/roof_scaffolding_004.dx90.vtx +models/props/dust_massive/scaffolding/roof_scaffolding_003.dx90.vtx +models/props/dust_massive/scaffolding/roof_scaffolding_002.dx90.vtx +models/props/dust_massive/scaffolding/roof_scaffolding_001.dx90.vtx +models/props/dust_massive/roof/military_base_roof_01.dx90.vtx +models/props/dust_massive/rocks/underwater_rock001.dx90.vtx +models/props/dust_massive/rocks/cliff_wall008.dx90.vtx +models/props/dust_massive/rocks/cliff_wall007.dx90.vtx +models/props/dust_massive/rocks/cliff_wall006.dx90.vtx +models/props/dust_massive/rocks/cliff_wall005.dx90.vtx +models/props/dust_massive/rocks/cliff_wall004.dx90.vtx +models/props/dust_massive/rocks/cliff_wall003.dx90.vtx +models/props/dust_massive/rocks/cliff_wall002.dx90.vtx +models/props/dust_massive/rocks/cliff_wall001.dx90.vtx +models/props/dust_massive/rocks/cliff_rock007.dx90.vtx +models/props/dust_massive/rocks/cliff_rock006.dx90.vtx +models/props/dust_massive/rocks/cliff_rock005.dx90.vtx +models/props/dust_massive/rocks/cliff_rock004.dx90.vtx +models/props/dust_massive/rocks/cliff_rock003.dx90.vtx +models/props/dust_massive/rocks/cliff_rock002.dx90.vtx +models/props/dust_massive/rocks/cliff_rock001.dx90.vtx +models/props/dust_massive/oil_drum/oil_drum_pallet.dx90.vtx +models/props/dust_massive/front_loader/front_loader_glass.dx90.vtx +models/props/dust_massive/front_loader/front_loader_front.dx90.vtx +models/props/dust_massive/front_loader/front_loader_back.dx90.vtx +models/props/dust_massive/docks/radio_dome_platform001b.dx90.vtx +models/props/dust_massive/docks/radio_dome_platform001a.dx90.vtx +models/props/dust_massive/docks/radio_dome_dolphin001.dx90.vtx +models/props/dust_massive/docks/radio_dome001.dx90.vtx +models/props/dust_massive/docks/radar_dome_platform001c.dx90.vtx +models/props/dust_massive/docks/radar_dome_platform001b.dx90.vtx +models/props/dust_massive/docks/radar_dome_platform001a.dx90.vtx +models/props/dust_massive/docks/radar_dome_platform001_skybox_cheap.dx90.vtx +models/props/dust_massive/docks/radar_dome_platform001_skybox.dx90.vtx +models/props/dust_massive/docks/radar_dome_pipe_platform001.dx90.vtx +models/props/dust_massive/docks/radar_dome_pipe001f.dx90.vtx +models/props/dust_massive/docks/radar_dome_pipe001e.dx90.vtx +models/props/dust_massive/docks/radar_dome_pipe001d.dx90.vtx +models/props/dust_massive/docks/radar_dome_pipe001c.dx90.vtx +models/props/dust_massive/docks/radar_dome_pipe001b.dx90.vtx +models/props/dust_massive/docks/radar_dome_pipe001.dx90.vtx +models/props/dust_massive/docks/radar_dome_dolphin001e.dx90.vtx +models/props/dust_massive/docks/radar_dome_dolphin001d.dx90.vtx +models/props/dust_massive/docks/radar_dome_dolphin001c.dx90.vtx +models/props/dust_massive/docks/radar_dome_dolphin001b.dx90.vtx +models/props/dust_massive/docks/radar_dome_dolphin001.dx90.vtx +models/props/dust_massive/docks/radar_dome001.dx90.vtx +models/props/dust_massive/docks/dock_stairs001d.dx90.vtx +models/props/dust_massive/docks/dock_stairs001c.dx90.vtx +models/props/dust_massive/docks/dock_stairs001b.dx90.vtx +models/props/dust_massive/docks/dock_stairs001.dx90.vtx +models/props/dust_massive/docks/dock_pylon_sign001.dx90.vtx +models/props/dust_massive/docks/dock_pylon_holder001.dx90.vtx +models/props/dust_massive/docks/dock_pylon001.dx90.vtx +models/props/dust_massive/docks/dock_plyon_holder001.dx90.vtx +models/props/dust_massive/docks/dock_plyon001.dx90.vtx +models/props/dust_massive/docks/dock_phyon_sign001.dx90.vtx +models/props/dust_massive/docks/dock_dolphin001.dx90.vtx +models/props/dust_massive/docks/dock_bumper001.dx90.vtx +models/props/dust_massive/docks/dock_bollard001.dx90.vtx +models/props/dust_massive/debris/debris_floor_02.dx90.vtx +models/props/dust_massive/debris/debris_floor_01.dx90.vtx +models/props/dust_massive/debris/debris_04.dx90.vtx +models/props/dust_massive/debris/debris_03.dx90.vtx +models/props/dust_massive/debris/debris_02.dx90.vtx +models/props/dust_massive/debris/debris_01.dx90.vtx +models/props/dust_massive/debris/broken_roof_005.dx90.vtx +models/props/dust_massive/debris/broken_roof_004.dx90.vtx +models/props/dust_massive/debris/broken_roof_003.dx90.vtx +models/props/dust_massive/debris/broken_roof_002.dx90.vtx +models/props/dust_massive/debris/broken_roof_001.dx90.vtx +models/props/dust_massive/dam/dam.dx90.vtx +models/props/dust_massive/cargo_container/cargo_container_square_paint.dx90.vtx +models/props/dust_massive/cargo_container/cargo_container_square_closed.dx90.vtx +models/props/dust_massive/cargo_container/cargo_container_square.dx90.vtx +models/props/dust_massive/buoy/buoy001.dx90.vtx +models/props/dust_massive/buildings/lighthouse_01.dx90.vtx +models/props/dust_massive/buildings/lighthouse01.dx90.vtx +models/props/dust_massive/bridges/metal_bridge_frame.dx90.vtx +models/props/dust_massive/bridges/bridge_pier.dx90.vtx +models/props/dust_massive/bridges/bridge_arch_02.dx90.vtx +models/props/dust_massive/bridges/bridge_arch_01.dx90.vtx +models/props/dust_massive/boats/row_boat002.dx90.vtx +models/props/dust_massive/boats/row_boat001.dx90.vtx +models/props/dust_massive/blimp/blimp_001skybox.dx90.vtx +models/props/dust_massive/blimp/blimp001.dx90.vtx +models/props/dust_massive/beachwaves_dust/beachwaves_dust_c.dx90.vtx +models/props/dust_massive/beachwaves_dust/beachwaves_dust_b.dx90.vtx +models/props/dust_massive/beachwaves_dust/beachwaves_dust_a.dx90.vtx +models/props/dust_massive/barge/crane_cockpit.dx90.vtx +models/props/dust_massive/barge/crane_arm.dx90.vtx +models/props/dust_massive/barge/barge.dx90.vtx +models/props/dust_massive/apc_wreck/apc_wreck.dx90.vtx +models/props/de_vertigo/construction_elevator/construction_elevator_support_2.dx90.vtx +models/props/de_vertigo/construction_elevator/construction_elevator_support.dx90.vtx +models/props/de_vertigo/construction_elevator/construction_elevator_car.dx90.vtx +models/props/de_train/hr_t/train_car_d/train_car_d_details.dx90.vtx +models/props/de_train/hr_t/train_car_d/train_car_d.dx90.vtx +models/props/de_vertigo/ibc/ibc_1_plastic.dx90.vtx +models/props/de_vertigo/ibc/ibc_1_metal.dx90.vtx +models/props/hr_vertigo/floor_grinder/floor_grinder.dx90.vtx models/props/hr_vertigo/vertigo_traffic_cone/traffic_cone.dx90.vtx models/props/hr_vertigo/vertigo_support_jack/support_jack.dx90.vtx models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_03.dx90.vtx @@ -59539,6 +60350,7 @@ models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_02.dx90.vtx models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp.dx90.vtx models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_02.dx90.vtx models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_01.dx90.vtx +models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_corner_railing.dx90.vtx models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_weight.dx90.vtx models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_shaft_01.dx90.vtx models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_frame.dx90.vtx @@ -59555,6 +60367,9 @@ models/props/hr_vertigo/vertigo_elevator/elevator_beam_512.dx90.vtx models/props/hr_vertigo/vertigo_elevator/elevator_beam_256.dx90.vtx models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bags_02.dx90.vtx models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bags_01.dx90.vtx +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_03.dx90.vtx +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_02.dx90.vtx +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_01.dx90.vtx models/props/hr_vertigo/vertigo_cables/vertigo_cable_straight_96.dx90.vtx models/props/hr_vertigo/vertigo_cables/vertigo_cable_loop_96.dx90.vtx models/props/hr_vertigo/vertigo_cables/vertigo_cable_end_02.dx90.vtx @@ -59597,6 +60412,7 @@ models/props_survival/upgrades/upgrade_dz_helmet.dx90.vtx models/props_survival/upgrades/upgrade_dz_armor_helmet.dx90.vtx models/props_survival/upgrades/upgrade_dz_armor.dx90.vtx models/props_survival/upgrades/parachutepack.dx90.vtx +models/props_survival/upgrades/exojump.dx90.vtx models/props_survival/safe/safe_door.dx90.vtx models/props_survival/safe/safe.dx90.vtx models/props_survival/parachute/chute.dx90.vtx @@ -59607,6 +60423,7 @@ models/props_survival/jammer/jammer_gib03.dx90.vtx models/props_survival/jammer/jammer_gib02.dx90.vtx models/props_survival/jammer/jammer_gib01.dx90.vtx models/props_survival/jammer/jammer.dx90.vtx +models/props_survival/helicopter/blackhawk001.dx90.vtx models/props_survival/helicopter/blackhawk.dx90.vtx models/props_survival/dronegun/dronegun_gib8.dx90.vtx models/props_survival/dronegun/dronegun_gib7.dx90.vtx @@ -59617,23 +60434,17 @@ models/props_survival/dronegun/dronegun_gib3.dx90.vtx models/props_survival/dronegun/dronegun_gib2.dx90.vtx models/props_survival/dronegun/dronegun_gib1.dx90.vtx models/props_survival/dronegun/dronegun.dx90.vtx +models/props_survival/drone/drone_gib6.dx90.vtx +models/props_survival/drone/drone_gib5.dx90.vtx +models/props_survival/drone/drone_gib4.dx90.vtx +models/props_survival/drone/drone_gib3.dx90.vtx +models/props_survival/drone/drone_gib2.dx90.vtx +models/props_survival/drone/drone_gib1.dx90.vtx models/props_survival/drone/br_drone.dx90.vtx models/props_survival/crates/crate_ammobox.dx90.vtx models/props_survival/counter/counter_a.dx90.vtx models/props_survival/cash/prop_cash_stack.dx90.vtx models/props_survival/cash/dufflebag.dx90.vtx -models/props_survival/cases/case_explosive_gib011.dx90.vtx -models/props_survival/cases/case_explosive_gib010.dx90.vtx -models/props_survival/cases/case_explosive_gib009.dx90.vtx -models/props_survival/cases/case_explosive_gib008.dx90.vtx -models/props_survival/cases/case_explosive_gib007.dx90.vtx -models/props_survival/cases/case_explosive_gib006.dx90.vtx -models/props_survival/cases/case_explosive_gib005.dx90.vtx -models/props_survival/cases/case_explosive_gib004.dx90.vtx -models/props_survival/cases/case_explosive_gib003.dx90.vtx -models/props_survival/cases/case_explosive_gib002.dx90.vtx -models/props_survival/cases/case_explosive_gib001.dx90.vtx -models/props_survival/cases/case_explosive.dx90.vtx models/props_survival/cases/paradrop_chute.dx90.vtx models/props_survival/cases/case_tools_static.dx90.vtx models/props_survival/cases/case_tools_heavy_static.dx90.vtx @@ -59700,6 +60511,7 @@ models/props_survival/cases/case_tools_gib003.dx90.vtx models/props_survival/cases/case_tools_gib002.dx90.vtx models/props_survival/cases/case_tools_gib001.dx90.vtx models/props_survival/cases/case_tools.dx90.vtx +models/props_survival/cases/case_respawn.dx90.vtx models/props_survival/cases/case_random_drop_gib039.dx90.vtx models/props_survival/cases/case_random_drop_gib038.dx90.vtx models/props_survival/cases/case_random_drop_gib037.dx90.vtx @@ -59945,6 +60757,18 @@ models/props_survival/cases/case_explosive_gib015.dx90.vtx models/props_survival/cases/case_explosive_gib014.dx90.vtx models/props_survival/cases/case_explosive_gib013.dx90.vtx models/props_survival/cases/case_explosive_gib012.dx90.vtx +models/props_survival/cases/case_explosive_gib011.dx90.vtx +models/props_survival/cases/case_explosive_gib010.dx90.vtx +models/props_survival/cases/case_explosive_gib009.dx90.vtx +models/props_survival/cases/case_explosive_gib008.dx90.vtx +models/props_survival/cases/case_explosive_gib007.dx90.vtx +models/props_survival/cases/case_explosive_gib006.dx90.vtx +models/props_survival/cases/case_explosive_gib005.dx90.vtx +models/props_survival/cases/case_explosive_gib004.dx90.vtx +models/props_survival/cases/case_explosive_gib003.dx90.vtx +models/props_survival/cases/case_explosive_gib002.dx90.vtx +models/props_survival/cases/case_explosive_gib001.dx90.vtx +models/props_survival/cases/case_explosive.dx90.vtx models/props_survival/briefcase/briefcase.dx90.vtx models/props/hr_massive/wood_spool/wood_spool.dx90.vtx models/props/hr_massive/wood_planks/wood_plank_4_4_128.dx90.vtx @@ -60442,6 +61266,7 @@ models/inventory_items/scoreboard_logos/logo_t.dx90.vtx models/inventory_items/scoreboard_logos/logo_ct.dx90.vtx models/player/custom_player/uiplayer/animset_uiplayer.dx90.vtx models/props/de_nuke/hr_nuke/skylight_2/skylight_2.dx90.vtx +models/props/de_dust/hr_dust/dust_soccerball/soccer_goal.dx90.vtx models/props/de_dust/hr_dust/dust_soccerball/dust_soccer_ball001.dx90.vtx models/props/de_dust/hr_dust/wooden_structures/wooden_support_alley.dx90.vtx models/props/de_dust/hr_dust/wooden_structures/wooden_structure_1.dx90.vtx @@ -60459,16 +61284,6 @@ models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_kasbah3.dx90.vtx models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_kasbah2.dx90.vtx models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_kasbah1.dx90.vtx models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_center.dx90.vtx -models/props/de_dust/hr_dust/foliage/short_grass_04.dx90.vtx -models/props/de_dust/hr_dust/foliage/short_grass_03.dx90.vtx -models/props/de_dust/hr_dust/foliage/short_grass_02.dx90.vtx -models/props/de_dust/hr_dust/foliage/short_grass_01.dx90.vtx -models/props/de_dust/hr_dust/foliage/sage_bush_03.dx90.vtx -models/props/de_dust/hr_dust/foliage/sage_bush_02.dx90.vtx -models/props/de_dust/hr_dust/foliage/sage_bush_01.dx90.vtx -models/props/de_dust/hr_dust/foliage/potted_plant_05.dx90.vtx -models/props/de_dust/hr_dust/foliage/potted_plant_04.dx90.vtx -models/props/de_dust/hr_dust/foliage/potted_plant_03.dx90.vtx models/props/de_dust/hr_dust/foliage/potted_plant_02.dx90.vtx models/props/de_dust/hr_dust/foliage/potted_plant_01a.dx90.vtx models/props/de_dust/hr_dust/foliage/potted_plant_01.dx90.vtx @@ -60494,6 +61309,8 @@ models/props/de_dust/hr_dust/foliage/olive_tree_skybox_03.dx90.vtx models/props/de_dust/hr_dust/foliage/olive_tree_skybox_02.dx90.vtx models/props/de_dust/hr_dust/foliage/olive_tree_skybox_01.dx90.vtx models/props/de_dust/hr_dust/foliage/olive_tree_card_01.dx90.vtx +models/props/de_dust/hr_dust/foliage/olive_tree_03b.dx90.vtx +models/props/de_dust/hr_dust/foliage/olive_tree_03.dx90.vtx models/props/de_dust/hr_dust/foliage/olive_tree_02.dx90.vtx models/props/de_dust/hr_dust/foliage/olive_tree_01b.dx90.vtx models/props/de_dust/hr_dust/foliage/olive_tree_01.dx90.vtx @@ -60511,6 +61328,7 @@ models/props/de_dust/hr_dust/foliage/fan_palm_02.dx90.vtx models/props/de_dust/hr_dust/foliage/fan_palm_01.dx90.vtx models/props/de_dust/hr_dust/foliage/dusty_weed_plant_02.dx90.vtx models/props/de_dust/hr_dust/foliage/dusty_weed_plant_01.dx90.vtx +models/props/de_dust/hr_dust/foliage/bushes_barberry_dust_01.dx90.vtx models/props/de_dust/hr_dust/foliage/bush_sumac_03.dx90.vtx models/props/de_dust/hr_dust/foliage/bush_sumac_02.dx90.vtx models/props/de_dust/hr_dust/foliage/bush_sumac_01.dx90.vtx @@ -60543,6 +61361,16 @@ models/props/de_dust/hr_dust/foliage/weed_grass_02.dx90.vtx models/props/de_dust/hr_dust/foliage/weed_grass_01a.dx90.vtx models/props/de_dust/hr_dust/foliage/weed_grass_01.dx90.vtx models/props/de_dust/hr_dust/foliage/tall_zebra_grass_01.dx90.vtx +models/props/de_dust/hr_dust/foliage/short_grass_04.dx90.vtx +models/props/de_dust/hr_dust/foliage/short_grass_03.dx90.vtx +models/props/de_dust/hr_dust/foliage/short_grass_02.dx90.vtx +models/props/de_dust/hr_dust/foliage/short_grass_01.dx90.vtx +models/props/de_dust/hr_dust/foliage/sage_bush_03.dx90.vtx +models/props/de_dust/hr_dust/foliage/sage_bush_02.dx90.vtx +models/props/de_dust/hr_dust/foliage/sage_bush_01.dx90.vtx +models/props/de_dust/hr_dust/foliage/potted_plant_05.dx90.vtx +models/props/de_dust/hr_dust/foliage/potted_plant_04.dx90.vtx +models/props/de_dust/hr_dust/foliage/potted_plant_03.dx90.vtx models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_stack_01.dx90.vtx models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_broken.dx90.vtx models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_01_small.dx90.vtx @@ -60643,16 +61471,20 @@ models/props/de_dust/hr_dust/dust_windows/dust_window_shutters_24x24_01_closed_l models/props/de_dust/hr_dust/dust_windows/dust_window_shutters_24x24_01_closed.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_quarter_round_112_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_02.dx90.vtx +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x24_02.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x24_01.dx90.vtx +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_48x48_01_grill.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_02.dx90.vtx +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x62_round_02.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x62_round_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x64_02.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x64_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_02.dx90.vtx +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_64x64_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_64x24_01.dx90.vtx @@ -60661,11 +61493,16 @@ models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_36x62_round_ models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_24x64_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_24x24_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x64_01.dx90.vtx +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x24_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x24_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_56x90_01.dx90.vtx +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x64_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x64_01.dx90.vtx +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x62_round_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x62_round_01.dx90.vtx +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x64_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x64_01.dx90.vtx +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x24_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x24_01.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_bars_64x64_06.dx90.vtx models/props/de_dust/hr_dust/dust_windows/dust_window_bars_64x64_05.dx90.vtx @@ -60779,6 +61616,7 @@ models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass_opaque.dx90.vtx models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass_broken.dx90.vtx models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass.dx90.vtx models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_body.dx90.vtx +models/props/de_dust/hr_dust/dust_vehicles/dust_taxi2_body.dx90.vtx models/props/de_dust/hr_dust/dust_vehicles/dust_limo_lowpoly.dx90.vtx models/props/de_dust/hr_dust/dust_vehicles/dust_hatchback_wheels.dx90.vtx models/props/de_dust/hr_dust/dust_vehicles/dust_hatchback_interior.dx90.vtx @@ -60842,6 +61680,7 @@ models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_64.dx90.vtx models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_32.dx90.vtx models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_256.dx90.vtx models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_128.dx90.vtx +models/props/de_dust/hr_dust/dust_trims/dust_stairs006_96.dx90.vtx models/props/de_dust/hr_dust/dust_trims/dust_stairs005_96.dx90.vtx models/props/de_dust/hr_dust/dust_trims/dust_stairs003b_256.dx90.vtx models/props/de_dust/hr_dust/dust_trims/dust_stairs003_64.dx90.vtx @@ -61114,6 +61953,59 @@ models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_bracket_01.dx90 models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_03.dx90.vtx models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_02.dx90.vtx models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_14.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_13.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_12.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_11.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_10.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_09.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_08.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_07.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_06.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_05.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_04.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_03.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_03.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02_flush.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01_flush.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_right_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_left_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x64_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x32_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x256_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x128_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x64_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x32_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x256_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x128_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_board_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x64_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x32_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x256_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x128_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02_skybox.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01_skybox.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_l_tunnels_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_03.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/mudbrick_single_test.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_wood_wall_64_03.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_wood_wall_64_02.dx90.vtx @@ -61252,6 +62144,11 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_04.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_03.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_02.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_end_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_end_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_03.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_02.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_02.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_01.dx90.vtx @@ -61263,6 +62160,7 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_loose_board_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_76_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_256_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_128_01.dx90.vtx +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_wedge_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_tall_end_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_tall_corner_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_tall_96_02.dx90.vtx @@ -61295,59 +62193,6 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_64_02.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_64_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_32_01.dx90.vtx models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_14.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_13.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_12.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_11.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_10.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_09.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_08.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_07.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_06.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_05.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_04.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_03.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_03.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02_flush.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01_flush.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_right_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_left_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x64_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x32_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x256_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x128_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x64_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x32_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x256_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x128_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_board_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x64_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x32_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x256_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x128_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02_skybox.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01_skybox.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_l_tunnels_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_03.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_01.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_02.dx90.vtx -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_01.dx90.vtx models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_lid.dx90.vtx models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_02.dx90.vtx models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_01.dx90.vtx @@ -61412,7 +62257,9 @@ models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_192x128_inset_01.dx90.vt models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_surface_01.dx90.vtx models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_open_01.dx90.vtx models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_inset_01.dx90.vtx +models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_96x128_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_96x128_01.dx90.vtx +models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_89x128_01_complete.dx90.vtx models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_89x128_01.dx90.vtx models/props/de_dust/hr_dust/dust_doors/dust_door_underpass_01.dx90.vtx models/props/de_dust/hr_dust/dust_doors/dust_door_transome_window_round_06.dx90.vtx @@ -61465,6 +62312,7 @@ models/props/de_dust/hr_dust/dust_doorframes/dust_doortransome_01.dx90.vtx models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_03.dx90.vtx models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_02.dx90.vtx models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_01.dx90.vtx +models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_56x106_03_complete.dx90.vtx models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_03.dx90.vtx models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_02.dx90.vtx models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_01.dx90.vtx @@ -61495,6 +62343,10 @@ models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_128_a_striped.dx90.vt models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_128_a.dx90.vtx models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_1024_a_striped.dx90.vtx models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_1024_a.dx90.vtx +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_02.dx90.vtx +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_01.dx90.vtx +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_02.dx90.vtx +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_01.dx90.vtx models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate_stack_02.dx90.vtx models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate_stack_01.dx90.vtx models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate.dx90.vtx @@ -61537,10 +62389,6 @@ models/props/de_dust/hr_dust/dust_crates/dust_crate_style_01_32x16x64.dx90.vtx models/props/de_dust/hr_dust/dust_crates/dust_crate_style_01_32x16x32.dx90.vtx models/props/de_dust/hr_dust/dust_crates/dust_crate_assembly_100x100_01_tarp.dx90.vtx models/props/de_dust/hr_dust/dust_crates/dust_crate_assembly_100x100_01.dx90.vtx -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_02.dx90.vtx -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_01.dx90.vtx -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_02.dx90.vtx -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_01.dx90.vtx models/props/de_dust/hr_dust/dust_construction/dust_rebar_stack.dx90.vtx models/props/de_dust/hr_dust/dust_construction/dust_flexconduit_spool.dx90.vtx models/props/de_dust/hr_dust/dust_cloth_line/cloth_line_mount.dx90.vtx @@ -64111,6 +64959,30 @@ models/props/coop_cementplant/coop_ammo_stash/coop_ammo_stash_full.dx90.vtx models/props/coop_cementplant/coop_ammo_stash/coop_ammo_stash_empty.dx90.vtx models/coop/challenge_coin.dx90.vtx models/props/de_inferno/hr_i/clothes_a/clothes_b.dx90.vtx +models/player/custom_player/legacy/ctm_sas_varianta.dx90.vtx +models/player/custom_player/legacy/ctm_sas.dx90.vtx +models/player/custom_player/legacy/ctm_idf_variantf.dx90.vtx +models/player/custom_player/legacy/ctm_idf_variante.dx90.vtx +models/player/custom_player/legacy/ctm_idf_variantd.dx90.vtx +models/player/custom_player/legacy/ctm_idf_variantc.dx90.vtx +models/player/custom_player/legacy/ctm_idf_variantb.dx90.vtx +models/player/custom_player/legacy/ctm_idf.dx90.vtx +models/player/custom_player/legacy/ctm_heavy.dx90.vtx +models/player/custom_player/legacy/ctm_gsg9_variantd.dx90.vtx +models/player/custom_player/legacy/ctm_gsg9_variantc.dx90.vtx +models/player/custom_player/legacy/ctm_gsg9_variantb.dx90.vtx +models/player/custom_player/legacy/ctm_gsg9_varianta.dx90.vtx +models/player/custom_player/legacy/ctm_gsg9.dx90.vtx +models/player/custom_player/legacy/ctm_gign_variantd.dx90.vtx +models/player/custom_player/legacy/ctm_gign_variantc.dx90.vtx +models/player/custom_player/legacy/ctm_gign_variantb.dx90.vtx +models/player/custom_player/legacy/ctm_gign_varianta.dx90.vtx +models/player/custom_player/legacy/ctm_gign.dx90.vtx +models/player/custom_player/legacy/ctm_fbi_variantd.dx90.vtx +models/player/custom_player/legacy/ctm_fbi_variantc.dx90.vtx +models/player/custom_player/legacy/ctm_fbi_variantb.dx90.vtx +models/player/custom_player/legacy/ctm_fbi_varianta.dx90.vtx +models/player/custom_player/legacy/ctm_fbi.dx90.vtx models/player/custom_player/legacy/tm_separatist_variantd.dx90.vtx models/player/custom_player/legacy/tm_separatist_variantc.dx90.vtx models/player/custom_player/legacy/tm_separatist_variantb.dx90.vtx @@ -64164,30 +65036,6 @@ models/player/custom_player/legacy/ctm_sas_variante.dx90.vtx models/player/custom_player/legacy/ctm_sas_variantd.dx90.vtx models/player/custom_player/legacy/ctm_sas_variantc.dx90.vtx models/player/custom_player/legacy/ctm_sas_variantb.dx90.vtx -models/player/custom_player/legacy/ctm_sas_varianta.dx90.vtx -models/player/custom_player/legacy/ctm_sas.dx90.vtx -models/player/custom_player/legacy/ctm_idf_variantf.dx90.vtx -models/player/custom_player/legacy/ctm_idf_variante.dx90.vtx -models/player/custom_player/legacy/ctm_idf_variantd.dx90.vtx -models/player/custom_player/legacy/ctm_idf_variantc.dx90.vtx -models/player/custom_player/legacy/ctm_idf_variantb.dx90.vtx -models/player/custom_player/legacy/ctm_idf.dx90.vtx -models/player/custom_player/legacy/ctm_heavy.dx90.vtx -models/player/custom_player/legacy/ctm_gsg9_variantd.dx90.vtx -models/player/custom_player/legacy/ctm_gsg9_variantc.dx90.vtx -models/player/custom_player/legacy/ctm_gsg9_variantb.dx90.vtx -models/player/custom_player/legacy/ctm_gsg9_varianta.dx90.vtx -models/player/custom_player/legacy/ctm_gsg9.dx90.vtx -models/player/custom_player/legacy/ctm_gign_variantd.dx90.vtx -models/player/custom_player/legacy/ctm_gign_variantc.dx90.vtx -models/player/custom_player/legacy/ctm_gign_variantb.dx90.vtx -models/player/custom_player/legacy/ctm_gign_varianta.dx90.vtx -models/player/custom_player/legacy/ctm_gign.dx90.vtx -models/player/custom_player/legacy/ctm_fbi_variantd.dx90.vtx -models/player/custom_player/legacy/ctm_fbi_variantc.dx90.vtx -models/player/custom_player/legacy/ctm_fbi_variantb.dx90.vtx -models/player/custom_player/legacy/ctm_fbi_varianta.dx90.vtx -models/player/custom_player/legacy/ctm_fbi.dx90.vtx models/player/custom_player/animset_t.dx90.vtx models/player/custom_player/animset_ct.dx90.vtx models/player/custom_player/scaffold_t.dx90.vtx @@ -64396,9 +65244,9 @@ models/shells/shell_57.dx90.vtx models/shells/shell_556.dx90.vtx models/shells/shell_338mag.dx90.vtx models/shells/shell_12gauge.dx90.vtx -models/props_yard/playground_swingset02.dx90.vtx models/props_yard/playground_structure.dx90.vtx models/props_yard/playground_slide.dx90.vtx +models/props_yard/playground_swingset02.dx90.vtx models/props_windows/window_urban_sash_48_88_tframe.dx90.vtx models/props_windows/window_urban_sash_48_88_rounded.dx90.vtx models/props_windows/window_urban_sash_48_88_open.dx90.vtx @@ -66488,9 +67336,11 @@ models/props/de_vertigo/scaffolding_walkway_03.dx90.vtx models/props/de_vertigo/scaffolding_walkway_02.dx90.vtx models/props/de_vertigo/scaffolding_walkway_01.dx90.vtx models/props/de_vertigo/scaffolding_end_open.dx90.vtx +models/props/de_vertigo/scaffolding_end_b.dx90.vtx models/props/de_vertigo/scaffolding_end.dx90.vtx models/props/de_vertigo/scaffolding_building_edge_support.dx90.vtx models/props/de_vertigo/scaffolding_building_edge_guard.dx90.vtx +models/props/de_vertigo/scaffolding_building_edge_corner_02.dx90.vtx models/props/de_vertigo/scaffolding_building_edge_corner.dx90.vtx models/props/de_vertigo/scaffolding_building_edge.dx90.vtx models/props/de_vertigo/scaffolding_brace.dx90.vtx @@ -66566,6 +67416,7 @@ models/props/de_vertigo/insulation_scappiece_02.dx90.vtx models/props/de_vertigo/insulation_scappiece_01.dx90.vtx models/props/de_vertigo/ibeams_big01.dx90.vtx models/props/de_vertigo/ibeam_vertical_medium.dx90.vtx +models/props/de_vertigo/ibeam_vertical_large_high.dx90.vtx models/props/de_vertigo/ibeam_vertical_large.dx90.vtx models/props/de_vertigo/ibeam_stack.dx90.vtx models/props/de_vertigo/ibeam_plate_topbottom.dx90.vtx @@ -66584,6 +67435,7 @@ models/props/de_vertigo/ibeam_plate_bigbolt.dx90.vtx models/props/de_vertigo/ibeam_horizontal_small_02.dx90.vtx models/props/de_vertigo/ibeam_horizontal_small.dx90.vtx models/props/de_vertigo/ibeam_horizontal_large_hole.dx90.vtx +models/props/de_vertigo/ibeam_horizontal_large_high.dx90.vtx models/props/de_vertigo/ibeam_horizontal_large_04.dx90.vtx models/props/de_vertigo/ibeam_horizontal_large_03.dx90.vtx models/props/de_vertigo/ibeam_horizontal_large_02.dx90.vtx @@ -66627,6 +67479,7 @@ models/props/de_vertigo/flexconduit_bundle.dx90.vtx models/props/de_vertigo/fencerail_constructionnetting_02.dx90.vtx models/props/de_vertigo/fencerail_constructionnetting_01.dx90.vtx models/props/de_vertigo/fencerail_constructioncables_01.dx90.vtx +models/props/de_vertigo/fencerail_construction_netting_03.dx90.vtx models/props/de_vertigo/fencerail_construction2x4_break_base.dx90.vtx models/props/de_vertigo/fencepost_constructionmetal_01.dx90.vtx models/props/de_vertigo/elevator_top_shaft_e.dx90.vtx @@ -67227,124 +68080,6 @@ models/props/de_mill/de_mill_grinder_ramp_01.dx90.vtx models/props/de_mill/de_mill_grinder_cutter01_ramp.dx90.vtx models/props/de_mill/de_mill_grinder_cutter01.dx90.vtx models/props/de_mill/de_mill_cane_carrier01.dx90.vtx -models/props/de_inferno/wood_fence_end.vtx -models/props/de_inferno/wood_fence_end.dx90.vtx -models/props/de_inferno/wood_fence.vtx -models/props/de_inferno/wood_fence.dx90.vtx -models/props/de_inferno/wire_spool02_new.dx90.vtx -models/props/de_inferno/wire_spool01_new.dx90.vtx -models/props/de_inferno/wine_barrel_static.dx90.vtx -models/props/de_inferno/wall_lamp3.dx90.vtx -models/props/de_inferno/wall_lamp2.dx90.vtx -models/props/de_inferno/wall_lamp.dx90.vtx -models/props/de_inferno/wagon.dx90.vtx -models/props/de_inferno/tv_monitor01_static.dx90.vtx -models/props/de_inferno/tv_monitor01.dx90.vtx -models/props/de_inferno/tree_large.dx90.vtx -models/props/de_inferno/transportation_rack.dx90.vtx -models/props/de_inferno/tablecoffee_static.dx90.vtx -models/props/de_inferno/tableantique.vtx -models/props/de_inferno/tableantique.dx90.vtx -models/props/de_inferno/stone_pillar_96_new.dx90.vtx -models/props/de_inferno/stone_pillar_94_new.dx90.vtx -models/props/de_inferno/stone_pillar_94.dx90.vtx -models/props/de_inferno/stone_pillar_86_new.dx90.vtx -models/props/de_inferno/stone_pillar_86.dx90.vtx -models/props/de_inferno/stone_pillar_77_new.dx90.vtx -models/props/de_inferno/stone_pillar_77.dx90.vtx -models/props/de_inferno/stone_pillar_73_new.dx90.vtx -models/props/de_inferno/stone_pillar_73.dx90.vtx -models/props/de_inferno/stone_pillar_108_new.dx90.vtx -models/props/de_inferno/stone_pillar_108.dx90.vtx -models/props/de_inferno/stone_buildingedge.dx90.vtx -models/props/de_inferno/stone_bench.dx90.vtx -models/props/de_inferno/splinter_damage_02.dx90.vtx -models/props/de_inferno/splinter_damage_01.dx90.vtx -models/props/de_inferno/spireb_new.dx90.vtx -models/props/de_inferno/spireb.dx90.vtx -models/props/de_inferno/shell_pallet.dx90.vtx -models/props/de_inferno/scaffolding.dx90.vtx -models/props/de_inferno/roofbits22.dx90.vtx -models/props/de_inferno/roofbits21.dx90.vtx -models/props/de_inferno/roofbits20.dx90.vtx -models/props/de_inferno/roofbits19.dx90.vtx -models/props/de_inferno/roofbits18.dx90.vtx -models/props/de_inferno/roofbits17.dx90.vtx -models/props/de_inferno/roofbits16.dx90.vtx -models/props/de_inferno/roofbits15.dx90.vtx -models/props/de_inferno/roofbits14.dx90.vtx -models/props/de_inferno/roofbits13.dx90.vtx -models/props/de_inferno/roofbits12.dx90.vtx -models/props/de_inferno/roofbits10.dx90.vtx -models/props/de_inferno/roofbits09.dx90.vtx -models/props/de_inferno/roofbits08.dx90.vtx -models/props/de_inferno/roofbits07.dx90.vtx -models/props/de_inferno/roofbits06.dx90.vtx -models/props/de_inferno/roofbits05.dx90.vtx -models/props/de_inferno/roofbits04.dx90.vtx -models/props/de_inferno/roofbits03.dx90.vtx -models/props/de_inferno/roofbits02.dx90.vtx -models/props/de_inferno/roofbits01.dx90.vtx -models/props/de_inferno/roof01a.dx90.vtx -models/props/de_inferno/railingspikedgate.dx90.vtx -models/props/de_inferno/railingspiked.dx90.vtx -models/props/de_inferno/railingbombsite_sparse.dx90.vtx -models/props/de_inferno/railingbombsite.dx90.vtx -models/props/de_inferno/railingbalcony.dx90.vtx -models/props/de_inferno/railing_longhall.dx90.vtx -models/props/de_inferno/railing_gate.dx90.vtx -models/props/de_inferno/railing_ctspawn_02_sparse.dx90.vtx -models/props/de_inferno/railing_ctspawn_02.dx90.vtx -models/props/de_inferno/railing_ctspawn.dx90.vtx -models/props/de_inferno/railing_bridge.dx90.vtx -models/props/de_inferno/railing_bombsite02_sparse.dx90.vtx -models/props/de_inferno/railing_bombsite02.dx90.vtx -models/props/de_inferno/railing_backentrance.dx90.vtx -models/props/de_inferno/railing05_decline168_576.dx90.vtx -models/props/de_inferno/railing04long.dx90.vtx -models/props/de_inferno/railing03b.dx90.vtx -models/props/de_inferno/railing03_corner.dx90.vtx -models/props/de_inferno/railing03.dx90.vtx -models/props/de_inferno/railing01.dx90.vtx -models/props/de_inferno/radiator01a.dx90.vtx -models/props/de_inferno/potted_plant3_simple.dx90.vtx -models/props/de_inferno/potted_plant3_p1.dx90.vtx -models/props/de_inferno/potted_plant2_simple.dx90.vtx -models/props/de_inferno/potted_plant2_p1.dx90.vtx -models/props/de_inferno/potted_plant1_simple.dx90.vtx -models/props/de_inferno/potted_plant1_p1.dx90.vtx -models/props/de_inferno/pot_big.dx90.vtx -models/props/de_inferno/plasterinfwndwg_inside.dx90.vtx -models/props/de_inferno/plasterinfwndwg.dx90.vtx -models/props/de_inferno/plasterinfwndwe.dx90.vtx -models/props/de_inferno/plaster_buildingedge.dx90.vtx -models/props/de_inferno/plant01_p4.dx90.vtx -models/props/de_inferno/plant01_p3.dx90.vtx -models/props/de_inferno/plant01_p2.dx90.vtx -models/props/de_inferno/pillard.dx90.vtx -models/props/de_inferno/pillarc.dx90.vtx -models/props/de_inferno/picture3_static.dx90.vtx -models/props/de_inferno/picture2_static.dx90.vtx -models/props/de_inferno/picture1_static.dx90.vtx -models/props/de_inferno/monument_new.dx90.vtx -models/props/de_inferno/monument.dx90.vtx -models/props/de_inferno/logpile_new.dx90.vtx -models/props/de_inferno/logpile_cloth.dx90.vtx -models/props/de_inferno/logpile.dx90.vtx -models/props/de_inferno/light_streetlight_new.dx90.vtx -models/props/de_inferno/light_streetlight.dx90.vtx -models/props/de_inferno/light_fixture.dx90.vtx -models/props/de_inferno/lattice.dx90.vtx -models/props/de_inferno/largebush05.dx90.vtx -models/props/de_inferno/largebush04.dx90.vtx -models/props/de_inferno/largebush03.dx90.vtx -models/props/de_inferno/infsteps01.dx90.vtx -models/props/de_inferno/inferno_tower01.dx90.vtx -models/props/de_inferno/inferno_fence_02.dx90.vtx -models/props/de_inferno/inferno_fence_01.dx90.vtx -models/props/de_inferno/inferno_church_entrance.dx90.vtx -models/props/de_inferno/infarchc_new.dx90.vtx -models/props/de_inferno/infarchc.dx90.vtx models/props/de_inferno/de_inferno_well.dx90.vtx models/props/de_inferno/de_inferno_boulder_02.dx90.vtx models/props/de_inferno/de_inferno_boulder_01.dx90.vtx @@ -67412,6 +68147,124 @@ models/props/de_inferno/arch_stones03_new.dx90.vtx models/props/de_inferno/arch_stones03.dx90.vtx models/props/de_inferno/arch_stones02_new.dx90.vtx models/props/de_inferno/arch_stones02.dx90.vtx +models/props/de_inferno/wood_fence_end.vtx +models/props/de_inferno/wood_fence_end.dx90.vtx +models/props/de_inferno/wood_fence.vtx +models/props/de_inferno/wood_fence.dx90.vtx +models/props/de_inferno/wire_spool02_new.dx90.vtx +models/props/de_inferno/wire_spool01_new.dx90.vtx +models/props/de_inferno/wine_barrel_static.dx90.vtx +models/props/de_inferno/wall_lamp3.dx90.vtx +models/props/de_inferno/wall_lamp2.dx90.vtx +models/props/de_inferno/wall_lamp.dx90.vtx +models/props/de_inferno/wagon.dx90.vtx +models/props/de_inferno/tv_monitor01_static.dx90.vtx +models/props/de_inferno/tv_monitor01.dx90.vtx +models/props/de_inferno/tree_large.dx90.vtx +models/props/de_inferno/transportation_rack.dx90.vtx +models/props/de_inferno/tablecoffee_static.dx90.vtx +models/props/de_inferno/tableantique.vtx +models/props/de_inferno/tableantique.dx90.vtx +models/props/de_inferno/stone_pillar_96_new.dx90.vtx +models/props/de_inferno/stone_pillar_94_new.dx90.vtx +models/props/de_inferno/stone_pillar_94.dx90.vtx +models/props/de_inferno/stone_pillar_86_new.dx90.vtx +models/props/de_inferno/stone_pillar_86.dx90.vtx +models/props/de_inferno/stone_pillar_77_new.dx90.vtx +models/props/de_inferno/stone_pillar_77.dx90.vtx +models/props/de_inferno/stone_pillar_73_new.dx90.vtx +models/props/de_inferno/stone_pillar_73.dx90.vtx +models/props/de_inferno/stone_pillar_108_new.dx90.vtx +models/props/de_inferno/stone_pillar_108.dx90.vtx +models/props/de_inferno/stone_buildingedge.dx90.vtx +models/props/de_inferno/stone_bench.dx90.vtx +models/props/de_inferno/splinter_damage_02.dx90.vtx +models/props/de_inferno/splinter_damage_01.dx90.vtx +models/props/de_inferno/spireb_new.dx90.vtx +models/props/de_inferno/spireb.dx90.vtx +models/props/de_inferno/shell_pallet.dx90.vtx +models/props/de_inferno/scaffolding.dx90.vtx +models/props/de_inferno/roofbits22.dx90.vtx +models/props/de_inferno/roofbits21.dx90.vtx +models/props/de_inferno/roofbits20.dx90.vtx +models/props/de_inferno/roofbits19.dx90.vtx +models/props/de_inferno/roofbits18.dx90.vtx +models/props/de_inferno/roofbits17.dx90.vtx +models/props/de_inferno/roofbits16.dx90.vtx +models/props/de_inferno/roofbits15.dx90.vtx +models/props/de_inferno/roofbits14.dx90.vtx +models/props/de_inferno/roofbits13.dx90.vtx +models/props/de_inferno/roofbits12.dx90.vtx +models/props/de_inferno/roofbits10.dx90.vtx +models/props/de_inferno/roofbits09.dx90.vtx +models/props/de_inferno/roofbits08.dx90.vtx +models/props/de_inferno/roofbits07.dx90.vtx +models/props/de_inferno/roofbits06.dx90.vtx +models/props/de_inferno/roofbits05.dx90.vtx +models/props/de_inferno/roofbits04.dx90.vtx +models/props/de_inferno/roofbits03.dx90.vtx +models/props/de_inferno/roofbits02.dx90.vtx +models/props/de_inferno/roofbits01.dx90.vtx +models/props/de_inferno/roof01a.dx90.vtx +models/props/de_inferno/railingspikedgate.dx90.vtx +models/props/de_inferno/railingspiked.dx90.vtx +models/props/de_inferno/railingbombsite_sparse.dx90.vtx +models/props/de_inferno/railingbombsite.dx90.vtx +models/props/de_inferno/railingbalcony.dx90.vtx +models/props/de_inferno/railing_longhall.dx90.vtx +models/props/de_inferno/railing_gate.dx90.vtx +models/props/de_inferno/railing_ctspawn_02_sparse.dx90.vtx +models/props/de_inferno/railing_ctspawn_02.dx90.vtx +models/props/de_inferno/railing_ctspawn.dx90.vtx +models/props/de_inferno/railing_bridge.dx90.vtx +models/props/de_inferno/railing_bombsite02_sparse.dx90.vtx +models/props/de_inferno/railing_bombsite02.dx90.vtx +models/props/de_inferno/railing_backentrance.dx90.vtx +models/props/de_inferno/railing05_decline168_576.dx90.vtx +models/props/de_inferno/railing04long.dx90.vtx +models/props/de_inferno/railing03b.dx90.vtx +models/props/de_inferno/railing03_corner.dx90.vtx +models/props/de_inferno/railing03.dx90.vtx +models/props/de_inferno/railing01.dx90.vtx +models/props/de_inferno/radiator01a.dx90.vtx +models/props/de_inferno/potted_plant3_simple.dx90.vtx +models/props/de_inferno/potted_plant3_p1.dx90.vtx +models/props/de_inferno/potted_plant2_simple.dx90.vtx +models/props/de_inferno/potted_plant2_p1.dx90.vtx +models/props/de_inferno/potted_plant1_simple.dx90.vtx +models/props/de_inferno/potted_plant1_p1.dx90.vtx +models/props/de_inferno/pot_big.dx90.vtx +models/props/de_inferno/plasterinfwndwg_inside.dx90.vtx +models/props/de_inferno/plasterinfwndwg.dx90.vtx +models/props/de_inferno/plasterinfwndwe.dx90.vtx +models/props/de_inferno/plaster_buildingedge.dx90.vtx +models/props/de_inferno/plant01_p4.dx90.vtx +models/props/de_inferno/plant01_p3.dx90.vtx +models/props/de_inferno/plant01_p2.dx90.vtx +models/props/de_inferno/pillard.dx90.vtx +models/props/de_inferno/pillarc.dx90.vtx +models/props/de_inferno/picture3_static.dx90.vtx +models/props/de_inferno/picture2_static.dx90.vtx +models/props/de_inferno/picture1_static.dx90.vtx +models/props/de_inferno/monument_new.dx90.vtx +models/props/de_inferno/monument.dx90.vtx +models/props/de_inferno/logpile_new.dx90.vtx +models/props/de_inferno/logpile_cloth.dx90.vtx +models/props/de_inferno/logpile.dx90.vtx +models/props/de_inferno/light_streetlight_new.dx90.vtx +models/props/de_inferno/light_streetlight.dx90.vtx +models/props/de_inferno/light_fixture.dx90.vtx +models/props/de_inferno/lattice.dx90.vtx +models/props/de_inferno/largebush05.dx90.vtx +models/props/de_inferno/largebush04.dx90.vtx +models/props/de_inferno/largebush03.dx90.vtx +models/props/de_inferno/infsteps01.dx90.vtx +models/props/de_inferno/inferno_tower01.dx90.vtx +models/props/de_inferno/inferno_fence_02.dx90.vtx +models/props/de_inferno/inferno_fence_01.dx90.vtx +models/props/de_inferno/inferno_church_entrance.dx90.vtx +models/props/de_inferno/infarchc_new.dx90.vtx +models/props/de_inferno/infarchc.dx90.vtx models/props/de_inferno/head_sculpture.dx90.vtx models/props/de_inferno/hazard_ribbon3.dx90.vtx models/props/de_inferno/hazard_ribbon2.dx90.vtx @@ -67504,6 +68357,61 @@ models/props/de_dust/objects/dust_walltop_180_sm.dx90.vtx models/props/de_dust/objects/dust_walltop_132_xsm_cap.dx90.vtx models/props/de_dust/objects/dust_walltop_128_sm.dx90.vtx models/props/de_dust/objects/dust_walltop_128.dx90.vtx +models/props/de_dust/window_palace_interior.dx90.vtx +models/props/de_dust/wagon.dx90.vtx +models/props/de_dust/technical01.dx90.vtx +models/props/de_dust/stoneblocks48.dx90.vtx +models/props/de_dust/stoneblock01b.dx90.vtx +models/props/de_dust/stoneblock01a.dx90.vtx +models/props/de_dust/skybox_dust_hotel03.dx90.vtx +models/props/de_dust/skybox_dust_hotel02.dx90.vtx +models/props/de_dust/skybox_dust_hotel01.dx90.vtx +models/props/de_dust/sign_street01.dx90.vtx +models/props/de_dust/sign_stop.dx90.vtx +models/props/de_dust/sign_shop04.dx90.vtx +models/props/de_dust/sign_shop03.dx90.vtx +models/props/de_dust/sign_shop02.dx90.vtx +models/props/de_dust/sign_shop01.dx90.vtx +models/props/de_dust/sign_mechanic01.dx90.vtx +models/props/de_dust/rug06.dx90.vtx +models/props/de_dust/rug05.dx90.vtx +models/props/de_dust/rug04a.dx90.vtx +models/props/de_dust/rug04.dx90.vtx +models/props/de_dust/rug03c.dx90.vtx +models/props/de_dust/rug03a.dx90.vtx +models/props/de_dust/rug03.dx90.vtx +models/props/de_dust/rug02a.dx90.vtx +models/props/de_dust/rug02.dx90.vtx +models/props/de_dust/rug01a.dx90.vtx +models/props/de_dust/rebar_wall06.dx90.vtx +models/props/de_dust/rebar_wall04.dx90.vtx +models/props/de_dust/rebar_wall03.dx90.vtx +models/props/de_dust/rebar_wall02.dx90.vtx +models/props/de_dust/rebar_wall01.dx90.vtx +models/props/de_dust/rebar_column06.dx90.vtx +models/props/de_dust/rebar_column03.dx90.vtx +models/props/de_dust/rebar_column02.dx90.vtx +models/props/de_dust/rebar_arch.dx90.vtx +models/props/de_dust/pillarwall.dx90.vtx +models/props/de_dust/pillarlargedometopshortskybox.dx90.vtx +models/props/de_dust/pillarlargedometopshort.dx90.vtx +models/props/de_dust/pillarlargedometop.dx90.vtx +models/props/de_dust/pillarinteriortile.dx90.vtx +models/props/de_dust/pillardometopshorter.dx90.vtx +models/props/de_dust/pallet02.dx90.vtx +models/props/de_dust/pallet01.dx90.vtx +models/props/de_dust/palaceteethsingleskybox.dx90.vtx +models/props/de_dust/palaceteethsingle.dx90.vtx +models/props/de_dust/palaceteethgroupskybox.dx90.vtx +models/props/de_dust/palaceteethgroup.dx90.vtx +models/props/de_dust/palacemeddomeskybox.dx90.vtx +models/props/de_dust/palacemeddome166.dx90.vtx +models/props/de_dust/palacemeddome.dx90.vtx +models/props/de_dust/palaceinteriordome.dx90.vtx +models/props/de_dust/palaceinteriorarches.dx90.vtx +models/props/de_dust/palace_bigdomeskybox.dx90.vtx +models/props/de_dust/palace_bigdome.dx90.vtx +models/props/de_dust/mosquetop02.dx90.vtx models/props/de_dust/grainbasket01c_static.dx90.vtx models/props/de_dust/grainbasket01c_gib2.dx90.vtx models/props/de_dust/grainbasket01c_gib1.dx90.vtx @@ -67573,61 +68481,6 @@ models/props/de_dust/awning01.dx90.vtx models/props/de_dust/archwayhallmed.dx90.vtx models/props/de_dust/archwayhalllarge.dx90.vtx models/props/de_dust/archhalllargewide.dx90.vtx -models/props/de_dust/window_palace_interior.dx90.vtx -models/props/de_dust/wagon.dx90.vtx -models/props/de_dust/technical01.dx90.vtx -models/props/de_dust/stoneblocks48.dx90.vtx -models/props/de_dust/stoneblock01b.dx90.vtx -models/props/de_dust/stoneblock01a.dx90.vtx -models/props/de_dust/skybox_dust_hotel03.dx90.vtx -models/props/de_dust/skybox_dust_hotel02.dx90.vtx -models/props/de_dust/skybox_dust_hotel01.dx90.vtx -models/props/de_dust/sign_street01.dx90.vtx -models/props/de_dust/sign_stop.dx90.vtx -models/props/de_dust/sign_shop04.dx90.vtx -models/props/de_dust/sign_shop03.dx90.vtx -models/props/de_dust/sign_shop02.dx90.vtx -models/props/de_dust/sign_shop01.dx90.vtx -models/props/de_dust/sign_mechanic01.dx90.vtx -models/props/de_dust/rug06.dx90.vtx -models/props/de_dust/rug05.dx90.vtx -models/props/de_dust/rug04a.dx90.vtx -models/props/de_dust/rug04.dx90.vtx -models/props/de_dust/rug03c.dx90.vtx -models/props/de_dust/rug03a.dx90.vtx -models/props/de_dust/rug03.dx90.vtx -models/props/de_dust/rug02a.dx90.vtx -models/props/de_dust/rug02.dx90.vtx -models/props/de_dust/rug01a.dx90.vtx -models/props/de_dust/rebar_wall06.dx90.vtx -models/props/de_dust/rebar_wall04.dx90.vtx -models/props/de_dust/rebar_wall03.dx90.vtx -models/props/de_dust/rebar_wall02.dx90.vtx -models/props/de_dust/rebar_wall01.dx90.vtx -models/props/de_dust/rebar_column06.dx90.vtx -models/props/de_dust/rebar_column03.dx90.vtx -models/props/de_dust/rebar_column02.dx90.vtx -models/props/de_dust/rebar_arch.dx90.vtx -models/props/de_dust/pillarwall.dx90.vtx -models/props/de_dust/pillarlargedometopshortskybox.dx90.vtx -models/props/de_dust/pillarlargedometopshort.dx90.vtx -models/props/de_dust/pillarlargedometop.dx90.vtx -models/props/de_dust/pillarinteriortile.dx90.vtx -models/props/de_dust/pillardometopshorter.dx90.vtx -models/props/de_dust/pallet02.dx90.vtx -models/props/de_dust/pallet01.dx90.vtx -models/props/de_dust/palaceteethsingleskybox.dx90.vtx -models/props/de_dust/palaceteethsingle.dx90.vtx -models/props/de_dust/palaceteethgroupskybox.dx90.vtx -models/props/de_dust/palaceteethgroup.dx90.vtx -models/props/de_dust/palacemeddomeskybox.dx90.vtx -models/props/de_dust/palacemeddome166.dx90.vtx -models/props/de_dust/palacemeddome.dx90.vtx -models/props/de_dust/palaceinteriordome.dx90.vtx -models/props/de_dust/palaceinteriorarches.dx90.vtx -models/props/de_dust/palace_bigdomeskybox.dx90.vtx -models/props/de_dust/palace_bigdome.dx90.vtx -models/props/de_dust/mosquetop02.dx90.vtx models/props/de_depot/flatbed_rocket.dx90.vtx models/props/de_cbble/window_d/window_d_glow.dx90.vtx models/props/de_cbble/window_d/window_d.dx90.vtx @@ -68496,6 +69349,7 @@ models/props/crates/csgo_drop_crate_armsdeal1.dx90.vtx models/inventory_items/music_kits/music_kit_valve_01.dx90.vtx models/inventory_items/music_kits/music_kit_twinatlantic_01.dx90.vtx models/inventory_items/music_kits/music_kit_troelsfolmann_01.dx90.vtx +models/inventory_items/music_kits/music_kit_theverkkars_01.dx90.vtx models/inventory_items/music_kits/music_kit_skog_03.dx90.vtx models/inventory_items/music_kits/music_kit_skog_02.dx90.vtx models/inventory_items/music_kits/music_kit_skog_01.dx90.vtx @@ -68530,12 +69384,12 @@ models/inventory_items/music_kits/music_kit_beartooth_02.dx90.vtx models/inventory_items/music_kits/music_kit_beartooth_01.dx90.vtx models/inventory_items/music_kits/music_kit_awolnation_01.dx90.vtx models/inventory_items/music_kits/music_kit_austinwintory_01.dx90.vtx +models/hostage/hostage_carry.dx90.vtx +models/hostage/hostage.dx90.vtx models/hostage/v_hostage_arm.dx90.vtx models/hostage/hostage_variantc.dx90.vtx models/hostage/hostage_variantb.dx90.vtx models/hostage/hostage_varianta.dx90.vtx -models/hostage/hostage_carry.dx90.vtx -models/hostage/hostage.dx90.vtx models/player/holiday/santahat.dx90.vtx models/player/holiday/facemasks/porcelain_doll.dx90.vtx models/player/holiday/facemasks/facemask_zombie_fortune_plastic.dx90.vtx @@ -68623,20 +69477,6 @@ models/gibs/furniture_gibs/furnituretable001a_chunk01.dx90.vtx models/ghost/ghost.dx90.vtx models/extras/info_speech.vtx models/extras/info_speech.dx90.vtx -models/editor/cone_helper.vtx -models/editor/cone_helper.dx90.vtx -models/editor/climb_node.vtx -models/editor/climb_node.dx90.vtx -models/editor/camera.vtx -models/editor/camera.dx90.vtx -models/editor/axis_helper_thick.vtx -models/editor/axis_helper_thick.dx90.vtx -models/editor/axis_helper.vtx -models/editor/axis_helper.dx90.vtx -models/editor/air_node_hint.vtx -models/editor/air_node_hint.dx90.vtx -models/editor/air_node.vtx -models/editor/air_node.dx90.vtx models/editor/spot_cone.vtx models/editor/spot_cone.dx90.vtx models/editor/spot.vtx @@ -68653,6 +69493,20 @@ models/editor/ground_node_hint.vtx models/editor/ground_node_hint.dx90.vtx models/editor/ground_node.vtx models/editor/ground_node.dx90.vtx +models/editor/cone_helper.vtx +models/editor/cone_helper.dx90.vtx +models/editor/climb_node.vtx +models/editor/climb_node.dx90.vtx +models/editor/camera.vtx +models/editor/camera.dx90.vtx +models/editor/axis_helper_thick.vtx +models/editor/axis_helper_thick.dx90.vtx +models/editor/axis_helper.vtx +models/editor/axis_helper.dx90.vtx +models/editor/air_node_hint.vtx +models/editor/air_node_hint.dx90.vtx +models/editor/air_node.vtx +models/editor/air_node.dx90.vtx models/destruction_tanker/pre_destruction_tanker_trailer.dx90.vtx models/destruction_tanker/destruction_tanker_rear.dx90.vtx models/destruction_tanker/destruction_tanker_front.dx90.vtx @@ -68670,13 +69524,6 @@ models/de_alleyway/tanker_alleyway_layout.dx90.vtx models/de_alleyway/subway_stairs_rail.dx90.vtx models/de_alleyway/street_basketball_hoop.dx90.vtx models/de_alleyway/skybox_water_treatment_facility.dx90.vtx -models/player/zombie_ghost.dx90.vtx -models/player/zombie.dx90.vtx -models/player/tm_separatist_variantd.dx90.vtx -models/player/tm_separatist_variantc.dx90.vtx -models/player/tm_separatist_variantb.dx90.vtx -models/player/tm_separatist_varianta.dx90.vtx -models/player/tm_anarchist.dx90.vtx models/player/ctm_swat_variantd.dx90.vtx models/player/ctm_swat_variantc.dx90.vtx models/player/ctm_swat_variantb.dx90.vtx @@ -68718,6 +69565,13 @@ models/player/ctm_fbi_variantc.dx90.vtx models/player/ctm_fbi_variantb.dx90.vtx models/player/ctm_fbi_varianta.dx90.vtx models/player/ctm_fbi.dx90.vtx +models/player/tm_anarchist.dx90.vtx +models/player/zombie_ghost.dx90.vtx +models/player/zombie.dx90.vtx +models/player/tm_separatist_variantd.dx90.vtx +models/player/tm_separatist_variantc.dx90.vtx +models/player/tm_separatist_variantb.dx90.vtx +models/player/tm_separatist_varianta.dx90.vtx models/player/tm_separatist.dx90.vtx models/player/tm_professional_var4.dx90.vtx models/player/tm_professional_var3.dx90.vtx @@ -68779,6 +69633,71 @@ models/characters/hostage_04.dx90.vtx models/characters/hostage_03.dx90.vtx models/characters/hostage_02.dx90.vtx models/characters/hostage_01.dx90.vtx +models/weapons/v_healthshot.dx90.vtx +models/weapons/w_hammer_dropped.dx90.vtx +models/weapons/w_hammer.dx90.vtx +models/weapons/v_hammer.dx90.vtx +models/weapons/v_fists.dx90.vtx +models/weapons/w_eq_taser.dx90.vtx +models/weapons/v_eq_taser.dx90.vtx +models/weapons/w_eq_tablet_dropped.dx90.vtx +models/weapons/w_eq_tablet.dx90.vtx +models/weapons/w_eq_snowball_dropped.dx90.vtx +models/weapons/w_eq_snowball.dx90.vtx +models/weapons/v_eq_snowball.dx90.vtx +models/weapons/w_eq_smokegrenade_thrown.dx90.vtx +models/weapons/w_eq_smokegrenade_dropped.dx90.vtx +models/weapons/w_eq_smokegrenade.dx90.vtx +models/weapons/v_eq_smokegrenade.dx90.vtx +models/weapons/w_eq_shield_back.dx90.vtx +models/weapons/w_eq_shield.dx90.vtx +models/weapons/w_eq_sensorgrenade_thrown.dx90.vtx +models/weapons/w_eq_sensorgrenade_dropped.dx90.vtx +models/weapons/w_eq_sensorgrenade.dx90.vtx +models/weapons/w_eq_multimeter.dx90.vtx +models/weapons/w_eq_molotov_thrown.dx90.vtx +models/weapons/w_eq_molotov_dropped.dx90.vtx +models/weapons/w_eq_molotov.dx90.vtx +models/weapons/v_eq_molotov.dx90.vtx +models/weapons/w_eq_incendiarygrenade_thrown.dx90.vtx +models/weapons/w_eq_incendiarygrenade_dropped.dx90.vtx +models/weapons/w_eq_incendiarygrenade.dx90.vtx +models/weapons/v_eq_incendiarygrenade.dx90.vtx +models/weapons/w_eq_helmet.dx90.vtx +models/weapons/w_eq_healthshot_dropped.dx90.vtx +models/weapons/w_eq_healthshot.dx90.vtx +models/weapons/w_eq_fraggrenade_thrown.dx90.vtx +models/weapons/w_eq_fraggrenade_dropped.dx90.vtx +models/weapons/w_eq_fraggrenade.dx90.vtx +models/weapons/v_eq_fraggrenade.dx90.vtx +models/weapons/w_eq_flashbang_thrown.dx90.vtx +models/weapons/w_eq_flashbang_dropped.dx90.vtx +models/weapons/w_eq_flashbang.dx90.vtx +models/weapons/v_eq_flashbang.dx90.vtx +models/weapons/w_eq_fists.dx90.vtx +models/weapons/w_eq_eholster_elite.dx90.vtx +models/weapons/w_eq_eholster.dx90.vtx +models/weapons/w_eq_decoy_thrown.dx90.vtx +models/weapons/w_eq_decoy_dropped.dx90.vtx +models/weapons/w_eq_decoy.dx90.vtx +models/weapons/v_eq_decoy.dx90.vtx +models/weapons/w_eq_charge_dropped.dx90.vtx +models/weapons/w_eq_charge.dx90.vtx +models/weapons/w_eq_bumpmine_dropped.dx90.vtx +models/weapons/w_eq_bumpmine.dx90.vtx +models/weapons/w_eq_assault_suit.dx90.vtx +models/weapons/w_eq_armor.dx90.vtx +models/weapons/w_muzzlefireshape.dx90.vtx +models/weapons/v_tablet.dx90.vtx +models/weapons/t_arms_workbench_leet.dx90.vtx +models/weapons/t_arms_separatist.dx90.vtx +models/weapons/t_arms_professional.dx90.vtx +models/weapons/t_arms_pirate.dx90.vtx +models/weapons/t_arms_phoenix.dx90.vtx +models/weapons/t_arms_leet.dx90.vtx +models/weapons/t_arms_balkan.dx90.vtx +models/weapons/t_arms_anarchist.dx90.vtx +models/weapons/t_arms.dx90.vtx models/weapons/w_shot_sawedoff.dx90.vtx models/weapons/v_shot_sawedoff.dx90.vtx models/weapons/w_shot_nova_mag.dx90.vtx @@ -68789,70 +69708,7 @@ models/weapons/w_shot_mag7_mag.dx90.vtx models/weapons/w_shot_mag7_dropped.dx90.vtx models/weapons/w_shot_mag7.dx90.vtx models/weapons/v_shot_mag7.dx90.vtx -models/weapons/pedestal_workshop_greenscreen.dx90.vtx -models/weapons/pedestal_workshop_firstperson.dx90.vtx -models/weapons/pedestal_workshop.dx90.vtx -models/weapons/pedestal_trophy_panorama.dx90.vtx -models/weapons/pedestal_sticker_panorama.dx90.vtx -models/weapons/pedestal_sticker.dx90.vtx -models/weapons/pedestal_music_kits_panorama.dx90.vtx -models/weapons/pedestal_music_kits.dx90.vtx -models/weapons/pedestal_knives_panorama.dx90.vtx -models/weapons/pedestal_knives.dx90.vtx -models/weapons/pedestal_ground_shadow_plane.dx90.vtx -models/weapons/pedestal_gloves.dx90.vtx -models/weapons/pedestal_firstperson.dx90.vtx -models/weapons/pedestal_default.dx90.vtx -models/weapons/pedestal_badges_panorama.dx90.vtx -models/weapons/pedestal_badges_nocase.dx90.vtx -models/weapons/pedestal_badges.dx90.vtx -models/weapons/v_parachute.dx90.vtx -models/weapons/w_muzzlefireshape.dx90.vtx -models/weapons/uid_xsmall_weaponpreview.dx90.vtx -models/weapons/uid_weaponpreview.dx90.vtx -models/weapons/uid_small_weaponpreview.dx90.vtx -models/weapons/uid_small.dx90.vtx -models/weapons/uid_create.dx90.vtx -models/weapons/uid.dx90.vtx -models/weapons/v_rif_sg556_scopelensmask.dx90.vtx -models/weapons/w_rif_sg556_mag.dx90.vtx -models/weapons/w_rif_sg556_dropped.dx90.vtx -models/weapons/w_rif_sg556.dx90.vtx -models/weapons/v_rif_sg556.dx90.vtx -models/weapons/w_rif_m4a1_s_mag.dx90.vtx -models/weapons/w_rif_m4a1_s_icon.dx90.vtx -models/weapons/w_rif_m4a1_s_dropped.dx90.vtx -models/weapons/w_rif_m4a1_s.dx90.vtx -models/weapons/v_rif_m4a1_s.dx90.vtx -models/weapons/w_rif_m4a1_mag.dx90.vtx -models/weapons/w_rif_m4a1_dropped.dx90.vtx -models/weapons/w_rif_m4a1.dx90.vtx -models/weapons/v_rif_m4a1.dx90.vtx -models/weapons/w_rif_galilar_mag.dx90.vtx -models/weapons/w_rif_galilar_dropped.dx90.vtx -models/weapons/w_rif_galilar.dx90.vtx -models/weapons/v_rif_galilar.dx90.vtx -models/weapons/w_rif_famas_mag.dx90.vtx -models/weapons/w_rif_famas_dropped.dx90.vtx -models/weapons/w_rif_famas.dx90.vtx -models/weapons/v_rif_famas.dx90.vtx -models/weapons/v_rif_aug_scopelensmask.dx90.vtx -models/weapons/w_rif_aug_mag.dx90.vtx -models/weapons/w_rif_aug_dropped.dx90.vtx -models/weapons/w_rif_aug.dx90.vtx -models/weapons/v_rif_aug.dx90.vtx -models/weapons/w_rif_ak47_mag.dx90.vtx -models/weapons/w_rif_ak47_dropped.dx90.vtx -models/weapons/w_rif_ak47.dx90.vtx -models/weapons/v_rif_ak47.dx90.vtx -models/weapons/ct_arms_swat.dx90.vtx -models/weapons/ct_arms_st6.dx90.vtx -models/weapons/ct_arms_sas.dx90.vtx -models/weapons/ct_arms_idf.dx90.vtx -models/weapons/ct_arms_gsg9.dx90.vtx -models/weapons/ct_arms_gign.dx90.vtx -models/weapons/ct_arms_fbi.dx90.vtx -models/weapons/ct_arms.dx90.vtx +models/weapons/v_shield.dx90.vtx models/weapons/w_knife_gut.dx90.vtx models/weapons/v_knife_gut.dx90.vtx models/weapons/w_knife_ghost.dx90.vtx @@ -68889,56 +69745,57 @@ models/weapons/v_knife.dx90.vtx models/weapons/w_ied_dropped.dx90.vtx models/weapons/w_ied.dx90.vtx models/weapons/v_ied.dx90.vtx -models/weapons/w_mach_negev_mag.dx90.vtx -models/weapons/w_mach_negev_dropped.dx90.vtx -models/weapons/w_mach_negev.dx90.vtx -models/weapons/v_mach_negev.dx90.vtx -models/weapons/w_mach_m249para.dx90.vtx -models/weapons/v_mach_m249para.dx90.vtx -models/weapons/w_mach_m249_mag.dx90.vtx -models/weapons/w_mach_m249_dropped.dx90.vtx -models/weapons/w_mach_m249.dx90.vtx -models/weapons/v_knife_widowmaker_inspect.dx90.vtx -models/weapons/w_knife_widowmaker_dropped.dx90.vtx -models/weapons/w_knife_widowmaker.dx90.vtx -models/weapons/v_knife_widowmaker.dx90.vtx -models/weapons/v_knife_ursus_inspect.dx90.vtx -models/weapons/w_knife_ursus_dropped.dx90.vtx -models/weapons/w_knife_ursus.dx90.vtx -models/weapons/v_knife_ursus.dx90.vtx -models/weapons/v_knife_tactical_inspect.dx90.vtx -models/weapons/w_knife_tactical_dropped.dx90.vtx -models/weapons/w_knife_tactical.dx90.vtx -models/weapons/v_knife_tactical.dx90.vtx -models/weapons/v_knife_survival_bowie_inspect.dx90.vtx -models/weapons/w_knife_survival_bowie_dropped.dx90.vtx -models/weapons/w_knife_survival_bowie.dx90.vtx -models/weapons/v_knife_survival_bowie.dx90.vtx -models/weapons/v_knife_stiletto_inspect.dx90.vtx -models/weapons/w_knife_stiletto_dropped.dx90.vtx -models/weapons/w_knife_stiletto.dx90.vtx -models/weapons/v_knife_stiletto.dx90.vtx -models/weapons/v_knife_push_inspect.dx90.vtx -models/weapons/w_knife_push_icon.dx90.vtx -models/weapons/w_knife_push_dropped.dx90.vtx -models/weapons/w_knife_push.dx90.vtx -models/weapons/v_knife_push.dx90.vtx -models/weapons/v_knife_m9_bay_inspect.dx90.vtx -models/weapons/w_knife_m9_bay_dropped.dx90.vtx -models/weapons/w_knife_m9_bay.dx90.vtx -models/weapons/v_knife_m9_bay.dx90.vtx -models/weapons/v_knife_karam_inspect.dx90.vtx -models/weapons/w_knife_karam_dropped.dx90.vtx -models/weapons/w_knife_karam.dx90.vtx -models/weapons/v_knife_karam.dx90.vtx -models/weapons/v_knife_gypsy_jackknife_inspect.dx90.vtx -models/weapons/w_knife_gypsy_jackknife_dropped.dx90.vtx -models/weapons/w_knife_gypsy_jackknife.dx90.vtx -models/weapons/v_knife_gypsy_jackknife.dx90.vtx -models/weapons/v_knife_gut_inspect.dx90.vtx -models/weapons/w_knife_gut_dropped.dx90.vtx -models/weapons/w_defuser_display.dx90.vtx -models/weapons/w_defuser.dx90.vtx +models/weapons/w_c4_planted.dx90.vtx +models/weapons/v_bumpmine.dx90.vtx +models/weapons/v_rif_sg556_scopelensmask.dx90.vtx +models/weapons/w_rif_sg556_mag.dx90.vtx +models/weapons/w_rif_sg556_dropped.dx90.vtx +models/weapons/w_rif_sg556.dx90.vtx +models/weapons/v_rif_sg556.dx90.vtx +models/weapons/w_rif_m4a1_s_mag.dx90.vtx +models/weapons/w_rif_m4a1_s_icon.dx90.vtx +models/weapons/w_rif_m4a1_s_dropped.dx90.vtx +models/weapons/w_rif_m4a1_s.dx90.vtx +models/weapons/v_rif_m4a1_s.dx90.vtx +models/weapons/w_rif_m4a1_mag.dx90.vtx +models/weapons/w_rif_m4a1_dropped.dx90.vtx +models/weapons/w_rif_m4a1.dx90.vtx +models/weapons/v_rif_m4a1.dx90.vtx +models/weapons/w_rif_galilar_mag.dx90.vtx +models/weapons/w_rif_galilar_dropped.dx90.vtx +models/weapons/w_rif_galilar.dx90.vtx +models/weapons/v_rif_galilar.dx90.vtx +models/weapons/w_rif_famas_mag.dx90.vtx +models/weapons/w_rif_famas_dropped.dx90.vtx +models/weapons/w_rif_famas.dx90.vtx +models/weapons/v_rif_famas.dx90.vtx +models/weapons/v_rif_aug_scopelensmask.dx90.vtx +models/weapons/w_rif_aug_mag.dx90.vtx +models/weapons/w_rif_aug_dropped.dx90.vtx +models/weapons/w_rif_aug.dx90.vtx +models/weapons/v_rif_aug.dx90.vtx +models/weapons/w_rif_ak47_mag.dx90.vtx +models/weapons/w_rif_ak47_dropped.dx90.vtx +models/weapons/w_rif_ak47.dx90.vtx +models/weapons/v_rif_ak47.dx90.vtx +models/weapons/pedestal_workshop_greenscreen.dx90.vtx +models/weapons/pedestal_workshop_firstperson.dx90.vtx +models/weapons/pedestal_workshop.dx90.vtx +models/weapons/pedestal_trophy_panorama.dx90.vtx +models/weapons/pedestal_sticker_panorama.dx90.vtx +models/weapons/pedestal_sticker.dx90.vtx +models/weapons/pedestal_music_kits_panorama.dx90.vtx +models/weapons/pedestal_music_kits.dx90.vtx +models/weapons/pedestal_knives_panorama.dx90.vtx +models/weapons/pedestal_knives.dx90.vtx +models/weapons/pedestal_ground_shadow_plane.dx90.vtx +models/weapons/pedestal_gloves.dx90.vtx +models/weapons/pedestal_firstperson.dx90.vtx +models/weapons/pedestal_default.dx90.vtx +models/weapons/pedestal_badges_panorama.dx90.vtx +models/weapons/pedestal_badges_nocase.dx90.vtx +models/weapons/pedestal_badges.dx90.vtx +models/weapons/v_parachute.dx90.vtx models/weapons/v_sonar_bomb.dx90.vtx models/weapons/w_snowball.dx90.vtx models/weapons/w_snip_ssg08_mag.dx90.vtx @@ -68987,71 +69844,6 @@ models/weapons/w_smg_bizon_mag.dx90.vtx models/weapons/w_smg_bizon_dropped.dx90.vtx models/weapons/w_smg_bizon.dx90.vtx models/weapons/v_smg_bizon.dx90.vtx -models/weapons/v_healthshot.dx90.vtx -models/weapons/w_hammer_dropped.dx90.vtx -models/weapons/w_hammer.dx90.vtx -models/weapons/v_hammer.dx90.vtx -models/weapons/v_fists.dx90.vtx -models/weapons/w_eq_taser.dx90.vtx -models/weapons/v_eq_taser.dx90.vtx -models/weapons/w_eq_tablet_dropped.dx90.vtx -models/weapons/w_eq_tablet.dx90.vtx -models/weapons/w_eq_snowball_dropped.dx90.vtx -models/weapons/w_eq_snowball.dx90.vtx -models/weapons/v_eq_snowball.dx90.vtx -models/weapons/w_eq_smokegrenade_thrown.dx90.vtx -models/weapons/w_eq_smokegrenade_dropped.dx90.vtx -models/weapons/w_eq_smokegrenade.dx90.vtx -models/weapons/v_eq_smokegrenade.dx90.vtx -models/weapons/w_eq_sensorgrenade_thrown.dx90.vtx -models/weapons/w_eq_sensorgrenade_dropped.dx90.vtx -models/weapons/w_eq_sensorgrenade.dx90.vtx -models/weapons/w_eq_multimeter.dx90.vtx -models/weapons/w_eq_molotov_thrown.dx90.vtx -models/weapons/w_eq_molotov_dropped.dx90.vtx -models/weapons/w_eq_molotov.dx90.vtx -models/weapons/v_eq_molotov.dx90.vtx -models/weapons/w_eq_incendiarygrenade_thrown.dx90.vtx -models/weapons/w_eq_incendiarygrenade_dropped.dx90.vtx -models/weapons/w_eq_incendiarygrenade.dx90.vtx -models/weapons/v_eq_incendiarygrenade.dx90.vtx -models/weapons/w_eq_helmet.dx90.vtx -models/weapons/w_eq_healthshot_dropped.dx90.vtx -models/weapons/w_eq_healthshot.dx90.vtx -models/weapons/w_eq_fraggrenade_thrown.dx90.vtx -models/weapons/w_eq_fraggrenade_dropped.dx90.vtx -models/weapons/w_eq_fraggrenade.dx90.vtx -models/weapons/v_eq_fraggrenade.dx90.vtx -models/weapons/w_eq_flashbang_thrown.dx90.vtx -models/weapons/w_eq_flashbang_dropped.dx90.vtx -models/weapons/w_eq_flashbang.dx90.vtx -models/weapons/v_eq_flashbang.dx90.vtx -models/weapons/w_eq_fists.dx90.vtx -models/weapons/w_eq_eholster_elite.dx90.vtx -models/weapons/w_eq_eholster.dx90.vtx -models/weapons/w_eq_decoy_thrown.dx90.vtx -models/weapons/w_eq_decoy_dropped.dx90.vtx -models/weapons/w_eq_decoy.dx90.vtx -models/weapons/v_eq_decoy.dx90.vtx -models/weapons/w_eq_charge_dropped.dx90.vtx -models/weapons/w_eq_charge.dx90.vtx -models/weapons/w_eq_assault_suit.dx90.vtx -models/weapons/w_eq_armor.dx90.vtx -models/weapons/w_c4_planted.dx90.vtx -models/weapons/v_tablet.dx90.vtx -models/weapons/t_arms_workbench_leet.dx90.vtx -models/weapons/t_arms_separatist.dx90.vtx -models/weapons/t_arms_professional.dx90.vtx -models/weapons/t_arms_pirate.dx90.vtx -models/weapons/t_arms_phoenix.dx90.vtx -models/weapons/t_arms_leet.dx90.vtx -models/weapons/t_arms_balkan.dx90.vtx -models/weapons/t_arms_anarchist.dx90.vtx -models/weapons/t_arms.dx90.vtx -models/weapons/v_breachcharge.dx90.vtx -models/weapons/w_axe_dropped.dx90.vtx -models/weapons/w_axe.dx90.vtx -models/weapons/v_axe.dx90.vtx models/weapons/w_pist_tec9_mag.dx90.vtx models/weapons/w_pist_tec9_dropped.dx90.vtx models/weapons/w_pist_tec9.dx90.vtx @@ -69095,6 +69887,74 @@ models/weapons/w_pist_223_mag.dx90.vtx models/weapons/w_pist_223_dropped.dx90.vtx models/weapons/w_pist_223.dx90.vtx models/weapons/v_pist_223.dx90.vtx +models/weapons/w_mach_negev_mag.dx90.vtx +models/weapons/w_mach_negev_dropped.dx90.vtx +models/weapons/w_mach_negev.dx90.vtx +models/weapons/v_mach_negev.dx90.vtx +models/weapons/w_mach_m249para.dx90.vtx +models/weapons/v_mach_m249para.dx90.vtx +models/weapons/w_mach_m249_mag.dx90.vtx +models/weapons/w_mach_m249_dropped.dx90.vtx +models/weapons/w_mach_m249.dx90.vtx +models/weapons/v_knife_widowmaker_inspect.dx90.vtx +models/weapons/w_knife_widowmaker_dropped.dx90.vtx +models/weapons/w_knife_widowmaker.dx90.vtx +models/weapons/v_knife_widowmaker.dx90.vtx +models/weapons/v_knife_ursus_inspect.dx90.vtx +models/weapons/w_knife_ursus_dropped.dx90.vtx +models/weapons/w_knife_ursus.dx90.vtx +models/weapons/v_knife_ursus.dx90.vtx +models/weapons/v_knife_tactical_inspect.dx90.vtx +models/weapons/w_knife_tactical_dropped.dx90.vtx +models/weapons/w_knife_tactical.dx90.vtx +models/weapons/v_knife_tactical.dx90.vtx +models/weapons/v_knife_survival_bowie_inspect.dx90.vtx +models/weapons/w_knife_survival_bowie_dropped.dx90.vtx +models/weapons/w_knife_survival_bowie.dx90.vtx +models/weapons/v_knife_survival_bowie.dx90.vtx +models/weapons/v_knife_stiletto_inspect.dx90.vtx +models/weapons/w_knife_stiletto_dropped.dx90.vtx +models/weapons/w_knife_stiletto.dx90.vtx +models/weapons/v_knife_stiletto.dx90.vtx +models/weapons/v_knife_push_inspect.dx90.vtx +models/weapons/w_knife_push_icon.dx90.vtx +models/weapons/w_knife_push_dropped.dx90.vtx +models/weapons/w_knife_push.dx90.vtx +models/weapons/v_knife_push.dx90.vtx +models/weapons/v_knife_m9_bay_inspect.dx90.vtx +models/weapons/w_knife_m9_bay_dropped.dx90.vtx +models/weapons/w_knife_m9_bay.dx90.vtx +models/weapons/v_knife_m9_bay.dx90.vtx +models/weapons/v_knife_karam_inspect.dx90.vtx +models/weapons/w_knife_karam_dropped.dx90.vtx +models/weapons/w_knife_karam.dx90.vtx +models/weapons/v_knife_karam.dx90.vtx +models/weapons/v_knife_gypsy_jackknife_inspect.dx90.vtx +models/weapons/w_knife_gypsy_jackknife_dropped.dx90.vtx +models/weapons/w_knife_gypsy_jackknife.dx90.vtx +models/weapons/v_knife_gypsy_jackknife.dx90.vtx +models/weapons/v_knife_gut_inspect.dx90.vtx +models/weapons/w_knife_gut_dropped.dx90.vtx +models/weapons/w_defuser_display.dx90.vtx +models/weapons/w_defuser.dx90.vtx +models/weapons/ct_arms_swat.dx90.vtx +models/weapons/ct_arms_st6.dx90.vtx +models/weapons/ct_arms_sas.dx90.vtx +models/weapons/ct_arms_idf.dx90.vtx +models/weapons/ct_arms_gsg9.dx90.vtx +models/weapons/ct_arms_gign.dx90.vtx +models/weapons/ct_arms_fbi.dx90.vtx +models/weapons/ct_arms.dx90.vtx +models/weapons/uid_xsmall_weaponpreview.dx90.vtx +models/weapons/uid_weaponpreview.dx90.vtx +models/weapons/uid_small_weaponpreview.dx90.vtx +models/weapons/uid_small.dx90.vtx +models/weapons/uid_create.dx90.vtx +models/weapons/uid.dx90.vtx +models/weapons/v_breachcharge.dx90.vtx +models/weapons/w_axe_dropped.dx90.vtx +models/weapons/w_axe.dx90.vtx +models/weapons/v_axe.dx90.vtx models/weapons/stattrack_weaponpreview.dx90.vtx models/weapons/stattrack_cut_workbench_xsmall.dx90.vtx models/weapons/stattrack_cut_workbench_small.dx90.vtx @@ -69114,13 +69974,20 @@ models/weapons/w_shot_xm1014.dx90.vtx models/weapons/v_shot_xm1014.dx90.vtx models/weapons/w_shot_sawedoff_mag.dx90.vtx models/weapons/w_shot_sawedoff_dropped.dx90.vtx -models/seagull.dx90.vtx -models/crow.dx90.vtx models/error.dx90.vtx models/brokenglass_piece.dx90.vtx +models/seagull.dx90.vtx +models/crow.dx90.vtx models/sticker_preview.dx90.vtx models/pigeon.dx90.vtx models/antlers/antlers.dx90.vtx +models/inventory_items/operation_8_silver.dx90.vtx +models/inventory_items/operation_8_platinum.dx90.vtx +models/inventory_items/operation_8_gold.dx90.vtx +models/inventory_items/operation_8_bronze.dx90.vtx +models/inventory_items/operation_7_silver.dx90.vtx +models/inventory_items/operation_7_gold.dx90.vtx +models/inventory_items/operation_7_bronze.dx90.vtx models/inventory_items/service_medal_2019_lvl6.dx90.vtx models/inventory_items/service_medal_2019_lvl5.dx90.vtx models/inventory_items/service_medal_2019_lvl4.dx90.vtx @@ -69147,25 +70014,6 @@ models/inventory_items/service_medal_2016_lvl3.dx90.vtx models/inventory_items/service_medal_2016_lvl2.dx90.vtx models/inventory_items/service_medal_2016_lvl1.dx90.vtx models/inventory_items/service_medal_2015_2.dx90.vtx -models/inventory_items/service_medal_2015.dx90.vtx -models/inventory_items/phoenix_gold_01.dx90.vtx -models/inventory_items/phoenix_bronze_01.dx90.vtx -models/inventory_items/pedestal_trophy.dx90.vtx -models/inventory_items/payback_silver_01.dx90.vtx -models/inventory_items/payback_gold_01.dx90.vtx -models/inventory_items/payback_bronze_01.dx90.vtx -models/inventory_items/operation_8_silver.dx90.vtx -models/inventory_items/operation_8_platinum.dx90.vtx -models/inventory_items/operation_8_gold.dx90.vtx -models/inventory_items/operation_8_bronze.dx90.vtx -models/inventory_items/operation_7_silver.dx90.vtx -models/inventory_items/operation_7_gold.dx90.vtx -models/inventory_items/operation_7_bronze.dx90.vtx -models/inventory_items/vanguard_silver.dx90.vtx -models/inventory_items/vanguard_gold.dx90.vtx -models/inventory_items/vanguard_bronze.dx90.vtx -models/inventory_items/trophy_majors_finalists.dx90.vtx -models/inventory_items/trophy_majors.dx90.vtx models/inventory_items/katowice_trophy_semifinalist.dx90.vtx models/inventory_items/katowice_trophy_quarterfinalist.dx90.vtx models/inventory_items/katowice_trophy_finalist.dx90.vtx @@ -69181,64 +70029,6 @@ models/inventory_items/katowice2015_trophy_champion.dx90.vtx models/inventory_items/kat_2015_pickem_silver.dx90.vtx models/inventory_items/kat_2015_pickem_gold.dx90.vtx models/inventory_items/kat_2015_pickem_bronze.dx90.vtx -models/inventory_items/maptoken_zoo.dx90.vtx -models/inventory_items/maptoken_workout.dx90.vtx -models/inventory_items/maptoken_tulip.dx90.vtx -models/inventory_items/maptoken_thunder.dx90.vtx -models/inventory_items/maptoken_subzero.dx90.vtx -models/inventory_items/maptoken_siege.dx90.vtx -models/inventory_items/maptoken_season.dx90.vtx -models/inventory_items/maptoken_seaside.dx90.vtx -models/inventory_items/maptoken_santorini.dx90.vtx -models/inventory_items/maptoken_rush.dx90.vtx -models/inventory_items/maptoken_ruins.dx90.vtx -models/inventory_items/maptoken_royal.dx90.vtx -models/inventory_items/maptoken_resort.dx90.vtx -models/inventory_items/maptoken_rails.dx90.vtx -models/inventory_items/maptoken_overgrown.dx90.vtx -models/inventory_items/maptoken_museum.dx90.vtx -models/inventory_items/maptoken_motel.dx90.vtx -models/inventory_items/maptoken_mist.dx90.vtx -models/inventory_items/maptoken_mikla.dx90.vtx -models/inventory_items/maptoken_marquis.dx90.vtx -models/inventory_items/maptoken_log.dx90.vtx -models/inventory_items/maptoken_library.dx90.vtx -models/inventory_items/maptoken_insertion.dx90.vtx -models/inventory_items/maptoken_gwalior.dx90.vtx -models/inventory_items/maptoken_favela.dx90.vtx -models/inventory_items/maptoken_facade.dx90.vtx -models/inventory_items/maptoken_empire.dx90.vtx -models/inventory_items/maptoken_downtown.dx90.vtx -models/inventory_items/maptoken_cruise.dx90.vtx -models/inventory_items/maptoken_coast.dx90.vtx -models/inventory_items/maptoken_chinatown.dx90.vtx -models/inventory_items/maptoken_castle.dx90.vtx -models/inventory_items/maptoken_cache.dx90.vtx -models/inventory_items/maptoken_blackgold.dx90.vtx -models/inventory_items/maptoken_biome.dx90.vtx -models/inventory_items/maptoken_bazaar.dx90.vtx -models/inventory_items/maptoken_backalley.dx90.vtx -models/inventory_items/maptoken_ali.dx90.vtx -models/inventory_items/maptoken_agency.dx90.vtx -models/inventory_items/maptoken_abbey.dx90.vtx -models/inventory_items/london_pickem_2018_silver.dx90.vtx -models/inventory_items/london_pickem_2018_gold.dx90.vtx -models/inventory_items/london_pickem_2018_bronze.dx90.vtx -models/inventory_items/krakow_pickem_2017_silver.dx90.vtx -models/inventory_items/krakow_pickem_2017_gold.dx90.vtx -models/inventory_items/krakow_pickem_2017_bronze.dx90.vtx -models/inventory_items/dreamhack_trophy_semifinalist.dx90.vtx -models/inventory_items/dreamhack_trophy_quarterfinalist.dx90.vtx -models/inventory_items/dreamhack_trophy_finalist.dx90.vtx -models/inventory_items/dreamhack_trophy_champion.dx90.vtx -models/inventory_items/dogtags.dx90.vtx -models/inventory_items/dhw_2014_semifinalist.dx90.vtx -models/inventory_items/dhw_2014_quarterfinalist.dx90.vtx -models/inventory_items/dhw_2014_pickem_silver.dx90.vtx -models/inventory_items/dhw_2014_pickem_gold.dx90.vtx -models/inventory_items/dhw_2014_pickem_bronze.dx90.vtx -models/inventory_items/dhw_2014_finalist.dx90.vtx -models/inventory_items/dhw_2014_champion.dx90.vtx models/inventory_items/cologne_prediction_plaque_silver.dx90.vtx models/inventory_items/cologne_prediction_plaque_gold.dx90.vtx models/inventory_items/cologne_prediction_plaque_bronze.dx90.vtx @@ -69296,61 +70086,263 @@ models/inventory_items/cluj_pickem_2015_bronze.dx90.vtx models/inventory_items/cluj_fantasy_2015_silver.dx90.vtx models/inventory_items/cluj_fantasy_2015_gold.dx90.vtx models/inventory_items/cluj_fantasy_2015_bronze.dx90.vtx -models/inventory_items/5_year_coin.dx90.vtx -models/inventory_items/10_year_coin.dx90.vtx -models/inventory_items/breakout_silver_01.dx90.vtx -models/inventory_items/breakout_gold_01.dx90.vtx -models/inventory_items/breakout_bronze_01.dx90.vtx -models/inventory_items/bravo_silver_01.dx90.vtx -models/inventory_items/bravo_gold_01.dx90.vtx -models/inventory_items/bravo_bronze_01.dx90.vtx -models/inventory_items/boston_pickem_2018_silver.dx90.vtx -models/inventory_items/boston_pickem_2018_gold.dx90.vtx -models/inventory_items/boston_pickem_2018_bronze.dx90.vtx -models/inventory_items/bloodhound_silver.dx90.vtx -models/inventory_items/bloodhound_gold.dx90.vtx -models/inventory_items/bloodhound_bronze.dx90.vtx -models/inventory_items/atlanta_pickem_2017_silver.dx90.vtx -models/inventory_items/atlanta_pickem_2017_gold.dx90.vtx -models/inventory_items/atlanta_pickem_2017_bronze.dx90.vtx +models/inventory_items/service_medal_2015.dx90.vtx +models/inventory_items/phoenix_gold_01.dx90.vtx +models/inventory_items/phoenix_bronze_01.dx90.vtx +models/inventory_items/pedestal_trophy.dx90.vtx +models/inventory_items/payback_silver_01.dx90.vtx +models/inventory_items/payback_gold_01.dx90.vtx +models/inventory_items/payback_bronze_01.dx90.vtx models/inventory_items/prime_badge.dx90.vtx -models/inventory_items/sticker_inspect.dx90.vtx -models/inventory_items/music_kit.dx90.vtx -models/inventory_items/mlg_pickem_2016_silver.dx90.vtx -models/inventory_items/mlg_pickem_2016_gold.dx90.vtx -models/inventory_items/mlg_pickem_2016_bronze.dx90.vtx -models/inventory_items/mlg_fantasy_2016_silver.dx90.vtx -models/inventory_items/mlg_fantasy_2016_gold.dx90.vtx -models/inventory_items/mlg_fantasy_2016_bronze.dx90.vtx -models/inventory_items/cologne_trophy_semifinalist.dx90.vtx -models/inventory_items/cologne_trophy_quarterfinalist.dx90.vtx -models/inventory_items/cologne_trophy_finalist.dx90.vtx -models/inventory_items/cologne_trophy_champion.dx90.vtx -models/inventory_items/cologne_prediction_silver.dx90.vtx -models/inventory_items/phoenix_silver_01.dx90.vtx -models/props/hr_vertigo/vertigo_traffic_cone/traffic_cone.vvd -models/props/hr_vertigo/vertigo_support_jack/support_jack.vvd -models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_03.vvd -models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_02.vvd -models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp.vvd -models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_02.vvd -models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_01.vvd -models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_weight.vvd -models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_shaft_01.vvd -models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_frame.vvd -models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_door_single.vvd -models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_closed_back.vvd -models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_closed.vvd -models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_cabin.vvd -models/props/hr_vertigo/vertigo_elevator/elevator_cables_straight.vvd -models/props/hr_vertigo/vertigo_elevator/elevator_cables_curved.vvd -models/props/hr_vertigo/vertigo_elevator/elevator_beam_vertical_02.vvd -models/props/hr_vertigo/vertigo_elevator/elevator_beam_vertical.vvd -models/props/hr_vertigo/vertigo_elevator/elevator_beam_horizontal.vvd -models/props/hr_vertigo/vertigo_elevator/elevator_beam_512.vvd -models/props/hr_vertigo/vertigo_elevator/elevator_beam_256.vvd +models/inventory_items/maptoken_zoo.dx90.vtx +models/inventory_items/maptoken_workout.dx90.vtx +models/inventory_items/maptoken_tulip.dx90.vtx +models/inventory_items/maptoken_thunder.dx90.vtx +models/inventory_items/maptoken_subzero.dx90.vtx +models/inventory_items/maptoken_siege.dx90.vtx +models/inventory_items/maptoken_season.dx90.vtx +models/inventory_items/maptoken_seaside.dx90.vtx +models/inventory_items/maptoken_santorini.dx90.vtx +models/inventory_items/maptoken_rush.dx90.vtx +models/inventory_items/maptoken_ruins.dx90.vtx +models/inventory_items/maptoken_ruby.dx90.vtx +models/inventory_items/maptoken_royal.dx90.vtx +models/inventory_items/maptoken_resort.dx90.vtx +models/inventory_items/maptoken_rails.dx90.vtx +models/inventory_items/maptoken_overgrown.dx90.vtx +models/inventory_items/maptoken_museum.dx90.vtx +models/inventory_items/maptoken_motel.dx90.vtx +models/inventory_items/maptoken_mist.dx90.vtx +models/inventory_items/maptoken_mikla.dx90.vtx +models/inventory_items/maptoken_marquis.dx90.vtx +models/inventory_items/maptoken_log.dx90.vtx +models/inventory_items/maptoken_library.dx90.vtx +models/inventory_items/maptoken_insertion.dx90.vtx +models/inventory_items/maptoken_gwalior.dx90.vtx +models/inventory_items/maptoken_favela.dx90.vtx +models/inventory_items/maptoken_facade.dx90.vtx +models/inventory_items/maptoken_empire.dx90.vtx +models/inventory_items/maptoken_downtown.dx90.vtx +models/inventory_items/maptoken_cruise.dx90.vtx +models/inventory_items/maptoken_coast.dx90.vtx +models/inventory_items/maptoken_chinatown.dx90.vtx +models/inventory_items/maptoken_castle.dx90.vtx +models/inventory_items/maptoken_cache.dx90.vtx +models/inventory_items/maptoken_blackgold.dx90.vtx +models/inventory_items/maptoken_biome.dx90.vtx +models/inventory_items/maptoken_bazaar.dx90.vtx +models/inventory_items/maptoken_backalley.dx90.vtx +models/inventory_items/maptoken_ali.dx90.vtx +models/inventory_items/maptoken_agency.dx90.vtx +models/inventory_items/maptoken_abbey.dx90.vtx +models/inventory_items/london_pickem_2018_silver.dx90.vtx +models/inventory_items/london_pickem_2018_gold.dx90.vtx +models/inventory_items/london_pickem_2018_bronze.dx90.vtx +models/inventory_items/krakow_pickem_2017_silver.dx90.vtx +models/inventory_items/krakow_pickem_2017_gold.dx90.vtx +models/inventory_items/krakow_pickem_2017_bronze.dx90.vtx +models/inventory_items/dreamhack_trophy_semifinalist.dx90.vtx +models/inventory_items/dreamhack_trophy_quarterfinalist.dx90.vtx +models/inventory_items/dreamhack_trophy_finalist.dx90.vtx +models/inventory_items/dreamhack_trophy_champion.dx90.vtx +models/inventory_items/dogtags.dx90.vtx +models/inventory_items/dhw_2014_semifinalist.dx90.vtx +models/inventory_items/dhw_2014_quarterfinalist.dx90.vtx +models/inventory_items/dhw_2014_pickem_silver.dx90.vtx +models/inventory_items/dhw_2014_pickem_gold.dx90.vtx +models/inventory_items/dhw_2014_pickem_bronze.dx90.vtx +models/inventory_items/dhw_2014_finalist.dx90.vtx +models/inventory_items/dhw_2014_champion.dx90.vtx +models/inventory_items/music_kit.dx90.vtx +models/inventory_items/mlg_pickem_2016_silver.dx90.vtx +models/inventory_items/mlg_pickem_2016_gold.dx90.vtx +models/inventory_items/mlg_pickem_2016_bronze.dx90.vtx +models/inventory_items/mlg_fantasy_2016_silver.dx90.vtx +models/inventory_items/mlg_fantasy_2016_gold.dx90.vtx +models/inventory_items/mlg_fantasy_2016_bronze.dx90.vtx +models/inventory_items/vanguard_silver.dx90.vtx +models/inventory_items/vanguard_gold.dx90.vtx +models/inventory_items/vanguard_bronze.dx90.vtx +models/inventory_items/trophy_majors_finalists.dx90.vtx +models/inventory_items/trophy_majors.dx90.vtx +models/inventory_items/5_year_coin.dx90.vtx +models/inventory_items/10_year_coin.dx90.vtx +models/inventory_items/breakout_silver_01.dx90.vtx +models/inventory_items/breakout_gold_01.dx90.vtx +models/inventory_items/breakout_bronze_01.dx90.vtx +models/inventory_items/bravo_silver_01.dx90.vtx +models/inventory_items/bravo_gold_01.dx90.vtx +models/inventory_items/bravo_bronze_01.dx90.vtx +models/inventory_items/boston_pickem_2018_silver.dx90.vtx +models/inventory_items/boston_pickem_2018_gold.dx90.vtx +models/inventory_items/boston_pickem_2018_bronze.dx90.vtx +models/inventory_items/bloodhound_silver.dx90.vtx +models/inventory_items/bloodhound_gold.dx90.vtx +models/inventory_items/bloodhound_bronze.dx90.vtx +models/inventory_items/atlanta_pickem_2017_silver.dx90.vtx +models/inventory_items/atlanta_pickem_2017_gold.dx90.vtx +models/inventory_items/atlanta_pickem_2017_bronze.dx90.vtx +models/inventory_items/sticker_inspect.dx90.vtx +models/inventory_items/cologne_trophy_semifinalist.dx90.vtx +models/inventory_items/cologne_trophy_quarterfinalist.dx90.vtx +models/inventory_items/cologne_trophy_finalist.dx90.vtx +models/inventory_items/cologne_trophy_champion.dx90.vtx +models/inventory_items/cologne_prediction_silver.dx90.vtx +models/inventory_items/phoenix_silver_01.dx90.vtx +models/weapons/shield_gibs/shield_gib9.vvd +models/weapons/shield_gibs/shield_gib8.vvd +models/weapons/shield_gibs/shield_gib7.vvd +models/weapons/shield_gibs/shield_gib6.vvd +models/weapons/shield_gibs/shield_gib5.vvd +models/weapons/shield_gibs/shield_gib4.vvd +models/weapons/shield_gibs/shield_gib3.vvd +models/weapons/shield_gibs/shield_gib2.vvd +models/weapons/shield_gibs/shield_gib10.vvd +models/weapons/shield_gibs/shield_gib1.vvd +models/props/dust_massive/towers/guard_tower001_skybox.vvd +models/props/dust_massive/towers/guard_tower001.vvd +models/props/dust_massive/towers/broadcast_tower001.vvd +models/props/dust_massive/stairs/spiral_stairs_03.vvd +models/props/dust_massive/stairs/spiral_stairs_02.vvd +models/props/dust_massive/stairs/spiral_stairs_01.vvd +models/props/dust_massive/stairs/bunker_stairs_02.vvd +models/props/dust_massive/stairs/bunker_stairs_01.vvd +models/props/dust_massive/stairs/base_stairs_02.vvd +models/props/dust_massive/stairs/base_stairs_01.vvd +models/props/dust_massive/skydome_dust_massive.vvd +models/props/dust_massive/skybox/skydome_dust_massive.vvd +models/props/dust_massive/skybox/skydome_clouds_02.vvd +models/props/dust_massive/skybox/dust_massive_night.vvd +models/props/dust_massive/signs/sign_logo001b.vvd +models/props/dust_massive/signs/sign_logo001.vvd +models/props/dust_massive/scaffolding/roof_scaffolding_004.vvd +models/props/dust_massive/scaffolding/roof_scaffolding_003.vvd +models/props/dust_massive/scaffolding/roof_scaffolding_002.vvd +models/props/dust_massive/scaffolding/roof_scaffolding_001.vvd +models/props/dust_massive/roof/military_base_roof_01.vvd +models/props/dust_massive/rocks/underwater_rock001.vvd +models/props/dust_massive/rocks/cliff_wall008.vvd +models/props/dust_massive/rocks/cliff_wall007.vvd +models/props/dust_massive/rocks/cliff_wall006.vvd +models/props/dust_massive/rocks/cliff_wall005.vvd +models/props/dust_massive/rocks/cliff_wall004.vvd +models/props/dust_massive/rocks/cliff_wall003.vvd +models/props/dust_massive/rocks/cliff_wall002.vvd +models/props/dust_massive/rocks/cliff_wall001.vvd +models/props/dust_massive/rocks/cliff_rock007.vvd +models/props/dust_massive/rocks/cliff_rock006.vvd +models/props/dust_massive/rocks/cliff_rock005.vvd +models/props/dust_massive/rocks/cliff_rock004.vvd +models/props/dust_massive/rocks/cliff_rock003.vvd +models/props/dust_massive/rocks/cliff_rock002.vvd +models/props/dust_massive/rocks/cliff_rock001.vvd +models/props/dust_massive/oil_drum/oil_drum_pallet.vvd +models/props/dust_massive/front_loader/front_loader_glass.vvd +models/props/dust_massive/front_loader/front_loader_front.vvd +models/props/dust_massive/front_loader/front_loader_back.vvd +models/props/dust_massive/docks/radio_dome_platform001b.vvd +models/props/dust_massive/docks/radio_dome_platform001a.vvd +models/props/dust_massive/docks/radio_dome_dolphin001.vvd +models/props/dust_massive/docks/radio_dome001.vvd +models/props/dust_massive/docks/radar_dome_platform001c.vvd +models/props/dust_massive/docks/radar_dome_platform001b.vvd +models/props/dust_massive/docks/radar_dome_platform001a.vvd +models/props/dust_massive/docks/radar_dome_platform001_skybox_cheap.vvd +models/props/dust_massive/docks/radar_dome_platform001_skybox.vvd +models/props/dust_massive/docks/radar_dome_pipe_platform001.vvd +models/props/dust_massive/docks/radar_dome_pipe001f.vvd +models/props/dust_massive/docks/radar_dome_pipe001e.vvd +models/props/dust_massive/docks/radar_dome_pipe001d.vvd +models/props/dust_massive/docks/radar_dome_pipe001c.vvd +models/props/dust_massive/docks/radar_dome_pipe001b.vvd +models/props/dust_massive/docks/radar_dome_pipe001.vvd +models/props/dust_massive/docks/radar_dome_dolphin001e.vvd +models/props/dust_massive/docks/radar_dome_dolphin001d.vvd +models/props/dust_massive/docks/radar_dome_dolphin001c.vvd +models/props/dust_massive/docks/radar_dome_dolphin001b.vvd +models/props/dust_massive/docks/radar_dome_dolphin001.vvd +models/props/dust_massive/docks/radar_dome001.vvd +models/props/dust_massive/docks/dock_stairs001d.vvd +models/props/dust_massive/docks/dock_stairs001c.vvd +models/props/dust_massive/docks/dock_stairs001b.vvd +models/props/dust_massive/docks/dock_stairs001.vvd +models/props/dust_massive/docks/dock_pylon_sign001.vvd +models/props/dust_massive/docks/dock_pylon_holder001.vvd +models/props/dust_massive/docks/dock_pylon001.vvd +models/props/dust_massive/docks/dock_plyon_holder001.vvd +models/props/dust_massive/docks/dock_plyon001.vvd +models/props/dust_massive/docks/dock_phyon_sign001.vvd +models/props/dust_massive/docks/dock_dolphin001.vvd +models/props/dust_massive/docks/dock_bumper001.vvd +models/props/dust_massive/docks/dock_bollard001.vvd +models/props/dust_massive/debris/debris_floor_02.vvd +models/props/dust_massive/debris/debris_floor_01.vvd +models/props/dust_massive/debris/debris_04.vvd +models/props/dust_massive/debris/debris_03.vvd +models/props/dust_massive/debris/debris_02.vvd +models/props/dust_massive/debris/debris_01.vvd +models/props/dust_massive/debris/broken_roof_005.vvd +models/props/dust_massive/debris/broken_roof_004.vvd +models/props/dust_massive/debris/broken_roof_003.vvd +models/props/dust_massive/debris/broken_roof_002.vvd +models/props/dust_massive/debris/broken_roof_001.vvd +models/props/dust_massive/dam/dam.vvd +models/props/dust_massive/cargo_container/cargo_container_square_paint.vvd +models/props/dust_massive/cargo_container/cargo_container_square_closed.vvd +models/props/dust_massive/cargo_container/cargo_container_square.vvd +models/props/dust_massive/buoy/buoy001.vvd +models/props/dust_massive/buildings/lighthouse_01.vvd +models/props/dust_massive/buildings/lighthouse01.vvd +models/props/dust_massive/bridges/metal_bridge_frame.vvd +models/props/dust_massive/bridges/bridge_pier.vvd +models/props/dust_massive/bridges/bridge_arch_02.vvd +models/props/dust_massive/bridges/bridge_arch_01.vvd +models/props/dust_massive/boats/row_boat002.vvd +models/props/dust_massive/boats/row_boat001.vvd +models/props/dust_massive/blimp/blimp_001skybox.vvd +models/props/dust_massive/blimp/blimp001.vvd +models/props/dust_massive/beachwaves_dust/beachwaves_dust_c.vvd +models/props/dust_massive/beachwaves_dust/beachwaves_dust_b.vvd +models/props/dust_massive/beachwaves_dust/beachwaves_dust_a.vvd +models/props/dust_massive/barge/crane_cockpit.vvd +models/props/dust_massive/barge/crane_arm.vvd +models/props/dust_massive/barge/barge.vvd +models/props/dust_massive/apc_wreck/apc_wreck.vvd +models/props/de_vertigo/construction_elevator/construction_elevator_support_2.vvd +models/props/de_vertigo/construction_elevator/construction_elevator_support.vvd +models/props/de_vertigo/construction_elevator/construction_elevator_car.vvd +models/props/de_train/hr_t/train_car_d/train_car_d_details.vvd +models/props/de_train/hr_t/train_car_d/train_car_d.vvd +models/props/de_vertigo/ibc/ibc_1_plastic.vvd +models/props/de_vertigo/ibc/ibc_1_metal.vvd +models/props/hr_vertigo/floor_grinder/floor_grinder.vvd +models/props/hr_vertigo/vertigo_traffic_cone/traffic_cone.vvd +models/props/hr_vertigo/vertigo_support_jack/support_jack.vvd +models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_03.vvd +models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_02.vvd +models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp.vvd +models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_02.vvd +models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_01.vvd +models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_corner_railing.vvd +models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_weight.vvd +models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_shaft_01.vvd +models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_frame.vvd +models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_door_single.vvd +models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_closed_back.vvd +models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_closed.vvd +models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_cabin.vvd +models/props/hr_vertigo/vertigo_elevator/elevator_cables_straight.vvd +models/props/hr_vertigo/vertigo_elevator/elevator_cables_curved.vvd +models/props/hr_vertigo/vertigo_elevator/elevator_beam_vertical_02.vvd +models/props/hr_vertigo/vertigo_elevator/elevator_beam_vertical.vvd +models/props/hr_vertigo/vertigo_elevator/elevator_beam_horizontal.vvd +models/props/hr_vertigo/vertigo_elevator/elevator_beam_512.vvd +models/props/hr_vertigo/vertigo_elevator/elevator_beam_256.vvd models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bags_02.vvd models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bags_01.vvd +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_03.vvd +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_02.vvd +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_01.vvd models/props/hr_vertigo/vertigo_cables/vertigo_cable_straight_96.vvd models/props/hr_vertigo/vertigo_cables/vertigo_cable_loop_96.vvd models/props/hr_vertigo/vertigo_cables/vertigo_cable_end_02.vvd @@ -69393,6 +70385,7 @@ models/props_survival/upgrades/upgrade_dz_helmet.vvd models/props_survival/upgrades/upgrade_dz_armor_helmet.vvd models/props_survival/upgrades/upgrade_dz_armor.vvd models/props_survival/upgrades/parachutepack.vvd +models/props_survival/upgrades/exojump.vvd models/props_survival/safe/safe_door.vvd models/props_survival/safe/safe.vvd models/props_survival/parachute/chute.vvd @@ -69403,6 +70396,7 @@ models/props_survival/jammer/jammer_gib03.vvd models/props_survival/jammer/jammer_gib02.vvd models/props_survival/jammer/jammer_gib01.vvd models/props_survival/jammer/jammer.vvd +models/props_survival/helicopter/blackhawk001.vvd models/props_survival/helicopter/blackhawk.vvd models/props_survival/dronegun/dronegun_gib8.vvd models/props_survival/dronegun/dronegun_gib7.vvd @@ -69413,23 +70407,17 @@ models/props_survival/dronegun/dronegun_gib3.vvd models/props_survival/dronegun/dronegun_gib2.vvd models/props_survival/dronegun/dronegun_gib1.vvd models/props_survival/dronegun/dronegun.vvd +models/props_survival/drone/drone_gib6.vvd +models/props_survival/drone/drone_gib5.vvd +models/props_survival/drone/drone_gib4.vvd +models/props_survival/drone/drone_gib3.vvd +models/props_survival/drone/drone_gib2.vvd +models/props_survival/drone/drone_gib1.vvd models/props_survival/drone/br_drone.vvd models/props_survival/crates/crate_ammobox.vvd models/props_survival/counter/counter_a.vvd models/props_survival/cash/prop_cash_stack.vvd models/props_survival/cash/dufflebag.vvd -models/props_survival/cases/case_explosive_gib011.vvd -models/props_survival/cases/case_explosive_gib010.vvd -models/props_survival/cases/case_explosive_gib009.vvd -models/props_survival/cases/case_explosive_gib008.vvd -models/props_survival/cases/case_explosive_gib007.vvd -models/props_survival/cases/case_explosive_gib006.vvd -models/props_survival/cases/case_explosive_gib005.vvd -models/props_survival/cases/case_explosive_gib004.vvd -models/props_survival/cases/case_explosive_gib003.vvd -models/props_survival/cases/case_explosive_gib002.vvd -models/props_survival/cases/case_explosive_gib001.vvd -models/props_survival/cases/case_explosive.vvd models/props_survival/cases/paradrop_chute.vvd models/props_survival/cases/case_tools_static.vvd models/props_survival/cases/case_tools_heavy_static.vvd @@ -69496,6 +70484,7 @@ models/props_survival/cases/case_tools_gib003.vvd models/props_survival/cases/case_tools_gib002.vvd models/props_survival/cases/case_tools_gib001.vvd models/props_survival/cases/case_tools.vvd +models/props_survival/cases/case_respawn.vvd models/props_survival/cases/case_random_drop_gib039.vvd models/props_survival/cases/case_random_drop_gib038.vvd models/props_survival/cases/case_random_drop_gib037.vvd @@ -69741,6 +70730,18 @@ models/props_survival/cases/case_explosive_gib015.vvd models/props_survival/cases/case_explosive_gib014.vvd models/props_survival/cases/case_explosive_gib013.vvd models/props_survival/cases/case_explosive_gib012.vvd +models/props_survival/cases/case_explosive_gib011.vvd +models/props_survival/cases/case_explosive_gib010.vvd +models/props_survival/cases/case_explosive_gib009.vvd +models/props_survival/cases/case_explosive_gib008.vvd +models/props_survival/cases/case_explosive_gib007.vvd +models/props_survival/cases/case_explosive_gib006.vvd +models/props_survival/cases/case_explosive_gib005.vvd +models/props_survival/cases/case_explosive_gib004.vvd +models/props_survival/cases/case_explosive_gib003.vvd +models/props_survival/cases/case_explosive_gib002.vvd +models/props_survival/cases/case_explosive_gib001.vvd +models/props_survival/cases/case_explosive.vvd models/props_survival/briefcase/briefcase.vvd models/props/hr_massive/wood_spool/wood_spool.vvd models/props/hr_massive/wood_planks/wood_plank_4_4_128.vvd @@ -70239,6 +71240,7 @@ models/inventory_items/scoreboard_logos/logo_t.vvd models/inventory_items/scoreboard_logos/logo_ct.vvd models/player/custom_player/uiplayer/animset_uiplayer.vvd models/props/de_nuke/hr_nuke/skylight_2/skylight_2.vvd +models/props/de_dust/hr_dust/dust_soccerball/soccer_goal.vvd models/props/de_dust/hr_dust/dust_soccerball/dust_soccer_ball001.vvd models/props/de_dust/hr_dust/wooden_structures/wooden_support_alley.vvd models/props/de_dust/hr_dust/wooden_structures/wooden_structure_1.vvd @@ -70256,16 +71258,6 @@ models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_kasbah3.vvd models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_kasbah2.vvd models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_kasbah1.vvd models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_center.vvd -models/props/de_dust/hr_dust/foliage/short_grass_04.vvd -models/props/de_dust/hr_dust/foliage/short_grass_03.vvd -models/props/de_dust/hr_dust/foliage/short_grass_02.vvd -models/props/de_dust/hr_dust/foliage/short_grass_01.vvd -models/props/de_dust/hr_dust/foliage/sage_bush_03.vvd -models/props/de_dust/hr_dust/foliage/sage_bush_02.vvd -models/props/de_dust/hr_dust/foliage/sage_bush_01.vvd -models/props/de_dust/hr_dust/foliage/potted_plant_05.vvd -models/props/de_dust/hr_dust/foliage/potted_plant_04.vvd -models/props/de_dust/hr_dust/foliage/potted_plant_03.vvd models/props/de_dust/hr_dust/foliage/potted_plant_02.vvd models/props/de_dust/hr_dust/foliage/potted_plant_01a.vvd models/props/de_dust/hr_dust/foliage/potted_plant_01.vvd @@ -70291,6 +71283,8 @@ models/props/de_dust/hr_dust/foliage/olive_tree_skybox_03.vvd models/props/de_dust/hr_dust/foliage/olive_tree_skybox_02.vvd models/props/de_dust/hr_dust/foliage/olive_tree_skybox_01.vvd models/props/de_dust/hr_dust/foliage/olive_tree_card_01.vvd +models/props/de_dust/hr_dust/foliage/olive_tree_03b.vvd +models/props/de_dust/hr_dust/foliage/olive_tree_03.vvd models/props/de_dust/hr_dust/foliage/olive_tree_02.vvd models/props/de_dust/hr_dust/foliage/olive_tree_01b.vvd models/props/de_dust/hr_dust/foliage/olive_tree_01.vvd @@ -70308,6 +71302,7 @@ models/props/de_dust/hr_dust/foliage/fan_palm_02.vvd models/props/de_dust/hr_dust/foliage/fan_palm_01.vvd models/props/de_dust/hr_dust/foliage/dusty_weed_plant_02.vvd models/props/de_dust/hr_dust/foliage/dusty_weed_plant_01.vvd +models/props/de_dust/hr_dust/foliage/bushes_barberry_dust_01.vvd models/props/de_dust/hr_dust/foliage/bush_sumac_03.vvd models/props/de_dust/hr_dust/foliage/bush_sumac_02.vvd models/props/de_dust/hr_dust/foliage/bush_sumac_01.vvd @@ -70340,6 +71335,16 @@ models/props/de_dust/hr_dust/foliage/weed_grass_02.vvd models/props/de_dust/hr_dust/foliage/weed_grass_01a.vvd models/props/de_dust/hr_dust/foliage/weed_grass_01.vvd models/props/de_dust/hr_dust/foliage/tall_zebra_grass_01.vvd +models/props/de_dust/hr_dust/foliage/short_grass_04.vvd +models/props/de_dust/hr_dust/foliage/short_grass_03.vvd +models/props/de_dust/hr_dust/foliage/short_grass_02.vvd +models/props/de_dust/hr_dust/foliage/short_grass_01.vvd +models/props/de_dust/hr_dust/foliage/sage_bush_03.vvd +models/props/de_dust/hr_dust/foliage/sage_bush_02.vvd +models/props/de_dust/hr_dust/foliage/sage_bush_01.vvd +models/props/de_dust/hr_dust/foliage/potted_plant_05.vvd +models/props/de_dust/hr_dust/foliage/potted_plant_04.vvd +models/props/de_dust/hr_dust/foliage/potted_plant_03.vvd models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_stack_01.vvd models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_broken.vvd models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_01_small.vvd @@ -70440,16 +71445,20 @@ models/props/de_dust/hr_dust/dust_windows/dust_window_shutters_24x24_01_closed_l models/props/de_dust/hr_dust/dust_windows/dust_window_shutters_24x24_01_closed.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_quarter_round_112_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_02.vvd +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_01_complete.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x24_02.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x24_01.vvd +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_48x48_01_grill.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_02.vvd +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_01_complete.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x62_round_02.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x62_round_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x64_02.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x64_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_02.vvd +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_01_complete.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_64x64_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_64x24_01.vvd @@ -70458,11 +71467,16 @@ models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_36x62_round_ models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_24x64_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_24x24_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x64_01.vvd +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x24_01_complete.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x24_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_56x90_01.vvd +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x64_01_complete.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x64_01.vvd +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x62_round_01_complete.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x62_round_01.vvd +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x64_01_complete.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x64_01.vvd +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x24_01_complete.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x24_01.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_bars_64x64_06.vvd models/props/de_dust/hr_dust/dust_windows/dust_window_bars_64x64_05.vvd @@ -70576,6 +71590,7 @@ models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass_opaque.vvd models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass_broken.vvd models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass.vvd models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_body.vvd +models/props/de_dust/hr_dust/dust_vehicles/dust_taxi2_body.vvd models/props/de_dust/hr_dust/dust_vehicles/dust_limo_lowpoly.vvd models/props/de_dust/hr_dust/dust_vehicles/dust_hatchback_wheels.vvd models/props/de_dust/hr_dust/dust_vehicles/dust_hatchback_interior.vvd @@ -70639,6 +71654,7 @@ models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_64.vvd models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_32.vvd models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_256.vvd models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_128.vvd +models/props/de_dust/hr_dust/dust_trims/dust_stairs006_96.vvd models/props/de_dust/hr_dust/dust_trims/dust_stairs005_96.vvd models/props/de_dust/hr_dust/dust_trims/dust_stairs003b_256.vvd models/props/de_dust/hr_dust/dust_trims/dust_stairs003_64.vvd @@ -70911,6 +71927,60 @@ models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_bracket_01.vvd models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_03.vvd models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_02.vvd models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_14.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_13.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_12.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_11.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_10.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_09.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_08.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_07.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_06.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_05.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_04.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_03.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_03.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02_flush.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01_flush.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_right_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_left_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x64_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x32_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x256_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x128_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x64_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x32_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x256_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x128_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_board_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x64_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x32_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x256_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x128_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02_skybox.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01_skybox.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_l_tunnels_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_03.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_01.vvd models/props/de_dust/hr_dust/dust_kasbah/mudbrick_single_test.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_wood_wall_64_03.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_wood_wall_64_02.vvd @@ -71049,6 +72119,11 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_04.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_03.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_02.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_end_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_end_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_03.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_02.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_01.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_02.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_01.vvd @@ -71060,6 +72135,7 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_loose_board_01.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_76_01.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_256_01.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_128_01.vvd +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_wedge_01.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_tall_end_01.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_tall_corner_01.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_tall_96_02.vvd @@ -71091,60 +72167,6 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_64_03.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_64_02.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_64_01.vvd models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_32_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_14.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_13.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_12.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_11.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_10.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_09.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_08.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_07.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_06.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_05.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_04.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_03.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_03.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02_flush.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01_flush.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_right_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_left_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x64_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x32_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x256_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x128_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x64_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x32_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x256_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x128_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_board_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x64_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x32_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x256_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x128_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02_skybox.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01_skybox.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_l_tunnels_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_03.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_01.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_02.vvd -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_01.vvd models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_lid.vvd models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_02.vvd models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_01.vvd @@ -71209,7 +72231,9 @@ models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_192x128_inset_01.vvd models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_surface_01.vvd models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_open_01.vvd models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_inset_01.vvd +models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_96x128_01_complete.vvd models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_96x128_01.vvd +models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_89x128_01_complete.vvd models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_89x128_01.vvd models/props/de_dust/hr_dust/dust_doors/dust_door_underpass_01.vvd models/props/de_dust/hr_dust/dust_doors/dust_door_transome_window_round_06.vvd @@ -71262,6 +72286,7 @@ models/props/de_dust/hr_dust/dust_doorframes/dust_doortransome_01.vvd models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_03.vvd models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_02.vvd models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_01.vvd +models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_56x106_03_complete.vvd models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_03.vvd models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_02.vvd models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_01.vvd @@ -71292,6 +72317,10 @@ models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_128_a_striped.vvd models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_128_a.vvd models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_1024_a_striped.vvd models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_1024_a.vvd +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_02.vvd +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_01.vvd +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_02.vvd +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_01.vvd models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate_stack_02.vvd models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate_stack_01.vvd models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate.vvd @@ -71334,10 +72363,6 @@ models/props/de_dust/hr_dust/dust_crates/dust_crate_style_01_32x16x64.vvd models/props/de_dust/hr_dust/dust_crates/dust_crate_style_01_32x16x32.vvd models/props/de_dust/hr_dust/dust_crates/dust_crate_assembly_100x100_01_tarp.vvd models/props/de_dust/hr_dust/dust_crates/dust_crate_assembly_100x100_01.vvd -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_02.vvd -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_01.vvd -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_02.vvd -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_01.vvd models/props/de_dust/hr_dust/dust_construction/dust_rebar_stack.vvd models/props/de_dust/hr_dust/dust_construction/dust_flexconduit_spool.vvd models/props/de_dust/hr_dust/dust_cloth_line/cloth_line_mount.vvd @@ -73908,6 +74933,31 @@ models/props/coop_cementplant/coop_ammo_stash/coop_ammo_stash_full.vvd models/props/coop_cementplant/coop_ammo_stash/coop_ammo_stash_empty.vvd models/coop/challenge_coin.vvd models/props/de_inferno/hr_i/clothes_a/clothes_b.vvd +models/player/custom_player/legacy/ctm_sas_variantb.vvd +models/player/custom_player/legacy/ctm_sas_varianta.vvd +models/player/custom_player/legacy/ctm_sas.vvd +models/player/custom_player/legacy/ctm_idf_variantf.vvd +models/player/custom_player/legacy/ctm_idf_variante.vvd +models/player/custom_player/legacy/ctm_idf_variantd.vvd +models/player/custom_player/legacy/ctm_idf_variantc.vvd +models/player/custom_player/legacy/ctm_idf_variantb.vvd +models/player/custom_player/legacy/ctm_idf.vvd +models/player/custom_player/legacy/ctm_heavy.vvd +models/player/custom_player/legacy/ctm_gsg9_variantd.vvd +models/player/custom_player/legacy/ctm_gsg9_variantc.vvd +models/player/custom_player/legacy/ctm_gsg9_variantb.vvd +models/player/custom_player/legacy/ctm_gsg9_varianta.vvd +models/player/custom_player/legacy/ctm_gsg9.vvd +models/player/custom_player/legacy/ctm_gign_variantd.vvd +models/player/custom_player/legacy/ctm_gign_variantc.vvd +models/player/custom_player/legacy/ctm_gign_variantb.vvd +models/player/custom_player/legacy/ctm_gign_varianta.vvd +models/player/custom_player/legacy/ctm_gign.vvd +models/player/custom_player/legacy/ctm_fbi_variantd.vvd +models/player/custom_player/legacy/ctm_fbi_variantc.vvd +models/player/custom_player/legacy/ctm_fbi_variantb.vvd +models/player/custom_player/legacy/ctm_fbi_varianta.vvd +models/player/custom_player/legacy/ctm_fbi.vvd models/player/custom_player/legacy/tm_separatist_variantd.vvd models/player/custom_player/legacy/tm_separatist_variantc.vvd models/player/custom_player/legacy/tm_separatist_variantb.vvd @@ -73960,31 +75010,6 @@ models/player/custom_player/legacy/ctm_st6.vvd models/player/custom_player/legacy/ctm_sas_variante.vvd models/player/custom_player/legacy/ctm_sas_variantd.vvd models/player/custom_player/legacy/ctm_sas_variantc.vvd -models/player/custom_player/legacy/ctm_sas_variantb.vvd -models/player/custom_player/legacy/ctm_sas_varianta.vvd -models/player/custom_player/legacy/ctm_sas.vvd -models/player/custom_player/legacy/ctm_idf_variantf.vvd -models/player/custom_player/legacy/ctm_idf_variante.vvd -models/player/custom_player/legacy/ctm_idf_variantd.vvd -models/player/custom_player/legacy/ctm_idf_variantc.vvd -models/player/custom_player/legacy/ctm_idf_variantb.vvd -models/player/custom_player/legacy/ctm_idf.vvd -models/player/custom_player/legacy/ctm_heavy.vvd -models/player/custom_player/legacy/ctm_gsg9_variantd.vvd -models/player/custom_player/legacy/ctm_gsg9_variantc.vvd -models/player/custom_player/legacy/ctm_gsg9_variantb.vvd -models/player/custom_player/legacy/ctm_gsg9_varianta.vvd -models/player/custom_player/legacy/ctm_gsg9.vvd -models/player/custom_player/legacy/ctm_gign_variantd.vvd -models/player/custom_player/legacy/ctm_gign_variantc.vvd -models/player/custom_player/legacy/ctm_gign_variantb.vvd -models/player/custom_player/legacy/ctm_gign_varianta.vvd -models/player/custom_player/legacy/ctm_gign.vvd -models/player/custom_player/legacy/ctm_fbi_variantd.vvd -models/player/custom_player/legacy/ctm_fbi_variantc.vvd -models/player/custom_player/legacy/ctm_fbi_variantb.vvd -models/player/custom_player/legacy/ctm_fbi_varianta.vvd -models/player/custom_player/legacy/ctm_fbi.vvd models/player/custom_player/animset_t.vvd models/player/custom_player/animset_ct.vvd models/player/custom_player/scaffold_t.vvd @@ -74190,9 +75215,9 @@ models/shells/shell_57.vvd models/shells/shell_556.vvd models/shells/shell_338mag.vvd models/shells/shell_12gauge.vvd -models/props_yard/playground_swingset02.vvd models/props_yard/playground_structure.vvd models/props_yard/playground_slide.vvd +models/props_yard/playground_swingset02.vvd models/props_windows/window_urban_sash_48_88_tframe.vvd models/props_windows/window_urban_sash_48_88_rounded.vvd models/props_windows/window_urban_sash_48_88_open.vvd @@ -75768,9 +76793,11 @@ models/props/de_vertigo/scaffolding_walkway_03.vvd models/props/de_vertigo/scaffolding_walkway_02.vvd models/props/de_vertigo/scaffolding_walkway_01.vvd models/props/de_vertigo/scaffolding_end_open.vvd +models/props/de_vertigo/scaffolding_end_b.vvd models/props/de_vertigo/scaffolding_end.vvd models/props/de_vertigo/scaffolding_building_edge_support.vvd models/props/de_vertigo/scaffolding_building_edge_guard.vvd +models/props/de_vertigo/scaffolding_building_edge_corner_02.vvd models/props/de_vertigo/scaffolding_building_edge_corner.vvd models/props/de_vertigo/scaffolding_building_edge.vvd models/props/de_vertigo/scaffolding_brace.vvd @@ -75846,6 +76873,7 @@ models/props/de_vertigo/insulation_scappiece_02.vvd models/props/de_vertigo/insulation_scappiece_01.vvd models/props/de_vertigo/ibeams_big01.vvd models/props/de_vertigo/ibeam_vertical_medium.vvd +models/props/de_vertigo/ibeam_vertical_large_high.vvd models/props/de_vertigo/ibeam_vertical_large.vvd models/props/de_vertigo/ibeam_stack.vvd models/props/de_vertigo/ibeam_plate_topbottom.vvd @@ -75864,6 +76892,7 @@ models/props/de_vertigo/ibeam_plate_bigbolt.vvd models/props/de_vertigo/ibeam_horizontal_small_02.vvd models/props/de_vertigo/ibeam_horizontal_small.vvd models/props/de_vertigo/ibeam_horizontal_large_hole.vvd +models/props/de_vertigo/ibeam_horizontal_large_high.vvd models/props/de_vertigo/ibeam_horizontal_large_04.vvd models/props/de_vertigo/ibeam_horizontal_large_03.vvd models/props/de_vertigo/ibeam_horizontal_large_02.vvd @@ -75907,6 +76936,7 @@ models/props/de_vertigo/flexconduit_bundle.vvd models/props/de_vertigo/fencerail_constructionnetting_02.vvd models/props/de_vertigo/fencerail_constructionnetting_01.vvd models/props/de_vertigo/fencerail_constructioncables_01.vvd +models/props/de_vertigo/fencerail_construction_netting_03.vvd models/props/de_vertigo/fencerail_construction2x4_break_base.vvd models/props/de_vertigo/fencepost_constructionmetal_01.vvd models/props/de_vertigo/elevator_top_shaft_e.vvd @@ -76479,6 +77509,71 @@ models/props/de_mill/de_mill_grinder_ramp_01.vvd models/props/de_mill/de_mill_grinder_cutter01_ramp.vvd models/props/de_mill/de_mill_grinder_cutter01.vvd models/props/de_mill/de_mill_cane_carrier01.vvd +models/props/de_inferno/de_inferno_well.vvd +models/props/de_inferno/de_inferno_boulder_02.vvd +models/props/de_inferno/de_inferno_boulder_01.vvd +models/props/de_inferno/confessional_new.vvd +models/props/de_inferno/confessional.vvd +models/props/de_inferno/clock01.vvd +models/props/de_inferno/claypot03_damage_06.vvd +models/props/de_inferno/claypot03_damage_05.vvd +models/props/de_inferno/claypot03_damage_04.vvd +models/props/de_inferno/claypot03_damage_03.vvd +models/props/de_inferno/claypot03_damage_02.vvd +models/props/de_inferno/claypot03_damage_01.vvd +models/props/de_inferno/claypot03.vvd +models/props/de_inferno/claypot02_static.vvd +models/props/de_inferno/claypot02.vvd +models/props/de_inferno/clayoven.vvd +models/props/de_inferno/cinderblock.vvd +models/props/de_inferno/churchprop05.vvd +models/props/de_inferno/churchprop04.vvd +models/props/de_inferno/churchprop03.vvd +models/props/de_inferno/churchprop02.vvd +models/props/de_inferno/churchprop01.vvd +models/props/de_inferno/church_stone_trim_new.vvd +models/props/de_inferno/church_stone_trim.vvd +models/props/de_inferno/church_ornament_01.vvd +models/props/de_inferno/chimney02.vvd +models/props/de_inferno/chairantique_static.vvd +models/props/de_inferno/ceiling_light.vvd +models/props/de_inferno/ceiling_fan_blade.vvd +models/props/de_inferno/ceiling_fan.vvd +models/props/de_inferno/cart_wheel_static.vvd +models/props/de_inferno/cannon_gun.vvd +models/props/de_inferno/cannon_base.vvd +models/props/de_inferno/bushgreensmall.vvd +models/props/de_inferno/brokenwall.vvd +models/props/de_inferno/brokenboard_damage_02.vvd +models/props/de_inferno/brokenboard_damage_01.vvd +models/props/de_inferno/brokenboard.vvd +models/props/de_inferno/bridge_arch01_new.vvd +models/props/de_inferno/bridge_arch01.vvd +models/props/de_inferno/brickpillarb.vvd +models/props/de_inferno/bombsiteroof.vvd +models/props/de_inferno/bomb_tanks.vvd +models/props/de_inferno/bomb_shells_2_wood.vvd +models/props/de_inferno/bomb_shells_2_metal.vvd +models/props/de_inferno/bomb_shells_1_wood.vvd +models/props/de_inferno/bomb_shells_1_metal.vvd +models/props/de_inferno/bomb_drums_02.vvd +models/props/de_inferno/bomb_drums_01.vvd +models/props/de_inferno/bomb_drum_nitro.vvd +models/props/de_inferno/bomb_crate_nitrostack.vvd +models/props/de_inferno/bomb_crate_nitro.vvd +models/props/de_inferno/bench_wood_new.vvd +models/props/de_inferno/bench_wood.vvd +models/props/de_inferno/bench_concrete.vvd +models/props/de_inferno/bell_small.vvd +models/props/de_inferno/bell_large.vvd +models/props/de_inferno/bed.vvd +models/props/de_inferno/archwaysupport.vvd +models/props/de_inferno/archroofb2.vvd +models/props/de_inferno/archroofb1.vvd +models/props/de_inferno/arch_stones03_new.vvd +models/props/de_inferno/arch_stones03.vvd +models/props/de_inferno/arch_stones02_new.vvd +models/props/de_inferno/arch_stones02.vvd models/props/de_inferno/wood_fence_end.vvd models/props/de_inferno/wood_fence.vvd models/props/de_inferno/wire_spool02_new.vvd @@ -76594,71 +77689,6 @@ models/props/de_inferno/inferno_fence_01.vvd models/props/de_inferno/inferno_church_entrance.vvd models/props/de_inferno/infarchc_new.vvd models/props/de_inferno/infarchc.vvd -models/props/de_inferno/de_inferno_well.vvd -models/props/de_inferno/de_inferno_boulder_02.vvd -models/props/de_inferno/de_inferno_boulder_01.vvd -models/props/de_inferno/confessional_new.vvd -models/props/de_inferno/confessional.vvd -models/props/de_inferno/clock01.vvd -models/props/de_inferno/claypot03_damage_06.vvd -models/props/de_inferno/claypot03_damage_05.vvd -models/props/de_inferno/claypot03_damage_04.vvd -models/props/de_inferno/claypot03_damage_03.vvd -models/props/de_inferno/claypot03_damage_02.vvd -models/props/de_inferno/claypot03_damage_01.vvd -models/props/de_inferno/claypot03.vvd -models/props/de_inferno/claypot02_static.vvd -models/props/de_inferno/claypot02.vvd -models/props/de_inferno/clayoven.vvd -models/props/de_inferno/cinderblock.vvd -models/props/de_inferno/churchprop05.vvd -models/props/de_inferno/churchprop04.vvd -models/props/de_inferno/churchprop03.vvd -models/props/de_inferno/churchprop02.vvd -models/props/de_inferno/churchprop01.vvd -models/props/de_inferno/church_stone_trim_new.vvd -models/props/de_inferno/church_stone_trim.vvd -models/props/de_inferno/church_ornament_01.vvd -models/props/de_inferno/chimney02.vvd -models/props/de_inferno/chairantique_static.vvd -models/props/de_inferno/ceiling_light.vvd -models/props/de_inferno/ceiling_fan_blade.vvd -models/props/de_inferno/ceiling_fan.vvd -models/props/de_inferno/cart_wheel_static.vvd -models/props/de_inferno/cannon_gun.vvd -models/props/de_inferno/cannon_base.vvd -models/props/de_inferno/bushgreensmall.vvd -models/props/de_inferno/brokenwall.vvd -models/props/de_inferno/brokenboard_damage_02.vvd -models/props/de_inferno/brokenboard_damage_01.vvd -models/props/de_inferno/brokenboard.vvd -models/props/de_inferno/bridge_arch01_new.vvd -models/props/de_inferno/bridge_arch01.vvd -models/props/de_inferno/brickpillarb.vvd -models/props/de_inferno/bombsiteroof.vvd -models/props/de_inferno/bomb_tanks.vvd -models/props/de_inferno/bomb_shells_2_wood.vvd -models/props/de_inferno/bomb_shells_2_metal.vvd -models/props/de_inferno/bomb_shells_1_wood.vvd -models/props/de_inferno/bomb_shells_1_metal.vvd -models/props/de_inferno/bomb_drums_02.vvd -models/props/de_inferno/bomb_drums_01.vvd -models/props/de_inferno/bomb_drum_nitro.vvd -models/props/de_inferno/bomb_crate_nitrostack.vvd -models/props/de_inferno/bomb_crate_nitro.vvd -models/props/de_inferno/bench_wood_new.vvd -models/props/de_inferno/bench_wood.vvd -models/props/de_inferno/bench_concrete.vvd -models/props/de_inferno/bell_small.vvd -models/props/de_inferno/bell_large.vvd -models/props/de_inferno/bed.vvd -models/props/de_inferno/archwaysupport.vvd -models/props/de_inferno/archroofb2.vvd -models/props/de_inferno/archroofb1.vvd -models/props/de_inferno/arch_stones03_new.vvd -models/props/de_inferno/arch_stones03.vvd -models/props/de_inferno/arch_stones02_new.vvd -models/props/de_inferno/arch_stones02.vvd models/props/de_inferno/head_sculpture.vvd models/props/de_inferno/hazard_ribbon3.vvd models/props/de_inferno/hazard_ribbon2.vvd @@ -76749,74 +77779,6 @@ models/props/de_dust/objects/dust_walltop_180_sm.vvd models/props/de_dust/objects/dust_walltop_132_xsm_cap.vvd models/props/de_dust/objects/dust_walltop_128_sm.vvd models/props/de_dust/objects/dust_walltop_128.vvd -models/props/de_dust/grainbasket01c_static.vvd -models/props/de_dust/grainbasket01c_gib2.vvd -models/props/de_dust/grainbasket01c_gib1.vvd -models/props/de_dust/grainbasket01c.vvd -models/props/de_dust/grainbasket01b.vvd -models/props/de_dust/grainbasket01a.vvd -models/props/de_dust/dust_rusty_barrel.vvd -models/props/de_dust/dust_rocks_base.vvd -models/props/de_dust/dust_metal_door2.vvd -models/props/de_dust/dust_metal_door.vvd -models/props/de_dust/dust_metal_crate.vvd -models/props/de_dust/dust_med_sign.vvd -models/props/de_dust/dust_large_wood_door.vvd -models/props/de_dust/dust_large_sign_falling.vvd -models/props/de_dust/dust_large_sign.vvd -models/props/de_dust/dust_food_crates_74.vvd -models/props/de_dust/dust_food_crates_56.vvd -models/props/de_dust/dust_food_crate.vvd -models/props/de_dust/dust_bombsite_gap_step.vvd -models/props/de_dust/dust_bombsite_gap.vvd -models/props/de_dust/dust_balcony03.vvd -models/props/de_dust/dust_balcony02.vvd -models/props/de_dust/dust_arch_small.vvd -models/props/de_dust/dust_arch_long.vvd -models/props/de_dust/dust_arch_large.vvd -models/props/de_dust/dust_arch_decorative.vvd -models/props/de_dust/dust_arch_damaged.vvd -models/props/de_dust/dust_aid_crate_tethers_74.vvd -models/props/de_dust/dust_aid_crate_tethers_56.vvd -models/props/de_dust/dust_aid_crate_74.vvd -models/props/de_dust/dust_aid_crate_56.vvd -models/props/de_dust/dust2_tunnel_arch02.vvd -models/props/de_dust/dust2_tunnel_arch01.vvd -models/props/de_dust/dust2_arch_long.vvd -models/props/de_dust/dust2_arch_decorative.vvd -models/props/de_dust/du_window_palace.vvd -models/props/de_dust/du_window_88x80.vvd -models/props/de_dust/du_window_88x56_shut_lightvol.vvd -models/props/de_dust/du_window_88x56_shut.vvd -models/props/de_dust/du_window_88x56.vvd -models/props/de_dust/du_window_6x8_sill.vvd -models/props/de_dust/du_window_6x8_shutters_flat.vvd -models/props/de_dust/du_window_6x10_arch_flat.vvd -models/props/de_dust/du_window_6x10_arch.vvd -models/props/de_dust/du_window_4x8_square_flat.vvd -models/props/de_dust/du_window_4x8_square.vvd -models/props/de_dust/du_window_4x8_arch_flat.vvd -models/props/de_dust/du_window_4x8_arch.vvd -models/props/de_dust/du_window_4x6_square.vvd -models/props/de_dust/du_window_4x6_arch.vvd -models/props/de_dust/du_window_2x6_arch_flat.vvd -models/props/de_dust/du_window_2x6_arch.vvd -models/props/de_dust/du_hanging_rugsb.vvd -models/props/de_dust/du_hanging_rugsa.vvd -models/props/de_dust/du_door_temple_entrance.vvd -models/props/de_dust/du_dome_star_window.vvd -models/props/de_dust/du_crate_64x64_stone.vvd -models/props/de_dust/du_antenna_b.vvd -models/props/de_dust/du_antenna_a.vvd -models/props/de_dust/door01a.vvd -models/props/de_dust/awning_smalldoor.vvd -models/props/de_dust/awning04.vvd -models/props/de_dust/awning03.vvd -models/props/de_dust/awning02.vvd -models/props/de_dust/awning01.vvd -models/props/de_dust/archwayhallmed.vvd -models/props/de_dust/archwayhalllarge.vvd -models/props/de_dust/archhalllargewide.vvd models/props/de_dust/window_palace_interior.vvd models/props/de_dust/wagon.vvd models/props/de_dust/technical01.vvd @@ -76872,6 +77834,74 @@ models/props/de_dust/palaceinteriorarches.vvd models/props/de_dust/palace_bigdomeskybox.vvd models/props/de_dust/palace_bigdome.vvd models/props/de_dust/mosquetop02.vvd +models/props/de_dust/grainbasket01c_static.vvd +models/props/de_dust/grainbasket01c_gib2.vvd +models/props/de_dust/grainbasket01c_gib1.vvd +models/props/de_dust/grainbasket01c.vvd +models/props/de_dust/grainbasket01b.vvd +models/props/de_dust/grainbasket01a.vvd +models/props/de_dust/dust_rusty_barrel.vvd +models/props/de_dust/dust_rocks_base.vvd +models/props/de_dust/dust_metal_door2.vvd +models/props/de_dust/dust_metal_door.vvd +models/props/de_dust/dust_metal_crate.vvd +models/props/de_dust/dust_med_sign.vvd +models/props/de_dust/dust_large_wood_door.vvd +models/props/de_dust/dust_large_sign_falling.vvd +models/props/de_dust/dust_large_sign.vvd +models/props/de_dust/dust_food_crates_74.vvd +models/props/de_dust/dust_food_crates_56.vvd +models/props/de_dust/dust_food_crate.vvd +models/props/de_dust/dust_bombsite_gap_step.vvd +models/props/de_dust/dust_bombsite_gap.vvd +models/props/de_dust/dust_balcony03.vvd +models/props/de_dust/dust_balcony02.vvd +models/props/de_dust/dust_arch_small.vvd +models/props/de_dust/dust_arch_long.vvd +models/props/de_dust/dust_arch_large.vvd +models/props/de_dust/dust_arch_decorative.vvd +models/props/de_dust/dust_arch_damaged.vvd +models/props/de_dust/dust_aid_crate_tethers_74.vvd +models/props/de_dust/dust_aid_crate_tethers_56.vvd +models/props/de_dust/dust_aid_crate_74.vvd +models/props/de_dust/dust_aid_crate_56.vvd +models/props/de_dust/dust2_tunnel_arch02.vvd +models/props/de_dust/dust2_tunnel_arch01.vvd +models/props/de_dust/dust2_arch_long.vvd +models/props/de_dust/dust2_arch_decorative.vvd +models/props/de_dust/du_window_palace.vvd +models/props/de_dust/du_window_88x80.vvd +models/props/de_dust/du_window_88x56_shut_lightvol.vvd +models/props/de_dust/du_window_88x56_shut.vvd +models/props/de_dust/du_window_88x56.vvd +models/props/de_dust/du_window_6x8_sill.vvd +models/props/de_dust/du_window_6x8_shutters_flat.vvd +models/props/de_dust/du_window_6x10_arch_flat.vvd +models/props/de_dust/du_window_6x10_arch.vvd +models/props/de_dust/du_window_4x8_square_flat.vvd +models/props/de_dust/du_window_4x8_square.vvd +models/props/de_dust/du_window_4x8_arch_flat.vvd +models/props/de_dust/du_window_4x8_arch.vvd +models/props/de_dust/du_window_4x6_square.vvd +models/props/de_dust/du_window_4x6_arch.vvd +models/props/de_dust/du_window_2x6_arch_flat.vvd +models/props/de_dust/du_window_2x6_arch.vvd +models/props/de_dust/du_hanging_rugsb.vvd +models/props/de_dust/du_hanging_rugsa.vvd +models/props/de_dust/du_door_temple_entrance.vvd +models/props/de_dust/du_dome_star_window.vvd +models/props/de_dust/du_crate_64x64_stone.vvd +models/props/de_dust/du_antenna_b.vvd +models/props/de_dust/du_antenna_a.vvd +models/props/de_dust/door01a.vvd +models/props/de_dust/awning_smalldoor.vvd +models/props/de_dust/awning04.vvd +models/props/de_dust/awning03.vvd +models/props/de_dust/awning02.vvd +models/props/de_dust/awning01.vvd +models/props/de_dust/archwayhallmed.vvd +models/props/de_dust/archwayhalllarge.vvd +models/props/de_dust/archhalllargewide.vvd models/props/de_depot/flatbed_rocket.vvd models/props/de_cbble/window_d/window_d_glow.vvd models/props/de_cbble/window_d/window_d.vvd @@ -77656,6 +78686,7 @@ models/props/crates/csgo_drop_crate_armsdeal1.vvd models/inventory_items/music_kits/music_kit_valve_01.vvd models/inventory_items/music_kits/music_kit_twinatlantic_01.vvd models/inventory_items/music_kits/music_kit_troelsfolmann_01.vvd +models/inventory_items/music_kits/music_kit_theverkkars_01.vvd models/inventory_items/music_kits/music_kit_skog_03.vvd models/inventory_items/music_kits/music_kit_skog_02.vvd models/inventory_items/music_kits/music_kit_skog_01.vvd @@ -77690,12 +78721,12 @@ models/inventory_items/music_kits/music_kit_beartooth_02.vvd models/inventory_items/music_kits/music_kit_beartooth_01.vvd models/inventory_items/music_kits/music_kit_awolnation_01.vvd models/inventory_items/music_kits/music_kit_austinwintory_01.vvd +models/hostage/hostage_carry.vvd +models/hostage/hostage.vvd models/hostage/v_hostage_arm.vvd models/hostage/hostage_variantc.vvd models/hostage/hostage_variantb.vvd models/hostage/hostage_varianta.vvd -models/hostage/hostage_carry.vvd -models/hostage/hostage.vvd models/player/holiday/santahat.vvd models/player/holiday/facemasks/porcelain_doll.vvd models/player/holiday/facemasks/facemask_zombie_fortune_plastic.vvd @@ -77757,13 +78788,6 @@ models/gibs/furniture_gibs/furnituretable001a_chunk02.vvd models/gibs/furniture_gibs/furnituretable001a_chunk01.vvd models/ghost/ghost.vvd models/extras/info_speech.vvd -models/editor/cone_helper.vvd -models/editor/climb_node.vvd -models/editor/camera.vvd -models/editor/axis_helper_thick.vvd -models/editor/axis_helper.vvd -models/editor/air_node_hint.vvd -models/editor/air_node.vvd models/editor/spot_cone.vvd models/editor/spot.vvd models/editor/scriptedsequence.vvd @@ -77772,6 +78796,13 @@ models/editor/overlay_helper.vvd models/editor/node_hint.vvd models/editor/ground_node_hint.vvd models/editor/ground_node.vvd +models/editor/cone_helper.vvd +models/editor/climb_node.vvd +models/editor/camera.vvd +models/editor/axis_helper_thick.vvd +models/editor/axis_helper.vvd +models/editor/air_node_hint.vvd +models/editor/air_node.vvd models/destruction_tanker/pre_destruction_tanker_trailer.vvd models/destruction_tanker/destruction_tanker_rear.vvd models/destruction_tanker/destruction_tanker_front.vvd @@ -77789,13 +78820,6 @@ models/de_alleyway/tanker_alleyway_layout.vvd models/de_alleyway/subway_stairs_rail.vvd models/de_alleyway/street_basketball_hoop.vvd models/de_alleyway/skybox_water_treatment_facility.vvd -models/player/zombie_ghost.vvd -models/player/zombie.vvd -models/player/tm_separatist_variantd.vvd -models/player/tm_separatist_variantc.vvd -models/player/tm_separatist_variantb.vvd -models/player/tm_separatist_varianta.vvd -models/player/tm_anarchist.vvd models/player/ctm_swat_variantd.vvd models/player/ctm_swat_variantc.vvd models/player/ctm_swat_variantb.vvd @@ -77837,6 +78861,13 @@ models/player/ctm_fbi_variantc.vvd models/player/ctm_fbi_variantb.vvd models/player/ctm_fbi_varianta.vvd models/player/ctm_fbi.vvd +models/player/tm_anarchist.vvd +models/player/zombie_ghost.vvd +models/player/zombie.vvd +models/player/tm_separatist_variantd.vvd +models/player/tm_separatist_variantc.vvd +models/player/tm_separatist_variantb.vvd +models/player/tm_separatist_varianta.vvd models/player/tm_separatist.vvd models/player/tm_professional_var4.vvd models/player/tm_professional_var3.vvd @@ -77898,214 +78929,6 @@ models/characters/hostage_04.vvd models/characters/hostage_03.vvd models/characters/hostage_02.vvd models/characters/hostage_01.vvd -models/weapons/w_shot_sawedoff.vvd -models/weapons/v_shot_sawedoff.vvd -models/weapons/w_shot_nova_mag.vvd -models/weapons/w_shot_nova_dropped.vvd -models/weapons/w_shot_nova.vvd -models/weapons/v_shot_nova.vvd -models/weapons/w_shot_mag7_mag.vvd -models/weapons/w_shot_mag7_dropped.vvd -models/weapons/w_shot_mag7.vvd -models/weapons/v_shot_mag7.vvd -models/weapons/pedestal_workshop_greenscreen.vvd -models/weapons/pedestal_workshop_firstperson.vvd -models/weapons/pedestal_workshop.vvd -models/weapons/pedestal_trophy_panorama.vvd -models/weapons/pedestal_sticker_panorama.vvd -models/weapons/pedestal_sticker.vvd -models/weapons/pedestal_music_kits_panorama.vvd -models/weapons/pedestal_music_kits.vvd -models/weapons/pedestal_knives_panorama.vvd -models/weapons/pedestal_knives.vvd -models/weapons/pedestal_ground_shadow_plane.vvd -models/weapons/pedestal_gloves.vvd -models/weapons/pedestal_firstperson.vvd -models/weapons/pedestal_default.vvd -models/weapons/pedestal_badges_panorama.vvd -models/weapons/pedestal_badges_nocase.vvd -models/weapons/pedestal_badges.vvd -models/weapons/v_parachute.vvd -models/weapons/w_muzzlefireshape.vvd -models/weapons/uid_xsmall_weaponpreview.vvd -models/weapons/uid_weaponpreview.vvd -models/weapons/uid_small_weaponpreview.vvd -models/weapons/uid_small.vvd -models/weapons/uid_create.vvd -models/weapons/uid.vvd -models/weapons/v_rif_sg556_scopelensmask.vvd -models/weapons/w_rif_sg556_mag.vvd -models/weapons/w_rif_sg556_dropped.vvd -models/weapons/w_rif_sg556.vvd -models/weapons/v_rif_sg556.vvd -models/weapons/w_rif_m4a1_s_mag.vvd -models/weapons/w_rif_m4a1_s_icon.vvd -models/weapons/w_rif_m4a1_s_dropped.vvd -models/weapons/w_rif_m4a1_s.vvd -models/weapons/v_rif_m4a1_s.vvd -models/weapons/w_rif_m4a1_mag.vvd -models/weapons/w_rif_m4a1_dropped.vvd -models/weapons/w_rif_m4a1.vvd -models/weapons/v_rif_m4a1.vvd -models/weapons/w_rif_galilar_mag.vvd -models/weapons/w_rif_galilar_dropped.vvd -models/weapons/w_rif_galilar.vvd -models/weapons/v_rif_galilar.vvd -models/weapons/w_rif_famas_mag.vvd -models/weapons/w_rif_famas_dropped.vvd -models/weapons/w_rif_famas.vvd -models/weapons/v_rif_famas.vvd -models/weapons/v_rif_aug_scopelensmask.vvd -models/weapons/w_rif_aug_mag.vvd -models/weapons/w_rif_aug_dropped.vvd -models/weapons/w_rif_aug.vvd -models/weapons/v_rif_aug.vvd -models/weapons/w_rif_ak47_mag.vvd -models/weapons/w_rif_ak47_dropped.vvd -models/weapons/w_rif_ak47.vvd -models/weapons/v_rif_ak47.vvd -models/weapons/ct_arms_swat.vvd -models/weapons/ct_arms_st6.vvd -models/weapons/ct_arms_sas.vvd -models/weapons/ct_arms_idf.vvd -models/weapons/ct_arms_gsg9.vvd -models/weapons/ct_arms_gign.vvd -models/weapons/ct_arms_fbi.vvd -models/weapons/ct_arms.vvd -models/weapons/w_knife_gut.vvd -models/weapons/v_knife_gut.vvd -models/weapons/w_knife_ghost.vvd -models/weapons/v_knife_ghost.vvd -models/weapons/w_knife_gg.vvd -models/weapons/v_knife_gg.vvd -models/weapons/v_knife_flip_inspect.vvd -models/weapons/w_knife_flip_dropped.vvd -models/weapons/w_knife_flip.vvd -models/weapons/v_knife_flip.vvd -models/weapons/v_knife_falchion_advanced_inspect.vvd -models/weapons/w_knife_falchion_advanced_dropped.vvd -models/weapons/w_knife_falchion_advanced.vvd -models/weapons/v_knife_falchion_advanced.vvd -models/weapons/v_knife_default_t_inspect.vvd -models/weapons/w_knife_default_t_dropped.vvd -models/weapons/w_knife_default_t.vvd -models/weapons/v_knife_default_t.vvd -models/weapons/w_knife_default_icon.vvd -models/weapons/v_knife_default_ct_inspect.vvd -models/weapons/w_knife_default_ct_dropped.vvd -models/weapons/w_knife_default_ct.vvd -models/weapons/v_knife_default_ct.vvd -models/weapons/v_knife_butterfly_inspect.vvd -models/weapons/w_knife_butterfly_dropped.vvd -models/weapons/w_knife_butterfly.vvd -models/weapons/v_knife_butterfly.vvd -models/weapons/v_knife_bayonet_inspect.vvd -models/weapons/w_knife_bayonet_dropped.vvd -models/weapons/w_knife_bayonet.vvd -models/weapons/v_knife_bayonet.vvd -models/weapons/w_knife.vvd -models/weapons/v_knife.vvd -models/weapons/w_ied_dropped.vvd -models/weapons/w_ied.vvd -models/weapons/v_ied.vvd -models/weapons/w_mach_negev_mag.vvd -models/weapons/w_mach_negev_dropped.vvd -models/weapons/w_mach_negev.vvd -models/weapons/v_mach_negev.vvd -models/weapons/w_mach_m249para.vvd -models/weapons/v_mach_m249para.vvd -models/weapons/w_mach_m249_mag.vvd -models/weapons/w_mach_m249_dropped.vvd -models/weapons/w_mach_m249.vvd -models/weapons/v_knife_widowmaker_inspect.vvd -models/weapons/w_knife_widowmaker_dropped.vvd -models/weapons/w_knife_widowmaker.vvd -models/weapons/v_knife_widowmaker.vvd -models/weapons/v_knife_ursus_inspect.vvd -models/weapons/w_knife_ursus_dropped.vvd -models/weapons/w_knife_ursus.vvd -models/weapons/v_knife_ursus.vvd -models/weapons/v_knife_tactical_inspect.vvd -models/weapons/w_knife_tactical_dropped.vvd -models/weapons/w_knife_tactical.vvd -models/weapons/v_knife_tactical.vvd -models/weapons/v_knife_survival_bowie_inspect.vvd -models/weapons/w_knife_survival_bowie_dropped.vvd -models/weapons/w_knife_survival_bowie.vvd -models/weapons/v_knife_survival_bowie.vvd -models/weapons/v_knife_stiletto_inspect.vvd -models/weapons/w_knife_stiletto_dropped.vvd -models/weapons/w_knife_stiletto.vvd -models/weapons/v_knife_stiletto.vvd -models/weapons/v_knife_push_inspect.vvd -models/weapons/w_knife_push_icon.vvd -models/weapons/w_knife_push_dropped.vvd -models/weapons/w_knife_push.vvd -models/weapons/v_knife_push.vvd -models/weapons/v_knife_m9_bay_inspect.vvd -models/weapons/w_knife_m9_bay_dropped.vvd -models/weapons/w_knife_m9_bay.vvd -models/weapons/v_knife_m9_bay.vvd -models/weapons/v_knife_karam_inspect.vvd -models/weapons/w_knife_karam_dropped.vvd -models/weapons/w_knife_karam.vvd -models/weapons/v_knife_karam.vvd -models/weapons/v_knife_gypsy_jackknife_inspect.vvd -models/weapons/w_knife_gypsy_jackknife_dropped.vvd -models/weapons/w_knife_gypsy_jackknife.vvd -models/weapons/v_knife_gypsy_jackknife.vvd -models/weapons/v_knife_gut_inspect.vvd -models/weapons/w_knife_gut_dropped.vvd -models/weapons/w_defuser_display.vvd -models/weapons/w_defuser.vvd -models/weapons/v_sonar_bomb.vvd -models/weapons/w_snowball.vvd -models/weapons/w_snip_ssg08_mag.vvd -models/weapons/w_snip_ssg08_dropped.vvd -models/weapons/w_snip_ssg08.vvd -models/weapons/v_snip_ssg08.vvd -models/weapons/w_snip_scar20_mag.vvd -models/weapons/w_snip_scar20_dropped.vvd -models/weapons/w_snip_scar20.vvd -models/weapons/v_snip_scar20.vvd -models/weapons/w_snip_g3sg1_mag.vvd -models/weapons/w_snip_g3sg1_dropped.vvd -models/weapons/w_snip_g3sg1.vvd -models/weapons/v_snip_g3sg1.vvd -models/weapons/w_snip_awp_mag.vvd -models/weapons/w_snip_awp_icon.vvd -models/weapons/w_snip_awp_dropped.vvd -models/weapons/w_snip_awp.vvd -models/weapons/v_snip_awp.vvd -models/weapons/w_smg_ump45_mag.vvd -models/weapons/w_smg_ump45_dropped.vvd -models/weapons/w_smg_ump45.vvd -models/weapons/v_smg_ump45.vvd -models/weapons/w_smg_p90_mag.vvd -models/weapons/w_smg_p90_dropped.vvd -models/weapons/w_smg_p90.vvd -models/weapons/v_smg_p90.vvd -models/weapons/w_smg_mp9_mag.vvd -models/weapons/w_smg_mp9_dropped.vvd -models/weapons/w_smg_mp9.vvd -models/weapons/v_smg_mp9.vvd -models/weapons/w_smg_mp7_mag.vvd -models/weapons/w_smg_mp7_dropped.vvd -models/weapons/w_smg_mp7.vvd -models/weapons/v_smg_mp7.vvd -models/weapons/w_smg_mp5sd_mag.vvd -models/weapons/w_smg_mp5sd_dropped.vvd -models/weapons/w_smg_mp5sd.vvd -models/weapons/v_smg_mp5sd.vvd -models/weapons/w_smg_mac10_nogrip.vvd -models/weapons/w_smg_mac10_mag.vvd -models/weapons/w_smg_mac10_dropped.vvd -models/weapons/w_smg_mac10.vvd -models/weapons/v_smg_mac10.vvd -models/weapons/w_smg_bizon_mag.vvd -models/weapons/w_smg_bizon_dropped.vvd -models/weapons/w_smg_bizon.vvd -models/weapons/v_smg_bizon.vvd models/weapons/v_healthshot.vvd models/weapons/w_hammer_dropped.vvd models/weapons/w_hammer.vvd @@ -78122,6 +78945,8 @@ models/weapons/w_eq_smokegrenade_thrown.vvd models/weapons/w_eq_smokegrenade_dropped.vvd models/weapons/w_eq_smokegrenade.vvd models/weapons/v_eq_smokegrenade.vvd +models/weapons/w_eq_shield_back.vvd +models/weapons/w_eq_shield.vvd models/weapons/w_eq_sensorgrenade_thrown.vvd models/weapons/w_eq_sensorgrenade_dropped.vvd models/weapons/w_eq_sensorgrenade.vvd @@ -78154,9 +78979,11 @@ models/weapons/w_eq_decoy.vvd models/weapons/v_eq_decoy.vvd models/weapons/w_eq_charge_dropped.vvd models/weapons/w_eq_charge.vvd +models/weapons/w_eq_bumpmine_dropped.vvd +models/weapons/w_eq_bumpmine.vvd models/weapons/w_eq_assault_suit.vvd models/weapons/w_eq_armor.vvd -models/weapons/w_c4_planted.vvd +models/weapons/w_muzzlefireshape.vvd models/weapons/v_tablet.vvd models/weapons/t_arms_workbench_leet.vvd models/weapons/t_arms_separatist.vvd @@ -78167,10 +78994,152 @@ models/weapons/t_arms_leet.vvd models/weapons/t_arms_balkan.vvd models/weapons/t_arms_anarchist.vvd models/weapons/t_arms.vvd -models/weapons/v_breachcharge.vvd -models/weapons/w_axe_dropped.vvd -models/weapons/w_axe.vvd -models/weapons/v_axe.vvd +models/weapons/w_shot_sawedoff.vvd +models/weapons/v_shot_sawedoff.vvd +models/weapons/w_shot_nova_mag.vvd +models/weapons/w_shot_nova_dropped.vvd +models/weapons/w_shot_nova.vvd +models/weapons/v_shot_nova.vvd +models/weapons/w_shot_mag7_mag.vvd +models/weapons/w_shot_mag7_dropped.vvd +models/weapons/w_shot_mag7.vvd +models/weapons/v_shot_mag7.vvd +models/weapons/v_shield.vvd +models/weapons/w_knife_gut.vvd +models/weapons/v_knife_gut.vvd +models/weapons/w_knife_ghost.vvd +models/weapons/v_knife_ghost.vvd +models/weapons/w_knife_gg.vvd +models/weapons/v_knife_gg.vvd +models/weapons/v_knife_flip_inspect.vvd +models/weapons/w_knife_flip_dropped.vvd +models/weapons/w_knife_flip.vvd +models/weapons/v_knife_flip.vvd +models/weapons/v_knife_falchion_advanced_inspect.vvd +models/weapons/w_knife_falchion_advanced_dropped.vvd +models/weapons/w_knife_falchion_advanced.vvd +models/weapons/v_knife_falchion_advanced.vvd +models/weapons/v_knife_default_t_inspect.vvd +models/weapons/w_knife_default_t_dropped.vvd +models/weapons/w_knife_default_t.vvd +models/weapons/v_knife_default_t.vvd +models/weapons/w_knife_default_icon.vvd +models/weapons/v_knife_default_ct_inspect.vvd +models/weapons/w_knife_default_ct_dropped.vvd +models/weapons/w_knife_default_ct.vvd +models/weapons/v_knife_default_ct.vvd +models/weapons/v_knife_butterfly_inspect.vvd +models/weapons/w_knife_butterfly_dropped.vvd +models/weapons/w_knife_butterfly.vvd +models/weapons/v_knife_butterfly.vvd +models/weapons/v_knife_bayonet_inspect.vvd +models/weapons/w_knife_bayonet_dropped.vvd +models/weapons/w_knife_bayonet.vvd +models/weapons/v_knife_bayonet.vvd +models/weapons/w_knife.vvd +models/weapons/v_knife.vvd +models/weapons/w_ied_dropped.vvd +models/weapons/w_ied.vvd +models/weapons/v_ied.vvd +models/weapons/w_c4_planted.vvd +models/weapons/v_bumpmine.vvd +models/weapons/v_rif_sg556_scopelensmask.vvd +models/weapons/w_rif_sg556_mag.vvd +models/weapons/w_rif_sg556_dropped.vvd +models/weapons/w_rif_sg556.vvd +models/weapons/v_rif_sg556.vvd +models/weapons/w_rif_m4a1_s_mag.vvd +models/weapons/w_rif_m4a1_s_icon.vvd +models/weapons/w_rif_m4a1_s_dropped.vvd +models/weapons/w_rif_m4a1_s.vvd +models/weapons/v_rif_m4a1_s.vvd +models/weapons/w_rif_m4a1_mag.vvd +models/weapons/w_rif_m4a1_dropped.vvd +models/weapons/w_rif_m4a1.vvd +models/weapons/v_rif_m4a1.vvd +models/weapons/w_rif_galilar_mag.vvd +models/weapons/w_rif_galilar_dropped.vvd +models/weapons/w_rif_galilar.vvd +models/weapons/v_rif_galilar.vvd +models/weapons/w_rif_famas_mag.vvd +models/weapons/w_rif_famas_dropped.vvd +models/weapons/w_rif_famas.vvd +models/weapons/v_rif_famas.vvd +models/weapons/v_rif_aug_scopelensmask.vvd +models/weapons/w_rif_aug_mag.vvd +models/weapons/w_rif_aug_dropped.vvd +models/weapons/w_rif_aug.vvd +models/weapons/v_rif_aug.vvd +models/weapons/w_rif_ak47_mag.vvd +models/weapons/w_rif_ak47_dropped.vvd +models/weapons/w_rif_ak47.vvd +models/weapons/v_rif_ak47.vvd +models/weapons/pedestal_workshop_greenscreen.vvd +models/weapons/pedestal_workshop_firstperson.vvd +models/weapons/pedestal_workshop.vvd +models/weapons/pedestal_trophy_panorama.vvd +models/weapons/pedestal_sticker_panorama.vvd +models/weapons/pedestal_sticker.vvd +models/weapons/pedestal_music_kits_panorama.vvd +models/weapons/pedestal_music_kits.vvd +models/weapons/pedestal_knives_panorama.vvd +models/weapons/pedestal_knives.vvd +models/weapons/pedestal_ground_shadow_plane.vvd +models/weapons/pedestal_gloves.vvd +models/weapons/pedestal_firstperson.vvd +models/weapons/pedestal_default.vvd +models/weapons/pedestal_badges_panorama.vvd +models/weapons/pedestal_badges_nocase.vvd +models/weapons/pedestal_badges.vvd +models/weapons/v_parachute.vvd +models/weapons/v_sonar_bomb.vvd +models/weapons/w_snowball.vvd +models/weapons/w_snip_ssg08_mag.vvd +models/weapons/w_snip_ssg08_dropped.vvd +models/weapons/w_snip_ssg08.vvd +models/weapons/v_snip_ssg08.vvd +models/weapons/w_snip_scar20_mag.vvd +models/weapons/w_snip_scar20_dropped.vvd +models/weapons/w_snip_scar20.vvd +models/weapons/v_snip_scar20.vvd +models/weapons/w_snip_g3sg1_mag.vvd +models/weapons/w_snip_g3sg1_dropped.vvd +models/weapons/w_snip_g3sg1.vvd +models/weapons/v_snip_g3sg1.vvd +models/weapons/w_snip_awp_mag.vvd +models/weapons/w_snip_awp_icon.vvd +models/weapons/w_snip_awp_dropped.vvd +models/weapons/w_snip_awp.vvd +models/weapons/v_snip_awp.vvd +models/weapons/w_smg_ump45_mag.vvd +models/weapons/w_smg_ump45_dropped.vvd +models/weapons/w_smg_ump45.vvd +models/weapons/v_smg_ump45.vvd +models/weapons/w_smg_p90_mag.vvd +models/weapons/w_smg_p90_dropped.vvd +models/weapons/w_smg_p90.vvd +models/weapons/v_smg_p90.vvd +models/weapons/w_smg_mp9_mag.vvd +models/weapons/w_smg_mp9_dropped.vvd +models/weapons/w_smg_mp9.vvd +models/weapons/v_smg_mp9.vvd +models/weapons/w_smg_mp7_mag.vvd +models/weapons/w_smg_mp7_dropped.vvd +models/weapons/w_smg_mp7.vvd +models/weapons/v_smg_mp7.vvd +models/weapons/w_smg_mp5sd_mag.vvd +models/weapons/w_smg_mp5sd_dropped.vvd +models/weapons/w_smg_mp5sd.vvd +models/weapons/v_smg_mp5sd.vvd +models/weapons/w_smg_mac10_nogrip.vvd +models/weapons/w_smg_mac10_mag.vvd +models/weapons/w_smg_mac10_dropped.vvd +models/weapons/w_smg_mac10.vvd +models/weapons/v_smg_mac10.vvd +models/weapons/w_smg_bizon_mag.vvd +models/weapons/w_smg_bizon_dropped.vvd +models/weapons/w_smg_bizon.vvd +models/weapons/v_smg_bizon.vvd models/weapons/w_pist_tec9_mag.vvd models/weapons/w_pist_tec9_dropped.vvd models/weapons/w_pist_tec9.vvd @@ -78214,6 +79183,74 @@ models/weapons/w_pist_223_mag.vvd models/weapons/w_pist_223_dropped.vvd models/weapons/w_pist_223.vvd models/weapons/v_pist_223.vvd +models/weapons/w_mach_negev_mag.vvd +models/weapons/w_mach_negev_dropped.vvd +models/weapons/w_mach_negev.vvd +models/weapons/v_mach_negev.vvd +models/weapons/w_mach_m249para.vvd +models/weapons/v_mach_m249para.vvd +models/weapons/w_mach_m249_mag.vvd +models/weapons/w_mach_m249_dropped.vvd +models/weapons/w_mach_m249.vvd +models/weapons/v_knife_widowmaker_inspect.vvd +models/weapons/w_knife_widowmaker_dropped.vvd +models/weapons/w_knife_widowmaker.vvd +models/weapons/v_knife_widowmaker.vvd +models/weapons/v_knife_ursus_inspect.vvd +models/weapons/w_knife_ursus_dropped.vvd +models/weapons/w_knife_ursus.vvd +models/weapons/v_knife_ursus.vvd +models/weapons/v_knife_tactical_inspect.vvd +models/weapons/w_knife_tactical_dropped.vvd +models/weapons/w_knife_tactical.vvd +models/weapons/v_knife_tactical.vvd +models/weapons/v_knife_survival_bowie_inspect.vvd +models/weapons/w_knife_survival_bowie_dropped.vvd +models/weapons/w_knife_survival_bowie.vvd +models/weapons/v_knife_survival_bowie.vvd +models/weapons/v_knife_stiletto_inspect.vvd +models/weapons/w_knife_stiletto_dropped.vvd +models/weapons/w_knife_stiletto.vvd +models/weapons/v_knife_stiletto.vvd +models/weapons/v_knife_push_inspect.vvd +models/weapons/w_knife_push_icon.vvd +models/weapons/w_knife_push_dropped.vvd +models/weapons/w_knife_push.vvd +models/weapons/v_knife_push.vvd +models/weapons/v_knife_m9_bay_inspect.vvd +models/weapons/w_knife_m9_bay_dropped.vvd +models/weapons/w_knife_m9_bay.vvd +models/weapons/v_knife_m9_bay.vvd +models/weapons/v_knife_karam_inspect.vvd +models/weapons/w_knife_karam_dropped.vvd +models/weapons/w_knife_karam.vvd +models/weapons/v_knife_karam.vvd +models/weapons/v_knife_gypsy_jackknife_inspect.vvd +models/weapons/w_knife_gypsy_jackknife_dropped.vvd +models/weapons/w_knife_gypsy_jackknife.vvd +models/weapons/v_knife_gypsy_jackknife.vvd +models/weapons/v_knife_gut_inspect.vvd +models/weapons/w_knife_gut_dropped.vvd +models/weapons/w_defuser_display.vvd +models/weapons/w_defuser.vvd +models/weapons/ct_arms_swat.vvd +models/weapons/ct_arms_st6.vvd +models/weapons/ct_arms_sas.vvd +models/weapons/ct_arms_idf.vvd +models/weapons/ct_arms_gsg9.vvd +models/weapons/ct_arms_gign.vvd +models/weapons/ct_arms_fbi.vvd +models/weapons/ct_arms.vvd +models/weapons/uid_xsmall_weaponpreview.vvd +models/weapons/uid_weaponpreview.vvd +models/weapons/uid_small_weaponpreview.vvd +models/weapons/uid_small.vvd +models/weapons/uid_create.vvd +models/weapons/uid.vvd +models/weapons/v_breachcharge.vvd +models/weapons/w_axe_dropped.vvd +models/weapons/w_axe.vvd +models/weapons/v_axe.vvd models/weapons/stattrack_weaponpreview.vvd models/weapons/stattrack_cut_workbench_xsmall.vvd models/weapons/stattrack_cut_workbench_small.vvd @@ -78233,13 +79270,20 @@ models/weapons/w_shot_xm1014.vvd models/weapons/v_shot_xm1014.vvd models/weapons/w_shot_sawedoff_mag.vvd models/weapons/w_shot_sawedoff_dropped.vvd -models/seagull.vvd -models/crow.vvd models/error.vvd models/brokenglass_piece.vvd +models/seagull.vvd +models/crow.vvd models/sticker_preview.vvd models/pigeon.vvd models/antlers/antlers.vvd +models/inventory_items/operation_8_silver.vvd +models/inventory_items/operation_8_platinum.vvd +models/inventory_items/operation_8_gold.vvd +models/inventory_items/operation_8_bronze.vvd +models/inventory_items/operation_7_silver.vvd +models/inventory_items/operation_7_gold.vvd +models/inventory_items/operation_7_bronze.vvd models/inventory_items/service_medal_2019_lvl6.vvd models/inventory_items/service_medal_2019_lvl5.vvd models/inventory_items/service_medal_2019_lvl4.vvd @@ -78266,25 +79310,6 @@ models/inventory_items/service_medal_2016_lvl3.vvd models/inventory_items/service_medal_2016_lvl2.vvd models/inventory_items/service_medal_2016_lvl1.vvd models/inventory_items/service_medal_2015_2.vvd -models/inventory_items/service_medal_2015.vvd -models/inventory_items/phoenix_gold_01.vvd -models/inventory_items/phoenix_bronze_01.vvd -models/inventory_items/pedestal_trophy.vvd -models/inventory_items/payback_silver_01.vvd -models/inventory_items/payback_gold_01.vvd -models/inventory_items/payback_bronze_01.vvd -models/inventory_items/operation_8_silver.vvd -models/inventory_items/operation_8_platinum.vvd -models/inventory_items/operation_8_gold.vvd -models/inventory_items/operation_8_bronze.vvd -models/inventory_items/operation_7_silver.vvd -models/inventory_items/operation_7_gold.vvd -models/inventory_items/operation_7_bronze.vvd -models/inventory_items/vanguard_silver.vvd -models/inventory_items/vanguard_gold.vvd -models/inventory_items/vanguard_bronze.vvd -models/inventory_items/trophy_majors_finalists.vvd -models/inventory_items/trophy_majors.vvd models/inventory_items/katowice_trophy_semifinalist.vvd models/inventory_items/katowice_trophy_quarterfinalist.vvd models/inventory_items/katowice_trophy_finalist.vvd @@ -78300,64 +79325,6 @@ models/inventory_items/katowice2015_trophy_champion.vvd models/inventory_items/kat_2015_pickem_silver.vvd models/inventory_items/kat_2015_pickem_gold.vvd models/inventory_items/kat_2015_pickem_bronze.vvd -models/inventory_items/maptoken_zoo.vvd -models/inventory_items/maptoken_workout.vvd -models/inventory_items/maptoken_tulip.vvd -models/inventory_items/maptoken_thunder.vvd -models/inventory_items/maptoken_subzero.vvd -models/inventory_items/maptoken_siege.vvd -models/inventory_items/maptoken_season.vvd -models/inventory_items/maptoken_seaside.vvd -models/inventory_items/maptoken_santorini.vvd -models/inventory_items/maptoken_rush.vvd -models/inventory_items/maptoken_ruins.vvd -models/inventory_items/maptoken_royal.vvd -models/inventory_items/maptoken_resort.vvd -models/inventory_items/maptoken_rails.vvd -models/inventory_items/maptoken_overgrown.vvd -models/inventory_items/maptoken_museum.vvd -models/inventory_items/maptoken_motel.vvd -models/inventory_items/maptoken_mist.vvd -models/inventory_items/maptoken_mikla.vvd -models/inventory_items/maptoken_marquis.vvd -models/inventory_items/maptoken_log.vvd -models/inventory_items/maptoken_library.vvd -models/inventory_items/maptoken_insertion.vvd -models/inventory_items/maptoken_gwalior.vvd -models/inventory_items/maptoken_favela.vvd -models/inventory_items/maptoken_facade.vvd -models/inventory_items/maptoken_empire.vvd -models/inventory_items/maptoken_downtown.vvd -models/inventory_items/maptoken_cruise.vvd -models/inventory_items/maptoken_coast.vvd -models/inventory_items/maptoken_chinatown.vvd -models/inventory_items/maptoken_castle.vvd -models/inventory_items/maptoken_cache.vvd -models/inventory_items/maptoken_blackgold.vvd -models/inventory_items/maptoken_biome.vvd -models/inventory_items/maptoken_bazaar.vvd -models/inventory_items/maptoken_backalley.vvd -models/inventory_items/maptoken_ali.vvd -models/inventory_items/maptoken_agency.vvd -models/inventory_items/maptoken_abbey.vvd -models/inventory_items/london_pickem_2018_silver.vvd -models/inventory_items/london_pickem_2018_gold.vvd -models/inventory_items/london_pickem_2018_bronze.vvd -models/inventory_items/krakow_pickem_2017_silver.vvd -models/inventory_items/krakow_pickem_2017_gold.vvd -models/inventory_items/krakow_pickem_2017_bronze.vvd -models/inventory_items/dreamhack_trophy_semifinalist.vvd -models/inventory_items/dreamhack_trophy_quarterfinalist.vvd -models/inventory_items/dreamhack_trophy_finalist.vvd -models/inventory_items/dreamhack_trophy_champion.vvd -models/inventory_items/dogtags.vvd -models/inventory_items/dhw_2014_semifinalist.vvd -models/inventory_items/dhw_2014_quarterfinalist.vvd -models/inventory_items/dhw_2014_pickem_silver.vvd -models/inventory_items/dhw_2014_pickem_gold.vvd -models/inventory_items/dhw_2014_pickem_bronze.vvd -models/inventory_items/dhw_2014_finalist.vvd -models/inventory_items/dhw_2014_champion.vvd models/inventory_items/cologne_prediction_silver.vvd models/inventory_items/cologne_prediction_plaque_silver.vvd models/inventory_items/cologne_prediction_plaque_gold.vvd @@ -78416,6 +79383,85 @@ models/inventory_items/cluj_pickem_2015_bronze.vvd models/inventory_items/cluj_fantasy_2015_silver.vvd models/inventory_items/cluj_fantasy_2015_gold.vvd models/inventory_items/cluj_fantasy_2015_bronze.vvd +models/inventory_items/service_medal_2015.vvd +models/inventory_items/phoenix_gold_01.vvd +models/inventory_items/phoenix_bronze_01.vvd +models/inventory_items/pedestal_trophy.vvd +models/inventory_items/payback_silver_01.vvd +models/inventory_items/payback_gold_01.vvd +models/inventory_items/payback_bronze_01.vvd +models/inventory_items/prime_badge.vvd +models/inventory_items/maptoken_zoo.vvd +models/inventory_items/maptoken_workout.vvd +models/inventory_items/maptoken_tulip.vvd +models/inventory_items/maptoken_thunder.vvd +models/inventory_items/maptoken_subzero.vvd +models/inventory_items/maptoken_siege.vvd +models/inventory_items/maptoken_season.vvd +models/inventory_items/maptoken_seaside.vvd +models/inventory_items/maptoken_santorini.vvd +models/inventory_items/maptoken_rush.vvd +models/inventory_items/maptoken_ruins.vvd +models/inventory_items/maptoken_ruby.vvd +models/inventory_items/maptoken_royal.vvd +models/inventory_items/maptoken_resort.vvd +models/inventory_items/maptoken_rails.vvd +models/inventory_items/maptoken_overgrown.vvd +models/inventory_items/maptoken_museum.vvd +models/inventory_items/maptoken_motel.vvd +models/inventory_items/maptoken_mist.vvd +models/inventory_items/maptoken_mikla.vvd +models/inventory_items/maptoken_marquis.vvd +models/inventory_items/maptoken_log.vvd +models/inventory_items/maptoken_library.vvd +models/inventory_items/maptoken_insertion.vvd +models/inventory_items/maptoken_gwalior.vvd +models/inventory_items/maptoken_favela.vvd +models/inventory_items/maptoken_facade.vvd +models/inventory_items/maptoken_empire.vvd +models/inventory_items/maptoken_downtown.vvd +models/inventory_items/maptoken_cruise.vvd +models/inventory_items/maptoken_coast.vvd +models/inventory_items/maptoken_chinatown.vvd +models/inventory_items/maptoken_castle.vvd +models/inventory_items/maptoken_cache.vvd +models/inventory_items/maptoken_blackgold.vvd +models/inventory_items/maptoken_biome.vvd +models/inventory_items/maptoken_bazaar.vvd +models/inventory_items/maptoken_backalley.vvd +models/inventory_items/maptoken_ali.vvd +models/inventory_items/maptoken_agency.vvd +models/inventory_items/maptoken_abbey.vvd +models/inventory_items/london_pickem_2018_silver.vvd +models/inventory_items/london_pickem_2018_gold.vvd +models/inventory_items/london_pickem_2018_bronze.vvd +models/inventory_items/krakow_pickem_2017_silver.vvd +models/inventory_items/krakow_pickem_2017_gold.vvd +models/inventory_items/krakow_pickem_2017_bronze.vvd +models/inventory_items/dreamhack_trophy_semifinalist.vvd +models/inventory_items/dreamhack_trophy_quarterfinalist.vvd +models/inventory_items/dreamhack_trophy_finalist.vvd +models/inventory_items/dreamhack_trophy_champion.vvd +models/inventory_items/dogtags.vvd +models/inventory_items/dhw_2014_semifinalist.vvd +models/inventory_items/dhw_2014_quarterfinalist.vvd +models/inventory_items/dhw_2014_pickem_silver.vvd +models/inventory_items/dhw_2014_pickem_gold.vvd +models/inventory_items/dhw_2014_pickem_bronze.vvd +models/inventory_items/dhw_2014_finalist.vvd +models/inventory_items/dhw_2014_champion.vvd +models/inventory_items/music_kit.vvd +models/inventory_items/mlg_pickem_2016_silver.vvd +models/inventory_items/mlg_pickem_2016_gold.vvd +models/inventory_items/mlg_pickem_2016_bronze.vvd +models/inventory_items/mlg_fantasy_2016_silver.vvd +models/inventory_items/mlg_fantasy_2016_gold.vvd +models/inventory_items/mlg_fantasy_2016_bronze.vvd +models/inventory_items/vanguard_silver.vvd +models/inventory_items/vanguard_gold.vvd +models/inventory_items/vanguard_bronze.vvd +models/inventory_items/trophy_majors_finalists.vvd +models/inventory_items/trophy_majors.vvd models/inventory_items/5_year_coin.vvd models/inventory_items/10_year_coin.vvd models/inventory_items/breakout_silver_01.vvd @@ -78433,20 +79479,139 @@ models/inventory_items/bloodhound_bronze.vvd models/inventory_items/atlanta_pickem_2017_silver.vvd models/inventory_items/atlanta_pickem_2017_gold.vvd models/inventory_items/atlanta_pickem_2017_bronze.vvd -models/inventory_items/prime_badge.vvd models/inventory_items/sticker_inspect.vvd -models/inventory_items/music_kit.vvd -models/inventory_items/mlg_pickem_2016_silver.vvd -models/inventory_items/mlg_pickem_2016_gold.vvd -models/inventory_items/mlg_pickem_2016_bronze.vvd -models/inventory_items/mlg_fantasy_2016_silver.vvd -models/inventory_items/mlg_fantasy_2016_gold.vvd -models/inventory_items/mlg_fantasy_2016_bronze.vvd models/inventory_items/cologne_trophy_semifinalist.vvd models/inventory_items/cologne_trophy_quarterfinalist.vvd models/inventory_items/cologne_trophy_finalist.vvd models/inventory_items/cologne_trophy_champion.vvd models/inventory_items/phoenix_silver_01.vvd +models/weapons/shield_gibs/shield_gib9.mdl +models/weapons/shield_gibs/shield_gib8.mdl +models/weapons/shield_gibs/shield_gib7.mdl +models/weapons/shield_gibs/shield_gib6.mdl +models/weapons/shield_gibs/shield_gib5.mdl +models/weapons/shield_gibs/shield_gib4.mdl +models/weapons/shield_gibs/shield_gib3.mdl +models/weapons/shield_gibs/shield_gib2.mdl +models/weapons/shield_gibs/shield_gib10.mdl +models/weapons/shield_gibs/shield_gib1.mdl +models/props/dust_massive/towers/guard_tower001_skybox.mdl +models/props/dust_massive/towers/guard_tower001.mdl +models/props/dust_massive/towers/broadcast_tower001.mdl +models/props/dust_massive/stairs/spiral_stairs_03.mdl +models/props/dust_massive/stairs/spiral_stairs_02.mdl +models/props/dust_massive/stairs/spiral_stairs_01.mdl +models/props/dust_massive/stairs/bunker_stairs_02.mdl +models/props/dust_massive/stairs/bunker_stairs_01.mdl +models/props/dust_massive/stairs/base_stairs_02.mdl +models/props/dust_massive/stairs/base_stairs_01.mdl +models/props/dust_massive/skydome_dust_massive.mdl +models/props/dust_massive/skybox/skydome_dust_massive.mdl +models/props/dust_massive/skybox/skydome_clouds_02.mdl +models/props/dust_massive/skybox/dust_massive_night.mdl +models/props/dust_massive/signs/sign_logo001b.mdl +models/props/dust_massive/signs/sign_logo001.mdl +models/props/dust_massive/scaffolding/roof_scaffolding_004.mdl +models/props/dust_massive/scaffolding/roof_scaffolding_003.mdl +models/props/dust_massive/scaffolding/roof_scaffolding_002.mdl +models/props/dust_massive/scaffolding/roof_scaffolding_001.mdl +models/props/dust_massive/roof/military_base_roof_01.mdl +models/props/dust_massive/rocks/underwater_rock001.mdl +models/props/dust_massive/rocks/cliff_wall008.mdl +models/props/dust_massive/rocks/cliff_wall007.mdl +models/props/dust_massive/rocks/cliff_wall006.mdl +models/props/dust_massive/rocks/cliff_wall005.mdl +models/props/dust_massive/rocks/cliff_wall004.mdl +models/props/dust_massive/rocks/cliff_wall003.mdl +models/props/dust_massive/rocks/cliff_wall002.mdl +models/props/dust_massive/rocks/cliff_wall001.mdl +models/props/dust_massive/rocks/cliff_rock007.mdl +models/props/dust_massive/rocks/cliff_rock006.mdl +models/props/dust_massive/rocks/cliff_rock005.mdl +models/props/dust_massive/rocks/cliff_rock004.mdl +models/props/dust_massive/rocks/cliff_rock003.mdl +models/props/dust_massive/rocks/cliff_rock002.mdl +models/props/dust_massive/rocks/cliff_rock001.mdl +models/props/dust_massive/oil_drum/oil_drum_pallet.mdl +models/props/dust_massive/front_loader/front_loader_glass.mdl +models/props/dust_massive/front_loader/front_loader_front.mdl +models/props/dust_massive/front_loader/front_loader_back.mdl +models/props/dust_massive/docks/radio_dome_platform001b.mdl +models/props/dust_massive/docks/radio_dome_platform001a.mdl +models/props/dust_massive/docks/radio_dome_dolphin001.mdl +models/props/dust_massive/docks/radio_dome001.mdl +models/props/dust_massive/docks/radar_dome_platform001c.mdl +models/props/dust_massive/docks/radar_dome_platform001b.mdl +models/props/dust_massive/docks/radar_dome_platform001a.mdl +models/props/dust_massive/docks/radar_dome_platform001_skybox_cheap.mdl +models/props/dust_massive/docks/radar_dome_platform001_skybox.mdl +models/props/dust_massive/docks/radar_dome_pipe_platform001.mdl +models/props/dust_massive/docks/radar_dome_pipe001f.mdl +models/props/dust_massive/docks/radar_dome_pipe001e.mdl +models/props/dust_massive/docks/radar_dome_pipe001d.mdl +models/props/dust_massive/docks/radar_dome_pipe001c.mdl +models/props/dust_massive/docks/radar_dome_pipe001b.mdl +models/props/dust_massive/docks/radar_dome_pipe001.mdl +models/props/dust_massive/docks/radar_dome_dolphin001e.mdl +models/props/dust_massive/docks/radar_dome_dolphin001d.mdl +models/props/dust_massive/docks/radar_dome_dolphin001c.mdl +models/props/dust_massive/docks/radar_dome_dolphin001b.mdl +models/props/dust_massive/docks/radar_dome_dolphin001.mdl +models/props/dust_massive/docks/radar_dome001.mdl +models/props/dust_massive/docks/dock_stairs001d.mdl +models/props/dust_massive/docks/dock_stairs001c.mdl +models/props/dust_massive/docks/dock_stairs001b.mdl +models/props/dust_massive/docks/dock_stairs001.mdl +models/props/dust_massive/docks/dock_pylon_sign001.mdl +models/props/dust_massive/docks/dock_pylon_holder001.mdl +models/props/dust_massive/docks/dock_pylon001.mdl +models/props/dust_massive/docks/dock_plyon_holder001.mdl +models/props/dust_massive/docks/dock_plyon001.mdl +models/props/dust_massive/docks/dock_phyon_sign001.mdl +models/props/dust_massive/docks/dock_dolphin001.mdl +models/props/dust_massive/docks/dock_bumper001.mdl +models/props/dust_massive/docks/dock_bollard001.mdl +models/props/dust_massive/debris/debris_floor_02.mdl +models/props/dust_massive/debris/debris_floor_01.mdl +models/props/dust_massive/debris/debris_04.mdl +models/props/dust_massive/debris/debris_03.mdl +models/props/dust_massive/debris/debris_02.mdl +models/props/dust_massive/debris/debris_01.mdl +models/props/dust_massive/debris/broken_roof_005.mdl +models/props/dust_massive/debris/broken_roof_004.mdl +models/props/dust_massive/debris/broken_roof_003.mdl +models/props/dust_massive/debris/broken_roof_002.mdl +models/props/dust_massive/debris/broken_roof_001.mdl +models/props/dust_massive/dam/dam.mdl +models/props/dust_massive/cargo_container/cargo_container_square_paint.mdl +models/props/dust_massive/cargo_container/cargo_container_square_closed.mdl +models/props/dust_massive/cargo_container/cargo_container_square.mdl +models/props/dust_massive/buoy/buoy001.mdl +models/props/dust_massive/buildings/lighthouse_01.mdl +models/props/dust_massive/buildings/lighthouse01.mdl +models/props/dust_massive/bridges/metal_bridge_frame.mdl +models/props/dust_massive/bridges/bridge_pier.mdl +models/props/dust_massive/bridges/bridge_arch_02.mdl +models/props/dust_massive/bridges/bridge_arch_01.mdl +models/props/dust_massive/boats/row_boat002.mdl +models/props/dust_massive/boats/row_boat001.mdl +models/props/dust_massive/blimp/blimp_001skybox.mdl +models/props/dust_massive/blimp/blimp001.mdl +models/props/dust_massive/beachwaves_dust/beachwaves_dust_c.mdl +models/props/dust_massive/beachwaves_dust/beachwaves_dust_b.mdl +models/props/dust_massive/beachwaves_dust/beachwaves_dust_a.mdl +models/props/dust_massive/barge/crane_cockpit.mdl +models/props/dust_massive/barge/crane_arm.mdl +models/props/dust_massive/barge/barge.mdl +models/props/dust_massive/apc_wreck/apc_wreck.mdl +models/props/de_vertigo/construction_elevator/construction_elevator_support_2.mdl +models/props/de_vertigo/construction_elevator/construction_elevator_support.mdl +models/props/de_vertigo/construction_elevator/construction_elevator_car.mdl +models/props/de_train/hr_t/train_car_d/train_car_d_details.mdl +models/props/de_train/hr_t/train_car_d/train_car_d.mdl +models/props/de_vertigo/ibc/ibc_1_plastic.mdl +models/props/de_vertigo/ibc/ibc_1_metal.mdl +models/props/hr_vertigo/floor_grinder/floor_grinder.mdl models/props/hr_vertigo/vertigo_traffic_cone/traffic_cone.mdl models/props/hr_vertigo/vertigo_support_jack/support_jack.mdl models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_03.mdl @@ -78454,6 +79619,7 @@ models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp_02.mdl models/props/hr_vertigo/vertigo_scaffolding/vertigo_scaffolding_tarp.mdl models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_02.mdl models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_railing_01.mdl +models/props/hr_vertigo/vertigo_platform_railing/vertigo_platform_corner_railing.mdl models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_weight.mdl models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_shaft_01.mdl models/props/hr_vertigo/vertigo_elevator/vertigo_elevator_frame.mdl @@ -78470,6 +79636,9 @@ models/props/hr_vertigo/vertigo_elevator/elevator_beam_512.mdl models/props/hr_vertigo/vertigo_elevator/elevator_beam_256.mdl models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bags_02.mdl models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bags_01.mdl +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_03.mdl +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_02.mdl +models/props/hr_vertigo/vertigo_concrete_bags/vertigo_concrete_bag_single_01.mdl models/props/hr_vertigo/vertigo_cables/vertigo_cable_straight_96.mdl models/props/hr_vertigo/vertigo_cables/vertigo_cable_loop_96.mdl models/props/hr_vertigo/vertigo_cables/vertigo_cable_end_02.mdl @@ -78512,6 +79681,7 @@ models/props_survival/upgrades/upgrade_dz_helmet.mdl models/props_survival/upgrades/upgrade_dz_armor_helmet.mdl models/props_survival/upgrades/upgrade_dz_armor.mdl models/props_survival/upgrades/parachutepack.mdl +models/props_survival/upgrades/exojump.mdl models/props_survival/safe/safe_door.mdl models/props_survival/safe/safe.mdl models/props_survival/parachute/chute.mdl @@ -78522,6 +79692,7 @@ models/props_survival/jammer/jammer_gib03.mdl models/props_survival/jammer/jammer_gib02.mdl models/props_survival/jammer/jammer_gib01.mdl models/props_survival/jammer/jammer.mdl +models/props_survival/helicopter/blackhawk001.mdl models/props_survival/helicopter/blackhawk.mdl models/props_survival/dronegun/dronegun_gib8.mdl models/props_survival/dronegun/dronegun_gib7.mdl @@ -78532,23 +79703,17 @@ models/props_survival/dronegun/dronegun_gib3.mdl models/props_survival/dronegun/dronegun_gib2.mdl models/props_survival/dronegun/dronegun_gib1.mdl models/props_survival/dronegun/dronegun.mdl +models/props_survival/drone/drone_gib6.mdl +models/props_survival/drone/drone_gib5.mdl +models/props_survival/drone/drone_gib4.mdl +models/props_survival/drone/drone_gib3.mdl +models/props_survival/drone/drone_gib2.mdl +models/props_survival/drone/drone_gib1.mdl models/props_survival/drone/br_drone.mdl models/props_survival/crates/crate_ammobox.mdl models/props_survival/counter/counter_a.mdl models/props_survival/cash/prop_cash_stack.mdl models/props_survival/cash/dufflebag.mdl -models/props_survival/cases/case_explosive_gib011.mdl -models/props_survival/cases/case_explosive_gib010.mdl -models/props_survival/cases/case_explosive_gib009.mdl -models/props_survival/cases/case_explosive_gib008.mdl -models/props_survival/cases/case_explosive_gib007.mdl -models/props_survival/cases/case_explosive_gib006.mdl -models/props_survival/cases/case_explosive_gib005.mdl -models/props_survival/cases/case_explosive_gib004.mdl -models/props_survival/cases/case_explosive_gib003.mdl -models/props_survival/cases/case_explosive_gib002.mdl -models/props_survival/cases/case_explosive_gib001.mdl -models/props_survival/cases/case_explosive.mdl models/props_survival/cases/paradrop_chute.mdl models/props_survival/cases/case_tools_static.mdl models/props_survival/cases/case_tools_heavy_static.mdl @@ -78615,6 +79780,7 @@ models/props_survival/cases/case_tools_gib003.mdl models/props_survival/cases/case_tools_gib002.mdl models/props_survival/cases/case_tools_gib001.mdl models/props_survival/cases/case_tools.mdl +models/props_survival/cases/case_respawn.mdl models/props_survival/cases/case_random_drop_gib039.mdl models/props_survival/cases/case_random_drop_gib038.mdl models/props_survival/cases/case_random_drop_gib037.mdl @@ -78860,6 +80026,18 @@ models/props_survival/cases/case_explosive_gib015.mdl models/props_survival/cases/case_explosive_gib014.mdl models/props_survival/cases/case_explosive_gib013.mdl models/props_survival/cases/case_explosive_gib012.mdl +models/props_survival/cases/case_explosive_gib011.mdl +models/props_survival/cases/case_explosive_gib010.mdl +models/props_survival/cases/case_explosive_gib009.mdl +models/props_survival/cases/case_explosive_gib008.mdl +models/props_survival/cases/case_explosive_gib007.mdl +models/props_survival/cases/case_explosive_gib006.mdl +models/props_survival/cases/case_explosive_gib005.mdl +models/props_survival/cases/case_explosive_gib004.mdl +models/props_survival/cases/case_explosive_gib003.mdl +models/props_survival/cases/case_explosive_gib002.mdl +models/props_survival/cases/case_explosive_gib001.mdl +models/props_survival/cases/case_explosive.mdl models/props_survival/briefcase/briefcase.mdl models/props/hr_massive/wood_spool/wood_spool.mdl models/props/hr_massive/wood_planks/wood_plank_4_4_128.mdl @@ -79357,6 +80535,7 @@ models/inventory_items/scoreboard_logos/logo_t.mdl models/inventory_items/scoreboard_logos/logo_ct.mdl models/player/custom_player/uiplayer/animset_uiplayer.mdl models/props/de_nuke/hr_nuke/skylight_2/skylight_2.mdl +models/props/de_dust/hr_dust/dust_soccerball/soccer_goal.mdl models/props/de_dust/hr_dust/dust_soccerball/dust_soccer_ball001.mdl models/props/de_dust/hr_dust/wooden_structures/wooden_support_alley.mdl models/props/de_dust/hr_dust/wooden_structures/wooden_structure_1.mdl @@ -79374,16 +80553,6 @@ models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_kasbah3.mdl models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_kasbah2.mdl models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_kasbah1.mdl models/props/de_dust/hr_dust/s2_reference_geo/s2_reference_center.mdl -models/props/de_dust/hr_dust/foliage/short_grass_04.mdl -models/props/de_dust/hr_dust/foliage/short_grass_03.mdl -models/props/de_dust/hr_dust/foliage/short_grass_02.mdl -models/props/de_dust/hr_dust/foliage/short_grass_01.mdl -models/props/de_dust/hr_dust/foliage/sage_bush_03.mdl -models/props/de_dust/hr_dust/foliage/sage_bush_02.mdl -models/props/de_dust/hr_dust/foliage/sage_bush_01.mdl -models/props/de_dust/hr_dust/foliage/potted_plant_05.mdl -models/props/de_dust/hr_dust/foliage/potted_plant_04.mdl -models/props/de_dust/hr_dust/foliage/potted_plant_03.mdl models/props/de_dust/hr_dust/foliage/potted_plant_02.mdl models/props/de_dust/hr_dust/foliage/potted_plant_01a.mdl models/props/de_dust/hr_dust/foliage/potted_plant_01.mdl @@ -79409,6 +80578,8 @@ models/props/de_dust/hr_dust/foliage/olive_tree_skybox_03.mdl models/props/de_dust/hr_dust/foliage/olive_tree_skybox_02.mdl models/props/de_dust/hr_dust/foliage/olive_tree_skybox_01.mdl models/props/de_dust/hr_dust/foliage/olive_tree_card_01.mdl +models/props/de_dust/hr_dust/foliage/olive_tree_03b.mdl +models/props/de_dust/hr_dust/foliage/olive_tree_03.mdl models/props/de_dust/hr_dust/foliage/olive_tree_02.mdl models/props/de_dust/hr_dust/foliage/olive_tree_01b.mdl models/props/de_dust/hr_dust/foliage/olive_tree_01.mdl @@ -79426,6 +80597,7 @@ models/props/de_dust/hr_dust/foliage/fan_palm_02.mdl models/props/de_dust/hr_dust/foliage/fan_palm_01.mdl models/props/de_dust/hr_dust/foliage/dusty_weed_plant_02.mdl models/props/de_dust/hr_dust/foliage/dusty_weed_plant_01.mdl +models/props/de_dust/hr_dust/foliage/bushes_barberry_dust_01.mdl models/props/de_dust/hr_dust/foliage/bush_sumac_03.mdl models/props/de_dust/hr_dust/foliage/bush_sumac_02.mdl models/props/de_dust/hr_dust/foliage/bush_sumac_01.mdl @@ -79458,6 +80630,16 @@ models/props/de_dust/hr_dust/foliage/weed_grass_02.mdl models/props/de_dust/hr_dust/foliage/weed_grass_01a.mdl models/props/de_dust/hr_dust/foliage/weed_grass_01.mdl models/props/de_dust/hr_dust/foliage/tall_zebra_grass_01.mdl +models/props/de_dust/hr_dust/foliage/short_grass_04.mdl +models/props/de_dust/hr_dust/foliage/short_grass_03.mdl +models/props/de_dust/hr_dust/foliage/short_grass_02.mdl +models/props/de_dust/hr_dust/foliage/short_grass_01.mdl +models/props/de_dust/hr_dust/foliage/sage_bush_03.mdl +models/props/de_dust/hr_dust/foliage/sage_bush_02.mdl +models/props/de_dust/hr_dust/foliage/sage_bush_01.mdl +models/props/de_dust/hr_dust/foliage/potted_plant_05.mdl +models/props/de_dust/hr_dust/foliage/potted_plant_04.mdl +models/props/de_dust/hr_dust/foliage/potted_plant_03.mdl models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_stack_01.mdl models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_broken.mdl models/props/de_dust/hr_dust/dust_wood_pallet/dust_wood_pallet_01_small.mdl @@ -79558,16 +80740,20 @@ models/props/de_dust/hr_dust/dust_windows/dust_window_shutters_24x24_01_closed_l models/props/de_dust/hr_dust/dust_windows/dust_window_shutters_24x24_01_closed.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_quarter_round_112_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_02.mdl +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_01_complete.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x64_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x24_02.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_64x24_01.mdl +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_48x48_01_grill.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_02.mdl +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_01_complete.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x64_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x62_round_02.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_36x62_round_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x64_02.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x64_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_02.mdl +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_01_complete.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_wood_24x24_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_64x64_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_64x24_01.mdl @@ -79576,11 +80762,16 @@ models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_36x62_round_ models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_24x64_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_plaster_24x24_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x64_01.mdl +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x24_01_complete.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_64x24_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_56x90_01.mdl +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x64_01_complete.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x64_01.mdl +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x62_round_01_complete.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_36x62_round_01.mdl +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x64_01_complete.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x64_01.mdl +models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x24_01_complete.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_frame_concrete_24x24_01.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_bars_64x64_06.mdl models/props/de_dust/hr_dust/dust_windows/dust_window_bars_64x64_05.mdl @@ -79694,6 +80885,7 @@ models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass_opaque.mdl models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass_broken.mdl models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_glass.mdl models/props/de_dust/hr_dust/dust_vehicles/dust_taxi_body.mdl +models/props/de_dust/hr_dust/dust_vehicles/dust_taxi2_body.mdl models/props/de_dust/hr_dust/dust_vehicles/dust_limo_lowpoly.mdl models/props/de_dust/hr_dust/dust_vehicles/dust_hatchback_wheels.mdl models/props/de_dust/hr_dust/dust_vehicles/dust_hatchback_interior.mdl @@ -79757,6 +80949,7 @@ models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_64.mdl models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_32.mdl models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_256.mdl models/props/de_dust/hr_dust/dust_trims/dust_trim_decorative_01_128.mdl +models/props/de_dust/hr_dust/dust_trims/dust_stairs006_96.mdl models/props/de_dust/hr_dust/dust_trims/dust_stairs005_96.mdl models/props/de_dust/hr_dust/dust_trims/dust_stairs003b_256.mdl models/props/de_dust/hr_dust/dust_trims/dust_stairs003_64.mdl @@ -80029,6 +81222,60 @@ models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_bracket_01.mdl models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_03.mdl models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_02.mdl models/props/de_dust/hr_dust/dust_laundry_pole/dust_laundry_pole_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_14.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_13.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_12.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_11.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_10.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_09.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_08.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_07.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_06.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_05.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_04.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_03.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_03.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02_flush.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01_flush.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_right_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_left_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x64_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x32_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x256_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x128_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x64_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x32_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x256_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x128_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_board_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x64_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x32_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x256_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x128_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02_skybox.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01_skybox.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_l_tunnels_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_03.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_01.mdl models/props/de_dust/hr_dust/dust_kasbah/mudbrick_single_test.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_wood_wall_64_03.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_wood_wall_64_02.mdl @@ -80167,6 +81414,11 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_04.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_03.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_02.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_pile_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_end_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_end_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_03.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_02.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03_end_01.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_03.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_02.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_mudbrick_gap_01.mdl @@ -80178,6 +81430,7 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_loose_board_01.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_76_01.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_256_01.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ladder_128_01.mdl +models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_wedge_01.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_tall_end_01.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_tall_corner_01.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_tall_96_02.mdl @@ -80209,60 +81462,6 @@ models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_64_03.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_64_02.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_64_01.mdl models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_formwork_32_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_cluster_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_14.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_13.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_12.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_11.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_10.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_09.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_08.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_07.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_06.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_05.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_04.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_03.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_flat_stones_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_03.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02_flush.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01_flush.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_drain_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_right_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_left_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_end_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x64_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x32_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x256_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_18x128_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x64_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x32_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x256_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_boards_16x128_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_board_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x64_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x32_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x256_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_deco_a_18x128_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02_skybox.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01_skybox.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_crane_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_u_tunnels_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_l_tunnels_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_03.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_96_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_ceiling_192_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_frame_01.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_02.mdl -models/props/de_dust/hr_dust/dust_kasbah/dust_kasbah_block_lifter_01.mdl models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_lid.mdl models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_02.mdl models/props/de_dust/hr_dust/dust_grain_basket/dust_grain_basket_01.mdl @@ -80327,7 +81526,9 @@ models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_192x128_inset_01.mdl models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_surface_01.mdl models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_open_01.mdl models/props/de_dust/hr_dust/dust_doors/dust_rollupdoor_128x128_inset_01.mdl +models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_96x128_01_complete.mdl models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_96x128_01.mdl +models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_89x128_01_complete.mdl models/props/de_dust/hr_dust/dust_doors/dust_industrial_doorframe_89x128_01.mdl models/props/de_dust/hr_dust/dust_doors/dust_door_underpass_01.mdl models/props/de_dust/hr_dust/dust_doors/dust_door_transome_window_round_06.mdl @@ -80380,6 +81581,7 @@ models/props/de_dust/hr_dust/dust_doorframes/dust_doortransome_01.mdl models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_03.mdl models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_02.mdl models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_80x128_01.mdl +models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_56x106_03_complete.mdl models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_03.mdl models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_02.mdl models/props/de_dust/hr_dust/dust_doorframes/dust_doorframe_46x106_01.mdl @@ -80410,6 +81612,10 @@ models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_128_a_striped.mdl models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_128_a.mdl models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_1024_a_striped.mdl models/props/de_dust/hr_dust/dust_curbs_001/dust_curbs_001_1024_a.mdl +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_02.mdl +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_01.mdl +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_02.mdl +models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_01.mdl models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate_stack_02.mdl models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate_stack_01.mdl models/props/de_dust/hr_dust/dust_crates/dust_plastic_fruit_crate.mdl @@ -80452,10 +81658,6 @@ models/props/de_dust/hr_dust/dust_crates/dust_crate_style_01_32x16x64.mdl models/props/de_dust/hr_dust/dust_crates/dust_crate_style_01_32x16x32.mdl models/props/de_dust/hr_dust/dust_crates/dust_crate_assembly_100x100_01_tarp.mdl models/props/de_dust/hr_dust/dust_crates/dust_crate_assembly_100x100_01.mdl -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_02.mdl -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_stack_01.mdl -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_02.mdl -models/props/de_dust/hr_dust/dust_crates/dust_wooden_fruit_crate_01.mdl models/props/de_dust/hr_dust/dust_construction/dust_rebar_stack.mdl models/props/de_dust/hr_dust/dust_construction/dust_flexconduit_spool.mdl models/props/de_dust/hr_dust/dust_cloth_line/cloth_line_mount.mdl @@ -83026,6 +84228,31 @@ models/props/coop_cementplant/coop_ammo_stash/coop_ammo_stash_full.mdl models/props/coop_cementplant/coop_ammo_stash/coop_ammo_stash_empty.mdl models/coop/challenge_coin.mdl models/props/de_inferno/hr_i/clothes_a/clothes_b.mdl +models/player/custom_player/legacy/ctm_sas_variantb.mdl +models/player/custom_player/legacy/ctm_sas_varianta.mdl +models/player/custom_player/legacy/ctm_sas.mdl +models/player/custom_player/legacy/ctm_idf_variantf.mdl +models/player/custom_player/legacy/ctm_idf_variante.mdl +models/player/custom_player/legacy/ctm_idf_variantd.mdl +models/player/custom_player/legacy/ctm_idf_variantc.mdl +models/player/custom_player/legacy/ctm_idf_variantb.mdl +models/player/custom_player/legacy/ctm_idf.mdl +models/player/custom_player/legacy/ctm_heavy.mdl +models/player/custom_player/legacy/ctm_gsg9_variantd.mdl +models/player/custom_player/legacy/ctm_gsg9_variantc.mdl +models/player/custom_player/legacy/ctm_gsg9_variantb.mdl +models/player/custom_player/legacy/ctm_gsg9_varianta.mdl +models/player/custom_player/legacy/ctm_gsg9.mdl +models/player/custom_player/legacy/ctm_gign_variantd.mdl +models/player/custom_player/legacy/ctm_gign_variantc.mdl +models/player/custom_player/legacy/ctm_gign_variantb.mdl +models/player/custom_player/legacy/ctm_gign_varianta.mdl +models/player/custom_player/legacy/ctm_gign.mdl +models/player/custom_player/legacy/ctm_fbi_variantd.mdl +models/player/custom_player/legacy/ctm_fbi_variantc.mdl +models/player/custom_player/legacy/ctm_fbi_variantb.mdl +models/player/custom_player/legacy/ctm_fbi_varianta.mdl +models/player/custom_player/legacy/ctm_fbi.mdl models/player/custom_player/legacy/tm_separatist_variantd.mdl models/player/custom_player/legacy/tm_separatist_variantc.mdl models/player/custom_player/legacy/tm_separatist_variantb.mdl @@ -83078,31 +84305,6 @@ models/player/custom_player/legacy/ctm_st6.mdl models/player/custom_player/legacy/ctm_sas_variante.mdl models/player/custom_player/legacy/ctm_sas_variantd.mdl models/player/custom_player/legacy/ctm_sas_variantc.mdl -models/player/custom_player/legacy/ctm_sas_variantb.mdl -models/player/custom_player/legacy/ctm_sas_varianta.mdl -models/player/custom_player/legacy/ctm_sas.mdl -models/player/custom_player/legacy/ctm_idf_variantf.mdl -models/player/custom_player/legacy/ctm_idf_variante.mdl -models/player/custom_player/legacy/ctm_idf_variantd.mdl -models/player/custom_player/legacy/ctm_idf_variantc.mdl -models/player/custom_player/legacy/ctm_idf_variantb.mdl -models/player/custom_player/legacy/ctm_idf.mdl -models/player/custom_player/legacy/ctm_heavy.mdl -models/player/custom_player/legacy/ctm_gsg9_variantd.mdl -models/player/custom_player/legacy/ctm_gsg9_variantc.mdl -models/player/custom_player/legacy/ctm_gsg9_variantb.mdl -models/player/custom_player/legacy/ctm_gsg9_varianta.mdl -models/player/custom_player/legacy/ctm_gsg9.mdl -models/player/custom_player/legacy/ctm_gign_variantd.mdl -models/player/custom_player/legacy/ctm_gign_variantc.mdl -models/player/custom_player/legacy/ctm_gign_variantb.mdl -models/player/custom_player/legacy/ctm_gign_varianta.mdl -models/player/custom_player/legacy/ctm_gign.mdl -models/player/custom_player/legacy/ctm_fbi_variantd.mdl -models/player/custom_player/legacy/ctm_fbi_variantc.mdl -models/player/custom_player/legacy/ctm_fbi_variantb.mdl -models/player/custom_player/legacy/ctm_fbi_varianta.mdl -models/player/custom_player/legacy/ctm_fbi.mdl models/player/custom_player/animset_t.mdl models/player/custom_player/animset_ct.mdl models/player/custom_player/scaffold_t.mdl @@ -83308,9 +84510,9 @@ models/shells/shell_57.mdl models/shells/shell_556.mdl models/shells/shell_338mag.mdl models/shells/shell_12gauge.mdl -models/props_yard/playground_swingset02.mdl models/props_yard/playground_structure.mdl models/props_yard/playground_slide.mdl +models/props_yard/playground_swingset02.mdl models/props_windows/window_urban_sash_48_88_tframe.mdl models/props_windows/window_urban_sash_48_88_rounded.mdl models/props_windows/window_urban_sash_48_88_open.mdl @@ -84886,9 +86088,11 @@ models/props/de_vertigo/scaffolding_walkway_03.mdl models/props/de_vertigo/scaffolding_walkway_02.mdl models/props/de_vertigo/scaffolding_walkway_01.mdl models/props/de_vertigo/scaffolding_end_open.mdl +models/props/de_vertigo/scaffolding_end_b.mdl models/props/de_vertigo/scaffolding_end.mdl models/props/de_vertigo/scaffolding_building_edge_support.mdl models/props/de_vertigo/scaffolding_building_edge_guard.mdl +models/props/de_vertigo/scaffolding_building_edge_corner_02.mdl models/props/de_vertigo/scaffolding_building_edge_corner.mdl models/props/de_vertigo/scaffolding_building_edge.mdl models/props/de_vertigo/scaffolding_brace.mdl @@ -84964,6 +86168,7 @@ models/props/de_vertigo/insulation_scappiece_02.mdl models/props/de_vertigo/insulation_scappiece_01.mdl models/props/de_vertigo/ibeams_big01.mdl models/props/de_vertigo/ibeam_vertical_medium.mdl +models/props/de_vertigo/ibeam_vertical_large_high.mdl models/props/de_vertigo/ibeam_vertical_large.mdl models/props/de_vertigo/ibeam_stack.mdl models/props/de_vertigo/ibeam_plate_topbottom.mdl @@ -84982,6 +86187,7 @@ models/props/de_vertigo/ibeam_plate_bigbolt.mdl models/props/de_vertigo/ibeam_horizontal_small_02.mdl models/props/de_vertigo/ibeam_horizontal_small.mdl models/props/de_vertigo/ibeam_horizontal_large_hole.mdl +models/props/de_vertigo/ibeam_horizontal_large_high.mdl models/props/de_vertigo/ibeam_horizontal_large_04.mdl models/props/de_vertigo/ibeam_horizontal_large_03.mdl models/props/de_vertigo/ibeam_horizontal_large_02.mdl @@ -85025,6 +86231,7 @@ models/props/de_vertigo/flexconduit_bundle.mdl models/props/de_vertigo/fencerail_constructionnetting_02.mdl models/props/de_vertigo/fencerail_constructionnetting_01.mdl models/props/de_vertigo/fencerail_constructioncables_01.mdl +models/props/de_vertigo/fencerail_construction_netting_03.mdl models/props/de_vertigo/fencerail_construction2x4_break_base.mdl models/props/de_vertigo/fencepost_constructionmetal_01.mdl models/props/de_vertigo/elevator_top_shaft_e.mdl @@ -85597,121 +86804,6 @@ models/props/de_mill/de_mill_grinder_ramp_01.mdl models/props/de_mill/de_mill_grinder_cutter01_ramp.mdl models/props/de_mill/de_mill_grinder_cutter01.mdl models/props/de_mill/de_mill_cane_carrier01.mdl -models/props/de_inferno/wood_fence_end.mdl -models/props/de_inferno/wood_fence.mdl -models/props/de_inferno/wire_spool02_new.mdl -models/props/de_inferno/wire_spool01_new.mdl -models/props/de_inferno/wine_barrel_static.mdl -models/props/de_inferno/wall_lamp3.mdl -models/props/de_inferno/wall_lamp2.mdl -models/props/de_inferno/wall_lamp.mdl -models/props/de_inferno/wagon.mdl -models/props/de_inferno/tv_monitor01_static.mdl -models/props/de_inferno/tv_monitor01.mdl -models/props/de_inferno/tree_large.mdl -models/props/de_inferno/transportation_rack.mdl -models/props/de_inferno/tablecoffee_static.mdl -models/props/de_inferno/tableantique.mdl -models/props/de_inferno/stone_pillar_96_new.mdl -models/props/de_inferno/stone_pillar_94_new.mdl -models/props/de_inferno/stone_pillar_94.mdl -models/props/de_inferno/stone_pillar_86_new.mdl -models/props/de_inferno/stone_pillar_86.mdl -models/props/de_inferno/stone_pillar_77_new.mdl -models/props/de_inferno/stone_pillar_77.mdl -models/props/de_inferno/stone_pillar_73_new.mdl -models/props/de_inferno/stone_pillar_73.mdl -models/props/de_inferno/stone_pillar_108_new.mdl -models/props/de_inferno/stone_pillar_108.mdl -models/props/de_inferno/stone_buildingedge.mdl -models/props/de_inferno/stone_bench.mdl -models/props/de_inferno/splinter_damage_02.mdl -models/props/de_inferno/splinter_damage_01.mdl -models/props/de_inferno/spireb_new.mdl -models/props/de_inferno/spireb.mdl -models/props/de_inferno/shell_pallet.mdl -models/props/de_inferno/scaffolding.mdl -models/props/de_inferno/roofbits22.mdl -models/props/de_inferno/roofbits21.mdl -models/props/de_inferno/roofbits20.mdl -models/props/de_inferno/roofbits19.mdl -models/props/de_inferno/roofbits18.mdl -models/props/de_inferno/roofbits17.mdl -models/props/de_inferno/roofbits16.mdl -models/props/de_inferno/roofbits15.mdl -models/props/de_inferno/roofbits14.mdl -models/props/de_inferno/roofbits13.mdl -models/props/de_inferno/roofbits12.mdl -models/props/de_inferno/roofbits10.mdl -models/props/de_inferno/roofbits09.mdl -models/props/de_inferno/roofbits08.mdl -models/props/de_inferno/roofbits07.mdl -models/props/de_inferno/roofbits06.mdl -models/props/de_inferno/roofbits05.mdl -models/props/de_inferno/roofbits04.mdl -models/props/de_inferno/roofbits03.mdl -models/props/de_inferno/roofbits02.mdl -models/props/de_inferno/roofbits01.mdl -models/props/de_inferno/roof01a.mdl -models/props/de_inferno/railingspikedgate.mdl -models/props/de_inferno/railingspiked.mdl -models/props/de_inferno/railingbombsite_sparse.mdl -models/props/de_inferno/railingbombsite.mdl -models/props/de_inferno/railingbalcony.mdl -models/props/de_inferno/railing_longhall.mdl -models/props/de_inferno/railing_gate.mdl -models/props/de_inferno/railing_ctspawn_02_sparse.mdl -models/props/de_inferno/railing_ctspawn_02.mdl -models/props/de_inferno/railing_ctspawn.mdl -models/props/de_inferno/railing_bridge.mdl -models/props/de_inferno/railing_bombsite02_sparse.mdl -models/props/de_inferno/railing_bombsite02.mdl -models/props/de_inferno/railing_backentrance.mdl -models/props/de_inferno/railing05_decline168_576.mdl -models/props/de_inferno/railing04long.mdl -models/props/de_inferno/railing03b.mdl -models/props/de_inferno/railing03_corner.mdl -models/props/de_inferno/railing03.mdl -models/props/de_inferno/railing01.mdl -models/props/de_inferno/radiator01a.mdl -models/props/de_inferno/potted_plant3_simple.mdl -models/props/de_inferno/potted_plant3_p1.mdl -models/props/de_inferno/potted_plant2_simple.mdl -models/props/de_inferno/potted_plant2_p1.mdl -models/props/de_inferno/potted_plant1_simple.mdl -models/props/de_inferno/potted_plant1_p1.mdl -models/props/de_inferno/pot_big.mdl -models/props/de_inferno/plasterinfwndwg_inside.mdl -models/props/de_inferno/plasterinfwndwg.mdl -models/props/de_inferno/plasterinfwndwe.mdl -models/props/de_inferno/plaster_buildingedge.mdl -models/props/de_inferno/plant01_p4.mdl -models/props/de_inferno/plant01_p3.mdl -models/props/de_inferno/plant01_p2.mdl -models/props/de_inferno/pillard.mdl -models/props/de_inferno/pillarc.mdl -models/props/de_inferno/picture3_static.mdl -models/props/de_inferno/picture2_static.mdl -models/props/de_inferno/picture1_static.mdl -models/props/de_inferno/monument_new.mdl -models/props/de_inferno/monument.mdl -models/props/de_inferno/logpile_new.mdl -models/props/de_inferno/logpile_cloth.mdl -models/props/de_inferno/logpile.mdl -models/props/de_inferno/light_streetlight_new.mdl -models/props/de_inferno/light_streetlight.mdl -models/props/de_inferno/light_fixture.mdl -models/props/de_inferno/lattice.mdl -models/props/de_inferno/largebush05.mdl -models/props/de_inferno/largebush04.mdl -models/props/de_inferno/largebush03.mdl -models/props/de_inferno/infsteps01.mdl -models/props/de_inferno/inferno_tower01.mdl -models/props/de_inferno/inferno_fence_02.mdl -models/props/de_inferno/inferno_fence_01.mdl -models/props/de_inferno/inferno_church_entrance.mdl -models/props/de_inferno/infarchc_new.mdl -models/props/de_inferno/infarchc.mdl models/props/de_inferno/de_inferno_well.mdl models/props/de_inferno/de_inferno_boulder_02.mdl models/props/de_inferno/de_inferno_boulder_01.mdl @@ -85777,6 +86869,121 @@ models/props/de_inferno/arch_stones03_new.mdl models/props/de_inferno/arch_stones03.mdl models/props/de_inferno/arch_stones02_new.mdl models/props/de_inferno/arch_stones02.mdl +models/props/de_inferno/wood_fence_end.mdl +models/props/de_inferno/wood_fence.mdl +models/props/de_inferno/wire_spool02_new.mdl +models/props/de_inferno/wire_spool01_new.mdl +models/props/de_inferno/wine_barrel_static.mdl +models/props/de_inferno/wall_lamp3.mdl +models/props/de_inferno/wall_lamp2.mdl +models/props/de_inferno/wall_lamp.mdl +models/props/de_inferno/wagon.mdl +models/props/de_inferno/tv_monitor01_static.mdl +models/props/de_inferno/tv_monitor01.mdl +models/props/de_inferno/tree_large.mdl +models/props/de_inferno/transportation_rack.mdl +models/props/de_inferno/tablecoffee_static.mdl +models/props/de_inferno/tableantique.mdl +models/props/de_inferno/stone_pillar_96_new.mdl +models/props/de_inferno/stone_pillar_94_new.mdl +models/props/de_inferno/stone_pillar_94.mdl +models/props/de_inferno/stone_pillar_86_new.mdl +models/props/de_inferno/stone_pillar_86.mdl +models/props/de_inferno/stone_pillar_77_new.mdl +models/props/de_inferno/stone_pillar_77.mdl +models/props/de_inferno/stone_pillar_73_new.mdl +models/props/de_inferno/stone_pillar_73.mdl +models/props/de_inferno/stone_pillar_108_new.mdl +models/props/de_inferno/stone_pillar_108.mdl +models/props/de_inferno/stone_buildingedge.mdl +models/props/de_inferno/stone_bench.mdl +models/props/de_inferno/splinter_damage_02.mdl +models/props/de_inferno/splinter_damage_01.mdl +models/props/de_inferno/spireb_new.mdl +models/props/de_inferno/spireb.mdl +models/props/de_inferno/shell_pallet.mdl +models/props/de_inferno/scaffolding.mdl +models/props/de_inferno/roofbits22.mdl +models/props/de_inferno/roofbits21.mdl +models/props/de_inferno/roofbits20.mdl +models/props/de_inferno/roofbits19.mdl +models/props/de_inferno/roofbits18.mdl +models/props/de_inferno/roofbits17.mdl +models/props/de_inferno/roofbits16.mdl +models/props/de_inferno/roofbits15.mdl +models/props/de_inferno/roofbits14.mdl +models/props/de_inferno/roofbits13.mdl +models/props/de_inferno/roofbits12.mdl +models/props/de_inferno/roofbits10.mdl +models/props/de_inferno/roofbits09.mdl +models/props/de_inferno/roofbits08.mdl +models/props/de_inferno/roofbits07.mdl +models/props/de_inferno/roofbits06.mdl +models/props/de_inferno/roofbits05.mdl +models/props/de_inferno/roofbits04.mdl +models/props/de_inferno/roofbits03.mdl +models/props/de_inferno/roofbits02.mdl +models/props/de_inferno/roofbits01.mdl +models/props/de_inferno/roof01a.mdl +models/props/de_inferno/railingspikedgate.mdl +models/props/de_inferno/railingspiked.mdl +models/props/de_inferno/railingbombsite_sparse.mdl +models/props/de_inferno/railingbombsite.mdl +models/props/de_inferno/railingbalcony.mdl +models/props/de_inferno/railing_longhall.mdl +models/props/de_inferno/railing_gate.mdl +models/props/de_inferno/railing_ctspawn_02_sparse.mdl +models/props/de_inferno/railing_ctspawn_02.mdl +models/props/de_inferno/railing_ctspawn.mdl +models/props/de_inferno/railing_bridge.mdl +models/props/de_inferno/railing_bombsite02_sparse.mdl +models/props/de_inferno/railing_bombsite02.mdl +models/props/de_inferno/railing_backentrance.mdl +models/props/de_inferno/railing05_decline168_576.mdl +models/props/de_inferno/railing04long.mdl +models/props/de_inferno/railing03b.mdl +models/props/de_inferno/railing03_corner.mdl +models/props/de_inferno/railing03.mdl +models/props/de_inferno/railing01.mdl +models/props/de_inferno/radiator01a.mdl +models/props/de_inferno/potted_plant3_simple.mdl +models/props/de_inferno/potted_plant3_p1.mdl +models/props/de_inferno/potted_plant2_simple.mdl +models/props/de_inferno/potted_plant2_p1.mdl +models/props/de_inferno/potted_plant1_simple.mdl +models/props/de_inferno/potted_plant1_p1.mdl +models/props/de_inferno/pot_big.mdl +models/props/de_inferno/plasterinfwndwg_inside.mdl +models/props/de_inferno/plasterinfwndwg.mdl +models/props/de_inferno/plasterinfwndwe.mdl +models/props/de_inferno/plaster_buildingedge.mdl +models/props/de_inferno/plant01_p4.mdl +models/props/de_inferno/plant01_p3.mdl +models/props/de_inferno/plant01_p2.mdl +models/props/de_inferno/pillard.mdl +models/props/de_inferno/pillarc.mdl +models/props/de_inferno/picture3_static.mdl +models/props/de_inferno/picture2_static.mdl +models/props/de_inferno/picture1_static.mdl +models/props/de_inferno/monument_new.mdl +models/props/de_inferno/monument.mdl +models/props/de_inferno/logpile_new.mdl +models/props/de_inferno/logpile_cloth.mdl +models/props/de_inferno/logpile.mdl +models/props/de_inferno/light_streetlight_new.mdl +models/props/de_inferno/light_streetlight.mdl +models/props/de_inferno/light_fixture.mdl +models/props/de_inferno/lattice.mdl +models/props/de_inferno/largebush05.mdl +models/props/de_inferno/largebush04.mdl +models/props/de_inferno/largebush03.mdl +models/props/de_inferno/infsteps01.mdl +models/props/de_inferno/inferno_tower01.mdl +models/props/de_inferno/inferno_fence_02.mdl +models/props/de_inferno/inferno_fence_01.mdl +models/props/de_inferno/inferno_church_entrance.mdl +models/props/de_inferno/infarchc_new.mdl +models/props/de_inferno/infarchc.mdl models/props/de_inferno/head_sculpture.mdl models/props/de_inferno/hazard_ribbon3.mdl models/props/de_inferno/hazard_ribbon2.mdl @@ -85867,6 +87074,61 @@ models/props/de_dust/objects/dust_walltop_180_sm.mdl models/props/de_dust/objects/dust_walltop_132_xsm_cap.mdl models/props/de_dust/objects/dust_walltop_128_sm.mdl models/props/de_dust/objects/dust_walltop_128.mdl +models/props/de_dust/window_palace_interior.mdl +models/props/de_dust/wagon.mdl +models/props/de_dust/technical01.mdl +models/props/de_dust/stoneblocks48.mdl +models/props/de_dust/stoneblock01b.mdl +models/props/de_dust/stoneblock01a.mdl +models/props/de_dust/skybox_dust_hotel03.mdl +models/props/de_dust/skybox_dust_hotel02.mdl +models/props/de_dust/skybox_dust_hotel01.mdl +models/props/de_dust/sign_street01.mdl +models/props/de_dust/sign_stop.mdl +models/props/de_dust/sign_shop04.mdl +models/props/de_dust/sign_shop03.mdl +models/props/de_dust/sign_shop02.mdl +models/props/de_dust/sign_shop01.mdl +models/props/de_dust/sign_mechanic01.mdl +models/props/de_dust/rug06.mdl +models/props/de_dust/rug05.mdl +models/props/de_dust/rug04a.mdl +models/props/de_dust/rug04.mdl +models/props/de_dust/rug03c.mdl +models/props/de_dust/rug03a.mdl +models/props/de_dust/rug03.mdl +models/props/de_dust/rug02a.mdl +models/props/de_dust/rug02.mdl +models/props/de_dust/rug01a.mdl +models/props/de_dust/rebar_wall06.mdl +models/props/de_dust/rebar_wall04.mdl +models/props/de_dust/rebar_wall03.mdl +models/props/de_dust/rebar_wall02.mdl +models/props/de_dust/rebar_wall01.mdl +models/props/de_dust/rebar_column06.mdl +models/props/de_dust/rebar_column03.mdl +models/props/de_dust/rebar_column02.mdl +models/props/de_dust/rebar_arch.mdl +models/props/de_dust/pillarwall.mdl +models/props/de_dust/pillarlargedometopshortskybox.mdl +models/props/de_dust/pillarlargedometopshort.mdl +models/props/de_dust/pillarlargedometop.mdl +models/props/de_dust/pillarinteriortile.mdl +models/props/de_dust/pillardometopshorter.mdl +models/props/de_dust/pallet02.mdl +models/props/de_dust/pallet01.mdl +models/props/de_dust/palaceteethsingleskybox.mdl +models/props/de_dust/palaceteethsingle.mdl +models/props/de_dust/palaceteethgroupskybox.mdl +models/props/de_dust/palaceteethgroup.mdl +models/props/de_dust/palacemeddomeskybox.mdl +models/props/de_dust/palacemeddome166.mdl +models/props/de_dust/palacemeddome.mdl +models/props/de_dust/palaceinteriordome.mdl +models/props/de_dust/palaceinteriorarches.mdl +models/props/de_dust/palace_bigdomeskybox.mdl +models/props/de_dust/palace_bigdome.mdl +models/props/de_dust/mosquetop02.mdl models/props/de_dust/grainbasket01c_static.mdl models/props/de_dust/grainbasket01c_gib2.mdl models/props/de_dust/grainbasket01c_gib1.mdl @@ -85935,61 +87197,6 @@ models/props/de_dust/awning01.mdl models/props/de_dust/archwayhallmed.mdl models/props/de_dust/archwayhalllarge.mdl models/props/de_dust/archhalllargewide.mdl -models/props/de_dust/window_palace_interior.mdl -models/props/de_dust/wagon.mdl -models/props/de_dust/technical01.mdl -models/props/de_dust/stoneblocks48.mdl -models/props/de_dust/stoneblock01b.mdl -models/props/de_dust/stoneblock01a.mdl -models/props/de_dust/skybox_dust_hotel03.mdl -models/props/de_dust/skybox_dust_hotel02.mdl -models/props/de_dust/skybox_dust_hotel01.mdl -models/props/de_dust/sign_street01.mdl -models/props/de_dust/sign_stop.mdl -models/props/de_dust/sign_shop04.mdl -models/props/de_dust/sign_shop03.mdl -models/props/de_dust/sign_shop02.mdl -models/props/de_dust/sign_shop01.mdl -models/props/de_dust/sign_mechanic01.mdl -models/props/de_dust/rug06.mdl -models/props/de_dust/rug05.mdl -models/props/de_dust/rug04a.mdl -models/props/de_dust/rug04.mdl -models/props/de_dust/rug03c.mdl -models/props/de_dust/rug03a.mdl -models/props/de_dust/rug03.mdl -models/props/de_dust/rug02a.mdl -models/props/de_dust/rug02.mdl -models/props/de_dust/rug01a.mdl -models/props/de_dust/rebar_wall06.mdl -models/props/de_dust/rebar_wall04.mdl -models/props/de_dust/rebar_wall03.mdl -models/props/de_dust/rebar_wall02.mdl -models/props/de_dust/rebar_wall01.mdl -models/props/de_dust/rebar_column06.mdl -models/props/de_dust/rebar_column03.mdl -models/props/de_dust/rebar_column02.mdl -models/props/de_dust/rebar_arch.mdl -models/props/de_dust/pillarwall.mdl -models/props/de_dust/pillarlargedometopshortskybox.mdl -models/props/de_dust/pillarlargedometopshort.mdl -models/props/de_dust/pillarlargedometop.mdl -models/props/de_dust/pillarinteriortile.mdl -models/props/de_dust/pillardometopshorter.mdl -models/props/de_dust/pallet02.mdl -models/props/de_dust/pallet01.mdl -models/props/de_dust/palaceteethsingleskybox.mdl -models/props/de_dust/palaceteethsingle.mdl -models/props/de_dust/palaceteethgroupskybox.mdl -models/props/de_dust/palaceteethgroup.mdl -models/props/de_dust/palacemeddomeskybox.mdl -models/props/de_dust/palacemeddome166.mdl -models/props/de_dust/palacemeddome.mdl -models/props/de_dust/palaceinteriordome.mdl -models/props/de_dust/palaceinteriorarches.mdl -models/props/de_dust/palace_bigdomeskybox.mdl -models/props/de_dust/palace_bigdome.mdl -models/props/de_dust/mosquetop02.mdl models/props/de_depot/flatbed_rocket.mdl models/props/de_cbble/window_d/window_d_glow.mdl models/props/de_cbble/window_d/window_d.mdl @@ -86774,6 +87981,7 @@ models/props/crates/csgo_drop_crate_armsdeal1.mdl models/inventory_items/music_kits/music_kit_valve_01.mdl models/inventory_items/music_kits/music_kit_twinatlantic_01.mdl models/inventory_items/music_kits/music_kit_troelsfolmann_01.mdl +models/inventory_items/music_kits/music_kit_theverkkars_01.mdl models/inventory_items/music_kits/music_kit_skog_03.mdl models/inventory_items/music_kits/music_kit_skog_02.mdl models/inventory_items/music_kits/music_kit_skog_01.mdl @@ -86811,13 +88019,13 @@ models/inventory_items/music_kits/music_kit_austinwintory_01.mdl models/humans/male_shared.mdl models/humans/male_postures.mdl models/humans/male_gestures.mdl +models/hostage/hostage_carry.mdl +models/hostage/hostage_animations.mdl +models/hostage/hostage.mdl models/hostage/v_hostage_arm.mdl models/hostage/hostage_variantc.mdl models/hostage/hostage_variantb.mdl models/hostage/hostage_varianta.mdl -models/hostage/hostage_carry.mdl -models/hostage/hostage_animations.mdl -models/hostage/hostage.mdl models/player/holiday/santahat.mdl models/player/holiday/facemasks/porcelain_doll.mdl models/player/holiday/facemasks/facemask_zombie_fortune_plastic.mdl @@ -86879,13 +88087,6 @@ models/gibs/furniture_gibs/furnituretable001a_chunk02.mdl models/gibs/furniture_gibs/furnituretable001a_chunk01.mdl models/ghost/ghost.mdl models/extras/info_speech.mdl -models/editor/cone_helper.mdl -models/editor/climb_node.mdl -models/editor/camera.mdl -models/editor/axis_helper_thick.mdl -models/editor/axis_helper.mdl -models/editor/air_node_hint.mdl -models/editor/air_node.mdl models/editor/spot_cone.mdl models/editor/spot.mdl models/editor/scriptedsequence.mdl @@ -86894,6 +88095,13 @@ models/editor/overlay_helper.mdl models/editor/node_hint.mdl models/editor/ground_node_hint.mdl models/editor/ground_node.mdl +models/editor/cone_helper.mdl +models/editor/climb_node.mdl +models/editor/camera.mdl +models/editor/axis_helper_thick.mdl +models/editor/axis_helper.mdl +models/editor/air_node_hint.mdl +models/editor/air_node.mdl models/destruction_tanker/pre_destruction_tanker_trailer.mdl models/destruction_tanker/destruction_tanker_rear.mdl models/destruction_tanker/destruction_tanker_front.mdl @@ -86911,15 +88119,6 @@ models/de_alleyway/tanker_alleyway_layout.mdl models/de_alleyway/subway_stairs_rail.mdl models/de_alleyway/street_basketball_hoop.mdl models/de_alleyway/skybox_water_treatment_facility.mdl -models/player/zombie_ghost.mdl -models/player/zombie.mdl -models/player/tm_separatist_variantd.mdl -models/player/tm_separatist_variantc.mdl -models/player/tm_separatist_variantb.mdl -models/player/tm_separatist_varianta.mdl -models/player/ct_animations.mdl -models/player/tm_anarchist.mdl -models/player/t_animations.mdl models/player/ctm_swat_variantd.mdl models/player/ctm_swat_variantc.mdl models/player/ctm_swat_variantb.mdl @@ -86961,6 +88160,15 @@ models/player/ctm_fbi_variantc.mdl models/player/ctm_fbi_variantb.mdl models/player/ctm_fbi_varianta.mdl models/player/ctm_fbi.mdl +models/player/tm_anarchist.mdl +models/player/t_animations.mdl +models/player/ct_animations.mdl +models/player/zombie_ghost.mdl +models/player/zombie.mdl +models/player/tm_separatist_variantd.mdl +models/player/tm_separatist_variantc.mdl +models/player/tm_separatist_variantb.mdl +models/player/tm_separatist_varianta.mdl models/player/tm_separatist.mdl models/player/tm_professional_var4.mdl models/player/tm_professional_var3.mdl @@ -87022,6 +88230,73 @@ models/characters/hostage_04.mdl models/characters/hostage_03.mdl models/characters/hostage_02.mdl models/characters/hostage_01.mdl +models/weapons/v_ct_knife_anim.mdl +models/weapons/v_healthshot.mdl +models/weapons/w_hammer_dropped.mdl +models/weapons/w_hammer.mdl +models/weapons/v_hammer.mdl +models/weapons/v_fists.mdl +models/weapons/w_eq_taser.mdl +models/weapons/v_eq_taser.mdl +models/weapons/w_eq_tablet_dropped.mdl +models/weapons/w_eq_tablet.mdl +models/weapons/w_eq_snowball_dropped.mdl +models/weapons/w_eq_snowball.mdl +models/weapons/v_eq_snowball.mdl +models/weapons/w_eq_smokegrenade_thrown.mdl +models/weapons/w_eq_smokegrenade_dropped.mdl +models/weapons/w_eq_smokegrenade.mdl +models/weapons/v_eq_smokegrenade.mdl +models/weapons/w_eq_shield_back.mdl +models/weapons/w_eq_shield.mdl +models/weapons/w_eq_sensorgrenade_thrown.mdl +models/weapons/w_eq_sensorgrenade_dropped.mdl +models/weapons/w_eq_sensorgrenade.mdl +models/weapons/w_eq_multimeter.mdl +models/weapons/w_eq_molotov_thrown.mdl +models/weapons/w_eq_molotov_dropped.mdl +models/weapons/w_eq_molotov.mdl +models/weapons/v_eq_molotov.mdl +models/weapons/w_eq_incendiarygrenade_thrown.mdl +models/weapons/w_eq_incendiarygrenade_dropped.mdl +models/weapons/w_eq_incendiarygrenade.mdl +models/weapons/v_eq_incendiarygrenade.mdl +models/weapons/w_eq_helmet.mdl +models/weapons/w_eq_healthshot_dropped.mdl +models/weapons/w_eq_healthshot.mdl +models/weapons/w_eq_fraggrenade_thrown.mdl +models/weapons/w_eq_fraggrenade_dropped.mdl +models/weapons/w_eq_fraggrenade.mdl +models/weapons/v_eq_fraggrenade.mdl +models/weapons/w_eq_flashbang_thrown.mdl +models/weapons/w_eq_flashbang_dropped.mdl +models/weapons/w_eq_flashbang.mdl +models/weapons/v_eq_flashbang.mdl +models/weapons/w_eq_fists.mdl +models/weapons/w_eq_eholster_elite.mdl +models/weapons/w_eq_eholster.mdl +models/weapons/w_eq_decoy_thrown.mdl +models/weapons/w_eq_decoy_dropped.mdl +models/weapons/w_eq_decoy.mdl +models/weapons/v_eq_decoy.mdl +models/weapons/w_eq_charge_dropped.mdl +models/weapons/w_eq_charge.mdl +models/weapons/w_eq_bumpmine_dropped.mdl +models/weapons/w_eq_bumpmine.mdl +models/weapons/w_eq_assault_suit.mdl +models/weapons/w_eq_armor.mdl +models/weapons/w_muzzlefireshape.mdl +models/weapons/v_tablet.mdl +models/weapons/v_t_knife_anim.mdl +models/weapons/t_arms_workbench_leet.mdl +models/weapons/t_arms_separatist.mdl +models/weapons/t_arms_professional.mdl +models/weapons/t_arms_pirate.mdl +models/weapons/t_arms_phoenix.mdl +models/weapons/t_arms_leet.mdl +models/weapons/t_arms_balkan.mdl +models/weapons/t_arms_anarchist.mdl +models/weapons/t_arms.mdl models/weapons/w_shot_sawedoff.mdl models/weapons/v_shot_sawedoff.mdl models/weapons/w_shot_nova_mag.mdl @@ -87032,72 +88307,7 @@ models/weapons/w_shot_mag7_mag.mdl models/weapons/w_shot_mag7_dropped.mdl models/weapons/w_shot_mag7.mdl models/weapons/v_shot_mag7.mdl -models/weapons/pedestal_workshop_greenscreen.mdl -models/weapons/pedestal_workshop_firstperson.mdl -models/weapons/pedestal_workshop.mdl -models/weapons/pedestal_trophy_panorama.mdl -models/weapons/pedestal_sticker_panorama.mdl -models/weapons/pedestal_sticker.mdl -models/weapons/pedestal_music_kits_panorama.mdl -models/weapons/pedestal_music_kits.mdl -models/weapons/pedestal_knives_panorama.mdl -models/weapons/pedestal_knives.mdl -models/weapons/pedestal_ground_shadow_plane.mdl -models/weapons/pedestal_gloves.mdl -models/weapons/pedestal_firstperson.mdl -models/weapons/pedestal_default_temp_panorama.mdl -models/weapons/pedestal_default.mdl -models/weapons/pedestal_character_temp_panorama.mdl -models/weapons/pedestal_badges_panorama.mdl -models/weapons/pedestal_badges_nocase.mdl -models/weapons/pedestal_badges.mdl -models/weapons/v_parachute.mdl -models/weapons/w_muzzlefireshape.mdl -models/weapons/uid_xsmall_weaponpreview.mdl -models/weapons/uid_weaponpreview.mdl -models/weapons/uid_small_weaponpreview.mdl -models/weapons/uid_small.mdl -models/weapons/uid_create.mdl -models/weapons/uid.mdl -models/weapons/v_rif_sg556_scopelensmask.mdl -models/weapons/w_rif_sg556_mag.mdl -models/weapons/w_rif_sg556_dropped.mdl -models/weapons/w_rif_sg556.mdl -models/weapons/v_rif_sg556.mdl -models/weapons/w_rif_m4a1_s_mag.mdl -models/weapons/w_rif_m4a1_s_icon.mdl -models/weapons/w_rif_m4a1_s_dropped.mdl -models/weapons/w_rif_m4a1_s.mdl -models/weapons/v_rif_m4a1_s.mdl -models/weapons/w_rif_m4a1_mag.mdl -models/weapons/w_rif_m4a1_dropped.mdl -models/weapons/w_rif_m4a1.mdl -models/weapons/v_rif_m4a1.mdl -models/weapons/w_rif_galilar_mag.mdl -models/weapons/w_rif_galilar_dropped.mdl -models/weapons/w_rif_galilar.mdl -models/weapons/v_rif_galilar.mdl -models/weapons/w_rif_famas_mag.mdl -models/weapons/w_rif_famas_dropped.mdl -models/weapons/w_rif_famas.mdl -models/weapons/v_rif_famas.mdl -models/weapons/v_rif_aug_scopelensmask.mdl -models/weapons/w_rif_aug_mag.mdl -models/weapons/w_rif_aug_dropped.mdl -models/weapons/w_rif_aug.mdl -models/weapons/v_rif_aug.mdl -models/weapons/w_rif_ak47_mag.mdl -models/weapons/w_rif_ak47_dropped.mdl -models/weapons/w_rif_ak47.mdl -models/weapons/v_rif_ak47.mdl -models/weapons/ct_arms_swat.mdl -models/weapons/ct_arms_st6.mdl -models/weapons/ct_arms_sas.mdl -models/weapons/ct_arms_idf.mdl -models/weapons/ct_arms_gsg9.mdl -models/weapons/ct_arms_gign.mdl -models/weapons/ct_arms_fbi.mdl -models/weapons/ct_arms.mdl +models/weapons/v_shield.mdl models/weapons/w_knife_gut.mdl models/weapons/v_knife_gut.mdl models/weapons/w_knife_ghost.mdl @@ -87138,65 +88348,60 @@ models/weapons/v_knife.mdl models/weapons/w_ied_dropped.mdl models/weapons/w_ied.mdl models/weapons/v_ied.mdl -models/weapons/w_mach_negev_mag.mdl -models/weapons/w_mach_negev_dropped.mdl -models/weapons/w_mach_negev.mdl -models/weapons/v_mach_negev.mdl -models/weapons/w_mach_m249para.mdl -models/weapons/v_mach_m249para.mdl -models/weapons/w_mach_m249_mag.mdl -models/weapons/w_mach_m249_dropped.mdl -models/weapons/w_mach_m249.mdl -models/weapons/v_knife_widowmaker_inspect.mdl -models/weapons/w_knife_widowmaker_dropped.mdl -models/weapons/v_knife_widowmaker_anim.mdl -models/weapons/w_knife_widowmaker.mdl -models/weapons/v_knife_widowmaker.mdl -models/weapons/v_knife_ursus_inspect.mdl -models/weapons/w_knife_ursus_dropped.mdl -models/weapons/v_knife_ursus_anim.mdl -models/weapons/w_knife_ursus.mdl -models/weapons/v_knife_ursus.mdl -models/weapons/v_knife_tactical_inspect.mdl -models/weapons/w_knife_tactical_dropped.mdl -models/weapons/w_knife_tactical.mdl -models/weapons/v_knife_tactical.mdl -models/weapons/v_knife_survival_bowie_inspect.mdl -models/weapons/w_knife_survival_bowie_dropped.mdl -models/weapons/v_knife_survival_bowie_anim.mdl -models/weapons/w_knife_survival_bowie.mdl -models/weapons/v_knife_survival_bowie.mdl -models/weapons/v_knife_stiletto_inspect.mdl -models/weapons/w_knife_stiletto_dropped.mdl -models/weapons/v_knife_stiletto_anim.mdl -models/weapons/w_knife_stiletto.mdl -models/weapons/v_knife_stiletto.mdl -models/weapons/v_knife_push_inspect.mdl -models/weapons/w_knife_push_icon.mdl -models/weapons/w_knife_push_dropped.mdl -models/weapons/v_knife_push_anim.mdl -models/weapons/w_knife_push.mdl -models/weapons/v_knife_push.mdl -models/weapons/v_knife_m9_bay_inspect.mdl -models/weapons/w_knife_m9_bay_dropped.mdl -models/weapons/v_knife_m9_bay_anim.mdl -models/weapons/w_knife_m9_bay.mdl -models/weapons/v_knife_m9_bay.mdl -models/weapons/v_knife_karam_inspect.mdl -models/weapons/w_knife_karam_dropped.mdl -models/weapons/v_knife_karam_anim.mdl -models/weapons/w_knife_karam.mdl -models/weapons/v_knife_karam.mdl -models/weapons/v_knife_gypsy_jackknife_inspect.mdl -models/weapons/w_knife_gypsy_jackknife_dropped.mdl -models/weapons/v_knife_gypsy_jackknife_anim.mdl -models/weapons/w_knife_gypsy_jackknife.mdl -models/weapons/v_knife_gypsy_jackknife.mdl -models/weapons/v_knife_gut_inspect.mdl -models/weapons/w_knife_gut_dropped.mdl -models/weapons/v_knife_gut_anim.mdl -models/weapons/w_defuser_display.mdl -models/weapons/w_defuser.mdl +models/weapons/w_c4_planted.mdl +models/weapons/v_bumpmine.mdl +models/weapons/w_bullet.mdl +models/weapons/v_rif_sg556_scopelensmask.mdl +models/weapons/w_rif_sg556_mag.mdl +models/weapons/w_rif_sg556_dropped.mdl +models/weapons/w_rif_sg556.mdl +models/weapons/v_rif_sg556.mdl +models/weapons/w_rif_m4a1_s_mag.mdl +models/weapons/w_rif_m4a1_s_icon.mdl +models/weapons/w_rif_m4a1_s_dropped.mdl +models/weapons/w_rif_m4a1_s.mdl +models/weapons/v_rif_m4a1_s.mdl +models/weapons/w_rif_m4a1_mag.mdl +models/weapons/w_rif_m4a1_dropped.mdl +models/weapons/w_rif_m4a1.mdl +models/weapons/v_rif_m4a1.mdl +models/weapons/w_rif_galilar_mag.mdl +models/weapons/w_rif_galilar_dropped.mdl +models/weapons/w_rif_galilar.mdl +models/weapons/v_rif_galilar.mdl +models/weapons/w_rif_famas_mag.mdl +models/weapons/w_rif_famas_dropped.mdl +models/weapons/w_rif_famas.mdl +models/weapons/v_rif_famas.mdl +models/weapons/v_rif_aug_scopelensmask.mdl +models/weapons/w_rif_aug_mag.mdl +models/weapons/w_rif_aug_dropped.mdl +models/weapons/w_rif_aug.mdl +models/weapons/v_rif_aug.mdl +models/weapons/w_rif_ak47_mag.mdl +models/weapons/w_rif_ak47_dropped.mdl +models/weapons/w_rif_ak47.mdl +models/weapons/v_rif_ak47.mdl +models/weapons/pedestal_workshop_greenscreen.mdl +models/weapons/pedestal_workshop_firstperson.mdl +models/weapons/pedestal_workshop.mdl +models/weapons/pedestal_trophy_panorama.mdl +models/weapons/pedestal_sticker_panorama.mdl +models/weapons/pedestal_sticker.mdl +models/weapons/pedestal_music_kits_panorama.mdl +models/weapons/pedestal_music_kits.mdl +models/weapons/pedestal_knives_panorama.mdl +models/weapons/pedestal_knives.mdl +models/weapons/pedestal_ground_shadow_plane.mdl +models/weapons/pedestal_gloves.mdl +models/weapons/pedestal_firstperson.mdl +models/weapons/pedestal_default_temp_panorama.mdl +models/weapons/pedestal_default.mdl +models/weapons/pedestal_character_temp_panorama.mdl +models/weapons/pedestal_badges_panorama.mdl +models/weapons/pedestal_badges_nocase.mdl +models/weapons/pedestal_badges.mdl +models/weapons/v_parachute.mdl models/weapons/v_sonar_bomb.mdl models/weapons/w_snowball.mdl models/weapons/w_snip_ssg08_mag.mdl @@ -87245,73 +88450,6 @@ models/weapons/w_smg_bizon_mag.mdl models/weapons/w_smg_bizon_dropped.mdl models/weapons/w_smg_bizon.mdl models/weapons/v_smg_bizon.mdl -models/weapons/v_healthshot.mdl -models/weapons/w_hammer_dropped.mdl -models/weapons/w_hammer.mdl -models/weapons/v_hammer.mdl -models/weapons/v_fists.mdl -models/weapons/w_eq_taser.mdl -models/weapons/v_eq_taser.mdl -models/weapons/w_eq_tablet_dropped.mdl -models/weapons/w_eq_tablet.mdl -models/weapons/w_eq_snowball_dropped.mdl -models/weapons/w_eq_snowball.mdl -models/weapons/v_eq_snowball.mdl -models/weapons/w_eq_smokegrenade_thrown.mdl -models/weapons/w_eq_smokegrenade_dropped.mdl -models/weapons/w_eq_smokegrenade.mdl -models/weapons/v_eq_smokegrenade.mdl -models/weapons/w_eq_sensorgrenade_thrown.mdl -models/weapons/w_eq_sensorgrenade_dropped.mdl -models/weapons/w_eq_sensorgrenade.mdl -models/weapons/w_eq_multimeter.mdl -models/weapons/w_eq_molotov_thrown.mdl -models/weapons/w_eq_molotov_dropped.mdl -models/weapons/w_eq_molotov.mdl -models/weapons/v_eq_molotov.mdl -models/weapons/w_eq_incendiarygrenade_thrown.mdl -models/weapons/w_eq_incendiarygrenade_dropped.mdl -models/weapons/w_eq_incendiarygrenade.mdl -models/weapons/v_eq_incendiarygrenade.mdl -models/weapons/w_eq_helmet.mdl -models/weapons/w_eq_healthshot_dropped.mdl -models/weapons/w_eq_healthshot.mdl -models/weapons/w_eq_fraggrenade_thrown.mdl -models/weapons/w_eq_fraggrenade_dropped.mdl -models/weapons/w_eq_fraggrenade.mdl -models/weapons/v_eq_fraggrenade.mdl -models/weapons/w_eq_flashbang_thrown.mdl -models/weapons/w_eq_flashbang_dropped.mdl -models/weapons/w_eq_flashbang.mdl -models/weapons/v_eq_flashbang.mdl -models/weapons/w_eq_fists.mdl -models/weapons/w_eq_eholster_elite.mdl -models/weapons/w_eq_eholster.mdl -models/weapons/w_eq_decoy_thrown.mdl -models/weapons/w_eq_decoy_dropped.mdl -models/weapons/w_eq_decoy.mdl -models/weapons/v_eq_decoy.mdl -models/weapons/w_eq_charge_dropped.mdl -models/weapons/w_eq_charge.mdl -models/weapons/w_eq_assault_suit.mdl -models/weapons/w_eq_armor.mdl -models/weapons/w_c4_planted.mdl -models/weapons/w_bullet.mdl -models/weapons/v_tablet.mdl -models/weapons/v_t_knife_anim.mdl -models/weapons/t_arms_workbench_leet.mdl -models/weapons/t_arms_separatist.mdl -models/weapons/t_arms_professional.mdl -models/weapons/t_arms_pirate.mdl -models/weapons/t_arms_phoenix.mdl -models/weapons/t_arms_leet.mdl -models/weapons/t_arms_balkan.mdl -models/weapons/t_arms_anarchist.mdl -models/weapons/t_arms.mdl -models/weapons/v_breachcharge.mdl -models/weapons/w_axe_dropped.mdl -models/weapons/w_axe.mdl -models/weapons/v_axe.mdl models/weapons/w_pist_tec9_mag.mdl models/weapons/w_pist_tec9_dropped.mdl models/weapons/w_pist_tec9.mdl @@ -87355,6 +88493,83 @@ models/weapons/w_pist_223_mag.mdl models/weapons/w_pist_223_dropped.mdl models/weapons/w_pist_223.mdl models/weapons/v_pist_223.mdl +models/weapons/w_mach_negev_mag.mdl +models/weapons/w_mach_negev_dropped.mdl +models/weapons/w_mach_negev.mdl +models/weapons/v_mach_negev.mdl +models/weapons/w_mach_m249para.mdl +models/weapons/v_mach_m249para.mdl +models/weapons/w_mach_m249_mag.mdl +models/weapons/w_mach_m249_dropped.mdl +models/weapons/w_mach_m249.mdl +models/weapons/v_knife_widowmaker_inspect.mdl +models/weapons/w_knife_widowmaker_dropped.mdl +models/weapons/v_knife_widowmaker_anim.mdl +models/weapons/w_knife_widowmaker.mdl +models/weapons/v_knife_widowmaker.mdl +models/weapons/v_knife_ursus_inspect.mdl +models/weapons/w_knife_ursus_dropped.mdl +models/weapons/v_knife_ursus_anim.mdl +models/weapons/w_knife_ursus.mdl +models/weapons/v_knife_ursus.mdl +models/weapons/v_knife_tactical_inspect.mdl +models/weapons/w_knife_tactical_dropped.mdl +models/weapons/w_knife_tactical.mdl +models/weapons/v_knife_tactical.mdl +models/weapons/v_knife_survival_bowie_inspect.mdl +models/weapons/w_knife_survival_bowie_dropped.mdl +models/weapons/v_knife_survival_bowie_anim.mdl +models/weapons/w_knife_survival_bowie.mdl +models/weapons/v_knife_survival_bowie.mdl +models/weapons/v_knife_stiletto_inspect.mdl +models/weapons/w_knife_stiletto_dropped.mdl +models/weapons/v_knife_stiletto_anim.mdl +models/weapons/w_knife_stiletto.mdl +models/weapons/v_knife_stiletto.mdl +models/weapons/v_knife_push_inspect.mdl +models/weapons/w_knife_push_icon.mdl +models/weapons/w_knife_push_dropped.mdl +models/weapons/v_knife_push_anim.mdl +models/weapons/w_knife_push.mdl +models/weapons/v_knife_push.mdl +models/weapons/v_knife_m9_bay_inspect.mdl +models/weapons/w_knife_m9_bay_dropped.mdl +models/weapons/v_knife_m9_bay_anim.mdl +models/weapons/w_knife_m9_bay.mdl +models/weapons/v_knife_m9_bay.mdl +models/weapons/v_knife_karam_inspect.mdl +models/weapons/w_knife_karam_dropped.mdl +models/weapons/v_knife_karam_anim.mdl +models/weapons/w_knife_karam.mdl +models/weapons/v_knife_karam.mdl +models/weapons/v_knife_gypsy_jackknife_inspect.mdl +models/weapons/w_knife_gypsy_jackknife_dropped.mdl +models/weapons/v_knife_gypsy_jackknife_anim.mdl +models/weapons/w_knife_gypsy_jackknife.mdl +models/weapons/v_knife_gypsy_jackknife.mdl +models/weapons/v_knife_gut_inspect.mdl +models/weapons/w_knife_gut_dropped.mdl +models/weapons/v_knife_gut_anim.mdl +models/weapons/w_defuser_display.mdl +models/weapons/w_defuser.mdl +models/weapons/ct_arms_swat.mdl +models/weapons/ct_arms_st6.mdl +models/weapons/ct_arms_sas.mdl +models/weapons/ct_arms_idf.mdl +models/weapons/ct_arms_gsg9.mdl +models/weapons/ct_arms_gign.mdl +models/weapons/ct_arms_fbi.mdl +models/weapons/ct_arms.mdl +models/weapons/uid_xsmall_weaponpreview.mdl +models/weapons/uid_weaponpreview.mdl +models/weapons/uid_small_weaponpreview.mdl +models/weapons/uid_small.mdl +models/weapons/uid_create.mdl +models/weapons/uid.mdl +models/weapons/v_breachcharge.mdl +models/weapons/w_axe_dropped.mdl +models/weapons/w_axe.mdl +models/weapons/v_axe.mdl models/weapons/stattrack_weaponpreview.mdl models/weapons/stattrack_cut_workbench_xsmall.mdl models/weapons/stattrack_cut_workbench_small.mdl @@ -87368,20 +88583,26 @@ models/weapons/stattrack.mdl models/weapons/w_spanner_dropped.mdl models/weapons/w_spanner.mdl models/weapons/v_spanner.mdl -models/weapons/v_ct_knife_anim.mdl models/weapons/w_shot_xm1014_mag.mdl models/weapons/w_shot_xm1014_dropped.mdl models/weapons/w_shot_xm1014.mdl models/weapons/v_shot_xm1014.mdl models/weapons/w_shot_sawedoff_mag.mdl models/weapons/w_shot_sawedoff_dropped.mdl -models/seagull.mdl -models/crow.mdl models/error.mdl models/brokenglass_piece.mdl +models/seagull.mdl +models/crow.mdl models/sticker_preview.mdl models/pigeon.mdl models/antlers/antlers.mdl +models/inventory_items/operation_8_silver.mdl +models/inventory_items/operation_8_platinum.mdl +models/inventory_items/operation_8_gold.mdl +models/inventory_items/operation_8_bronze.mdl +models/inventory_items/operation_7_silver.mdl +models/inventory_items/operation_7_gold.mdl +models/inventory_items/operation_7_bronze.mdl models/inventory_items/service_medal_2019_lvl6.mdl models/inventory_items/service_medal_2019_lvl5.mdl models/inventory_items/service_medal_2019_lvl4.mdl @@ -87408,25 +88629,6 @@ models/inventory_items/service_medal_2016_lvl3.mdl models/inventory_items/service_medal_2016_lvl2.mdl models/inventory_items/service_medal_2016_lvl1.mdl models/inventory_items/service_medal_2015_2.mdl -models/inventory_items/service_medal_2015.mdl -models/inventory_items/phoenix_gold_01.mdl -models/inventory_items/phoenix_bronze_01.mdl -models/inventory_items/pedestal_trophy.mdl -models/inventory_items/payback_silver_01.mdl -models/inventory_items/payback_gold_01.mdl -models/inventory_items/payback_bronze_01.mdl -models/inventory_items/operation_8_silver.mdl -models/inventory_items/operation_8_platinum.mdl -models/inventory_items/operation_8_gold.mdl -models/inventory_items/operation_8_bronze.mdl -models/inventory_items/operation_7_silver.mdl -models/inventory_items/operation_7_gold.mdl -models/inventory_items/operation_7_bronze.mdl -models/inventory_items/vanguard_silver.mdl -models/inventory_items/vanguard_gold.mdl -models/inventory_items/vanguard_bronze.mdl -models/inventory_items/trophy_majors_finalists.mdl -models/inventory_items/trophy_majors.mdl models/inventory_items/katowice_trophy_semifinalist.mdl models/inventory_items/katowice_trophy_quarterfinalist.mdl models/inventory_items/katowice_trophy_finalist.mdl @@ -87442,64 +88644,6 @@ models/inventory_items/katowice2015_trophy_champion.mdl models/inventory_items/kat_2015_pickem_silver.mdl models/inventory_items/kat_2015_pickem_gold.mdl models/inventory_items/kat_2015_pickem_bronze.mdl -models/inventory_items/maptoken_zoo.mdl -models/inventory_items/maptoken_workout.mdl -models/inventory_items/maptoken_tulip.mdl -models/inventory_items/maptoken_thunder.mdl -models/inventory_items/maptoken_subzero.mdl -models/inventory_items/maptoken_siege.mdl -models/inventory_items/maptoken_season.mdl -models/inventory_items/maptoken_seaside.mdl -models/inventory_items/maptoken_santorini.mdl -models/inventory_items/maptoken_rush.mdl -models/inventory_items/maptoken_ruins.mdl -models/inventory_items/maptoken_royal.mdl -models/inventory_items/maptoken_resort.mdl -models/inventory_items/maptoken_rails.mdl -models/inventory_items/maptoken_overgrown.mdl -models/inventory_items/maptoken_museum.mdl -models/inventory_items/maptoken_motel.mdl -models/inventory_items/maptoken_mist.mdl -models/inventory_items/maptoken_mikla.mdl -models/inventory_items/maptoken_marquis.mdl -models/inventory_items/maptoken_log.mdl -models/inventory_items/maptoken_library.mdl -models/inventory_items/maptoken_insertion.mdl -models/inventory_items/maptoken_gwalior.mdl -models/inventory_items/maptoken_favela.mdl -models/inventory_items/maptoken_facade.mdl -models/inventory_items/maptoken_empire.mdl -models/inventory_items/maptoken_downtown.mdl -models/inventory_items/maptoken_cruise.mdl -models/inventory_items/maptoken_coast.mdl -models/inventory_items/maptoken_chinatown.mdl -models/inventory_items/maptoken_castle.mdl -models/inventory_items/maptoken_cache.mdl -models/inventory_items/maptoken_blackgold.mdl -models/inventory_items/maptoken_biome.mdl -models/inventory_items/maptoken_bazaar.mdl -models/inventory_items/maptoken_backalley.mdl -models/inventory_items/maptoken_ali.mdl -models/inventory_items/maptoken_agency.mdl -models/inventory_items/maptoken_abbey.mdl -models/inventory_items/london_pickem_2018_silver.mdl -models/inventory_items/london_pickem_2018_gold.mdl -models/inventory_items/london_pickem_2018_bronze.mdl -models/inventory_items/krakow_pickem_2017_silver.mdl -models/inventory_items/krakow_pickem_2017_gold.mdl -models/inventory_items/krakow_pickem_2017_bronze.mdl -models/inventory_items/dreamhack_trophy_semifinalist.mdl -models/inventory_items/dreamhack_trophy_quarterfinalist.mdl -models/inventory_items/dreamhack_trophy_finalist.mdl -models/inventory_items/dreamhack_trophy_champion.mdl -models/inventory_items/dogtags.mdl -models/inventory_items/dhw_2014_semifinalist.mdl -models/inventory_items/dhw_2014_quarterfinalist.mdl -models/inventory_items/dhw_2014_pickem_silver.mdl -models/inventory_items/dhw_2014_pickem_gold.mdl -models/inventory_items/dhw_2014_pickem_bronze.mdl -models/inventory_items/dhw_2014_finalist.mdl -models/inventory_items/dhw_2014_champion.mdl models/inventory_items/cologne_prediction_silver.mdl models/inventory_items/cologne_prediction_plaque_silver.mdl models/inventory_items/cologne_prediction_plaque_gold.mdl @@ -87558,6 +88702,85 @@ models/inventory_items/cluj_pickem_2015_bronze.mdl models/inventory_items/cluj_fantasy_2015_silver.mdl models/inventory_items/cluj_fantasy_2015_gold.mdl models/inventory_items/cluj_fantasy_2015_bronze.mdl +models/inventory_items/service_medal_2015.mdl +models/inventory_items/phoenix_gold_01.mdl +models/inventory_items/phoenix_bronze_01.mdl +models/inventory_items/pedestal_trophy.mdl +models/inventory_items/payback_silver_01.mdl +models/inventory_items/payback_gold_01.mdl +models/inventory_items/payback_bronze_01.mdl +models/inventory_items/prime_badge.mdl +models/inventory_items/maptoken_zoo.mdl +models/inventory_items/maptoken_workout.mdl +models/inventory_items/maptoken_tulip.mdl +models/inventory_items/maptoken_thunder.mdl +models/inventory_items/maptoken_subzero.mdl +models/inventory_items/maptoken_siege.mdl +models/inventory_items/maptoken_season.mdl +models/inventory_items/maptoken_seaside.mdl +models/inventory_items/maptoken_santorini.mdl +models/inventory_items/maptoken_rush.mdl +models/inventory_items/maptoken_ruins.mdl +models/inventory_items/maptoken_ruby.mdl +models/inventory_items/maptoken_royal.mdl +models/inventory_items/maptoken_resort.mdl +models/inventory_items/maptoken_rails.mdl +models/inventory_items/maptoken_overgrown.mdl +models/inventory_items/maptoken_museum.mdl +models/inventory_items/maptoken_motel.mdl +models/inventory_items/maptoken_mist.mdl +models/inventory_items/maptoken_mikla.mdl +models/inventory_items/maptoken_marquis.mdl +models/inventory_items/maptoken_log.mdl +models/inventory_items/maptoken_library.mdl +models/inventory_items/maptoken_insertion.mdl +models/inventory_items/maptoken_gwalior.mdl +models/inventory_items/maptoken_favela.mdl +models/inventory_items/maptoken_facade.mdl +models/inventory_items/maptoken_empire.mdl +models/inventory_items/maptoken_downtown.mdl +models/inventory_items/maptoken_cruise.mdl +models/inventory_items/maptoken_coast.mdl +models/inventory_items/maptoken_chinatown.mdl +models/inventory_items/maptoken_castle.mdl +models/inventory_items/maptoken_cache.mdl +models/inventory_items/maptoken_blackgold.mdl +models/inventory_items/maptoken_biome.mdl +models/inventory_items/maptoken_bazaar.mdl +models/inventory_items/maptoken_backalley.mdl +models/inventory_items/maptoken_ali.mdl +models/inventory_items/maptoken_agency.mdl +models/inventory_items/maptoken_abbey.mdl +models/inventory_items/london_pickem_2018_silver.mdl +models/inventory_items/london_pickem_2018_gold.mdl +models/inventory_items/london_pickem_2018_bronze.mdl +models/inventory_items/krakow_pickem_2017_silver.mdl +models/inventory_items/krakow_pickem_2017_gold.mdl +models/inventory_items/krakow_pickem_2017_bronze.mdl +models/inventory_items/dreamhack_trophy_semifinalist.mdl +models/inventory_items/dreamhack_trophy_quarterfinalist.mdl +models/inventory_items/dreamhack_trophy_finalist.mdl +models/inventory_items/dreamhack_trophy_champion.mdl +models/inventory_items/dogtags.mdl +models/inventory_items/dhw_2014_semifinalist.mdl +models/inventory_items/dhw_2014_quarterfinalist.mdl +models/inventory_items/dhw_2014_pickem_silver.mdl +models/inventory_items/dhw_2014_pickem_gold.mdl +models/inventory_items/dhw_2014_pickem_bronze.mdl +models/inventory_items/dhw_2014_finalist.mdl +models/inventory_items/dhw_2014_champion.mdl +models/inventory_items/music_kit.mdl +models/inventory_items/mlg_pickem_2016_silver.mdl +models/inventory_items/mlg_pickem_2016_gold.mdl +models/inventory_items/mlg_pickem_2016_bronze.mdl +models/inventory_items/mlg_fantasy_2016_silver.mdl +models/inventory_items/mlg_fantasy_2016_gold.mdl +models/inventory_items/mlg_fantasy_2016_bronze.mdl +models/inventory_items/vanguard_silver.mdl +models/inventory_items/vanguard_gold.mdl +models/inventory_items/vanguard_bronze.mdl +models/inventory_items/trophy_majors_finalists.mdl +models/inventory_items/trophy_majors.mdl models/inventory_items/5_year_coin.mdl models/inventory_items/10_year_coin.mdl models/inventory_items/breakout_silver_01.mdl @@ -87575,15 +88798,7 @@ models/inventory_items/bloodhound_bronze.mdl models/inventory_items/atlanta_pickem_2017_silver.mdl models/inventory_items/atlanta_pickem_2017_gold.mdl models/inventory_items/atlanta_pickem_2017_bronze.mdl -models/inventory_items/prime_badge.mdl models/inventory_items/sticker_inspect.mdl -models/inventory_items/music_kit.mdl -models/inventory_items/mlg_pickem_2016_silver.mdl -models/inventory_items/mlg_pickem_2016_gold.mdl -models/inventory_items/mlg_pickem_2016_bronze.mdl -models/inventory_items/mlg_fantasy_2016_silver.mdl -models/inventory_items/mlg_fantasy_2016_gold.mdl -models/inventory_items/mlg_fantasy_2016_bronze.mdl models/inventory_items/cologne_trophy_semifinalist.mdl models/inventory_items/cologne_trophy_quarterfinalist.mdl models/inventory_items/cologne_trophy_finalist.mdl diff --git a/tar_entities/baseidle.smd b/tar_entities/baseidle.smd new file mode 100644 index 0000000..3496cfa --- /dev/null +++ b/tar_entities/baseidle.smd @@ -0,0 +1,8 @@ +version 1 +nodes +0 "joint0" -1 +end +skeleton +time 0 +0 0.000000 0.000000 0.000000 0 0.000000 0.000000 +end \ No newline at end of file diff --git a/tar_entities/map_dividers.blend b/tar_entities/map_dividers.blend new file mode 100644 index 0000000000000000000000000000000000000000..aca9f5db2bd00e9bdfe6f6fcdd74ac5502382bae GIT binary patch literal 534488 zcmeF43xFO~efDRQkgSM;in<`ef)^rp64Zc@-OU9S2)86?MA~FYHtgyqo9-qUw3QWY zzqOxMrAmYKlB#H|V!fb^Rg;i_u9td8qsYaUw$XZ_YHP%PA1M1k*$2u#Q1*ec50rhN>;q*VDEmO!2g*KB_JOhw zlzpJ=17#m5`#{+T%05u`fwB*jeW2_EWgjT}K-mY%K2Y|7vJaGfpzH%>A1M1k*$2u# zQ1*ec50rhN>;q*VDEmO!2PRe@xbem}?s1OZXYO*|3kO!%j3Un z`||iN`#?GVAG&>@JpK>ewlBy3vhB;`zw86$_g{l;i)Q z+Xu?y|Ilswa{MpbzC8ZRK2VPThi)GzkN-or?aT4MZ2R)~FZ)0_{vW!1pgjH$-L@~s z|FZ4N`}sAZYk!jJU_E@oTyhY79+b+k9z z*TVSt&+d!Y)BfP*3+>jwUh#_MTT6{NFd7kQdfZO6@-k<@Pxkn)CY`3TKkWNH5VdzT znqE!YS)5vq|7y}K$Bc0pFB;VJYT79qXPE* zv%io3YO0j_$9!d`Cy1tJ{WsS7L_Ge- zDzEKJ`@=*y?=($6$lANex69l{ekS7aUsUFJ+kTltSbN);;q*VDEmO!2g*KB_JOhwlzpJ=17#m5`#{+T%05u`fwB*jeW2_EWgjT} zK-mY%K2Y|7vJaGfpzH%>A1M1k*$2u#Q1*ec50rhN>;q*VDEmO!2g*KB_JOhwlzpJ= z17#m5`#{+T%05u`fwB*jeW2_EWgjT}K-mY%K5#($z(otLnA1KbNm}n)df1PXBx!bU zOR*QGw6?aMl_XDYn(EeV={aZn)@vpuN$1)3rD1YZGHIxFN^;%jK7EbtUwO`o<>#(E zcg2flU1ylgJMY@72fGIbukGv_7`XA;Mg8jrmUmyfuzOAa;I)^{o%hmf*LDpo?OwgM zcWrO?;I*r|)+}AodqeLEXK}`Lech{9q=}S&N)MDCI4C{vvdf&XJ0aP5CiLPrURU;3 znU`JmvfkB~b*h z+oyj6VXKQ^(F&r*repG^TaoYd_aY?sd@R4c<;f4G<%>fmKCfeON2{wm>-pPCet*`# zrs+`EX+OAppu4*v?=PD&H0}43&HqiwVaYEiAC|5$eYVSzH(j0P&+T!@_L#M7ed=$9 z8>akk+Aa*2eE#%p)*hR`i*VML^WpUWMmz2L4Z=8|mOoyQmc#tk>~@m>!L75bX0vFn z>(5Wu`1kc_zr`t97R_C>ynA(bvbO8`?xd@?F3)EB^UnEszm2>W$JeeF)PrT{c>wk8 zJmo61vuEzFHAH*neUeS1vlHd$Iq$->y7XJ?nvO4u(FT)uo}f?EXD&;oL5}Jzi(KKN{_@2^uD879&kNm%iIJ z>7l0clUBEvX-rLKByX|U(~@M?6gSs&|JohfrzLrc`+H3q_bRvc%;dzNsY8w}c1v=2 zy5{q9>#S28`e-iL`H_3l{?8DlvH1E}`Qo$=a}(Sq_m4W%|I{~}mliIKn2%gw5nXzw)DU#54bs98$TLD8Et6xLvjoOC7q!!df!g87%vo4;`B!Zgr+u3=tDI`qOb&ph<%T-LbsKVm1tMM{Bc4oaY?_)+oZ7Vdub*{M{`wJP zJo1-I((5_oIP9F+XgldTK{oBm^MJz=yQcK6+itV#NVD%d^5V9YD_7e5q1|0ua$$SN z%9S57?nsi29k|A^tsQ<#ob7RLdy=%KpGnD(yGHpVw|>40?RuqO+FjUg^BS|WzRfES zOvlFy!H)kv?ksk_ z^S0}+bjTGA&h7vr&9jK|R8ujsy^cX>m-kg1IhSsv~QOUs>Ku z&V;`hvOFvw%fM){Y%i9R?KSI7`SP0G>aJA{ z_wL>QckJ=+i7p@eSh?(aP&U5xv95J%``6uY#)?(z5ogG4V_8}D4R1i%Stl1I>A!C2 z+8ft2R{ZsEAG_@CGJIkmE4zL7m5py@zhcfM^XD#Bxmiw@n|*}!aVAOc^8UKM<1$+= zo3F-qe&jf`Zwl;VuU@?1;>+Ddf-B}My=?xXPP1pfVVPM6+h+^wX6wCc zyH_o3u=6Z=Yi+*I##g^dRRc?#3Dv6N}FPyUyt-HR|T)1L8z{Taxg>6$&qW3zAWj_iGW+IOA| zd!}o)JTW)>&9BVcGd}H`ef>v#x@ONY(d>KHmhS`z1>wdmo?nooA!|OxNtWn0?C)d3(kW_Gfx~pRTnX+wY+>l4SUn$lk{f z_WnKyrfaq=gW2zVb7b%1)1GDR^y!*?>VNmg?0FxC^`9Zvu)H7Q%f6hO&KykVRZGr5 zIKBBxDKlL=7qjn}?c6r4nfvlN{m$9!-Exfkw#m+Uk3p_&Gh9fvkZhq_+89siV{Jwn z3>EIDKddaVT_v9W?C72tgm-cL1XJ6cVC5GA#|G{(4N4!VVYZ=z&xMs1<`TdcO z&Y!%-eWzmmz}f+yxs#H~lR_@Yk$I{tc9%ra)@%%{+x+P{?(_9~ZnU;;v-PKc>h^hLeFu$3}_RXKVz_#6Yi`V&q2Xg&)=cTpv->14X##&N6a2YY(e|GDZuYI^^o%I_XqQ6wWUb^A9 zm*wigv=7Y?#|)1hh4O~AON&GL?Q5EZ=`dM#k2^(Rr$j zw#NR$boW*Nnf~mu|H$)f_c&Ax_8o)s&G zEFM2@HMb18PRxB4Chq!oE|&LVxmptEN9$$KZTxU$x_K zsS9eP%zR8^inXN{wj=#kO*?LL=Da`k4!4fuSZUhYLibEm_rQX#8@mURf&8wzXwRM_ zgWaB+bS~;Q=IRt8x|QsBg*j@H{A~I&+BaN}>+B3uopJHW_Jw3oy%zMY?q1Yg|Mhe` zhqmjlOnZe}pXNUC(y|b`YUSGKcJh1dkGplV-5hz1R0NQt+h{Cp)IJEM%xBIwllibB8TelDDIWi|_*M8iE;VjkfV0`%?XOV(W zfAo%naLe>2T>D^XeWb_LgZzpL?YyXK)tbKE)z{ZsWnAwXYE%Df?Xa}2a4oda?c_DU z+uSzuH?N6VoTBB5IcJ=@J~`{GhR%uI<(kJ++nS%OKK8tbuE4N{P3bkm(fiG6qAb)O z>JiJ8+dlLocU^&d6c*WNFV?bgvg__T{E6?M>EmpbRW=UR6;H7=AIWaB^{hSjRoYf* zJM9=2$5Xko`*Z7Qy%dk>S(uHN-Cq5=lMOCYnldvL^*%nclwN~Nudlf|jJuEM>le6d za*pF=sLh^NOA^zGYv))xP3~GF(mTu@xmM=J%dK3Qo)6o#M{C(Q+By-|;Gg|h66!W} zn!3&JBBi+8Epv0D!?S2`}V-D$Sz&(P?CTAb_>v+c`n%dW@! zkPb9%DAhY`8EUJndvSWjY39p-RIzRR?S1((ei_Urh z{0^OZ9@o!w`!%U<$9rnvQnzbx*8YfU+Qm;cKW;11HpYwh#cc7i+p_ENzDjA16)#S2 zthh{{q1hg2dzPiXu+;7P{5D=z2THf8)6{L=yF@*Y>*sX)^zu4M?3F|2I!R^@OdrI$ z7qi97Zp*Icu9IZvr`h#1&&u=Fe0nHVE!%2|%Q`d6o(JU54;X`WuUvk`tY@v%?Rva6 zel`b6x2ex_x7LeLHr`&bE=1^PZ@-waa!cw>E^V@h?9Vp$V zPE)seuRQfUuAk}lYf9aY-SW8C?H?U^@itfKp-~kdrJH-x!FYenmV;dnKIu;8<<`%! zZDfVTx>=i+7v}HAgLtVFuW-AS-<25)>Qbrvj8$J)>UMp88!xK^rQ6hL>NcMdqMpa~ zyJ8NW7ET(up(JyCyZLI|lNaY>{+P(i?w{wM$*}V7kNZh_uKaR(FE+#R@e%be)}Tt; zv$+=8WcS;8Hcoau-bcGQ&RFqkiOcjEn(cwMXIbhC_p@%h>?--JzVa(QpKg26k$8jBm9xKf+wMagaz&?Z#?MT%R($T2+-Nwx2RhA=>9Ms~F76+zT;uuf6qch> zXyuyj3Q4_O=_0bsSsT04{F#{zSHJYif&N!^FR%AL zPuO)y@jSuqtDnfr@N0MEo}IG3w?F0ywfbar_pjP-o&BwCm+$%e_R6-|K9-H8?Wa8U zmh_zGr1xDJo%_Vv9kZpE-IiTXlAAW1*|w+iypU$gzums&gk|rZ{h?Xi>9#-r`t#f7 zpZDyo?|JlJ(`TLY^|7?_>7n%1Z)jwX6y#WPrJ{DEuOK9_d@r1 zf#XdU&&q#{E3=i;_FG*}bmg})8z;%Ovp?+W@?Ky5SKam1Ex&!@R`(vmbM7iGJFKex z>&g;d#$a!e?=*4G_K&*n)TcbjC0EJk z%(>B!CC{eAJd4^j8*lIHn?IRz1pa(+s(n z^=G-bf2?w?>K^P_I@tXu>$+Dj?{+I|*SZHQ2ASgchE}ePE=jigyWM(P=520e)WUu? zYDd)@?0#;0H{{_z_`vy98~KQtIe&OAgyS*CXTB?h<93|K6?4+JAjO+&tChq+0=?`viog48z;LS z@1tEDXRLU&#AW&n&Gtasvn=(6*6;kWvOk^+Ipogc*Z=P3^f(`W$s5veqMXN5H^&+W z>+4a)R?|NNoo2{b)M<{-+&@;i_UCy#&qFz`ah&5jwK)E_LbfG6Y}rQp1|YWHuwO~y%zg}dLL`Pwm5Qjrb! zG0euvuDh2|-TlXHr(E>ETNv}#ue@jWe=aJ&F6vbm9|yduGGe|Z+GSYr7QEFx^h~)Q(axG{8nafH{%~%UH;mazy0n9 z+CI1I!S*+O`QNt{kFl_-_AhnD#hiI)tv2I)K*3D_un@2 zzkN2n3h(n|xUWjU@r1fL)_5|WWmtbHbebX4X8&WkxPPp2?a%X2j&mH>IL@*B9RJ7+ z({ZlO%dAWz$&7O?%MZ?RZo_E@%{bQ%zc)6{edmbdEuDQn&i(e4_iXw3!ZWsh{JIm; zabn;p@7c2blZS7;b#Z4p?zu8pIovWa#<|&UoSX8hd$#e2Eb-rqF=X2DILG~Cm1}>FbBiu_Z;^F{?U}tj{eEnZTemXzoDOC^ z;&9Qzne$p-+S~o=)(hA5^~HOu<2Sl!^bajYPQbeWH=l;E^96X9bMp%kuD=uC2lRZZ z_<#DTp3++NYZ?~isleGx9q;OFbs^(1 zza{>iejz=J?3SCRMRt5=qR+48xyUc12Qz1f6_%6nm>>Pje7%_qp6#xGHKp$qZFR(W zv}3%Gp5JiOG}*b=TP18idpEE7bJ)KVoA#_{Ty86`*)u-vM`oZOFkSjLEY?z(Te$P$d#3L(|ox{ZY!|g);AC4-|9%i)<^Ojr5&UFHn}awq<_tJ#HGWK zW3qiGJ$dpJ_fGc1lh;o>HvOaqd;LRy6-BgT(~c;;=lj^AXcJ}|+lB4Gc3JYbXcx9u zTHv8i%}s`S?pEQ4+R0Pg#;5xof9GG$_E(|CWoo(EYt>LemPbKY#yGTv$?T_|O z?x`-t_q!H)KMh0F$}2nFF6+nf(v-}1sT}6YVC|D6?{mLnKam%<3)_M1vg_Sw7q(Yg z2Wyw)njNf9TgU6$k3AloZI>VT2$kA}`PF^!*vimSf<e0$Vh`Je?Z9?n;n-f}i5!mAE;c%6 z%ML~xWw#&b_2!MxDQlNu*V)P6a0NqY-)#Liw_GxR&!}yGHPxQy(K9_y{LX^(dd0k7 zeS7xIPyX|k&F{S`wYl)sy=`y3KPVt3mq7d)I^$7e<-ey9H~ zmtLFMo6RR&Jll7UOY5(kz1bLl&ZTQMVD`R<$Yhe;L@-Bn=9||%zM_X+y1F|u6CFe``yUEAQw)ulC)_xmZ$n!s*586Ikc%I1fNuC#1I=?j= z8-I>>ql{hIm^N+5og1M?Wc%9sP5!!%4>x@PdcXb?2rZql7LM1n<9Jcbvs@p> z6}r3$&eLrh4&tF{c(Zsu*2E!emv&bi9(Uhy>(%&SOc%Q}!gXeUU3rgBx92KcXXf>1 zw>h^gTG+9=cU9NgUiVY6^?t4TMwen-hgs+N>$7M0&|haBehKuZ<^PR66%EN>Um3+2@H;#Rkf@o3lV+b5*w?XuUI&5rSCx66Nj5YqE@bNvH(EGOdy zyBDB-A-!OiFXt{Fk9O02ej&YJw=?Z}%#ZPCx9d#g7t-@~H%-giF&^z&X2LF{=k1c@ z&FLERV?5ez@a+)N3+2q)F&^!f`1*zPyxk`z*(Qe5M*oE}G zU6Q;p=TF9?U5h`CLV6*;ydC4wZp8Pqke;`jJN43Z3PgW09_?7Hke=Ug(=^%H_ZTBy zUw9pU_<7J7+Vgmdk4MWl{T{@}r+ugY9)s!9Epey~3k^=G;~-eMhN{v$p)RkV-t@ATs|(`ET9*)u-#@0{oRpHG+i#B@gWA0I#1 zU*PNS%R&2!`TO{^ANJp8vm88bV!aFg^YLll+3xfA>C%qvFsl4MKJ7nB`*Hq^Px}%2&!@}$WBsQ87@zi?FGBs9E{~sB z$7#>_v>!en_Dq*{mHf~6!Jhrcmt&S6mq+|K6xV+^>OUjC-b|OreIs`&kb5yQ22n=pu7I&g%}-Ka;=zgZYPXkn>{iSLSD7 z_B^`Mb%*J;`HPEreo7jr4+TD z{@UX5Fn`61rDRt?xC%{e5$MP`M%O$ z^x-K!q<)aOpXvC}z7uJ`*Qda&bgKJAF$<9GV!Mjcx0JGGF=zKpgmr6| zqg;u3ynWXdDp!FDg>;u~59&qtf90#O=XCcwmHAC6Q4gtq)WhM=LJz5vJP+i2p64~x z$!yYd{57@z>oy*F1zGu;s(h!CfD(O%G|uM53;!%I<7Y$qiF#;k_v`&h8p*!5>70}N=`EcW;=9z=4hObO za>w0eyxHAu)##yq>H9#}ptk&P^7W&> zQO~Gvv%UbGq3&^>7oYcX-pAZIPX5q2?~=*xd;H1gHw_fb_jZ31zf;U`*54z)=1gQY3q_vKG>8|-Y4Z1*N-`ROUS5&dlGrtRO= zqUVWqw#d|*l1(!n4DWZe{j=uhdH0Xj=Jvx<_AzJg8?*HI{z!ZFz?kLZc*F69<4wyq zP=1a>;re#;Ju&Ci%>R?_HW8bLyv1$6b27I~e%oZUNOnHGX)&IY3E?K>xBEZjH>Oz> zTDgZ@vYWgeb#3HV1@=RKlAk{ht;lmx2AOSd_Xk}%pH6LUysY?tAmqFvZtD9({{llBYmR?&`}yXPkGTiwQu?ql=i zQ@#J==P``4`yFPN^!kFmPe=FtZ%j^`{MO{yDn!)U#XcvvK306+|6^{io|DODJQ3H~ zE^G(3%gFc9E^IH9{iwM~@{R4R$A7F8XWQk~K0>8-;eMv$!@_o1pS(3$8AU8Yw#$dz z&f_5~xoAzvddJ!4WQ-^7!ggUhuwAHwY%kQ{Iqtc#Wtrne`~er?PWQ3n;jexFem{)D z^?c*(e!rVRLA%_UykqhQlAEhIUQF}tW9?FWyjWxDIT>a;QA4&1+kx%E^0K|i6E)=c zQmI{TnS4X8bz`0=^&0*k=#;gKJtsr{hASXsVDxh`AMAUZ_37Ml+>`Rp$z1Y-#-5Y; z{&(@5%>3v%nHTQmIhhYGo7d5Q;~m>}e_PMV{PO9$ww!gRo|8G_3rlAo+otDaPMP=m zw!d7Qe@^BJpX=*zW$0M$pOd-LKPU5t1)tsWl`oz-`{Acv>U^-_({uaQZU4uw@9gM# z_hH+=_q+FP`_I_}b6)b;y?4FmCzI#AxOroH&PgR4Fb^E|Uq_B=i)y#oTr_@8#`*>; z^Yh~-zl7@y{iPsc?mNJ+FxMN5>k^Eqi-ThUb4gAMDu<{pERL_+G`|AItk*c%GOo>px7w z`QRH|znC=X6O(@D6+3%AIQ>zi&v40qfp`5HVK%*@b&l7x<9I#mmqqrki_ZT}i?}EU zZL|8=lAaH4JJs2`^FW4$=YyY^bZlau>K6K|=zI{V=zOsHRIAH-ykoIl*bZ!$T|Y#- zu)UD)%k3E1t}+<^(GKGg_xYjw*!=a!?qkcB5rp|IpNQvvzuO16{`i;Ec>OVP*B^hF z+@F5(F)NX!Z}TYY$MIq*r78Oz;5gRAVYUm~A+(D>-q>Cfr^Ll2v17$PmD&Z@+77<+ z4(cA;g|%mUCCO2DCCSb1_}IA3ecG}AHI8jN-UVpa<$1hV_~6i;$lC{dum~$(y?a#(H@*iyfAAf9!XnXxHVOWB%cF=6o9CM{yfiIX1fFIbY%Yh0nopUc>u* zdEafN`**FR){p<(Wn|YijyU2IlQv93uG#rZ=N~Yhh45d&E&o|G|FBf^3-!3u+wr(x ze_w%p`zzg?!xnyjI`QT&=CAk0jpIsuu+CrD4s4g{5Bc`??Ugo1@?xjI+4)PS<7eHC zeWU+=*>B?ar^cqoe^zjO*}0v4n%#bUe>%y{Uq+JGO&Ur13gi34Gl8Z5KHrZso6}WG zDLa1w$FU|3^LSx9uw8h(vArfvi5n@&!8dhuvF{UF-!6ws0Q8c?ahq*sJ*o@89Bc zR~4V5a^J1keftY0^LzF4o4)N^Fgp*~b*X>8Ne*>d1c|)!B4e`VO@F-+5-+)vtU1mgd_}POr7kyzsoXpZwu{ zv){S+xUH7%)>&tN;YBa(ZkzEt{7&gL&%a~KWA|^{vf&Bm+-38`2c7+koy|5E&*Hz# zrS-70pXF?fr@3@*b!pMwe&_UW-0!wtmi}(*P}_{JY;Rk3;qcbqK6>(2SB9wJA$;@^8+IzK?pOqsfn-%oAgqo%?99`*|$wPdxI`*$3%$@0b+Y)^rg}L#;@qJWy?~;Gd(w?+FZvJ$RfA3O-_xvwfIJbY* zn*PCF`>ogH`nq1d^hTdowm;1}8}D`5bml%)vZT9c`3F&#O_`OSvN4rk? zi|-u@c35Hk7>{;4{dAu}VdX|Y>j+mUcV?5gNI0@;&%-Lau{$xDb`DjT<&u=)#A1-D$-EHIX zXZJB!#Yg;mCTP$88~0b*Gd}H`{rfDKF74ueM0>`k{jk5Eoau)Az28|b+A}`wo6q&{ z_3-6jzHxt~J>v&^z88k&@clVHeu91UUYKV8J{hLV{v7wuU?08LW|;3K@#(UERw_T^ zv-~5p_vy0!Oegjq;|F_h$8=f#iuO_Yo7?<*QG7XA?@Hxo{E)w|_lQrI$1UqIs{E1v zJAM94m*tL+JNlpTL;n6fB_lpv=3mKvBzmt&^L*5w>C!$vewjbxGyi5k4l-TlThZRf z5B9!1Oqa)hJWhrDqw;t9_X4pTo4hVFo!I}3&-{lw{PE}0rG2I2hw*9O?B6rPblLxy zPMkmE)4tRDpXsvPmHfx}!QT6m=`vroL!3Y7Ewtx;rpxv(^8ZE`ne!c9-`eG$Qw-^N z|5HbY{kRh!PZq!Odu?=5u;K5}J`8*Q9rLW64;Rn3SPq8PZ-(4JK|5YYDYP%&YeTo~ z^N{Vrc3`_OW42eykF1*S&i}S?pMRgOVSDzyHt9sjZLIWO8}1M3q$~KI&7U`g_vub@ zsi+s`EsChx_vsedPNZ$tF72*BJl?+J){Fg?FSVVakF{938(jqI1@&XY2##aw3iXRR z%JDeX;}`ntx? zy*}89;b&d0U&WosXEC&09-D73nn@pKl24 zee~Y0hV<>jUf+B;PWtA47On7kH0m4s;=!VCYzMXr`v=<#Y-5Dp+qLJW+vh&Eb;aGb zZ?>!O6~5AZuK7~WS$(s(w@kLbqZYf?-hQ(i;Pu|FOPl_BvVBIy9kn6bkL@Kl@e-#J za~%IbvmNJ0Isfr^E8p9N=eFZ^p&nBIsD~r|Jp>$;$K8_21@`fK2DV*14=GnS z-+R74elXuNTbu9suuuQdc%zWXW$+lB2A+T}R33)>6% zPu%wmSi9Kg7FST~$MMpXKIMM!y=P#FZwIzZ&r{GYY%kPP?-ekfNbeb7yV$Yyb`&=E z_h5a`0Na7>LLFp#p_1;s0^9o1`9k1i^A218fcx-01F!e}_5Fwxp2IS>^CRx}yBVbO zhx~gv?o4iO`arU#p#Rf|p=rK-tX+za7fa;eyI+>=z;vx=xw;-nJ`W_V#dJ*LOeo z;kG+k-Wu-fI{BveePQ|J%ffwKQ|^7%))_Z{EZo<1%rQG=f8zJwm_78%yWM?V+dkd@ z(a(JGjQc-zLGy`2?!K-gW`5V**Y!4cU)MBuU)NpkzOMV8|Fk)G-?8VezjgO@-BI4x z6?c;Z#&7)mJ4W^6YPS{L*Oh(Gz<k zyWitH$lo)-^FN*s^1dmaC-VEpPX9e3uaoh-Fx$^;{Q0EoM0S1bsH4uA+E?(L-jWCK z9zBL5$NKYyXCus}SG3Oa4%%_N-t^1@`*wT2#TI}5H}s`EV`s&`Rv%l^^R;DW>&^!m z7M>5D#Mnu8Ma78=Y!R!T3z1b9gFS4c3`_SH=|wHUgMqbzDnN#_6lFZ$~I`7#t)4dPy=(~+S;68TVVarwii`Y*C!+8gp z`~7YP@pVi0mbg2Ug_G>VD3!w@_d5l4yi{rzq+;hCSgK34a(?@I504kN1KWl9vb~b@ zIlaVbPwQQ7-@O0%)6eX9?UrliCBJ;%mft@unb+_9V!pBSJ^FpMV_SGV*;xDW{d$r- zdZB%Oe%0m+4*$W^+U~nnjsVi84JdY}F{2bb-2>Wn@wO_r-$M-|q^M*$~y(^lV4z+#c_s^U67dP*iv$uSB z*LVNG<^3zV7Y}rI@695=zZzd>Ev&sZx(%GSa2~@roZs;NsW6}6eYpOyyr7w#{+2ZXUz1a2|7nyQXcQ>XuykkqJ`KJf`|oqlESovR&8?Y?tXzM7yxP z(&7w#%8i#_3*%*yTpIXmE&|_!^v(*M`m4T9751m&<>9U`>ixMtPHt`bn)~eC8P+ED zdAwbxV>_^2c)YQ_CVIQD<;HH8gKvJxc3``(o@_7hkUKtXvG5IBlcA>eB)N5qyQeA| zZ_-Gk{_vTFYWn{u<0>|cb-WxAT|bSvisbie6w|RKFL3Wm^5fLQF83;A!_CRva#Xwh z9kr~;Y|(SuwlSXlJknuX-*ww?QMIxlpZKOP(gURjN)MDCC_Qj!dcdw#me&gp&9*OVU3#GOK(gURjN)MDCC_PYmpdJs@c0Down+JQldosKy-@g}sk1L>E!|a*q-;?j(pC6Zd z(ZYG%E4$Y9t&Mloz;ASM<9jCd+S4b!7iU4n|FDlw`w`Dfm-#cDIDf_u_P+c~ zm*o!q+b6*CkNEhsZ}#soXS(!%C40uF{Rr)Sx-54kd&Z}IGxgr5!~RpL{TQG2^bgae z|BC#-(M9HX!sqWce>Oj^Fkc>rm5wLN*WN?^pi@m#>S@!4rX8CqLbH31@T8=(`Qz#P zHFw{N@of5k;dhc-o`L7HI-gwd{G65VyT8Bp8uujXhVLV^b{ld+LpwgVQfNPP`#dX` zp1*q}V(hK-*Xm;n-YfSJXKU}3^WmuH?-KVOVXL!!s#~)DiY+Xa7Uw@cgd3+i{Ve#i z^Jlkw)BM9QPN!Dh^yAaFrRm*|uv&Yz3)_M1LVLCsnC-ABeJ-`>pxskGt=D*oxVtJ95Y2 zL%+gt$Z(vFL+cy&7xWJtcWU+cI2^m=`+qOnh3&w0S$_iBh3$ost(oiI_2a((iGdwdgoUD)zi3mPe9Wj_wK> z?!(P&7q$c2Wuyu1!uCQDtR2qXq2d_dnR2#WuFndOA}4H@3i}J&rKjnU)YqA0Dz1)| zK2n*QoaC*mPqkup`*a7}h3&w089o~A!uCQTzT$XYv&GhcdhNcq5Im)`d18I zJEza(*FDhMv0_F4>cMNToU^cX(fq|%UwOuLw&U8%y4H3N^mg@KoAfSkUDVU%qWV2a z*t7Rs%NV5xN)J3Xd-sO*%T9x%EJy3dJe|W%6fljbFmraG3-;i5r zN@lssz)i`N=EN{8Hdor{h}U*`t+(?lxYo;Sz`RBrU$f>la3*-Qo6PZ=%ro7&{FEuD zPO@)>lEkj{x;fcoTmxJ3ADHVgob?LuaDVX}aMzb{jko2i`D?wj<2gXF{dRW_V2i(| zwC(VDIR;exdy2m%for{g?$WYry*?auZgzyb)_dxtW7AK?B*PB+>oMmd^H;oBO2@c% z<2>3pyDT{q{#<|bU#Hi48D`_uv)=P7T;tvJ2*PU92y~*p7_g`$c zaQ@}<<}Wli4W#FM@&3JW!}fLMnlIJ=aelI6?t=X0q%&ee`iXv_pN4OOpXk5XRP|iZ zyQ+KjV6Qtdj^m8QjoQzvE7yF9KKK~?WbcE_E*EFPuhUQT3;ncd2!5jfVpG+#YxP=p zji9${uy^(KajeSRsC|da_4JOKv&|J~q4(2yZtKyRJ(pzGxk^9LFZ9#M>-}-(`xWCe zR6SSquXUYi>2-bU2Dr0|uu=O(U8~mgb+2f>EX}=jPHnlPfaiHX8JVA^U~_V*53>RN zM8D8aJ^#n|C*QBKHny&M4!R3XHFc#lsYdPX@>cD+=4)|M#!t3~ep--^mJ`(Ly{nYb1_=*0@ zn53(!=ipi=74h!9a-;T_b+7GO(Y3Z~uNjRI;YStxbVY#;{Y1aePn~}OKhb}&sp{Fk zZta?NHO?}#`c|L)6?NsBuf=rlr+4KyCs#&nNI%gp^wab|^~as>SFx%5bY0i0Y7r)% zP^0#9>dG}=i=!&^r>pYOQlg*e7y7CBjsCdv{VFz9Jy*K-)eo+{v9C5~HEMrhUAg9K zvHO3ePuY3F!hE!xpXe9*Y1W(JC;BfooqOZ*zV5+=>Dhywy$srXriOvKQTufMR6~Ao z`Hk1R{$$q+xKPIzaYH6#f1+RLrzP)$pXk4gNxB->^ZM@oRo(9EyK28dY}EduG{35| zi;JJ~vI>4$To9XnqF?BzmUqBU^j~Zm*R!wp`W`nu=vv!T-DzH<_6sb()+?*dFD}1v zX9Yi9T@aamqF?Bz4IAJm`Y$$(>sjmBOQZIUoUgDhXJ!19)u)#-LMEi2=ok8F{a?XP z^k2p#U5)FxvbS$l9A_+U)c(R6^D8RL15U?HpX@w1ySyw5ew}`zU+AYp$X;JKwKzMh-6PSUi8> z#T^UMFA~-buI*oC*9_KFHz^ng`?+bJcE!Lc|%_YJ+>uV#e3gpJx?SyOJsg}KQ0C+?+=&*z3rNI%gp^wW~J z`2OVkRmLP;9bM1CbptEAs=ij&sQsdva*In3{5cYd<-7Q2xmyTs=)wlDa}`z844 zt?(25mrcjkv-KQY)4hCMUso+(-!*K%sE$12I{dFc4_*}QcuB;D!B5^V^wZ9_dp~*q z#iltw)$v_gqxR$R{oOmfpW^G`=f{=J_=$d@pEkeW`^oz+HqF*^?LgP+!5Y7EY1Dpk znrD~031oS-mj>f1BrnMHC%dk~C7vhPcJ?Rwg?`%oLHLROV;T&z^<33EFwkGqQI|h% z>$0ySPnMnGQz~44N`Ih^k$gx$(J%DV=C{F5^j~C_*O$R6Crz0|vVI<{!+z1a>-@yF zbU#J=0@!o z)sbghqIDJKneA~z$Mh5ZLO;#=ufz1)yydx(@tF}D(oggY{j}s(uTQ>T z#ip!hJ?AXUxAvbZv>#f3s7ISDE&8cm`|;4Hjc)#A z_xpY_s@%+o4e2NPg?`%fRrrbii%nV2<(X@~OKa#{joOdLb>9`g#PxN1G8tPeNKVmu!+t=28nQbn- z)z1rFncM1~fr{9WexhIKr%nIh`;+fiv1zDh*Q)D!yH~GW+P{2x-#UBDC5~CljoNo0 z+tw>;%Qjb-YrLOqyvtsHdO)`*t1jDIHIA>~r&DsVB0qV*&`&*|g`eoZ*fi9$clCt$Uv_2ALvd6D;1d>_wAqoam-CjCM`P5+`l?tH(BO<7NW+%50#>mR74OEqfm zkGr|G=9{g@zx#PX?5F2sBl&eJuU)63U+AaiPs302Uu?>HV)|736R3^a^LeS(dG$a1 z`i%7y4=B zbMO=Wm$k8V)pJF6-`cLFwR)>j`+1gYYh&Iz())>Z<8k*?Zpei66a7Lz4gVwjME_+> z(pA+ncxY)~|MFK=J2z<5K6t2gK@GX)Yw0g4M=)a6f zx~h5(boaSeCD(fYQ=|3^>&i7>i$C*zx-P#tcWslq=qLJxero;#{6zmTK10>B=2N>g ziAL=kIFbKMFpeK{qxSRa z$~9jK-WUDO{O05t5gXD^^b7s8`$zB-{TG{N>bcIn;KAKWTJ={_X;O{a&#Nofd@Yu^ zd1leP;FDFiGHD< zHvbHMqW@x3`Ki7y5*oE1kMlcwUr&*rj*Tmu@e}<*Kdt{~_=*0DO(t??<{M(ri&~;?!k?kPAoGO+2!xEKPt1$R`rXj+QI%rztB$`9)h3f zKUrXHv3r-%m0hd5`{Er{a^v;`1HC5?wsx;y)9zVvn9(A_t$_IfrV{K=_1e4d5gL9T;UuTycE9fv-Syn;eHbr_ zE1U5X{X##DJO}TsrvG*?cz609Z6?8buIhJBz4mt3bZy+yXw=^Q?oM6#viug>^{4#% zqTP>Yx#dae-~1o;C;EkcYCaQwqW?CW_@11f7R{Z1`TVp)E$^=FN+$Ae*uK7ObCqB1 zkGuGNPp*57TIeVGg?^fTJp4ret^Y~BKZSa(TisjrMa)d@joM%BvaNFJpUE}9`XzrJ z{I>k&@cXUV&GZxf68v;B{6zn4m|CGfxvx0gfV_0DyS8EnKh%mWT+IQ5K zZLV+^R`AndxmW=DiGB%wngl=5e=WbS;HNb`HxBkLuURUBpX#)~XrSwc-nwSEa)P}t zn%7mb^Ma|064rvBykF?2T~F}(1UL`|-H0azuseD({jz+i`_-A1z1Q!hSh?NaPxadu z_^HeNOlU0w$`RgA|CB44JKu}gkba_H=qE;{|5|=t=%=(lExl^4^OVU{_2B>x0$}M>gSinle$-RlGNRLC4G8j{#l1 z!2cMK`&!DK2``P~R>M)3ug0XNIIJJ*!}@Ky2lZpUnP^l$yA8)qHR`IHrMbWA$NI2- zo&SXTvEHm-xKGG6o_mw$U|)azm2;=Zd-hlTSRdAJ%IHYj`aG&)fZd0>~l|H z*v+u@oGH>%`i()Wr?!sITF>1tPk-Mm^iN+O*01w+)Q|OMu9wYU)M+)m0biTf-7hUY z){7zY7|)RPV|`e^T|0dL^z~+*te?A%=&LKa!x|#8eyk7c$KUT`y_sZT{nA=8M)e`<#jtwI>SMBg ztPktQ6j<*K{{elm@!cJMnCM-+wtH3mLqmG}?JND_U3uuGDbKKy>?p3{?LW2OSTzMyfa1xOoObCe7a~J;wdc<^Ar0>C~yGPP)ha;;;Sg zu3bM}G7Z1$+46J$y=mXW_uB7|HZKRaEJ3()C4N_wVUPd4-Cf_$|L!jB`1`K2*213U zNyGLt=YhxJcXyLNo16abZU~3klJvKC&G(ZhyZ%$x@9vtvX1Gth*zfE<-L)xq8E2QC zudGemqvwbCT~~(LIQ6V=emVR<{KNWwcbDzJcA35s?ZWn|r%e0P#(q26J~N%;tsln= zehJx*G^vW#To3sk+9kF-P;7cXQF!>5F~FZkNNH)~GeK=Ia05 ziP4DM%r3Xq6lpZKOP4DM% zr3Xq6lpZKOP`E>1y zWaWkTC+}W``^0%4?5?E+_wx^(G!H4I_w&CvNnYpgi}m;SSI#Eg^Z)#QykD`J`}rSB zj!o>d_vL1H1E}3MKEvHJerdsd<48sK^H-PZ-t*m8G1x9_2e!+|IF($Lwlirz?!v==@EoVVopUaM z&7`B;@iN7wXuZ6er#HX=1Ygy#-;pFj1C z?N{`!Ju5fw-{16$d(!8xY}-U$tp4_FB+J|7DsT1Y^9lQ^>{FtId3<#C=EwP+uPhkn zlRugV^KzVz+&J#Yc40eEw>G^T?ZWm##?NuOb^YBcgz-~%7=OTh?({o~$MGb2|JeK8 z^OQ;Z&F&emCig}wr*CeYztic~2ddJpulxB|CEc==>=!86FTuV*6EI-AupQVgJ$+~w zw$}tKdag(||FTb|cELEGe{L_Azyt%f3)_M1!eX+$zBJ{DJ6?D8Kf2@Nw7I{#?;~@+ z{L}S2_WbdNyFNSco4fjc^6RuX3ov>F-Z1)=k9^a`&V=? z9_a4o)_oW9I2yS&KOb1%RWu*?tvilv8ISqEi(OhH9ZABF#}&>mrzA(X=lE+s@4wp} zf<@<-Jny%@Xv@KJ-p_W3^^NU?+T7}VdD0H7+uv1=aUNsuskC=}OTUuj=ZuA>zX$eqzK&MEsXQ+FNpY*h)<39w1`iS_>73pjQFe^m&ZqWd`#rygZ;B*#sjIolZS7=KgXNz$n%od z&`p4Y!7;>q97<+tJJJomKac~e)Or$0N-o1Yi)yOAHqTecs^TQSC4 zF~(al##=GQTQSC4F~(al##=GQTQSC4F~(al##=GQTQSC4G4w=?@m7rSR*dmhjPX{C z@m7rSR*dmhjPX{C@m7rSR*dmhjPX{C@m7rSR*dmhjPX{C@m7rSR*dmhjPX{C@m7rS zR*dmhjPX{C@m7rSR*dmhjPX{C@m7rSR*dmhjPX{C@m73xI{u1hL_9O%b0U6W#4n2Y z#Szbn_}qxki})oGpC9oB5zmgeE#mfwJ0hMF@!W{#MLa*pVLb5je=^S>$UMI=wsT0H zKXAX>lrH3+)A4?+z*j|lPQ)`KenrF=NBqZm=J^ft+j%C=Z^%4FUjqC2OJF~L3GC-D zf&Kg?u%EvK_Vbs(e*O~J&tC%j`Ac9we+lg8FM<91C9t2r1orcnz<&M`*w0@A`}s>? zKYt1A=P!Z%{3S5-MgE7ri2eK}#D~6UKlDWmeGx-n#D4w~()06|z<&M`*w0@A`}s>? zKYt1A=P!Z%{3WoTzXbO4m%x7h64=jQ0{i((U_XBe?B_3m{rn}cpT7k5^OwMW{u0>F zUjqC2OJF~L3GC-Df&Kg?u%EvKhQ6qMpf6%Se+luSFWL`%5kp_Z&=)cEh2I}gU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cE zMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyRhA4z=?Ltn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cE zMGSorLtn(u7culj41EzpUwD55^+gPQ5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cE zMGSr6{ZiByG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^o93dQeVW-7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC-p@^a5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtprO2=zq_eGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z;qzwH7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4zGcuTo#c&=)cEMGSor zLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7d{V9eGx-n#LyQp^hFGP5kp_Z&=)cEMGSor zLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp`2ehuo282TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PM zhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`oj11 zP+!E*7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCzWiY zV6QKMy}ktY`V!ddOJJ`rfxW&2_WBao>q}s-FM++j1orw8*y~GRuP=eUz6AFA64>iY zV6QKMy}ktY`V!ddOJJ`rfxW&2_WBao>q}s-FM++j1orw8*y~GRuP=eUz6AFA64>iY zV6QKMy}ktY`V!ddOJJ`rfxW&2_WBao>q}s-FM++j1orw8*y~GRuP=eUz6AFA64>iY zV6QKMy}ktY`V!ddOJJ`rfxW&2_WBao>q}s-FM++j1orw8*y~GRuP=eUz6AFA64>iY zVCV~fkAeCkhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PM zhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzVP>5s4rsZix~PM zhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkBme=myqB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qo zB8I+*p)X?Six~PMhQ9Fk=cq4Y=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qo zB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?S z3xCg&`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qo zB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?S zix~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoBKGq}s- zFM++j1orw8*y~GRuP=eUz6AFA64>iYV6QKMy}ktY`V!ddOJJ`rfxW&2_WBao>q}s- zFM++j1orw8*y~GRuP=eUz6AFA64>iYV6QKMy}ktY`V!ddOJJ`rfxW&2_WBao>q}s- zFM++j1orw8*y~GRuP=eUz6AFA64>iYV6QKMy}ktY`V!ddOJJ`rfxW&2_WBao>q}s- zFM++j1orw8*y~GRuP=eUz6AFA64>iYV6QKMy}ktY`V!ddOJJ`rfxW&2_WBao>q}s- zFM++j1orw882U2oe-GDspZz|O82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?S zix~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qb!`~-n`-ss#VzkfyXYX48 z>nf_Xchb@ZE(#(_L6jig-&z%c@~9xqqb&{4LTL*WD1_7GqzO%OVouto_-I7bT&~K) zSL=%iiuHl`K&=XGX{!V&PetMzuc-A2SMR;n7w2E!toiorGiRUVoTh10*t^}CS+mz# zvu3TCHEYk_dya$EJ`PszzGr-RjhI#~UugVldJ zSpBDi)qgrz{ilP~e>zzGr-RjhI#~UugVldJSpBDi)qgrz{ilP~e>zzGr-RjhI#~Uu zgVldJSpBDi)qgrz{ilP~e>zzGr-RjhI#~UugVldJSpBDi)qgrz{ilP~e>zzGr-Rjh zI#~UugVldJSpBDi)qgrz{ilP~e>zzGr-RjhI#~UugVldJSpBDi)qgrz$IsxKe!Th8 z${^tQaj=db2kZE8u#O)G>-cf7jvoi>_;Ij~9|!CBaj=db2kZE8u#O)G>-cf7jvoi> z_;Ij~9|!CBaj=db2kZE8u#O)G>-cf7jvoi>_;Ij~9|!CBaj=db2kZE8u#O)G>-cf7 zjvoi>_;Ij~9|!CBaj=db2kZE8u#O)G>-cf7jvoi>_;Ij~9|!CBaj=db2kZE8u#O)G z>-cf7jvoi>_;Ij~9|!CBaj=db2kZE8u*M$_*7(E08h$%4zBfJjX&J=dhhxy51#G8b3FJg51#A64IX^92cP4?=X&rw z51#MA=Xvn?9=yPVFYw@n9=ynd7klu99(<7pU+lq4Jopk1zSM&+^Wdc(e7Of-;lYg_ ze5D8Ld>~5%=HPtbV4V*ftn-0`bv|&g&IbwMr~oevzW z^MQkPK5($k2M*Txz`;5nI9TTc2kU&`V4V*ftn-0`bv|&g&IbwMr~oevzW^MQkPK5($k2M*Txz`;5nI9TTc2kU&`V4V*ftn-0`bv|&g&IbwMr~oevzW^MQkPK5($k2M*Txz`;5nI9TTc2kU&$`r55| z_XiHv`M|+CA2?X&0|)DT;9#8(9IW$!gLOV|u+9e#w(?!z$rr*_z7V$Zg|L+`gsprb zY~>4KD_;m(`9j#r7s6J)lRf!D*vc2eR=yCn@`bRKFNCdpA#CLfVJlw4KD_;m(`9j#r7s4vvt{?T}`4v@uq_{-gL0Wn-11^)4>{VI#}aP2W!0PVAa>q>+;uY9IX0s zutL1F!78tVRbB_H zybe}*9jx*?SmkxF+SkEqUk9sw9jx|su-ezbYF`JdeI2a!b+Fz~I9Tr|2xDHZFn4U6 zp%q?N^K+wLULSh5_7B3n$Ef}Z_urI%ecfyH`s}*Jb$#-Hc*zU@^dQy)CrcjBi#Po5 z9}Nup@Th&`Y|TGhr|Huk9Ad_1)=t*qBauAul+X^=g=x@N6PPmyDuW3VCI-R8gMz-v zN0~F0T|puEZ=VnZKb6xzz$vOpz-T9rhL?RI)F;dKWlFoy4zx?d0ct1OOJ(eu6$CHd z?&Jl0LF1}bMWvv+GTlEA&w;0F0B<$8(llJ;<@4YE0;;Z%Pl$J zs2DqsiMPv!Bh?;Ei`Twquh1^E1MO0kQ$I#~X|0cn@4?Yfuc;4fX|cc8Ptq$VB6;Ew z;WfKHOk@4n4UX_HItUJ}cW@#2cs;euzv?k*C*A$pMLpeZE7H|-+cV2j?bYYE zw4^(;ZL88to3hI@OFL46(w1t^F6~KmFHJYM^<=u2?l~b7PKgE*4UAh2$e3>wpV8Rd zwyLc;-JLytRY%Xb6*dtp(LkbsaiswXfsR4Yh){@v^-1Qy0Bcwk!3hXfBL`xo0fBoT z(zTpP60k*Mwubw(e8aShO)NHeqNYQy)pY7fnnqX#i)=uLHIs^p#RvS%M6Ff9L_r#A zdi*ZLhC45L%KCKCfQjpFQ1eq-x}hToEAO-toLyU-4_%ak{&U1%@mcg(CHShLOX z27JbL!0(mwW_#g1w(%dgFz?L>|DMXR*KHEBmT`0Nhf19Jh{HjDmWy#~e-(xc)|hm( z-0ZC}4c@DE@p&)Vp?a9{Q%%=hd6DVwOnv-41;Z|fim0r=(vI_Wzl|9$kxDN*d(Oqv zXE!cb+}M-Jv}YT8x>KFmmP~g?1ZTMHXz3T1S)VV<;ZpE+@rC~>sejui?y2CQo~V~l zPY>GuYwhO~`t8gtyDHsOM&veH`Z;o+=*v_N3_TrV^)$~Toan&-Lp@o&P){2lvi-V9 zzw+DJ+Lo33+chyY#21a0zM;(ed?}!($yQIiM*VOdgXKu6C+dZIn(=F^C#%0G4f1|F z!*SQxkG#CA>k&P{vZZuP>WO-xo_c?vdZPaPmiq04cCcpR;}wHPOFv)g zt6mJ(SgeNO%h8`!{Y&-q>uBI5z6X#v(kGz=r?OfHGYHH@i64FuAzqX-n*6b20DuMz% zJ@t&vcSNC{?4wc^o0NK@UZ^J`QGbM))^+yGOLaD9n^IkA)BP8uI@9gEI&wN%`mpld z>{8HEQxQGcM*?|`fSwje3F9=}(!`C=QMdwAAL{87#*CL4KX2%^^F`kM4dUhMtxizD zOSS=y#?Oyi1jfsL{LJf)kIBWx&qETG4|#~gfw)`w?-+y%!^J%d1lOoOcYQBDe(v3= zdSDvEdQ6HqPFSx$PKs6P{6Tvv+tZloN_VFu;3=}dp{}TCj{TSYmHn6Z_3YQm;J8^q_4~IwW`r-_cB>TLX)o}Z2v+@;-W-skXe3qahH<3#_BzyCvTohbjb*Mf7j|8CeE-+zaGsQtI$ z+wtoh1%m9M0`_0l&;C2~u*y@c8rT2A2(%b#Z24&EM;nJis5gtBM}KOM8Yos;7q3$< z)YGmG{zSb{PwO7HdMeVdTsv2_rB_dHZtUuYPwZ(+mnQD0>7`b-Yj@K%wm;>)yduno zi$kdw>S^PU>WTXEWhrQ9)5`AbZp|B3&t=k2pItqxyc+!$h~Kq(y3)He!Gi&^KT$8# z)0FS2o~S>cv_MatsgAUdGz>gi`m=k|r7ndPm7?ySI__TKVK8ow7E@2uOQ@%xsGg|5 zC=K!j?QCw#cD1KUUU(TT{p|9p^TjvtQ&vxZ_pZt`U2ueYvU;JOHvU5OME&`M1?|kX zrkdM2m-~3d;L*}ADzCa&G5-1w?N3j5SBu@(U|pDcp`NOCXnZoo>d#|U*q=HwJ#Cpz ztPeM>C_!HZdMcBCzNxNS!h@2k^Tjvt&#j&SV7}vc8}2@tdZC_LzoUAh{tV;DAJ@)h zBI)vOc>}1qv90uXkVZ>iAJ(dGK9x4hMj9a5dyDAlpnNm~aokZa)Kk?q)f4sSle%_> zab{ztyDi<>lS025QS8yuhjC{0`DN6a-->wGZ6Jey--gL52~K1KcCdK z)6VNy@GQfZkCxu7caGATU;20TPe*!zrT1t$Pfyef^)&SX+n;Q|DoIaS=}fEIM(j)A z6|1K*=#8H0I#cayvZYn%H$dP&{4G8nmscAL4)!PNg?i$BCiUkNx^^~Yt-}JS&Z@&7ecW%1(g&%|rn>rr4d*(-HpRu{MVZmmRVe`brPu_Xj zS)Z$!`>9~F$gug(GjFZ=%!B9Ey!VXv)`<*tzdCv8=F2|y@tMJvZC?+zoc6V^H~!-8 zcQk!;)13z#BK5ET>XgGOw%+*78@4X`(5tt;@|l~r9RI^y-POllU;ojMy{dlEq=8z< zpeLjqy*@_U9+l#`_jl(-zcKwK+VWD%V83&}IAvz%-FMu5`Az@WboWh{ZhrHV*GvD> z5#(&ApcL`Jzwb zV5-nq{Du5DaW7sWZ$(v2xj}LV*Q4$ScI-Ga2(F$j1+m9#CL9_Zgs(*NR?uTnM=WeT zUf)Ngeu@!P+SNMI<(VH|f8ALPS0chi}$ZsuA1X}XV>#)kAU1$f|g+#QM!Xtn48vUk~cHnb$z|rfhLsN~DlW$&C z8?Z~4WEtQ2-@Gyo)j;0&uFK%7p1Zn8TApYi(Li|`kO1fy zje^|jU7xV13aVszuOgV}Jy=|Hp5Dv1+WjGOf{R|LU!du_yY(B~U7Or~Ytfn- zPV~#;-t>r4XdW?RwPaa81cPi#URU@{uM~#|=|Vh9*E?P5LVh8|X%mqp9r0M-21^(6 zvvg}G=hG37bX6y7eIdV)PBW~Jc%4- z8+yH!)7BeS7ktum1=dGA(zTwcbRj=WICWA!9q~xF%gPz@3+Xh&`iMumbylAtKTEfE za(;cpBi#nuZ$o~TuHk@uI^vOThLtnq7t-bHlX#@#I0^Y#x;Yj3^%0MB7A*+*g>i0Y774*a>eO0~ElP~H0enfiWlfJ>ylP~KH`==F*^u#B9 zzojQ%)?198_@p0X{p4f&$vSI4>V@?apY&C;tUt5#?3cypi67EiKS;hDw|+lm{Z$s9 z^n-J>e)47g#psDo`l@p*J^iuu*G1*G_#yp5Ykw;T{bRBEt1Le0`xo2#E#F;M??vrr z@k!rso~5^ZsXy}Z?MHml_ggy3LH!k@Cw@r3Nb4tGj(30j(tiCGKcu(vlP}v{l-}Z# zzG|-4Prj_bnEb>ieS@`ozvVlFeyd3TCqC&1t^UZD^^=dUf8vwAYM#}fm4o9q^l#qy zCqC&JN02Y+it5iBKa`JrDL47>I_x(f0OJ+zB{KBQ{P=|O(+?K&XW)x{3tuMD10sRR zlid!hxtx2#H{~;`AEs0PplfO~ev!Yn27Yk|~$-9 ziG-Al zg4&Gqp+5UkFXnR`D8s=u?@sT!Ugcl43-l%rsV7Kk>{2OQs7qoFm(GwrtPyQKmfMTD z9B%nM_9g_o)JlaMZ;wizdL2#8;8k)P#QmXf z6#*wsyjUVcmDJrS%6;EM>LrIKa`8>t)+4Gx$Hfd{)2X)T_^$V zW#GPBM3?p3dF@}hTW0+;w|yJnvqTpcTYdb8O;Lt}{$q}JU9X0J^%=7~^l{&!UR-fq z#aVKOI7KtG3lLa;6d9a`gQM5RLmqa)Hzyo#-xHzo8c;+?ai9D3p}$g4*o53`gJ7Vr z*sMdKoc@pgaN`d3hxC)YpIB$(QTj#t$tder+NB|k?-#rPD+#Lks6X7eT=%46y7O1o zKmM>he@HrxyIp^YqhIX#zi-=loAFgt`ocWhWBlP0+l5yAA=6lYICaud0nXBnJpLYu za&ddJmCn^;w3k5oL)w9MX|;Bxy;Pi~VwbM1PBg&ZHvaH_Da3Pb9P~$c-i(9(kT9?7 z)$p(X&P^~$I9^wQGsGD-1OBjK+&raRCdylgdX&!9671!KcA*_;7m7i98F!=l#at&k6#Zf!JkB%|YTLFi**T z5AwSV^A5PK0;gd!>>uZKq2o#abUL#XRQk#l(=F!&FE zzxC(z?=$XI|4zTp^#b0nbNyqNxBhUp*cS2br$or3C(53m2cA~hiw|7ni2C=|i9a*X z7nlzIm-^)?Ka2CvhCJ^N`zz_#Uw8c|hQ78!`YR6W&$m1;AJ&US|DI}ZiHv_YwBp~H z#`^cuDvt_qj(kM*wJFB1%EkHj(zuRX?^t2bF0=#fLc7vlrvAP!&kAazzvpsD2wyJ< z16IglzsG|8g>V$PZv6W};(%?uEB<{TxV-XuIhAg>zpx9=&9)!=xOxWy{~lvBA9)8SBIbP!Qe9+^^y@BuH;~jlDWF6zQ z$}1{y#`BAoa=a9?i_gV}qrApL9(LIv?WQ06l?YWzkBa;L(r?c(wt(Ltg73r<`TM*Q z__?kD_M&_}p#Kg?5#t5M4}4F6afQEL&p3i{1-W8PW3KpJ#t#)0l@sIQhn;8Y-rY=l zf1~sMt`lSCe=?7x^oOLQKdky~41J&X`*5{=)(@6;e^`M*Cx?k246VcuOk?AR%85q> zI7dFB`ihGml#7cWO5-|my<>$zyU-4_%Z8t;U1%?@AMwIj+np?j%*w4*nDGPdLtbsB z8QqT%xV#TR{1Cm4Ymr0a2Pufg53iYUeQ=cJ7r`ya!Y(*Z6W@+F*gqc__ENbImAK)-t!%?@S{xj;3qM?E9Ov7G*U87Gv3BVVt`Ax~#5j<4 zLHxitC5l%O^a|+qgp^+;h+ZCddD?|`pk3$(X)hK0WU)&}WW2~;hk*NT%-iem1{;Un zVp~hQ5axAH8EO~Ns~azO1~*pTDyN4T1H$LyEEd->-sWD1F)YSa5$!@d&@L2`_98r9 zQ;e74>{2-~KWg{k@zSoTlXblTcER2SgdY?ErHR3mzrIGk56(ZnyW*yTvdm!7o(`sgX z^NCG=y#M{1Cj8-dHY^2So)H2si}7jpF0k?aLvp>s!-)fdvpahifDZH3c-gx^T$9Kn zdlyudzIOq3Mb^Cw;xschWy9@VFd$X({%?{fIBGxMC-ONV-^1d2T)a<=NH{sy>6Sw5Uda>wVv>~S$$aASV6<1W^%*QMS zfq$|1*5~5G#dz+ka@b{ow1?yE`yz;dBOao-XT?!S(@1qnEMR0RA!=Y>*$dnv-$b2JLS$UyQ8H}X9XuJ4>OFZ@kBy%)2r zE&Ya*ex7%I#+-b3*N@yDW^we6o5~ZNkAdI+rfr7*i#&P5@2Ko|Q#o^8*3&Pu-%;7` ztD^joU$k)aySH9z>x%O3pJBhxvER+~U!eVD(7q49VY5D0t-43kC@u0)z3Vl3m|emF z`&SDd>lc;bf6#x1$|Kp>BcvmqrJF(dZF?MX{`XMCV|`0b(fa&){qLxVN4g>VT~f%; zR>*fJDJStr*J{553HgPBzSOL`k&bwz+jW}C8S)G3%cmnA>3UC9x{#lxd!scI>mwfN z8Z2GNFQhvnPfp^IZmQL1$S-W)0+VBX#3S8COBeF9bZaN)(-Dt!Q?0#2eqntL#&w7F zv0vE!veCjJzp%c1I^wauA*&bG%j%jZ4=_uAt@(bx)efZ9c{)OLJ4BGEj zNY8QTk1N>Gd}ro==fdw)tluKNKTb&BZ}G$W?ROiLgX5%V{oZ#TgAM90$(QuS>L)(y zZ#c{PTg#VzA@qyXqisL&N#Ae3b0J@jpJMdHC;gz+8~Jh^Q4ZRL`XfH+tE@f9m-Ljw zrzd_$&-Pn6I3A1Xugc<+zTraEANf-M{`jQ)#3y}~wIBJi{$ljRCw+tczKncH?~n7a ze(yWC1{)8NFY7HzZ}D0GAis06eCa2O>5urN?>|@dM>(iJ^6~9Qe9{lv@4LvCbj9Q+ zen@||9Y2)A`d8m?QGbILpY#p3|B-K~f5r#?`0@Nlm5p=Am-;X8e|G#4pY``!dr%Jc z|6=sSCw&9IQ?x1DU5uXir0=KxtQ_>e#l|1;Nk7Q`YwHi?_x(8iuh)O8tlh|$@`v+- zr+?yy^;7?rFWX&=e$e8Rp8b=2+5R~C0YPRw%XOY5Tk_*tj+=hle>e|tT(CZ*i1qm0 znETGIO5PiEH`qHrq5Yd_@4xH%&d`g>TjwDi*Arstlke=J<{8sG{8698lC%Tu!b)i` z18;e1wwBAf84mNE-4nHP_gj~IXJ<6B$Ns=BqS%1r?NP~#nMOSFUNVls2HycGr@x^8 zm}0-PqhIN__Z9TN^ruTae~K!2uXw)X4>_by?sQbr=zGWg|9iVxM_{^cs``y3FE7u3 zkdFN{mcH);wx9AnA$)6#gRnxy{<1x0ojCkHm*4BUXDM!-xcu*QQMdBXmtueYPM3C| zUDztxOSZq=5(ICZrR5FvOMbL`>(uwXCxnR~O=$en{Dx;+0zI*y|aFO8%BnH@KL4mMbpe?xn4l;+>?p7?C}W)5d*2laJT47zf0 z&%sLP8pCWa6rn#MKB66Hmz~F{U1%>ArCRLr^j0U9z*z10j)=ATrKiGNN5+@fp%#%r5$j6CI*Nrom2SAd19I_J;a|)y zJ{KPzj`zN}hVimax)9^+KZy{f^eDVIZx`|_r^J67BcJvK4=WrmcRudE zghq1Nu-AYH$ontekF|bX@5gwb#^)@2?!t9yKF44i(^4Vs)6bR^-}h8hykz3{Z4Zd9 zH%(ol->ETec&*NJgVmanU$K;anRFcg{YS;n``@Wu`S#h$x3u-9qof@;%>7s`Xz`tz zO$**j#QoSyfcj*VHccD zwjcX^D}rxI(f;?H8tp*43>~j_p}qWejyE`J7ud!>)NA8@ENE-`HLG_^o#-4(@yXW8|_Q|EQ~KSL z|E@0_QztUied767707?a7yq3lAJ2l?_@qTdX!+Jl+`$WF~#`l{!<#3>-4C|@QlHO-=?NN_?wS>IKNn?g^NgcfEgk3Ub*IPB_kDMk zlJWlUlCtgx8F!ldL31xD_k&C$bAi5pfcwGb2}hYTM(~&->MQPk5S-A%xU{5j43lwE zM7z)qw9Cdb)h@J`5f}TO1&hPEN#0fo;pp>*lZ&+Ny|%o_b@eSlhqsLOakd4K;SW*m0xUaCT6*TI@14VyAqa-E6_=b5lH@`$j&Rg)|O}JfD;A zZ3kpEY9QDUi(goX`ij{FoXnFyOQvukkMUAMKSn#yE{q#!uK>^G`YxOOxzAo}=NE-( zm#@f#x?Rqw-oGp`4%!89^t!odpU-KG*HC|sDGVwPl~>#*3dj7rYrPovcR&hZlVWyJ zPO`vakJ34lV(+H33++I=Pzu_MuuJ=La*wfAPMf+b#d616JH`2>XzXqG)s#IUj<3Ak zoW(enUhbX}?LU4D&*vCt|4Eu!isbRnx%TDrx#8v3=W~@oyxgVRcdRjG$Pas991REt z@4t9I#_yzgpT_qjd0)ooa{SIES_#%^za(R3u2g>b;eC@oWP3pL`P`IW>HQefCG%~( zUax7CUtFH!pL87mJI{-uFSs8Y%lE-?KUV(x;Lz81t)GducYl2!oOYmHdQVfk&|ca` z7w0?p(XGfwr7P{>A*5aK3_Ms11S-%?$cZ#+*IkQ49AjN8F4Xe?L|`sV%@c`oq5; z+cR88FIO=RunX?T7-#Rl_hU};ac$N6v5IHS{TT1Rct6HA^FEE=sd0Y*-iPr!UEwDHffV37hKUo;sEGT1ZSX#w*O>M$u=CtPP06oV%JEM+j{mAy`g`p7=l5$L%ZH0q zV#`mrQA_vlRd99h3F5T`8nV`s=7jyOj?sIL!-uHwG?P%f@7md17DddCWb zcA*_;7uH96DGVLD-@!CGwcq1R6P=%7^;~nyZ>O62Khw` z7d3Uab@jA$E)SL;f5HhT`UoY!*9wm9(joRbyRX=k*Xw?C4cxD5zV44QxJ}<<*!ifY zA)(ETcAr7k55XYYpxsZ;uZJ-DS+xKmo~4^&_x%g`k-+{+HR*`Q`Zid)ke{XV_ZcJ} z>H6)y5h1^jPBW~Jc%++R_fZP@g>wF60&-+p#Hk&bvFzfewR zzo}Bj@yC6Xs_b|qJ^QKO@1P&h6F;Q4@+kNH8mvjaF(zc)Yq#v~PQjS4ucYpk`{lq7I1NYIga1cA06i{`X^t17N7JDb{|9X z4gH^;kNot=U^q=&D>=&#LDehB$DzgH1I>tV9mtiuHBl_I1^=2L4OsCAX_pRracb`f+-VY7N z(LW3Jp;HZF{jij~U!(4Q@(2E?PlTl%Xcr1Ydl~o%?nAe|Ug1B^R=jKKqx;a+YGHsf z99Y-I(P`mY1Nnb+{Qx(U@;=7|NzL=zI^k01qZWbLk99}ne55{)ix1~x?|TS#sTDCe z-X4`a`_ypKSrr#W0p9_+N`FEBvFkp)Z=zorpNBVPrKH&NQDm+4b2-dkYGR^lN z{ST|3U^?R*3(qOfe~^y-v_F=953Y0d-8@T1M_s_Q;63nzcWa&N8R_8Amw)W9>s+)0 z?ZS4^UJBnPx^(MYojteBI{76%}(QTo$u$UF+q#PXf~o4b~ramFEvh$8onI8$<8!ld$CiJ8$zl znc;iqS=LXPb^kul!XMf+)*sH5uUT-8d_?v2;g|_dxw!9QO5-|my<>%e{)BjncA#Bm zELFSEURuArM>0--&lh&V`9e9-kNu+}xKCQSAMTT2?LfO!HCwynjT`s-y=eD%`aNIT zEv>5;29(#|gW{j~BTR?0@?t&>99Kj*BO$Gzqoo50|f#h2W5+p+1IX=gr}xA(vgzL&X2 z_|?o2deD4P@PL1c@OrP%g9h+7gfDo#+R}gW%Gq_9HMeis^~htjp#Sp6el>H)4aaT% z*}w&xMTX5QFI`)6!WTX^^T6Z30U2iAcxT657oPmJnzz+Fxk+R&GJ)@v*JkQOhPs(g zZJv2Y&xJK7JaCrOpZ)67i{7^BmP`J2=KmaaXid=9f6C*nM{a+|weOns?+1Q*TmL`j zZk=%Ik+VO3@w>J?@W^emKJ-koPXcr~9*)Tm9bN0oQED0bk^ft~=o{p>^s(ok!8}u} zzebPfnrE~eysO{w`k7C)9aq!-i{}-LE8=2&VxI)Y^$*DfuL`2(rND{bCjskX(WAP~ z-zNd{Rs22)q-7fAvuE>=A16Y^_$NMwW6TI4x2qmpA_e>j}0CDxcQw1rt8w`@27NYsvL^{<$VX~IA6!pf7sfB?}3eC zAM-0gEBAv;Wt?EFKvMTR4dw4+4tjmh3^{k~ultzO4zvqfM0*+7=n%PuYM(2=Bf7=$ zm08oJ56!myD2;&@bDT8nb+rqE9k;$dds0iqbU9;~#T20*LRGmiQ=v`J*}C};!Qo`C9>u&C+ssIX!Pmy@qBlTzMs#oxz@*Lr+gN| znz(j+q)dLe_nR=`jEZg6;?a1b_c8s=cBZ>7RNua&u{fAg|G{L zvz_DZ`yxvzemJH}?!#8>e$`c1>N^{|&!ISFRFBZ}p@Pc#3VyTQ$^pD51n*D_zfzdE zxy}7X`?Kvg+tKa;X*cH=&NotI4$ecom*BfQeD{dYo`{e1AL1POjOoAw|5+LLjA_Xl zJHObp|6+v)FE4MtAszi%!&Nc#wG}p2w7T~+7WxzB8`^<(p00|&<{BK#K1etVS@EOeXJE9|#e_8Tpqc+tWOFRGr?+-5$;@-LPMUn_Wi z7ag?UVm0tvEE~^NHEF!r`we|}X6m=c=36Y*55XW?Rf*qXg?N^3mu*MLFVqR%gm&Km z5s&pPvEKlN{4AaSEf(=e*FRIgjSBgNbee&ms+KJANH@c_FXX4_^7o|^F-MY)c%++Z z>kIi=y0w$@>4--<+BM{7=^mbtPe(k`QLK<(NT(Udi8Z$d+h6$Zd&5Qf_bJq?ucwgS z;*-ArGNmV9();ZuJ@H9DX!|YYV7rUePkhq%+xCzz>5JCywSTZtSsIHFIYeENne#xdh(_IiqR84q^JF? z92_UqgI_=W6zO@Ld|5yF@H*rl5P<%T_i_D?^&IcrBW1OWOdHg*R<>J~W@(ZF*{16Zp})(f9oHcwicXdux*qJcyMi3So4BpOIGkZ2&$K%#*}1BnI_4I~;! zG>~XuG#V&xJ#hf<`9_Z6-=4(#mIH##?+*AK0vYi81b%P8?+^I>lK)-QBl7MxzGK3H z_qQu5?l4~p0*-!%u%S!$JZIY4q3@}0eE!eO-gm$s?%;dXq~rU$JFkrS4xwPr^A)p| zH@{05uBIUPg8i;Sze4~mzC*BS>~{!v$TtW$M?RwZireE(xw!8TO5-|my<>$zyU-4_ z%dSqf3+<)#SIc(@pWo(W5qQh8?SP~EQCw&Bf3rp8cL;=e-SIIw^S*ojcL)Q)e@?*Z zVa9;4OPBQDo8(&DcL>S_@4M?Uu$ympPg!=6>F-QqMA;)nu*(AB#Cq_9fpMN;aVFEA z9Yu|_KkZHXR~@J0n*BnnICfSLREOW8+;royvo5>z&jya#f3=l|_V(@1>z>%L_U{b_ zf?f|X4y64thHs2PP%e{#m)mQlagAZLmx^c?+JSbVzoorY9PF+BRx=I>=Qb;Rs}yi= z^@C-6;J8JTg1yyw-Cky5?BegO{=A8|2LIq-B4$jAxdmsj?;W^L%*5E<9m8-R7tt=X z1MNbwXfML!HGQM>h2iXS$b|gwP<(j2w5#`c^;575_EsnSpa=+m*+1}g^k46IcR|_F z&&%Ii{hY_=nSIK4cW?FJ$i^+$OP71A57@ocPaa`!^}B9AwYIeKmJ{ z;Kel$|LuuQC)}xftABRYr)%E*izPFUs?ojG2Y>mIyB_@L)iu{G&fiGzqdO226?S-{O#$? zGsXT2(Ia{<5G@Dqa`sl|{X??1dS4CpmkNUYV{i3vA0xYOQBFERw2Sb!<@5UnepCLU zw&rwZR9hKc>(zxirk477wfk+@-;&?(SpNPVly9`ZDbM<$1n6Ojm52QO z6!TNH6oz=Dv-|vn{6fO~eT3Z#N z4TtQ z#X2rX&wdm3D|-R@G5b7O{E(je{8+xUC;5_@p0X`>h-tuYP|aJ@G^OB`QDpQhvYRg!C4l^!;|F?!;YzRK#2d|5yHK|%lX>{oTEt>4PQ{zp9)&|7@g-(bfb z<)HqG>7V$dAGCU>9PEGW2Y&s;Cq1u|FYAw^9}wgjcK+r1^pLloAnT|9pdX-KSRYc{ zr;fDG*2WL0ewp?jtM`Rdrj)lnO*-D!$I>VJY(>p8rg`|IK8clR2ik>|(q0NbJzLYG z>rJZrY}ExpbzQR07B#kKQrM+dSaH1V>3z27FX%tkeNW?f`W5I{O4P(f4$wT>oZ;V3iTU9)5`N7q+>sgrSJQI?WcU6#ePfJh*$Iv+oR8) zKr7F;0;akj9Eja-IAJ%v(s$I$=btZza&gbMO6Qu-XKz9DAG8DQ!un}1*$RD25WIDk zmN(RQ-Ti_s|993~LYVl`lzQUx4Zw#9!UYBic4(*%-h5L7QoYx&t`h(Uws4wQB{o^8 za7ll`AM5Do$Nu4S@?jr;U&FA=6Cwo1+mPgSR1PoMA;VuDw^!HN_MzPalBYkTf9wB_ z`ZxML`ZdN^jJN!F6%9te=#Uf}K2}xrP5uaiHaVhecC9~pRQ;PxHyo*cZRauN`8U#W z95uWuhQ4q0xc6_+*E@}t^8f6w{*88^U0PqLcA>qrm7f)V_StQ&#j=lJ-xdQ$_Yp+A zg@gMB(!UYrb;Sz*ioXkLubF^xJlXg`>?8QL3Y;NM(aa|&X+M6KV8m@)s$8P`2$sUN zXmw+Lf%6XSK)Z0f(O&Y_!ge`jyiAsKvZOw|o1*reaaJJb=fC~R(}D%t<|-Fa@@^cr z3K?t?XBT~bD-Nh6@4Xw9?_mg(EU|tX8 z9z-tHXgm+gIF*0&i7^GD)=PfjYQSA&1C@#1sxVOQ<=$iXhPqDRhCKNPV99Py|c z5o3HKu#LL2VINemM-Rpuj4v2(@VN-%5XKo?m*Kk9kX_%73bjal{DI;R@Sas=<>Cp4 zSE|&}cw_ME`u-Tx{uk?fG^Bkw7<2arA|KjN1Dt;3O@1HL8V7*%GFWQ5{ z+)r&;EVOuE(5CWy6VEtt-Q7AnDIqe;ocA*_;ml-cn zyU<=L%_Z=kTb*Qp|FsS9pqv=v@Q;79o&H|Q<6yjjdjcH1t`PsKU9OX<2X>LtiIarm z-z#tuXZRHSkF)*Q$5bxD*#;i_s3W z3pGT0$uBG369m`H3W9+xa@Oi~#2+X(u|pVFU_4;lTy6ac;|;(ZPnpBsemYJQZ!DNK zSNR1&G~Nh;H&vE8RxnnFvy0Ekhgtu4NiklkM30=G9uvU?9PzL!9}#c7A#8Z&+eO~f zmlnk|3i|1iMvyKg%7K0g-<#O8E%j{xIR+qyeUF3j3u|Ru!#IU;3!fu#-GulTif_Ss z3FDWls#i~pi(eWZ(Df3gOJ1h)TkC7$;tz6nDg80&IPQmD5JSJ^l>B(*%6H_$j%{pi z+C(ij@r$9A_=Ra~{POCFM+G=XKBD@Hi(izBi(g9PI&!^Zg+aT}4z$b0SE^lTFH=AE z_YZR0oGh}xzlEdgCI9j}ttH_8{za~v^^$|6KStL}o~gJ$c%}$HCx`Z7^y6pSJV`sy zE*x*PmptbXdps?6c$cK_nw5EKXuF)V2e-`ME~gzgQB4)*IbQPO%Hr!KGP+(p@$VHl z3wik^952P}qFlsq_9%@jvG;z;@j^S$E|i4!QnsZif=$3}q(kFMVC^A>BUL!c>#$3$h|2j1@mVR7KU>yI@NJabm)FLGF6PSa z{<-*k>3PC*=ahLSUb;;fm7>>+&%Zd+-QK*r)rNE<)pbGZhu^^S-cw)k2A&}UlhO4G zu3Mn!fgMNJDNc3J7aXA3@b5saK0^)*q8Yh{qs!7OBwDgC-eaC8?=dUSgC4*248`cP z@2k7@6SQql+l$hSbz1d7eZPqHOuef2p-ZJPOwD+di^RjP!J@tX0Y9@-{*`*vFO+v* zWYA7IN#m363sdmz|5VI(vk|8C3+tMjgVy6uIN`)dX<1ogs<<|IT+G^7!=Wml^P?Wt zD8Y(K36u&B_ATx2KR)EX+CGb;*wJx7Tp%!S`mWbc-L)uQd3n~sw3r;x>ss$v>aWn2 z(YDI-KG9zwzf_20-|CNYK@#TU(zxp=OO8YXi3So4l%fIiyX`f{3F<_-)AJ8}_k6CL zEiEnfdoAaOB$p zK5Tx(Y(_K>~eyD z)Z6`H5ZB#8{m(q+9V@I&YHK8xmVSVP*MorZAmcyAgBx$xc#v_T(z(C&3+vl6%Yspa zgW7f2j~wTMoRNRm;YmEGcBAd0sh=kdT_W$!Bp!6S(4H2B{d}SRlqUI`Xdux*qJdI0 zU?LPsJf&6{JDubRV>DX)LXH5@bO!_tW9cbuHU+{ zXgtXHkMZD=t2O>&oakiJ9OA*1-GQtRp6p*L6)tOiaOjdG9&~XXRLuUse!{XS?3eY` zB=I2iN_9mUrM1wV`j zIUmQxgXHAokNR3%?W^(Q!GiTcyI+Ol^<2(zKJrti6UKx6R&T}P!BW=;8UHaJ?7v3i zFUEZ4FU`TB~xj~W@ z(LgC0$Xg#Qc%5>z>w^)7WygcjwL#>q?<;A2kn?d|Jh&&;2M6u`aiwVZ*^d*Qv!Z#| za>j$yTd{bs)b&Bee~bq=UZ?RF<3v}p<}@CxUewdw)|Cx*>m|an)(3aZO5#BmtH1{6 z7fk&;;plbkM@c-WdMMOiw4C`u{TY=fe-aHO8b~xyk_PhP!2*iW#)J4C${t1I!GYE1 z*||b7`TpQ&;z7>Gaq-{;N|ZN8p%8vmQ-6KXe_lM8JTF#NS$(;=pK}v+sc2z5X!SPQ zc#!cQ-Y z9}oJ^iwEuRJ2+m?hog8e~bsGd_?0f#)+|d|zz4PLd=VNHp-A(LiK< zaFTo3kIf%`eUN*o5W6rn(WVxc9S@FXeUS699}i+pz_l_uKSD?c`|;qDsXI2E^!Bcr zAN^(R=7YZevAY`V?^S8jp6h>IJmKb3>QZ&Xc#wK477q%xy~n`!#m5!>o`mrqLI(Rk2Sn) zEHd)?gP|6kouYFSb*pG$JZSY+EFLU%eUR}VJNv9y$@*YuACpO*7w79Eff5ZQ8b~w{1TG#7Cd!uP z-Z8@ZppBnAq6iq7v&xPKN3%Z2`8X~fbaOgmmcrCuAN1cJ>`&ssh?V^~kg!8xJV?D2 ziw8^no`mrqxIFALMSc@dQ3(CTfp@gUw|t9^J9VJ{lP;0xRU2eJndSX zb{m)pm`)7$>@#H7D_4d#a}=-TAs%na-Z>RJNz= zps=iXaLScQJm}(6*dRLA{5)aexqg)FH{*1nJvj>d`9l3EP4YL&{v2(d^`x>H2iUZyIk)2AlC%*_M#CXXAO7qc`@hXv5E%=FH7P= zNWG0V9%TH-c(C>R8h%jzj~A1`-XFrh&-%;KV(@J{aLxW;|Fc_&l+%O?Z|R z4{|;pvv}}|Bp!7AD>^4d^A0172d&;l8xJ!6V?4O-CmMe-PINVEu72UX)S7g6`B9)_ zRMzw28BIw%=wcZt5&eRxpC=r>uKg%^UaWd3)L*om`9l2}l_!4^4I~;!G*FTT#x@>w z+sy=J#)JCqpgu2-Hl(!mLC(ix6%Y0&?+-?d!uiNg9SY+?>TR^~AmcyAgM&|M{KYuY z)vP&*2iumn%KL-CDgLEW;j-ev!E=*%Fo_5K@i1B#U3EAfao0=j-U(i!fkXp|2Hbu# zG0TI&aLqbxqWz*9(51B#8%AHC8{) zR?+#&p)ejCw0bKR50<+BAmcyAgH>;TZ1bfOu`y0`HEXVZ;rvu~gYuNV=3CtX(#A_`LX(a67tWlD_U><7$ko3yf|M+glOG=X%Yn;^2OHivKH|YX+roVt4?+m^ z5vG2gaP+$NspNUF>Y-47(Q@Vs^=DL`{7E#BXdux*NgCMw^}*79zc>_PudWYrK8}kA zLy7X{D3rplYC7Wj;N?j?sJc>p<;Q{1`AM-D4-Q(r6^jQ;T_0rp$9S;+UX2GCCpy_Q zC-LCQ_MWz`_BH;MlHs!A!HpLs@u2Gy(6Jj^g?U~h9{W$SKIn8v9XZ|PUn_RKG>~W@(ZFyTFv}iewjcGsxvI;J2S>Hv4Cmvxc+j-i$VGoynELC31^ZDa`^`AZ znz^2HQZ#iaj0YR6-ipP8r9Lla{Kt53<3}|fWSr<~)?EF<1#O*8t*@J(THe{#vSxSU z!m`!}cP>xjK^NP>2GKF*=Lr+f^`Rslbh^-<9EJUSq5hO6`I~4U(LkbsQZz8O@t|8C z49biLYXzTYxYrC~#970gh&%B9Am`(;iU+Hb=f#oE<TR^~AmcyAgS$3q zJjgiF)vUStg$px1vi)GNJHJ$?EXs-pr*~$cTa5=9C%T$7SHEykQ+KK>{kjF|)QarxEDx5qA9e47Bp!6J z3v7Ts!qm?bj$YS3m8=h{9t!mrEoZ(^e@5lWpF{(R1`-XFq=B(rA4EK9k8gNeZuWKJl;z89zq5h)f%opmJA>nc+c4?5dGJ5gH|=Hsp#qU2AafkXp|21?Mtp}?`< zlN6#4_q@2I?~C;@o2di!Jg{SjdH#E>06Zm|_e_}ap!0Vi=TX}8V$R2L@gO-Ve?Zas zNnt-8^!KA~Sdy#{=Ib#!Z!zyM7!Oi!#p1zI_nYap@gL*Cb%$#_$T-o}tU1JknM_aX zZapbh7UssOFb4B$3d}vmQ0>^qg9SB5;yPSQ;=w`~XuBn?E@2MclW^9Fdgu%)F1vD}&Y{wBy<*DItBTr^nrelxYg zn`e}BY4ITEd z*ji)bK^rH!nl&f!U}tJYy1F5gS+ScjVOjCuy3><*(DeuQ5vI}c#y&%f5!N(WAB^fF zs=sJC^KsXy*Cb6ekZ2&$z(^X6`cKve{XP(dll8%;4?1p`KXDYM{`#Q*ytqG!2UT^U{-Uu6^A3gaAoW%(9xU~FG2=hRgHvCs@gU(rdpNsS<3Y~HV-*h$Ch;IUkfhN#B${_9j0dT=(Z+*}{}>N${CAB987I1$HCMlI zak_UD9~TQ3)016y_G<`XbB{6g!m*DB!#l08>U`ZN@nEQ!f=m(*7N{gCNHmaW;5n~> zy!F8*U{&(_B$2KX zjYFb&hr)P}dMg$Wmiqo6<3GlOtch_VVWtufwyx}0wwtdG8ZKq65AIqz_VFOw=F)uK zC-I=ujGs&5L0=;YoM<4?K%xON&DG%jL5+d(H8Na0D46znYd%dBGOLeTQ11F5Nb|1BJEHy!lOnp5BN>6&@MbxLIr^d2+M=wq6YLB@5jQ8=HA zgXYyOTG{Eq-Od%$2g)m|<&QboADFUS(@%E&RN6II_v1s(uKDo#Bkj1ywL<)c8jZ81 z$vA|rT66`x+FIG~K)!dg2frV##1|5qE- zx&AlWZ=!jp7uaQrfYclOqw8P3{(}JcwSrIkVxHArE}6)IKK^_8SL#83LjOU3LVEfc z!c2`n*?qT4HnDBMMXcdeRLdVZR^9*dnx7pxNBSmpspb5;@nr{y4=K%`^tSCue?kdh z3CiZD`?o)t^2vCALOqU^KN&nZ@h9wE!}P5Xh5m$kE7hOSzQg$w38KP!M#{{W{W<#O zqx4;W&~f&9A;9R^aMI6*oge1UNv-V3tXvhGI8qJ6Uyt*N!&Bs6-FVqWM$RP%sJu(Q z_-z9Z-MoER`N?JHy+1a14bRJ#ggOx$E^JoCxvGdcTZx8AR+u`Kkwb8Z- z^{_p0;|CAuqWy4^z=#tmqh#$7jWbvl1PIU}<4p%mva!6oh8*UJR!Ql1ekjPmAM1mD z5%mv9WrQK5K9ua+Ec2W>kNO(^L8`E<1|`2fJ1i5jzRf6!;GsTrW}+JJi`xVzzg+e{Tua$ICU%!&LgP*2C0bf8zhf@g1)53aVAk)9%pQ-vK?n) zX~jD(K!0K$*C!jQ<4lTcL2z7vl?~=`9ed269I398X3MTAoz-Whn$oYmDBazY?)9&a1T!8$JFBH_tar8$ zVx00&9b=4A-#T8k9Ho6VE+55-=A$^#d=w{|kK#o0QJiQ#iWAL8aiaMsPBb6IiRPm? znup%DNb9M`ddX97=tDT67xYb>)KRny{SEyReH17AEAl9ZKLO5xa^f1wkOD^ezsbqE zBpYDO8~n+K_$cRrGSE^c(1Q=kP#^m}=U4XoL*&|U$7uUK<5aAR4mZZaem|Tr!(3xr zjCNirc&vApnpS;iwSjm3 z@{*G1hYonB!E4=G8vfL;pRxsd!ok>RJg1P8V?HkK+WE2HKZf>1+c2Kn7H!XP^BwS> z4M){iwZBE}Q*Iu5D1`?7q!hg2a8MV92hOPvyCV+}B6G==)7P7*maHexyE5y&{=eT(%wjK4`gRw?}==AQ*p31I|ww!QaA7NP#C^tt0FRu*svV|^dM`IY)&y|blp(ASfH{>MGPmJ@o*{;i@ung@(>lraxJ z)lx>j^^&*!E1b7LgMNS$c^uR;{Uh}})^R7}j4_WpZCrzPqVKTYS&~N|TzAIfcQFnT z(C7p6A>$zoF72z-XJs&73U^81K4Xr?bjL?p{`M6L+r znYO%Bpl4A0nNoz5epK%-^@8~w8Mr8O|LKr@T+$4m9`yKea07Bwi7roqjC@xIvd)Yj z(*w3{rl7|?V5M-tErZs1Sa4Wy(BrqBfm6$XH&NEHYA4{Nt}3MLU^(RwzDk>);t~#A z+mi?RRhV%X;S4!y1-9>iXzKRhjbIjJRsJRSJsPh47od!zf>!qou!wG*Ju>e~-MGweD)pUTnm~yL_LK(tuj)1Tx=b;*)QY3wc&wI+;CI~nLR#~# zANA~!@rrlT3lENqNdLFaPqA6<<2hLUGB~@k(dWsJX)!sX*R_75S1G3dz`TqmRm+K^ z+Wf_zir`fF*Klt98cT>~GvJHGt|-1$m5(|seDJ{sPsjQ4m%n`dvBw^}zPh@4{fl1o zq86M79dyw2VTpJ1;`5&Oyy>reyi z^;C17a>^+=oRDQVtI8uoy{~@ttJj}%&N;dB&p$u6aN)w-;>C+|ixw@)Em*K1H-G;8 zTth=cuCA`m$a30gr-iaWCZXMt$FL0GWiNYK%bYoLb}U`GG?z-Ha?Q=nxpX>h(q+q* z<*vN)${emOS+c~)16j^G>nx)i)D2m1LO(|waYR}AIO(L5);Bgb=B~Qxs$6GhXYP$} ze4{zLySsB;U0tTEy}dox+S+Plf-IL^c3JMCi!L&Hf=*x~*8lp~zdm=|amTGMrTJ5* zPHjQG*=#n~+uNJF`s%B5Z+g?4a&La~n@zfA%^Fj_a^*^clgVUqD^{$?EnmJo2faWi zkmJ1b&NKR8A36Q>({rzQ#VdxDLHbw=_@U0VYuDzkx#pVOwbx!7o^OBq+f7+tUtjL6 zZ+)wg2Qv2b^ccNRCy)dBKwm-MIrGdjbI<|$?2$(vS=1JnUw-)x@O{TS-jVC?@6TO# z-F3PD{LlZ)z5CtoHYwo$_>cd{z3W}?GB}VAazZzh1M)+E=qp!TafQ*vym|9-7&p)X z?DG8QKfhp{o^ZkmEpL0<+YJBryyrc+8*aEEchgNb<()U)c%vzQ?|a{CWP&X3eCIoJ z&&=Ng%0BqP59Z$g{`VWXuD|~JP!8w}^1tORZ^@yLz$WOs=%W}vkm1~O&o%W! z2S*=$bZ7^Wrv*9&U)1-}kA5`w@sEEzck|6RhbQ2Vee7eok9_1KxetH%!$ua$0ewJr z*oC@4AA$_92V}r_y70mab93j;HT^-xXs83}H#^W~@E#Z#$lY?wExAvA@{{KL)TcgW z(pzu6)s%nY6Q3|LLB^;Yuov2ZeuF*>eNqPKL4NBZC;cmT!37tXzEEFZpTl^ZHf>r9 z^ay^a_qN+^%Wc@OA@`Zjd?xqV&we&M0izt(AzM@q*aq^$cIZ3k7mxwtgfd`kz=y$K zVN9Sey!53nZ4o`RfFA7w|IdBybGh4Zzdd)y9e0H17ryX?9L~>w{_{p2$^jba3wD7n z&^OR$VGqgxJ)l3JPhwoa4$uL7HhjB`i5A!yJW8~R672I>L*0ey1Ss#T^hKnLiH@R8!1cU*eurR%{1JW>7qA0-YFk^I=?CzS;-5|Z z;DNS*|2Mz+&D^)X^{w1pciok{`|i8VxoOj;98Z)1=WAd4nvoYeLqG9lKz~4=#JIrN zgkOVifM0-r#2kt-AbxT^+KzUiUevQ?%a+_d_uP})x^=5Lzy0lR=LQD{bNAhMpGg64 z-n`l92fFZOK!3nE#`r{Ez?guqgbpx&!8gJNuX@$1){Ad$flZ-b)Qx(#ZQGVZ9pCxR zcTAlRJn%s7```b5?uS48p*fMi|Ni@pY|sT|fF5B>^ht~-_$!PF=m6sZ{Qx$AKM=c{ z{&&nV$4rMU(RS3mef##@z4zX0+KD zM?d;eZpV%tMpv*K?1%AzK8bOGK8^lJ9iSgzEMVTmI6(dMfzTi9igu&!?|%2YrhN}S z_+aj_#~#Z)@x&9kr=EH$_m6-4BlpZR&*c94*S{JWa1A=-N1Bl`mU19X5fiGG0b z2!DV+fcg58OD@SFzJd>uKDi$CL+7wD+J(9wdE^n(_Fw(#SGoWF-~Z*Zyh$O?kAM7Q zBP;p>bb#@Lz62e>M`29Dx4DV#e>QDL<^THEzjA;2)1OTJz(;?@SdHp{{Q&*&eeZjp=>x1E_J{95+j)qN zcEI+uIogi;AAkJu+|Pgh^W5)#_q*I*{_>aH|NY|2qer;2La&egpY2CfN@@ z{pn8|AB{c`tsj0!#(p^WuzrctE;o>%acX zv>h^HTwjkVEE$7W60RpY@}UK?aNg*c<&G?Z$QV6ZBWq zkN$%(jIoG55Un5fhYvt}B5_cj-r0Vp66>xsrZQX;LSb=Ie0?nkPSWwa-x3NAML09;Rn$F;0H1O(RP{lcF28E ztlr~fkoj^wY|F8LdRaHh&`)t4eHQ(O{SUqjeh}jyZHMoZ_!IYtCD$F52fR@aY|WE( zW4yBMusy~<=4JRlj61RA4#aj*e!G*G_-VcP@*S`<+KUr;_?>9KhwnqXWuDoAxZ;H` zeBo}jc{mv*ZfKD?bUkE}eziklz8&J*cSwx8Uix;6+&7k0=i)g*Fdz#7T&H=ZR9?!u zz~VWwm)LNEmUyjrUHDCmf!g8MVo-@$TM@iK&bT!kxe^}Lwa8Xlc(Q$q(t?tZUf)l` zTGoURTd^pwtXbRjeMik4aP-?RmXw|@`BeV5BgH7WPDK2J1rhaDTLPv44-F0pc7CM1 zb)qOf+iY1UNuq&71BnI_4I~;!G>~W@(LkbsL<5Ni5)C98NHp*))xg>FWw#Ldpo{O0 z9wY56WnJLx`8}!b#*S21V{_Z8w&rwq_V`sDJ>@A0Z!r3Gz3z3#AHUT5zo;jj>X_HI ztUJ}cW@#2cs;euzv?jw-b8)vqMq(H`O);b?U`k%_UiLnTGE}_wpHn+ zP1)s{r5*NV)$CFcduh74ttZos>?m7MUV9VlL<5Ni#-|3Ne#n2$ zl(*yM)}&q8p380Q*KZ&99LI#y{-^;wPr&!T><@QHKH48=pI3L{yk!+Z^`>bX{<>CM zi0g~w!g+P`=WLUAOQ&_FdwYUuUES$b!L;U7Pb!$!($<}oqV|;h?G4rhR|mZvZJqKb zB@l9Jkek+(X~WzcEbq>&>7x@mnk@{E7hIuL>p60E7Hxl8uX+)x*FR$o8@uX zDhY4eGM%Pa#EyciFFWb-pcQ}64x~-3sm|r;=Ek13j&!ys)zO8*Y2E3j9+O$#wNkcP z=vmpF1}M^-(#*18S$n2wh0#c=xw|RToYr=pc+w0ZU)CjO`s$uQ)Y>h-`zU%rvMSYW zCNa2+e}imm zX7!5nnxI3(1Ur#1=*nb~o)~ne+fzM4fcn$z>5gEfD0r2zu38T@b%!-|n@*5w7R7d_ zTfh}W*`Dsprc2vRzU}I?wmg`I+NQO1XF9+g$WrA=K@;?ddX}RXw6}Gp1t}w(rG45l zr0W>vXM;{$&IbB-nzTk5m`%60qhU>f}-ZRKtDtpeGu=Vw%8tfm?WtywqP1;# zYvUVNrrO(j)&wo`W1VujDbt>j#$O(gmBgRDL8?c7+U1O z#$KzM#x>Hl+FFF8N!A3HoYg38L<>w~8)XQ{*gzR6TH1O73HQ6x(l4@2X|a4uw-~## zTT`jGr6rpd94VF&oo;OF5W&_owFj9M(tq2fr?#b6H>TG}%cT`s#33zLg7(xJ>HE`C zooyY#w5C*3YdSz)wBIeo;t_CPbD4}k%{FG+MSbvjjnRT^MtWD;lpFbip03pLv@w}< z!UD8*P)1D|5rm|hq1G8Ogv~y;q-gKjAwWqCf zc{VUcZ`95s-R~3`wW3YPl5Mo3&;Vi}W2ouPERJZ%s8F04frE{DJ(v8pK^9Td=HqWwzDazZvlq)DCS5GA&t* zH1tKJ-D0}#lnnk3?e*f{dyQUpWsf-UK&G@{ zS+F8#PPa6Q6Nc_&h{GQv5i%swx4V$8PIa49kg{FrCKPqFbsH3;U&WO-dF28T(j9F* zfLl}D%}BdbGOa3&xcAPisV>#A4A+D&(IqRM)?AdV!30LLj8ddBM8(&bnu!KahfC_m z47>J~9Y)?}@kJ$jA2BQG1_ig zlWk2kXIA6V)#CX~C6bY%PL#o~8#EaxVl|l;Oc$|fW9v$pso+RmzdTVqs>CH`TA2nf zAkKf81Qg;eWulOAg`t&MW`OCJn{HuPn!an?R%fP1yn##<%f#PgMPV2yGHIt|&cKK_ zF0Dmk5%D>VhL%7!)6yfePF76R+$Ld&XygPdpY;rxWjfp%Ei8>Pfsx>5*XW-{<9!;n zrvV?%$by*J)4h#ix$d@QGAlQRgG1x1#-8r9Op1nOqXs&ewyaQN`sy@UZI0&KI$PRT zVxq9umZh?7I=w?LiUTW1Pn0M|oqE{TNZGU|S!j{D*y;oUMOrkL&9sA$nWeg{resc~ zTaf4kt}ok>kvK~)x2D>c$)|P^PIz;#ZkzB&&0iTFznVt~IVnZMJ`-;?pTBi$=8vp8)b?LY=28WFQ;LByo4P;F_ho9s#G|LWx=CN?2@ zlVnVUj*N-dwM60&ctq2}Ak~7n1hZCJ;w(&DNTo|kblh#G?9P;gIf3+dOrV|OJ+%|2 zJLMLkOM>oIa?041>y5Z7L0P8Bx?v=4R7$X@1-(d2pEBd$&QMaOpy(eFlme#3h=;&R z*qeA1kwx=rM6k`Pmz%%K%wKdR2_CwauQ67Tj-AorjEvzYURL@V;;<9(M}p2wT86pw z2d7^ zmiB-;csUlRF*L+4ngulUxq0QT%&m1H_B{l+jTXZM)s8y-)jf}|8+}i^XO9 z*k?o-Fx}S7CF#LvBYI`}1ZG(Cnp9n35;VCiu(_@EmeywqQ)dI_O zHjo_XKqFUxEB?LYl@4oZ6X!0(0R*%B@}Qal?ACg8PZdmc0!K5Cw_9>sXK3y_43F3Y ziG^S%67X_S9FazK73$oV09oj-*cZ`XhEBPqSnUg z(h}_4-a7NR3CqnyX>{`pF@3?9Y9ezcvl7(CxO)&%NWLwtOX{ITuJt^S$a5L&VXPrW zak0g$BS#1FoCr1!G%gvsXy9{C;DcDH{IXK{ZJQ&~&$52ne5#_osUOFd71J=WMj1NY zz!(|w#T0=SLO5ZNT$rv1`vTw#F_vosq=)&vwB21x%N7@T*Nw$BWMat@RlL=yQfj}H z5LZc{#;sjoQ#~P4*1Z-_<`_y0qC6+&P4Xjxvwn}HWmZn#4~>}WXkEAJf<{uM%{A&9 zhcaAaqtov;8Ze>pdojaXUEdV5ZImKx*;+HwJQBa8C;^Nzd?`z^J%SFHM&R z#u~KioOTyPz+GaiTM}z>)C4|q7a_?do29h`XIzrj5=1RDJ6mv*;PKo-LjdR-ZLS4s z1!`L{)ySl*wzRq2My&VR6J=x#t_i2E!zT!Vg1>wf3=1nF&lx~U+-z(xZ;NmYVrOA5 zv~)L-0vF~sS6w(kW>4!5@k}uRAkc@hz(l!3t86a_*H@)TRfRmeyCW2F)c3J$s+x+s z-b5(OmNq+qA(q688egQP71Q6{Jr|~hJ-9(pKsFb&f&&!_Q7U5-MHjtD6br6Hv5ux9 zsu=+iWkgF9od6V3<-*I3cqEl0$_ArlVX5G}LNU4ghx9M4) z#-0do3(|s!5aM;@%&&F1+wwNtvLohEZ`aFhm@G-l#=T;O`}e)_jb`z#E};ivxg=J) zWjBeQp`as`Frz(`E#Mldh`MW9uDTvc(0WM^=+qFB`2m&h_C#_Q6pkcBa~eW*rC;l_ zEcB%bSr{Wd;Tjq{^q$=wB%D#C_pzm3%dzcaU<=d6_jF|ZAJ=} zUXTJ7VozEe<;PG(ti8C67JwO{cr#)U)b2)z7P{ZsCBxy?ju`6T{TxN2=t>W_jyy7t z%$^}#5(466qHPAJ{Z^&;{6D zkNuTJkbSUqJB(s*34=8&7}r)}_IA;2?GbdBah?E8SeKQ?q=!1KwW9%)LWLi}(UMl; z(%gDyZO=eHvF)6=Fn~^W^0iH5t1U=tchT$2`=YiG`?}JD`pRgq&<|@=xE{&Z!_uaN zZYA=oG*EOTxE=LVYMOQQg?n6(WPM%hq7j`~*M$!kL`1MYvCadKPS>T);F>S%9@mNW zMbx^e|8mMVuu|ck#WnlwTkS0;wk_F)B7ezo>A~jGntyp;H^tS@;hK9&%w6Q_J~AZY z|3H`q7=U6W&7-vvxj?s%H$%RF9U*qmEc3IT2-TTbXIiY`Lruk+(y-8Ptu7I>J}N$0 z4+a}M(!y^e+acH?)!m*Jt?WzlaKRA8c3#oaAh8xE7IrjgIdi^iJm+8aI$&fw(eAb$ zxRg4nf8UXpp^xiJ1Fc&D!yZ~3R4wVygcALi9C}Hb07bwlCUq6g3T?gTQ6s>Tq~kfJ z(IZ0>fvl!h@+BisAcrM_?7FzKw!Ox?EHCN`wCECuOfd<3o<`O1sM4zA@!myEqW9yi z=Fu&QJDdm##Tx6NB+>|HRvPTtLp5yO;9%Pd+gkroGPWT3+)$u5rtyLpg6P=Ucpvo* z%g{!i=847iN$Y$k@|9H*%6#TzZa0)7(jmp@Gt5%-hYnFFTRa^?Zo4(NiTc=;(A%&I zSjZ7E;*w%}BD4XDM$E4-#gihTi#HlU)5CUwmwW!i*_F(i#km zU}p_jM;WsKJqtbs01F5V^e0Q4X0D4C{qSulx1p1)cNt0Q5-FdlVDO|eiEA!AV#api(AInVO{KO7+TX=K|^{`pg(D$Sk2TFY(a#S#(RiEnlf2WtuUfwQ9={Vk7`- zSQ;5~*0t0bK#00iXUt2L1f@W(f4IaD_v`y*u>N)E*R@jxwe#NJnn8t z^^xfY5UE6;R(E{IgcZtEmR>oQ9xJ1}mbE4@n;eK4`l20XxCJup&P(JmTZ%hCYX|)> z1|g&!vyxadw<1|1QJ03CHowyC6|M17cWxbw2ABzlw&zymT_7tzF|m&BPD3HC`lgqa zxxh7KCWO60ITYM8awV@I`BE5?C7C1Gto1-k=u)x@ArSUkmg&FlD;2 z!81h4)6=WvtwwdRb(8y#u2OHSh@TXXx~x+SF+kCb$- zh-7B9K7UwD1#rKs1(2tqPR0O=bmnq6jJ)2!B(?_dKD!aYYQ3?I(s{z>&n!i1Bm;g{ zEaqj9)qH8Y$Sc7B@Ixb2zv_&OqXpF%*9P}I>8IJ`e>@! z))8#Zhg6gc7Qi_!AmRd(7*9fvW+QcY}E=enXz!KAS3D<^*N!5v18|XFPfhGrq zgjbwxOIf~LG-sv4ITF$+PD(5_lpH&$8@di(P;W%0xaxtu(9mNL-?5+!r-!lwt;bGU z7^H>mgh&Rsq8SombDL75++n2*jFG)Q#I<`!yX_TC9Ka4J;jSX`DRrVbc&>+)IHI4U z`VqCm4@xd?a7a?!c*P@9YvJz!FY=hn2|MUaFvzkNVCZF9aD#IsO)O(>o7?7@>l#yJ zQLyKx)M}G~9Q!GZGy-Rgg5aVoWQoe*$h3(wkWiHLRCtV`HlMeaY9U+fM2N*5ns16o z5nL8v7@Sk|WTcO=l$_UyD=JST)Hfy8ZP)CNyIga}Ql?1>lbIu+P6D>OW(nK;Hlrk7 z#c_|HW4IDXM&DQqqbEqvX|CIyzN4t=BO;^z-SGI+S>>@X=rOqZ#oWP#Y1KuP6=ES} zu++WFSTg|34#oj-{sH$e+)=g;F9gq`r6w_4=-OA($S5T%N4o&P-2B?&dD+C^Gg?^y zc{AP@(gMTQiN5Bj+Ej_Pphq;oj7f$P#YE8LpPA7i)InV-sYsEV`WiDHfKLNs>*6`v3 zxYb=Z{`GJ(e>h@wHsE?9ieA}VXm1`rR8}PYTI(?WbWz;wf_oPTu$faYS()p_XqwW6 zaeb{DA~nrrp^BVP2(8YfV^IisEDm{}V~fpmSts3Zy4lLg3he z0|$hy<6v2Yt|RhWE`bthz39@T8_|wqUR{yN%dAH%j2}_nh~pwMA10eQ0B^Hrgy~v+ zm>7DNmcCw9R|^3s&4B}$w&~49d$z%+giwIWN0qhaZVOer#88_nGSLGusRq@r?^QX_Z zCeNnT*}F<)wnWaiW@pY`$fb?=Y#qNiIh9sV%n(kc)w9HB&ZpIjlcb4HUr4Kyr^%pc z9-yCN{8Z>th{Fs803oX0=+_QDY$60q6;^P?@XnT>yO3REtoLyY!kZhj`Lc!_C7hgK zOh+VWEL=R*0;BXj(gFttb)hpCfV{byc_{da&OAJrNx^b=4(CBXPSL2!f>A;%%U2eT zui~A8fhbR#16aR^5lX({gw#&JCH|y-yU9KW8{5tb@I(r?cP_c4dX$7&1S$r^9HR7BvP zSJAeHBI?YE1RJk)j*3ph0sO9Y!5Xk!=!NF70Lc;)t#>wh_=t*8qW2kQt0^ulR&YnK z=tTj8>2F;ta}9FJ)lrL6C80GH%L|gO;)$hoFac8R99UoG-PYW~wz$HDu2GOVt*j;3 z-Miv7hYKxKQ7LW}87vPS? zag_8-VFCPn%4TiI(Lz**lwmVY%`BYRSW;Ii=7IDvJF_p%ZBEH0)ukAt`YXJj6gJvA zGT-Z8Ksy=3loJ{$qOZ$d{c_0!wVGVc78=;hgtwDRC}3hW&~U|}++0(jz1;0)Jg(_F zFCGJDATw%6lACZsILYwSmhb`I_lI z?r_+x0ItxzGhxIrS@4UC0l(%K6e&D{;=WlCmTpj26t$$$__D_ruBE#~bziiZ0_g^Z zD=vEXxo&p;o5KMZRmoh}Jn~%E9(ANTx{0=tVCTB5+=f?Nl{OMKhoG#UWVGy5QK#pb z97GZkRWiloC<&Kf*F&;!j%=i)=@_ag4qa9`YEq_)oq@6*hU7Bq3|)Mkkvrlo8t{j_ zQjZF7A9E-eP=W6DR!{;QtHSByovnDbQjamlSKW)h-O2#SQeUXn#-*vP5hz zTUzfeE*ICHO{g-$s~@E}x0iUhtLA10yF3)1U<4o`*mcsbSGs9?VXU35Ibtu@9)q@7 z9<0?WQfW3|&02_-l-yWZ0A#y?)@ev%>xyMB#n76q$<>9p7!mM$KV*AFTDz=gN5V<5 zRx(Se5*$28b!~A{8~a2%mXvu^ZB zZTKqbQoZY|@Y!JI%{;|;jV#J5RsGFzHkL5kIe}L-d}B@^N3)mV&AlU0Uy%S5@lH7^ z?sTzR@4Hdw>-{_B4bVNuh8|ge0|&^cB}ZADTrCG^%(9PTR=4$cI#;fQiMr%ycaZmJ z2G^!GJY*APeOp4A$jjJ?9Itw?wB&aPQD)E%Mhc}2JSGCWI87OeQOAODyj#dM@P< z=G_1dW_o$r?ZZ{>=?51wxkv29MSdQ#V9H7j5zHWvN8ByTL?JmKJfp;#0Feu?KsmqY za#XNlAmo)GvLWAyoPk6=K*Itq@A6t=WfpD^Cs*GH?c!ympPlyz0FBHFR_Q%--*Vxy z8=A;ZR@zEWpmAB(7@Dq#I_zS4PkZ{wjp6Kv@VY!VK;dOn+FD-@la7ptTLF)XX%CLB z?3LhACQDio;qEM+vZXFMl3~hmcRq5p02~_vE$6U&@F$fYL(~BM2unmlG`voULh4O? zpXi7qj5{wWEoD`J`n5Bkcl&~H5aIpHVz6c;rv`$``(E*K2)e&qJ@`fvm8=7ud$RpBCC{GCP29^&KYis$*U{kvfAA#FUkA8vMv)4 zS`~JUtg9M=HPDnA`84rO6W!F*|?Q1U6HOU6~Z|2rPA= z5~whg35K!18&^tk1qX&L5 zZRqohu|_1|RPGXrWHl~0Y=iCByEvR8+LRRAXYpirs#y=sj^qRhz}zBSm!t9U&BbNV z0~FavDW|l7*J(-n(AZ7eKJfXT>#W5ac$qXaXgeD85D4W+Y7$n|RhW{!fm)cGct>vH z962{vU{7-1|zI_;(z~XHEtdM7AKGoyUen1C`M;0LAHYEGV zH#c_W^*OkR&EZn)XPg&nCkU6+g4p;ZG6SR0q1+$st=*XKz#Q2vTGODUyT+pe|00zO z5TuscT$Boi2&Q($Y#a7EaZH=YwU>g?H-vAI(c1(+KZ<^R?B;utG zvj^0)*0x-`(Mx5GDsqmXm?3lK-2D8&gR(E*o_rv9ce#arDVD-;(o`Lm7!h9^FvVDlAzs5~ zo0)abPRuvJR6Wy{0GE}!LC40i92LND(?~Y%qQGLT{BXU!-v=%fO;LWTj2fC;HZ1mI ze|l#Z$G|*j>XStUsF+6pZXiqqxwcqzxntD#%XJNFk@-ijxj@_|FF_Ep@}>nE(oTP< zLl$(6vKmez(FqAC#qnIYJLlSWJP5{cmNW(B5#c}thqH-np6683(_u}v#u~Y5IV>Di zN{_1(Jg`B}C~BmJ$_oBe^ETUQ$#GtSyI;kF_TX%(r?AKrBX1&LzJNQ2S8Qj)a(1`M z-T`)fvo}>B7Q@UOd%^5knthR3SU8Qs6wQY;fdi=#CD#T9$ThMhQ*Ctc$iXvkLsV%Q zd#Er^puCcjFGh)PBZ=6vsm?jFKSwOoa2=VwN)C*hZRg86eFYo^S(7wO(#r(?gW7>! z3njOil0k)_2_b34#4BZ}K|bDMt!C$slJMJ;8&ZMMp1nAs7%jL0Ji#+pw+bn5avyzX zRD>wHDWAOk1@J!Xfv5@?K|F{hA$PjDZq5pgf81`Oko_nk$BLz(nnU>&1!~^D2?HSK zya4OsfE5i@W%;ogeD)OzDlL%@6&DdDDvS3Am*%&~DKliuPgIE^wDCC(V(_SWgmGC% z`H9Lt1`_p)r#Sq1&?d~Uh#whFW(0Op#me;s-DOelRM3ytVaYBrgT%sj_rBY5cS}dNFSW+?P5}>kIsQ6?ZiM^KMGegs5&YDWFt|tIteKJx57iA zrtz7b5xIR}fFu+)R6q^Y`4;X)rm``QqC(DUg`>LCQPRkmV3(0xur)cB+9&v>mONQ) zm!-QfvwGgvPH{Nj+JV4C7W5@Z|DJAw^>4+&GBgQKF`-GUrb(L{(0fS3z-9-wuY|%8 z&MLqPB?jk<08U8ls54-<@s2_$jzfDUBv@z{VGFW~M!7EC9JK2^+)shgoTiB-_Hbdn z;Orlmgg(R9lO<25P)(q3IDwS1Ft;3pNQ1+g1eddvH6T?Cvk`|>!ORq6Mh$x~)1BUa zpAIcS;p@c*d_;!Wroy%~?yQ|TViI6B#ngdS*%w%tIvjw-d4`9#q|@P4?e7F(#yz;y zRH`o1eTXiwQuAGyKPe+}Q{8rMI^SNU^;$TXs;Z)9^sxJeqq%a}=QttmZ%t=3gpm=m zgl#+;>a7(9A5RuBNug4k=xgsmap^=`#)gG`Z-dIl-hlL#oqzge=SFAOq?pu|E~k3o z$*I0#H1eH-U`O1n5ogGyYr3gCYc1Mw9=6WTf(q#wjxOPr z##ChH&av#61}BP504pkzUWn3OK8D;7lJxkjJyJBF)=n60pqiEL*UEAA(6?y`Svc`p z(#cHnDc8yaL*!x3%DMJ3%BZ|(6-7MG6>-x-0V1!!s@=LQRxCH@S6y7DTOI&6W6R?5}u_2e;&t8Y72&mWdq}f-(_M*NzE{a>c|B0AXu`w=O}&vRNoZ5*?9v6rjJE}K@~|Uiz<)|t5lvB z8<@iJbms&JFiwcg*&)!-96g%{5X}r7kuJoW2fW^b-!FH0RTz@tn1V#V68||A8t9Q< z$#yo%BXb)w?_h zH9CY-F$wU9pzy&PX#cVV1QTg9Kn#^e7alRQ-gxMt^v61g53*R_0Ou?h10$#eMS^*- zE`Tg3I|EQj#i5|u^&6BSw;_EU`!_RCqMwa4od8N09w9`$7C1X%RqO-N;FPKeD6lHB z&er3qb3wI>kx?1o&Dlcr%jP;zj8mMu*1@7#rL`jTw#t}L4Sc!Uo2`h60C?YxlByv9 z@<_-%QvEH%!s@6Cz*W3rCwvOa1ESqJ#f-uC#>2G{RA;b=IvDQ6AedA@b=SNO?U}^4 znmNccT5?3(mb^ydrJ|rp=m|N2zMSRA4C&pj5zpp4D3Ln?T?8FVmEK4P%L2WOgHW^T z+j{vG*<4~#3dS{Ykam7W+Bpqr04@hGO^Ft^kPcY2xOC*;p)jk%NEW zb4xn3CE^ta>ugyI&3myWyjORozJg^->9+u9NEKYdi$b*Qo5f#P~ zP7VJ#$i0fghjc-{dRp|MPz$&W*9sqR8yV;UqQCNu18{LrM1ReOFX28A)s{GB4}L?g zun6m>yf;Bu2;%~e69x~U)d(u(ETF2YtxN+rGwVGIGN@ou(3!3bB4k$1%~A<#f>s$D zoF_YE`5aNm8L*TgE~6yBw*axrLV|(7Z#`ZKCE@Y_jjN4CLV*F;iV36x*aDwN+^7}L zrTJAI!jP{fb$Y2Hypb-df(mslWriViw*n;{yBldydXELlNlvAUcH#Cr zZpTk?sX38Nkg9 z-=d7P!#J}RZNiF#^(M|XVvGv3)s5oNXO*hUvbwqo$ghg{d}r{N+7>E}7`qbIbhc)l zABXx>)mj?=C{-u6kc(ZWBSaht+!b+F;W8@Hex$U!p>cbUQ+VqKvueP)280Zdt;O{= zrf7|gs`(ry+-2e8hth%e#h7Yw#fn!dv+ujI@u-cx61h?$!KYDV5L)SY7CdusBGR&G zR&qK6TO-+u8^neO@1^QWu^GfVhLSEIpt1&Z$68ROh}F+5>HN$_GCxxTsT)0@RaYaG zZ>kdc77whEfaJS?Iyi7G6rUyR*bz0l!Y-68zq^D#<%s0kuL{OYX`M+_t|pO6usXr~ zib)&hoY2xJ3ToK$ts$T(s~#g`B4s(!9L%CBQlSJdPS2}iT59=$QPlEz6pacn2aBAR zC{fO@A+4;6t(~p!&dE5+D-trQR5gJ&%-2ReE=A9Q<4aXsJyrFTt81fkPD;t3Cu?5@ zBZi(BGO#bly8JrN_gyoO=c`(%WEIQrUuVb{KC5h19?J19{BV_mD!H>RQlc^JuqtSU zxX+QstLShAj^3xlj4wEGI0LgwGf!JR>@^o}EDm1x*4ci=lC5K%S_AQ7s^rvmNr{h@ zk58kF8QE7`In^EJcgQdSRfD0J!8pC>_H$D5WTO;U^FYPcJ%-5KD7GftX9om8%Hk2j1)<~0kBvm50!SP$9y}#{j<#x* z9D7#`XRsHkQNecLW=57x8dd7|%In9vfsCMAK~)5ytlbcjH}JKmH?*`ZW-O!!VVp z^7|?VyFXkHE?36L;mnZAmABr7B2*FUkd=$DrcAqJDq`KEBK9~|B(~2eW-Xu(8c_%4k5-zI@rT)OBst%|{iqj(RSHkr4M9 zq&jl^Dqx~IrNvsOP&GADk{TMxq75!s*n&h`+ekfbdh#{0<0fq&xJKcC&AEEi z;}q8{fDD2bQ`86vD*}S^(>^Wb#&X5vCqCK2x^vlOiQO#7t2p`wWH`AYMzCVX5M^4N zn>NQ?%euWvd-rXXBfg^oPS>e&G`yu=0bA8jyjfj>PL(Gq$cPjiRfZ2H z(S6RX&{&-su7G!;{PL}-{d<&Kq`zih(X-iBy`~<#NNW56^aQ#Dnz>p@i#Se(nAVznw zs&ckn!ZjV8@0O5X;*dV}7A5pwcz(d^B{qbZVh~|v)70kreMeBf1_0pT0V%XmQs){B z09mOmyvppxE8T_PM2<{(FXhhM+Uix&;#=iqlYKM26+g#yoTu#aR%q&EfKVl)mWQy=R+QLAJUBNp%Y!(vQ)Jw=OAB@4C2(h2`h))Y`{0vb`;LfE;vei>fMHWC+c*Z;K-6M|WT?&q8 z#t6@2RBD4xcI_sj=V!7m=n-y4TNjiFd0Cs4HwKlX&f(!C?yWtJH_s{#!;PVd6Je~o z(bc0NWewl60#fxd;>n!AyHY;;;t3ab7w3)IT@{FBM~Sq9f<-KJ7&~;1lw$InMwJC> zU!U7p5lxQG@MJ6w7-+m%>kK|efG(Y)%80hrM#@;i!s?2|OHEgeAw#%seP-UIEO88M zZnn}U6?r^lt7~MkYgkTPXq~%lX^$B}{6-TDmpj2Ve}Exu1JV9Ztst<+pWGUlj^UQ=Cy6Il5m??kgb?2YYNCrV&A; z3)g~9UPLuA^A=|*D&_o)yF!WX%+b$Kso^JNx610Ei=qY>Hah%rwt5*Y!_^tMTI$() zM<@3r9Y;sMO||5z92so;)NvF0vjLk0j@xISx$g3ucb8#g^bw@uf*80$6I+eLnpJ3l zSOEs~QQC40OWvNVJja@jJH<4{*vomOIQ=o`n4my7Qh^KGnjSY?HaBqPW%r`&PqwPD zX0W&3cL#XfT2ix0gHFa*%`EC~baTE8_xk=xAdHyveR(Ke@q4P&HCbPTwjZse5YBdI zlXFXuA(ev}gKtI&B1KH-o98_;!~L}^59JB3#w#>)t;O;CYx@DF9BCtjHr4Sefr(&Oo*`(# znME|>{O&9kk+S>inhzw0$Oby&mJ!nQeN~i$JM*Y(7}?iOQ10H zxhE6bM;Wf$F~Xw6l~&Qpb&p->EgcO%mdq4G5SbA~HGoUO%WC|>THsJDhr zwAJ=x@aa``<(1@)1PsM{LQYG*Uki|vjZxS}(co8P%VQf)hvcv#))^w2FI;6%N4=QXHQe?}2!AI!mNUY3uIGS0+b{9*?I-gF^=Y%-xo1KFC zVFQ>?dhz}$qfJ(gt`$qSh1JIo7F-)3*wN;Ut*|kbWOTN8&%l0YPmcB^Vu|HYW|=4z z@p<2IJoW_K876wm=3=R|B=zYmj^L1wFD0=Rj%7kuX+f8D+$`X%qHTFwsK8h4_k*Zd z^=5<`+$N|+pGjms*yDnwlqG7?gV0;f!4Z+kuue5rP<+x40I_>d{*a7zo8S@P&rC%e z2ge7%82o}W_&ti$_(0%4^Tnl|NN}(WHfKOkeZdhD8@#_zV~}xQJzjcAr}7KibuUO$ zM7t~>(cB4)aeA1JV#8L3@S5$|W4pw#>9FG$`}~T5$R#As+*^%ZQkN z7s+X>&cdF;d2e-EG*)I(FSM2qzjc<;dQ>g|;QZ`UCi-wm-_g*?WIEiCHQozr?9w!= zJ1tGxrFH4JzuK{If>oFnUYB<&x9{#wLS56W)H1tgsP5RFVoo{+Yo`p8OuOZSE#zG( zz{*THhXFC6)6k4qQnNn2Mu-w`p3cIQO2gqIusCPwi$L7>vcrs~V!@gkNWHeLLJ(gO z+Avv4^U}+n1lp5jl;yPOKzQ_M3gSCwaXKgzav1a@6~51$Y7zo5oR^Pz^CrnSyGKhE z4p6cWa;siGwz>MG2y+D5Nm6z>fxEJSqQ%$R*ac~Sq#W1Lt{$u?00w0s^D{h#rHgOeJ-2wZH=%5$~i& zc@5*+CL)F}9$6~Um}u}-UstffT2`YupC-kjGGeN!e&F~a87FbR3&I3*K$Td=iU@R% z=zEIdX2K!_GvG)?9_wUl+cY>16#|>6_xObH)>zf~K@bPY>Juca#c+ebF~~0RRcmyk ziZlJ*k?$Wq!r|=^cNem})s-o=O48CG=ryBKCwM3hXA9-KaK&e_x=qI#12?QWfUYJ?Y1NaR$da=RoZM(<~x8zawPD6LN$R zV3UW;xX7#cBMP^9!|37+bR{|r>~J6!&F9a%kc8c2dW3@|(9*LUrK--*4_P5^FJXq` z6L}1HMCui!2{xHhS(T8h4z6lNW5d9Tjjy+IIRmK{JZfW`hTawjGW;>V{>B0TW!FAA zdk7yNexW#c0rsA}Q zGh{jMCpW0QtIez$afpk72D7J4XTyP&N#|C{EipK_Xq~(&rcF6{T9{Gr12{t{LSyHz zM+##Df@sW^TZgOI5te9|Q#T{Gj_Z>(n&=A7*%y#uR&aVj*hupFMp;cdiVMP8rSqfe z=AoG7Xna{!fmee^83+g@d#KBJBB9_|q7AdLH{pVjJJOSPV067`yiHG}xRSB#z*7sz zN?LW$vO{k~_msQL-h$wc{dsXne);zIL_ySa7jnRm1NtJL2*}(PtJeBuQEE-7QKZ=t zJCccKRkk)`>uQ@UScABdC^0$iGpZ6gzKO2>O<<8q1I8dEvbs?8amIQPUY_Fk*=FxKo9J!y4su$ zj1ErPgu|Jk#d5T*5zh@S+$JJD5p!Tbq!l~p_474vhnDCA?+Co%$QdzDdRiRBIR>nT z2K?EFpaw@L3)DJMz}9ODBqh*}cx*008d+M>P^+M`3JS7IXlE4w$k@NbX@?s*&KJ0N zsqAJP@o+M>GDEa9Ku|IJk^@Mv&IYPXV6sEKo~I9icjg-z3@Pq$AqQjna7w+3&qz#k zRxKoOwfnR92^ueeZc>M<6>c>C%Dd;8SB@*kJc#>Q0#(@u43rE;^O?cI<3i$60B3f9 zhzEZXEycVNtWtUKGN1rGheH4uwZUW(<#~O*qB1Rg0cSMtGB*L8Jb1#^w9MeZ1ph}PtdF%+{C_87} z3MKMFI(__^@i#kVJc9Ym7;4SMM%a{2ZtZJ8025#T0pVxDU{bjT8ntBHGk?c_V)47$H*&nrIS|! zrG81rJ@;{%8jK|u z7PWNHSLeruG=0}7uO0jQZlKSUm7!)VBQAjig9U5W_+Jq*KU}o4q2@tjs~#L;&T6); znz0K@XT|6Pm|~6LuEQN@oVW|j;5OF`5#hf#lj3|wdNBZFw6!_k> z`5S+T8ETA8OFMSV^5@U2AU;X1Ro7)xL$+YXI>BzlrVy!Lm*DBy`X!4zr9MJ}qZ5^c z3EIs(8V^7#>vs(-cQ|7^u_GcrNAvY|z9oj~U#2t0O`2hGa2VC3mqpfLkH~`nB^Z`sIOlJhGAno)nm6@bXI(x%!bBN)}@ zgj_6j!-NLKgKAEQjYFM2164;o6$bXpUdv^rfw%d{7de$ucwF0??*LAVZ{g zZVjb6=dSUc5SSqp?rHaM+C7r?4yQeYIld!H+LuU?uM}mxKs9{rRYPvAqdh17)VpxeX6yEs33~!`a4@EWOg*X|6u1(X<>Dtza+*(4RSECI ztAKEI9G0kw&xBVb@QO~JgHkYvRy2Vf^_`l4yb6?rT^1maOF&Yz6oN^#hRFMYMRL{&&>xo8Apdrq%sG9@-(hRwNjGBT3|P4 z?Ck(tv2ixD>aP=8+n*1Ylj1+loLlHlUR+8tJDc1lM1R^I>Sc-~v)c;3tEc&^X)D318!sCi4F?U#-1g_6VQU#Tw$|KgJWYlT z?>b~ps;ArzAOKmMcM*`{DXj1fh9U$BKw3Un*;m2!0!OGfag3WzbrAK$rBpFE6KSI3 zlq0sqvDC31*@RFwcgP4OjatBrYY0V1g^*n&V!uG~-O%}EWhrxvfXCMl6x`_SF5zYo z@9f8|k7n>KyK>%G99s$b_5tgtHhi|3HkzKh9p}sFRW>W1D6)pv?~%&SF+D=odSAt_NF$BB#<#1|l2Aphix9O}}tm zS6|A5R(OqaQc8(Jb94q5*if(p^W|i9imfu;yHb)X4&@EiHa)8JB2Mu|Xn&?4poA3= zyDq3ipMn$1%*|#9SYloStaH8|C!Hx?L5v|nl91-@^i5_AIXyv2tVSH7Da>q*8TnX4>rqC%!TjtSn45n6Rf{+)d?}q{?;&^IVHU%pf z!|;J`F+y#2=xLjcBJwnk(}KxF995n(vhq)9{319f35Q7_rb^TpS$80w308=ry9=#) zj$0?@bwQDjLq`J0C;MWo@~hVw#(|~Sq{4pZ^(~?yc8C-#*;Nj{4pIna4;7m5u?QZ% z3wT|zTUu_q?t0=-q}*#PRgsOX6;2KypE-O%0WCEg(C(O+YSxIDL^TWal>Qe5DD5L|G(3Ds0mejNzh-OmBsehZJC{ZqS3| z!P6ZqugHj^O9;P?V{cK`k!Dul_9*byb5~JJ+aJ&k!IfKp%hz1r47=8!Mp^iZI2=nI zm$s7bK&DI(Vv(VZFpS!0ASp~Z3|oVQ5#G;d!fO6mP_TpX`5ex6_*(4qbY1JCbBU5ms{vZK75H=3XX8D{&^m#Dpg@5>>Xm!()bB;3RLsH+GDRCBE}n=!nAzI}r=V9RdVErE(LM z7#?1AvW8?MQ2x4fP6h1wQ|^$V0rm#@6cBZRBRX@&P8N;6=EwP)%vAPx`>gR08X20w zb|~E67;K}*4x>BTm1Vq=b;R<~a{89oW{)sphQ6p5SQr#03~jSKt44>IU7=H72X`$36r3Dd|Wc3nY zVL8e3`H1|*K(*kn#i@7kg=sIO64g4&fGsnOYHfFQmaWd}4!}27m|5Hm=OlPz8(kTR zcu~D)7>Pno&u6cCxN;n32j6hdaT&dm^5?Im9qZ{-W(io*hDdBf?`7#t9(njgN=}t) zWCBHX*3c`cpK#!cQU?6ZbZC9`cfqNPVPBsyH%K}F2- z_zN91lK$|wKC8|k=X}pk#}4UHu_&mV%JPKcLB;E6;kTU=NXFYyGH;M`;210v5Ba!D zO4h&zCUq)5Ni4JYHx>XV03kocdZ|-V-I`}J{q~v+*B4F#cUHm!GHi%az=vN9k3wA- z-=JUz2^4~#+x+~pgrj}BPr&ADu_MLthOQV}*XJl5INAg5q|Whb0pgtc(CLlYVg=;N2vmS3-4 z&SH@#8Dz#lBG_tsOl9Cu8b1Q3&ktavTqjexrS-S&o&Fs$Q-cbPDp~ zqr7aG=LJx8XJ=nK$=mNYaw_E~ViESJEwb6Cx%@4VhO~Q;p<=bF*xrw%pxd11H3{nH*?h>isu6OLFZ{o(tV0 zbUtua3_L5QOj+^jM|aq>7GI0T1gOdZ6-lMeMxQmb$ZX2NX=6{*Qs_5$pMxD>TqaP% z3u5$wam0rvDPlS>gelc$Xd-I5=S>Lm+$OTR-qA5Q*e<|svP(?3*SWeB=G9C9cX~eF zY}r2{2qLE)$-W+L$_1`)P3G9)iEhuH%up7DCi|-RoH#RyJaDfSPXFdpV;2kp0x%yL zS;&hK$_Y#oq@fj{RWmcFv31B{C?ImSdHo_2V2qCk!%t%b23f>0}I3G?^<=k5a*MflmUK+%|$Yi_`9 z<4>82153qt%6px3?D>`ESI7d_BnB21R8hYLD+g(urBWVbWk)FS-6P%8cnKwW9-g3b zk>6xjDOfKY8qiQzpRU3RB!ekX4wXfsup<^o*^-daVIc6(Qs4sz4_e5zd@a^+g)|;e z6MBj)De&O&Bs#$~YjX<)oab!-QKF^qcOnSDau~H#O`vcy10O0cS7^^|XkRp69I^e7 z29tCYNE&c)a;$SoJl{|XX|5^(?>deptsm#B+jg&q`HR%~R;SH9W{+=*l~hwznc8yV zT8&8ovYNRXzY~+$7t?R%msM;nX(S9xpbKzI5lePtM#l%+c&Tfw2`ugYGGX508VM@q>{@GReGr^3##yWo_=ZwP8V6uVQYNPb z`U}MXqR-=%$x{j+6fmARb%U;IXgrn{!2-iX)Mr{5<3Rg2wil$B1pP#z)X~M9DJ-73 zgmBA?J>8DLJ_aqjWo+QG&7MDwA$0GaVPI4){KYYNd>!+NwN%1t)ZMq*brs@ zw#YU4KH$A&u_LF0d1BaYB&b<&kT@th3racR_PqKfW@~RIXo3xz@qunEvXbDlmRj}; zwgVN>DoCG2q_7M)ng#r&0YXGp80CX=iZJ?K$H zHbWBzKg|x(;TJ=pr6U~!Fc`8%g06>)NfGRdPuI}XOXj{_l? zhDM@PWF&Q5LP?g!pjHe}$@QS-{yGlN=GK6Q978Xv@4v!p@zFwonCr2e$iF%ahMid>l6{8cej4#9gCOQIRk;UVGNgnnP=mHGf# z^*ejn!<7_wdl8_L8??WSk@!|_Mh%4{NTxyaIkVgniVq1GatErYeeST}mO}uq1TdRP zZuC|>43q~3*;igoJ&Xh!fH^Ij(>~y@;zL!zd?C7ma;Q~h9 z2x+vfv(gKugx$3Rp^0nUg}S)qFZwX#!@`{#;mg8L^$PDX|hM z7uaze{7gJU>6%3{^^McmqT^XILf?l2;?RvlSy`tT4I@+N>?VojM8xJ+B15L%VJXiE zd-oI#q!ZDMqf%@Hu;vnJe(iyf^>SwBGb*v`X4BgY`iC=TEmk(tM=W|x^kAbiO|RG} z(m^L&rDDH8bX$H}Me?)3ze~DgWKdz@$$0BnCSsy!09GlE=K%lO?xM)AME`)&yLh$*o;D9~@}q5GW61 z=L~wV*Nq%pvG&!`$8Cn|T)C>wm7zN7?eMcAr`e8jhMyHV`|AupOLfY#vL&Uq*lW|Q z);=&_4EmL+zRtRGbuIVq+S%7=ze?*>&Lc6$2?uty~i zKsM`yXLTtnjRcP+$dhFdcWa+V*Baz2`gxsCM}BMu3g)GH9kFg9z}H#cc!V+{c3Z(2 zKu3jME9W2$UGBQZAV*=FG^BQ(i0TVCf*#JdF3=IS>(K?%`I5qfVm;w$! zaj)|ELU1j@)$AkD1Ke~pN)*3AH$?O(Qicxd0M=|)hi=OOypgV7x~{X#H_aFM=tQF$ zTs?;^-lk8N^ucjn|zj3&96;&|;}JGo-^m#?c{ z5uTZW9{AVWhv6D!H&ofnZ*TGaxDwfxAJthrF#K~urth=x5Xa?+g2Lkn$|`=B^m`O; zft9PDrF7=R3`Pwo>7MVYla$Z`z7ia(HU-z|;u)ZHaY4y66XN+99mJ7N&D?V#bB$+u z-4j*|r*o#SiHu1*;~t+82~WotuUvq&qX|mVU5k6iC3Gv2jv*iVIckiTSxkzk^%Li& zW{aYYP;a-1!e&5Qk0!%!yRUyNdedN+y?C~IBo+@)sN`b(S@mC;iq{$y<(a? z?$`Dm$I$?%lN;O9mVl3rnBN8FY2Qji&e)?F=|zU8)w7~`F*ER`uRIjr(|+S7pG9;#IK(_jhoy_og8so zSn4<@+bicdTxq(SZ2)N!;69_nDrs~}#V1k3yX4eq)?~bnGu`mC4%3>RHEl`LGnkx` z1}P$EF}kN|{oZpiuDn;8p3TT z!R+CX-Y@kp#V50;r?i2;ERi&QW}}gql^STdDm(}4J1Zr=ds3yM*C(KIG@hU0e%JAM zgPa~p#4F^Ivo2r;DB98#b8q76d#hA5o3UQJasZKLXS$g` z8=r0;$~zlgFGG0&iOoBY>u{x^I_ld{#xa@DhH|Dm`V#z5mU=!b>N1pjT(3WrGb=6h z)j20PE~T?kfwOBdk2}LT%)wffqv_GNXNDTP=OS|}8DS{*1jl_Ke-BsX863nrRBsX% zW+>wlB!4L5SpLxEQ08fDUPBqP-6i(=E({OaB&cZLT=;} zY*mJbxYygZYit(AgP{%?)Ij0s_{GykG_wOc4GdK}0n)&&!OJYyo5Cm>Y5bAFRzvl* zOo7B~8&ql%0}aTezY+_0sP>Fp`%rPs`lFyvP?So|Guh-lRQKd=kMG(KPfA&$Llvj& zC)QcNW@a_kvvx|-)|sJtOb68N8gDTx?YU{KnB7ab z$Pd*BoObb)@n3V@mV)Wd?lo^<8HBoFsPu#m;p@x?4r(^nESQ|z*q-ZGL)0ufz6qmK zm7M3m;r=j43!M!;5uk&)=7g7htMBZb7B6MjT88-ysqMvU6y9_3szDOOdHjZ+Ts`3$ z(|8HGVU6O@9a>Ts;L`gTUxo_q7VTfVY7X?=*~JI0ezbGUayfP$Rhk$WI&vJ3B1cTz z@+!PW2lXr=@RYH5YDcA@=x4hNL0D#eBik%WEIs%#G?*ds-V>k3 z_7kcWJb>oof;k;7^)lu5i#YvWfR0tSwP(rgCz`C^WoCta^79Ss7pjg~KKOhLZCu}c zuSVG55DlC_t$|?6$;o_+nF*I;Ye*Y9r@dM;88}brGq+W-MVs?J$Icr0R^X}$6dq>otz!X(73P6*I5TBBsjjxW1 z(TpY~Y?vh$&J0NcK+}geU2aUOABo4j^*MxJZ-H@Md`@#}b{hB8lm5))F?|v9o_mmn ztC;Up^%I>IZa zwcOi5$6{MtX06g2bjtOTKbGh9q=RWADJTbXg1wYCqf>3G)F~;qSe-fJf<8iU&za<_ zyBARrTvthL7eSTe<(k?W3!S$)2RzS;k2>o!V=wVxg1f7uvXfp5x|G@sr4Fv;5(IR9 z(;}1m1SX?r7i4)GbU@Je zYZ}TrJz$o70O(Nmam4HuK!iTb?US%7q;Qqkd1(b>O&*@1)~Z`B;2VQS=1^g99Pl-W zwZzTQl&i##B#}-T6>0+pvpNk$3?37+b_YptNrOJfNWLKeZ5M4{Nw8YmUCxy)>2iNb z!-nw@_-@tG2_2bP3K`B2&`QR69N4O==g}l}5e4I^=j+>w;8}_wYBHjiWVz;f#v3}d zU)x30g6}D1h)$3uAwAXNwf$|4h?g#VT?PZ!$TC}5r45e|ssPL?yDh4||5j7Ux=IZO)Pz*NGmDR7#Ge=w}V*u-P9;Z4(>`vWYvtiv7PyPv~zZAXrH;u zG%~f%aNIKc3~8FF4FSQJH!?~=bsrPnXC1=lT_Y>C>*5PO#H;})`L@))3*v)5r88ew z1{!S6J#$wx55zRTdVvF#%Og|!Jg%HukgruRMV)&VPphkQXYo7TUvrlE3r%SAeq+G> zRi}|f=XRUbVn~`fJb2Z;Y-XN7-Fj8#6brYz6ZER?ILKNj`R#khA|}07>hosHK6!e$ z@}xF!o?B|x^4rK~q?tJ*15h)AuAi0dx0%Q2UX>T4xUV8|#x-hI+K^_O@#0sFN7mX~ z`P8f)Kn)SvUfgWv*Doa5TI&MPjw7Fi#vPwNz zfiPA$zwleqV+XJ3>_YUN5MgkebO0x=^LHPM)|&U`_NjSN=XLqM=*>l)nv6JeRi3rd zSLJd9x%6sR9sDXa7zCo5jvbthL)P|i6D*1mjizeGLSkvf$Pfi4Pt0k7_qbSfOh=6EpaCv>!v z`gDpjiK9Q6%W&>l2(wm>6CS|Azv&)l_|zbmpYVI1+@!?mYUr?zSVf_Gh|lt&_#CZ= zp8QFD&KW|U%V475UULFtQ)jcg;m=a!tip+xDtFttJr`c=QoGwJWz+e%rIHp?RN~Wf z`s|qQL)nSm>KGPr4qeBOyv`GNR_nQuPp^k8U!--@xi~LSQFteSHQ4wHLL#$D8r7h~ zYG!Qor5vboX5gAJnL%ANhnr!7tos*}+3c8H2UwMLmC)(QVpr$gbFoSfHjeWFhkj+d z3q@41&g{Bj+MBi zo$wfxoU9cy4Jmom?U{g=d@JX&k*vy-VrX{ew3TU>e~r+@cB)Iv^4|LSDxTgT@Xx10lM(YP<~r_XJ_MpjdltjTcpuuM%?br zs*YN_>lnN@i|D+!du9c~CGYDDn=k%%>yakH+d!D4%-dN%=`D*p>)6(+@>8gGs{ z{s5i9{Ji#>3GNg*)ty^AW`Bv2;}i=mWT~oR@G56R;a=CZ&+x2w^_0vh>lu_XFQ2B) zqA+S9)?B)9&-vr`oIQE>g`u)6vkc{F1hJIM!J-U< zG=z4QE<(oRlxElM+3@^+oHkO^29=E_fnSRSMQBX)6~rSnuV~04hSqy7?ayhX9W_d} zaj#C+W_c;w1hSRJ-x*e&RavZ705xNes=QjAh#8oa7 zx3(v)HvBMgE>bqhs+$4pah~}^HLrg36V-nF9%MlJ|Ivf}HJ`W#`)d#PKxoU}fm-U1 z^XzNax%#Qst~dO=K(mkYpnZi`KVe^m;ie~LkH8m7K9rC1fNNH{`Z3q6HvF&)nSpwo z2VGTs^+T?zGW>wbY3XsEaCQ0BkGQ%{Vg9RSg8D#uisgF5uBw8!8yn<4u64KpoKI8_`_AJ(_BiaZ98|$C(osN{ zAHVK}P7iawu<;XAl26yNc0QNgGmqciDfap@%&O3Tf))`87iHLeqR~5Y;#?d>_xMjc z0&|%UqI`mf*{h>ImY{0xYCxLA8LnfK9v+Uk%C$T5fmY1J9Ba=XW2++0GN)13vii~m z*oBcal1BL(&wtk^{iSp;-AouK{uHhU(=F-2w3{BG=wP~&@`uwquj{23rPJx1>D}pl zX(b&>k8#f}gqzcUkh=ewH&btB{O0jH)1wE7a^Lmo&XISH+?=i-dzAFM(t{&+j?bib zk35|27`u7&GHrA3b?;0Mk0)AOp`FXzqo?y+JXjyPF8ZV2@pMzVjW%y`54nNoKQ?kb z`NT(V;Xb{=o%}w9-*Mu4pYha7kJ9`1@b{p9AL6|pBj^32?^f?e4vjp@8$C)-A5AMG zJ>D%*@6L4SIwIuj-y{BgkY`*^ok!BcqYqJMmloeU{up(7>AloB=sRv3S>c^mMjqmQ zdel&@_fY=u$Rn%P)EOrb9QqYxG^$-O0F&r$@N|G*5nLWQF)c>E`iU zXz3RIG;a@&{m1CR^x!Klr<=#_An&$Y-_P$Mo~wS$FiQG&S#JzXrF7>wFg8Me(o1RS zp|RbO_l_T8jBe&G!Pxcbj?o^q-#_yH5uDWN(Zeo#NcU3Xe%gG<;Zb_UTc@*Jf064$ z)O{$uf!`VK(;MDG$%EYeFzL6FdXRoxW**{BwYsP=q)8Yz$O5N-jBfywmPS5opqd=PnnXQB4r|H3M>3-V1BfXd3#Pe>} z#s4&RxfkPF0c!0ges4}Ec;0gvk*B2VuRD0%q3akY?tGB9*9hIh-}OBGCVsC^kB+@> z?E3LX$KE@Z#vdDdbnLPGr;&PW{7&w(} zhsb@DdY8v2Y5Y@v9%ejNfF3~tIAr9O5y4LUdpDO`XcK7kJLr9c9d4%Gn;4y&#}17g zq%3jgW3sdf@o}kvpk(n({;BpLUP6zIr_6wsiB8R1fSo z@;=J7ULG5{1;|jlf*Gx21>ui~D>w2>9i=prksooT1Ll-}kOe$@;r!(KsMhc(LD!M= z)HFs&gpqUu`8N`7Anyj|^J&CK({+R=@%E$X0PzFFKalbgKS1p1)D;FFPfsR%0O5x8 z41N!gcYwSDg$<(`rnjb>F4<)>iyccoThf(LlssCca zAzDzsUqYB5{Skzh68}hA{3x!^C;c4my_MFVMC-SaK1?`5(5R@dNBzX-6MH^=dqKLL zr@o9gcsbz}jrw;Ge|3e(({A`?pfrzL|CSeD?m+$IRXi!HxpLf?-%o&18I%0PS_xHDeDm)U1L;#J|5U=K5k8&p8HCRyJVf{`!eq=G@$DX z=-(F-zKHNv!WUEiHo}(>zz*q4dES>1rU+k7cst=M2u}wp#|Viq0#v>Oh#V&*g62T; z`$C{(oRA13hIi#1$>m3Ry4Ho(#O>)T4d*w4>0g$E1e^=M)-Hae-QqY@Lz=gCj1ZKe+mDW@c#&DvxsXx1rr}c`sR_>82<`hp3OZUOn46Yf}Q7beIDWY-1CAFJ!?GOLi$4p zA4)%7IC4XJ5%oWe@ZsdWm~e>j62b&|A3=C2;Ufu`c%P3N`Pg(T6jd;J8*Lt@-VuVH zeU$6%gqIOsPT4E`yaVYD;;-acucD2QCjM%|BVboii=Sg$K8Eyb2vfk)$5!heJWTyN z3C9S>36q2qgp-6R!YP90<22VZgx3=8BAg{m6YeIQBg_z9M>tQIrEeDq_Yf`;E)gyh z?j^jQp!XC%`!?P}__oF)2hu$C7YL`pHH#z1)6$6W zxaL^n_v*AfqV@S2IK?|tXXIFVGh?$#xB`?smG@cW-gUyS)2`^-@VXL*2M(sZOXxAi zw?UDf%-lRcx*jXt3tlF#PrtVagOQWqQ{f)r)%>13W1IKTTHK*-6OOh1cFEf#Tp@fM z;o}LPK=?$$ClMYbd@|uv2%k#$G{UD7J_9)UOxk@mL332#_#w(Zi}2Zm&mp{p^3NrF z9^vx|4>Jy5K=?x9UqpB-;fo1xBYX+yj@Qs9TB78I9TL|Au_%`nQcAonko~t|3car`tg68GBJztu~DUa#* zQ2%=g-$(d#|3E8*XGr)|Q&6aItnpXB`);lBz0L-=3n z{$IlXBcxIAE@6}~Mi?htM|cw90L;|&T%Sz%0KyHUIQ_R;CtqaU3~wr|8jgM%j4}-`a(9~K{@|hEX^EfY`5|L4zWhy*K1Dc9I74_X;V!~i!m}u!=6d(& zIe4CeQ*KP>c>WCGb)&+0XVQ84Cmc3Q`xgkJ`{MJ2-{sL;jNk4h z{d&TEgy%4yucD1N(AFCXZz8k^_Y>v_ZR*Su76^-^mquSe%Lmdj>1bn=d%)YIpTqN} z;IyA*ZhMAth%s1kxz^Tr>M)jXCVeYqt6bLz>x2zLm(Zh~2MC)yCuEJ$)F*$7`v#-0 zv&^(XV50U>_gwH0gyyNE( ze+%WGOZYtZWi;JS|39Dj!_@r(!WR<0i11dz7Zct__!7b+gfAt08TSgaeL2^+6TX7* zEZTU-=*9GvwDV42^Q#D7P52tZ*N&b~Uq_vDx!|P2Vy4`t+Tn_oeR|eM9>0(Kn{=8GTdw-qBY2zR~;B_m9q{ zcaOHy4~)*I9~@msKSX;!Ji3^EWOOP0DB;Hl?;-p+;V0bB*iIQGSW{{dxL3#q}4s{vzR*2*2#{UrxV5U#?F#q{nFISE>JNlnG9L zopRCQ-{AV2^c#$qev9(oCcKyMJLC(de%JNez*#9z>G#O{eafGX1SdW3AJF!FyyqC{ zKjhv&B0L?*PkMp(QSXoQGk>3P80XmsSYyA>^$!Sth-9g@|Ac#fHa|1q_&&G&r{w<` z$2MseLIL$sJpHHPnZejgo4pC|UY=YjN(qrLP`qnqiUDHD7MHUuM6jP1XSF0-0% zO#cd;{R{2<8{yvx|3Uaq!haF|oA5t`rz3F-=HA2j{x9kOJGw>tdcOg4CaFR1pmw*3 zLl22R9Z8z1Tob(9ZX>=2|0n5s&uxe|7mZD0x?eJ>R~`u0@XSsML> zefem!$bZ_{C+24&+l(RG(3W`Yr}NBbjD1pd&rQ@loBREAGyqS{&v+)!c^2V=2sd;8 zvk4#UcEIJd@m#|52-0snf9#XBn``;7EaW1pFBrR+A^IEWVFhQ}RW zjT7>c+knm!KRWhVXaQp^Zy!6FUPhkYE5v~ zPOl%kG2J)zw)6(>c_ZOX+~4AQ|JawLxv@vk59!(LP9@9}76^-kCBpL9m!=i!cL;Ch zo>jsc&s`^6L1VNr_T~BA;{NW~+f#4sE67JzM%WyCM=p=`)91b|g4XGPwzkK+?=PJDP31ja}pGaGuMEXI(Clhul z{}jTf54eWok-buI>?U?YPaMV|kR{c%td^PcH zVCV&0gPwhJ3RwA;3@d_tcpK_|4cD(Fd>ujW_Vrx9f$%QIL+||mHFg%@aok+P)r{A> zn_Vx&P8@WYnVDh33=T6hGc!{gW@cvQq+w>}q+w_{&42EU*J;!C{eC~sv1SBUR~kv9 z5$#gqUly=3qArH1<=C%)m5>L2s~|tbG4jBSb2p=OVTN9-)#`vXY7KtZ!aDq|2dO6; zAe492M$ApH8MeSykTzx;Y)AhcuoHH{ZjkisA+Ei!4?iLJZ-L(Xx%M&IV3z5BYxl#{ z0rKgfQJ2j0y9j$ILZ(^g*3q^}ewuB=Vd98|j=vG+2!4;kF*uI<3F14+`{fiePjh_+ zyR(?*0@g>$IFH>0{9lAiTr=aOuE5p*Q^tl!8EKGt4XzWrZ(7`M89K`x#m0#C zaFea_tCe(P3#|Hre_q@w3o8M zI~E4hLdkg~EihS)9slG3$G0ZBIn~Gxh#!eTov{N9s>{Mwp`- zdW9(ma-0wZE^vc~IK2=Rg1J9O`a>|I!DZr%jy_Tj>M%-ez7yp>Oie+y^rNMoO4*X} z=jg}?1?fM;uiE*`|U9HwnLq!Qqk z5Wh|I-y++?DFKJ+^T|8O43`K$(t~fK9U;t7m6&_;`|c=XwV}#C2G^W^mV9d_iO83v zn8_eH$ah2v;zYKdY@1^&`-t=a^f!+ zJB}KqbKx&-rVWZ{qE6{l* z`mD0dSF17CfREWFnMaoAxfXfrpcHMvddv;55jMeQ$21np19E0O<0#3pyI1OjutVQO>uBmfepGU_K+NTSa>$EX4UdTHT`%CC# zv{gnLZctz4EBpp&H{VTHjJk4@HuWao?& zCw2Q4es04ZxC{5-K0E*^&mu?4(L?meLr9s!d_?{}h9~ela-Ujmsb|FT+;SVaGPZV3 z#WV7nF<;W~5?&$aHN1hh@D95_;5~eRkMIdT!x#7p-{4R94l0oM4d@U676=4uAm688 z=Q;|svs_?S($w1#ct<${@2a3cvk&bG2CBAr}5)<2Mdw zT<*gl9{2HyZz6Fdz)Xl+B1jx~TP5K>DO4p7lHoTwq=1yTr-Iaw2GT-0NDmnxW8giN z34fU(OW;J6HBi1mN~&yu*Hw1xazIYVh3wpc_l-Qx6S#!&#lkq7}v$21e7FPDJTtPK)z+mVwS_LJXC;+q_+}gWvCJ;?-1t3unUK3 z*j2}W4a}NQi|g7TV_kK)uM73iw?1|`v1`D6Ludqzp$RmFX1F)UY!Uc?(P#gA#6Rz3 z&fm1ey%n^EHqaK@L3@z744KD}`HT+ScZ5#R8M;7M=tkPRgS`8DVD^Mw&>Q+dU;Olg z{xARr!XOw7LtrQjgW)g&MiOQejD|5V7Q1mU9wxvq*!>CNnZVF6=X)qmTz)YBh z`)rs4b73CL2g%0;xGyyF{jc**(m#@RROT0CO#dN$jfd3Cheo}wMg3Z2JO|bVAZJOS zd`~{2-E^v@fljpyx8<+`R>CS+4QpU6tb_F+-<=x*AJgVI)keZ?!frE2-(ySQ6Z&Ts zwUzsAupM^5PS^#zVGrzueXt)6pvyrx#PwnL4T>`}A00W;&lVX+;3yn}<8T5_k_V?S zPs16Iagei^=ioeCfQxVmE<qP$GVTDSlpJzJk~A23_C6J9Php`}gnxK0*`vaC>R# zJ_Wu~p95d3FM)4(zAx2R+!7PtFy4j5c)ztX-XFB3=<_FT-+>p5(x5Z(>ejcapAqhn z3a~y_7V8rgX#HJTt>&17+0N02=iUxczyVIH`CiJ0Zb4SYufPo+@ZuI#+#v*_K`8Yu zI^jaOjsY=Y9Cj_xH5S*gaf<_SxekMPT*rq5T)!X>o0Z>5w44ZkLzMk9NkJFrzCczAc6F^u`dH6?~F3s4!8Eu0Xl+=p>#52%gPwt7!Q?pG(Y95Gxl8~;_YgE zPg$p}C0^-=$@i?Z6$$hY+%u|&zaG#NdO>gK1AU<%^oIfHIuLUZ3`WinkY^gsN}S}Z z${C72!{DD~i@q-QBVZ)t)&EeVFh@fSWR0d*oiO+Cc_l$rb0Mv%rtZ!rG27WeIm7=$U}>|O5aHOu)%!qOt*e!p5P1P318I= z@_VM$sb-O`*@Tm}Y!2pJWX{73XLXT_)kgD?E&aX)m_z~AL)~8$4`IY#O$M>eZLtFvhY2!?JtFT`UYw*7oJ(du59ppie^~m1<8)1`G z#zy765vDd7hhPfSfz)tYtcb8SuG*f@x#y`>_eMvj@bhovk+GE5U zpan$eYwBpBNea;R8g9IckT3nyeaO9{1tLrIH_O%E=XCR{{Z^|M$Z9JZHsY3ir%z6J z#^y9xcPe9D2MswgZc0C$>%)e8`s!RC;rb}%G0fwbC*UO4r!Y_RoX)^mI0xskyMWt8 z%u8??uE15eX0>bAtx+^twR;1uJ;c9?!rB|4-eoWJhD2Ba8hp`AVSNH~h z;`SYTvPPD$$#M!sQIcUD>1r#h&7#?CftuasR#9xD{;9`M=8$9^)LR7AU zu@8Z05FJ7x2E>F|5F6q^T>OR+CLY9x1d!0i91Lb+NCHVA86<}kkP=csYDfcVAsuqk zLk7qQnXttU0AX{g59WvXH*^-)Io%qjR@g$+O7eS^EmT{L%;ET5gFo{*GiHI`b+8^bfaFyrD(zs>v5|N- z!Df(j)xv!XY=v#e*$z8kC+xy*H}UL&y|53v{cw(^-~i@S^5LK@r8-1D9=4TW-db*@D$+I3qg2IXDj&@P835!DYAt zS3%Nq4f8tOfSYg&HW21E`EUpB+7d=Q*Z90E{wvQDQD6VdO{sgNp$98lL;urH0_{HW zK7fbt2p)sz_5^;1r^t}Dy$9b#&(P~Rys(9;m*m+iTN2ItKV`esYgZs+ z1e!uKbZKr6RxO|BdfQ)5O1YISr&a z#s61X{(2ay`rBo{kXh!X%^rZhGUn%hA4}esr@Rcbi~K@r5ON0-#}G)sc*0P08U``Y zVmNLo`Hmi8FRG0+o}=$S(jxJjaW?Il?i|Fip#JeWitOa_ZRhBn16 zeHL~NAXnN6X=|menu_~0ka^(zd}GNon9ltS{LLhPbkZx|g;GA{eOaD1tcJZbdX*;4 zrAaeu9`QFD=D=K-XD>tl-@KpC{Q`7d2)nUc#QkDe0!v{TT%%oGPMj<3WvSC_;s%i$ z!tREZ$XW%fVGVxP;(r~ihYhe1Ho<1t0$X7l_}CHQK*o0B-2ppcm*@a{aNi62U_TtN zm#4jBrC;Y`XN3$m9mDQ8VNSqF^2o<-3*H{;6!xdNKLg?Hz6c}! zv-Wb@IXDj&;38at%Wws*!Zo-KH{d4Rg4=Kh?!rBEyKk?cJwX0Lba_O)k3q(}o^by= z_D|s%JhxZYWN*`Pu3vzp^(BbTui!Pjfw%Au{($%J0Y1Vf_zYj*D|~}LiTk^~qDB*~ zc!??<0>A=+U2CBAr{1jI1m@YARfer1dtFC zL1IV(Ng){|hZK+!QbB4+18E^0q=yWU5i&t$$O2g*8)SzZkP~u2ZpZ_9As^(20#FbN zL18EYMZpKfpg5F(l28gtLm4Ow<)A!NfQnEFDnk{h3gJ)$ALO19RJ)kG_g5J;v`a(bG z4+CHz41&Qh1ct&e7!D&~B#eU5Fb2lLI2aET;1~E6Cc-3`3{zk#OoQn#17^Z3m<@Aa zF3f}ZumBdqB3K-yicvS0aBT-y6tj)?vGXY=kjqAU(#~2*TN!v@$0n_x3+fvvEO__jx3jsSe@tfIyfN4OEk&L}dLUJZS!VOPzt+l5YMAG{-5fcJpkS>NRM8n2Y6lFYJT;Z~zWQq@}Y~Q|n8(cc@375-Ji?S?zG5Wv`x5@)~VFBYS<5~Bd4}bZg z0DcR?EM7{5FbhKwC<;C(2F0NSco_38NtjZOxLRq4Qht|TTSq*Vp$h4&3gJ)< zsuQ*bNPk%5*W|hu)W)rjqpnsLed;+H@D0%bnGKA3RNv8%v6zP3H{`w%ao~dgh9EjL z!fXsppeb(6Fq=aQhwRgDthIDBq5d@?d=o=nE8>%RrBqr|zQ3Ac-xT}WnwhrRT5HnS zhJ0`92v*s7h70-TX-63UcYS-V3xnw2f%qifeXKaC$aCpvJR7&_gxT5Aoc?Tc{hC}$J{5wVPz-uOZ}733QsU_YeW4%phXEjQ4&<2* zLZ89p;}AznEeQRG5^fj_hY`4W0%~a^9ck4l@@O=SaX8di?8m_@dn@w36*{*fa7d8WPCd|TZHtc3srwe#%p@Vtm!W`txg?WzF+I;*>bF|m;TiR#~h%N#6ov-4#S+EmA$N9`nyYzwKP&D<5^sXlCtHPE6{r-tb*0( zwFcH=zYf+rI%pdlvWCE%TiEE3{eun4o+(NWt1TVWf|WV@r2wgX*u;wJO8 zyD)dd9_;oab06%71K1tJl+`V=PhI9-Wqx!&bHNW;Pf^O!nY@)AU}w_jR)>&(82`UH zygX;OI%34-R!6ZvMjjo96L1ngr{FZ4fwPVfb{r+;@Kf<4XPw@cciob!8_J0uG$Bti# zSJt?`=U&!&e!%<)@-_Pj^E2^#*+FhqdDRz3UiB5e!JqIQlyfj{gVB93ar_vw(VVg# zX$bi`1h*mo;>P=l_$I2MT3Vnc|HDr(DT+-U(w(d+0t=KOp97t;hR0kdZN<(8c8CHF zaDuGIZbTY_xORbj1G+Ii;6=Bn5DXy@4WdIR#DJI}dmdw9mdA|E(J65tu7uTwX<<%T z|23R3z~SgU{9p9`@BI|BN`_7{ z{_bNJxA=cgeMyc!GX9nVzbPS=a~yG)?TozpWt~}S?9({M8@ih7u*H4?a+%L3e7cA< z`PdCkx5NmO9=i-sl6ooM>*4GY_v^bR!Z`^Iw(_qSw zo!1$ila2IbLZ{56UFNfs1WZ9jn971(R>7+O zxlYq^JI%9eWX|>}(0>6U>X9sWQ&#s7bCVI+v z7vJynH>ITtCJup?A3xKyqR8@(efqc-okY)KApOz=v>B#uv(Rm-RvdddeW(QSlyuHE zo`>u=kon#W?5g*0sz)jOm@@r!$<)0x_GO?f$Qdc+Fw29q*A*xi6`ga9wy_e|m7xk$ zg>a|_)uD!So-sBe>92_n@;pS(TDY0-1bIiy)oLSGbda?la&|x+=X}PI7+<9nBk}nn-dWSF3ypFr^V#xT%yKGn7e(qQ zaY=s4y5B~~ZwxZ0Bxh#G+GJUW+yuL(JojeK#kAw*vz0PswnIPi&MYhPOe9@P$SaA< z+(*?M87-g{I*Y&fl<#m(FpyKELBMp-8(mwSko&hiryFsKu{10}@ zi4H$>8G`#z7zV>(gmV_pPfit>h5obtR=1=Kj6@f+F3EH2L_L)65yoVUefP{&I%BEP zPU#bwWw|q^^l|+4Asb~;-v2(@irFy6Y0lk_b#5e|HWKef;uYCWHIDdXY}OM{l65%d zch7jI%*Qe=iQEa!Ot$>y2y2`ml zTTOb`7`m`Fk@3{ET+8>5>D7=d#{j%7j_p&JafS6`bW6oP+Z)fcEzS=0)=065*2&_A+^L1+F?} zKSY?ihW&MPy@9_~q{qMK{3dp?$3gZtgd?{%NS(ih{cVu_4R!*`}AKT?-hE##_kQgCEPps!zp_^ z7)y0-Ctt*V2kn-atieFm2l&YKC-}^DC!V*I$1mJ}g>Ueub0?*7CwaRQ8O%u{U)lvW z1(Ls2G%e_)GS8Xg?G+??x>W#XQ_79_vjoxC1DON0Q(v;Omi-xhFDv0~*xNz;MKS#B zqJ978yn#8-FW;xKed4KK2elPaYSMaw(j1d!$$4IC7e7!-`M?*Gi+PMx1+DDtdkFfg) z8>XV+w*vJwItQU-HuBPx6&fU`&PdxT-$`bAV~|HNgZyC*@P3zT`l}$%I5uV+LtdDQ ziy20I@xW+nF%#f!zJH{>I7s^_;c3@+jtOx~6d@-uc1a*9B!lEZhiKEpFXMHP63n(w zbU#enZ@S4dNnyk0J;t@Ti_GH@x^ccB@ylLXNnbc~1*y@| zeD|`a%J6$4!mpXOMC6rx3(Gfy`5uCh{Hed$NguaD!0Cwen%_qA zk(Z8m%{@kEB6XAWrYA2lpkqe(d!C7$vzojMqw&lxQwQXImI;5EAq!-MY>*vtKu*XN z@eHIbHPd;{=*vppOMI2|^OVUS`6z8jZX+ERc!&A(kG?8$@?xJ4@*}qZ6of)h7>Ynq z@If&s4ke%@lnS~S5r?Ef_TTBMw4v7}>den)RPt>`n6eRiSJE&4fB3ob|KUeYIr68+ ze7_B+gh)A%zO&Cb0ZIA-;>LIj9}TjXxE#93zTzgjoQ@>p7|d5hzcT*K^UoOLrA}2LYzB3Q zH7$4Wd&lr=>d$&&@+;hE7o=>;dQQGENsE-*YRIV$HJ~QQUQLAD^^#q&@cWZs>}u#jI zJNlS9ndcT1BY%2e*Asd{Z|H+webK)k^7_L7>;}Rht_Q;q(lazDL=A)CFao=gFp6;D zoR&2@s4)6l_?~>i^DnH)_pzLr>f;2hKu*#cgY2>R9|z-&{CGgQen7e(80nsXuD_5k zzrsY^rT+RT142s#4{aa+)(DR zXK+0eX5l^?{pS$Q%&+I#Ty&p@y^qtq=9A6^u#o#jn2TWvEQMvT999Iqq*l@20y$fw zIqg*o=c@=i`KI=lvDef#zA306ee;?dgBj4mCHs;Hacb@y=_(A3-{nYJP5K7dX7~w>l;OtSgFhMD^}1r9+s`u0@IFq^ z3y6p}sv#>@gsj++_Q8gIoXGnS<34WWeKhW)yTT&xWzNCJ$$RGWj!%A?ZCNP(Vi;i) z@C-#C##}l4PrglJp=%t%t);w6Klmv1fLkd?C<9WnoLqJMbQuJn=lj{l(T~5I+dYkMptU==>MTpW>*^W z#9v3uHZhAUE$LwW5Z{H;AC`TRS@D|q59IfRUeFu*;NBPdL4S}u9Du)pFbD=?C;MK8a6J@;aX%bJz(^Pc zqhSn;b!9-43^bz|C`YCqNdms2u{n-3j_~8b$4QhrxiNt-zmR6rJ)F#Fi1KIxpfk&zoe zxg-3@{wvdu?4QrWiJT#v+BwUTRbNF~R-<#6Gn>AK_+-Dhq)E=dTFbrYvF-R&K)YLf8yjU@L5c?XUxO!Y^qnJ=ceC0#3%g{`PMr?I5|)EAf}8h9l|_}%-=x1Bad)@6pn$6(I3Y= z0ViQ2Ue+1ef6o`d@`>a2;;IO}GWOahH9R zceuU__uxMKnAbDs?jB(G5FWu}cmltpyUh9N@RaLk$a)ShaI^A#;Gh3{$^9#M4R7Er zyn{dBJ$wK;??ax~N3K7?XZRx5*nLIzH;}zGe`0>ep2aXq104du0&?bfAf}uX;XgCN z%Dv6am=wsG(kR?JzzIR%0ylWT3sE5$LLeGMhfs(CF(DSjMphh%>&~yjARcz{A%R== zn#=hgZk5noQYCVSsl<@PEn`!1KFE2MltXlrL2~zeTFm*>==rpv`ScX-JbFrZPW`ge ze&U!}oWIhZx{w)NvY?;L z&t=7wax2d%8`s$(2joNt8H3G*nH%!ZY0Hb55As6+cOku?+kd8lTNQHW&OwvAllopCQ^vp=U^XN@ji50!fu_(5 znnMd{N!l+urSAU9e$S$ME9A6>Hjo5;Wj?Ac*X^LaA(uHF!gVy_k~wGE1nzrSWCYpY zZ;&f#>nUSA6Pfo5R>h2d$dB_!i|fIh1k5Taqdk92yU-aq(!c0}*%i7GXLslUJ)sx$ zhCa}jveys#!vMFOCR_qpB_d>*Ya0d{@{G9+-UB6ZFNr&2>AVLeKIuPs0!ryFP9bJB zDQ-UANyYR*q%A)Ey}^Vxb&~N3Rt=C>Ly2n`=5TjuWR@meX+!1+!i+TH;~U*wM(12) z+{zekzu;$dgqz4417k_UI2aGI4r3rPCm3a#eB(MV`sD<9SN)2giSE<%edN6=-{!Ix zUGkLuV91*6cB(1(nMycWYc`EKGu>Sl{oHB>dd-AcAa%jV3I4O)<#@M=tn&ICcX@p- z{^#L7A6W}vA@_@5F*255E`?>V99Fn1=qq6rtmb}=JFd2tc-O&tWF zKj^NaA42ED@Edv@fyE$evW{XNgX3;l%TtwdRu!G9qLYjl$r?4*=^*bU$U92rsZViz z8qUC3I0ury=P?stvi?-R;FjNDs)np;$f~MebXV0cxvR5_qdIogv2&}-#CwJG)<@^7 zguNCa=Q?`c;5pqS->CKYuMnXRdwmJ>f_eAb_+h^beSMK`wOQw1m^9K!R7edr)C zQ^1hVHzQ@3#ueT8KIT2u5jTyE(7H!XYGa*0ZWd2V@~I`aEs=SWv17Li^t94raauTQ z1F>@}t4GFTTk1BCTiKx$V&&Z@bJbCh_wyL--^XTIuj^r?0;JF7rF;Z=%sdb0G;%Aj zl070G)BXqrFoaXeoxlor+{`?75$+@T>qeHep^`2R##bKjdfM`>*cSh74Ovl1TYc7+ z$(n~?u0seL%?RiBFKt#ko@+b8v?GjPo{Z}y;amgrjJN3IkEA=)(^`)~zQp7@7Q~K7 zgS^k<-BGKTl$^b|lRm^mrb#Zyuj;36PZ#zB@bdyv2?8 z0QQMIohd_pzq}K9hKaG4{)Wu8$H!k1PZuMec-SWeIWJnys?DRiM#wV9)slI#^PHKt z!p|rAiz(2#i`I=Xhi>TD&B(Kqq$?GqCcoOz&L=SHokgV~Oxj2t&AEThtkq-SE;^*c zJw3=bT?R~96Cm+q1gT5qc^}KSdnWEPLl(#i*&sXQfSiyEazh?;$mRi_V`PQw;eJ!XB($}d&KGubL+}FpCoQ>Q7vmy75 zpfNNdKbt}`NY5x_bJEwsBYhug9)6|&)e3*Dxo(5m7PB3+hYrvYIzeZ`cY&_Z4Z363 z1A0O)kNhSJ{S@r`Kwszw;ry~xY$G4#{9ZX1H>c{4{{h6)foC(2>p?IWWc7%&5kt5x z$TJ*@IShv5_XN*y1lJ?EmNAMz+TT&6TiUXPFdF+hYAEB$^2{VIe;lSCAE)yD_>C}G z1I4#I^2S0Z;v9!5>q*9APJmy)TrXw5V^V1`jIr|x#3lQ3fA#dD+{^mlAM1-JqR%8x zG!6GWv&S74!DM7^CypIFg<1R(!E9syZXbP$$El_wZyITkwp-Q?%leAx9$9N# zN|W1Qp+eg&-Leig`igw@=yfwiy>*24zkl=tICt~bGE*kZ&ddiUd3JNi+V z`x$MSw9i{{-xldl#)(*4g8v=J*@^uwSi-%ec{k=B?mLpsz33okG3~?LkNpAc4|>eG z7@0Re<{q)~(I|4p6khsiv%{{e@^>e?&Ggyylgys92 zc#adt3Cxpl3QofrI1A@+`;GE;p6e3SuM32~2$#6O46-k@H}ASD*j>f%HMq`o0)2>X zzDMZ;aeotT!EM~{c>3vgxxUBseRu#ew*CYNB`qVRw zv7=$6d00f6O+WW|e?FsrKlcpPU*Ol&b-3Z@rDp_l3L^+Jf_o_=W?hnX6|eC78s5NL z&q$v0Nc@e&ALkEZXRh}V|D$*Uq8EE>NIPeDsQ1Jt>q$P~&&RK8xcH@vkDdYgC+vUd zGDQDOnqznd>0hw_ir;VWr)Rj{$TmvbaOb12fPp! zf*}N=L39X(7!VU;L2QTvaS1QyHU%=S9EQwz5Z}9rr?pWf@Jc(xxBxmO0{{Aq#NN&P znxo%c+QbrkF_}6iLFSL&S1{ZBq}U~cXdESDSD!H2s%YsMkGZdKSjK`(-wqUdo2hh7W^`H*kU-gK1L4%c#QG$?uXi%feKKJu6IQ-qbk&bAowetT5U@80zw!+=08`Fu z9!Q*nU@*^ah*x&aPa*7-$arPljeKWFo#jAmdP_O**jaFvSQ7C(OnKvoW4w3iKjfJ9634QC)zNhK z>$vu@9GM_)+;G|c^1K#kh=i^t9{Ptoe{qu>24jZ{M^<(bcgIV8j1B;EW?RvD}N=XO#y#Ao?x_e;HZA^-}DY(Y`E)6|fRk!D?88+gezMzxCY99EMz+NJHV19p1%kiI>%PkW5^X_xl^EtjiDBngjy6Ug{lh&K2Y|7vJaGfpzH%> zA1M1k*$2u#Q1*ec50rhN>;q*VDEmO!2g*KB_JOhwlzpJ=17#m5`#{+T%05u`fwB*j zeW2_EWgjT}K-mY%K2Y|7vJaGfpzH%>A1M1k*$2u#Q1*ec50rhN>;q*VDEmO!2g*KB z_JOhwlzpJ=17#m5`#{+TCRQJ~;f6Quc8>(_F2jSz57}doZEx*gejfimu=dWjf7#}b z|2B`?INSc^@qci&e|h{LT;vWafAIE!^7ub^+rAwC%eF6%|FRF19B;BEVI{4d+SJpRi*P>%lxZyzX+|AV*f%kjT#`||iN`#?GVAH02_JpK>fwlBy3 zvhB;`zw86$_g{l;i)w+Xu?y|KM%=a{MpbzC8ZRK2VPT z2X7xJkN<l^kdHQ>P1fS12~#Wrid7VXWMum z|9dJ!IfwB5!OfxGaNKdnw>yWKPxj}s%w^8ccpv}O)a#&_Ls)y;yxBP_&_}VtEu0( zj2YDQ$5DG1`EHrp$j^a#{1??LyDirrT)P%tyJmYo4m3Sm_p#O=ugCvbb>_Y>W*kKA z&AMm9We)gxydMAA`j+eRz`=a{%L@nh+A>#te#+zj;OYxS$3Oc(8KN&d-u=L1zYL{= zr7ucflzpJ=17#m5`#{+T%05u`fwB*jeW2_EWgjT}K-mY%K2Y|7vJaGfpzH%>A1M1k z*$2u#Q1*ec50rhN>;q*VDEmO!2g*KB_JOhwlzpJ=17#m5`#{+T%05u`fwB*jeW2_E zWgjT}K-mY%K2Y|7vJaGfpzH%>A1M1k*$2u#uwVPYg$pmA+cqUhT7J}d$d8jGX?AZ* zu@|Paw6vU=Bu{Rd>eg-PIs4wNS5Hckj>e1rrlV_M;D&1!_pcjR-hIuY?lt{`*IYVp{!6Y|+cnVHy?Sl$ z+TQNLYgTow>0Hr!eeViqar(7=-K$rmiIjgz50oA_AU*KXOP#PgA=z;T^y0s~uI#BY zFTM1oy{j+nTD_-uW9@&F+i4n>T{dsIFV(F|;ba%tY&LEBN*ZtJtj~PI^e$dDJ@m44 z`;12swzvoutsrV_Iwo(r1^Ldn4I#PbqxtR4rwyj%i$f+pzkNx2i>nCh`MXMff7ZXG z=}^~cKe&9LySpLpFPkzn?GKa9mrcnb$*(6LlCCj*+iuI!zql&RA2j-}wTCUUm#t6z z&9M26-$DI-xb$ z|Liy!^(J$Fts&Yo?~`mA9UUmg`X^tIw%7BoIsAP4{L|OI<~|G0pEYaN91Gub>rrX= zlu0eg)rU8F)MQIgu4g^4&B4&;vbr?Xn%%$KEu7nBx5w*j_eY~0HbKKA&0?f!=hAoE zCOzDAUeeWdzw40r?|PM``6~!KGTz@xW8AYaj$f1&rFUFnmXjzVoy&F zP1k&WZk=_CLm$lrJ3f4WdVDiPX)L}zR=zl`L)-+n$^D}a^*{BE=ca{A<0i=&Ygetg z#;=z_>4DM%2bTwqbJLo`4z4PfwJkj`$^&jr*UFE^P(~Y?GdVM8PEDq|QPmcWy?0IO zOx|}Dh?B0Qe>g_ZUAW+~`3n|xE=mLK=Njgfq=PR!>Mv?n#5BWAECaW&71A~hyU7=UT^t4LZ*fsNetujGBL)5A$L{9mZ8@F zn(~6J_W7Ov49_UOUW51t+h2{B*|9V0h4~*f8fsnn!H+nf4z=pa3Voi9J$n7j3-i~H z7~_c7EiJqb%KaU)8f_Oe>zQBKf&V-}T`j-vZRxa!4jBoj~ z?`2KKz26UiH@#ju`~M|^D!>p|K0*2lWmt?gfT{pl-Ktw)?8w~b|G**E4~<=RcNsphkColN`^v_*vR^*;;sx`TsN5_k%gsK*`Z$xMcX@wZ-*K5Om!4PP zJ3n$9+BXIEv2q{j!fgDs+*d7Gc+q9n0y4iZ~+U`}I z4R)T*e^#6Cv+>n$RBj#@Ecg01?VbKU{l>A&ZSx@eu)k;HTe+|3>ssB7?jC&3va;;W zZ${Z!CucT3{rwGNmwi-!&%`h4?<^^UBreRFqY@8i?H<0RNKU9;th zx!G@iW!|3gY2WPYKjPChdydIw-?Juf&-k<-_Vs7FW`BtL*kbmZUY56K{9y0P&veb6 zW53xi?TqYweA;)Mh59pHv*%*=)349lGk&l?!`u6Gt?k%;51*bS!#79vK7O$G_dzgS zvt=2~e#cuPdmo?nENh2P*X&dOyFX^n`!KBk47rBo{SaUB<=k`z?%P>H&vUrgs& zOxMoE>^o*Vw@qv2zI;x}kZbEq7m_U`Tj-Wn##8!Oo0$efh5P9b zD@$xwiDx|fd%1cHUjaWdzPki9lx-_+&xVtdE37e;eRk&_)~C5%e2BZ!H8UNR!dbfW z4@W9XU?}3GPG(^`=5o!YJ;&DB7x!F=q1Hpcf8u$F_h@=8!`d9zEVennKhoau)7QA~ zRIDFZJK!^KQZji`$OSnvPnE^)k|^4mje&KWKb`14U%USXYwK29fBGlikgg+7x1nG; zt6$u~=T>ss1Np1c2sV{3WW9#4OJXJZXWnzpvcJrmVEu(0cf?tx?=zpF0Vz5DQBxBEt& zi~5bZI)#XCB|BbWj+!L@KI0i}8?M83c800WxcFrILb9k{3wu|0FYd1Ydb*uM+x1tb zy~3?ebDwybz6iQ%<=W_W@_X!$xplMM9DSeN*S)g-Lb>!h7rH;=xUk$TC(F$&Sf7F3 z>v|d~c;_OfI6k43`#CNtexGm0gS8o!aO}AL#&v1q!o^AQO&6bS_sR-=h^aALxH#=q zYj5al?D{$T6w@sZt-Nh*K5pwIck#;B?Sp!b%+1-g9dkiAOZ7V#Up~lLq~OyZz2gAf zGNTFCJ{Vdb>2dWSzq~>_FYa2krmuJPb@f&m*Sm&V)&E-BEv?I43vF~ec@6MZx6S;` zYho6sXt{ju>8Gqu&OEcBb7FV7=JC|F<|nIUmru)9o9Q8#>pmIlX@IE_FM0>we}+$Az{#%{KiR8eLF}lU-uAec5f<^>`oBfyND` zdWS7Tt(A2zPOmu4d>N1`wvE5NFMq}_Lt87CpJk~pEOom+zm1pG{?cvgG0NveXxrx?P{&#>;Ad={9wmy3Ko+sONG0oNk|1UMGpYa?o5S$;^T2gIM=sws_fX z+4bCYlI;96yPoD*dA^!Y52dPQTP<-}XNKAHfc*IZW3cX(%deRAtd+W5kJrY}W`F56 zb(*@(dq%0}aSctkZz!*C$8LGtU*G=OS8v(oDm^r+;yF#Wy?fHZcz?`Ea{7Y{-7Trv z?L%9!EzaHIWaDvvE!%2|%k&u*=kLp(jyH%o)LOaxOsl@I)b0BGHeOcyOSh@h)NS4? zPd$(8XS)5GQnzEbJnnV-hlgLZ%~g76RK-W>=ALvg-XF8&VAq3BxSM&o^|NgoSz)nm z)~4l!`MdETUMj^a+-~J}WyXTKR4PAX)fbk!U7z2^%W8k=Hg%f1&1ZzD=W+cmpNpr3 zlSXbR$z0!Vz6$r`#rc>&Ci1fDm-%Nhti1c;ev+OmzLegJ&2W5tME#33sM7Xqu0=N4 z{kEQslU}%b&`w)j*(W#s9Gt;aUpL-=Y8qVl}PBUbBY%P|H`^PHRc)mM@<){=|xn{UR zQZHA!h%9r~#_lwKW@f`xFS%l%|CQa#>%C7o{050nllS@Xdt-hN!RuN)PpUNTW{Ngy z6>Xh8Muu9idda0-_AF1M3-4dzynyorKFiMeL!8g$bLY7?n+$X%>EAlb#r>yVoi+Mt=K3U!Uo3>l#d~@4nyZ^4OvTe4HWn*dk$&bA?J?A;$ z_A8=upIEzNw)C>wvg=85hg@B5^W}flJzv@KyC-gS?=d|4p5n5@s@lJsp^QM+d2?RkCkC-U!(+_S~lF^Wn%wnbxmIUZ9t#~P0t%PDU?{YvOGL+)k$SuXA$ zt6ZzP2YWgPyZ>}u_v+={Ze{IS_h7{!QykyW%C*rY$##FQTTjcp&8>`D*w04osCt9l z&u#C9JoNi_oL9AxkC>VBhvz~#9&>!=yFxf_$9Y^nH+>6Iyty{cjL$Q^`I^FaaI)QN zOL+WZ@BH~ah2>%nOPA$;L&?fJ5yxkickGb;GSEyVIL=t{ zYKhDA8Jg|>wr5%D3$5SzV`X1F7jn>@$8Uc68&e(F`J0>4aH5>YQ#Z#N2kYxm#a1&u z4V`AlSk!5b&)h#&x%TCGJkLWpu5p~>JGD6eu|5nhpSyV7YC^qXW}F+ow)i|WeqOfT ztoD}O`s4EN&Yr;I+&1_C&%GA=gL)rpzP3O2uv6{4YUuudo$SxAm{O4q_c6@I$*#MX zP~G<@ttVgjKU)~{x39c^&VMXAz4hbQ9+&1b_>}j}+5U+`Ti>;$!;MMlvJHXNhvmZ- z{mtir?UlAw+OE{bvTt+c|FtXg>s&c4-YKpwR(>n9x10I*t}gHNB|qyac;w@2h2Fv2ER8p&VBo^V=bM%KFiKS*`*&CV`(2rhoy$J?QCAl? z&ZT_*eGhK^@3($z+iwq<)?SWtsefEMXU4HM+ZHdG{qe5-%pB)7^kJN1xVMVM@r1fL z)_5|WWmxLJ7h}k@<8hAr$12yp9Oo8a=H4Rf3fnX1-t_yi-EQ5=+;bY3^@zj8i)PJl zc}Z{gt6MHu*Vh;Ct&ZR1qR~IJ7_0^EEm!j9+TUCzxfK)C*Hd>_#B$>Q$?;_rL) z=4s|o99q9=al4qm70k-E%a_Nk7A~|4@x0yA7L-4v7p!08Mt8icv&Dss$NZN1clw3& zEV5f}oEF*forylb>CZuaAw8HmJFKvrjK}=wXXfk8T<~mn{i`W`r)Y~K#-knMh4lP} z8>h+6z1}Ke``NpB&7Z^mo!GQzJ>zm)dCi{jX+JU({ebDxzj66#&-k=&_P-UzbZH;g zgZ7Lc?9WF2Oqb=aXz%0GzQZ%qWxa!cybXyaA8I2{aT}lRcl@n?Ion@(w)d3V!gscDKemRyZa$T?9qJ-Axwk*sJGrO26yNV! z=>0SdQ7f7CD}%L9lHBfo$9^I&Y!|iz+hyl_(JpMSv<}uT$<^Cg zpVsy_v>kmcINL7Y_Yo?!3->b}9~QRDj$}$=zOH2{O1~*hWomLlNT}9SgW*0|VY{#$ z*e=vTwpUu1^mzG5=6GpqOP1Z{__z03mp;;$_y*r!-|v~n%cN+(M+RsY*PV5|9GSdk z%4GLpl**xL7HhaGdD-Vbczk#3$>;wpy^ha}j{kQ5Jubagvp1WM zyLh(mY?szwIeW7){;W&a(mKW4&*_}sK5PA5+Xlb+K%3cr@_qk0=k#Y?x^?Y`uiWa& zuyx(lH?}_V+56|*_JYq^8Rop>?p2@vi`V?D^@kll+v3WQmdVmR{v&p_Z9qE?a$K-cDYTa0r(AccYM0v%|g30CH+>Us+ZZW59115-UR3A zwhagI&@{YRJRfV~khM#jD-MslZ@cws{4l1AT^iv!v%jvq+o#)eC9X5``m@`dTNW>B zU){T^Yi+Olsn~kIR(+F8F|Nbxv;Fni(|zc#GY`KQdNch~xV}96xniAZ^g1*1w}M&O zI!;D8a+S}3wM&cR5YOB7%z#};FWBU-7c(C7+vV*-dfqO+&dhkU>p2Dah4g|QR#;BP zqup$87t#ym)b-*Pw~g^=*X-LTr04Cj*O|?Z@o2Zxe}53t^LF$619>bb;|06tqkbX1 zV3#lFP9KkUGkks_y{-%zMqBkyxqL1m!wl5`jhc!$6|%_{DvE+$+r+R zh0f5P$5VVfTE6M`AU;0rJN)+;OqX`?aYB2>r~R=1%~FlpJN@$qTjaVqSYE_H?J(66*-eA*Aw-lxm*$Hy=289&(j-`Hik zJbo+XKkVbve#A4=W%=XdnfWt5?K}K$`!ZeTU&)^FgZ&)uKVJ^&K_&lp`1rIRo(FrT zOTWeX!16PGu=nXPUHYw}eUyKPAE%iv%U{W!@tJ?eeBb|ky3{A8Gphgi_`&{sUw>Z? z+E>iq$EW?U|2~`L;Bgb{UGSfePy3EGpTAF+c5H`H<@fPvKQi0b->1v+Go9F;@oC?| z_V?*hZ!7xG$ESU>FE`T-`Fq`u^Jje8kI;WUUFIL_H~q)>wC{K!>d$m}{KPs=d&Z~z z@OiLjy0ok0f5s2?>_5I7v;DX{;>V%5{=-rK8S(XIx;*YH*)u-#AMxd9x-5T1dmo?n zoF_9~_FuNcsPg;cg!bIeaHdibjZ{u~{!P4Dm>3Y4OeyraL{h+RJ z{=sp8ddhj3OCnw7yYokWZ}xrHkETpHuW5&gnp?8hEjvC9onW~1F7Sp=)utb`V?Qmn zzh_=rfN-7iwurH}(%%=O__&W{=yqr8?qgx-uaB9nzmLV~$9YXhr=LnGYCHY4#pPlC ziWf`Cu7GeCIF2=On7Yn(V7st{Y_F7u-tBxj_df1xa@>?WwB7g=SK;$~rN7|AlYL12 zAag&{@u7Vu(sq-(oan!opEA{@xTWb7_laT_Alt=u6{T+}WzAyF?wbhf)-Ff567zWb zjw@8I0u>7BF54c^i|+r*S7Y~S?sqEln^K}4Qvaxj!=Hg3QYU#H$oV|aYp9dir04o; zYX8@5JpAx^Q{Un}pVh+|f4nQbuaDvM4?zcaeylbLJ^K?ZWKYUQVjECCTgk zxYRLs%@>}s?Y}Shv%rj>4e2N9p|Rbs_orzj``)HwZt}XDJ1oR^sV(geY?nY8y zO$NYK{k8P14Xq!?OPo^7as2(w)-DgbLhyLAyWOhML;ceC{;ol7`QPa4M}4E7QQu~N z9y&wa<2)}u@8!IYxpSQSfpgx)lim0Dlh11!D46f<`UZZdnBnZdLw?PltWDo&$K$Bj z{&)Vk;rG&w%=g~s(z5xU4-56J_W9mf&R6EIcsWq#du#``3+u)90^j0%`MZ0$FG;Lj zKDyobbk~2}i_22|TIvtP(|kyM<2?MOe!J4KHGEI~9(Rsu^Kf?$Njl$K+H_tM)62)t zQ??(U>8#@=P9^3z{{Ch=&aZHO;_>!fSD-?-MFlOWdKBZpz-E8lb#Ih5>qqnR5iS$v zXYcT|{ZICvBYZhH-jGjnkt`0Dri9;@Kh15hvpurio1EpRr{qTTv!t80f9G^PPpq>= zrrwlnn)y(8zoYG+y&%uKez-QbAC|I@IeXujrN{S2+Or47EFZ@kjxQW-(z zUd!g({%uAB5-^+UZe5E+sF0b|xDzyvuGaVlmw#)kDZOO_gViB@kKIC>D3t7oU zYf9ET&ORq&JaHGc3)_M1LLFp#p#~?q=gO94ju-JAF2ddJW5>fgegA$xjKcMNuXUzH8Q!jBo*zl=&ee3T1hp+8u?|JVb_kQ>H zw{QE8IRkTF{MZBcyzi%z=f0?UV_VKiCG0m39P*!sk7|o*x7l1Yeon^v1}pQ+VkR#+AY$%2z_2l08ES2L^Eq>V(|clT-%p=3>bPQDJ3j3>8P4ku+UI1N-|k$JeNN`l zdGyif&_5@WQ{vIF#&gS_o|EDEAI}GS?uGvHJTZK);_r{;eJ?yu%$D`@re8Uz{{FYC|bHCs116+Un%W1s+n7HeYKS+L(e)2IZ zk)?0*DC@`ZVkxC5`yJpo*2H193)>;Ii$C7jUK6Lp#U-(0#XgnV1=rdRyz>s~9@~Yr zXL}{d5%(m?P44*ExXpdqu>UoVZ9CotXxHU=yjb`>-*36ynEU&m`o?qZlYSq0#k>oV zp8NfIuGq<&y9360c{Ph2t7ElGoKnoyl%k0_VGy@CL!1C{H5cM7|%lZFW~9_Q8fRsRPzh3E4#in*FR_GKJ9 zUhF;#j!)ORb@zXd%VB$rF|i};?fHk@TaaDs1q`-u9>RGC=ONgu`3dje;&WFOpQCc$ zt=N703n%k?_4As(m7Y{mN(_a;J@d zZJL*45-wQ1$albJ+Pmf8r&hw!No4|9w|f+;wz+r~|D`UipE>*4 z&c=9}OZOI+7VYhKPXF5dZtJD#@3s!L&iwMdt;;SL-uk;oPul9ruyxx9zTW!oQ~td5 z?hhQ(>dMgi&$r(9`L~?Y*4Etjvn?)-EkjRl+xn`lf4gDd%iHdeardhd}!Fcw{64B$JRgn-p?E|Y3_x?58U&c@7=!bkdvM^ z_wbMHzUPPC-){fWjE!wp#&X&J9{BcCk8X=gQSCPChyVGEj@HZG|KD3qZN7TT)h!3s7KnH{P@W{F}B&cj~2V1$I|}zBOjUb;F&w-eD^I=bNdw&(EX|KdgS`d6*#AMCZ? zdQGmY>(xtd@_A+Z)9kbGUYAY&d#_>tUWJYq;d$#_-^I8veS7hIYxI27P3)>zY@BIv z@tD6&TWsdCqssR#g?Qd>*uVcLr03GYl7H_K<1xR@{(V0oJ#Q7icZu<6*Fk^ry+gqc zE36;m(Qb!-Pf$qD+r{tqXFS?%_W6YLLVo%8_AnmpM*Q>kAw6$*_SF7#jpbxK+O7BX z3+aXY@^*|zyBWTmA-#}azMPClyIuZ03n4vk=dQ3>w@A-FT3pC@wCmt|m!ft!durZ} z@n|>0w|hv>GI7gclk;|rM>`%TAw8HmJFL*3j7K{kEeYxQ4QKnq#q4IdZ9M+$J_f7! zh=0!n?b(0h{z`ksr+u@3p9RyUUEGgo&-k<-_V<%B-H^ZcJIh6T#;1MrIsUyKz8uUq z?vJ!*{9w=b!mu2^KgY*Uu#esg)9l|T!*to7N9zQgNVJNgcc^ zcjDv8;#YpJjZO+S{4LstVb8x|p0(p=#q%wegQ4}CAvaLaj@MBN?aTMt&~1A?WV^5( z*e=YN?UnK)s}{KPzir&--=}NXmVK{HIuUXkE4|l-`$IbE3chFa=S|^#x|3Wg>V~{n#*qorv9{~O}TqoXFrPfI56DsAoAPv%i8pVcI>Cc_OH!fA0JAukGsg}UXgqgjwsw8ohoi5LyZ72$;@(DMpFJ;Gf2HY1CP+p18CI8Sl*m3r>Id6_ z?ZP6ky_`gB%f829=B$hFdC#}r=zMF7dmlr=!gk>I^v3qRBXMj<8VpSRR!r5 zZDPAv8(Ke(mpG-Ex z<2;}9BI+EA!G2-)SlRa`Q>I+fbXUQ1wM&y9r}u4za0l|+{L|X>ZK=28aa3#{y|=3& zefyBtHy@6ZzPX=8D|{Y}`o_L^py(Uhf$hTn!S({%7@_xe?Y{BOd5>*fai8s*<0^c) zuQZ=)zQl7@-z@IUlkM-Q#jdrt-Q)&%y|?RfuT59Rv2+^OE&f(R>f7Xuelns(a3NZ^dA{upL6X9D{aYdm;ac`3@r8Sz;@|*3fhJ3g?j3}0>%^RJp*hPJGS0|!sh-SsP7qI zJFs1-gKRHU(!Ez;TVFa~2%K!*ZtHir58pHJ2H#)bk4WJ;EMq%A;(ouIK{|iPznA0g z5r~x%WZHlQSa+IdFpMgSG@Ec;l8f#eBeW^cTIm= zxUcJ^8*l&o^2wKm`?{t)@T{#fZ~ADsuj{Czw$J(aAHF_k=-2nT`?|J$s{bRO{=(@$ z`Q-V{#}B#tx(=K59d}>X+ueO#)7*Vs_qhAIe)PPj&Asog-S_;ByRYl6^1iOPo9s7! z)92nbsvlRot?0h4?0W|O->dIFH(#-hh4*#E?<#;m)OKGN=k*8MeO*p&-TAlsJoiO zKVNt@!fbj)>pbtE9mnfU&n&QSv*%lE@#lX-U(7RhR{U%Au_ZlUTV}TIe2`(``QX{^ z9nSWtZlS-vk{g*}i&S(zSbeJ1?%lK8`v8x;&-f1avGWdFuJm8TehL`QJILJccQc5u zTe`Qz-JL9&WFJPU91gkPDX`>Q-}%LSW9NJH`)bFw@OrYb_T&5YBzg1#`~33C z&F3Hb{in6r`5=B}+FUqv$f8O8hqP7EE@pM3OTSXPSV|U$OU&FpQ9^5%4er?I`1A`` zumX7=RowVFv{4cE;s$HKdXtauhqmVpk9c}lG&db;{qP^2JO9sb+CFzr`S7mq{(;N- zS9C8K=JTWv^?`crL~@hMNxq?|N#%JOs(*{_^;z9gqJFPbje8HrXBjw(vUkyoj;4(qGmm zoyTmO>ulXThGF46<}i0n+dkDTx%49wq@sCD^{GY)?IUEnupQVgGoFZcVSA;;8TzCf zFTWbb%OtrZ@K;>~z6a^u6*~1-e4Q%nPshtcU0>AubAO!N()3mL*|RgOP3-e{yH3Y; zV7u^mV|z{Xc45nn-7W{-{F3d!c40l)Uf>~jeAr^)8@DDyO>IeX%NBP}RW#nDkw*RD zGYi%9|53(OY#8f!IV`$<8gmuN@6#xzV@sd!-k0RZsh_#rtB?&hCwI#cZT5H6vLdrZ z&u!brc=q#1yKQ~Xt+%>sl1XBAww|@O?d4K>p!7iLfzkt|2TBi=9w4DM% zr3Xq6lpZKOP4DM%r3Xq6 zlpZKOPi=PW=O79HK=klaP zzfSe>(+2PS{f&C>IrF!InbijW-u_C}vintAvhlp#F8}`QkX}e&m%F=N`7s{zTYo0% z9p`)Fw7ebT(Qd?-GohHsycp0~SkTHcQF zXt%>Zj~mkSc1!%TUo0o%(QdYXZ+%EF*yZzMJle4zh4g~mboZ2RQ}7Gp(auLpLVA9~ zjnib8zDM5oOMBGD`pd9?k23Aq9&vkGJyZMWJ=VkiJ=E;?w2S>5?0tOZ-%NX-F7uE5 zO?$?t{fM_?IcQfYf5xYM2j4^Q%fbF1w;S_keA%rF8yE0p7CivLVKSs%U#Ky@oC>oz4z&`|5R!}#-}~~!*uDtBL8o6 zkvX35`Mb@Z$&V|{m&akHK=d(JVT=4vymG3)$c;IUHBt z4C8ca<;`bZm8Q4;1qiFPXS=W+*eI zF}-+y@q5Vco7_L`z6$9nWv%_e_hW6r8r~yd>u8xFm#U3>T&ACjb|LTY(AuTV6@tgz zx81sxm&c!5EnK{d3-{SZw)c+1aon=KXCGB?9B+JEblkE1`CM$pY|yd{=Ll3I@L3K{Oj&1@I8 z1KVY!3GKr6LJ_PT&e^Ww7~h?8wq35v3XdWuY?liA3)`iq>5boZCUEZ>|r^`k4dy=qc&$*T{ zN)MDCc)WPPG-7^lcVGANwFAA&A1}2k>rr~3^uWIGfSUpxXLBx_3NgPSx6+i%c9(&h zk}1uJVOVUgw9yf-?ebc0$Cq)fm)C%KjX1t$&1>LH@G3W%<29LQx^wv{Q%;#=-wGv( zUF&sovdOpxw)E$i>oJ`Da`13}@f>jHmvD`D$M^HsdTGaVfMWZ5-8q0Q{+iOZL+9rh zQ1S1{{+a}?^}gAqW!HLrIO^Q&Fn6u@lu1XYpNdI_9rV{@&PC?0c(IfYckRY`v~hM> zdWQGsn@>%z%`Wv}Hcmb38y4ak@6xO4yVlEgV7sskY_F8lc6j@}+&9Vb4<`y|Pxx8AwUu8lv@#m0LwX@-#PVpNpA zrE)~Z1gUDnhUcPPdfth4nSBew;bHXe<|lsT>z04K?EEzDE!cI-l(aoJoI03(H`07w zJAQ*~g>RSM+S|o`Q;GT8A!%-#@#g&THv9biHR`!nEm?B;Ws5tnSkk$?fA!k#^)=qq z(5U^qdNPfi`eUbsr#N3fCv1OSSc_Lo56w^X3;nd|FT6ha_KWQnEx2s{f<@-0f%Kd& z-oGbq*uJh@^QHPf&QEsCouA*FbVO`OKhZDr)9{V(6a5#Ps-7!)S9Px*>~$x`ah$QZ zQTzFI<(ey6*l}-R|qVYQI5j)c(RWzpAr~i=Xnc3VvEr5SxCY zU+Aal?}DG`zt}XcXJ7AiJ#Ko?wYI0a)4WFQ7g~NTS5%!}Tz=z@3Vyn(ATs?#ztB$` zHo#BxUu+uJv(~ehM(rCpUtwL&%=js*PcLDFOh`Y`FZ9#;zk;9Wzl=$`8rO4WZ{Mmo z&RE>2{RK7VS5%eI{iey&`+~(gP-WX*fg$Zt!FQd+K1Ao=2X8c6I&`+Chg`eoZ*i`+&UmovV-$sueai&}(dj4pg?`#`2mD0;#ij-I>|VRpop4oo05od9 zxTf6V(u03k;kdi7AUgd-ztB&!-wi*}f3ay!pYWYyO-kOVeO#V;c!59e{yH*#QN)Jy z6a7LzZTLI*iT;aCv-Mn4hgLLdKOXvYr|(b0QRQYwY)C)RFTqcL3qR3+v1zuRD|%P1 zTsIhxuCYa)8?~QbN1pi-B*}HoPj=p7H&SGm_&mn;1wVPe1V6nEexm=f>DYR~c4OEU)&`U|fad z`I-J?*HyU0^90+@{zSjfPrE(2h3il0 z57aS|59ufRg?`%ncKC_@i_G%+GFauLDU(Rn&x3W?FJ5=8pV+o6Uf#9V9vG?RHjuO= zf5@B%XRp)6x^9u_C;Ekcn*KrfiT=w}F7LqxP5Ak!M_oKl~B%f^SAU+9NikpXe9*Y1hs0 z6a5#PX6tEptn^oV0_+oN)ZWIsTJwzS@Kf(6Zs&RMTyDsO^b`F;Kdt|3_=*0@n53&_ zmtIrx=PZ3S-el0IeO#V;c(Xrmc}`?}M#P5n6a7LzExpC-lkZotDeGC!ISccx{c4O# zF&^hF)4iYK^OiG}O<1F!=ok8F$9v!>`Y#yx75b^xe#CSdwO?3c|7E_}@C{zaZ_I9V z>*=%A(Kh;texaYHzYl(*|01)rA6kE?N1H4y`l(*~@zAG@ZvJHV`+g#-+^mQV=_mSy ze%kaE_=*0DOsO@5fugvqjpXS+v1#aPZHxroqYvr~3?CBT! zsb>U!qW^M64njTG^skNgRl|+iFLwFbv)XIw@(@b+WPjeWGAi)d5gXD^^b7qo{AKuw z{)O7nuEr#I*)`h|Y#*$O|=e{t@io^?(P z8nxe>^MaG&$~vZ>=ok8F=O^GN`Y$#O^{lZUF`b6(YwNzuHW%LF=LN6KZFSH3L~KYu z(J%DVroZ?7$@i<+G}NcpXit1r_Jya{TG{tdUmhAzIUL1wR;w5ZD)G3SasJo8ns`bY~8y++&yE} zWt*$Uu@(GuaxPZnC+`>fspm8B6a5#PhI;m{UeP z-2*?-f3az(XZFM;jx+{0YCj(5Et4{SvZB&Yrx%o)exhIKr;bm+g*)^oKzQr1`7HD61sQTxm4%r{$) zmHzru{Qd8-*+_n!exhIKr=8pVap(J0Y|47tljiFNx;qEgRDVy8rPZkY66D*mxW;_5 z^|;LYiQ9PG9mfrskba_H=%?Y2!B6yG#w1;3J+F6nvvsfUyl$X>UG+E9xfB|;e@U8e z%Z0V(o2|#c`}tG+{ANowl3%Bv=ok8FC3qq1UK=da0o0 zlA80)*5l7B`04m;q{vV73;opbQTU1ei%nV2b=PV7y4<&7yNPO`&DepdivvTd4FI3KrLOWQG0*f&8s!vY(4(X&kJHd zotTZ}*R8zi`!Kv;=%?mS!B6yGY|46K`c(T9sEyk5d8wB9^*{Xj^$PPRJ1>qG`iXv_ zpLYHu{KS4$WS7pLve(CJm_+6MgnOzxYp@@WdFE#-`02TEWgXK`^b7sed_Vj||HY=+ z?{nAmuIYBqDAsfZwo!XLA=z?;&$^|a@6q4t^@(-kyx<&e$b|G0{X#$W+yy_;e;Jc> z_42tFFPOI^J0tJE_Lc6kK^(6VH)>xg-CDNWeBACkjE}R!3lgE9=ok8F#@)U@`F<6f zs-EdxV)mwoILesZsC{~$Sk1ZSi*%CrQ~Y%i-;b4zO+V2u^wY>^;V1epYh&xG=ZfyW zwOyUHdaF_U`Ic)-W8OO4`-yeqarabi$b|G0{X#zt{{#F)|7A?lRn;?isI#ws`Kzj( z8#HPkJk+wVhFtTt_`TC7JMOs9Pfz29Oh`Y`FZ9!lFTzjsU&bU|RXqo~``oLNYrX%e zQTs)8<(jX>pLsuBo8O$fw#i-e6a7LzHGdv{qW>75q3T)lsa={xqxKD**!fDddq2fG z{&ZF{6Vgxg3;i_xU;T0C`&GsyT~$3-^bW4+>x#87jvsTQ_Veq?HD3ze7ya)1=HwX> z8`4ko3;nd~hwu~q7n^44xz4@d!QDz)^;c49QjOZruPfJlEta}@X3@OhnfYib(NFXX z{j~H!_=*0DO;yjJPo3_P&_Gv}Lf)u-(5IFKHRPJFMVt2%w^GNab3-PipXe9*Y4&&F zC;BgAlCG+r{>=r|zv5wB?EU)-8hX)#y|1TeygMqctYi9#exaW>|2zCd|HY>AQ+;0~ zG-^K{=XdtLo+3XT9alEvC;EkcTK`Y*6a5#Px_WjlUU21A3oe_tAU%t%@hRO#?JsrT zTeK|h{?m2t!Ht?uEHf3^>F={YBD2j_kBQij{fT~|pEf)UKhb}&=@R!Yqbs^rclX6R zs^rG)2L^gi8f@uazoy?^c^+t4+vC1DuWi&_-I?zw_3;nd~U*ISDFE%wh zI}7e!wPtN?r9(=M+ApXx-)uc9y^rONI%gp^iy-Y_mlTu&+jYvscYSe-u`Tg)vX6V)oI^eU$(izT~NVKhvZ@b=qLIm z_-PXSME_0yLj^yr>A7LBcX`cH5&TrA{e=Tv*Z0;n!<7^4ebKzGlARY!Rg|z6{N(*Y zKka;i*C*evnoq8vPXoQz^{(i=wtvM9oweLb9{g0N{UXb@Wv=qq&^b7s8=>+d5@4p>KSMbwduf2$MWv%Bf!B6$t*OzUs^3U;py4h{b_NV4t zECBlx{X#$OY=xibzv)L-@Kb%4Rg&PRI_<~fy2@b{uB*78t{k<{PxK4@G`s+QqW^Zx zdnEU}GK()wp8{H3?{u$W`~GzU%ez|^tiH~DVehVK+Es&5mD|IH2mN!@&xj_LMZeoa zKhZDr6Mt`q{@eA_-xT@j^7PB{PWP)bD|@foL$PwZy`Sp0FYr^B`k}SM_6kSig>cMEzKA)-T*Ao@WP)Q|Pv^=Nx~{o$&MtXuZEr!eeh*m}+s=_&ojpw&}b z$7ikQzL%xHe-`?uuMg|jaVP4>dNbEc7cB0u8eWgD&Fk)$mLBWHka>(}$ojE9tl!S< zzJL09Gf&pfT}SlyGuL0my;(1om-SVg2~~eXKW=EUaHzOU9@^WW5+xZ&`gz){pgJ{g?vlz2WE37aQN* z;fIOdMQgiP)ju?($KT%4&rKP9S?Vgo-&s7wWoUV>KMlXT$a=2p^-pSd^4+}LQ(d^m zM>Bs~eoUYF@%J5B4&_(h8&Tr?m_GAksaX!?SKsMzHb1*xoWJY(9hXrxZCG^eie;S0 z;i2x=L+w0dlB?yE@Pu8GOz*?*ckVtdNj7FGu=Dd8*K9j~XP3XbyZ#&a-Ch13FMn@$ z$7wH3fB$p(nFu$}M98H1d!M4`%cfa^+zq@PKPnS-^?|M%ECBElc z`mHbGcSV%W8F+uilU{O|5IdprKV>+H3#XL-_aX!3mUIQ;Hz z@@MnX-`x%2P-~L@_OAJU@?_V4>iXSX^VdxGi5L5w-KV%V<*xX5cYD6P7XEwa=5(IY z?87*nT6xE-;Qx`IotFE)Xiw>wt_->6W;?K5W~@ZJu)X$_&i>wSza4F#S-u~~<-so@ z+mR+!(VFWa-$lE`cKeIjE^G(33y(Lp*ZwMBwfUO9*k|l^ImBs=T0?8@9UI@7nC-%L zV7t&CY%lPT(;i!f<~?@f16y}*J-Kc7jql$2*w#ba(#?DLW8Wp)@{z1Vu&Lp{)cs2B za>}HSG-dB|H_m3d>1%tZU3$I;{c8TV+I4KHd(jBTsh_#RT7i2`!TCbA?Ai77yNV;) z!lsV1Fpk=W6=5sJY2guCP1hc2x8Oau-kQEb*6eIOYoA6d|CAmmJy3d}^g!u>(gURj zN)MDCC_PYmp!7iLfzkt|2TBi=9w(gURjN)MDC zC_PYmp!7iLfzkt|2TBi=9w3)N(!1U4L}<#b+10B3XIi{mHvl;XZNR2fMSg z=zjha<|C!_e*PCF$?N@nvHt%4%GsoQ{@3rv`xUFXpZ~Gs=)^vIUT$(XfZBcIGu^`u zm$*;7AQj!uUtOwkD*KMvE^G(3%g8#k3)>4N>TvDQcCSijoNO28*S_SD?+G`ydxYPS zkLC%_S=hT9>^TefcgoacB)Qprh6>~7H(I+~A)*Q}#Q+ajc2MY!|iz z+hy~0XcxBE#3^xcN%)*arFJQL&Z0P_iLsUK!ggT0uyky%Bst=qB)Msxju$eHm*+YI zdmmo*czBLagvX0j+K##4(C?pko_nfm?!~Z~bc8!zrnnTXmshh~?2Z*{ zn@a5xrxbHFdF;zL)-F3;hP;3Odv4uEq~?e5+yU?Nr=GF>ir%$n<>vEPn|^hF`uvq` zo5+jR-=2+RdAnTYt^V2P6ZS^=r$mYJ_~_`(kMlcTSuoBgub2<>a-5IcIPS=HVLMQ_ zHoXk(!uCSOCpz7_?miX5_^I2C?{J^H{f^>sJW1X^_I{f;w%z2O@oI8!v~v39#`(LQ zZrxFpc74syzbfgLrDVTA$$km;1)6{X+lB4GcIoLuyRf|`V9|3$viX;NDzyv7`TTQx zxdbK{uwB>=Y!?=j?e)bePu%|cv;M&yAE(ay{f|C8?@PZ}zkTL=X)nP&Kqk#pErK=f+TtLf?r;_`TRq_|Fkx|gKDy6@4EKIu9u&a3>ocV zu{QbY80}&yWtW(<`zFG=waW%KuyI`fg)5Yeb9~O6<3II`?H50RHxcSmPZ{jpQTP1Q z1#NlTq1L{?8NT<(uYD$SZkCThviCc84_wy2qI=0ecQ?20y^zPz$Tj)-!1}JD`M~eo zab(MQ%m-fN(i&+`5{5jkaDF)@Im|uBU;BCgeeMt}I=|$3zx7314wUnLwnMCMY%kR2 z7U#m zJ+-&r!ZK$0j&*N6vig#bOZR8lVrSWEn`OL#LH2l4hWL;u{?v%4Mcf?m6Cyq|;wMIY zSj10?_{k9;9`O+o+gn+(^?ho@PmB1-h^@u5_Rom;nGsKq_^61Fj`&#-9~1GjBR)3b z<05W}`1puVi1@^apA+$OBYs}QCq+CX;^#+va>S=Zd}_p}MSOb1XGDBvj?3etJU;Tr z@5DMj*gvPwd@$8_^6;HM$?@j9^1Spl`S_dvGS542&hzxY$#cgYdEWG?Jn#5io}2H> z^X#wXx#zoi-tgl*H^1?LTzzJ|E6>AU%JcMZ=6TnaJdgY$&+A_k@#OF2^4oA^o_kvJ zys0bCGoGF2&CiYay~vN_E!)r3*!r6o*$#&|2ncq_(uE5>*$#&|2ncq_(uE5>*$ z#&|2ncq_(uD~6tkG2V(X-ik5aiZR}bG2V(X-ik5aiZR}bG2V(X-ik5aiZR}bG2V(X z-ik5aiZR}b&x-p0%!p@2e0Ibyi1>vOzbN9_5uX$Bxe>oO;`1UtKjJwNw?^C+aeKsb zBc2!W{D>FiIE)8={!ixl1DWR+#&!MQ5d)E6=IMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cE zMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u z7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41Ezp zU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7cumO=jYTHG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cE zMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u z7culj41EzpU&PQCG4w?YeGx-n#LyQp^o7^^s4rsZix~PMhQ5fQFJeD`@z)cNbN6=H z^(^i8^OvyS&tC%j`Ac9we+lg8FM<91C9t2r1orcnz<&M`*w0@A`}s>?KYt1A=P!Z% z{3WoTzXbO4m%x7h64=jQ0{i((U_XBe?B_3m{rn}cpT7i#zR3U37qOqeg!s@G?T5aI zp)X?Si`dU!LVAAw64=jQ0{i((U_XBe?B_3m{rn}cpT7k5^OwMW{u0>FUjqC2OJF~L z3GC-Df&Kg?u%EvK_Vbs(e*O~J&tC%j`Ac9we+lg8FM<91C9t2r1orcnz|a@95A;Rs z=Pw~X^hNujFJkD682TcHzVQ14>WdiqB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qo zB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?S zix~RC?<1)%V(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qo zB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=nL;}puUKqFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qo zB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOykCm?B8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qo zB8I+*p)X?Six~PMhQ9FrOX`al`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qo z!uz?YFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(1H>523z@p)X?Six~PM zhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFMQsN`XYwDh@mfH=!+QoB8I+*p)X?Six~PM zhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I;3`BmzR82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PM zhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`oibo zsV`#aix~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PM zhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkBm->*S^5kp_Z&=)cEMGSor zLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtps59_ou2`XYwDh@mfH=!+QoB8I+*p)X?Six~PM zhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+Qo!uNksU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LySMPmuZ| zhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzVQ8|)E6=IMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7cumO?>nZxh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD6 z82TcHzKEeOV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeO zV(5z)`XYwDh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwD zh@mfH=!+QoB8I+*p)X?Six~PMhQ5fQFJkD682TcHzKEeOV(5z)`XYwDh@mfH=!+Qo zB8I+*y}tPOrw4rr?DZwE*O$OvUjlo53GDSHu-BKsUS9%xeF^OKC9v0*z+PVhdwmJ) z^(C;^m%v_M0(*T4?DZwE*O$OvUjlo53GDSHu-BKsUS9%xeF^OKC9v0*z+PVhdwmJ) z^(C;^m%v_M0(*T4?DZwE*O$OvUjlo53GDSHu-BKsUS9%xeF^OKC9v0*z+PVhdwmJ) z^(C;^m%v_M0(*T4?DZwE*O$OvUjlo53GDSHu-BKsUS9%xeF^OKC9v0*z+PVhdwmJ) z^(C;^m%v_M0(*T4?DZwE*O$OvUjlo52@HMV?=etc#LyQp^hFGP5kp_Z&=)cEMGSor zLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=>x`3-v_|eGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj z41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z;qOIJU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyT1{v7p141EzpU&PQC zG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cE zMGSorLtn(u7culj41EzpU&PQCG4w?Yec|s}QeVW-7culj41EzpU&PQCG4w?YeGx-n z#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP z5kp_Z&=)cEMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cE zMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u z7culj41EzpU&LNt!tdiY;rBxVdwmJ)^(C;^m%v_M0(*T4?DZwE*O$OvUjlo53GDSH zu-BKsUS9%xeF^OKC9v0*z+PVhdwmJ)^(C;^m%v_M0(*T4?DZwE*O$OvUjlo53GDSH zu-BKsUS9%xeF^OKC9v0*z+PVhdwmJ)^(C;^m%v_M0(*T4?DZwE*O$OvUjlo53GDSH zu-BKsUS9%xeF^OKC9v0*z+PVhdwmJ)^(C;^m%v_M0(*T4?DZwE*O$OvUjlo53GDSH zu-BKsUS9%xeF^OKC9v0*z+PVhdwmJ)^(C;^m%v_M0z+Sh{qNyg@3Y@05<_3a&=)cE zMGSorLtn(u7culj41EzpU&PQCG4w?YeGx-n#LyQp^hFGP5kp_Z&=)cEMGSorLtn(u z7culj41E!!efaytY#%Y&M~wCnqkY6^A2HfTjP?c(kmk{r256zQg_dVHO-`E7 zBq!$4rub+?)W}sq6m9h?5ftkK@qt>r*p{|Rfbvu%zVWJ9pP=4*Ej~E^`ex0yXP-Iy zBi-?A{@=ms{~fIU-@)qt9jyM}!Rr4Vtp4A@>i-?A{@=ms{~fIU-@)qt z9jyM}!Rr4Vtp4A@>i-?A{@=ms{~fIU-@)qt9jyM}!Rr4Vtp4A@>i-?A{@=ms{~fIU z-@)qt9jyM}!Rr4Vtp4A@>i-?A{@=ms{~fIU-@)qt9jyM}!Rr4Vtp4A@XBmI*;5i;# z@4;t#@HrlQt_RQc;CUW=o(G@r!Sg-%0uNr`!3#ZD{U`sPJN>7F)qgrz{ilP~e>zzG zr-RjhI#~UugVldJSpBDi)qgrz{ilP~e>zzGr-RjhI#~UugVldJSpBDi)qgrz{ilP~ ze>zzGr-RjhI#~UugVldJSpBDi)qgrz{ilP~e>zzGr-RjhI#~UugVldJSpBDi)qgrz z{ilP~e>zzGr-RjhI#~UugVldJSpBDi)qgrz{ilP~e>zzGr-RjhI#~UugVldJSpBDi z)qgrz{ilO<{tUh4#~Uvx4+72~2kZQCu+AR`>-=%B&L0Qs{Bf|(9|!CFaj?!G2kZQC zu+AR`>-=%B&L0Qs{Bf|(9|!CFaj?!G2kZQCu+AR`>-=%B&L0Qs{Bf|(9|!CFaj?!G z2kZQCu+AR`>-=%B&L0Qs{Bf|(9|!CFaj?!G2kZQCu+AR`>-=%B&L0Qs{Bf|(9|!CF zaj?!G2kZQCu+AR`>-=%B&L0Qs{Bf|(9|!CFaj?!G2kZQCu+AR`Yy9D0jXxZ$@rQ#o z{&29y9}d>|!@(MVI9THk2W$M{V2wW%nt9c%BEJ=fUTD@O%%xz=Icf@Int>OZdf;GP4;-xPfrE8DaImfi4%YR+!MYweSl0sw z>w4f|T@M_r>w$xHJ#etD2M*Ttz`?p6I9S&M2kUy^U|kO!tm}b;bvOZdf;GP4;-xPfrE8DaImfi z4%YR+!MYweSl0sw>w4f|T@M_r>w$xHJ#etD2M*Ttz`?p6I9S&M2kUy^U|kO!tm}b; zbvOZdf;GP z4;-xPfrE8DaImfi4%YR+!MYweSl0sw>w4f|T@M_r>w$xHJ#etD2M*Ttz`?p6I9S&M z2kUy^U|kO!tm{F`>o@0IA2?Xo0|)DR;9y-39IWesgLOS{u&xIV*7d-_x*j;#%6EY$ zUkF?ILfFa|!dAWzw(^Crl`n*?d?9S*3t=l?2wVA1_T&p;D_;m(`9j#r7s6J)5VrD# zu$3=_t$ZPD4KD_;m(`9j#r7s6J)vpxAj*vc2eR=yCn@`bRKFNCdpA#CLf zVJlw{VI#}aP2W!0PV2w8& ztnsFURbRtz$lb4TuJ!tGo_Yc^$0sI#}g(u*&OTmDj;)Uk9sw9jx|su-ezbYF`JdeI2a!b+Fpk z!FoO6V7;CojCHxpT(NP5R(MVI&y9XrKm0x&AB6jkR{awmxG}eW&Fi#&R_&tNK|$(! zSnDUs&0^dy=23s2mam(-*t9ovqNc;I*L2EBni3!B!u=Hb=>*|bwrIbfO#sKrphA9! z8=trv`;OZ$e%$bz5`5RBORo5dNr#{KsY#WC`(1zkvyX$WZ&*{v-7joOH_6Jqrb+oY zO37{NnWgX}wI=QVd@h`WoDZ-+N1*D;8-;eLHcW&5>cE^qP##Q}P!SwhaX_$Wza!0= z&nvDZhrfpaP8gxmb#nlY9(|kCkFNjAjSoXVOrtnEldu2t>o!=^Q?6KIS)D!hWJxzbg>dERahe!awpW(b~Xis;y_}KaISm}4gyz3D? z!Lr2+OzMexp`QAFpn9VI{GR&#gm%&;%!RSi&y)757Qr?8k`)JIJgxYb>gg%*$i^ovbfJFh9|=?beS^als$UEFd`Jy9>z z6W3kpPdT|?Ur#GqQjJZndeq#Q>0e)8J9E~k%@jm{o}PYA*E=FnPZA2{9n=%`LOl_Y z`XkJ=wxefms-vm9G1Zwi!+(CNBi+W@(bKWghmG&#kb<5X3+QQLjQG&gd?{y~hF~vl zevZKvm{!pau4@=CGk#vzW!Hl?(&Rhyl-fR}6m9F3o!un3Ho{rH*nj*rR3#?QkN z=?;5{BZ0VD`Ev|Hnc*@qIM&vIYgC^*z84=q_ia}_FpXh7E=8OtY}cPBg&KAKpe@zi z(~#**ccmoYDTJO^K34kk*_7CXch70hw`a=dc<^17bm zS{WQSGpPFTR>zF+aTx5`PB!YQuF zabo<&U;kmWR>(gcwcs2bzw0)}kKf@R>iDhyPW(PcVTs08!|}`ZIev#9QF#h+cjGUN zKntP9mXDQwtZ^uWdaL+(jHkA!fnud~*EQ4&^|a$r)f4sSle>N{>q@7((+!>Jj>gvF z7sRpB&oQl5%{Q%9&BbglIU>DL<~j6qk(^i`dBmxW=lpV-ryE>7Gr(@U%D*UqM^?072k6jL6Mbn0lgKLOuON^+f$eX^_wBXH#o;XIrZ1jhC^~&nm4s zUwi{UZT0kbuU3}nyd%_;)eH5s{uinz>dz<4>t}aMs;RYOnU7Zp9xMIA(wd7E<8S}a z@${ruTj;t5`@+-<^;Ee{mBFYNY}~K3-#3UUDXryXBbC*TtAnJq|3T8y&X*rt?j90MLMam($|Hp zR-KJji(6$Q9gyt31@v@4E}DTj@2D5*sd9_ziTd+NT|dJ(vmw*fn(pXHVO)(W_E_n| zIJ4^f5?ame#T^knp@!q>MY(7OqMoQ1>Z$%A)f4sSle&J|^$r`JCHV5O(wqIxF*@^0 z{;vM%2rquB^gAms^+df;Pg5SWVG^f%%$~Uj_d(m+o9w+%%s|$UmX4Kv-n>~=V~q_OtbdyB3HxFX z1_(X%%lzcN4fk<~%KaU}dviL{KF*^3woZtS6Ts1(-Qf-K`#59m?{Kp|SFxj^xaTX@ z{7wBG>@pw{5`IVoQ8)TN?04lH4Tpa>uj~U8`!@ywPCZ`q*xU`seRTh>jo+_3V#DFb zes~7pE%)9wWB96{ZFuV0iwuuH&fj+D9alD1zpeWBrv61=xvBb@J0?^g_gLm0;aB}$ zq2DAl@_>xlw!2SwZ4vq}3Jv(ZMEL$pcwJ-ZpZLU=Yrg!mvuZ!E`N0~{S6_bZ#>?K& zzTx)Qd>Arpc-vLqnDOT$U$=34#o~=3!^U^^{rt}N{`rpT_n!Ov4I;yaPv3QG^|Wp0 zRv-6;wpx*)cJbWHHy+rtW=2pmaeZ**ZQr=~rQiMbO?O?t;jlj(S{?KceEqJ?Ke=bc zhx#@ju_oC3|DL;f(~7tKsJ41mZ{6Y>{#ARy#6cqi?H4&UovGWK4O-x}IM1oD}BgI+>7szU^Vb!~EoPZXQ_(0%zK^ zX?c93V^Wc;Y9HJ-cLw*Gu$O}UZN9%3GBg>EXQsKeyAp!@IB_jrCQn6GPQF2M2i8IU z2e)lIGYGDpB?Ym^>n0o$91zF~le2>!i#lpy%kla=BK1>=Vg*t+k7p@Hq)kkO~y}uwHZW$!}W6gAJtEDy&U*og$2bOHE*`Mu+Jj~&v>vy zjmxdJ7pUfW#3!E?T6rFksqtZIZ+#vykmnKmCmm_dIBxl6;Ez=>?!E^&K_k!!4#3O< zu7Bm1VxQkc-JUpT7uq4T%TLrUw3o`(IWq`ew$;fA_;3UNTneAD6_*wmTu+Z&kMZL@ zkN8Y*SvgKiI7$NkEu!qW`(4Tf&m-#bjCVh3cuKroDqnH`LwL@!*x~b=NgD)!@7w}7YL{ivf#{F}+ND5! ztX*2lo-w+Puql`wiNA7j_qhQ_#oT^$yj|)~RC_Qj*!V84pj~JO+GY3|YZq%TZT2zi zx9aQS;gN;A-fl>q2(%|36<)LI!Zg;8-7xW_0O#lj<|_QyjWQwP=8JOS-P^!$joPL1 zlz6+0-tzch&@QwC?ZVb*FNJ?9^P?f+$6%)`4ZK=(euJFyJaq6u(G3pTf%nw`N9z@f zzgS!PtFc$Z^<|=Pym7(}6Zt0+e8D226kQp5&#{o zQIOlc>lb#FL8V-4l?4^vjm3rM>9u@|{pLVca1pb$oTTr}x7cqbNKwwQaKRjTxTtDw zW?5@vaQq1;nCq4tjM0H>1tl6Ef?|!`vzlD3dsjm>7nnVif%%%Q`L@1;yJLfUhd0_% z{fU0Ly|9WR#pDq)R!KSAhhUIx$s6+D>6PN}AYF)O>H4NAUC1w_IIRL%(h-mCt+R9? zKTEfIQZ60wNLP8XwiogX=`_Rkh)244-G{^b&nB=L~k)*IHE{H<^L4QI2F|=O&2mK1yO@AHYy2b`xBbPzESAMGqSW&T9 zB1DzcT`9_S-^1!B!t^f+FZoqz{-edxah%4}-!oI?#W#Il>M3;42 zS@*B(Ei?a_-MR(vS<>Ofw$tymDavrrf6VskwKn|Kd(3jv$GwZXxa_*Jv*ZkM3T9{* zAh7)?GB}L{N9*>6JnVvZPB`DbCqm_Ppn#C#KKJQEzkHY9h3xBtU@*Vf>_ecO{*V4} z{WkT7^pm`vSYzW+`bGN5DC<|-ts%_sm%Ic!399+1KU}{|ze&Y(`>(Bk{9$SSkaV1P zJN_C+zsU1{-?8g9i5Pjr^)(KFDIVepx#dv7zgcgu7$Op*BgI7D+q7~VwX+T2Z)crI(3MIOcR5-`(0Ot z)36!w2V(;BrI1~GEG!!`!0UDHf9&w~AI=urBHsOs2zgXR5bVGIY2|%*!9|X!e{ZSynYq8fbm+g;FHini zoPRdtIX@h)q~mzq@uL{}nlc%$IIKV4^x|AtD+~UfYA=b5e>b$^-rf$ z;Qp`6Ix9#2k4$>a#{)B8Ue>d}oj0bo;1B0ZoSqMO;qQEInIJC z!wSxqLU!@F_;AQ*FUi0z>!jcGgTEHJiWyOH?_c^|I@%WS-7@g4D3ZU=D}i6=8sI3( z)dR-wpcFA)VEn-61Q=KN`}K??7*~)h_B7^*-(~zzR#sjS7e8!2Q@`EKwC^{%?(aA; zX8kAgNJ@W5I{L%P-^S4Qd+*BB^jkkz-1T7@CY>B6elWBWKQN7rAId9^3~-KqMD-OH zKPVR$KNQDx^mfM!gLa`EXqR{!tb@CAIF`-G2Sv2GcII z1MRZrcWM{fOXWU9;)aJdvk$*%c5u`#d~uy|oNpJ_laEbf?a~)qA2fT2aUku2_Ks9i*_Zob?Ze6ajhIX%o65I!Ggp}3CmwtHJ9hRI%3M7z)qvRNxI(vyWraegdY+CrHjGjzr9Z056(UAUw&g=S?16Q|7EfICABB_ zuxw43pxi$Sl@%&4j(#WPk1+19ezfb`wUGjo&EDUTUzUA#i;pL2i0NlOR#Gzl8rbro z%WM2riY-$+=GyY6Qyvb-z?{R*^yb5$)QQuM9RK)-?8nSFt$O;mp4{-q2R^)E!XJKT z!&30&86ohpn4jj`1vb8aSnA6>oH!6TJM--V&|$sWTfSW&u1VyPZx>YFAi3hcU4XA5 z>$eMpWH%ineY;>#WZ?DRL{V_me!NcPeL_Bm#pk$qofz%LEMdUw!3h&)m&IKVPX50B z4JW1p(=;xfd{oT!T$H)ZbG;@V*Xwxt|B<)}2cMs~B^TDpg1_hw4t;*&Q$j1(gZ(y* z%n|qe)ogj{0cUXs^%ZwLs9fCjVDVgwYkOB?(Jr(D?ZS3wFNHrMy8NHbtPAiwMZfMZ zPZOO(FSy?0z9j9y_?9s1Lp~;>zUyOhZv%FbxheOhW|v)2jx!gt5Cr~(;#;4K4;SLO zr^;cM`O+WGx9^J}0*-o!;+_{r<@x%&=Xi7`sz>Nq?tunuZ;Di+{vdlEV&wqdlTt?b z)q(^ZJ<0;UpYu{Fz_k=%d~-Ak<1dGUKkGq{lF|Ma;JTA?{}$l%*|{+PmL&Nh<)JMS z()Ob3G3p22vc=pl{5L@ZO!>n1sO)=FSyM0j>Gp4>^8G5uU2_W;jQ#7a*V?wCya%S+ z_jBxfGXodsI2p3f!>`+@_f;$J(KJenJp1L!!I zc$RKD<+uHD#JTT75s&RHIYry^+x6e0A|C06?R!ZfKieRmour(^BVCJq4qa`_k#5InDrd+qY%iCNc%n&Z#&(f`)luJiE(oM1U4*7-c)f?9xw#RW{$IE&Phy23!a_NZ2_J*xq z*e;uEnvhFJJkqVV<2B@G37aP5+K+go+ivMXerz!KvOJ~W-n%1SNN4pK@(cUt(OEpw zRoZzJ^0RcaCg$3Kc%-9P+sQAabM4_hFZvh0XE9{oTOmE?p+B!+NAsSU|DFrqQ?Y)F z^!_{{{eZ;}+qds+P!7(Mg6(_nc?{L7za(GM7iypQY`^|2>u)Vz`i0OhQjfO(#3%iL zeb0q_Ie!Y#6QA@$R&V6Xc|aC-AMr^)WZ&;1U(ywlpZFpD*>?U=4(nfizeW8GS$xvh z+wn)fq5c^k`18l}AC)%FAz$i0&;Qx^M|`$FVC_LUIQ|RK6QA_;d{5D)>~|r0;*)-W z`m=J-{}!5m#3%g_$FFTal;8K`^uONtt+aL{U&fByGnU(&|P3}|CEkzrhWge z`#Zz`R@y!f>A0T|OP{=F7d6kg=HZX}C6=TeXcsn0dl`5WzBh_P_RVmZ_w1gmk*nX@ zC`$a%;(1{-__rJVkP{$sLz&yId&z+P9-|I(i>@%$;8 z;I-oUl0W$1e!0?7Nu$pl5B%@#`dt&7u9>2KW680l`47@@oW|1k-(<%rpA#CxH+IAK zbHM}S-rY-a`^2TcrwhHAeQ0DN$G-ZWF6}_OuuHU;eExP*5WIb+menSH4)uaHMBE9K4KQ=<$=$%8-k z`Z13E!{_9~KK`DDG0&eAAvo{wcUz0`9|!Mg!FRI#)wX~1Z}eyMZ}s2T_=tXwe$9{b z7VN3hnEL(=&xy~Hcjj;wcTitf#h@z}cOR^Ht})DZLlMRk;v?FD zcG-TM+J*K~QL4l)&un&L3EcnG7QolbIf#rLSK6@pW(C9NA_;GcpQz&Ra=syMo{N02 zY%q8*9^Z0z3Hbj~PK;y!P%iEp;)B8L7%ZP^&%v|{?LfQin5=f8y;MTjCHl9rot>g~ z;d76)1J@nGtoM2yYnMK;cCk+|g8yP`SA0B8%r5!)!Mc(Jr(D?Na$_wF~W~ zqQDM+-|WN^xaK8W0Y~jJY)2yP;M-+Z{78+p%k1*vM)s%W@f!Fs*d>0xV1D3lK=bK8W}>2v;QPQ z6f>gmyhZ-eUmZtV?7E%Luapw?RD~#B@`%>N%Uy_S_m_|6vSF`55sTMfydG=$re2Tn zI*s>Pc;AKl)Vzmx_w5LX?l(ZsqW?_dLw`LOakd^nBV zExXVTvpPl)Q?3_BnNxEk>aLmNd=Gn2>vbb@GvB4f)_@ZB( z&OB2*-x59Wo?85&`$F1AJO)a!p5Z+;#`OvDFQ_Dw>{*7Jojy@NkPci-_ zkOL<|68}B5=pI45Bzxa`YP|mA_2868^m>rjiG2Qz&oS}3kk^UPeq!z6_26NLHBE@S z9&Gug-k%H86ErT}F*D|RF3Q~I8Ar8PI%pc8N18K6@R%a%EADy_oG`+;wWM$ilf9&fcA*_;m-T0=U1%>OF1~vf zEDF~qd0HieqxTz5F3`6R*zyAP@T)ccch63dI~n@CLII{;aiKU$uRE|&NRQ+Z?qwkD zLOakdYZj_qXfGqSu}k#6DeR(f)Gh_?zXh~Qf%;gx;JYQI?DLIm7u-7rWe^!)0V(WV>KvZQrsB?LfQKSKIkw z=Z$K^*+JndvCEW*opN<{vjwB~O>uwju3R(=X&e^0KPT_o4$5xSV6ZM0Kfe&|6|xIB znLB@$OyPVUdrJxZ80|p2Fm9l|0^FDDzjW3YK7XxUUlgWYz9tLmRym`3|Ej<^XcxfI zdQ)ld&uNTTUw4iv49X9YN8BoeWA4?pR>u7fN+E1g$S%rBHdyRYJZDnu-jsHs9cULy zL3fIQ&&?ccf7SzoL`E@-uAni@=b{2%WpSlA&$kDySqgDjvvGQImX$4 zlCBmbdHj8@J$Zj_WV!YJTzL>Lck%WeZ%mo;BOaJXgMz{9FJ6!FJ!xL2@i|Fem+`(F z-*bsJf_>Vr$efuYjURSc|D=!F5fHsUH~H6kJ;rp&JR7gqX&U7hm*@N^9q0e{^J3`p zuE)mnd2n2hmHs?9^mV`WGtvI;tIvbe4zx?(X=)eROZ({JdyLf{^t8gym8J7p_I1ahmjDI}_&U^F0`9eF;E|qUoyU#=?1c}d!VcA4@fwF~W~cENm!J}(J)Uz#uOdTd{rFSG;gGF+o} zp}j)8?4{33s(ho(7c4x*L}}!<=TiDH+JSayv2g?Kr4o+(yd>5UTyMSArifc`upBV! z<$6JC`{*zxOX|?R^0gOv6_jk0nV`>{`J_d;W~D?3UPp4a6QI2d*8ht zbDEFqt6qTreG4`3)X?#zO-v{7z7~j(+{%n~m@G}=k0p4S%s5ql6?)|l) z`*dAn+Be^>a|<*jzd|YJKj}FCD`V;JvGbqruYDpHF4TxEKiw`>`u^HYLW}ounesle zzF#0tS+2*FTTP_Yl4BRji(rOGiA?4cWh|7xJ_1&6@a=3D7s&BOdA2 zSvf;~A)VTZbi^ZFrEM?dXXzw1Mss0%#3S8y`+bg(U)Wy1dE|=i5s!5B)_x&BOZU(6 z-1dk^x)v*E$S-Vfa*kezN4jvH*mf4+Ed3*~h7n<8bLfBcS8rJawY z=Q#Dp9rOcw;)nEh9+NM}Bl(bTNN@2;Kfv#>Svfe43bjvs(pU03aF#FIC!f6bEk5Z7 z?04nJmvnjK()OSDq#v^FQjQ^OcYpq||HLPKJ-?%6<>2`A{S4`eAJQ+de$?wf`S|^> zxA>$Vn632WTWRGl*nf*p`XT#WMe-#*_29Qp{E(jdw|psg-n_B;AM(EgXxk@W(oqh- z{d)g9koNm&n%O` zlCIGBBR=T|?DyBmm-Ot1-#+n4Kg93%@q2V!x9FdI{aJj{*W2$Hl5gn$?0V$4PyCSH zj(f^M`;$)|y~QW}fQ8AIIbL@5NxuspFl8)CyLvi%agYVF(2C;uw z%+;?^_a6CyKk64@X$RVc!q8p@ev;pz+ghjaA7?4vHFeSN(A8*RfHEA|*TvCc;Ti+^ zKe~T_i%EH&V}hjSer~OBsr69{z#PZ=MdVzhevgX}=VI@92zIFvF*x5IlRU@NNYYsq z7eoQyL8+y`p#Ru$pI$f7uMBbhw(%qVxxXH8e*g_0EEx%zLODYK(CV4C+F_<=jM&-I)PaOlfF_SJnZ+JSaqzi2OoZxda* zeXfq4+h(5Ec+OVTMfbV>1t%Z}_r2&pxc|s{#R`9QpGziyeeS^Qb3IpnMj3QH+7TVc zar}KQK0F%#-Cd7)j(sl9w`89yexHl}kp7SUuy3pSL;6WS9%NkZ$9EVz_qx8T)&gRbX~pmhn=PQL(*~Ht?Q1V_rH^{=>ofM^F5i7N9S4APnmuH ze$c`n+BDW5&XKoSaE^XN_4Tos1x~rR_hO3UI(oa~g@N&ec#3wQU8Y~AcA>qreR+;# zFa3MIunW$Y%87C8A7#OP(#w7DI|SU<>lqy3b>-`oEI6EB2taHN56m4Z9v#B(F7tX^(Wr11I!aJ1f5GcobQ z0Rp+_7ViwMF26NsiP1BOn8N4dgk9q2i&O;r-ggpc2ik@GrM(F6ttr=+LUx%mp*F|5 zKD@W|YkjZ!DXcF8;*SYGBm!b&#eFAX#|Iz4n9e!om*E=;?mG#;u-{3T_4K1NrhVnX z4eLL7fuT8TWoz~I=bSa;xYyma0Ssh?`L9(}w9^k4nNuV-w#;kb=I8@ynn$gr{Z zlGW8GeCZQ2_CNkE$S~uBcedYs;mO~qen<7MHi!&HCh)!T+Dxs;P&?!4jWh1(xv=_# z2hWoByTAU-!gp-A<>F`0{GUS)sSf%FPI;o`h^_Cs_B}KIegDsH8TjX%%@a;NV%8@Y zzh}#XkKQ)(qt7MZNq{c*hGWvhN7eXp6kCRI%{?@tp+5^$$yh*91{>QsBgYCjt9n(W9!?|4stdtN8CE zkd|qb&#uiwew+vu4ikA6sv~F+6W4@T@5bWO{ z`@IO2(*Y|a%XZ9}Yvw0q2YrPA(Q@LVZa@Ief6g|G|$W;^HG_eB=^ z=#j*V8ImKR@3nQ6SL!nx;~`*FkI?fW(g@qj`HHU084E*G`b$)Dm*{mHO zIeb>-Yno==_QV@!zW&3HNIWq5!TAzrmzZ}kenwKQGKh}yph5npL>4wOAO9N=4FQ^5H9h`*7-zsh;FoNtwrFz^5;N1_4M zz=5%f2;arB?_OmE3&W=63i~dWeMieDUbx`Gi>hWfwVIc){K_KXYX#3AqC@swta`qS zW#hTZMvXW7?$T#xrhI37-o;}35DcM zBOd8!*N~s3dt^c`9q~v_T1|2c;U0}^%vz{r%pZ(ytVEe=;ePv4N$(Q;oL{I#Xp7yhHaGp>Pe*5%O zq-Q<(vVHPlJ>(x0fc}lwaRZO$`Z?;2_mTcpJWZaU>>_9NDZ3)TZB} z`eC}hMX$dmUmSBCW~g(2Aa}p8B^~3^So-I|yBE~lzVhw`?LfQGdbF2;pJ|^h_tiGB zE_jmfUIaDKcQ17G1O?x{V13BPWa91(^-n4nF4Sc%empeYj$^;peYK$!Za$aY2V=g} zNOPQTk4ZjWZ@DrR`|bt(1^ox(B>ENlZTb=VLEoRD^@r_dCH^Mc#EH5>qda=wVe(t8 zzp&|)WeN{3FU^0Dj^lLQB{B4yCd@+nLBM^W9uL;qLci>f?gMoTE%t$I8oLklh&*SE zv$!LNzel26+&)n8Ts=m+38Y`A9cY)nrD_-2OU1cN_7yreJJAHbvVSY!2ju*TtthY1 z%#SV1`woOzZ>yP@eV}XHyBG4eWq%S(sK7~-!s-8rTYz0)LyTkpP%iFo{uam8=d$}? z+J$zYT{z!pFC&rJpHn-igy+isT)th(V)O$1`;{mtP#?2D_miN!;sH4=VG&6oyQp8^ z_nrZ#9cUM-fc8?@eJicG`S^{~rae*J-2DEH)4n#bhWI0;7}Ge48UKn|+V5Y5e<8d4 zPkC;uK3rN$sOXKDd`Z0%a} zTr231kJ3l6lYF9qL<5Ni5)C98NHmaWAkjdgfkXp|1`-V<8b~ydXdux*qJcyMFDwmU zuQJ&$d|}x<>20EcL<5Ni5)C98NHmaWAkjdgfkXp|1`-V<8b~ydXdux*qJgn!ptSwO zK|JRhIYxeZ63<%>3O3(6;Cl#U!1ojQz5(Aq;QLGddr^H7U<#*K37dTKEJ#D%9!^M^1gY#e3tU$dkJwZxUw(V z_bT)~1kmC=1e?abhj53ygMf4NBdV{sZ`>&t_Z~uVTt{zryfA1N+JSc2(V=#sy|n!* zc@N=>TbwKcZ(6z)aP)f=*IE7FY!Ue$0%6uWJ|<_Lch7wfVKDfQ2{=8>7!Y>pl<|9` z)WyArpj`00yB>o(`E>W>r5Bm;&NN1pT~Y+Q%ok2<2Y)ay&ND2^WZJsN&?4n!nHdCC;d>}Ie(;!?mtOK014r$@(#k`7`}SwOCw8p;`+~us&qIs@X@AV& z55^!Umx;l#wyrp?F^qOo5$!@d&@S}1w3mv5Z>zuE%tON2jSAl?1^l-9figdE+@eX| zx7As1tC<+P_}^B4amB5{KRB6)8Ixjd!CB~i2Yx4}B6f7gFx zzFEe?NOn1RLhgGgKD@W|tM7RAQ?LuZtxotM5fJ`zVDOt5zuxh_yt1QSocnF{bDo%M zzEi%l-&PNfXxM~r>GIp^gZA6%Cy(-N^}BCBwPv82Sw$R3uGxU2rl{Gfy_fIaf-`lW%OMczsx!?Dod}IBa@@yYUfF71udC1>Su|8Ev zVTeaM`<B|~ES>)yBjS;+h2JA0zmQHdl#_U*TVv@$exaPX z-xVSr>DE~}Lw;d3jiyzYSJ3p2$?MXi58`4{R(hpdea?q}Y+9y8gE1OjQddr9HlaJp% z@ku{m`$N8@^T!G0CqC(i*ncYr=c_+nNKgEbeu>IYzLeh|HzB>nC;fo^ZWj5nU4Q(L zp7@A5cOiP>lfK@5=V`$5rQXBw?TFd*W{8+x!Um<$plfKgGjeOZY$3fos^Xyl7iEZD?!SP2u=FwYxwqI}O9p#|@ z3hAHtq#v?+ryLxA90z{;#3w!L$(QZN(GLppbi4j?e|p&ao*>(&|DYeBUf3Q|T&Irq zovrmZseYOE9i!KUlP8z9KTSGb*T>Q)-`R?qXI%5}NBt5j(GIi=8>PJzerA@YN7b2B zzq3^v1XZ=kcebdpU6aBtHNuMXZC8J1i~fTCW6k$8j;CLt-}U`C{c^OI@EX>=ilJQG{jK7;=JMHH5d8=3K)bMg+Dkr#z9|UaK2yu< z>pH*vl1=}2*4sju_|cSl;{6T4hYG?41_^ekuM6IKV?9#6)~~7+00%zdR8c85S)g!H zzu=F3bc|#F@HzRgkH4p3*yTwPg7a-y@;WO=mh9k>tM}U4)wX}=_n_qI&*j$r>L14q9jh;JfO$O0_(6O}@Ev71L!5${Pfyfw{2sxG`*5jpiGD}07_J4I z8}|yXJG2As!udvf$x{nk<&^m{NzzG@`tVMQ+JDAbft+9b&Z|!g=5Lv!Ttvw`aoj3o zut}U<^!}|lprX9@PBgxYNoW_^fp%dtw3otH%X~3MZ5)hwf%P8q0V(u^gXMr(AILR` zR8?y{5Y*}4`53BeH5BGY;(X!}sp@Lm{Fy3H%!FYrBMHq)L&fvZb_oasI{&rNTh2rD)7k_}~tjfz5O*pJv zrH;lML*LZr$CwVhOxL5KqhjKPD07?VJS83H>6HH$NB?&5n>cv=bfE`pZJ}TE2ZyDXo|&9RFU1 zlQ<)%;D4MQ$3CWV5ze-vc&Auv;*zJ`9^!~9%**I70eZ!h3vAgJ}*W)&@R*v z?InL%@tz>KW@Zo!Zj!S`>k)sT+{6xHT!Hz3d2_Y(CyX}$b3SDbedp;oO}sIG<{af0 z1krdS2;Nd&>|DWI9my^}Cm&|}drOM>QYm`m`t-O6Cg7-tRr#oRdmF;K=e|?mIeqC- zOsAlqPU!^cQlcE_C;z#LUE5RN29RSAa@glM7{9Pp#x;yn7`N~~68BArf1&sm?3XZp zsjPf$MO^$+|Df)dFkSLWUEf+>7Z-n!yG!YhNym9V{E`^@O{e6>D_6cN7j|r8b5kp{ z*u*b}R^k_?vGL1mD~=3sj($Y-6&JrK7Z<-2$942}#|wjYp&e+K^{-aD&|ao}eBVFF zZgH~6_x&v#-7oo z4DK(VTZB!(ZL~w;Y*}5OwD|hO5)+K!J@zZ0Y9@{{uO)FEs$qlWYSJP zN#m363sdkN_)N@uvk|6s3u>F1f|lb?IN`)dX-QdQs<=LQT+H5B{UIu!^P?Wt7{Rh~ z36$~d@gh za-8#WM*ba#CGnuzjkb%Xex5LNiM%_Lc+lxWM_Ls2^ZEKyn&dapK%#*}1I1{-L`XIs zbSpF|M~Vjp$FAMP&QJMli^VM|9z5(z_s)o(cAY2~3rhV=#)DjsTcLRHiCa6ZO=_yI-`ra;9%TH- zcyP(p8hcyPe#tx!Bz?EWC*KgNRt*J%93IMKDN zxw-{2+fu7`-~M1rT@nxG&fn-9^YesZtK2b^#Dh_N@MBe(oqV@;59>>LlyJCNE$bLVr7!5!FaiVKhH1B%Oc#wK4 z6b}}=Kgjrx@!ASWKoqZn&Ei1(rFQ7|4HTzQ^dD-@H@ z4~``sj zAko0{T?6JzZaeip$+T(Ha^ko+O_haTqzVeggF?5<-zV8&*WcDhL3FSbJ`NfHet8hF8IAhJI=(LL

5kxpQ~j!9;gaIPf!Rqs=*9w6%<;gn!m=prmnH9$I34=>qu!!vzWz{> z9Ek=J4I~;UP6IptK1osEn~}c>VvmyJLFWs}0%>vYlW;xu<3Y2ihwP$0*6_Bm$ms8r z)F;mmhFWxXimpx6t)hkTpw(NUc(B<0LB@ZK2m8LD@fYL7h;Sw=@nBbKCEhO{+xG|E zvj%<(A#BFblIHP`2aCDi*>A;4_6I}zm`rlNI9DGDlxQH)K%#*laPeSJA)hq&j#2gp zZT#dBMZn0KRdPHymi8;AGhxhmPwFl4-*d(I7Tu&S;n-q_en^lDdLWP z2|@?#dK?!Ix)_!IGCz%r2VZBuKX|x&e{i5N`Tn5OyuSt!b{JtiX!SPMc#!cQ~gY`{G zJm^fz_|H!r2IE2MZLIMi<3GlOm0LCbVw~t&)||wHZKBy(j>o$1`-V<8Yo5sk$CV`;a*-y zIP(4C05RT(hx^Oq2DjwzQSWR#$n|)<;=zF>Nj&Hb@2^XQ9R}k;>TRs?AmcyAgVVQZ z{KYuYwXC_i1#`MmyYcVUO`em)gGoHdd9bTejOCGd#ntQhPks{(BpOIGFuDdb9>m`$ z4*K)4M~(;Kn?^qNbJeBp4{}d1=UX%)Jc(Y(V5<3X#pvBrap{}>Oh`H99~j1yhUnyXtdH?=C=ReBWY7?pIt zczRgNeZ>vbF@_ls2z`TC2NGoPV0`02_qmy% z#CTAj9n|~9(T)_iKgjiXyyC%u7NICO3j4<_-TKOe>lW2lbABd)&K;ho?m8b~ydXuy4MCT4pu z80mg-QQseQH;hY;2c7SWTB*2rkn3?=Jm|Q=x8lf8bzc*0X?@<`CrRQ#RgKk;vsHAx zawv=khpgTT#e>Cue~|GX

zKECl1iP#t?x|TIpw_skXd%0g)5?oq5*tB=VgMpoY z`i-UNIH#SU1Lnu;?~{;!Zd=iIbLSxOll#TFIx1a%ph%8H1BnI_4HTyV{DtB1``*k; zxghD^ov`tj`_>G;IpZIteQzc=K1AGs@68O^^*Amb+!f!Osa%}gFLriw>v#V8rC5vy zskcJ$V6opHWcgNeZ>vc>e_ls2z`TC2NGoPVCVM-i~IYYu2P>1mUmTe^h1MvC!g!E+8*4ns_>b}6rFYx=B=t*@c+kZwuz?@1u#96z?c`{*JlP+leti8!%bE9eN*d}m zNfQku8b~xSk_ODS$GClu`bDnkQscofeQ$>Aaa=rTdTivPzsyhl{lUENQ77MQERD)?2+5iU*6mU(EQA@!=n? z7!TG6KF{!5Gl&sqj&vgK!1IG#kH;$>tW53~M+TR_E)jMpj0dT=vBrap{}>PM*r4$s z<3!i8=IRzK$n?nP2ZNpYOLfYkqbdK4EAay=fecyQ>#C@4Eo-iB!NSI_RA>4P^V6y2-8-{ASlaif`{pO{po?8# z1B?--ex7i&UdL3jKd5@h*I%@p`F#Bul_x)m1`-V<8YoHw2dTHQ#)FLi7!USct??k^MAx$B5D)gYb@t5aO0D$k ziiFKXF+U>{n7C(MeG(74aRG&4OfdEHgroI3hLU(t^^mW>XgTxw`ZFp|ei98N8b~xy zlm^B(9*k@_7K{f6SDt6r3Ke))d~b&9aa=s;?qS1^;>b@&dwy^z`QD7GF4P~_q-g3; z7!Oi!V~qzH|Aq13gddpi4>C@4Eo)BV!S-}&_x*j6b*b@>2P1RKb~jh|KR)=rntofO zV?H|0i3J3rylV~8(K%#*nG;j!T?E577 z=p)@PF6#Yaz0GFYKsyg^+h*?n9wPux$>!V>W<2Qp9mshUcfXkHaa=q|PRbupbbV6T zj|ctlQP(d?_6KwI7+trRcNmNZskcJ$V6oqu>9g@4i- zDOMKd!YMxn^IHncHO6qw_{W2JEl1)y)Fts?zJ^#*Rz4yB;g}fx1+$f6&&Jcy`NVu& z3R(Sf_Bcrs4I~;!G%%V5qWgpSxcKu1c($;)xf!wCnYsQZ$l2G+rw&{+Sn~H~YJ@k> zDCgqhL9WMf@u0is2j7V!KlS55|NY{Di<5Xzbw~X{hyLj>7!Oi!h2p_t-!EqT$9S-% z+Qx%6PIN76PU69i)beyyeI~PfCu72r;=whiC-I;g4;&**qw|eph882NX|g{U)kjo+ z(Q@YF>Z#WxO*D{bAkn~R8qj#qzE6^eJktK4i=*<$!h#ovxd5?ODf@$Xml!cd&fcNG zMZI6l^?1DE!TL**c+i=a>ye*2490`h+gRg4#(#_l*QGQbWSr<))||wHnP&X?;@$Lq z@tTF>9}nj5RYvun><{{5APOh@gHdfH`9uSW1`-WG1LJ+aI9#<#jRzz9O;Jk~84ud^ zI4&M^+^~M)$WQ(KLH~a7KoSqC>O%cRV-e;Z3gbcQtx!Bz?EPZKe~bsGyh7ta#)+2w`)LG3CPXj|ammt+44_-6!#2sF=J=5)bC7Bq>NVkZ9lquYsKX z!Af5pBi%3FU4Os$urJ*^1E-BUin?FS^*Amb)MvxdQ{6|2Oa1*p|M|hn- zuE%llpxfiY`iUby9W5TLPyRlMsxH)DG!|jrp)ek#-gY(~oLL(LJB01PTeg_*%N!y3 z{CzUlE^{+$XQtZIU8%tQ9)H5lK1Nu$Ei+>5J6A(>L2zK*rw;mEjkJ$3Ch!d+`KX6n z>l`S!z|TF_zw%vYu3h_VINxqO;N8`yzW=k;bA{{V@*wCtdalvOR3U?mYhI^tE*A&Q ztzFpL;lQ2F719UF%c|tZ92^f!S+41)JAW$u8mj&A!Dm;0Z0!+t-lHxbzrI@IZ0Rx% zp{o*I0k5V;zIPz+yV-;950~SO6qOS1!|}`<`p(l?t{P)oej3y`Iiht{wN?hUxL2n2 zAI*Kv8S}7T)ImM^{xP=`=r4}^wA|(TlRq8rPpHT7@+U(lC;o(^YlN{CqR^jEZ^il(+IJ*>B0*Hx&S;r=@_mj0c`1Fz zA9S9*Q3xHufiS z?TX^(&DtAw8Q?y z%^%#Li;lyI0wYeOjFPoSG|pgI5FkK@j5i)I(Z=$w4mqq7Et1mj{7{gAKi&uZBHAC6 z#t1`5y(!thQPw$g9{COYgH&NzHAUCDDAIy`6x~_AH|90qd3ug6epUG;zaXNoM=9Z6U|3)qWLIJG#|y$JoL6n zdQUypNuGMc7{Up?U~J-~j-q84Zy1*tqc}NUkw-cF32^q86Lly<3K-=tl9O#oHo%@Y z_>&LuQO*NppruTp2OpH7J&t>>uN?OWOWjDvSjRo%RP2k6G{?emKawyb)G;nbKd%%# zwmVbu>MKSd-UU@?w_f;Aj@n4Oup2ChlzG^MdH4h7p(Ez8{xZ+&mL*qyFaLZE{7e{~4 zyA}WM#o=%N#P1)6o^UWW+M83z$vGbvcTKrP`xEWM-rTone@0sGfcJbjDhKoJ6SY+_ zdFY`SJdBfK@J7NxTbLd=lgg1*Xn5z?9Jx z>QAjCa%ybEa;zheakT3e`W?pKq#v(zvh|Btf96Xggb~=;{@x>5oaV@`MlaC6yfWaR z+#C_SoHDf2A{g{X>?h)m@jP0r-$(l=NJE5ioq>K@S1-Ba)ZH zj&sICSbs-4#u^WCy&LcA0Isj0zU(?XOF9RAU9#=b>6d-+(dp1z_p__3qj|t6M;Y_r zQzd2OTPJxtzQT12G|)9pvbjL?!9zmoy`%2Rv~c+<+XFqRW#YBcIiQtTW>0^q_58XOuN@WicW;M6kURmeV8%>D5o64S7~!oRN+9~t~|)E%=)>I zH{_@h$UXz2srv?Rh!>Ml`Ip@HSh)8egS6KawYYnL1$67|k@@hE)jVZvnCCB=n{Tr= zLzjr_=4Eb2sqfs<1WGipt28ihm0lY&#hOtgj)wEGN*aRSanB2B%R7G5vrFbHo=wj` zI4>gO-#S0VX1R~&VD-!3?8?TTCqJfzS+-9T7h8zyqh@JoeaQ*B*1sF>9-;s@DG7zx`V?&I1lOVA_bp zJ6ZYS7r%Jgt6%-}N){(% z*~zAI$k6UhaY};N%}bHq?6V*G&E$dy6UQIM@L8Y&2N6QIlH>LvYnls zrmU^4E!)!4Vq}6WmtJ~l_M(d}GJ1keU?aBw#y7q(d)#rytu3beQ>IL5M!VhJ-Pyjr zzUs#My(p9TgneyJ=UW1d#WU|YbFV8Mpwk!+1Kqrvnyz|a8`rsHj z{q)nbuX@$1MwCIuSTp#c&DE<{XRo>Dn(VdLUK^h8eCIn&S$}_j_U&(fyO9Sn_Vn}^ zy-+8R1Ny*N!Pq(T%rmpl0mkeRM;uYm7MEXs`8M!<*Sp@89T*tMUU%Jf+5h;D|H!`Y zeeW|V;P<}wz1jD?=RF1o@O*OKbl>$W=(eO+O_6H9%Uc- z$Vajt{_uy5T-RTJeJBTX2KnFiwzp+5Mqm?+U5ru8AINa-x#ybpp@XB2Ix4h-$kPlR zgD=|q&;R_->?c3@$?VNH-yEKRKktzEw^Mp{pnAe^E03Mj7e|3^;T22b1I7);Ec8hkpa=O|7g-r!*$XbXz>I~uy1FdpyleeQGF&wu{&;RzV!sE2G(Iba*e58GkvU|c{3%oEChxd9&re}y@LvG9slyrNn3 z&?9e3Ojo?rUXm$Ep&_{A?8c_;^HpfA`3y1>}Ln1wwk1N4CL zfH8@A0Xskk@Y(R~GAEj0XYfQDU-`;cvS0n`SF>OH+Sjso-g&1vkw+QoAQ$9=oS=by zpf`+N7U3hsH*dS-l1tWt2Y8~5uYdjP*>8UHo7wg2*Jtm# z>n@Wbj}zsnhdf{Y@|O(_>;jt6;wF9XH{#w6wi<|h0ad;|Of{3F&- z%mML}YteV~3+mz&H0`0d?!0JG?cyXzWYoHc;m*6MnBMnF9XH{ z<}v0c#scO9d?j>%^$WfcHh9fzUb9wwb2DrT{i1EOyJgFkEZX?)cfV`eeDJ{sv)}*z z_p?9z;SbG;`~wd>U}S?XCB?3 z?X6q4X79cCUeiys@$kbBXNQM}v%mc1FSEb@{qM7X{No?9zxmB?vOoIKkFwjgZ8N%p z-C#e=4~$973yf)uN9q9M0CNHBCguU!rw@ewU{~}TZQpQs z5nsUv$(US=_Mvmw82v)qk3RaS>HDvL{p;-i{_p>CTi&FQ=f^+(v5^&H0Xo3^!B~P0 z;G-}n;alJnuy$e$V4Xz!GWNn)Kw{Zx=mXk^&e8TGk35q7-uJ#|?ER}>{VMyHzx>7Y z9gY9%U;oPf=}&($?E@d<6>~MJ1C9fX!w-GvLuL%Heb^tq2Yu%uI@$)?)8^UpAKQLnrGN8?;o_Z?#-~avJrtgpu^AhtE{vv9F zxb|Ux%)i49J1j5$fE= zA3gx_iNrxUdT0NcO02sUV-Pxk{xR1f15dzc8!|#ykhf6#@Bbr3ED+y*{6Wy{ri#wqj9U*|WC$ z`;MA9;OM(wEGa%+@|oOsM+#ALpNRMe3L@IAvII;49ugcJZ2x#^`$SQE_Sv#dl0*ZE z1`-V<8b~ydXdux*qJcyMi3So4BpOIGkZ9m}s)1SO)t)$aX<1OUVd}cSt=3LrUtpnB zoL4(<_7-`zWNJscuP2z=*_B=qOl?Z_q=KoGGfjKj;V2#+FpavUF2JPiuR+yC>D&iNdK}>Bb(DS=QMruUhu> zcBKJ|^rkekG+5e}XM|4p zicmd4YiA}9=3Vmos6b0wd)iao%Y*K=)~0j=tYULwn#SHPm}6>FSF2DOFpb}!yCt)7 zd3sgQE@Fb6NEmcxx{;n3bfw!;Jwkx?({1VYpjQ;U!dO?WhnBj+mb%O!NHvLKyVA|z z3Zm|wu1lv$-%Y;t>a_Men2Oe>Hg{#(!5zrb6$!c<#>5H9O!5wwo(Ojpp++upFWE!8Aaw6rd3 zX?SyQs;#wWRnRPdtV^mJGi@2^{N({zH9$kD9{J<0y`tERSV#s;n@~?}$~24c-Kk8_ z+}B{{2*%23mj`A>i9BtoE+>%;eKDh`s4*R1*p30!*}5XrBi3w_(E#iQ8L5&tI?pTZ z$plS3ePV>}ZkZ}wG7mdjQbA)|Yo}P2aPoJ zS=BVGlA+bwEF4X;D!BNp2I(UdVLIC&Q$Xeh%1F`N+7on(`$)^U=x$7l<(s?2*d1M( zO1sU?-D$y*VwutDhSqiwY*k}hkXbI{w@pTBYkFlvdX@BCdZ9&}(oz$&rB=zgH`zHSqbg+tc31Rg^6w*!HJiOW0F=o4TUP6?gl#x4IlKBE_-2~e~JohqItkgo%drqk#oSlQCr*wT>c?GXna$dVQ; z4VDK@>E;G;!qA;eark2-LWV@fb|=!6sV&%5k>8-T?WPIS8?S@9;qNgy1lgr za7(JI329eKmQ|$@_ukQMnoG4WMV;^^x@5)Eno7wUOkgz0EJZ3)RD6wTnP~8Is8T;> z*tPYx8+n_=7olKzYsYe?wn*0VWi2QZr(}6A>q@NB)nr{TL&T;HExoc*!I8Rgd7^k!iA&6~G8JAx zoc~e@D8yUJLLu`CQ!BI70Mjlv!@{sMW7oK?j!chu16e4RiofX=g<+z|qMed812f*Z zv}TD##OE{^S_0kjx4C82=@t_;wMrNw8actrXFWq^sZO^B3rnX=U?jNRtMsSAc%KFx zX~2gwvLIIWbYFv5uB&yatjZ1HQMv}mk5(*{0fmFl#bk~NiX zL8245zV7yn#93P1l4|YJ9E8_ggJ=;v8jKt7Y-<%i-QCmL)+UP;)_c{YV7U+u#8?fC z>Y5ZS)0j?m$lNx;iJiKphekINge~oD6GtK|wa{fcWWLC1)SZ$FU5(95S!Tv0ek1^t z*<)zimo?M}^3#@T?CnT(VT~6k)7T^NtE@DV)wM}-%Tf|~VV!G8wP$)I%IxTd8&S=! z=xA7ZVu0V1%=m)t08-WKY8QS1%_qu?f)| zC1WCVWK6uSB@&0gBbputsb<6_Shdm;XJO$&DnnAD<1VvgccdiD31qxu0qqd)se>@x zA(sf95_GSSQ|7MJH=tI6vP`3O!${n$lweT{`jD70W#+$Kp`=Vf(LW+61x$|-4}q1i zH}NPUi>8%`V4GGhGrvpCFNTr?4_(Vv87s)Z&ggVT#_$s_D`O3D*opX&pfi(}X)Yr| zhJ)rMrnET;>6&a7oDpW)IUoyqs#}I;Gl<${&F=2*X_4O+NS$snwL)@AAmOJOL`MYt-G)WG8W8w@TptFRuJqN~H4P8_+8Ni~Rjm0_Y;IDs&?%4M$(QcbcL zH&_YDPez@@axy`UhsNq^B#@zjKR1igmQ-6t7W+=Qfa_=wHOZ>2INi%v8EqPZmP}Xc z)p9+ilgs$WZqbM+3}n$#0gW=2%B7cGpTsk?nK=nuc#@88Ot4f>djsZdYZIZ?4oe{c zL4zG3z!ERh+96jCB0!`R0~hf-%P26Ww&aCME(heo%ywQ}O|OJo?J6D+%&Mb4TI_hT zxpHe4)m(a_#E6~Z#Pq@rOTejEaj-N(R9T(7aRJHo7vT%mUr`-OSq=Ue(Pr7UBrJ32 zEV0ZPc4NV6Xq4{;HaAN+x2j$2*d-yi7z*08783JmUQ#s(3)*qj zBOE1lb`ZeYQo}=?L!!lWgIHazqt$s%)i6%nIIf{(#+%ngtt1i$$xM}BnW^%-)I>!1 zS%#mb@~P^jUHCD%WynEIGDk&qAP^myk&mEA+=5=5h>}cYa5cQI4Dcq^Wm~UYJv6Qg zR%F_OW#)2G`r46hlWSsJON9A`)(`@J)<_;T>Kc3cWNbnb$#C9d^4N%hIa!ob2;Ol0 zC>PH7Jt#t^BsjZ1;I zY-lr1^CbNhNNQvd$Y4pyWiqawCEk=Vis;i!O;fKPt9Pj@S(*_?AXEse8*o`;vu1(U z(zGneES9O&ERiumvrC{@va{18(WLls%OP?B&~4mio4QsRwGC=&xh9p_7IZCJDwp+U z?qOw=IoJlD+AeVd9H{s&lVS|RE6Vkp86eD?Fjj-Nv_uRDXC=JA)a{b1z@}8!a#J}~ z3Oh0HF_xqglzVDr+ z{r@vL_dVNt*5^Fu+0J>rDHm@Q?FHfd$`qk0k-EEELJ^1j9?Pc6DZlfLgurZmtrHkx zUbLw3MVepq{=2>7#5B7DHK-jBBS5^2Xz?Nw zU`JHC@UlG~NyTVqgU~XwRB&F|F}f>DJ2CcxBe#Lkw10JtDuoU=X<44eRc*X2wiZ}~ zV6P))W~s~D=C`4i?J zGrEef1zaN$QFlqpRnLQoy zk2r_M4!LJ{gJRQGhXK^SoFxqM=55##RlSJJQS_3!I}PuYw&uJcE*?mW2h;q4G|%rL zWK7IFYs~zx<_T~^-qa%&3229X95_=4R2mPO*+P7>y0Wp}^Y3O*?7etwBFSNi^y0B; zsans!P<0nzk$5Yfn+alk!+XLSvPN@0C4>NUtuwowAQe~AR$4?Tw$^5(5b4EMz(QP= z6i4wfRN-sSZ6XC=Mo3-@9~)|SC0Gl+Z|RcZaAQjZbOG+5{dG%7p~=H~%PQ$n^9@l_Zo zIvCWB+9@&3GV;P59&oaLE_IQJjx6iJ#l_(ftdA^H0o>`bq!~Q(W7*?6vOI@a7x7;X z`2|)g)U&8&_rBHMaA4D%Z3yz`?Ux*EIxYE^{<?AWtR&w3)1XJnaav4jsX6>CbvLc6uPw3)3V;*<8Ex3VQE z{3g5|j2&FvEosiezBB_B%%<4RD_RmH*22i_mL@Gn&UB6E{Hs<6jBF;#-BgA1sgu_4 zKKK&kaqE&m>s7#T6)6s)mb8CFf%O;de^D9%ML;PgH5JMVX}#xBBfyfR;n}CrBSI4a zuclJ+BO_2Chb02WR-+4pE;S{4xxx-NHO{hvjqJiLlnvuO$U?PZcVQtK6WPLHmm{`a(Ilm zB-kDaX@I=pbN3~9k|$*GMk9#4gFwzN81`ZdbBi_*_0a;rx3`%^46!av2CMvaZ2(!s ziG~MR86YmTTb>Mv*X%3PqrD5!sVLVOAs)Eoh4u$ zVazQ1Sk zNkA#eQa|_Ae1*iD(eXLSz>PXArwT#+C^{uTj8YfoHjJ@DyVzMVzF-}yeog#{fgfbg z@{M&sdBT#AKO2ju0_sQBnK4R`T0&!9{2}i%>y}nG{3M5jX~u|_sx7b)!vR>r(ukP0 ztfh_sLe!i(Vg{v|DU=bmOmG5w;yU`2G{Q>V1_kijT?*NUutF>1GLAq8A)$y9*b3Ns zlF@yOc?U;!;tAl8QNtK-ci6GTIHIC!Z!U&3iMMB$(+rfkU?y;rRJ&PK=BA}~z;l}I z_Mo)0JVUKhe&EPsTST53km#6{ER`sffm1jZT@K6usxwR_@5`&wXwJ@xim<2oHu2HC zoWXVA*Ffg+&!O1&RU7M0`v>sg$^-S6%Bgt2qvv}oGe+c=6*C^K`ObJPRl^*+m6}#z+J5>jPP~_-Cow<3JGkm0+aCgIts?s4f!b15gjQeS^P-4 zq0j`|XwG`uXTlpw;2K$6n44Q2gG57?0?Bc~$T+;GR@q^+{7;&VmhZ5TZQgA&t{#C^ zSOD30y$i)W-6BUehs61PWGah#{B>Kqv z1`w&hI;C#;jS&l!$t<~YEIn36cPUFvAU3%WE96C6%y0{2+MN;0W3m);fYuiBVH84e zJ0>O3W^P2VMxss)K5b^PyIQ2i^WEuXFdASc9NM0~AnO8Y`SFQ#baNU4apm`ZS*Z)0 zLux|ED}+NqJ;PVh1@V`{kSxjUL1(QB&6Q`g8H(Z(K#x~s|3Uvl6tMFM8%lpNKMlfY zWqM|0M%%czLrG;Ci*#)cnVyBDTCy@%ppS@Mrx_QAcJD%tWL>vRX<%!C90#IIFE(g~ z2w6J_@en2Hr9vW<{H;PlRD%Sm+v*%>Zhoz4Bk@K zX^gHC>1mj8-_`4>&C+Zp@m8ikwigWWdQ*Mc?h+; zdtjmJw5r^-xyrXx`J~3q&?ip@85566kK{iNPG?%bR4-9*xhhGYi zueROTHc8}L*M0|2aHAM0vD6T9Y^83q{toaWi@6-IfzAknENuabUZw>zID68_0_wKuP3m0Mn8J&K zJ=Y{w8x7>RoXbvC{vd4^ey7zVFsFn5W=91oEv8;?x2 z44!o`=vG@~%rR=(rBL+2GQ+|Nv^Lf#P})j*j%-x1>*$+iHndKpTJazk&q0=`)u943 z$+BZMP>|Y#<1M6hFF~ysGjg5S2h*8I)fc5E0T6Cbr^q|C~9`rtqTO$jH#Eb)b%1Xz0-wq zeW@EPHN|D7ikJ}ONpQl@%N`T9F^h~mt2PRwamasVuK;+#q;+QRJ^FaFkQX0<*T| zcmv2=+Xyf1$sS3KO_KC`)a1!CIkn-Rs{Ln2$J2$eN!+n?;Uxaa)9J$5QNs8q&ZG;Y$BCe5 zD$vhiekyb+#9_(;fY7eqXxA1tY}yEzDzxD8VVx~IcOkooSYF342y1TC<_j8fgm5x~ z@jfC(WA^N^78qsSBQ0=XP-i>S0my3?G7SYi(V2k;^H#9XoyK_3)yW%KSuhG{W%xfPu+oC=$@1>qEp|LHkoP2STg2IZ~nF~AHb*g(%nSg(y~3MMRiM+V`7xie75 zqBu%;vXB6-pR_3}aQxgj(R_4`|ig+M=*v9Ph(`(~0Np&j9sP#qqCxMNQ zj?ApCpFuhq!;}LWDZH=ER{b)`1hsm*oGN=@GZNZPCZT|d#X$WT`(krWf%ZbToAJ1& z>$GSLjDbw3!AY(`31K9|Pg};bYx-Hx4+b*DehH8C6o`qy#@g1Fx;A1gJCBJ5!01SK zJJ*YKlPl=X2;s3WoMr@80|OmhfvANB=xBk_7Ol$#Fq5_+Wf3QXmw1Kjh2(Ub0VF^3 zzK=N^dMkh{WbaHEepD9xVq(Cr=>>TTjUc~YmWQPqyDNfP!bp7QSt5Fn-47k6fV+X< ziii3>-Oa{-(-;6FDw*z@MxO54qK;5UFHtre>~xov+pvnO!bZZT5EQj49xWSH)ZrN> z2bM&eDv=^`6og8!=^;@VM>ax|bo6Bug)XfeIZ4yQ#z0vPLvVq0hAh60$PMuk4d_F< zv`Pl3k7)!92*W`}He^WaXgOdlmsZEcNV8Kdt+I^JD9p5T%uG8X=4WQS7I_{=CIGDu z8+`lR&bT)Jqiihb;I|6=&u$&r*_d0OoLieRz9%WK^Q{xwE|%sHbjC|CU^?nBV>w%# zX_}dhDj`T&Rj~-~gZ1po<)B++-xPESBG%FX$FXbkN>uD=9JBFuya{X5U8`RJP<9nT z%$Z%8*udOfFFp89Kc{=M9iW7o+!_a`AO*$1u__!s(%Fc*9jf^62-S@&dFvMuol!6( z((D|ElR99PQsk}>z}iT|P(b2OKt_!VsIf1TTnk8#y`)&1t#%>c%x)lGMf!tikR@V$ z+5GbA+(I$!Sz}j*d39Ct^Lp`zxoR%9w@szk1j7Ic!7dYazS2zV3uEncO%Z#!t}` ztcA=HsssfOQeB!G)xkdP9rN>@ZPPnC72pDCTP-u3UYTB4+F4x;_R{1K#^2e9va@XT zNp9#W$x?mltI*kC=CwSxeh!u}+c|($HFRSRz(;eI;ojAQkzbww6wyxE zE9!KvTc5j8lRuhKjnx=yZ_J zXa?1$GCX7>Wqq4N8Oh7of$XnZFhB1;1S`{P2O)(}1{xEFU6iJj#E4_TI6f`p95Qlf zFL{5r@xf{T9`o-J1a}aWXlcl_tr<%@{uTRXkM?9FW-iG}9d;WHn|Fd)c6sb{k(*V9 zZAjh?&|s#QrtNj8${qb+LMHQwop{L3LmEtJso4ZG2;>oW$x=~>4+zUBktRUo?8^|& z&p90ttOy8MC1~4_ZA6ZMqwXPL0hf2_mPnb|Tf)fIFS2*h8Odj7JOV%?vw~K72idnw zxNL@|?I#OuB`46hENcwCuV{DJM)jU{^pgw2*bnA)VY-LF%c!)qybvlKDG@gU9_7;+ z96dQJK~>(Cv?9XXSu|x!O|&P&l>Kge#A*T9*9TgTVfkQBDm#YA0s0Y^h=BI+I;0&^ zJ@I?mN97=BTRRZGI&P+b-3&Meg_b-dVl93$h2`cY?*-PQK=NBZ@;q)$yd%NLZ zpSw?3ax+Vr2#HRwLm3mzzC?%R;L_>Fe71xF{yC&WOoscdK-g{=K|T z6A)SycA2P43W7Aylp6Uo@l6xm)YvAk1L2!&)=brhps=u1VX*b|Ov(e9DZ#E(idY1e zJnRyPFcb-fvAr8wzAT#w)X|gJOoniE0;e=YY5EkG=CSZenh2BuR9!T!vvchpo0U+O z@h;FUyr*Syt7K;x%olq)?Uwb9raW}+xC~qiaS~i)%!T$i3A<)#d5pJXM77y=)}5mT z?wAhrxnrymF*udEggjY{3l3Z1`1Ljhr?569#PL}y*&S-;L$V`2K@2dj2-jtARK7O1 z0D53YHd4wV9pH6X+&+8knsp!8d{1|lq6c0k%?Qel0zCvmIpUgx74;OR6}Dbxq!5jJPX!%lK`&K!#KS)nF4fe}!2y^jNVIt0Bd7U`%P2#z&3!kkGVGXwd` z-U6+;#8wDpA(a3!@X$#U4f;|*hq#*oc3Io@p<4orbM&)9o|XDk)gk?0A1D@CfP~8s z?<3pXIF+|Phdv#u9I0%^d9ik4EI4Bb!BQ8WeQXs4DO; zT)6;2VyU$`iD2-cYM0NtVXqVWbckGMDHwf2NGSPY(kROrr5cEhQU(BpavZS~w3y=w zXl3odSraXS0JIfmkV-%4iEI3^Q328Q} zK(>r?m@OK)RF3=AqJ%wo(p&9Slf=rhS47-NkOS142Ym`*5J+aoQiuopvl%)!&fbY zhNB9px;j9Gjs1+IMyM~X;7=8AwVjq6_a(Ubl|S|#j4f3Qi%dS^MgrywxN~{MW>zd` zbE|9}VAD5SQw3r%%uI6@%$B9u7MX>G(I`aGOmGtzkQ!0)Y+!(#BWp5MMhA-=ECW}x zD=nZ873K+)S3`25nDFZF$Z_Yh=l6TBehqFfpD|#d_lLbfTP&f#0?YlGJ*ae zcc9m@lUq&6pt7L}A!)@#mon7AA8)W$v++j>xc9^cS75YfD^7Nd7E}S2;F+qsz*gR* zKGq#kZA8&b+2rj`fcD`GM3uk@VnHkpxzo*gb5uzD<8^Ne*^VM&ELe(NvoF5dfts(c zK>)}&FTlDOU`0VyTCO&O&#pv4r8)Ax1w(nnGDK<9tNz0S5nG#r9-d3GvaI-Has1Ilzh|H2s zRInVIAN*f4(gKja7?DfX<7u#9q`ui0G_J77)edSU3W7&UweXY|3T! z@5|A*W z z$5%q&2xS#ug%E@LMF1zbcElNw+gL}z6vw4KBVsIcim=7DibT0iUF)^$ILuFh(Hy3T zdCqX5z2NR2h=g^9Z&jK+-9j~jykQJ3Wp;WYHX;oUYZ6?}Qr3V}KGa5BQUx(nlo>Vb zK}>g6ciVJm2?}4&-RCPZL^c(&rSWEM%n_3Su_>Ystjf8-LeyaZEXp%1yv3dNhiZE# zHfGF&OHPIAG`$Dw0x31qh4_;&A{W(d=c4oLRao7^z*Je~HKB*zHw?`c!#T$hQGZLi zqal=xs3ol9(NJ$JGWb}sh)4>N+Q_=j9u$*Kq-7jf*wq_EHns+&t(^SRFDExT+un)^ zUF>qJ7nYoAD@r5(svkm5?vSyRnhZJ?T!?rvqjTIkob zgv^|HE$L<^*_3PLfg$oRXW?9X0bx{LwDQ6p=Zu(XApnt8U{!9N7AsoPLxlbsxoM09 z0Xd&Y5QB`tnDn-&x}lvQ_?;r&nPs4Z4{^LrUXSTUG@Q9)+hX7xsh>k!03z;COrY2H zY9jXnRs=?dmN7bP5VGRyRk0FbN8Y9yi^OSW?&uQJmQym8YARl#dy>4GHL5?EwR9f&8|I8=05V8BI& zZCgL<$t)+tOE3U5X7ixT4?8G#{VQgcfYA+{S5%?S81f-E#gEZl3#atc2nTS2K`|25 zk4IVZPD9EF#*I4H!b>h4paoIuS92wL8vQHQ<3TO?rpAcjoMqyKg`i9usB^~zM!Ni9 z50%7i0-$i&NGvQuKaR=>Pg}`GS7ecF+Sst9bI)Gv0LZ>3c(d^a0!&|v1c9n8r7WsI zGOSWrUaX)B$I_h}Aiy}mHfMuCLvyrj20%11bWpMoA0F^}3wpo2`sLWq zA<#gM{Bn-7ktSn)phOnV9LFS;g$}r@b>^pJ+@zJ_*RM2xRje$K*d(43x-cBTOTJ5{5?z5vv96j<_K50dG)B zl?N19C0SpGS^swe^A^PQT9Vo^j?p^Dk(X7H+5$dfXMwA0vuJ&3heA)nf z?nXi75CC~3WFD#ZmSJIa)Cu4!y4VSu!csw$TZfo2=-#MY2SIfQi*^UYod^VP73{i8 zUWc|!;#-YeWEv&eBWg=lBhjfyr~;}X2auPu9GM~Y?K1wX&SNKXL)aHV#}cJC!a=gI zU&ckKS@dnW{GxO&u_y)OnmD$0ezmo88&VHk4q$pGn%#gqVDUrPVj!RZkR?VgagY(J z4t5~G8U%)DDCoMtQb3SN0dG^xOAkmWLiCw9EvM$J0D!`?OLN$6YNh8$;m*PU5{tBX z1IbBrATANodft)+AF)u0CXS&^M2uKC#!W6<#$~jQugw;!1N=U|js4bA56VclGhxog zV#$jf`~#g^!XYgYt=L=U$XZDDTeGX2#TV8I%d@;bLNv&Dj;w|SwmtB}l6exv4R2g| z5MBQrIgh!?C=SmS&G{6l|4mUm=9ny_SJ?AuH8j0rc^7S$s6 zLLr3(fv-pfkJ=Q^x^Kr&P_WiAuyr^T1TEP1@hvOab_)Ag%ttIO&o2+7#S$58_6NhDp?n#b#)eyU*+-r&fqVVEmRsl zP9-eqZp}JAF7>IhwKV>bszz+U7duT?h}aXjEBvg&1w^Fl5z^^~#_Oxx!dq9&ssZa7 z5Hdiv=9b&2qBS9uajbJNY5E&k{m$ECwVGzq0O1OZ4(i+emYeAX9SJzp>xz0u~*QtTj ziyqLbsS(OARe}792i8bH{9QmD6u1_O?-I7}pbA~&6v~GCF6K`$+H!4I1!1PJ?j$Nt zZ;=YHI>G$%NgC#ukkZHtYS{3r!JsLs9wTESMcLCF%pxjMq8Kl3&#Qb|YPrHlYWY5j zMh1w3Ic`f7E9Y)VDyw8mXY03fFs|~7fRrj#PT&powNZ~#k#k`9QYBZlDxYHYY&6b6 z2^mzg&SfxS$cfnocEwnhU&r~q%f?Z^vV}-izTE#hLbmW(WUKTLj(4Gls}Q@A8|x$m z8p95$f>en2>}hmGmn(4fJ}D-A!HNA5s9lpDwi@+t+BREnDkC9;GmQwwT!d8L*q1m#++56A ziE0Bs7lh(fSc$yXD*k2+DWUA5MY-7}b1t+286~AE`!Z=!MSnubxN@}-Xk-A1W5t7| zgzwQ-t`cMGiv9@BA~iBt58RB%yh$TV-LJfUEE~uOx)r;MAe6NmO!5l0_OynQHbsmD z_h7sbUhgvDmAo})@GwWL?^Oz~rL*Dnq71Jo1`*XvKITewzw5Y6pi+DtC$L3&-xsGX z4S`O7q>=otj6v@A=Yz_XGO|B1xN^lUci9mtk7dY;g;`UiO)}-N>`@+D9Lp2OXXLXK z&=-v;gx<#}&HHeLergD`%7nQ9b@Q1Dj$SmdRbGVk_Rts6fTmsX(q*aXI;fkkDrg<@ zTnHn zvB%+DRrNT@H3=YvpxG1^LcoH6p!{@BOR=$BQTd5ZHnZ+nPFbQii|thueFHKaToEBy zkz=qjE$&U5=B)+2UWI-7wu%wmQ30p(R52RflCOZRa>(CIvr?;M%o?uDzo4helN8&C z1RPa_FDB7@j;+vG9qP}3b)oF?suyy&Ka*ara=0Wdv?|61lKr9T{ZM@hE$iZ)Xe}P zN=7Uht%n?zWH@Yxk-%4hQ2m6|Sf3t>aHxN)Od1VNZshk@cesOF=ZB&=gIX2p9JsYk zGGaEp&SnuJJTDQ+$6;14iLuod3R3h6KH*`tkkF<&A-jAq24^Bfe%c~F&9<>KL@a?h zmnNy4?1%eXoWs~vLc0*1A@7jdCLRZ27(zZH!-1Gc4Q!S^Y|F@2wR#ts1yx}gZ@*8E z*q2W!*q;d_ERPYX^*Y(K8;|PG+q$4fxEX0(>_qU(I;_0Xs|2QL4*Q- zTHW7T)Y)W&r6@x^D?DRSd(;WV6QE;K*%Y-JVI)NqdIq+ZCAVa~>neDO>8deg2$wC- z%!ic4j)BchR$8SZi-)XrjYv)n%ZLl9bGI$&F(ZiGXoBE!BY5TyFobSEa$-c6oD0TL<-3q1b7PF-jvw@5{)2F*xEN zk1fMAB8YIIT9C7^*6d7Jgda0v6XVU`XOMWiDw3!yT?%(*5d^ z9b>ZEYx9UL8I>&~r7=Pc$jEr3*XR2-=?u3!awYBvcjAuZZXz$P^#`bOB#jW-RKu$P zDuQiUh9CuJ7LkbayTcxX44c@r#ueYx7d=;%D07l^$|#g!qXg3^H6YF$L= zV#zoqPzd_ml9A0r4A(6vVG-g=s%YW5$1dcS_J$oxCW_e*nGqRcxr>1ck@E+T3rnzj zbJYqonFd);PWlA|>70p6v}pmrtrI;4q9QCTw&=bVym9WX*YO7owFgKAkROma8*>Zn zc)4xby)|^&Tdhw9pI(wzR!MG1z)Jp9*=kJjAi`!LMYQY}e1(p##L8rcy_rO8chQ6_^XUYA zPKdj{IVq?g4uJWl7oV>(+GN$}S&?)bXnkC<;MxGei8e=UgpR2Mqp`($2J%B^a&#sU zO)Qr(OGPP<@B5DHu}7fJP|=$=7fGchsZVEd1&3^WNr|IyEEAea33@DJW&vdtWy{(^ z34ZFlADfCrZ$_v=ZGu|#nMCG;GcIUKS)$&0V0z0vIND?~tdoru6rc11Ky2QVKP02m zCRhacGgINm!0|pX2EX78eh zQ0}lz_hM@bZ{D`>qy6x|k!%mYSA@#twa-7Mwmw z$j3l!G9u#NNiy21qtK^t-&-Bl9xFAe7h21g-#W@@Ju(*naD28Y)BbQy-_g*`WV+mt zHNG0!*!c-ocbXryN$dO(f3;(Fj8&LsUz<-Vx9{kVvb&}!iDkA=klnr=`5d$l(oPZH zGHsR*wvctD04o#aTn5C1POxXhlA7}EHA0kF^K@p%l^O;YfyKE?UmL{TFFC+y$`_=m zfz)f;A_UPDAq|tJG%vkuNuV=XMp+JP9|(&cO+kF;EN%y7hwKOa2!-u4x0(b)4CUo( z-h4b*`kCgqo+SP*M8Bce~L%4-_q;t{13jfnu>u;*PQ{Z*-+ft%8))i~X8WsRLAs!P#v2E?lu$tX|W# zMnUpO5gAJr4NQ^fi>81s0Vjd_<62UG>Go9H7u&N>>FI9kjyQYbqlf5j;q;*05Sw6> zj@1MPS^5kvPtH1}d%O9g8mgDI-II3Q9d~dna}U%OFwG*e z@jFab)Q~-l0EaxJ#)V(S9#Oc>2S(>6*;k^$zz!E;QGEWq3qi}oTrMjWDI*n>IKrn}+5%7k;N#1 zUB$)5T7`2}b@A+&*J9OL zzO0>E6KWJ`vc!gDqFEKK!`OOSCkxiVuOLE9uKSEE@|SG#D_0yEP{^fihvw>HJfy1T z<2C&9^%_i2RggU@1(;dl14jDgGlr7!o>)0wJa>iXRBt0k;kyf|1$+JpC?-9Lfxuc2 z(=Uq-RfjWv?Mk6zLObPKoKCDn%AMV;%WS@wu-h^&+V}NN9ZIRihb%;~~ zkq9RF{1#hR2DqV)`bcZ`GgcKwFrB4Go+uoB2#FhJ0%4)Y8VS!FN*aB4M3ZYI!kpxLFPN$9(?=iJ zmDomPu_K5h?UZFJq{s@52R4VC&y_??0yQKvwBB&ZFj%J-Knn8!yTlgEv)T{bAH~F` z4QCA!%Af%eTt2A6)KXctqBLR>@w$D{49kRcNPN^+Ur5le4^(F#6A`|UEt`a7(=jZW4zCd}N(#`7(WjR_#2(z|Fh#^ExiE zKaaZ$_c~Q@QgUp`_Nb}y!}+XDk6&a*=2G{v0oZUhzL%~h=zc$lFV=5fYvGTz=1)Dw z**-q{7;z=9Wb!JYi9U2rtcc%wPSnV737)HGSq}+_{ET*uwcy^|H~udhlfr! z)HG-u)q_IJQO&ZIGfrXYt{8m)Q^c`6_J`ojP>95@^U(Ah z{gOtWR9_*%)rks11Z`&;jS7&;y03xd4rFX6azvZYq5QmsZ;7G$m+FjhlVn&F97;9G zW#M%=Bhuq%b!}5WVa^Z-3QLIlaS`c{Snj9^TJ#|ZMozpq*LEp2=Mm&vzYGBzPsPL- zas0^iokswgG+*haY!cpSG}K+;={&+rw+T{-z?IE2Av=~9XA^z%TUPRx;LKu=V$>c{ z1t9V)w5g8C2u5`{Aty`RFrq>6VC>h8b+)UOdisg0$<^;*a={Ma0k4NAbjO~}ER*qu8kRx`Ls-(1Y=Xtu`;ggLP$R&Z zWr!KM%BCYzV^so6vhssQ*%y6`QGGNXJkG1Yo5hipHWxrFh9MJ0Wf4-S#0X{yZq`r6F&Cx@eS?m=*gSu|v%oDC z78)VIl0P<2U4cV=s-1m z?F)w7IL9XW)=U?8ZuuN1L#w;uQaku6AVz0S{Hb^0qP5m7FA??x=%8S{4>I+LdJy1> zU6zTTB*|$eNmM1g53K^i)pc0fO?)T3Jb_nq^Bg+`gJ?k$*ijurxX1(`(I)I&1p$!4 zk_PFCy@8*6@Uro7AI}kcU`X=x;co5HXoUEhIC55y1GI^%hQG`o6BqFXn=rk^*?B&b zX%Tr$uUZ~&xD(;kHBM|SLifl5VX1Q`ET>s#)q{%~{>nN#7zGzEa9{4}TszC&)8Owu z)jlc~Yc1i0*eS|Gw@?BQ1*U+CbY1d4T?SX~^yix(rd%wEDYvG1yQSWIfs=7`=tL@Y z04Pu6T0|=)ShNK;b4K3|z!e>5GphbNp{4!#aybe9TOMpe0FxJScm2uBd{_^~Zr`nkeQ|L`TxxTVt<7Jw zjl@P>qNJwDv+l{klnu~|!Sgp@Bue0nYB@s05f6P%5R8Pfk@;gGg-62eI9n_qJFs4q zGK!OpIt)x+?FSO6IuL$c(V1UsMC7-Lk(^CS1ua8EVMVE^@fmr3eImwlA(;0}$kX1U zCV9d>Kt4$H#vOa$;uZ(mrsMd9cA{23|7L$aTV{Vg%W8kl&-W+}`s1kiNTKzYjpK#l z!)WC+l#Ychl6y)+(5jnE-~KZfTf(ma&rRAo;5O zsFjMerzKr$E;VYCV#B8nIg{!sw*d%17WZ8Qq<9J|e1oD0MgowQ4OX^QaK6A1YE4|@ zrdu7fdty>5AC!qC(Q(TW$KqJ(XpgKyD2F?wgpx!pV8%IwA|yh{CK7R8pxAEc{<5-^ zxkkX_>k0)oy1PrbS(|sZxeddx0w!_a5}X=lIcOu&NATT zawUtIqF9yD^%@NdwF&{2j+L_A!YY!!=>{@@A{XfsQbLAsLLLZ5coT1g-9x9yG%L3= zH!u!*VE&;`q2;)OIQR-61KHehg~ln4vp=aS=^6?|4)#f^A^}8eHtgV_5Eo(b z^i>9UkWOI{U;{ww@rjDoh4Re`-#95fkUnp?qfZay+rWT9gk@4WS6gu;mz@`Dx%l)$ z3lqWxKG|7?+elJ?f-GsHu7=;2f_P|36WhJ+4jL5^wz~H!1f%eW>K+e&Dk-!DzA?u; z9)oW1gxG_j_DSV1E5dq&gZOcEf@jdeN58}PDhc6^g|Imju*FOvQ;@XGqh%jNt?mRN zE^gls0Z{m{)G}`hRxpO)1K%Qq+MLkSF&lYgX&$!)6A3%2I7ejRpTgKha8D8jlR!)r zs4=qMfISne;6-*9QuXY&Ow8+oBwvRP2as>}MOo#p*Ad2nCD~hr?au30w1?OrQm|xG zIp{jJLNI%X(1ee*;bFUg)fK0uWv1(L6_q-~GJ%X+)tMt@FI9(nM8%wZw`{LbwHgmlvlQCs#b9CL6=*7G& z4II&`@N#W|p`i}Nx`d&S!nuYh719hr+$sah8QKRDWwriblcLI3nm|aTMG&OIF+IT; zCc5zS78rR*0jBB&RU`|ZZf{{xN)$bU`L!Q?i=qxTqXM@_f{&g%i+no%fNTh=+zecP z=KLnuwf;29!dLjASZcqdl{ANK${Ru~GNciPQ7a9^g$akDYY;O+|9mH`=AQ)xIT)YM z;hrl-AxMT1H!l2+hX3SqRnea|rKlNs5G)}G@hgZypcoQ!e{D_QG-q+>u?n>#P8Jkl zF_+LLVg+FCC4vaq&A>Ohj|>4t;on${I}t`kJdqKoqGcT(GwcKh=>^}|F)kMS&S#;+ z4(V(Cu;)*?vkmpoH^`;{uM_OioijGFXtXs~ z=WjBT+2ifI#)D~OXnLC=aDPLPjUGFc?nqY_uu9ey%ZJMCTOyl1!mt_oqF!KOP?#{Z z)$*(wU1E|Wd{07ul<(KkT(C!3?}hjz4?`tE7=1re5D)d{e$jO6)zME+u+O7Pd>)Vlb>v=>tGY8_?3mKsL6HoLmZR(Ev= z;2SGU&aH)U611_Eu8c%NKvA6~WD02e7{}60g-VJ((F~7nolW7LDVfN4$!CRq*D#`F zjtz&mw1|SV57&B7ZRUCWg^n6QfB0LURcDZMyyvH5gY?K)1XK=Xe!~9P#cOY&w;dBm z#>Y`IZIEN27|ay+*|>{K*1!fPbtu;)l3DZ{3xFGd;Gbf>)FFv(O|yCb_L>aS7j6P~ zRKfx>bchnbhg}R+Aufz>P;i2T9fGMdT_eqRsFgY3AysVg~1Bkk_v9FEfZTA~7mGBd`2z^u+oATUYQ~Mk@@Xdgt z$D`#sR|crK7h+i3*-L|c@P?DK`3BW;&_Zp3#pJ3X)5Dw9j;o6uSMexsEPpj39;=#HfRD#fK&-e7Z1%Db;6a!s~s{hY)1BjpxF0N7vw>y8ydM zFEQd)=j;-gS2F?JseY{4vVB5qh}?E0{d$-w7r4SSnQMnfx~sNiW@mwEvaO2mi8GN% zg*&Y<`Zt{#r(j?Zfcc2XOkRvo4xo}C%w7RnH8F!2TbCS$03t`rrU0}M2{~Y8lgkyP zKmx_R>SE0E*O&M*=(M#1X;qTCT6k&ZU{rE$lqMSTAS>2&C7W2x9E_X5z`_vv+ZNq0 z#QA0?MS$NSbKy+HzHo0UiU(bqm-%#F-~*qcgjg_Qp&XHWEnX^69+xHMVnJhL{3%s&V5t~SS+5h0GryAj3Rz&9#K1y=%IjXRa^S{UDy1R| zJ3@%>7U`WvClsVUEJ0-=zs9LjuwEE6Afc{4U4<4%3R9q*T^5eQhFBnFb3#Ukfxtsb zfejoqXxXl1Yq5kWr15}?P%YA=K!Zn3G=gc?;T96O&)Wc^Kuh26gb{$`FlwoaK;UKq zK15#5(4Jn=xoEyPV*McnCdnw^G@#;SSm%&vzP=FLT$KXewI5B|dfcyW-MuRF7pe2B z4x4(+7T+W*sG_PgmF2+Y3X=fjLZ)imCnj@UM8An&RpQKCaoGD; zHfJT61pP#!#L-2aDJ-6;gfPpCGtWX&tMN5f3o!E)A)3m#EFSt?$}9=gv_s~GKM9uZSD=2ScFUk`R7P+10Tx2aD5(BS8sdZ!TV=!n#ea3v!gXBHuuws*qVy$BLD0nP_%L%bbc z?We4-Vnbl=Alny&KP#l5nxV{jQ&*AX`rvY8%~wLXs8Vo9_@fry6`^i94`?#ey_{`u zX}0srhFA2;cTAu|(*2S3_w<=|Qst6V?G60Wg_&xsIC+?HuMA&0iHm?H>~EO;}&oeWkuYR_)GK_E06o++G_{iH*I#jFIS8UPcUsAxPeXW^!bCB?KR0 zFk}u??e@9Bf?F;Dycoc2BDv98(J<^h5XgSgHMKAT902CFY;OC2zKRc31@Q&z3d*&x z5!wp;f|^r2OaQzH0f}D`$HSyiw(d$Vm=bc=287;R<1NI+Eq~bun_c$wVzL5nYw27g zzl0`WHl5FfWS0`#0jm-#mU5O8$3f3T9SYYZl6T*@jV&6UIV0qK7$Ek&*cX*$icv5; zh3;+=TaHI$ZpAX>{W~<}IbiFaB7t-uim_LMjR4l1BFV2U5VBm(#C%32Hr;Gmo3a04 z%vrOQjqpLUUL&iJ(Roj=$SA_GPdH0Oeu3yVTwAr}XN7+i4)y|sE2O7=B{=j5W5){{ z&#*v*;nN-}Pw{FSCq! zKVS^F-Nehqh##qm@Au8x2PcRmL*FXp4GeTVLphY$)rbq$HA-Qphkr5}9pN()u{d>` z0%M_ZhxHT8NJ_v#EZqU_W#T)n<6;sE5VF|1VURzPKkD9!FPBuoywx!7&dHU;8o>EuVq|_RF9h%kJ2j+`Hzf#rLQ5P@G<dTa zBC2{zL|?7V$V*<08X+Utel=@(yRDXbq$tbMB=b#Uh-RjDboGzs ztD@Z)RZJS$#KKH!_5xS)XN68SKBAKp=%S?r$`>*iU4}#wf-h{a)nlpN^EsC6BaR$4 z0*lX2X$07fH*-j%Tb*%JS|dbSRIm8r<0J+5xrZHK*>|$ix;wLh%tnfkI84vSL?Lc` zOe^Q$nzv$igQyQZy=?_Jqml<8t98P%x}=ptg2oc$Ni&GKweO>A_3{(>yzZwXJ`Mu~ z@lth1q+2lXb(9YtA&iLAR!|1)qe8Ehagc^CH(g_py^u{BQX5Z1_E`);59C)DrdNws z(Fg13;#KsaIvTGiHRxlA0xm#ttMdIqP%XmMoFh>ME;qLB@%p34?*)~8GIY1b@D3zTm{0?G?{M!7GcNJ%rDoX*@e zdGu!nlgvypy!Nk+Tv7YW)>U1EW@ey!{`K);s7C1xmG;tGT6{mQcs6B6brK5<|BOlX zeG(ethzwB>cpOAn#qYd+4?!)ka`iKxPK-^W)Lp6iUEWf@{^rp*o#B36##w zDwrmNJwKs~IMT7nJI`dQ@x*F(%wpkm%KK{~V${aCM<%s}rz3M0&p_Hy1S#qExt$|o zy5&iS;SXJp3ZpY~NgkCxc4~a82-*lvO&vbf43D3$LZgTz*QTc+ALhEdB9j|?r!Ie+ zV&TvLHC~naxJ?AlB6A2|qqCiAjUI8g{l*a_!0G79<^<}26U#@qpu*!e78?BIu_VnZ_p?&D z`_)r3@OvtXD@SJM&Y+o7!6jdAR=jjl6y#ZbRAa7c*fB<}3h?5js3G@v0->M3BXvwF zhjexvF;4ut-U-a)j_T%!Bf?TgxY=GYN1#g69UKElqX72_T~FeP3ZT|v+<-~X<}Sw-X_lY5x)~>MH)^Vh00A6 zV`i8lM){8r-`Q|Qqdqwm{b2SmNMA4c&&4ORC&qPvzbuh7abl$rn35Q1p-Maj={qGM zzFSg-qSa&Uaul9xal31O^dN`(0?~z>a?;A?iPQcncshn^$I~<+nVGvhg`h2sGxy$H z{caVCVl&o@E(Z{4b|#wfQ}OBczPOWN_0ks?kl1|lh%Q&^%cHjSMI4q2tuJPxqc6et zMXBXe+Fkl$kEr{7F;kL4Um7#Ubt#>d3Y?vbdEDxcVGfq67)_79J=0g%ooAU_@d$mf zV_f$E|J|RJI=G0pFW)F6Okcz~w*0<`!}&v(eUZn}dG$q1b>}(jJKH~KqoAT))hQ-9 zp0B}I9dkrqSB*^qbvf}kx+=p%yz67zH8u<7L0^LmYM}6RbUyKFZmwQsCeTcZG{87*+NJ=H=iLCPO z%X@TtmG9d3PfA&$eHq7XC)QcMY-BaoQ#MM{(V4z{Ob5H&WqL6s>m~NR{@l9#7adc7 zBsA_;UySknr7_9zF}vq5k?+e9IPL5)XlhNzizWDP>6N;%Di!|VMZEp*mbBR~gn%?&TRR^Q2KEndv(-SQAF^c~02Q42h~YXPn6Y4VKAIVuz65}1GzDe?3= zO&!tLKo+T5=vNV9ysTp_(r1DCd1XPx{nGwNEnum~jPx8X0PeG{{C507|b2O=YO+ zY$n96wo|1Y!Gy$bN5Ks*D_o-GBs!4oGd$xk&tmj~;BaoI3lPrG|A|nN8381(X6D@1 za)p2v5n0Igf{C5cg_Rh=XO%6WFx|PCJ!hl%W0Ngq^UJMh%4EwSMYpQg$p?+5n~{Yj z>iAfSEIsHlB$&bS-Wi|9b`4bt9zfG^L7euddYSV2S&V+qu#Z)*wWo+(PZU}AWpa^o z@-q$W7ov_SKKOhXY23Q$UX8H9Aqp5ntN~-o&B=U=nF*I+Yj7L7r@dM;890yWGq+W; zS)0?oZZilcaai8yd!WST;F!~wx&P3fALt?~0IzwTi$SE-1DV~zI? zj>UVaG_C|0;u1j1Xig5NQ}5bwbOw#VQqEZ+#TF!Z;#p& zn4$_s0%$Vf;#1O7@zqfgno*>f4U@#enZZc_X!`J`(~U{>BlehHpMv@I5g5nC=QPKs zCNNJu>d#Cb))z7Fyc2G?^7&0=AM30+(`hu-Mw-pYv+ztb zC<6e?c@V?^gQfJHLAO8qD>l!V*P%kdX;m^bvwPPb5Fxyzpwnb(Yk261$SDTvJ^VM6a7T4j zc2c+4mr|Rd)Wx+tVgsF7Gt1;Qfyrpu8EM{n9Z)pNpNJZz`MPLTC~6c))gBY2=qg zv;hcut6DAeS!}v_^yt7jZZic^*Aq2w*;5tlkcZKQM^MI00Ew=Gj@PDp&is0|p*;xq&?SWHaW93(*{_0~Z~vJC-f zyGZ*=fYsXWa<6O&m-kB;GK`PFcdL@dbY*5qWH^ICD-owLV5_p8Mv~Np6^vR>*RK`E zvm~*pNr_&9<(cOhYv|N|O&3-Rx~HVUI*oQ1Jz~vKcvsxb>3AaTacOEB33p;UH_> zm#OKYDee-mG=20EsJT>3U<=)6hBTMZqd}?M7pk@==oLg(g*PW6KzL^rUQqXt-*w_Y5CdIxNUY&9Q zd5K1vvfmrA!=`%e%Odq41wvWj_(E?|drI zD?N$#@4PF6AWTmx@2+^ie?(V91#PP=2>(r%%YT$@Yjqt463Ml~&J~QXvqDT%MURQJ zs6t14*Uj4WQeP~j!W1S^RZ$|P>X1cxj}sMLciz!O1eDYEg0;`zwO+g)?Fb#qia;lY zynwDdB$*0VvDqI)`k1bEQk#x(CvmhVQyGpu$;Pae0|Eq(KS*W zu7(cnh(#272mcfwiqGD9=!qZI=bYKda~ebx)N2l)Z0f9aSNvIu991aslI0E?x97yO zU2=CjC2b;Kw^YI+ii&??TAv-$dk8y`TOCFt&ZXX& zaaW?``eFsy*exrU{|H**5_Z62P-3!F%zH?Qt6t9=c!{@gE-T5ZI0=TPCXZW~RtZK* zY89bIRDqIeMqf?LGRnqGlq?OQ)$LGr9X#U6~X z)<0XgUOfek;Nxy5W)IJ9oXH=cGnk*&Su??%Jjc4zONVVQQDPiop#?8hWei&7WC+~r zytWyh@~NH@Ic_vMvYR zP3^;dp)7Chi;Dqq6k=Kv!O$7-=XN<@Oa#w;OiQeMyaG zNw3hCmU))GIE^5hav4~ZVUUE-rqYGUc%0O1x;+(^-;Yy9YU-e}(j@R}(Vz&8X@3Rr z2+hkI{D`6T&U3qC8ew~llC9jUgSA>-!Zv|yCGmHJMQ2qMs}(@a*rQ6X7Izin&7nlM z4$Dr6rJ|!*RhGjtZ+hY^XNpz| zmt?`(jRW$rzg3O7B-d1Dr6*oMYHVcQAe|@3yNa-6dTG~eUQ*;F*Xngvoa;aXIG-pV z`klwG_6X#$3{=4{l2NcPKYrdbomJHN!p2XKNj6;zI{92q&pdv4$2jZDFe}6Q6O;%` zI48yK6OG=%u~Tss-Q(AG5aKdlMEL}j*{Y+ymY^!`Qa~ET7_MWL9u|(6%C$Q)fmTez z9B$7X=BOgZGRG0uvii~)$c2G4kOui1&VN@X{iU=w-GCd${}i5k)4p_n+D;FVv^U*G z`h)2mSFENNq~qxw>D}o=X)*0jkMhnw+zsg?gzmZS2J%e~-!ObzdSnk?-n%m0Ht>#t z8`70Sj}U%mx_{ud;mP#wfd|vALpKbbr)=K6;vMP1;Y5jxlyjbUR6F%z!TP`z(H{K{ zr)$&AlzFXN$P3i}=)jf4;~&_^d+Nb${62->Vf^aPa9T}|(E5k@yWhVL(62{{`S9So z)%t<`1CP+7M`-CIX>nkcz9sVAmiAwPhj{&a$iMef$Cc!HC_Om%0C~14@v-4Y$+Mas zBhOyHar3|;eO?@Rfc~tKL%AL%{lS5UocGFs$I=7C?;1|jzL%CT1_S3AKh^aZ?q>Yk zjPi#DQo2Vq4?IlTB)Q+kb1zQ+o|5(r?x)=k(bDszJ)Cakoiy+cg|C==y2fEIaSu}l z{wp7(6?-XRmC!x(VwH5}my-5T-~B@|e*4noQ&f6Nt54>O2;_TUD8l-E=YZ>=guMfk zv~F*@lJWXWO8O9^cQfI4rfZ+Ps+_nR9J2_-+@JOhpMTMV*Y3aeorCYZ;x@)*I6cJs z$Eo>&fkpfeq#K6!QPMvCG;a?MePnQNy8mV8(+xwn5_j`WALe&I^{O3{jFSGHSC4_I zlx`aa#s+9ldNCzEFtk1J*zkVF=my>rj9r;-9b6^%hX+19fRQ>adeCVP=v{K$LzxfQ zJwmJKbvnuOmw7%w-Urg_`JLoF^>804_w)9Hgx^Bwe%f)Kd3-ay(wJXKJvY;i{Xj~h z{JrV?;4q=>be_6z_1vy9bNhK~(tlS{;v#u$Q#Nn~zcoYj;5NaVtF$lpW{ye%?-u_Lac#Jp;Fq?>OoEi9hZZYkjR! z%gyPACn+D;Z{S0uYrQ-=un)*kxq=z3V>#iE@GCarOCE(ZlMx?&g#+dkzn29(b>{Tw z@}So6AWqML^wczjOSpk_74cW&t|IO#=JRRz2h$a}C(--CvOw0GU4_Bun zlr>6z)jftgiW{d_Pjk;cmU{Q3V}38%b)57QIL*#$aJMsVOg^O~*2v~dxr=`cqifpjnKg4_K<>e-W)aLc$AT$i*} z+CYzZ#cgiO#hPf4Y+Tlj&H(!GbIQw9>9uj{&+{r*|$`xt}oC+-Kx^MkmD@c$6*hspaR zxOWrxqvZK9+>hgag4Obq#QzlTJ-CN)KMlP63@hkoY5UKCKLztYkNXAOdvTAj9^c1` z`bF~o67H9Azk>T!+^^vt#l0VQ6XpLp?gO~r!2Krg{ub`HagX7C2lub{ov>u}fO*L(^lKAP|i1Ftgv6}&u?cbFPWuRd z4DMrT$MXlSN-rS)$KgJnxEJE~<6eXtA?_1!FUEZ$?i~I3q=8qbo7hnWlQ&c50rDNh zsqRBOZ^69;_fpbc=KA)eTk*e~x?VvUpN#*NxQD>5+AZG4xO@uXSK-EirB_$$9z0C` z+i-_*M{uLKG2BtyIPMru^KqQ#3EXRNx8qLYCUAG)PT?kTuf?6lP0_Y9xI1xYap!R7 zad+Wfhf_bw*xyb5*W=!Rdn4^@;qD>NG_H+Pf8Ram16rT2f>OLKbp{Tndl{PxxQjr^Q|ZqV?=Is$K)KrA`qz~xJa91SUEC^T zd^0=JlbM_Q2-jn!cfrfVt<&xeTyNkg_*A$@cs2KvIyUKt*5VdxUa;$757!-e+c*0xUa!|EpczdeI4%YxUa{(1NRN2eIxFh zaNmsk7TmYuz76+I+_&St1NWV{@4|gI?t6Ied#U$bo~v8a_YwYnoaW^RJYSl}agXT_ zlK+QrKaBek+`Dl)DNaX*9mS=`Uzettk0LUS~neu24p zFHW@Su;B!*knsC(<4_TAZp_&)QkLemIZwYtdB2SN72L1lehv31?)|u5$9(|z8@S)Z z{TA-GagX7C2lu@g_Zhr89UiZ5T3h}a?aw;(Z2J8`;6c2BK$hs z-MD8npRb^d*HhLTaBsx5aQEP*ac%O<;AU}igy#pJN6CBA0^ulQkaxh_gr7})<51ey zo7$da9AXR>ovyVtoH~rIq(BFs&26!F#>I*P3VB zB)mvl)OW$$IaBrZ_-^t3_TUt?U7dCY&!mgI`>AgGo#Zd$sX4kjeH!^beelNg8Mrs$ z?)TU}KYiw)#DV>EjpSe>3S{ zjQbL|WiZ`C`@aAoHLmX?{T%)MMcO;g^Ot!3GVWJ!zv}T{NWVr~u1r^@M=9t19w z@cd2M4aQ5qMfz{!9>e_(@q($}b^bPRR?<`YJ>ot{`ZaKHlJovPW#3IdhY0@x@BSg~ z8aO}61wKT+KgxA}kZ~BM?meur5Aytd+#kSMs_Z}Jo%iNC1CH-@*?&U(pEAx*Vy}8M zm(y(fINYb?6@TVB#eFu*R$b>^j`p{`aHU$S?;pH;S-&~hVU4oy4BpFgIQ_-o1>Q~R zFZuba!6m1?e{k8)KO0;j$8h><>irw~|F=B-B_w(<`_Yb)r z8sD4XW;KQ%cKkXrl67ia=bih~KMt;@e;Qm%|4f?TL$Dzj8E0(&WpIJje0BO);Ot*0 z=ihMuj{6AiKXCtv`!C#oX6Pbwwvz^jUY>@AkkkyNbOm{ygxfRp zsV-x12z~|kue9sQJl{wyAH}l=pK#UCRp}{1pT?M}jG*10LED~6IrD>`zAGMS7V%FT z`ixvByv-224P}YOzJ@xVG4!VDoomT^GPnC0Bmhs%bzDb1*W*4KcLVP~6Zb5a11_hG z=iqL{Nxt#iq0h{9u}{06J!v0#KZbWdcIdMhSG9XjdcO02cCKSjdI8~&%YFTLo-f4h z$Gr$QPPyKamQEV1i$1m*yr&d z8u|jHfH9W03>``@Ax`~xDdoKkcPsAYxL5E_nWu3i98m|n6zzK@X`h0775QGB%f5|x zjj>?h@X#0KF@}e7dZdjGy%`)-=22;}H{J`Jyg0wV7wO4$kK3Oc(^#WC?deA;V;px3 zr~TzP&l9-U;BLpA#7*FiBawltU@ivJ9k^5U`uM7<(;og865Hqn^h5 zr*Tub+lRzs45u@^e<$Iyv`u5xHs~Ci|0K+ z9{L7$zIseFM>~0*ZbFK5k+MIPcRr1$@Y1Iby(4`FWxa{;{kYG>ZIk|4xX;FY4(@Yt zpU0a1{Go5mYyX?j{JbrF0qzUQ|3$brFCi+De!uOR#uobcgS@_Z}qjf}xfNV#I2zB7H5=jz+5HS!Sa z_^ZkHHI(IjRUxzzR-EZgl^|*K7ZbCXHd?+0C4TP0{jXd9oe-jvb9?#g%zB2`^ zd{>4Q!9KJNdB2J0H{-qqr@nnF&u_!MlkrfWzn%KOW9Yl{TD&oRC-L8f`)=GT$@e|D zSL2@TF^D?fgOu(@x9fY;_YS=)y^Flxhx>l={Qyqu>ibppmtUjINAbU(xL@b_ zfuSF$%J>c9ev|yah5K#%Xq?jT;C}c2vy30C%6Ktl{vPgw)bsmK_#Qkh>3`@pOGoiT z86W;|`q0piq(7nz?U&=y7P*h`yyX8A+@I2>>wy=It>9)HiD~S8&^Dwg{?B>dgcLR6 z1sm+)l=+vqaZ6S;ZpbHbe~mlNI|aXv4*f*62mKBC|JM1C71CCf{dbi8_bxx?MH7#rKRF|o0+ZQHhO+qMs}Z6_Dw;#~gE+r6{7OYXk^-+n&NR(Ij8x2mhE zt4oszKhlG5qa7y95tW#G^ZV`yW3|y$U<|G~{Ve&`OcI_iNimZ_a**$c6vUGfQb7Xx zfT__V4Wxy1kRCEXMoWB^$rAV;lJ6VoPcgD=IZD}-(fOmab>{qplz|?6|4TnJ3wlYJ z^)t#y4aVgd{z6sOaQ(9(TlzrREuqY-1oS?xa-g4#9puDcF31ge&@nImk`O*0W_~CD z1r5FATlR!1WI3SDf})nw%5OQNidj6WIFx{rPzrg{e<^J-#}LYJFW;_Z z(MP_$%3+oV8AGUmSrKF`p%SKyTU5rZ0#zXlszG&-zC#U68E3DF%vz*F%1Ld^I#3tt zL49Zd4M|fYXbeq2@}eo>nn81DfvlF$3R*)OXbbJ2J#>JM&yG$xB8|5hp&q?xL#;wi1o0P>s z-_4?y6Tg(F709X@bcJ^D3SqApVKWd`!mY&ZK6ORfuT|*08hzGS7OJ(F>%hD{{8McGv+sVHfO%J+K${!G1UZ2jLL>0>8p<@H-raBXAUs z!ErbNC*c&FhBFqKAG@l~a(xaRqtHH`w_Kx*k?}&_f!JR}C!?)0(r}&nDqrE(NxS)O zx@^>y8?>o6u)ks0U%~HHkTx@f*6$jAu9N>aER&gKm)Xq8hCiv>H}P`|Zo?h83-{nY zNO=}HQjQ*=M;=1T9Ogsv_YpjXKal&xa#KAej%Suz$d$3RvnrmE*Npj+h8OS>Ij`U~ zyn(ma{R!{jJ$!(V@CiP{7x)T)!8cIByl+56yk9opZF#dM*_@* zxFv$b!M9Wr?vp}Q@*o+0lS2wfiF+zY4QU`Pq=WR30Wt>PRhjUY8L|XVR#}7P8>FPl z7JN-*$1Vrtgj~qZ9emHo<2=F37++kf@?w_{WKDt8k^IOj00r@12(vI0;kqcMABu5Z z97;e*!j*#3PzK~%wk&2j+{!}*s7QJ%VOEAJ!SW7aZVbCHsD@p2{MW#&3AMPc4KmhM zhx@uv4}I%nmlL}N+&6?q&={IPQ)q^JbIcaO_ZfW-yhj4_PUiegOWa#QYiI*)p&hgb znahxQ44Kd9zF!7v1d!Y~*P zBVZ(9M!{$p17oop2jgJ^OvG*yOok~i6}xFL9cI8xm<6+84(@Yd9?XXYun;647va9x z$oId`J4ydY+EJNbkTLxS^few(GanfBx)$|oiSZm*7l52)!SX%%kap9lmIpi43fxx0 zDp(C`U@feJ^{@dpf_!&w3VuYJ<5Zgow*|YcAbpQ*!H?;mS=4s!cfd~A1-oGn?1g=> z9}d7lID{_0z^`2Y2ERjbX6BB<3kN4KfaL2JM6}(2*H}DqS|K$E1yoV3agg)GUTDp(HFV&~uSL$={Yo6~5 z^#!-Y#5at0VKLrs?Tq&aZ7KTvh1)ma1*0_ROuV}Fjp}EFd#Hk}kCeswSOr`EP*$rs zCSkU7^x?U;LnLs3(`vq#@}Zl{%J>y{zzaUyB8xjjfv6CjdKZmw(YcNRF<~5bEzmU< z*RgSn197!Czj;2l=4@6of*!6^0^Q7X?4p z#h^I4l|W8O>`Flb>2G6S2Fl`A4$4CXsEEHx_^Aw4pelsnuNqW`8r;`}T3px0tOIok zQxCH~G=PTC2=~Sirjn^9xHsjx8Snxv$yt>%6n%!l&t;3gF7_i} zB;?iqRHHCQLkwh%vA$PhG0k^@*$5#spoqD?0+EDE?;tkS*!u2(Ew9q64Y5NT~ z-bKil{^YsDE`PD(IRSRad6%8A4OTN=5Cp=?wnyfpOv94bXIWlfa zKb`B}4EglcxjxMG5zM2Q$1sn>39e6Kp5i&3hBI&$&S7^Rw+omT;SyYiD{$3n*REM3 zX|ihfI(|jp8<;oY7RX%hZT#JVyKoQg!vlC|br|8K-aNwZW98Q8}?+4EMb%76pErG z!#dK{R#uxuv)O_*yUn8_*}f`=?VEDiXzRhv0t*j#@#llcT!&yE1)@SUhz>CzCd7i+ z5C`JoHm8b}N2kdq!VKt{-fU1rDvSs@!_ zha8X-azSp$V`D8Z-=rR9eIqV&jhIW5{-955U~_5>ZIQJ`Hm}y$_J+C5 zC#nhZnnE+1Q#FSc&=OifYg>rc2D7a#iq;N!?Lo$qI^e&fP1@WKs*}yFb+*Zvj7RHY zi>h_C$#=g)b+ZNfAK6rQTQseQP5PzLHP$Xu6{AxhWo?_Rb(1hLw4Uf6SPvlevKRNg ziBHzhN_)4M^6w3bsinfL4{m*-AM}R-Fc1d8U>E{JZDrLkTTE@ZEtWRI7F!!hI!4*z zXrpa$wK2Glg>fM3(#B&>fQfJh`IC57lVJ+XBHpQ()1Whcr=!yhn2Fz6n6qIH*K=VW z%!dWGP;H?to>q|6layxC>QRe$CW~=fg8!wMfw-3;cex?kqE_H%CGJyT7H#HCYp7af zi=tMO-)n5qwYA6`j^B0oGoLeK7Wmx&8(|YjUR9#f4kjI&iDwIJ1xZ&e+_%AY*nym# zunTs>9_;oK&py}>2e3N`XK4x!VNNF>ezB!gzmku?*-Ef)OP)DnNw^(>l(ZX1iRTy` zN7f0D{y`WsKCx+e?V7BG4^by=A?g&I7M5;DPs+de4b*otPc=I`SAgwAhRznuS?CdrX$8MA?weM# z+0C+Ox2NOXo?eT@y%ikb1eZMn@v^3mYY%wA2azEJqCiySMT6)N17bof;*JgSE|&2U z$@@6m$HnbFc^S%eJi^AeXVfD9lrFwUh&Q1^2lcUU01crL_Kl$lG=*m9(%c@RT0l$O zTS05Ww1Kv`w}bXvH_@G{1AaT&3-HY3eeP79$j8pm1-e2v!b*R?JN|n>PkTZ9{+Lgq za{;Xva%Fu@9l{hxR&RSD-b#hYkwQE>dCwQt`rsz>&wY{A&t61}|F5zF^)R~XZn@s5a7g zj{g5hi^Oln*^oYqS-*>smSRXLW|YHG$d`41HOQOMT>DtH@A=QPupR?H@*O({UB{xw zI2e!J1ej=-)&4)`sX5j$34fFAC0P~!qx<(fm_i;*1&cj~Hq9=57IqCFSK0|_Yo)E4 zj{6LddEoqfW63j^$^9(+%_e_z(ktJEQa{Zd#4%V7mvrCnV~oU80*sncxY29XcO z;V=S5!YCLGV_+Z( zM%`S-wH@4%%r@H3&Zn3_E*tGhJ8LCvd8EqP3RnrNU^T3PwXhD>!v@$0n_x3+fvvC& zw!;qM+Zl;D0`Rl5iW*NGVMZLgBgt5LHT0>5T{XjQ4?3BB?CRJ{`)jtdXZYsX%d=^! z*P#7jE|%;4Z~zX%A^0UcEuFQRT3^B?hZNy5ekK0jko`Lxh9htkj=^y_0Vm-UoW}1N zWSxa`a2_teMYx39Ww-)YxxWV2xxN86;TGJ6J1~a!?Jj!VLFns!DH_K zh{QZ9JcVcQ9A3anc!m3G{Jnv<@F%>3_wWHe!ly{pwa=Je;4AzE-+&D;N&_8&9ISwb zUbDu)u06%SVD$LZ71{rA~9e&b72Cg&WHxp!r zERYqlL3T$CEeB>!!sT+*qAW{aj6Sf#qw+vrSj70sc-B4V!(V`CL2)PnUdFsj5~h?Ru2$ONRAn5s=?B-Q+}5Vt*4D~8ys8}T(qA~C*WsOC2e&$g zTY3Cez%4!FZf1F|t3_q!AgvYd^|XqP`g}jo))7x-s6slcLKswo>V&NU(jON2HMy<@ zwQ;NCsH@dQpL&i4d_y!qW&@)h)ps;xET$p%4Y_Yb9Jt`WA&3r*FdIV?Xo_1i%;wO- zA^Y?jYb_m3sDDie-^7sDiuhz+DV5fg@2{rVH^siTW~QyS)|xc7A>Z3NLR5C1;bOjd z+7Tx3UEiMT!XWy0AU?@=KPyfu@?1I^&&H!VVRm*jr$5^q`OT3p-;p7z3o^U@O;$Iq zyF(8{p6okezb4m`Plcc-6oX#S8~p61lz93;U+4$@VE{;+19_%{&}T6DIKLg!ZKEc?G(b1&a~7BwEf6C7=5 z_ss8*iQLOK$0SEvdX=mv;C_mu9eGXvlQKRHrekN8llDfxYzA@o>>`(ODfE%KuvwV1 zVGeF{VK2Kn-N0K59n3Qq<{@W3EO4~e7UE}yqrH~j(necE+>42Gi9_~xchs^2Z#u#` z)l%{x7P^~r80P$}>}B=Q-(7~RtH?h8(^cOgSN>b zYY5D_h0PA>U(2_>>~Uudi!fUq9kp$+9d__cb~-v~yU=AfZZcoH2Xim%!)`w^55Pe< zgxxQgvbsg~smt7}%#R*qF8BfKDN0#7lef|X>`eMR>R06dhX3CkKAy8j9X8_fs3X`P zC6A85aX5jWlW+=7!x={ub=Dy>j*Mp!r_6z!Cyf^zU1P=l z_$I5NT3Vnc|Kulx6vd_v=}y)Zfd$Ht&%sVv!(*B9HzEx#uH7Kt zfF4XQ_|Ppfgg_LC3eg}s#DJI}dmdw9mdA|E(J65tu7uTwX`xP8|23R3z~SgU{9p9` z@BI|BN`_7{{_bZNxA=cYeMyc! zGX9nVzbPS=a~yG)?TozpWt~}S?9({M8@ih7u*H4?a+%L3e7f*7`PmIlx5NmO9=i-s zl6ooM>tXB?59lsy?mO|kB_HAkO-8PSk>^bR!Z`&E7+Oxz5mXJI%9eWX|>p z(0>6U>X9sWR&#s7bHhRi<7vJynH>ITtAr66- zA3rm+qR0x2efqf;okY)KApOz=v>B#ubI@(NRvdddeW(QSlyuHDo`>u=kon#W?5g*2 zsz)jOm@)%($<)0x_GO?f$Qdc+Fw29q*A*xi6`k{qwy_e|m7xk$g)pcF)uD!SfiX5B z>92_n@;pS(TDY0-1bIiy*J>kIbda?la&|x+=R(Gj7+<9HBk}pe-&r%Qi;Z$B^V#xT%yKGnmqh3&aY=s4y5B~~ZwxZ0 zBxh#G+GJUW+yuL(JojeKrL^Pbvz0PswnN|Z&MYhPOe9^)$SaA<+(*?M87-g{I*Y&f zlBMp-8(mwSko&hiryFsKu{10}@i4Na&8G`#z7zV>( zgmVthPfit>gZ^{=QMaTFj6@f+F3EH2L_L)65yoVUefP{&I%BEPPU#bwWw|q^^l<|9 zAsb~;-v55uin%bxY0lk_b#5k~HWTk=;uYCWHIDdXY}Ol8l65%dch7jI%*Qe=iQEa! zEm{&zrcj_6{UW(%&9|W=?`P688K%Hg@<8U4rg1$TX2494e3Cq!#dT!L+ic7^Fc;>* zd{_VrVG%5bC9o8h!E!ij=)*XsQ8u<}-}gLt)JmsEt%B9)y2iOpTT6P^8M?4Gk@3{^ zT+8>5>2_@o_R_!F zi@6W|IwEgB*UVlT<@5m82jLL>g6v=6H~1Z79sOavjCC zAw7XT=QpsEJr1(JAq=^_LF)WX>~DeWZ@7(l2kyc>xDOBDAv}Wr{rq-lkBR#ap34*G zN%Ds=3uk5ZjC4qSl6LVq>6ZBg*{A;kc`woX6?U)T4dLFxpHA7^!C0zuC;1}wyJ)w> zWDN$g-opp3Kf))jJMp}wJbvc>3w(vYoVzKFyUE+#$Y4$q`O+@1DUkfFqG_%Z$~A zzmh_85LWs?=KLysMb}>I_}n7E~)FXpG9Pgp1i{y`*^49!_Pkam}{)X&F$LH z`)fb;`>~h4LZBUDjF@=5Mmo*s>vK^b4cV+|=Q@h(0B!mK!X6-OsEUf;3e?wV9E6hD z$V*dJbeEhuBWZWF8CGjq?SGU-r^U`ofqiNR5u>yO%vxhTr4ie$BKc zBCq6ISiTv|_ppSOevrsL5utPKBq}{5D#MymZ8C?lC$Yp_`;P zJ$aD<9W%l|^GxKN(d1nim1lN|Iw0?}O!&(TSs*K9gY1w4azd`~XCQ5eqfCC!M`=TH8|gUDJ1mfY^i`3Q7yEpWAGrmfAQXbaPy~vCABsV7C;=s*lhLY<@b|i38UN<_XN>Vur>YP(gSyR{mfQHfZTL0yXFW0b z6=t*xQZ{8hC*PQ)Mape8!3rbn;&}Wh{_dr=U+oHP2 zt_Ss@0W^e0ke*YaVgajd(B-by*d=WXd4)Xb3pK@$*|%eUo$KbVds++J>eKIOi5{(7 ztVzSZ4YVas&Atz3N^;%abyw@)y03L~-O)O^9%vakb&3&n;(4HTHsX00F3W6NB_AX% zDd+R}?v(GVF36Sne~}-bw05LD_VaG&io7Je2l_Kt-<0caq`f=(m^zu~78E0YdSKTR zdO>gKgI;~nzaR4Y!vO3C!XT~(!w}Ll)D=YygW)g&yOA)8aABO5HQH4e{VjY?KIZus z*5vzG&P?@lf>tmmX^lblSp1KJ@kV~!r(EAB-S>@jPe9j+jkxn{uapD8qI01S~y>Z+sQX|pp3nu zw((6t9qX*Uj&NU1zMAdr8`91=qw6hsX3CQ`b*)QI5;N=XI@deuntA@7>|=;e+q|B< z+(26VoHAx5d|_&@j77<~)J9})GScz^xA)p+*L!UXY=v#OZHFDMk317|-hU_eyI?o$ zaeXr6iJQpn&HT5Nm0|QV{hVMXcK_}sC!5jtM6Z3Wue9Ue$FSvem;LB^0OY*b0hHN; z#8n8nhcJJ^Ue3h(m9X!5R==V9@2E_al&v{+^6`9Oc?V_&nt2G5q^EMNP&q zk7IuVIeBP%$v<88{hq{5#&A7KLwosFk$okBJ#V@$V=bp#FVtz`3+#hCW8|Bh#KwFX z^3HKz9Dk23;*b6;tkEsH=yn157vU1fSy7iUufSEpU4!ecVBLvP9Iw;yGg;r*PT7Ze_EWJ6Z0a9Ob<>_ZIu zI1%?zjQh9|_fffz<_?XxmpKPNC-0fhJ3jeowq?=r7sCjffM+QBFy_kPfAVb-3ti(7 zZaw8)`oVW-YeT7l@eq<&%co)!E)Iloik~SrkzvMlC#F2nQy_dih>xEHm?J~c>xKMkgwN08Q?ocs-p-Jut5 z>BP;Q0vYrJksTjl8QpSnpqv#X*QpFWGrCh_NB<9A+}!7Zyzcze3iG`}DN^}}KfgPQDgXtMR|r3ap$HTOzdIk_ zN*3dLtQhyjp#+qKQcxPC9gtpxIYz~rLdts?cV7CI=J~Z{iK86;%41f*tO%93u8dg) zvnpm7@l?aC4mF@A)WWSc_&M3v9qWV1!*xxh%6Zw6wzk~2L%;UW0mkFj5xY*%8DwvY#4Gz#x^UkWKi!}^^gw=3 z=mou@5AJ=TAM^*w!vXjk2!miScCznf2-ibl827_r1dN1HFdD|dSa$|A$v`ujfpTQ( zktFB~8k^%t;|M<<{G3FolN%EVGm$i#?iqC%Lz#s8WOpXrK`7}{nBP;(5AqE(1-Gd% z4N8&c=9pM!qs-2+H{n@j(x>A#1LQ1^nV7R+wmYdd$DLW9>&`-bk#QS2>qhca=GUc8 zGw$ThN_{ci^6-4;quT<=5R?u3P_@vVU5|!)1={#U*yrK2OnJ{OM*b35>duK&<~6xq z4lD4p5>~-#!+$Q?#$4o0F7%bYHg%si!|Y?5`lNH_Mn-P@#wtvVT4gCvryN z)Xq7Utoj<#vKE~~o!Rtt#3%d3B~5bv)q3tlj}3o|U-n6C#7^3;O_VE%ce6XM9vOQ% zvvLc57sFQA2HRl=?1Wvg8}`6n*oPb`hx?HuV=A4seEQgkeqw(80CEqyW#75%KR5m6 zAwKDs$hY1h!pV8MzhKJP(yy4mA@g^T@5sa4AAzGFWAw)`kHZPr%((nX%u{e0&cIoa zIWUWE$FTy3bjQ&^PDqMr>a070_E!<@v9=q_`9Iy~X}DYBlybKIqVk0XK#P#G?p%4$d_>jOOd(Gwi506UdDX9{9LRDf& z;*qf_IUnSlO3ER+$soCBAuZ-YYV<LomXyS<6iD0AkLMxJw>0;1&S@FUvQQ4nLj|Y^m7p@n84^`6t3nvW;y!T3 zL^bZKLk*}2wV*cCfx1u+{iMFv$CNR!2AB;=Pa|jyO`s_>gXYizT9Wn)PN}<-*zZ|X zZ-t!J&<2vAugpia<+>fTH{>#>L%5DcTr%fOo4|b!i;N%#`VDd=Z9Qd-XCm`{A*z_s z5BYxnXmLG+lYm(zWwhsyXcsyoNBS3CFuOuG;_MDRpeOW#-p~j7Qug{me;DAA(}YVP zt3<&ES>kD#3%hHZ%`@S%_+pJCdJLqJE@pHh_uD0zc-lh zrcN?G!KwlBYAA6H!yN7@jm*-7D{aUeL70(7e0-yO%IKVnj9VGQZ6ba~hr5ZqF))@i zjDztY>o5i)bAnN($v3X^qF+vschw~PO!l0j?<4P3`8Jom=#r=G2Se6Wk5f&<&ve4c zTC*9{nVFul=;u+h&}%l#0jUdqPVk@WDaX4_WR=(FdCKea@xK7~g~(b2i@9F{OOde* zb2+Slm9WZFL0=7PU@iCSJaM)4#Jd4DA}a|p8Py`)PPNHXOWO=vaNCO9ZLl2z>#cTh zy%ScD&e42l?&5kk?18IXfQ^h2J?`Y)a;`mgBx8~lzQhhZtm znye$3N8y-9*78)PoK;1qs^}!+MY2YXbvnp90rHNLdFqo~pMukH2F`-y?>Wo_n5;k5 z&wJ!In5rSG8nUYD7d%zYb?iLq67gOpz4g)g3SqB?%ejW0*LhAi$Tw;| z{wsv*!(Ly)JZIkh7Jk_8!uWk=RL#s-ML^#gdPUYQ-6s4UkLXcWze|{Vp3K^PkF5VQ zb!F`;y3|B=O=L??S=z?HxS2VpIhpd5fHuV(ud8MBfgTX=LwE${+<$G#4)f4x`j~R{ zhm=v=q<!bhjQe&cCm#QoN=qi@1{b{}nf2&Z&gDbM|x z$o-SNe@7heLF9e#G@&2Xgsf;{|_&(-6 z)e$$1jnKMRPHJPFKW-LpOY*5Dw=I!*g0W+d3ih_rV{uwIYXhW5Sjiq9k7<9H0vLr;%ALRp zcihZ8b`$Oc`RhTJw4stN4#rnr@Oj(vt=Ja-Z4FtGNn3r^mdToj5U!&THmVUW;9uIT zc0AX1glR{ZfIJ!3OTxJZ<{59%$R9~}bZ=`t2Kf?`>sSywJPqpJ^31F zD?1>&1F}0HJMcV-$=Z=LchKW`&Axej!X-dfLipzF#Pb$6-UHYt@^+>S1^n_(KZP~99K)`&CYXX-U>e-=`W^0=Pp_|#vHn# zV>ctuQj)Gzked8zM?0UusCO2XhA?R(bTsGwIkQ%efxGCC4)^pR-*g!;Wley@lM$pY zmFImd-|m^X&kR{0D`bQ0kOOi;F31ge&>^pPu&SU2seIn<^zof4zqh0+0Ey`174-Jd z3wh&k9$6e!7_$fzC7d6ML2)PnC7~3QM#nOkWuY8MpH0rtE6;TW+$usPs0>x0D)wP; zm;OUF?yGZM1LRw`Cik_VHb`Hm4*6IY>TzEmKXNv51I&ipH-g5{g#2s@%^*Fakj+V7 z3$OHjsCoF6{#PsfwdT4FW?Rg5&>lKKN9Y8d3Eu^}LO1A+T@UC9y}a_9Ec8>b?*o0I zAB6GCQn8JEl=FM#T-=!_iOC(ARFxB_vQe*B!u_x(4*WDOMG^2i$torrTBrmQC! zk2wJ*g1KJGe8;5HVi;rR6NpRp8mfneyO)V^-%0sQ^I{4Z2)zSc?SHh0O@C~#C{d5 z=6(&xdW5yyuY>il0XD)W;*|H}X0EruR@i35CwlkeS3CMqm-`uQnY7Q_ao-W)PsWK@ zTY~>x$k~nk9$3b`qYzq>je4`-F%PI2jcz)+=N@W-}d&? z?{IyW>w9n?WNiHb=0kXd+kIqCQ$s0dl14MH9%KIp&-96R7-L7nNb|7pG@E|z^8S2E z{eI>hsz1lCsq1jV&kOGe<`hN{W(4ndL2_Z7T`H{Ovv=aKjui9gOC#Lisr zBmPJ61Vk_P){u72?ojWDPu7#X$Df~H*KqSo86Ug@^pDto*JX(Qi8ROX4$?nk{{_Ea z;V?jD&%`fgu&awWVW`fKRn1_;j z$2w!f zP2l-W;Q5*TqrAw;hrj&3@qAy3pYeJDpNs}f#NR~x(HBHULHx)WP|~OB!7P^t*ujUp zJZr`wd>&QUH$g9goTBJ)8HZjB2la;)b5QkA2_E zP)YKu6qLqI>Q!a>zGZwDiOZ?V`kbm9Zc?^3Qhp?l%5z@Kvo_R$x=;`5Lj!0Cji50!fu_(5nnMd{ z39Xht$F7XGBW=||)*`ayTG3&@~9gRHT>#o^&inT^r75jiU3f_{D-=*N8g z?!GiU&6K(DF!F4o1T71H9;Uo;#4+Bt{3ki4y~MHNUv)Iy13Iq!+w)%aFVB1RPx8&Q ziF{_pjXV~8%7P$FblA+DDQ`-+e>v+w+$7(N^Q%e!+kI<9{8J5mwnf}eGw!!X z+?)FCh`5(|BhJSUmv83BbaW6oGhimn^6iSyJMgV+uCLe~US6r|l%v^%n**{2VlL)9 zm~X_tCnCNCMmgFWA6rs(ExvdUQ9&+oC$5jm18ZR&ZtGzK{x)(ib1dd>3`%>%+GgxF!xq>I+h9BX@7n{vGv`q| zXqR@vF4*ncNBZ{BKJ7Ewr#-$yv}l1o{C<5DYjF4CZy)cQ#JrRCV+PLqKY$L>Z@WT& SRmRP%_M&Br6vER_fBz3UIZlKC literal 0 HcmV?d00001 diff --git a/tar_entities/map_dividers.psd b/tar_entities/map_dividers.psd new file mode 100644 index 0000000000000000000000000000000000000000..c1401910c17db6e7ab4ef8c3125432b7efa865e1 GIT binary patch literal 5823854 zcmeFa50qrrUElepXC#gO+LC1(LI{Iwg9RRIW~_gs$d;wCY{`)m6Qz;L`rhBS-o5YM&yBa;d$`(Bt^e8O{&`pP zcXzdO{abgv^TylmynELxnp-bi|K6GZH}}1~zJ2i5ZocKw6SH#CxjS zjxVgu?s@e1;?n9(kG}S*+4u+Ck)t=@dYY)Bls$1(j_Ppcnd-oh#URl_4 z-K($PJGcKeH}1LN;H&pvckspo*S>1cfqnb0zh>XTYxZBeci;Y-_8q)w-~K(rKUcl( zBKOtJEAvNhy6+8d9KM{p_1dc*Tw6PF(>2#T^2j5ve&jW;US4_Nn*9e49=vAXfol#N z*y|p#clEKQwb@7aF0H<7{Yf^S=M4+1b1TPAtQ}ik+EYL8?2+Y@Yp=cPs``c6Kf|Bv z_=)y~mR4Wg{EV-jTRwixqq8Tj+5hT&*Z2;apKFgfadKs`d291?*DNe99A8*kTXo0n z_a5hv-hFp_sQ2ZLANL-)x_0}+?k5-$@gBK)|6?Z>uDNevb@}AV+`{b-yLa+3-VwOHpS!(#{ikn!IqS@Bc5nZtLn{ljYs)M5FE1~?ZvFRu@5b}(IdrK0J>RhB zm2W?`G{5}F>eV-2bM_%;egkKoZQ%{GYYVS)M;_d}@A|#_Z@7Q|ft&VSchkNbzPWBH z`$nE*{gG!q$K9?q&d;vRdYFDyx z@!7T4&7L^1cx-OAZhqH1yfi;-R4v$>uQ~J3k>i`janqekt824Ma|?IA;dSmCuReBc z{-$deZag@<@93OEbKQ}>Hypk8+P$+2H(bAW;fA^Ej_yBj!~Xr(-_St1`|i=h$DaBP z%X25|_UWE_y(`Zz&$*{>-`7oZ*WNHUdvO24-h=xVj_%#Rf8pTX8~5LM-QI&oj~=|? z=nV&s&R=(QZSvlq^&FtdHW9pw}-o4nuwbxyHWbV3yd*|n_b+2>q+Uxe- zxbHRB?!EEo{QSYA3$J<2ksIbVUc&PVRWd-orhJ#b{<=xdH#f7JD= zv|q!4Yj4_r{YL%SykEnaRy_CM?9u}Z^RK&R<0sqr##Z{xO;!&Re{-YBu?>E6>pihs z6F2JYcn!VzOeP#!UR++edwG80b+5Vk8sE2vEoc1&Mm~5oeSZDB?qi+%M0rj7k#ejY zv{m!@{Nn5;{d_)m`&_(8i(-;5z%>b__A%gUQB3j$xF(_0J_cMZib=iz*CdqM$AGIv zG07L;nuJpO7;v>HCiwzflTd0O1FjauBwv7Q5=!l3z}2Fdu4YEew`1-K@m)IJ7WEs9CL0M{gx+Q)#aMKQ@2;F^R|`xtPw zC?@#=T$5009|Nuy#Ux*VYZ6NBW5Cs-nB)s^O+u-C47geplY9ZLNhr0C0auG+k}tqD z38nTi;A&A!@&&jiq0~MGTrG-8z5v%Gl-kFDt3@%%7ZTS+XBKHLEV-4LkGLh6%^J>| znl+vO(fz+(b^x_jM$ClRaIk|S?a4M z_1E>khZa}r+b?L2J$&rZ`VqGsTdR+$?_Ph-g_XC=9$&cs_IKRxzP0{h>j&Jsvb=os z@WR^36ZahXt~qz-CDpyvO113%J6i3j4p$4+T6MBIQ9o66(TVoa?pE_Ow=J$M4d2lv zM@}AFTsyYZJf*w;!sgM3?*5j)S2aKJ->siwX0Q9-nVx2^yZ@#2BM+Te zTiW;`+z)wVrM+?A1FLtpHx8{V9XfMkY3mn`UwDee-+v%rBoj^7`ffyMBkwpEs>6jeYO7#qr18wlaVJ zTbI_}__F&J>)&nr=eEW9J-+YXx4O92eE;4@7hiv0`|yh%UYK*s;@nzBxAJw^D(-#Y z-qnp(QGZ=O*!^3-?dq9mvwzhnHae3*1;USl7+*7}Wk?&u+@%{UbJ@DY@9T#uh z;oe*O_`2on{QUZRsP1t8?xnxjYEJ&W%D=QrQkG5pRG|MW-O?;L2J>|5RcHy%^J?;Ta$*M{F|p7YD@ zc2)P~f%nhO|6Jegy=#ziU&Eq)YWK6P|8%=%np^AdZJph|<~uug>=?4G-+TS;>uz{{ z^9;M2?+k0l%h zGpq@n?+xEj{k^4=i*?Pdf4KAAy7Z;_)w62J+}eJ3U-LHW4%oJG_sz3+jU}+p9WlWzU2$e*X#YXu7$3_4SVU8&8@mY?{1E&A7AZ$f%{+GRo=D!cZd7; zqwdQKPE}u3?HK&q!RM<>nhgg2!J)gWnZZ-lWzDT>-aXFU|HsvPs!Mk7-hJWjOD??d zlFKi?=;F&?{DMm^dBKan>P0Vl@rz#cRhM7V{2BhUe&g)_@3{2hi!Z(G(idKK*$c0{ z?6S+Qtp9h}mFtIGKFJddK3ZMA+x-CV+PUMZYUc7CJ1^fc`1h{o?jHQB9k;l5d7dj& zb*)C&s`+oGP>u>ntH^1}p&)s+U$De-Z zEuZ-1XaC^)4?np4E1&)sxBUE-pa0V2?>%??{a?BFgMa+qL*Mi9 z|J8l^0=Uad5(D(e(FV^=S|F-Y>_@7<) zit9h}Z+`Girxt(c|9kIu{K+?c%~Qwka$nu_i+}w2M=tuE_dIsxkNl^v{Ler1rNu#Y z?Ny)p%-4MWWc|3m`(1zh)bj2-ul|*%|C^Oter*1G@BgN!|LopBUHvZi)zzO~`qPJg z?QPe-?Du~9XK(qhU;5skdf>00xZ{1_a`(HQ{KTdEzVp~mUiT}Zf8)L9fBM7k`;*VQANZ9&{WDL!=dl-m z$7eqLH$V2Vw|?8Ne&(qc|G@4qUVZgXe}D61ee>{5{KgZ1=k~XM_!mF&=U@0I&GB=$ z-Tb~cAG@k~A8&4sz2ePF|M^Yte`^Ek6=#tA=pDaOKj{_CvG4i7kNxkLf9|b!edfcT zc<9G|=Xd|x+ZzJAfBl8u{a?TEsz*L|=RJc@eCanIz45QU{E{2K`1RlRwm)5c^xlvC z>hTv}_a}?XpL^Sv+)w*6AJ|*J{Cj?J`0L2~*5CY=Up@X3_u`Ly?r`(=Klr)t-T%N} zeeGXgad_~DTLtJRw+PTrZ55!O-XcJsJPYW1UU+Qby7$k$;o3Xi|1X9_q9diz2EXLZ}`lA`IfJH@}l4U%>Lhd?z`Xr zmGAt(kN#ZK>#y8<^3v1S|IVBK>hYI;=9Po$j(>CN@i(uzs`c|vfBIMdCs?@c2u9{Wo2YeDg2Vb@CV7A%E{Lp7_)|&ijD_e^~8$=qKO&y@P+Z{>kC% zo2>lyI^*lyd_i?|+Znd-m6#9~Vz99dpOltS_kU za_8fZxyG?l?Qy@}<~QrMD_e2*?OL3DY^8bpW5?#}+x6f2_T1u;`UGrO{R^sZA6q*5 z=@#6i>`#AdOO5MQgV>^E~&b{3? z-`)H@ujY4N^Qn60W%aYV|2yhCFB?4Pe#{@N-%ri{{qBRcLsmcMm1EDb{?knS`?$Cs z&2f9lEH147P99#JtA}*f4lf_7*`4`$H%@o!pS2!^+|xM;^$(ow``9mi$DaD}Rn-oh zx$nL1_06}ccHnIIz53^Sc=dRFiu+Obw;6=%oYAizw(`Ck2H z)1uG%-ulhvo{d8~|GF-<{wqHF->SK%KD_hz=J}eRW%+@J+Jx!?BdCVzkhOe-kr*>y5}5u$*LV%bR(Db z3vB#pha%7Vem&CBj&y$K#-rCqJUrjOtbM)X>`N9LM3^6=`KYfn4tntP@#UA(%svi#7(;kCyW z>rsOGjw?pK)%}gtjr`K}dv9NwJ+inkzcB)G@zG<8izDB253H^nd7itDEiJtL*!Zz;h{C%^6F+L}AgefOnjJ=>d?k1dTnUFdFiiwk!x&pos;^gjA74>!N^Tj#&a zh116Uqfc8StA7b@re|18+_QI{{A=12IqOo|Wc)@x-|`n9{oWnVUhswb1?xZSwc_FCGl;wS_+aqt zt@U4b==$IKQ__xob*K8<|5yDfss8^={r~#NI;pR0K3rV_wnWVlZ$Tn z)g9Eli!+~;c2~#U$L4uAOSkB1-CDKK+&}!J~M14XfLi9(EsNPAt6L zVd)eQ&;9Os>fiK5#}`%~yw_FZH8<;WYu!cb-+g_LOE@=i;Xb9zE;jeOZ#19nYAkPE zdgJ2D)<2Nc4{!dw{^VPmKd*o9@ZU2(LiYRLwz4+odr!l+Hug{ZUN_$J+5c|*455FA zKilgA|JJqR@N(S;&;RdMm+yLmdjs_^u4c84cH?7cGcR!G{LFDs|!S1@cY}CuMzuu^m>igDX+{<6Fw7hid(WCC8 zNi#)XZ?Sw1U%jc}9okg&x=}PU&l{iVH_Af&{dxx4^L?s%4X3KwO1x2NhZVKHZ`!JQ z{hkiLbI(~LHuo;A?QwTBrQq%E#IEk%qYdB=*8tA`UVE96`(orWrONHI-&D(bG|D~a z?)vtfOGlSG9d5L|o!>m7xlCbr%w_A>B+M=zs*fGHr_Q8}Pv{#ZYU5v*O7$o1g8zH> zpzQx>0q_2J+5gc3%KrVo`{T3#T7WxGy}%8&mHXcX)vk9}^@p#=2Rq!TWHtDQ?&3QB zg#+!NfPOIS_Duz-uK+3jzjr?|c!Iw$a0ys^UvQrc=nYf@*9Pbfbv2+jkPCGiXnMm1 z?!2+&|8|X>H4Z;T^3TR;G$bI=j;Um948!xbmsk7;0SG_<0uX=z1Rwwb2tWV=5P-mT zC-B+FpL)0W@A0Rq&sJZ4Twd|{_@Mf7^%e6mU#XrlAM+HC313_5IKxM@MEKCZLcNE! zLEE5hj1!<=&@aYY#rk(>8?+7D#yA1`1^r^YRZuhO7xWAI#W(@_1^r^YRgf3-3;G59 zVw?c|f_^dHD##1^1^t44F;0MfLBAMp732l|f__227$-o#pkIu)3i5(}LBF71j1!<= z&@aYY1$jZgpkL50#tG0b=ojOyg1n$#&@bp0;{@mz^o#LUL0-@==oj>haRT%U`o(yw zATQ__^b7jMI057|#dxbAFX$Ka3;M-40r~~~V!Tz57xWAI1^r^20R4h~ zG2SZ33;G59f_^bhfPO*07;hEi1^t44LBAL$K);}0jJFE%f__22pkIs=pkL50##;q> zLBF71&@aXb&@bp0h@m4`z&@bp0^owx<^b7jMc&i{U=oj=0 z`o%Z_`UU-Byj74F^b7h0{bHN|{epfm-YUoo`UU-helbpfenGz&Zx!SP{epf$zZfS# zzo1`?w+ixtenG#WUyKu=U(hecTLpPRzo1{xFUASbFX$KJt%AIuU(he;7vluz7xatq zRzY6SFX$Kai*W+<3;M-)s~|7v7xWAI#W(@_1^r^YRgf3-3;G59Vw?c|f_^dHD##1^ z1^t44F;0MfLBAMp732l|f__227$-o#pkIu)3i5(}LBF71j1!<=&@aYY1$jZgpkL50 z#tG0b=ojOyg1n$#&@bp0;{@mz^o#LUL0-@==oj>haRT%U`o(ywATQ__^b7jMI057%H8m(9m~x%%wmPrY0G_xMxQXR94M_w4)$_umh@|9)`zU;TCcy|e#Qk5Tt+ zJdb*ex{u@62`EPDKKQ|}CZO7gx{vll`=R~Ne^iZ7_fbEnAJh-(hpG|kKI#YcgZh!D ze(ZT>F!NjYT>Qmq=5-(X($f=s{gnYnz{+Yd+o_f8{QcEeop-9*x&I%3@|n|vNpC&p z`pKk^?LI37 zz)>iiXP@q$k29{5SM{l=9i=-v^?(CAIDjK?6ba`;t~d4#xfxf~s`|u}1IIsB07pa~ za5S8oXMTIaGsbSQs;-`y^i-1rCyoH93RK%4j+-I8XTtNv?nn9RyqQT)G&xWdMBo6Y z?SNmbc6Fm`(pz7uc2%N|g`b84E8x&_0v|~0-Z61`8m;6USdHRv)3_rTfz!bO9D(C( zIM0c4?H(JfWKUNdsi$ipWR1H+Xd*%*mA>11)vbmtM~X@aA!{TaLN=jiMMkRp{Bp&S zIzJ&~r2~W}A{3Q^4O@;B`3WH_9Ux>AdL}YIpQ$)f=O=`$bb!!AgrZWgVat&sKOtnL z1B7fsUyjVrXDg1>`3WH_9UwFjp{NvW*m9)EPY7A*03n;u(~EzQvdwiRrmUe1HBhl0Y_v4a3+D%H}!Vay}a&^9M~=#XfLe- zj>rJuSa5cJv41|!xK3WxJLv^4z75>RfucMD2RQe*-q<(fW?UDq>V5M#a6BD>BLV<8 z8qROe+^k0s12I=UIn#5eykU}ZpojqA6b;AiY5t+{eQ72Lz3Q2np8MntpOgbdc?3?; zaGoCQdRCO9@Q!w09_$)$VBli~aKv7Sz%k&6f)w7oWt63~bIaJl%$nHSP|fi3mmIUc;6nMeT!-H4+aYo6xh7`T6XCBXxd4$VvwYO++Xv z1sk>;De@CSRysh)CgiM@QRA$QBa9;jJqTIp0HKKpMWtZFmLo-eLdZ%72-$?tR(d}_ zU}hAh9XMIx^i4gqm7>f62RI2fSbUfMGep#!A_9Pu2@bwX|M?(hMiFwr$pi=AWmwy} z{RNAsDt<;0bLSckzDrT%aC!pgoJw8sU5Z^3P;&xj6Qr)91csMaqI47+E&vBOu^L&d zm4U^P!$mVV8Lf-6Ae5OS%u8WVEKwAT+gvq5?C; z;pZHJ1K3*mSq>q5 zmpVVOIa=ueq0EG$vMj~n=V}74DHy=k%Fl8L;kz8Y&ZxZx38kY51>j_b(>J?NI*M`* z9N^%)Jg*J5?nX428AT-r&a}b7cj-T?L+L0&4mg?M;Jd_ksRy3}pE~eeieQa|gYQyQ zIeeGE!FTCD3B*2$eR31*lOh4TLlmR8lG>^$f%qVb3grc%6#o^~_0QFk0kONL8IQTB{UFyN-_H??tHv_&)5v-AL@Lh^3 zhwlXJDzN8}+HDuxSa_M1Be(e3yYmp2IOmY>rm0KqxbzsQfI)IEbB7 z=O-<}%Fh%+_%3yRVso_80YaGxMdfEX#zE|yIzMR%R(_@s!gs0j6Pu%z4iL&rC@Me8 zF%Dwq)cHwEu<|p75WY*DpV%C&bbwH1LQ(lyj&Tq>r_N7Wf|Z{sgz#OCUc=d5gM`vi zgaUA~!s(lrC>=$C1P*ZUUHVlgrw1q0c;;(ouvQa5BNccZu&(4?ef2 z)7|awB9)G(2OJnoWPF#R%Hg{N4!%qONnnygFj$TPJJvK~t-KFTIm3x%!H!y zvmE0fc21q2v;-?ZQwX7S^p0PrTMPS+it~yhhKhpIH!o2-iUJ87;NZLTt4{D;3e^d4 zrVkFjOaHYPC>=$}0Vfk2e3$qx_26^h>fuPG6BU_HM#YI(Q{D{`XB7`8c zz9=iPB}4^gio*|sWMF~jFmGXNO^ugB2;ZgNvId)@m4Xn;OeiWpQyhL6Bz1nm*2>Rv z2;sZb`H9WZN(TsKCKQ#QDGomjk~%+OYvpG-gz#PJ{KV#Hr2~XA6N<{u6o(%MNu8gt zweqtZLijFqeqwX9(g8x52}R{+io*|sq|Q&+TKQQHA$*tK>!(mUickPfRyck05~ZUk z=fD9DzDvLA1mC6HbRXZPh`CLHgYVM6767HA2sz+nf`ji8-=!XW4lD^pTPcDy5)Qsg zQRVPm0terv|0EFmq&Nu#&h~*LN+7;V-~^^j(N>Br8WP~(yVP60CAtd535Iu{_GS{4 z*R;0MD2h;2CZst0Fi2{H2W+jW@p1^^yVUuK&C$v-2xTS|m7ggNKMayOKVfU-XE}uM zUF!VA=4hn@gfbI~%Fh&s9|lRCpRl#^vm8SBF1_QZMF|%B4l)BrBxX9CzIln#QIvDw z00-ZtUv+}gQEs|F03Y(sdPL&;K1OCC%#Kj3>5{ZZ(gEw6a^AEz`=Lv zSDoOy^k3JCw$lFalA^7Qwus`p#CI9K#%s9GdUyX|SL0j&R!;`*9Ch1ppnp}8m$;*f z?-Jjo9(-<3r@PBXs;g(h--r~UEIWoRWah`+k5;*uS{U?E?=njLGGqAX^ISB-g zI78lIa6}0Vp9SE%6z2rM0ZtX!t?*syCHF;{6{E5lLe?m4BB7|Bo#ODrAQ@O@Hypf# ztu-}X4k3J(IzO>FTIm3x%!H!yGsWSDK~m=@Y_0q(hY-F?ouAkot#p7;W6@1*9Yr|@4sh^Y`c)_RE``klIMW9Q z-=%+{1WHE{a=^(12j3;WOFj4;SQ3i1Qk*|V!ohbbsvN#c;NZLTp9G?G6z4g>**imSQm7nDh!gs0j6Pu%z4iL&rC@Mcw z9DW!ib$-Iu%Fl8L;k)#XqZTDt>^sN|9FdsmaQfyYN=H%7fdd?Tmwwd=zDr^A0M7Km z!FTDu76YZD2sz+nf`jieY;DBMC{B@p^ZdiXcPXkIzDwZXyY!y~ZZT`2sGQynfY4T2 zqr0Uv08s+*T>>XCWs1|&zg0!E)G7fEzDvF2KG9Ve6_dQCm6b&iipqp?jDy%Y_3pH^ z1ZyHcg%G|=ouAkott^93Wiop!Xr%*$G82l*&vJ}| z*g186(h{uvOd*8tQs*Z&M=Kp5l$lUeewJe##LlVnla^rRX9^*FmpVVOIa=ueq0EG$ z^0OS{Aa+ijpR@!kKT`6@1*9Yuiz4sh^Y`c)?=9fi#UIMW9Q z-=%*M0ZK;^a=^(12j3;WOFj6E?^5pl;~jaxcNrWGL|Z8;IdG;3&eMZk&x$c3?^dZz zH9)W^&N_etoI!NA66FEkC2#_tI?z`7w@OSEp5nXIzLBELicvKkLe}OKiG-pup&a8N zcFw?7KW@~gp2DUjSQGgvgz#PJ{KV#Hr2~XA6N<{ua*Tu6Idy*060H18A%yQz=O;Et zD;*$|nNU=ImSY^m&Z+a0mSE*)3L$)#-bvhaYhmB9P+n2QP*HID<|Rr;Q6PZ>9DJ94 z)d@;Rd0FR-3#2MU&U?-0@S_9=iYQNkgYVLR5eG^~5puxE1P9+GzDqs$eA<7VE51vS zkCAZjU5YA)?-DrpF8!x6rRWYt$qk>&0Y{u6Z!tKc1me2{PGAx;LFu@wf@+W|zDvF2 zz9_R|R5nA%nqp2Q6ji-a9DW!i1B(~kI7&S!3|nhzyc|OKE_HrlbF|U{LYWCgq5mpVVOIa=ueq0EG$@-xNZhe1;3Cv2_!EQb)jOP!zC9IbSKP-a3= z`I+MI!yu{i6Sh`&M*;`#Jo=0keauPumOyBD5BQ67N<9JgR7&~>^U zY4jGpOaG2F&6yS2O5nt6D}xCb*d(cKa-x!rcHQpj1G+>1PI;-i!(9V@9f4daqsigB z)LXtKx(cJJB(G_0pimT{s0y9p@WUV(*yd$;{sCKSYP=jm_%3yRVso^z3__U+MdfFT z!w-X`&QI7{`B@Gje3v>uu{m1l0HMr;qVhAv;fFy|=O=8f{49qMzDw^FphXE5`wlV# zM zmO&^pp{V>U$2f?cQ|Biw!OG7RLijFqeqwX9(g8x52}R{+ImSWkoH{>g308il5W;t< z^Anq+l@1WfOeiWp%P|gO=hXR0OR(}Yg%G|=ouAkot#p7;W=$t zcz5S*U63UlC`ur{OW*`1A77waw-)vt3*{9>3>5{ZZ(gEw6a^AEz`=LvSDm1A6dDlVOdlM4 zm-sHj*LV&0S$7w!cOnnpWe3Oe2M6CJzDqs$jPFuhKK=Z{!FMUD9KK87;Jfsn1eT&Z z6r+pYor4f%S|iw7tmTLj*!@gAdJCoFS!YwgnXnzva%9WFcd3`$7iCtA%4P^z0i8%_ z!a~;_Z%c9bVUP?gUc?|dVOuPx_2IkJ`H9WZN(TsKCNyEq>gH#P!w-X`&QI7{mzI@7 z2;Zg7Pi&4>IzT8hp{V>!arj}7)cFZpD?iI2gzr-4CpJeb9UzpMP*i@VIQ%e3>imSQ zm7nDh!gs0j6Pu%z4iL&rC@Mcw9DW!ib$-Iu%Fl8L;k)!+wVG}%?0YQ^uP9=uC^&ud z5~ZUk=fD9DzDscQtg z=te3Xoqg`fnJ{t{<=g*2e3#-pC(>FNtvlpE|NctDMX%fc*MaX+Y}isORv2;sZ*&Qlg8SnNB<3>=Y|>2UhyB}zw8&Vd6Qe3yRJ2};N5Q#yXK3jMCU>syB( zUS?b%6>uQFOaFx`C>=$}0Vfk2e3$qx_2BdKt8_e7Raei1k*j>%{s-c_6jcu2C2;Uv z`cEvjn6*%hyoCdRpHZCXmI6nVz)^`~S3iQa(7#hbv(g4Qz^Nj;6~0ToLw5Xwv_DnH9H4r1rj`AJK#@-u}H zzDu2-*c`2NfKX;aQTbVpaS%JF&QDr`m7ghu@LlTs#O7$F1B5aYiptM&jDy%Yb$-$k zto%$Ngzr-4CpJeb9UzpMP*i@FV;scJsq>STVC82DA$*tK%Uz2SEcU&~2{LO^b$~2sTCO_^K-OyW*{$#CPdmD6uKJL+q1NWuH9vzYctt zVfo_r7c63*6!Nii4+r0+IM3Psf<+9Q{vDk*$*_sg308il5W;t<^Anq+l@1WfOeiWp%P|gO=hXR0OR(}Yg%G|= z?`%`LwXpA4D6c4Ds3IC1V(0~AE`rzQZ^k3nE(ouvQa5BNc zcNvy1Zhyfd_DPwK=ehylyA)Lp-z9MHUHVS~OVJ&Q(M9jhLCvr*a74&$F*u?G;=2S+ zU=k9ir+=%8RN*PUOTFJ~QD()cY=)3E#hgeeDicy1ei$V64yv%VrpC)5gzr-4CpJeb z9UzpMP*i@VIQ%e3>imSQm7nDh!gs0j6Pu%z4iL&rC@Mcw9DW!ib$-Iu%Fl8L;k(rN ziOtbU2MA>*6qTPT4nGW%IzM4+ou9C^^0OR5 z_%6Lyt)^QG`(BH~D~cE@3Qpg=MCmBXIdFi3?=s|2MCm9(2RPFP2j8WC5dpqS5puxE z1P9+GzDqs$9FR;S0~Ns<2?yV$sB-u&f%8c{Chkg=Z`>ua<>0$S>9`3>M-eOD-Fcg# z?^5)mq6CKZUAQ3qJLNUS5;(xYcX?VwU7~R?s-E+j*3>J6CL$CSm?;iF43dG(bA~4; zu=SmyjedA5hY-F??d!tkXw`TKWhNArpD7MM43auOVQb}QIfU?C>iop!Xr%*$G82l* z&lHCr21%Wtu(k5D976amy)$Y>2^RYfPXk9JW;&d{d5O|dlyl$!2j8V%b%N4S*gSwU zeQ@wy`Y%*L=_o=DIGNz!yTo^?2cH9%RGn)VWC?0ce3zoi;kyJ5zDxf};1;tMijg<( z20&;lt5rC3mt!*{8d+$XvUqhgZRw6d}&LQ(Nm zj&Tq>r(TIqORy&LQwZU^)cJ|c(aJIiWhNArpXC?_v2*JDq$ODSnL-HPrOr=mj#fHA zC^Mm`{4B>fh@DgCCoRFs&lE!VE_HrlbF|U{LYWCgKu5Xwv_DnH9H4r1rj`AJK#@-u}HzDw`ru0;tJ`(ES(9FdsmaQfyYN=H#3fdd?T zm-sFN>Mif4MZ-@7_%21vZ3-NGm;Ut*C>=$}0Vfk2e3$qx_26?LbR(6Hrw1GuOk{kQ zqRK^D3tfYIX6BrF5_v`c#!SP7#argrf$vgCz)BG;25WU-JD;NLljk0e$cIs7lKbV1 zJQAg22M2Hj4&d~F-2UHCqQE2(529o7fUYVz67<)U9%igV;F(yAomNoUrGl z^c8%UddpO7j#dgnC^Ml6t3WqR%P|gO=hXR0ORz44OCf~sQs*Z&M=Kp5l$lUeewJe# z#LlVnla^rRX9^*Fm)`N~bZcSXQE^^T#86Ri`sO7{M^PYw0~~ype$@#|$LUi#ezFSv zuDt78haX;MTy_?4Aihigl^G}P5)w71f2)dAH7CAHz2v?qvtm>>L&$e- zJ^EQDkx*17q&WOANa`I_VQWo|mqQ5OrOr=mj#fHAC^Mm`{7iB9VUX1M30o^a%OQmC zQs*Z&M=Kp5l$lUeex^A5Fi7hBgsqjIR2%1kIKKT{lj7$kLm!q&>q zatPtO)cJ|c(MkshWhNArpD7MM43auOVQb}QIfU?Cj$Y}}3OdrQg?+EZ;T1&;6$Phn zUZQjqi?&jn>PEuBcPXmemhmLwyYz3&gzwTCPDCQ<-y^3vvjYxr1|lCu4VPX02);{E zkbwi7*lvaIQg8W|=qeN^7~ye5Ueo%NRTQD9z)W%YVUP@Lo`XSh!nRmW>%(`c^Anq+ zm1PjhOlZQI)ji=%arj}7)cFZp>(a7v2;sZb`H9WZN(TsKCKQ#QDGomjk~%+OYvpG- zgz#N@$5D$CEcP8_298L~bU1zU5~ZUk=fD9DzDvLA1mC5wc>rhn;NZLTU#No8QG^_D zGQq)jiSJSmKI6L-*XusNaPVD*v(OrH>XCWs2|8zf}dkOMjepm&zv^2cyD{*RB z5ukJwAqSjHaPVE?yVQfv-9uVK(v1J>A|jN#TZezRAFWmJG}r0ID_bJB}yQ^OW*|J0jH;btHfrjj|4dQF7=jg zMVS?&YC43hdD}!nQJGMVaS%IaV5^_usT3{2n#fNfgzr-4CpJeb9UzpMP*i@FV;scJ zsq>STVC82DA$*rQKe0Jl=>Vb3grf4Z9OEE%PMx2$1S>yN2;sZ*PU5Cp3;T|R@`@sc zih|QOFHt&*0tp=8;JXa%%|7F5ZWX%IyP$HImK-S33OJeI;Jfr+#DUULgdA`(!NGTl z?@|vwKfg-HQ&n~KOc=TPxU&5Z#CIvG9KK87;Jfsn=ar&66sIKNrksKqxbzsQgTE_+gOL`3YMqKg%J6?^5R{Hb*NRAe5O)qHQid+_c~c#QN&PDaQfyYN=H%7fdd?Tm)k>kh_(a7v2;sZb`H9WZN(TsKCKQ#QDGomjk~%+O zYvpG-gz#N@$5D$CEcP8_298L~bU1zU5~ZUk=fD9DzRS?w?3fuvB?r#5!NGTl?=pOi zS9buuy@l^md;&;;gYPmdU)=tJMeLJ81$OS?;JXx64&Nnk@Ll>(0#Q1OIu4xe14ooV ze3!rpOqt@l^lw#x@6sQq_%8d+CgQuacx@V?s7xrwIEbAyuqY5a=Y%~crLW+-)cd7l zbF^{=LYWCoSOta)Mut_h9OEE%PMx2$1nWY$6hineb$()Vw9)}WnF&SZXF0|}?3_A3 zX$e+-rVzq+sq+(?qm>R2%1kIKKg%%=V&~NPNlUQuGldYoOP!zC9IbSKP-a3=`B{!} z5Id*NPg;VNpDBd!UE;eG%M*cf?&0*!OO%eHKmrFi_%8jblhcD4_tC!!-Ra%XXBY?^ zC{CJylL-#KOaCGQl#U|gfRhOhzDsP}BpiH~qRQdB1P;DS|9Kut z$L*tZ6tNOMnJ=XQh!Pmy3k}_&f2X`=rw8BwC)VkS?^63liZUxkG zaS%IaV5^_uLR?ycHIbh}2;Zg7Pi&4>IzT8hp{V>U$2f?cQ|Biw!OG7RLijFqeqwX9 z(g8x52}R{+ImSWkoH{>g308il5W;uqol#4-7WN$r{tH!7tc545CtEdS*!$Aml=oD{D~ebx1P;DSe3yFg*%cPwX)rQS z5v-AL@Lh_6jPDXS_%8h?fhZlfkJ3@ZigyE`CY?)Z0HOqj&wJ1v`gbZw)gA7t_;m!P zJVb3grf2@#o>oRQs*aZt^6#95WY*D zpV%C&bbwH1LQ(md;_$;Dsq+)IR(_U42;Zg7Pi&4>IzT8hp{V>!arj}7)cFZpD?iI2 zgzs|n>XKH;v8%3$6>xyl_jcQvsbh^8JL8Q|0^ne3{iHz@3R5^T?z`=LvKM5>FcNnak zfz5TAlR)5zGvqA>N0dN(m%s^3nd0>HZ(a7v2;sZb`H9WZ zN(TsKCKQ#QDGomjk~%+OYvpG-gz#Ngyd|C!4V}8-z9JYQ>JCuC(pfp z6yK#@a=!)rh*1g4&uPuRZW^JeOen`Vh@CUA)N*(sG%dlJ$WI}J?^5R{Hb*O0Ae5O< zRDPCY9K_D4^OKffuu{m1l0HMr;qVlsG;~;iUou9M>D?d{R;k(rNiOtbU z2MA>*6qTRl7zeR)>inc7SoxVk2;Zg7Pi&4>IzT8hp{V>U$2f?cQ|Biw!OG7RLMR=* z%QMrhg?+E$;T1&;6$PhnUZQjq1rj*G!FTCbo#49^HV@!T9~^v__%6e1jE1|yclQr= z-Pi?Sb#>s*u<3>a{d;5#`8%rkF7aLJ!RNq|P_&ieR5ub1zDseQgYObJ_%8h?fm_U4 zC@QCS16s6|)v;=D+KZOv!OP!zC9IbSKP-a3=`B{!}5Id*NPg;VNpDBd!UF!VA=4hn@ zgfbI~%Fl9)gV;HBe$o=G{7fN)@6tQnm~JiXI~K|-iWn*iPT#yl=_m>$aDapF(yuzf zcPVThz?nWc_%8hys%(nx5c}j**(cBauLIvDzDqs$jPFvez4VSeL^?h3U5fJ@e3!t% zcj-R~++x;3F-Yj$00?cRH4t4&0}v%JycQkZp?{}>W~B{qfKx?wD}0xF$^E8T4x<8= zcWb5W79*ju?^5R{Hb*OwAe5OKu5Xwv_DnC;kei$Tme!|wu&vFRiyVUuK&CyB+2xTS|m7ggNKMayOKVfU- zXE}uMUF!VA=4hn@gfbI~%Fh&s9|lRCpRl#^vm8SBF1?q#7A08hd#Ms|L}I4H>6@1* z9Yr|@4sh^Y`c)?=9p$pZ8CT`25IOIf!{J8>4ix#A0tervf1w0QM-g(s$pi=ACB92N z_>AvT?)~E(dBArW9K1wZDJnT|rU=f{gI&*x&%oi6hf?H&zzHNL4M3ceC&3Zr0pBHX z0-ri?diu9YY_|GHfP?Q+Z~2z!DvZikUelThEs9W7CZst0Fi2{H2W+jW@p1^^yVUuK z&C$v-2xTS|m7ggNKMayOKVfU-XE}uMUF!VA=4hn@gfbI~%Fh&s9|lRCpRl#^vm8SB zF1?euMF|%B4l)BrBxX9CzIln#QIvDw00-ZtUv+}gQC`+Liop!XypooG82l*&vJ}|*g186(h{uvOd*8tQs*Z&M=Kp5 zl$lUeewJe##LlVnla^rRX9^*FmpVVOIa=ueq0EG$^0OS{Aa+ijpR@!kKT`Z0dMG-?q!RecqC>=$C1P*ZU zU52cUDe^&FkWdW>&AeMd4L@h4G&y{i{zU{R9Yx3iClefem-sIA;Bz1zB9)G(2OJnY zM}B%R^C3Ns=6)HzGfO;)qC5fzIBp3}pzDM+dH62HhAm0f!e9XmYy;Drb?}P(ItHSW zg*$SB(Qg;87%H7m_3uBJDv{hmO%C6s-tw&|vtm@JL&%z9P9zi+nB^D;v2zBt`Wc=r z(Gq;aEu$YbQwZU^)cJ|c(MkshWhNArpXC?_v2*JDq$ODSnL-HPrOr=mj#fHAC^Mm` z{4B>fh@DgCCoRFs&lE!VF1;5yrdtd9j)n4yB8G~B(>E_sI*I}b9N^%)^s7$rT?(5A zaHbCqzDxi0CMX?6$N?u49DJAfF7@DZ;9B15>X|S(?=}v@b94?2o+IPC6jcu2C2;Uv z`cDG4n6)ri00V0jo8;hU6z6iKz!4?TyP&eU!Vle{f3+!atWkPej%+#jF7=Z8O|u+E z1uXB@n(p0#grWj7#o>oRQZG@5trfcE5W;t<^Anq+l}HfEOeiWpQyhL6Bz1nm*2>Rv z2;sZb`H9WZN(TsKCKQ#QDGomjk~%+OYvpG-gz#PJ{KV#Hr2~XA6N<{u6o(%MNu8gt zweqtZLijFqeqwX9(g8x52}R{+io*|sq|Q&+TKQQHA$*tKg%U*x7W-bR1RRl=>2Uhy zB}zw8&Vd6Qe3zIR)v}hreJN%}WS}{k9KK8cS^$)eBIJOR2@bwXe3yFgIS{O9E5-R^ zBpiH~qROGI1Ww4k=Jr;3{^8)eM6fszMc%ttE^1C|AUergDtdXi0$^qoimSQm7nDh!gs0j6Pu%z4iL&rC@Mcw9DW!ib$-Iu%Fl8L;k)$C;T0uV>^sN|9Fdsm zaQfyYN=H%7fdd?Tmwwd=N=Kmq0nYTn!FTDuPz9x<2sz+nf`jieY;DBMC{B@p^ZdiX zcPXkIzDwZXyY!y~mZCcpCD*%i5TZ>XCWs0`azg0!5@D$&rUUI($ z{fJQs%g<@W?4}Wl%7k)^gV;Is?zFT7Ya%~|5WY*DpV%C&T!Bz#LQ(lyj&Tq>r_N7W zf|Z{sgz#PJ{KV#Hr2~XA6N<{ua*Tu6Idy*060H18A%yQz=O;EtD;*$|nNU=ImSY^m z&Z+a0mSE*)3L$)#IzO>FTIm3x%!H!yvmE0fc21q2v;-?ZQwZU^^j@`^ZY}J46%Vf{ zVyGxMee)8fqbQKT0S>;)9P&Ywj!+E<&AeMd4L@h4SVZw%`WF$PbQB>6oJ?@=UE;gc zgU^9@h*UbB9&ljr92wuGsB-u&frIbTf4Y+75DbB3b#Ad6H1UUFEwQr;-vtsb0g8CQ%A!~{`kx*17lw%yk&KcP1$Bp{bQ`ocwYa%~| z5WY*DpV%C&bbwH1LQ(lyj&Tq>r_N7Wf|Z{sgz#PJ{KV#Hr2~XA6N<{ua*Tu6Idy*0 z60H18A%ySJJHeT5E$llM$}5T(Dhf{DyhQ0J3M6oVgYVL>Izj0;eM-kqR-xaOcYW*d z!^@1z&H@g^cj>=~1Er$~IpAc1gYOdGr5=0^T=s+SQk?2W!ohbbsvN#c;NZLTpIB@$ zYoVx|;S(f&MscEB3LH@a@m&HZFbRq8(!W&&zDs|cc9+U;nyWA>CV98kq-{}zqB0@H z;fFyouz1mpqtuhau(hVf%OQmCQg2y<&C$v-2xTS|m7ggNKMayOKVfU-XE}uMUF!VA z=4hn@gfbI~%Fh&s9|lRCpRl#^vm8SBE_HrlbF|U{LYWCgq5 zmpVVOIa=ueq0EG$@-xNZhe1;3Cv2_!EQb)jOYh~bMF|%BUgQKEk(lXl`sO7{M^Vm! z0~~ype$~n8L5h43-z8MLS7}dlE2YWdyYw$2K*6qTPT4nGW%IzM4+_ z?-Jjo9(=}kDXvL=e&OJ|6jcu2C2;Uv`cDE&(H)8*JMYdx&9E?VwvQ-Nlt6r!zzIy5 z;=A;3Re|r)AE(`=@rksKqxbzsQfI)IEbB7=O-<} z%Fh%+_%6Lyt)^QG`(DMvD~cE@3Qpg=MCm9BByfO(@6xY2!FMT_6{eUOk%8uDa`-O& ziwICUijV_NCOG&m@m=b{=k6k&_Ex0Q@$`TLgXhTjE=85YcL^MPm;O)WNe;naISOpb zl5Q>J6$6pW?@^r0V=eS=c-L&$036_)b2TTvOTFb=QD()cP=}B;#hge;oHK+s4=u+y zh@CUA)z5I_SXzQLk)J{c-=)q^Y>rksKqxbzsQfI)IEbB7=O-<}%Fh%+_%3yRVso_8 z0YaGxMdfEX#zE|yIzMR%R(_@s!gq=9vhT2My3&zX9H0GdsrJoFl#Zf60tYzwE<<~> zc>8Vso^z3__U+ zMdfFT!w-X`&QI7{`B@Gje3v>uu{m1l0HMr;qVhAv;fFy|=O=8f{49qMzDu2-*c`2N zfKX;aQTdtT@WUXf^AomKewITB-=)q^Y>rksKqxbzsQgTE_+gOL`3YMqKg%J6?{aju zv%Tu5D8XXii=2QX5;Gl6-@HWWD9Sl-fP?SSuR6hZDHIvNnLar9F8zxLP&$f`15PG5 z_%88X>cQvsbh^7-5^be8e~g5K?^0Abe3!t%cj-R~#FHq_bAYpb;D{0!)_388^zW31 zDAO9Hr{&0&gYQyr`IhJ^6ek$nbFtA|yrwl1S`?wEz)W%YVUP@Lp5w+*>bQZe6}sgR z!gs0j6Pu%zWf00tC@Mcw9DW!ib$-Iu%Fl8L;k(rNiOtbU2MA>*6qTPT4nGW%IzM4+ z=#X2F|p>!FTDu z7NZcsB5KZ%nsied0KUtxwGlI;$PVB<|8VeKit`+Nm%zby=|2f9MRzDlu6O64W>^?F z+eZc}N+7;V-~^^j@m>12s=#;YkJIi_`J()YQ3(qnYleB#2t{Q=ImSWkoO*X!T7or^ zpF#-VrQWgzo1>L05Xwv_DnH9H4r1rj`AJK#@-u}HzDu2-*c`2NfKX;aQTbVpaS%JF z&QDr`m7ghu@LlTs#O7$F1B5aYiptM&jDy%Yb$-$kto%$Ngzr-4CpJeb9UzpMP*i@F zV;scJsq>STVC82DA$*tKt5(ykg?+E$;T1&;6$PhnUZQjq1rj*G!FTCbouG6SHV@!T z9~^v_{zU{R9Yx3iClefem-sIA;B$8oPkSp;>3Dj;fx&ZRe3zoi;kyJ5zDxf}AWBDZ zo&%ii14ooVe3!rpOhTfq^lz1zDm=w^seL0wnH7U)HSIp~o=I8=SyRl3grYK`9OEE% z&cIeb*f}TcIVpVw-=)q^Y>rksKqxbz39Eqnj5G4ca*Tu6Idy*0608g1QV8L@)cJ|c z(MkshWhOL|irtJE_sI*I}b9N^%) z4DHR1(os}$;7l7Fe3zXu=Jxz~Q*?*eC#T9jdG3E5_%88X>cMAMpnT_+_%21TM#8~& zDb927T>=N+rT-)lrQ`NdI*M5FTzET7=TaJgD1rDcffJa7#CPf6ssi7oKTg}l@y(gf zrnw5El7M&XJ6j!1&Y}oKWkQO>4})Z2@#1ix7q-^acsYddUFt1susK>;2BFM^qVhAv z;fFy|=O=8f{49qMzDu2-*c`2NfKX;aQTdtT@WUXf^AomKewITB-=)q^Y>rksKqxbz zsQgTE_+gOL`3YMqKg%J6?^5R{Hb*NRAe5O6oJ?@=UE;gcgU{{hbT=*0R*Lh-NI3W|MU}&M2^@Tv{!6CWr4*Z~2z!DikLe-E*BM)PV2*Wsq+(?qm^Y4%1mg&n$E_sI*M`* z9N^%)4DHR1(ouvCaHb6ozDxi0CipHz$N?u49DJAfF7@DZdph0Sn;}x^c&g&SU?StY z6jcu2C2;Uv`cDE&(H#aWXJBz-Gb{|8?IQyfB@o{wZ~{}N_%8ihRp7hy$7wfBit-~y zB`k!jiQ-Ko6qO0(7zeR)23Ca*FNCHgSQGgvgz#PJEo-njTDbzD%!H!yvmE0fc21q2 zv;-?ZQwZU^)cJ|c(MkshWhNArpXC?_v2*JDq$ODSnL-HPrOr=mj#fHAC^Mm`{4B>f zh@DgCCoRFs&lE!VE_HrlbF|U{LYWCgIC1Vuz3Jy`rzQZ^e-Yn=_o=DIGNz!yTo^?2cNr( zc-mW$O2^X!4h)_n(0#Q1O^Bmx8A2^}};=2S+U=k8Fr+=%&R5d5Q zOTFb=QD(*9SxsQ$yJnIWLe>;>BB7{ED91R6oini2j~nNyr?6=W)Vb3grf4Z9OEE%PMx2$1S>yN2;sZb`H9WZN(TsKCKQ#Q)E5v-AL@Lh^3hwlhKMazA#fumuCv1!5v_5>7ddnJYj#idI zC^Ml6Yu0d?-LS@|IQ%e3>imSQb!k~Sgz#PJ{KV#Hr2~XA6N<{u6o(%MNu8gtweqtZ zLijFqeqwX9(g8x52}R{+io*|sq|Q&+TKQQHA$*rQKe0Jl=>Vb3grf2@#o>oRQs*aZ zt^6#95WY+A6`e&17W-c01RRl=>2UhyB}zw8&Vd6Qe3yRJ2}(y{^8n8D!NGUwUqpb? zQG^_DGQq)jiSJSmK6e-Kw71Y!iu1=vIQT9_mBV)l9DJAllR%V?;yed9+Xs#)f%q7pTJ4n&5_z zO$gtm-ZB-NqgCS}l$lV}IaP|o4}+vmUf5c>QVt<}mpVVOIa=ueq0EG$@-xNZhe1;3 zCv2_!EQb)jOYaCQN=Fe2z{v`yZ(gEw6y+Q^z`=JJ+M6Avqp0M-nKn51F8vpApmY== z2b@fB@Ll4&)Pv96i>TULkxIu?6$b_r8Q-O-a`-NRgYVLR5{T~--(?kym3FPCXOw)4 zwH#3b@m&HZFlCDG(!W&&zDs|cb_-@ve#EE{fsnO0XwwKqWkNZ|LF}A?rItf;8!f?_ z$WI}J?@})j#O7$_3WPEfiptM&jDy%Yb$-$kto%$Ngzr-4CpJeb9UzpMP*i@FV;scJ zsq>STVC82DA$*rQKe0Jl=>Vb3grf4Z9OEE%PMx2$1S>yN2;sZb`H9WZN(TsKCKQ#Q zUnc(2N^e-Yn=_o=DIGNz!yTo^?2cO%I3*ChZ;Vso@|1wxq#MdfEX#zE|yfvxh~tVx}a zv;^yOLJA>#mpVVOIa=ueq0EG$^0OS{Aa+ijpR@!kKT`A#2rrK1Qr;ADb>?-Jjo9(-<3r@NP{qOBCc z8VLvArKocFE`fvZ(ti@T#jJ&*a&|*z^cFuOPR~k|Kzx_L2~0xbyYz2Wf$!2Er`@IU zo8~Hvib>wBweYeiLQ$EJ;_$;D8CbmN#!>1?Vc1$zou9C^^0OR5_%3yRVso_80YaGxMdfFT!w-X`&QI7{`B@Gje3v>uu{m1l0HMr; zqVhAv;fFy|=O=8f{49qMzDu2-*c`2NfKX;aQTdtT@WUXf^AomKewITB-{t59uI*Jv zt$eWW1wb4q(gZk@!0DTpC>=#P2M%!XU555%$IK`SGH|914!%qOA_A0-BIJOR2@bwX ze3yFgxjmik?hS~xQUq%x9DJ9e%Hg{N4!%qONnk0uLs4?O=`?x^INL`CDoP-}OW*{i zOz~a%w@So!>5tRyR&CfEt@%?3O)a6QOh|F~Jts=daOwWg1=YR9Yg$vr5ZZ2p@LlRH zQ?WT(xdNfggrf2@#o>oRGO+pF@KXb9trRSW5WY*DpV%C&bbwH1LQ(md;_$;Dsq+)I zR(_U42;b%CJYhTPi_%eq0&udz>6@1*9Yr|@4sh^YhW2Jh=_o2WaHb6ozDxhiDoRHY za=^(12j3;WOFj79o=$i7W{6Zeo~k%7n8^4pMU}&M2^@Tv{*yplkhmbLV5|gIel}y~ zTdd`X5{T~-IDsise3$;MD)3$Ufh@DgCCoRFs&lE!VE_HrlbF|U{LYWCg z>XC35oC0zf~f>OMjepD=juhYcm4~O)a6QOu(#YP2WNY zLhHl$DJ=otrQR|Xo1>L05Xwv_DnH9H4r1pFY?bHcN$P~8C0L&mQV8L@)cJ|c(Mksh zWhNArpXC?_v2*JDq$ODSnL-HPCBDnP(~bBpMPjDI>6@1*9Yuiz4sh^YhW2Jh=_o2W zaHb6ozDxf_94H+{$N?u49DJAfF7@DZ_adtH7TQV?tdVf=U5YA)?-DrpF8wEgTg+N0 zDyMe?psi?TKu5Xwv_DnC;kei$Tme!|wu&vFRiyVUuK&CyB+2xTS|m7ggNKMayOKVfU- zXE}uMUF!VA=4hn@gfbI~%Fh&s9|lRCpRl#^vm8SBF1?q#qI49Y0GzCF`sO7{M^Vm! z0~~ypp}pBrI*LjToN0rD@6x}B0Hvb{IpAc1gYOdGr5=3lF5+o#p{*3b8VLvArKocF zE`fvZ(ti?IitbR9T<^}cMY$kLfFnvEzDwW)rcCi&`nO8Ncj=GQc5}8SKd?Dk8z?|% zY6(SULW;xhIZIE*o1>L05Xwv_DnC;kei$SJ zo6ikDHNe(N!Ey-UyVUuK&CyB+2xTS|m7ggNKMayOKVfU-XE}uMU3zB?)2)Slr{Z`; z5kp16>6@1*9Yr|@4sh^YhW2Jh=_o=6IMW6P-=%+M6{VvHIpAc1gYOdGr5=3lUPRU2 zic~tDsyHy1$oMWrmBV)l9DJAllfWd0V6YsuYXm)`tGr_6-K(fU1)N-PLuu{m1l0HMr;qVlsG;~;iUou9M>D?d{R;k(rNiOtbU2MA>*6qTRl7zeR)>inc7 zSoxVk2;Zgm8d8*wA{2m=6;9v0MCm9BByfO(?=rMEJ4#1U$$>L%aPVFF7ZIRz6d?zk zOmOgB;=9y?&)r2l?X5_q76w!O0XEb7^OQ1-rfR^NX&FNee)8fqbQKT0S>;)(BAAQ9YrMv&a}b7 zcj>=~1Er$~IpAc1gYOdGr5=24<OVGoY;$!5Rq%-=(N>_%4Bi@6vw~h+r|7U{MtL zZXS-_;@6Su*C9$EzDwW)CL!@%`nRgUcj=GQc5!?&t+;8f!l>-w-C8rDMG=b1gcOG# z2FbwUMK_L8PYT1Rv2;sZb`H9WZ zN(TsKCKQ#QDGomjk~%+OYvpG-gz#PJ{KV#Hr2~XA6N<{u6o(%MNu8gtweqtZLijFq zeqwX9(g8x52}R{+io*|sq|Q&+TKQQHA$*skSB?>SLwhD-N{E~xG;UelT~hR}8+gzr*snTpNP$}$LLCKQ#QDGomjl7Y?V zhMyW>Yo%a0gz#PJ{KV#Hr2~XA6N<{u6o(%MNu8gtweqtZLijF6=g`_w-*jtX-;rBh zQN&PDaQfyYN=H%7fdd?Tm!ZAcQ96py0nW6+!FTDOSw-n6LJl~Y;NZK&cc}-T+tcap z-VBjS$5Ryt1``?IrKocFE`fvZ(ti?&U@@0qF<7eu%PE_IXnq~JejTC&;=2S+V9FHV zrGKjme3$+>?bi09{D@I`2O(>sc+&_)WkNZ|LF}A?rIy1*J+uUCB0q%?zDvDj4K_zB zS0I#`P*i@FV;scJsq>STVC82DA$*rQKe0Jl=>Vb3grf4Z9OEE%PMx2$1S>yN2;sZb z`H9WZN(TsKCKQ#Q=#52hOy?!FTCjM1ay!gdA`( z!NGTl?@|vwcNg)rw<48}rw1GuOk{kQqRQdB1P;DS|4Cpey2D`Q3~a8`3yN6996qN~>6|L!82tjCl7(b;Y;JegY zrebrnas@(}2}R{+ImSWkoPn+K+&oF0khBErb3zIse3v>uu{m1l0HMr;qVlsG;~;iU zou9M>D?d{R;k(3l*>}LVDEs8OhtoGNQ96nO2^`?yyA18kj?z(_`v7O!;NZLTU&MjZ zQG^_DGQq)jiSJSmK6fvoYHy*f6u}w^2j8Wra`-NRgYVLR5{O_imtav8dGB6D_%5xn z)}*#7N+7;V-~=Wi@m>12s=#;YkJEN>d{fOg%~cqcJ-k~hfQlj%l?f>hKMazA#fxs_ zq@EOptu-}X4k3J(ddnJYj#idIC^Mm`{7iB9VUX1M30o^a%OQmCQs*Z&M=Kp5l$lUe zex^A5Fi7hBgsqjIR2%1kIKKT{lj7$kLm!q&>qatPtO)cJ|c(Mksh zWhNArpD7MM43auOVQb}QIfU?Cdaofx=_o=0I9cKJ%}bPyqMQQ^uYswfx+l>&uOTA?(Hb*PVAe5OKu5Xwv_DnC;kei$Tme!|wu&vFRiyY$Yep>!0X0GzCF`sO7{M^Vm!0~~yp zp}pBrI*LjToN0rD@6tcBiqcVp9B?wh!FP%8QV%|NFQRI1MJgRnRU8;hWPF#R%Hg{N z4!%qONnnygFj$V-HG-beRbCOpW_9jcjwpfnE`bx6GR1f4->L%Nr9V!)!B>L05Xwv_DnH9H4r1rj`AJK# z@-u}HzDu2-*c`2NfKX;aQTbVpaS%JF&QDr`m7ghu@LlTs#O7$F1B5aYiptM&jDy%Y zb$-$kto%$Ngzr-4CpJeb9UzpMP*i@FV;scJsq>STVC82DA$*tkF8f|^gzr)$W;&d{ zd5O|d6iDCz2j69AZ+4W9qLKq=+Th^3^e-Yn=_o=DIGNz!yTo^?2cNr(c-mW$O2^X! z4h$wTzDrT%@Ld82-=+T~5Z@)f%Rw+!+P#K6qvTtx<%kl9?-DqHNl1K`{;d-6UHap+ zTQH0ABSwV?gsj=uO(PVQ378eF>01avXnhzzr6u6I)LW)vbF^{=LYWCgFTIm3x%!H!yvmE0fc21q2v;-?ZQwZU^^z6ufszT`~ zLIF5g;q=W*l#Zf60tYzwE<<~>qjVIN95~Yk2j8XtA`X;}BIJOR2@bwXe3yFgxqA^+ zdkbx)2-ZkA_%212!*>ZBe3$-{Ke3$;M zD)3$UrlzK`1k!sQgTE_+gOL`3YMqKg%J6?^5R{Hb*NRAe5OKu5Xwv_DnC;kei$Tme!|wu&vFRiyVUuK&CyB+2xTS|m7ggNKMayOKVfU- zXE}uMU3xE*Ot%*Hy>f_G6fsm3oW6O9(ovLi-~b2TWoU19l#U{FfHQ4y@Ll>B5ukJw zAqSjHaPVE?yVQfv-9)!yA)Lp-z9MHUHVS~x0tn1R8H>(w9V))KO;`h zfhd9aE`bx6GR1f4-zpK`r9V#F&DomZ*)&&SR7~=2tx4OW2t{Q=io@?YQEG-u_lGX1 z?k!%^nlgsab|ZxEQg4}x&C$v-2xTS|m7ggNKMazA&F6-n8enUsU^#^FUF!VA=4hn@ zgfbI~%Fh&s9|lRCpRl#^vm8SBF1^!@C>=#804FP)zIln#QIvDw00-Y?Xm56uj-rwS zXWHQ4yY$bjqI47?2b@fB@Ll4&)Pv96i>TULkxIu?6$b_r8Q-O-a`-NRgYVLR5}4!= z43?vIji6_Al~=^Dxe10%Q3CN@0w*wKitp0DRRz9Ff1GxMuP8ra)Q15GSxbC2jZjo3 zlw%yk&KX#0Ib763ORy&LQwZU^)LYhIbF^{=LYWCgKu5Xwv_DnH9H4r1rj`AJK#@-u}HzDu2-*c`2NfKX;aQTbVpaS%JF&QDr`m7ghu z@LlTs#O7$F1B5aYiptM&jDy%Yb$-$kto%$NgzpmHW#0>qin33hdpLdb5~ZUkkiY>B zzRS?w>?j?@xesur4Gz9b{~`jEjw0lMlL-#KOMI7l@VUE)r@a-abUZ!az+fWdyA)Lp z-z9MHUHVS~aY5pO90X&f-D}7*O1{NfjwpfnE`bx6gv590-zpK`r9V!)1+yqWVpNDg z$eLi>G(u6CfLYO+zJ(Bk)`#&^S^~aHy=5vkM=Mt#l$lUeewJe##LgMmD$mW6)CoyT zus$cG5W;t<^Anq+l@1WfOeiWp%P|gO=hXR0OR(}Yg%G|=&yMV;DwK{Q6o8WzPT#yl z=_m>$aDapFGPE~4N=H%2firDz@Ll>Z;y~#rLJl~Y;NZK&cc}-TyBATlx6oFKV2y-> z?^0Abe3!t%cj-R~#6F3Aaue*6A^|;1RE8fNlG>^$f%qq5mpVVOIa=ue zq0EG$@-xNZhe1;3Cv2_!EQb)jOP!zC9IbSKP-a3=`I+MI!yu{i6Sh`R2%1kIKKT{lj7$kLm z!q&>qatPtO^iDUTbQGZgoUCyA<|Rr;QOHSdQ8?f}YV;UJ=9Q zCKxtF3B-2^oWPVRzDxgB75FawaoP>OqWp+a9|j;~E%DhjLQ$Dej&Tq>XJD!2a8VB} z!J5cVA%yQzZ&`!Q(aIGFWhNArpXC?_v2*JDq$ODSnL-HPrOr=mj#fHAC^Mm`{4B>f zh@DgCCoRFs&lE!VE_HrlbF|U{LYWCgKu5Xwv_ zDnH9H4r1rj`AJK#@-u}HzDsL% zaPVFF7ZIRz6d?zkOmOgB;=9y?&)r2l?X5_qEmN^MTDbzD%!H!yvmE0fcFw?7d2XJhPDomU^*JGh5WY*DpV%C& zbbwH1LQ(lyj&Tq>r_N7Wf|Z{sgz#N@c4R+Qp>!0X0GzCF`sO7{M^PYw0~~ypp}pBr zI*LjToN0rD@6vw}2TDf~a=^(12j3;WOFj79y@;y4g|<=zYa|?em!ityy95rtOaDnA z_DSrMn_!<53Fuj(GW_U})K*0a#CHjtz$7HTOaE3C_%8i%+AfZ7rWH5MRTx!XdAHWm zm!b$oWkQO>4})Z2@uK_qQ%?%R)|whGhY-F?y=4tHM=Q%9l$lUeex^A5Fi7hBgsqjI zR2%1kIKKT{lj7$kLm!q&>qatPtO)cJ|c(MkshWhNArpD7MM43auO zVQb}QIfU?C>iop!Xr%*$G82l*&lHCr21%Wtu(k5D976amy_ZR*TMPSMIm9c97%B=* z-@HWWD9Sl-fP?Qcv^P6SM-e)}nKn51F8zxLP&$f`15PG5_%88X>cQvkBA)gZ+DZ|u zk#O)`iYkZi5;*uS{U?E2%vvZar*{L|W^|XI5vS)slt6r!zzIy5;=A;3m5A@sAE)i+ zY)$ZNnyWA>CV98kq-{}zqB0@H;rE;V&@;NqD`ME(1jD8%f%qfh@DgCCoRFs&lE!VE_HrlbF|U{LYWCgHRKs3 z-(oFClt6r!zzIx3;=A;3m5A@sAE(`dS(G0!DnuY;O)zd6p{Pv2tY}T&LI^_Z!}uvJ z0pF$GG8LPnl`9a+OeiWp%P|gO=L~F>=jKW3grp@{pA%9D;k(rNiOtbU2MA>*6qTRl z7zeR)>inc7SoxVk2;Ze=NA^<{N=Fe2z{v`yZ(gEw6a^AEz`=JJ+M6Avqp0M-nKn51 zF8vpApmY==2b@fB@Ll4&)Pv96i>TULXe&jqM#8~&DXJX4OW@$U^q&M`pTs`73HC{m zfSx5P!;cP0ZB>*&e3!rpOhV$j^lw#x@6sQq?c(@mT5;1{g;C{|cWW(uDT+{3CZst0 zFh~X#FS?IE^`tOtt*P;H2;sZbTh?H6w6Y9BnF&SZXNtoQgQU(+*jo8n4k3J(IzO>F zTIm3x%!H!yGsWSDK~m=@Y_0q(hY-F?ouAkot#p7;W!&)=I&02;sZb`H9WZN(TsKCKQ#QDGomjk~%+OYvpG-gz#N@ryEf^ickPfRyck0 z5~ZUk=fD9DzRS?w>?j>YB?r#5!NGUwpIJreC_)Z6nc(2N#CNF&pSu@PwYMUbj;AUP z3??$ZOHt+UT>=N+rT-)_$srglN9`Ix&*& z?FL^_e#EE`0}!&7_-q=Xs7xrwIEbAyu+(z6sE3wdP2{H#!gr~+tik4JFTIm3x z%!H!yvmE0fc21q2v;-?ZQwZU^)cJ|c(MkshWhNArpXC?_v2*JDq$ODSnL-HPCBDnP z7aZZc6p5J*r*B@ObQA>=IKaVo8QPm2rK70iz?n8U_%8j62v9nTkONL8IQTB{UFyN- z?joM{R;1GL^ne3{iHz@3R5^T?z`=LvKMBMIi3@TNjFon;AXJD&5H&0S0BrU=EoRC5Y-=)q^Y>rksKqxbzsQfI)IEbB7=O-<}%Fh%+ z_%1y=vY)C@I*L#LPF6U5^Ae?_D3HJb4!+CK-s~tHMI{H$w86o5>A#2rrK1Qr;ADb> z?-Jjo9(?XzMAhCxTPcDy5)QsgQRVPm0terv|0EFmB=*TouuqBv^ej;sesoA`tD*$r zy97>P5)$8~f2#_7m;N|y7sof#iks#tj4H3ZTWje{QG}v0A;sZ`K{Bv-(S7`>Cxu~a zO^ugB2;ZgNvId)@m1PjhOeiWpQyhL6Bz1nm*2>Rv2;sZb`H9WZN(TsKCKQ#QDGomj zk~%+OYvpG-gz#PJ{KV#Hr2~XA6N<{u6o(%MNu8gtweqtZLijFqeqwX9(g8x52}R{+ zio*|sq|Q&+TKQQHA$*tK%OumSg?+Ca;uS><6$PhnUZQjq{zU{R9Yx3iClefem-sIA;B$8oPkRe(r3ltYIQT9_mBV)l9DJAllfW%zEfkg0 zy8&%8y35aq({mt7AihiB1g1>!UHZ35#CPeB({^*VCU`c@RTveMyjyG1wkSeTnULb} zdrp*^;nMw~3#xmI*R-aLA++5H;k(pZrebrnvJ66*2}R{+io*|sWMK2T;im@JS}9l# zA$*rQKe0Jl=>Vb3grf2@#o>oRQs*aZt^6#95WY+AbR$Yf5emS`3a4*gqI4AH95}$i zcNyB79i^kFu_Ex0Q@l?fu!9>P)DXJX4 zOW@$U^q&MKIRt~{s9huI8C~TSF>G#vVN;Yqe3!rpOqt@l^lw#x@6sQq-QX+Aj~Mk~ z07BLhpG_kal?mk-2eESomRb%M_0STmiTo5o_%8L9HP{@jT!Bz#LQ(lyj&Tq>r_N7W zf|Z{sgz#PJ{KV#Hr2~XA6N<{ua*Tu6Idy*060H18A%yQz=O;EtD;*$|nNU=ImSY^m z&Z+a0mSE*)3L$)#IzO>FTIm3x%!H!yvmE0fc21q2v;-?ZQwZU^#CO^Ef}^7Bljj~z z-@HWWC<-KSfP?Qcv^P6SM{({0oN0rD@6x}B0Hvb{IpAc1gYOdGr5=3lF5+o#MJgRn z4>&NG$oMWrmBV)l9DJAllR#XMxF83?SZVhf@{E#iv6drBAihiB1STQzUHZ35#CPeB z({8~m%8wWoA`r4B7&nbjR3>0nw5D$%1flg|{FIh}?^17>ip|l=6$oV}6qTRl7zeR) z2DZv`^CWdb(h{uC2`Pl|UF!VA=4hn@gfbI~%Fl9)gV;HBe$o=G{7fN)@6xj)`>6`0 zqX-4yWQEf=FHt&*0tp=8;JXa%&5qJhRC3@<8ytL>{);$JI*O13P9`|`F7aLJ!RPKp zRP8Oal_FRp;o!RzRSw@JaPVFFPXe(|VxQau`=m%f&k~j4M~9@gDoP-}OW*`1A@N=M zx2nK*>5tQPaeOnaxM{A!sPf9YwU)jVMJOs0QXGC5Bm;{V-N&DLQW&<@)Ob0B@LlRH zYp^+5Sq7oZgrf2@#o>oRQs*aZt^6#95WY*DpV%C&bbwH1LQ(md;_$;Dsq+)IR(_U4 z2;Zg7Pi&4>IzT8hp{V>!arj}7)cFZpD?iI2gzr-4CpJeb9UzpMP*i@VIQ%e3>imSQ zm7nDh!guMtOcJG|2nFC|h0`}LQ96op4jka%yA18kj?z(7a^OrG9DJAlMFc1vMaTgs z6C8Y(_%8L}b9WI>dkbx)2-ZkA_%212!*>ZBe3$-{z%6Di6qVDv0c|t7%g>0@b0A6} zzDwW)rcCi&`nO8Ncj=GQc5}8Scs9*d7!{MeTWhip|l=G6-cR6qTPT4nGW%fz9WJpBi9mrC>RP@LlTs#O7$F1B5aY ziptLvhaUz>ou9C^^0OR5_%6NEjVK*OC;%rboW6O9(ovLi-~b2TWoU19l#Zg3183Uc z;JftCtfF)jAqSjHaPVE?yVQfv-HWK&Taik~QxyjW6B*y7sB-u&frIbTe-fDF5Db>1 zc8#ECbd^`cu(=6_O;G~zT>>XCWs2|8zf}dkOMjepgRdw*V$_EL2w6*fHjPkJCX{0w z#LgL5YB^lgLrbtG@>2-myVP6OU~{x`1wxq#MdfEX#zE|yIzMR%R(_@s!gs0j6Pu%z z4iL&rC@Me8F%Dwq)cHwEu<|p75WY*DpV%C&bbwH1LQ(lyj&Tq>r_N7Wf|Z{sgz#PJ z{KV#Hr2~XA6N<{ua*Tu6Idy*060H18A%yP|-(}wmj__TI#7u|NH!o2-iUJ87;NZIq z?ahwTQB-o^OdA}0m;OZrC>=$}0Vfk2e3$qx_26@N5l?$7Qt5blz=6R;#&;>I9KK87 z;Jfsn1mc3k1vv=DO1syPXOw)4wH#3b@m&HZFbRq8(!W(AzDs|cb_-@ve#EE{fsi%( zx@m->G6A!qHGK;q2(1s}r?doomwL-oY>rm0KqxbzsQfI)IEbAyuvMO$C#e&XmSBBO zNFjvpQs*Z&M=Kp5l$lUeewJe##LlVnla^rRX9^*Fm!2KjPgN)#MJNC#E1bT0iPBLN zNZ-4Sl~>-awe+PZLQ$EJ;_$;D8CbmNKK|5`!mzcb#>*ju?^17BgU!*(G6-cR6qTPT z4nGW%IzM4+ou9C^^0OR5_%3yRVso_80YaGx zMdfFT!w-X`&QI7{`B@Gje3v>uu{m1l0HMr;qVhAv;fFy|=O=8f{49qMzDw_AlIhmM zzE=+MiXw)Jg3~uIQ96op4jka%yA18kj?z(t4sfOo4!%qOA_A0-BIJOR2@bwXe3yFg zxx0v`y@j??1ZyN5e3zoi;kyJ5zDxf};1;tMipuHTfVLUkOSX z{aYpCyY$CtyE$7EJe%e!jEYI#tu<*|6rre0NOAZ*CrZt5>Hg3K)xE`QT2sal+HQpK zUFt1Uu{l~<2BFM^qVhAv;fFyou=(8ZQv+j_b(>E_sI*M`*9N^%)4DHR1(os}$;7l7Fe3$;2Rg{h* z5tQH@D=4pjQTJDA!~`xrV)zDgmR37*f|4BEr*MG zXbILtehMLcmwL+@Y>rm0KqxbzsQfI)IEbB7=O-<}%Fh%+_%3yRVso_80YaGxMdfEX z#zE|yIzMR%R(_@s!gs0j6Pu%z4iL&rC@Me8F%Dwq)cHwEu<|p75WY*DpV%C&bbwH1 zLQ(lyj&Tq>r_N7Wf|Z{sgz#PByX0d;E(ouvQa5BNccZu&(4?cGn@wB%hm5!$e92iVwe3zoi;kyJ5zDxf};Q!Cw z9pp%|r03O6-ENII(hf8wpb6&!x4^{^+Jry|T7s6qEeM+T19PiB;*dlTsx}yZ8lfR4C@WUmw+JEh>uvm*m7sT-k4#l_th|EIVnRdy z+^0CG&e=IC@4ip+Zb&Pk`aNNWkltnXr>`yD9^5+a8z01al z?BCub9fK6WSqkS>UrIWL0SOK`dY8Sk*(DvrBnRheaP%(Q4{=C32FZc52#(&R-etb| ze13@P_#|5y#5xE^?=nm|y-RTPF54G@>XYh|KcPMu4A^)@<@u|_)LIQAQ123)&L*VZ zW&5ZKz00;vkC)>g+loJ}RX8+W{o7WrzHCKk$O$tIKLyFo%ZvA4f8IBRv8}eo_aUTr znUAbdbF5s3&|*SE{+wy}DM)62Vq5uhA3}PU*`I2Tl^qaTOlZiTGYvll$?Q*TD}U}o zNbfTHQ_Zom144@l4f%7X;in*({fTYm&wU8#U1oo(IaYQ+XfdH7f6g@g6eP1hv90{M z4_{ zrh1p{qZ0Kl+d4fCXM2d}r?m=)H0j^AI__aBLPJiNY54tX7&XsV_n$4O^Cv&E+A>Dy zs}a(>%txlGIaV%1XfdH7f6g@g6eK%`&pm%@z_zmBK7{lxvp>}wD?1>xn9z_vXBvJA zlG&fwR{q?Fkltl;yHV0HNCBLsa9;JLq+=N8;DDod**lwE(lJbOaIOYN@3OtKD(M&` z2hJimdY5{a`R4QaA*$okVAAp1n=f{atallvoZclkdYA2sz^R5{cN`t>2sZAn`iTmg zKcTQ0Mxfp$IGrt1z03Ad6?&I#ou0+FRUdKamjQ&TSA2dNp&=*iQyf(1?7V9Ee5uDu zs5bIv2J|zDu2!p(!0$5RCBECfY4$>L;l>SIH=B<{b?ms{+uDCcbWaE=2+PQp~ZxT{JBqY zP@OaT(@LoPIYUVAQt$HB2afbEgE8mfyy{Cy$1otl0Y~q$cQ(7EW0>UNTn&!iW&0%p zNyi{La2CPQyVSePH=oZh@f@E9laAkSzSuRg-es6_dY9nnUA8X*wIH=1Z(Xe%XAL#( zl7F(56GoukB{-c;NWIJUQHgq&ZJnM6=2m^gA&DSV?Y{mrLPJhaR;;#f5klzK+xRmp zLGLmjnX2Ykc?F@xgogaNPjOJ4vvXA5eV^prkXAzVd%_GMz02%RHOI;h2rVWw!E_-LQOFD*04$jr!=v}rS z;*fL^xx2;}%*^1DR6J{EI3X+|d z7w^CRyl)C)TWyW+LrCv3A6cX3Sh)Gn!tn7f$ zVnRdyoN4$eNM?UxTlsSzLVB0Y$0X;gg|9w2U*j5(Y zhmhW7_NSU-We0>76B_d8Ov6t>GW!$T%AflX(z|SKH%dANDS)#S&a1wZbPVGh9B}k5 zduOvtI)+IO&eh=PUAA{tB^`t0z*z)G?^5qF-+VqlM0I=`Ogesh^Tn=_^)ADd)4K#m z@3MUnIMopBj-%rp!N%QHKT%=xClofr2-Ld-r?X|MciBFwLhrJz)3f-t>LU*QGJsI^ ziqB6YG~|SRii7H$omVZNFZEan)kgjdA-&6dWR03*RrD2z|mIq$=@E%tG<+U3hHD>it_DZ%vi%Z)q+^gAIE&!uUFu!to6qN$c#cnlNyqOuU+fxL?=nm| zy-RTPF54G@T98_hx2{%>vxXXX$v@f32_sPN5}eK^q~2xws6@TXwocCjbE`h$kVFuw zHW+^zp&=(ID^}aL2qEg2j^;V^e)>EaY#A_$$_&7j^3r-Wxn}*eu(P$BwHE8ItWMaGE6zW zOK|iq+ZTcAlj@T{p*|T5*myY(;3u2{R2p1`!bff9^v_?=t&S&9SlrLW>Cv`E#b> zry!aAiEZW2eF*7YW`C+VR(3#WF`*%U&NTcKB(p!Ut^BzUA-&7yW0I1NK?>k3h4ZQ} zB^|>!2L~Lz%ih`Sl8#}LgL5@FdYA2&2qYbYEE_G?qMrJLr$1!`2A}bHP2V~pDn2KCqJ{=GDhgD5z@QNN2aPdRxU$mF`*%U z&NTcKBs+)CJ%4M!wzA+pg!C@6Kh+#7J0P@}(2zf88h#3r*`L@}{@jO<-eq&UQPMF; z0i309UiGDs^imO z((&7yFLsTrcNwOf-X%DCm+gzdsfJ*893AfnHtw$ai3*!Pp|BZ7pxz}ooh?(n%l1(f zdY5gTp2fFSA93iH0feeoe100CAt&rp98~A*ylVM;smDsFHu7f(>0Ra{Yt$SouOPIT z(2zg(DGsW0W`9}0M@jsySA6Kxi?cA%E^u98~Ab{N~rufLrCvZ@AB0L zj`S{rG3VjD>Ptz-Fd)GJNAI$CHoK%_nB?GG4UXPr`y~QN#~?Xy7QxZG)Vs_#pU*Gx z9G?c0j^A&-*fp}=Wteh$m*D7Kwl4y;AhjTGU9B8v4K?nPf3lSmMxfp$IGs&Mz03Ad ziF%i9ot_8gR(-@Fi6B(%zWy{qLrzduthR3vLg?4q_%ka(?=l~ms^(aE1);@+hWxot zaZsJJb5!1apXA+;RzmfA!VDq3%j{1z$I1=}EhaSN&wYx6>YUl1Rzl^^8A5uOjT70w zy-7L-DS)#S&a1wZbPNL$9B}k5duOvtI)+IO&eh=PUA7XuSHjtzLcEiqMb~W*UA9lAV_q@4x=MZwg~uZH@0kNbfQq zS)=AyxeTGjgogY%)9_P}%>Kl-^5;H;^e(eM)f_83Ahej!kUwV{ehQM=pV(IZ+=r0f zW%j3LPP$XY4|BfW`AN^`Ewsa zdY8?|B?N;-yd4h}eam%X#uB^`rwz_}V6z03AX1d@(Ha^Nh2 zqj#xynQuOyU*b7F$yNrj4#Ls93{y_;5*)qD_C??)s}_dI**t*uad+3BQPcAlMxfp$ zIGrt1z03AdiF%i9ogRm?J;d|VT7^TJ^lw{j+HOT?$O$tIzkdy*=K1RWvjuhjhDi?2)!^t|ws%$~ z9fRb+Sp-M#QtvX~d_F%!b$l93I(~ce#jcU{F2j`5y97t?vV9Ra)e!8CqvIXH#@$sv zQDO5Z6gI;M)Vla5@3O7av-q~^BM$vCfKc^{&rc&X>`yD9^5+a8z02%RHOI;h2rVWw}wD?1>xn9z_v z_bCplb7p^936(!*2o?^e%g6vr9ULYaei~21oC* z{StwsV~`v;i{R*8>RslW&*ztTj!%P0$L}{^>>63`GE6zWOK|iq+ZTaakXn$pu2zn- zh8lOtKiSF&BT(-WoX#es-evo!M7_(lPR|2#t3Kk8L=dVr7=Id}Atxv+R@=7-A@u8Q z{F#-YcbSh&RdcMog3w|@L;l>SIH=CqIV$hIPx5X^E1~*5VTO?2W%j3XSdAJ{b(y zctz#;tHab<4I@zR5}eK^q~2xws0zKywoZ?i;~(3KKdn_bG+zDNR2wL>?yf(hrspk;K)p+FI$NfCm+hkx^)A~wJq~Aki07xZ3Wqf5-?lpLVJkvIPMB%< z{c9LC&sX=KEvWM+KeO60M(C>%(!0z@rm8tsE<?ymZY3Y$Nnuo*_6-X%DlEmOVA_E8mjmu;P%#kW--ap;!;gsNA3 zej1@6C+t%kROjrxYWaMr$4aO+@@EL?UFIWe)Eq0XAhej!kU#e+4ytoze_9EZKW7N( zU1oo(IaYQ+XfdH7f9_KpROih8v=SGn!tn7f$VnRdy+^0CG&YAsbB~<>L zA*6Si{i)_y*#V)&gogaNPjOJ4GyBs@sQfuYNbgeb^3?~9^e%%j=i$8SOG(EtAi)7g z@3MC`yQE{7?j&ws!F z=f6Gw^ZtLo|G)j)|D^v;`e*;|e<%HS(m(V4UkM~e>7U_;-#dY{M$$jCeykts$KRhc zBho)JKg zV!qNU`Q0D>_VN7YU;W)9KlQ;+kEZtr|GW2nqaXg8zFCn*2%)#%y)$^Mgn#_Qm{`b)r|Mc-!aKb?x;8bw_`TxA`$6xM$$=^QG13O+Ne44};!*~P-oWH;S zZG2U7zuft>OIdx8Em`_5ay>U_8t* zUj(P~tCN-U{?ccF69!WMGVq+->2Ez{V%dF{^Vi=C# zfb+k8`OklPs9jTR=M&!E{^6JZ;)|V&YjA?*!0E!dpK1R0ubs>Dl-}DPf4N^i4*1a* zg95>pv(x)Pl&pP5!gI8 zK((;C5iRK$jQA#e{~0xleIWoio2yWF=I;Kg|%*yUhO7 zWUTCf&|*SE{@kZHsLq-FX(d$toFSxlnfN~rufLrCv3 z`%{y#vI9bk2@UykpW>i8XZEL+Q2BF)kltnXrzT@%2ZR>`yD9^5+a8 zy~}2yMMN@40i309UiGDFVHl9$fHP5p)w^uJW1&776ada5IC_`ucLCHVgXF+j1V`_( zpY2p;3`ykg}ESqY@uS zeN4d7yUf+CM++@nCNxi5f9TaW!>Mox<;TUI&9|8n-~Dg)kWKu|YU39ngnr!s_@ioN z|IFCOjMrqWEQruzLPHkRDy(KaLJ0k8!I_nycbTt0A1$<@>rdaTyn@h&2o3pjrr~#= z34Uf^fNf>oeF*7YHt)bnI)>2>&Qdt9x=YeAjB{|n(YyTP^Az>xw$SlOnK4XqaIOYN z@3MVWC+Qd@2hJimdYApZOG(Gz4sibbaP%(2l+(KeNAI$I5vV@dJ{jS0TNs?L11F3? zy-RTZ%Rk)jiv8)WciGDJQ56qV6L9n{^8@^9j@3g;2rVWwDg% z-*>crSf~3C(!0$5RCBECfY4$>Kg^}`luDmw8h#3r*`L@}{@jO<-evZunqy@LgccJT z^5;y$PeC&K6Whw4`w-H*%>Gn!tn7f$VnRdyoN4$eNM?UxTlsSzLVB0kpK6Yk9S~Yf zXvm*44L=3R>`!bff9^v_@A7dx-ti{q^OK}wkODYM;k@cgNyjkG!2w6_^56g40}Gy- zQ)Ud49Gt7c(Yri7rFlI6B0N@OciFxO zRG(Cz{0a5RV8G@$a=-1o$Gb`br!&S?_eVFCPU#L|MtEq_)LcgBYH@Omq{5jL` zyUzqaGcdrmGVeZw^e*%DrzT@%L4+0)8gkh_#X)t>&QY_^`>0kzW&0UIdY3<5RUcQ} zl8!+N;4FpnsxKuS!+-<_9KFkS>g3y-q+^)m;9L!k-evo)sH9_%95{>M=w0ev=9|yQ z<@ED4)#s(Q-enN$ARN8RFy-_v!O^>HUj#}zex0Oa(8}4sKYrR}0fZ6wV>0Qv>vaFs z<^4YFMA7f}Z+>EDXAjl(`41Z{IlasL%DtLn^=2VLiwO76B_d8KE*+G&g@Ss zq4MVpA-&7&Pc_HN4hStKG~~~Hii7H$*`HQI<o?^e)?}lkYc4$1uskxf&e3 z%l7*Yl8!-g;4Ffpcd2)oZ$2NF)914R2a}H9Z@$Z&YMx(BJm-)yyHOJ}@9)uPX8WQGA!|y&5 z{LH`r+iGikA3}PU*`JfG!l4UWKeIB@R)mIJwoh?TowIYQ-}B@|E1|Oe3?aSC>`yhv z%4G;GCN$*FnTDT&WHu7Em67%#q<49Krserb(lJN@oTYGH^`)d^80X-Cqj%X(o#YzXRx92F?8xIC_`uT}4U9AUSXr!O^?ayUaJAJ5LV}CLO=M`C`||dY56!>0N@O zciFxO+$DF|ot&MQ8y}a1;DjsWPX;H9K)p+FI$NgFob973X49N{m-&@@HOK1FU4#}B z8gjx+!%smnpP-6uwKcvEA-&7&Pc_HN4hStKG~~~jhM$6D_9wQLKldS|cbWaE=2+PQ zp~ZxT{5jL`Q;^L5#J2M1K7{lxvp>}wD?1>xn9z_vXBvJAlG&fwR{q?FkltnXrKY^P52E<;-b zoa@2SyKKKiAn6z+2hJimdY5{a`Q~%yl~CEraQ!$4NAEIBIlW78^e)>MfdY%+ItQGu z11F5Yer8M3v3*jW-eq-{-pYw9NAEHp`KIPr?MfoFn9z_g_bCplb9RpUdG@-jgz8s> z8A5uO*`HgL6~pbs=85c&N1hO>{5eTz$e%L}KLyEbBy1}q?L$cKGW%1_v9bd~iwO<+ zbD!d%I%l@Ml~CD!hLGN6^U6xnF-QTNrEp&LrKDpRkl=u$ciB#z=v{`I2RPS*qj%YU z7DLi8NDiDuaP%(qF7wT2z02^}?VlHp-es6_dY9nnUA8X*KUuXf+<9vr03=&kJyf*I z0th2e?-HEOCZyhF`=|=N%eGF>ugYsOR`x;YvV?}5uupMNoim?KYb8`0`7?y{F7uH! zYL1mx5L!%V$e;TZ2h};VKdpqypEHE?F0((?94k8@w3yJ4KldpPs&i(4S_zduX9($C zW`C+VR(3#WF`*%U?o%98=gj`J5-NYr5YoHM{#0|U?10c>LPP%Cr#Pt2nf+-cRQ{YH zq<7hT+;zTM`04|;eqzwjR&ZYRrKDpRkl=u$ciB#zNIJ&X3V*o^>8(eudD_wQR|#JX zDxZO)ciDc4K+-Wt4xB}B^e*)-^Ude;OFYM?!KCB&n=f|7s&^TtoZclkdYA1>8A-=* z5eUxLffGic-X%DlO-R|w_ECwm!Bf4b&|*SEPMB%&ry*4;9A^g z_32$^e@?avyZ6~Tr;RE|e&|l{R{y{9!I^bmQ9t}Q_bCplb7tFH3DtveGlcXmvp>}w ztE(%778Clxif2crPcsca1<7nAY%3$}LrCwk`2?t>V~_$kOX0lgOG(Et&cOjk@3MC` z`!DxF_SXA{%@-=4w)DlI0B{z;(Yrj|V?M5*B^`t0z*z)G?^5qF-+aCgsMZGT+h6|D zCzpQf@WrlJ^)ADd)4K#m@3MWJw@dD@J2{Wn85^zw=dJJKPX;H9K)p+FI$NfCm+hk} z^e)>vJ=;Xhv333Tqf!vMETJJM%ryKIBs(uJK5z75TWyW+LrCv3zo?+*Sa}7Z#e|0Z zIn(e{kj(zXw({pbg!C@6Kh+#7J0P@}(2zf88h#3r*`L@}{@jO<-evZunqy@LgccJT z^5;y$PeC&K6Whw4`w-H*%>Gn!tn7f$VnRdyoN4$eNM?UxTlsSzLVA}!K1Fjpb+lDr z@zqCq!3oBkhx4j0B^|>!2L~Lz%XaES@3Q?~>AUIzKP8fkd21ky=;AV?{ zzrXp3oqb3V$@ck!8!b7#%Y5XUnq##qiO^y~L;BjMIH=CqIqK(r*XMl;+e)Z5@@EL? zU1oo7RaOkQ6VG>EfBb|{<k3h4ZQ}B^|?n1P2_w%ih`S%8X%>gL5@FdYA3z zO(Y$IRp1<*@V=)Y#&vjciGnI`Bix}$Lf(*gf2^H$O-!t2h}+{Z-uIJe(-P3%-0M@jsySA6Kxi?cA%E^u z98~Ab{KY^P52ERp1<*@TqlY#)_4o95KJ%)Jpc$7%x=p~ZxToG{byQ;_T&p7VUQ729fSd>=x3 zm)W0_t-|howxev)cx=eetcPMeAH9xpKRrX z5vX?wPG`$h@3MVVh2CXbr^n0jk8MRY$7*j8q015)a>7i*PeHQt^5V0FhHbSqz7HY2 z%Y0;wnq%b^gccJT^5;y$PeC&K6Whw4`w-H*%>Gn!tn7f$VnRdyoN4$eNM?UxTlsSz zLVB0kpK6Yk9S~YfXvm*44L=3R>`!bff9^v_?=t&S&9SlrLW>Cv`E#b>ry!aAiEZW2 zeF*7YHXqE~DzNzKQ>)+vW6r~Q)t8cvVVr{lj^1TEbt35)Y98QR502ht`y~QN#~?Xy z7QxZG)Vs_#pU*Gx9G_$>!}a4J9KFjh<@7GW(YtJ41WG!F>l|>t4xBIo^)A8bY?c___uYR)wL6eP2eu&o{~+lP?eW%j3YUl1 zRzl^^8A5uOdY7+03p}56^b`N|g`b1!tG<+U34Al^9Gqe!ux*SFC!MVan-Uf}?lY zzRr_${5na;t{sjegBmxxcUb^o1nOOa)7ga7yKEnosCU`c>3PzsIaWJ;2wj%YkP~Ja zehQME!*lNUQQkL&v8}eo_aUTr`KM1%{CJmfvQ;>ACFN&UF58OGkU#e+4ytoz+gk~h z?Pmz-U1oo(IaV%1XfdH7f6g@g6eP2eu&s==41>(mUAB*^(7SBw^!%#4nq#%M zh|pyT4LM<^;in+kd3o`EALV^h7~5)Vd>=x3m-)yVHOI;;2rVWwGRouvXw!s zgK+dN!<5sz1V`_(eG#}z?l6qpvz>nY1kTrqfrb&NcL`2s%T({OeN>{}Wm~7`quSIQ ztNl}iE=y?03HuZW)j2yy{it((@Ndq{-xa;fd}QiYWyPUuTZAg}P7?ay6nGv=^PHM9 z4L=3RY$R-}N6Yphq<5M9speSO0inf&hWxotaZsHz+ulm3Y(GOt@AAie!sD**e6{e^ zYdJqLXlN@quliEbF$_p>z|p(xoy{)k7^DNv)!^t|wjbhs^K^r*{dC-evnD@RL;wy92QEj^g9)u0Nxu=UW(odY9mIHX-#c z+ecOCUAA?4){vTGwGE2UWeE*AVV~llI%nrq%jbj8RzkIrKSN0GG9Ou^=2&?Jp~ZxT z{JBqYP@OaT(@LoPIYUVAGW%1_v9bd~iwO<+bD!d%I%oE$l~DO}hLGN6_NSU-We0>7 z6B_d8KE*+G&g@Ssq4MVpA-&7&Pc_HN4hStKG~~~Hii7H$*`HQI<UrIWL0SOK`dY8Sk*(DvrBnRheaP%(QFA+#O2FZc52#(&R-etb|e13`N z_%xVw{C@Mru95XF!<5sz1V`_(eGw?>_;r$wT|0CR5PIC~-em!V5vX?wPG=KR@3MVV zqTXd&r{_tl=2)FGgwSOP4LM<^;in+kIXvfn=j44;7~5)Vd>=x3m-)!l$yVXem6V@Z zxoj&!L;l>SIH=B{=v}sT zdb}L}7?Em@)%F=emnAghgqen)f@J6A#rvI;_f27JtF7^U2lhAF3a369=n`yz0c++i5G&68`lYC-M*CyYS7OK>_{rh1p{qZ0Kl+d4fCXM6ZV z&9OQW2cgRn8gjxu#X)t>&QU+=oFDv~GxK*v?=l~mx>Z?m=<*Gr%Dj_=J~#!QhtfQ! z=1jv+K{6W&+v?G>eF*7YW`C+VR(3#WF`*%U?o%98=ghXZ5-Quz5YoGB?ixxu1}T8E z6wa%@lynRO5*%>!E_-LQOFD*04$jr!=v}rS;*fL&^9KFl-MWEiL-lg7UZ#u{wwofXU%^m*!Ef`6D^y|a9x9z&W%N{S7 zH@4>V5vzwp5klzp=cug?4WWICgX)}}S1q3pLR$&dM*a*Ty~})LjhbU+L4+0)8uI5p z#X)t>>`yD9^5+a8z02%RHOI;h2rVWw}wD?1>xn9z_v_bCplb7p^936(!*2Gn!tXziBVnRdyoN4$eNM<8pTN!B|LVA~tLv_EsNje58fU^|N ztG<+U4C5ReaP%(QsgrMSl8#}LgL5@FdYA2oI3yi|t`kWGjPM z2jS>lhAF3a2~MwQcYj~t&kyH+zx}>>98L3HPtz-FwVgNNAI$CHoK%_nB?GG4UXPr`$Y*!#~?Xy7QxZG)Vs_#pO4Gw z^ZUB8l|ih7aP%(2l+(KeNAI$I5h&^Sb&`%jD`x}$_-U5~5JsThB{-ceQ@zXfQHgq& zZJi#6v*}%a=-Tk7)f|Uhxz)ezkQ4SP4ytqJI*OH0ZRF1o(!0z@rfyYM9C8^#;q=(Y zZ*P-?hWt6x@Kcb?M#8o-(msUrF0((?94k8@w3yJ4KldpPs&i)BTM3ozX9($C{Y(K;y=@=vj<K^ zmwK1^=5t57gGtA4Z@$YUl1Rzl^^8A5uO*`I2Tl^qaTOlZiT`xFP&IkP{lgvy^Y zg!C@6Kh+#7J0P@}(2zg(DGsW0W`9}0M@jsySA6Kxi?cA%E^u98~Ab{z|p(xoy{)k7$!M5SA(N>*?x&Y(lJO5oJDZ- zF7+<+&F9X`i-SqW?>ArU8d>i$OgX(vaP%(Q7lFIv4!e`HbGXjqwlFwfCk7fupxz}o zolQu+%l1);dY5gTo^7&KA92XA2vtY_{4_#CPMB%&$-`6dEXSqw%QushmhW7 zJ~DN(RXF4_KeKY#R)mK9xleIWoip3sN~ml>P zWu$!w>0LHkSCWoF3g9e-^Qtc;9m6;W2OPc2cIxEY+fS(${(o=1f1TzloKHXdR}IqH z1diTi`ymcV#~?Xy7QxZG)Vs_#pU)3b9iLr*{dC-evo$>*vG=!vO4G z1o~H%<{VFRh7qWD2~KCrbRy~a`!`g(RP`?NEB9)S)uX!zEhaQHy=EGI3X+|d7w>mY z-ZzD@t+vMZA*6Si{i)_y*#V)&gogY%)9_P}%>Kl-^5;H;^e(eM)f_83Ahej!kUwV{ zehQM=pV(IZ+=r0fW%j3LPP$X zY4|BfW`AN^`EwsadY8@TWF;Mg6u?;u=T%=yI)-r$4mf(3y|dXR9m6CC=W1~DF7+<^ z?-)H#g?~QedwkNn48H-)z|p(ZyUaJA^)ADUrhi^IdY56!>0N@OciFxOlyv+$Nyl)# z);yhetEOidfqIwVbhb?OF55>X>Rq;VdK}L7n5{ppRXAh<|F+d}N?Q>ca>72vL3Pf~ zp)}7suU0~}kv~I7?=l~mx>Z?m$o2?Twx1+4rQqnODNN~W>yKJXU^e*FLots1? zKT&>E@3Q?6hoobW95{>M=w0ev=9|ywhp3KEgGtA4Z@$>Q@YK5uQ%>&^9KFl-MWBde zxCjL2>%a*ku>UT)++q8qg2$US;D9sQ^whh|uiUFSRu97>w3yJ4F!w1As&jT;wR|4j zVLPP%Cr#Pt2nf+-cRQ{YHq<5M9speSO0inf&hWxot zaZsHz`_oFO{5eBN?^5rw`!Yl)$)R@{j5!bIRbNUvh5-oGYR15#>+h0BpD1Sb0`k_yLV$kX)aP%(qF7wUj&h_KlKm5`s*E~k>d5!LiT_fvV zhJmbi369=n`yx>9Qt$HC)yi?!P~$H7CtEpT1nOOa)7ga7yKEnosCU`c>3Lvo)khqX z2tw8F>rW#zSIH=Br*{dC z-evnDP|`76=YaEd;DiyVcL`2s%T&{|eN@G4@Ko76B_d8Ov6t>GW!$T%AflX(!0$5RCBECfY4$> zL;jp;_$f$ce_~ttb00!_m)W0cj+Gq{T1;rjpEC_V10LHX^8S9CuNH<^6Z}MQ{`7^PW68bhOG(Et&cOjk@3MC` zyQE{d_5tT=aP%(QFA;1KSd`}MrAdFv0?@ncR~wZXgFC?a^TW}*4A(h&m*D7Kwl4xd zS+y`s&gKEMk9)2DjGCUeFaq^1!Rc(7>Rq;vO4Pe->-0FB?IE6@)+!v*q<`CLUveu# zLr&PIIH=CqIqK)zuQ#c!glZ#yhLGOnpFTnH;|1VWWyK-eBUIUblF*PpXBvJAlG#Yu zRz})~kltnXrYO|5p)I7ks9vr>P_Cp+!jzMzZEP|tVsdt%gJ|CCU=aUi!laAlse6f4s zsdpKsoZclkdYA2sKuO1NodeF-ffGic-X%DlO-Q}V_E8mjmu;QiADaH*cXUn0>XBB2 zE=y?03HuZW)j2z_TB>t?@Ndq{-xa;fd|tYmW91cu78Cm56nMU7_neyh6bIEgvp=nb z>Or^}LVB0kpK6Yk9S~YfXvm-Y6bIEgvp=nb%AYfY^e(eM)f_83Ahej!kU#e+4ytoz ze_9EZKW7N(U1oo(IaYQ+XfdH7f9_KpROih8v=S7UV7XsDHEjldYUE0`)Gz>1;yk zUAB)()Vpl!^n6s?R(-@Fi6B(%F#j|{Lr$1!_$f$s4$pbM+KO$pHNFoay~})L>SU{M z$Yp+J<+7~^4f%7Q;-ETbw!M{5*?xwQ-evZunq%cMgccJT^5;y$PeC#p3ERp@`w-H* zY;KH6ItD3#vlPy&zLazf;~X4t^e%g6v;T4*WN*EH*nFY#X-i)W3IJyj9KFl-LmZNh zL2}?Mf}?k-cbRWKpC6(+KFL-FKMumty9`rK?-Crn%l37iq~objc7D|noUa2Xj6l6h za5`J2dYA2^D)cVfIz9VC&9Qm_7op1%8gjx+!%so7^YY@eg@$dlHNFoay~})LjhbWS z6@(TO8uI5%!%smn`xD#BpZgHfyUhMnbFA!u&|*SE{+wy}DM)62Vq5uhA3}PU*`I2T zl^qaTOlZiTGYvll$?Q*TD}U}oNbfTHQ_Zom144@l4f%7X;in*({fTYm&wU8#T{d6O zRAvlP0B0$jSA8kz7{)m`;OJfU&SsZ%43iw3tHIH`Y`;XHcNruH<K^mwK1^=JWX_ zp5xPC(((Jv7rRE*y9`rK?-Crn%l1X!C#x2A2jFokPUC*AKclASEsQ|DOK>_{rh1p{ zqZ0Kl+d4gK=%=*`hcxNmHk>E-__bmyLPJj2r#Pt2**WUxexK)k3)@PlHu7f(>0Ra{ zQ@1KB4%r@|%J!3lhWt6x@Kcb?M#8o-(msUrF0((?94k8@w3yJ4KldpPs&i)BTM3oz zX9($C>RrBi*{OFKj5!bIRbNUvh5-oi9I6bo}<_i(Mn@U4|*AcL|Q(W&0vf((&sg9lLfoUfFEi?A~Pogb}EB z2~KAdQtz^TRE6GUTc_tqtL9kkEh2PTLPJj2r#Pt2*?HCSexK)k3)@PlHu7f(>0Ra{ zYt$SouOPIT(2zg(DGsW0W`9}0M@jsySA6Kxi?cA%E^u98~Ab{N~ruf zLrCwkaX$L@o1|lq0ysUNTn&!iW&0%pNyi{La2CPQ zyVSePH=oZh@f@FID}z`E;pkn4DW`V{j^1VaB2Wub3-T6x)HvzjDe_OYa>5AIy9B4R z38{D4J}Ob~vaQqOaJK#Wh(i+Dsv!Bf2n{)5rs1a`**QGt{tMUprZBeE*7!bz^e*#} zsgte3p-Js$RtM*8MQF&M`xFP&IkWApgv$0ag!C@6Kh+#7mm##6(2zf88h#3r*+|${ zM%ssv-eq%RY`$9f>XoOT7&NpMoL7A*=@`a2IN<1A_ReOPbPUn~=W1~DF53@rNIC|| zfwKsX-lg7UzWIE9i0b$xTN%VU2uJTSOgX(vaP%(Q7lFIv4#UW8o*eYJEey`riGhX@ zsCNlYXUkOYvVByA-ep^-$II~#f2cWD+n@+tme7zBW*UA9lAV_q6(m2n7WY|wdYAdg z8a2ntD+nzn^ud|+d@1lb<7XOv3X<8M*jA60?L$cKGW%1_v9bd~iwO<+bEe^^AesG% zZRO8>2RslW&*ztTj!%P0$L}{^>>63`GE6zWOK|iq+ZTbKtXkL|fXAsgjr+O&jGCUe zFaq^1!Rc(7>Rq;vO4Pe->-4N4HOK0>AcQVUXvhis6bIEgJ4gLIU&OT%s*U^^LVB0^ z$keUMibEI02vz2tBsApDnTDT&WHu7Em67%#q<5M9speSO0inf&hWxotaZsHz+ulm3 zY(GOt?^5sb)yvMU>XW}coL7A*=@`yhv$_@xECN$*FeTswXoY|jNLgmjH zLVB0kpK6Yk9S~YfXvm-Y6bIEgvp=nb%AYfY^e(eM)f_83Ahej!kU#e+4ytoze_9EZ zKW7N(T{g}~|9+En3{n7RDV$e*Dd`vnBsk#cUG~mqmvju19Gt7c(YtKFL?G!HBnQqS zIC__Qm-*)N`6Zs?lWb)W>mVGx%P{5iF2T{eY+nRwL25zXf{z*}9Xv(;$yQDnfqIwV zbT%RNF55>X>Rq;VdK}L7*j7|?td7z_=(2={oG{byQ;_T&o^$_&>wQxg+iGikA3}PU z`N-7CR^iYEk)K()Y%4-T{@kZHsLq*fZzWW=pCP1onfk3h4ZQ}B^|>!2L~Lz%ih`Sl8#}LgL5@FdYA2oI3yi|%>6A2-Ld- zr?X|MciBFwLhrJz)8pm%hd-kdPbH>j!{1ha!Ke4SIE!&5X-evZunqy@LgccJT^5;y$PeC&K6Whw4 z`w-H*%>Gn!tn7f$VnRdyoN4$eNM?UxTlsSzLVB0kpK6Yk9S~YfXvm*44L=3R>`!bf zf9^v_@3Q&Ss-$C(0ysUNTn&!iW&0%pNyi{La2CPQ zyVSePH=oZh@f@E9laAkSzSuRg-es6_dY9nnUA8X*KUuY~I{=SUaT@n?{TVeqZ(#)L zU4qluGS$0mAC;(g+1BY>JJ4tBBpEC_V1<7nAY%3$}LrCv3`%}%avI9bk2@UykpW>i8XSThSP}zQl zklv-<<*S#SdY8eN^Kf4ErKDpRkl=u$ciB6eUD7d3a&WE&NAI%z5Qn5=kQ_LR;OJfI zUFMt5=ZC0{PlHLvZ*RWXHL~7im~wiT;OJepF9IbUzfRJzYlq{N&Bo2{T^2wXfqIwV zbT%RNF55>{=v}sTdY-guj@8~GLYE~pCv`E#G*pgL#vr`yhv$_@xECN$*FeTswXoY|jNLgmjHLVB0kpK6Yk9S~YfXvm-Y6bIEgvp=nb%AYfY z^e!9cqkq3iItD3#vlPy&zLazf0}>o?^e%g6vr9ULNe<4{;OJepUm}on43Yz95gffs zy~}*_`TP>k@kzEah;jBT|wz7HY2%Y0<& zWUFxKg2>OTT(%XVA%E^u98~Abwzm>0+s_cvyUhMnbF5s3&|*SE{+wy}DM)4`VOtq# zA3}PU&5g17YT>I_o_=D`&{l9>^`)d^80X-Cqj%Xmn_bc|NC%v&!O^>HKg1#F7$gVI zA~<@NdYAd;^Z6mF}wD?1>xn9z_vXBvJAlG&fw zR{q?FkltnUsZ~kGAO&!i!g!@3O7avxd|htK)(Yx-6j~C+t%kROjp*_49lY*Gi~1@@EL?UFIWG zw<;?RT@)i!nRk-VkUwV{ehQM=NZ3|J+J}(dW%j3F4?H8^^g?T0ud9fRb+Sp-M# zQtvX~d_F%!b$l93I(~ce#jcU{F2j`5y97t?vV9RK>G*Y$j$Jz(uWUAMcJHzP!U)v6 z1gEnJsdw2vszUFwt<&?QRdcMi&k(vSp&=*iQyf(1?7V7uzt8i&g>5BN8~HPY^e*#} zHENEPR}flEXvm-Y6bIEgvp=nb%AYfY^e(eM)f_83Ahej!kU#e+4ytoze_9EZKW7N( zU1oo(IaYQ+XfdH7f9_KpROih8v=SGn!tn7f$VnRdy+^0CG&YAsbB~<>L zA*6TNI3NA{P0}$)0i309UiGDJ1$hfTYMgZN6!|AxIbj6qU4qlu zgw(riAC;(g+1BZCINM`eQO&VBN(Z6K5*l*COv6t>vU7OO{THtHO<`=St?_*b>0Ra{ zQzu)6Ll;DTX63T22o3pjpW>i8XSThSP}zQlkltnXrhDi?2)!^t|wjbhTwTe!ux**T{O8Van-Uf}?lYz6kte)xz!oJWj=F+|TuA)bzZC5vX?w zPG`$h@3MVVqTXd&r)LeRIabF7A#_0N@OciFxOlyv+$Nyn}oj#oAtH@kOP0AU2`U4qlu zgw(riA621u+1BZK(yBRDdy5ENme7zB_9+gkb9P>}yx-?}-@>*Ms*U^^LVB0^$Qm`r z$}0#hCN$*FeTswXoY|jNLgmjHLVB0kpK6Yk9S~YfXvm-Y6bIEgvp=nb%AYfY^e(eM z)f_83Ahej!kU#e+4ytoze_9EZKW7N(U1oo(IaYQ+XfdH7f9_KpROih8v=SK?48Xn=@=$CI9G$CciDc4K+-Wt4xB}B^e*)- z^Ude;OFYLX*~%c+K{$GsVan-Uf}?lYz6jKU)PlSPA2m)oc#8a!t(-6d^)A8bY(nZ? zwvS5GyKL+9IGpXVt*GW$9i@ZNWeE*AVW#1yAlW%Q=l%=V`=&6q)z>PWu$!w z>0LHA#^$SquU>iji9thK!Fkn}l8#}Vg9DDM z=w0ev=9|ywhp3KEvXw!sgK+dN!<5sz1V`_(eG#}z?l6qp=E*^i+rr>{ofv2sfqIwV zbhb?OF55>{=v}sTdb}L}@Q0dXwGE2UWeE*AVW#1yAlZ3&Q9<&9YjK~|r+1l;tWk5U zyn@hTLLZ!2&zAz9Gk&Jwry!aAiEZ_0**=8yF0((?94k8@w3yJ4KW7?#3X<8M*jE1B zhmhW7_NSU-We0>76B_d8Ov6t>GW!$T%AflX(!0$5RCBECfY4$>L;jp;_$f$ce_~tt zb00!_m(8bEB^`qlz*!3CRbNUvhH(xKIC_`8v)Lsb!z2giYH;)}+b)3~4O&n3nNhP z5}eMKsorJ#s6@TXwocC)Qgf`13qt6!god23PjOJ4vvbtX^F>@Mq1wowA*6Sik4)XF ztT=R0j8J9XNkT*ZoN4$eNM<8pTN!B|LVB0kpK6Yk9S~YfXvm-Y6bIEgv+b>f%Jwsa z^e*)-U%l+ysy_MK!+F)0l8#|Of&-4;W$$cuNyl*Q1J2dp=v}rS;*fL&^9KFl-MWCeP*GW2d?Qp!Z*|^!g%K``^Q123) z&L*VZW&5ZKz00;v&y!ZovD!XE=(2={oUl)EP@S{$s^$GY&-)g(l~8Tu&k)kP%tzL! zIaXdlXfdH7f9_KpROih8v=SGn!tn7f$VnRdy+^0CG&YAsbB~<>LA*6Si z{i)_y*#V)&gogaNPjOJ4GyBs@sQfuYNbfTHQ_Zom144@l4f%7Q;-ETb_NSFl`E!Pl z-eu!_^zS!G#~=l8mcn_}my(WQK!O8~-evD>c1g!D$-%iA9KFl-O9YaRL2}?Mf}?k- zcbRWKpI_oRKFL-Fu@1t~y9`rK?-Crn%l1W}7Ni#BE%>N$(!o>YpKRrX5vX?wPG=KR z@3MVVqTXd&r^n%Jk8MRY$Lc5@gf2^H$O$tIKLyFo;W_tTxZXE~v8}eo_aUTrnU74J zY!wb&5c!#v%eEpkrQqnPub8x`XyX>9KF6kI1IXG8?qj%YUh(ppbNDiDuaP%(q zF7wUj^Fvg}C)vs%)7i*PeHQt@}h#|2iM|0t55GTA6cX3Sa}7Z z#e_aMvz{*nK4<()!%smn`xD#h(XxFA>0M@jsySA6Kxi?cA%D&^{1ha!Ke4U+xep<| z%j{1z$I1=}EhaSN&zXjwf@Jn5wv|8kA*6Si{i)_y*#V)&gogY%)9_P}%>Kl-^5;H; z^e&rEtx7ruDS)#S&a1wZbPVGh9B}k5duOvtI)+IO&eh=PUAA8$kaP@^17{H&y-U5z zeDnGI63_8zFzNXH=8Ih;>s^K^r*{dC-evnD@RL;wy94kz6{m4O*Pl_-^A<*+-X%Dl zEmOVA_ECv?mu;P%HKgWP9T$YqWeE*AVV~llI%nsopXZCXRzkIrKSN0GG9Q_`RatT9 zq8Opdypx26{5jL`Q;^I?!nQKfK7{lxvp>}wD?1>xn9z_v_bCplb7tFH36Gn! ztn7f$VnRdy+^0CG&YAsbB~<>LA*6Si{i)_y*#V)&gogaNPjOJ4GyBs@sQfuYNbj<7 zKKl2Yq+^f*I7{KY>Ptz-Fd)GJNAI$CHoK%_nB?GG4UXPr`y~QN#~?Xy7QxZG)Vs_# zpU*Gx9G_$>gIEXQ=v{^>r*{dC-evnDPzzEE@)ms5IO*Ui@=vyM!U)v61gEnJsdw2v zDpBvUt<&Rhw#T-jnqzg84nmhDG~|SthM$6D=kT2SFI?}N!q`?@Y@B|4Q&PIRbNUvhH(xKIC_`8v)LsbgLJ^T8XUdL_Cp+!jzMzZEP|tV zsdt%gKA#_=IzGu(2C)vp(Yp*&PVW*Nz03AR;4ZntFmjtG2R&{JgY$J_pkV~+U4qlu zGS$0mA621u+1Bata{R*|YL3-5C_D~aArMU3VhD^nTDT&WcDYv)uUzm5YoHM{#0|U?10c>LPP$XY4|BfW`AN^`Ewsa zdY9RsYL1m15L!%V$e%L}KLyF`Pi!lH?n6lLGW%1_v9bd~iwO<+bEe^^AesG%ZRO8> z2&^9KFl-Mc^l^7Ip{VaVk#Zey%^Grspk;K)p+F zI$NfCm+hkx^)A~wJ!?qKu{tgYq015)a>72vL3Pf~Q9sWYajk@EBY%dF-eo>Ab*r-C z&_yvqm3b!#4f%7X;in*(jf8DwqRbNUvh5-o*?x#a(lJO5oJDZ-F7+<+ z&FAw&RL7^mq~o_YU+fxL?=nm|y-RTPF54G@l8#>|>DaZy@ycf7X7?@&AdEo0OK>`y zkb0Nxqbl?++d4f@S~bUN`wXGW5*l*CKE*+G&d#fr_xn8WTi8}YwUIwVNbfQqS)=Ay zc?F@xgogaNPjOJ4GyBs@sQfuYNbfTHQ_Zom144@l4f%7Q;-ETb_NSFl`E!Pl-evZu znqy@LgccJT^5;IqL3PgTPb;DF=L{je%j{1z$I1=}EhaSN&wYx6>YUl1Rzl^^8A5uO zjq}mJ-y|J_6u?;u=T%=yI)(uW4mf(3y|dXR9m6CC=W1~DF552=NIC||fwKsX-lg7U zzWIE9iRbtvTN%VU2uJTSOgX(vaP%(Q7lB%kT9CKkqsB=GPmzDJl@msw-X%DlO-Q}V z_ECv?mu;OMhqFDl71bQ8qjV6uETJJM%ryKIBs+)a+<)PE-xS8S+8W=7kltlJGIg?5 zICMeeXI3uTiqMch_bCplb7tFH36UNTn&!iW&0rxNyi{La2CPQyVSeP zH=oZBQ5~OTD}z`E;pkn4DW`V{j^1VaB5;@7VHmm1lY<_&g~9ncG0-pq^)A8bY?iZ?0bGPGOK8XmGYvll$k^)BMorIK7=e11;B>Z3 z^)A~-CF)(ab$Zs2nqzfb5JHzFG~|SRii7H$ouhu9FXCDW)kgjdA-&6dWa?IB#i5I0 zgevn+5*qU7Ov6t>G8+lo%1HYV(!0$5RCBECfY4$>L;l>SIH=BSd?iWiaMEoL7A*=@LA*6Si{i)_y*#V)&gogaNPjOJ4GyBs@sQfuYNbfTHQ_Zom z144@l4f%7Q;-ETb_NSFl`E!Pl-evZunqy@LgccJT^5;IqL3PgTPb;DF=L{je%f|WW z-*1wRK?>k3h4ZQ}B^|?n1P2_w%ih`Sl8#}LgL5@FdYA2&2qYbY+lp$A)loVKU6#<06J{EI3X+|}bMC)zy>AL*TWyW+LrCv3ADKGYDjd2X z@-r)!ZAECvpZgRC)j6~6t%S<}wE0-a(n9z_vXBvJAlG#YuRz})~kltl; zV{E=!`0ACXpBOZ>6`WUnDd`x-IXK|xUG~mqmvju$0q1IP^e)>EaY#A_$$_&7j^3r- zWxn}*eu(P$BwHE8ItWMaGE6zWOK|iq+ZTbmCv`E#b>ry!aAiEZW2eF*7Y zW`C+VR(3#WF`*%U&NTcKB(p!Ut^BzUA-&7&Pc_HN4hStKG~~~jhM$6D_9wQLKldS| zciDVuRnjp?0i309UiGDHUj#}zex0Oa*AB-kn~j^@yDWe(0`)Gz>1;yk zUAB*^(7SBw^gLYUl1Rzl^^8A5uO*`I2T zl^qaTOlZiT`xFP&IkP{lgvy^Yg!C@6Kh+#7J0P@}(2zg(DGsW0W`9}0LI? zNB@44bPQ4eXDOUleJSY}1|&G(=w0^CW|wpflN_9@!O^>HzeFJE7$gVIA~<@NdYAd; z^Z6y7fHO7=e11;B+=2^)A~- zCF)(ab$T4m_SjZbbF7ZiLFlrChMX|d@KccN9G-Lkh3kD&7~5)Vd>=x3m-)!l$yVXe z1(Bawxoj&!L;l>SIH=B_=i8#9IFR#5xOj)At%f<{1hZRFE1)cesC@Bv-Rp1<*)r9; zY#)`VciGnISwm`$)p0=xU6#<06ZR<%s&jUZ`gy*HYb8`0`7?y{F7uJ8Ta^`uE{YMV z%sWYF$e%L}KLyEbBy1}q?L$cKGW%1_v9bd~iwO<+bD!d%I%l@Ml~CD!hLGN+-sP*8 zoqCtSnDcO6^`)d^7?9wAqj%Xmn_bc|Omc9p21oC*{Sb$wV~`v;i{R*8>RslW&*z7z zj!%P0$8T@G*fp}=Wteh$m*D7Kwl4xD9luV}v1^CpmCeS@?p+o@7=e11;B+=2^)A~- zRp?!|b$Xt(YL3<3B0`rXG~|SRii7H$omVaI_j%s8u&sn@BY%dF-eo?rM$NJE3POts z4f%7Q;-ETb_NSFl`E!Pl-evZunqy@LgccJT^5;IqL3PgTPb;DF=L{je%j{1z$I1=} zEhaSN&wYx6>YUl1Rzl^^8A5uO*`I2Tl^qaTOlZiT`xFP&IkP{lgvy^Yg!C>O=c9kW zNje58fU^|NtG<+U3hDi?2)!^t|wqGKUbPSRMXAvB|OTEi{^ZEP| z&+$pNGKh5$j^1UMa(b8G=v}ri0<|EuAaB7(jgt`ykb0NxqZ0Kl z+d4fCXM1cbsyS9i=^%7jLPJiNY4|Bfb`HSU{M=z_@4 ztX#Ggp&@_nQyf(1%(k}@D%;Nx(!0$5RCBCchR|X{L;jp;_$f$cBVk(^X&*v*m(7i_ z`D)>-SDt=i(9l+JUiGDs^gPvWf1Ei9KFjh<@7GW(YtJ41n!bM3?sLBa?s`yhv$_@xECN$*FnTDT&WcDYvl|T0(q<5M9 zspeSO0inf&hWt6x@Kcb?{=~NO=RSn=F0((?94k8@w3yJ4KW7?#3X<8M*jE1BhmhW7 z^Ql!y#~=l8mcn_}my(WQoPz_7-evD>c1g!D$-%iA9KFl-O9YaRL2}?Mf}?k-cbRWK zpI_oRJ`E-vzu$bZYh=C4Fy-_v!O^>HUj%-#YGHQ(9;f0o?&tb5YI@$n2-Ld-r?X|M zciBEFQSY*?)3b)u9INAk5V|a(At&rp98~A*9QE^j5!XtnHu7f(>0Ra{Q@1KB4qX%@ zRGD{@(2zf88h#3r*+|${M%ssv-evZunqy@LgccJT^5;IqL3Pe-dn=)`{R|{A?6=j^;{dB4x|zJ+ZiR2%s-g!C@+ku_?Ll~)j2 zOlZiT`xFP&IkP{lgvy^Yg!C@6Kh+#7J0P@}(2zg(DGsW0W`9}0M@jsySA6 zKxi?cA%E^u98~Ab{M=w0ev=9|yw zmw1j(vXw!sgK+dN!<5sz1V`_(eG#YysRelpK5CqF@D%wcTRC9_>Rp1<*@V=)Y#)`V zciGnIaX8y!TT#uiI!Xtj%Mu!L!c4G8+lo%1HYV(z|SK zj7d5MDS)#S&a1wZbPVGh9B}k5duOvtI)+IO&eh=PUA7g{!nwQ9>7KDvV?}5Fw^i;knFs?s37^lwYbmf)4R+^)~GpFUO{Lvp%2ci z=SzXl89&qTQ;^L5#I}00Y#%~;m)W0cj+Gq{T1;rjpEC_V10M@jsySA6Kxi?cA%D&^{1ha!Ke4U+xep<|%jQ$7 zl8!+N;4FpnsxKuS!#D>A9KFll+3b>zVUmM$H8^^g?Ux879fRb+Sp-M#QtvX~d_KR# zb9@?1I)19YsX1211tD}ZQ zT?S*$!+F)0l8#|Of&-4;W$$cuNyjkB!MPe7z03AP9FmSfa^Nh2qj#xynQuOyAEG)w z4JIAGz4>C-$aRp1<*@V=)Y#&vj zciGnIdD5ymR(p#GU6#<06ZR<%s&jT;wY=ZwdEdge5~_{-8A5uO`N$eI$I2@REhaSN z&wYx6>YUl1Rzl^^8A5uO*`I2Tl^qaTOlZiT`xFP&IkP{lgvy^Yg!C@6Kh+#7J0P@} z(2zg(DGsW0W`9}0M@jsySA6Kxi?cA%E^u98~Ab{rQqnODNN~W>yX>9KF6kI1IXG8?qj%YUi9pgZNDiDuaP%(qF7wUj^GiI( zC)vs%)1;ykUAB)()Vpl! z^f;XDv8|})SRJK<&}9h?Ibo*Zry$umJm>xk*ZZb0w$;}7K7{lx^O32Ot-_%TB0sZo z*;a&x{JBqYP@OZ|-b$!!KSN0GGW%1_v2qzgiwO<+bEe^^AeoJXZDpi=2c1gz|9dND&NAI%z5Qn5=kQ_LR;OJfIUFMt5 z=ZC0{PqLLktb=g$F2j`5y97t?vV9S_OYSg?+~&zakK4lFe4Q9*7=e11;B>Z3^)A~- zRp?!|b$YxU|L}*JW3>&6&}9h?Ibo*Zry$vRc~L>~gKKf0)u(rvkE~I1th|EIVnQFB zSLPP$XY4|BfW`AN^`EwsadY8?o zRwW&S6u?;u=T%=yI)-r$4mf(3y|dXR9m6CC=W1~DF552=NIC||fwKsX-lg7UzWIE9 ziRbt(8j^c?%;@?-HEOmZ{!l z`=~^{%eGF>8d7ttjtfHQvV?}5uupMNowIY)&+|oGE1}xRpCP1onU74}s;oG4QH)S! z-bq43{+wy}DM)4`VOtq#A3}PU*`I2Tl^qaTOlZiT`xFP&IkWApgv$0ag!C@;E?>Ru z+^RnL+rxR)my(WQK!O8~-evD>c1g!@?E}u$;OJepAL5X743Yz95gffsy~}*_`TP*o z@o6yW`0dRXyGGW#3{y_;5*)qD_C=tiN~rufLrCv3`%}%avI9bk2@UykpW>i8XZEL+Q2BF)kltnEeDv=( zNyi`saF)V()t8cvVL*Zdj^1VOY<5Y#b4HOJ~G9fU4RXvhgO4L=3R&fz)tU%1{kg|V%+#`htlcbSh&oop2jT@d-1 zmCLpwG~~~Hii7H$+4fdKW&0UIdY9RsYL1o55L!%V$e%L}KLyEbBy1}q?L$cKvbixP z=@_H{&Qdt9`cl#{jB{|n(Yx%O%`WK}COJ4)gQIuZeuzWTF-Q)aMR4>k^)B0N@OciFxO+$DDyMsD-upvP@taK26qG>kyKOK>_{rh1p{qbl?+ z+d4g7j(_+=&9Qm_7op1%8gjx+!%so7^YWsCGW!$T>d~@&2Z?m=%N^*%Dj_= zhWt6x@Kcb?M#8o-(msUrF0((?94k8@w3yJ4KldpPs&i)BTM3ozX9($C>RrBi*{OFK zj5!bIRbNUvh5-oi9I6 zbo}<_i(Mn@U4|*AcL|Q(W&0vf((&sg9lLfoUfFEi?A~Pogb}EB2~KAdQtz^TRE6GU zTc_tqtL9kkEh2PTLPJj2r#Pt2*?HCSexK)k3)@PlHu7f(>0Ra{Yt$SouOPIT(2zg( zDGsW0W`9}0M@jsySA6Kxi?cA%E^u98~Ab{N~rufLrCwkaX$L@o1|lq z0ysUNTn&!iW&0%pNyi{La2CPQyVSePH=oZh@f@FI zD}z`E;pkn4DW`V{j^1VaB2Wub3-T6x)HvzjDe_OYa>5AIy9B4R38{D4J}Ob~vaQqO zaJI*`qMBoMlnz3dB{bxOnTDT&Wasdl`!8JYo5I*uTjTo>(!0z@rcSmBhc1Zx%*th3 z5gPL6KE*+G&TM-tp|br9A-&7&Pc_HNWe6=MG~~~jhM$6DHWId#k@g{^ciG$+o39qW zdgbXS1`TZm=T%=yI)-r$4mf(3y|dXR9fNehxf&e3%l1PYl8!-g;4Ffpcd2)oZ$6(N zqB=gwRtB*S!qK}7Q%>&^9KFl-Mc^*E!!UB2CkH)l3xo4@VxVCJ>Rp1<*)r9;Y#&vj zciGnI@pAmbA8L-(HYh@uB{bxOnTDT&Was5Y1<4Pt#eG(v-eo?rM$NJE3POtseQ;(y zUkZHA_?d>Ef@Jn5w$-C$`w-H*%>Gn!tn7f$VnRdyoN4$eNM?UxTlsSzLVB0kpK6Yk z9S~YfXvm*44L=3R>`!bff9^v_?=t&S&9SlrLW>Cv`E#b>ry!aAiEZW2eF*7YHlJFR zbPQ4eXDOUleJSY}#yL3P=w0^CW|wpflN_9@!O^>HzeFJE7$gVIA~<@NdYAd;^Z6y7 z&QU+l7jdnGY9oJ!kltlJGIgu6;?PAgLX~+Z z2@Uykrs1a`nT>>PWu$!w>0M@jsySA6Kxi?cA%E^u98~Abwzm>0+s_cvyVSdU^|EuT z`s8m9=T%=yI)(uW4mf(3y|dXR9mBN`I9G$CciDc3L((xw4xB}B^e*)-^Ude;LsZA7 z!KCB2H(%@;S?@ATIlW78^e)>Mfs&42C+XO=!|}>y<7W3R3m}X@y-RR9n~-{!?V~F6 zF55aiPg*s{YWobK%Mu!L!al`8bN~rufLrCv3`%}%avI9bk2@UykpW>i8XZEL+Q2BF)kltnXr>`yD9^5+a8z02%RHOI;h2rVWwg2j^;V^e)>k5lA`)$$_&7j^3r-Wxn}*eu?M! zBwHE8ItWMaGE6zWOK|iq+ZTaakXn$p;G@P#2TzfIvXv7?pxz}oolQu+%l1);dY5gT z9*46%wiVSJtD|%fx-6j~C(Jbb6eK%`=iGncdfybrw%QushmhW7J~DN(RXB7(lhAF3a369=n`yz0c++i5G&69&3w}rv^Ix)~N0`)Gz>1>(mUAB*^(7SBw z^msY`;SV*(>H%DYE=y?02{R2p1}wD?1>x zn9z_vXBvJAlG&fwR{q?FkltnXr*?x&Y(lJO5oJDZ-F7+<+&FAw=JjbWO zq~rISFLsTrcNwOf-X%DCm+gzdPgX7L4#4A7oW}iJe@0EuTNr_Qm*8}^O!Y3?MLPP%Cr#Pt2nQd<+RJNZXq<5)z`RZk--eoZ6 zJe*g3Dd`vnBsk#cUG~mqmvju19Gt7c(YtIv#3AVzBnQqSIC__Qm-*)N`5~&~(_qr^ z+nXN~rufLrCv3`%}%avI9bk2@Uyk zpW>i8XZEL+Q2BF)kltnXr>`yD9^5+a8z01b==-+RWjzJ3G zEQRx`FC`trfCL8|z02O&?2?XQl7n+KIC_`umk1;sgXF+j1V`^u?=s(fKEK3se3GpU zVjYB|cNwOf-X%DCm+gx{El4fMTkuiiq=To(KiSF&BT(-WoX#es-evo!M7_(lPLIRc z9@~m)j@3~*2wj%YkP~JaehQME!*lMxaJ_E|V_R*F??XuMG9Q^b*(w~mAo4RSmu*F8 z$e;TZ2h};V?X85$_A`X^F0((?94nV0w3yJ4KW7?#3X<7K*j7f`hmhW7b7O42TKMXf zr=J)!v=y9JeJSY}#yL3P=w0^CW|wpf(gEjcaP%(Q4{=C32FZc52#(&R-etb|e13@P z_#|5y#5xE^?=nm|y-RTPF54G@yW|eT$Zeh+^tdey&ew^7h7qWD2~KCrRPVBVRE6GU zTc^j%@ehBfIab@C2wj%YkP~JaehQMEmlqWzKe!h6S$%q!`N$eI$I2@REhhBAne}`r z@HyjW8h#3r*`L@}kCyF2NbfTHQ_Zom144@l4f%7X;in*({fTYm&wU8#U1oo(IaYQ+ zXfdH7f6g@g6eP1hv90{M4`yhv$_@xECN$*FnTDT&WcDYvl|T0(q<7hTYE{xP zNCBLsa9;JLq+=N8;DDod**lwE(lJbOaIOYN@3Q?8fuv)Q95{>M=w0ev=9|ywmw1j( zgGtBlH(%@;S?@ATIlW78^e)>MfuF2e*d2h!sW^@Mx&Dlrp0_Xp^)A8bY?bM|;E=y?03HuZW)j2yy{XAd9wGyh0{24-em-)!lt;&i+7sUuw=A9%o zRq;vs?fV^ z>-0Qn)f}tsGlVWnXvhis6bIEgJFi;a@AJHGVOt5+M*a*Ty~})LjhbWS6@(TO8uI5p z#X)t>>`yD9^5+a8z02%RHOI;h2rVWw}wD?1>xn9z_v_bCplb7p^936(!*2>QqR|Ap&)QyAN7YkVIA9KFll+3b>zVUmM$H8^^g?T0ud9fRb+Sp-M#QtvX~d_F%!b$pVo z3}PLGqjwpmoZclkdYA2sz+G~OVdOSX4tm@c2IuRsy9B4RWvX}CKB_|RvaQqO z<@kp`)Euh^a1pvJp&=*CH2f4KJ1;LPNPciF?z8&zF7uH!YL1mx5L!&=gEQ;-Qs8sO z&oulLB(p!UtsX7ghmhW7_NSU-We0>76B_d8Ov6t>GW!$T%AflX(!0$5RCBECfY4$> zL;jp;_$f$ce_~ttb00!_m)W0cj+Gq{T1;rjpEC_V1Cv`E#G*pgL!^y_Hbeeuj|VrQYSMmz{c-!I<-K zUiGDi8 zXZEL+Q2BF)kltnXr>`yD9^5+a8z02%RHOI;h2rVWw)2 z?o%98=ghXZ5-Quz5YoHM{#0|UT!zqMLPP$XY4|BfW+P!+8EGFvdY8?OvH5D@t5=?W zV$jf5a9;JLq+=N8;DDod**lwE(lJN}oU6gnyKFziA?X+-2hJimdY5{a`R4QaA*$n( zY-JGZARN8RFy-_v!O^>HUj*)wI}9VYd2-O>wlFwfCk7fupxz}ooh?(n%l1(fdY5gT z9xul~{GsMpZG$3oSwcfjm}&SaNOoRcRFM4OTHI&#>0Ra{Yt$SouOPIT&Kl-^5;H;^e(eM)f_83Ahej!kUwV{ehQM=pV(IZ+=r0fW%H?3Nyi`s zaF)V()t8cvVVr{lj^1VOY<5Y03N5}H16m6GirL?!U)v61gEoQs(0BwDpBvU zt<$rH)Eukhf)Khap&=*iQyf(1>>Ty;d=b}5s5bIv2Ya5@3O7a z^Q2XCthUb(x-6j~C+t%kROjrxYI(oU^S*^`B~%;vGlcXm^N}@bj+IvsT1;rjpZgRC z)j6|2t%S;-GlcXmvp>}wD?1>xn9z_v_bCplb7p^936(!*2J|zDu2!p(!0$5RCBECfY4$>L;l>SIH=B<{b?ms{+uDCciA`}{rgSQF-QTN zrEp&LrKDpRkl=u$ciB6eUD7d3a&WE&NAI%z5`m;+kQ_LR;OJfIUFMt5=a+bnPqLLk ztb=g$F2j`5y97t?vV9S#1*rvj3qER`bnq1UCtEpT1nOOa)7ga7yKEnosCU`c>2WyQ zV_Q+pu{ufzq015)a>7i*PeHPCc+UM7uJ=u0Y^$yDeF*7Y<|9)lTZKaxM1E%FvaJXW z`E#G*pgL!^y_Hbeeuj|VW%j3}g!L_*0>eIW-N7kr0R$f79F`*C6tmjLC&lx|{ z@Kcb?{=~L=v}_+jdY9RsYL1m15L!%V$e%L}KLyF`Pi!lH?n6lLGW%1_v9bd~iwO<+ zbEe^^AesG%ZRO8>20N@OciFxO{AAU_?f^Va#cABn^=H)dyoC{{cL`2s%T({OeN>{}Wm~6b z4XHU+#|0sDSwcfj*rzzC&e=KY=lLS8l~8Tu&k)kP%txkfRaP9jC`PC`yhv$_@xECN$*FeTswXoZ0qPLS_3ILVA~am#Rkq7&ck`t zmy(WQK!O8~-evD>c1g!D$-%iA9KFl-LmZNhL2}?Mf}?k-cbRWKpC6(+J`E-vzrFcl z*T{O8Van-Uf}?lYz6g|b{5na;t{sk7HXAp)cUb^o1nOOa)7ga7yKEm-p?BHV>3Pzs zIaYg%2wj%YkQ4SP4yto@UbVd6=Xu}4wi2q1{24-em-)yVHOI;;2rVWw}wD?1>xn9z_v_bCpl zb7p^936(!*2J|zDu2!p(z|S&kN*88=@_H{&Qdt9 z`cl#{3`lUm(Yx%O%`WK}COJ4)gQIuZeu+TRF-Q)aMR4>k^)B0N@OciFxO)PmH4yagXMPC9ss{FAMmFaq^1!Rc&5>Rq;vO4Pe->-0FB?Xj(> z=2#u2gV1FO4LM<^;in+kIXvh73)lOmFt*j!_&$X6F7uJ8ldZy`3nD+Wa@kgdhWxot zaZsHz+ulm3Y(GOt?=t&S&9QPBLW>Cv`E#b>ry!Y)gl%P{eF*7YHaEuRtA(##dHRV# zLtDXl)t8cvVVr{lj^1VOY<5YRslW&*z7zj!&|c zL9Byt^e)4c)4K#m@3MUnxJ&LZjNInQL66(Q;C!7JXc&Qdm*8}^O!Y3?M^)%uwsm^E z9RKi#nq##MiqK^V4LM<^;in+kd3jMm@`Gz}pVg;#nUAbdbF93A&|*R#oLSG80-rN} zrs1a`nf-}v^=R2Xg!C@6Kh+#7J0P@}(2zf88h#3r*`L@}{@jO<-evZunqy@LgccJT z^5;y$PeC&K6Whw4`w-H*%>Gn!tn7f$VnRdyoN4$eNM?UxTlsSzLVB0Yr&c8$gA~A7 z3g=Z{N;-yd4h}eam%X#uB^|>g2j^;V^e)>k5lA`)$$_&7j^3r-Wxn}*eu?M!G?;Y! ze)Gkyk@YUal+(KeNAI$I5%|ffh1~&ooQl)9pX<-4>3ItyQ123)&X%d(W&5Z^z00;v z&l*y5td0vp=(2={oUl)EP@S`L)X(!pTq~j4$e$skcbSh&-KwlObWw~@W!_0bL;jp; z_$f$cBVk(^X&*v*m)W0cj+Gq{T1;rjpZgRC)j6~6t%S<GJ|zDu2!p(!0$5RCBECfY4$>L;l>SIH=B<{b?ms{+uDCcbWaE=2+PQp~ZxT{JBqY zP@OaT(@LoPIYUVAGW%1_v9bd~iwO<+bD!d%I%oE$l~DO}hLGN6<9zh*H%Z4J1#p(a zdDWMaj$uH81CHKh?`(ES$1uskxf&e3%l1nIl8!-g;4Ffpcd2)oZ$6)2;yFIaRtB*S z!qK}7Q%>&^9KFl-MW7a>7UV7XsBzN4Q{Dfp8(0}**zv`QR`Cl_>gb;c^#OV+J_$=}L-Cy1Re*XLa^tXR_yo&yz zPrh04LI|N>|5nYcgnzmH@=t&N*Z0#Z|Ke}{=l$MK`G5cM<{Ma5E9UF0lDB{NyZ`vR z|8f7%f4~3dzdir+{(ry!zx~_)r2kI(XaDbiC;fNQKlA-x2_#18pW%n!JAt%D(m%6) ztRL&g-=8!i(myjl%n$R!{75q*{WJ5!{4hV(%#Z*0$J;Oe^Kbs*euwO@|NfuucgV{B z`(JLpfmO9)zS1iB-5>t;@%-jr{oNx!^}$b%O7;i;yZ3#gAO4%ZS&>Evp|{_?GkC0o zfBeJasg(clSC6R12S52{#S0;X-hTJaU}h!!-|*b%eZ-`;#N3`cOl`Om-nug4wNS6{n(`^#VM7m%Hc z%jP+DPe1^4nDaO9tKZ(m1Sap~V$Az`$9TqgF5V~<0G!lthAV_87ox@Er(cSHZSd$d!_&ur zA9BqemE2OnSudqJ%8pQH0-5^EI6)Y^G-nzLY^HUv?@X& zm(^74hckhnDHy=k^JgAH!(MvGg5ydy?-cYPS{)(pSmgZ=cgo8~{1H;Um19N>Ip%~AhxQ#ih8FuSS7!-dOmx0ytt5Mc_Da#6T)< zhBuS4qc}?2sXOr+2#(gdp_La>t}aUzq!9lRMt&U7&^# zgdSSPs5ugL1pT>Vg?AP9Y5Ly+X(0SvSE$1NC;VwcY3oALJ)fB{IljrAY1wHW!vtGHDyMjFyJ(WGp#SF777sn z2RIcqSbCTC`8D-Pp#b1Cf#q1T^1gWoGd}oWb|&%f>2{Z zAz|hz4pQgTj}>twc)vf@5TbXf{YjJ2vjc=06AJk=PjQesr}igDg6Gc~Li8@RKWQ?0 zc7RZ0LLqN86U^P#$9mzYOekbQT7}+>hY*Aw zvS7`TK<`qYe~w#dq4Q7P>3Ic0t0ENgXHCOzI1~7pf&pwj^X4H$@ABc-%jjK-B~9Qw zGH|AK7fDAk&Vd6QdY9X~**(6f+P$L8D9&JjGjDL{UD{`LBprq1fYS&Lz0302B}qr& z4&Z$I;n2GjQ;yyxaOhpyCxO%_?VS)Wq<0CNSN+}as@Q+L^iHXUP;ilX1nEBwU5 zIwVxBEfP{4a`Y~BZ-i>4b-nuGd(1z|Ry6VC$JT4iq(M((c4sgURK8@f^>r0Z3Vn6~1IP@;<)XCC-q@y_Z z0nWU^p?7It6(#8?BnO;EaOhpqyVMt-yVL3Z0ye!%A=V%qdY59#(Ypi=y-WKfkffu% zrNa2)9&i>1ju?UTE`d{6gsez9?mU2Mkt)4Q{m4BvM{nT`LX8Q9rdOWgAa%~dQ=!y3 zSNYAU`L58r)c&OA=-B~6jR~!C3QTTuoJ`F;#X;(v+MgT=-i>fIgy>yre^PVw>;R$0 zghKwzQyiqusr|{3;Q6zL5WP$7Pil^y9U#=0P{^Noii6ZSwLdu$Jb%^@qIaqNNzKu- z1B4nA3i&fnagaKv_9sVz=g%5K^e+3)R7_rxbQDqmPE$D3`jVuh7?8jL4!uh|b+Wud z(osxu;LIBwdYAMr%g-3~Zvg9F(YqAC0o1^ucS-M3Uwj^Z2dyXcgGtBb72a4hGQCSN z<>*}khu)=q5=hcflw*LiIB>)WEN4O}Guk`ljnBe>1Dt5omENV^@{O9Kb>{f+ox&m1 zm{3TVH4VSvOyFk<2C(&(#`6%Ocd7kZ*(xkvXDe*QI=;@y&-9FxicrX9d5VM7ISZS* zO;#>B5YmwbqA-zi>1>iJ= zGp#R4I*M@)9N^Hqv{NVaF75kTC%+NUyA+z62^@Nt_NpRDMCxdY59#(Ypi=y-WKfkfftH2?WmKz!4*`{46@TLwl!!@eRJf0Zz2( zN$*lWa!<|CyLA^rjR}Q>S<~>NAgOmyg{`+Vo`(>?N4fso*f|6m{7={H4Q%slG>lJ_57KK5WP$7Pil^y9U#=0P{^M(4L=H! z+MlrX{F#Rky-V#+YL1>AAk>&p$e%S0KMIoCpRo1(nTHU)%l!q*S>>(Y>`-)^3tD72ac4!uiym-^x} zy-V@f=eHLQy-P8W>0JVc-lcsKNYYW9=KyDM;D`}eKJOvvXz!Fq@6x+U&ygdK9D0{} z%QtF{#Vy(LG`P(z5`rS@m4vZA;h#jLVW=Umlw>&jy& zN^NAK(kLX8Q9{F$dXNS#yLo+H7teGMUcm*$xjNk<_C z;53CZtuIMBiUA26;Ly9YQz!H;q8eJ=({ML5Wh7i3=?N4fso*f|6m{7={d5VM7 zIki7I5K;SG695DjvT>_`D z2uZfm-YT&+cuMb5Z}~>eQS1#qzRn7v#)LvnsA>37kSuJTGrW#6S`>z@w=|xI5WP$7 z&&pPzSimY@XXIykMoL8}SsXZG z1k$?%PGQNE-le@&1-(mKr~OCeX)<~@;6i9_35A?c)9|ApS$KGHcpYW5C=6R~X*>@h zdY5|38fuQ7S0L1wP{^M(4L=H!+MlrX{F#Rky-V#+YL1>AAk>&p$e%S0KMIoCpRo1( znTHU)OYKi;j-DML)R<7npEV6X3X?N4fso*f|6m{7={H4Q%slG>lJ z_57KK5WP$Dc?Xh?LJGiX3TIkhl5`Z~95}$CcWI|i=v|7M2XN*O4!ukJA%dCY4yjMh zRekc2|Ib11vK(Jr{J^*RrF{}e(oxKD;4BUtF#_pb0;jNK zO7GI%Dv{o$t<(NiZ8RCh4&PKO^{rczEih(w427JKr#MKRv#`|Vam zK;^`iyiq6sIE~=YyR>iOAn7P12b@N5=v|iMi;Evvq&_K9V2?Z;dY59#(Ypi=y-WK% zkEElRQ5t81ey;TLhOIxS(E~mSRmENVtYi5K(PRLUnq|RA*)RH>q zD!(~3-xYe7`k^~&j-FQ_)R@pJr@-Wak;&A|Qyiqusr|{3;N1vULx|p`_9rz*&khi3 zOeo~fJjFrkoZ6op37$V|2+_OL{-oyU*#Sb035EQbr#MKRQ~Q%6!SiPgA$phEpVS;Z zJ3y#0p^!iG6bGquYJYMhc>b&*MDNmkJd>oOkOFX;!kN~WBpt@hdY8J_RoN;G*@2(wxjz-5kU#Sj2dQ&v+jAs% zwyz;X?^64dnxp432sI`Y@@GxMkAkE&5^Oyq0JV+uw+W_(%!0q-leV6?&0|Hvf|8Ig&`C0 zX}#NpQxOU|p{C(SL9+1h;_x@M(V{SHy`}Lygy>!BEo-PbdM<-dV?rT+)-?PmNNRt= z*7Ii`Li8@RKdCu-c7RZ0LLqzfM=_n)zoJMfyUDCVM7oYnN@pP}~T?(-V;n2Gj zQ;yyxaOhpyCxKaVhhpTKJJ*gc3j=3yVxVFK(z^ssVab%YS_m=G1&w=w0e9Q&W`{L*|8$XWmLetDFLpO=%`m zv!>xkK~ftDw%)B}c?i+F)c&OA=-B~6jR}SPnWs2Nom1PMBf+zM4Iz4$=Bgn{M9{oDjYT8VyA)H7-X(D8UD_vsS#pQP$=N;5Xj}*e&f>&C#R#N#37oNPVG;Q1kax}gy>yre^PVw>;R$0 zghKwzQyiqusr|{3;Q6zL5WP$7Pil^y9U#=0P{^Noii6ZSwLdu$Jb%^@qIXH}a@re? z=v@k9*29_Bmn0pfJhD^Yx^;SYt5ehk>rr}3Hvaos1@XE<(Q5d$~(s&+1^e*+5sgL(aOhpyH*t`36p{l@BRKRf z>0RoJ&;6UIx>sZ?g;;}d=v|5_NAD6i^e*j_K$4D&lXMhXF&-G1_&Cb}AVwg)OW+ii zOzB(#&-lg^@HAl}55Nb>)N^N6!urYD_5P&zgoG1xf8s*n0lVLx|p`_9rz*&khi3Oeo~fnuZ?*N$pSA zdj8Bqh~A}nM`wMtaN0YE_=!S8so+fOOOlRaoC60q^e#(#vy*fb(gDuA!J&6)KSV&% zQAiFrjo{F`q<5(=KKCEu>0Xho6k-j+p?4{!9KB26(7Uux0<+`}#mF^xt{q<%2F~Kd zK*b28cL|)rk}17Qd#glxm$pv3&DqBONYzIS85Tm`Lh;N9g`AM5I7pqdu+yre^PVw>;R$0 zghKwzQyiquscp}Z;Mu;05WP!t)sUp4kOFX;!kN~WBpt>g({E(8N-abloi1k$?%PGJ#}-le@&1-(mKr+u5G>LZ2>3nA~O-RWgLVgV)dY5|38fuQ7S0L1wP{^Noii6ZSwLdu$Jb%^@qIaqNNzKu-1B4nA z3i&fnagaKv_9sVz=g%5K^e(kOsX2OffKX#XA%Es64pQgT{^UsT{8>YY-lg^@HAl}5 z5Nb>)XVN=oN0YY(oqaZ-~fl-Wod7Al8)ls z2RQQvhu)?A5CKU?AvxeQfpZrYEpQ#9i{F$dXNS#yLo+H7teGMUc zm)f7y96gsos4=0CKWiF(6eP8gVCxwv4I_(~gA1^D;tW_8?0iV{p zT{sn?kP~VeeiS4N4=)aXQyVP`!`53G&qIjbrQWiJnxp432sI`Y@@GxMkAkH3Cu}`` z<{?DyQu~vdqh|*QH6|4DXHCP8f~58*Y(0PGAw=&|`;(fZX9oy1CKU2#O~a3Zr1mFl zJ%8pQMDJ4jlbWMv2M9GL6!K?H!;gZb_9tvTf94@X@6x=Zlcb}N0&tqbnbwyi9mO~Y z4shsQmiA^R=_n>SaOMpTy-WKc0+NnGa=>W>hu$T zT>^*RrF{~ZC3h%BuDNsV__8o?7AFQOMj*XQ;1rfj>0R1eCDOaJb=qytHuguVK4QqQ z5c0N|m>Hpv6Y>-XsdE;#`k~Ib%5P51cZJ@i-ZC{+Sutc@2zlnMB(%yYFxix5GBs-& zeiS6NkzniHT9$_py-V#+YL1>AAk>&p$e($NgVZ^-?Ku)W+t(1HcWJH~l5`YO08Udl z)B2L6qZp9D0S>*((%$SO9mOOE&b+~)cWK|mLDEr34mgeA(7U8}sV_eFZ=&j61(S|T z1KwCPGQCSN<>*}khu)=q5||}-Se%^QnEN^N6!urYD_5P z&pgFJ>YUo290{I3YY5T1)c&OA=-B~6jR}SPnWs2Nom2ahBf;}$4Iz4$^e(5p;fUU) zFlIfRX?;o3Q4C1n0EgaXX>WFtj$)DnXWrn@yR;u7An7P12b@N5=v~sg)EA%o5Ak%b zf=S2a72a4hGQCSN<>*}khu)=q5=hczc6KWcM6eJ6q=M1l$j24Aq>n)AvAw=&|Z<$)zDh&CP zpXvEC6`_zn^ArcEb86djBzU&3Aw=&|`;(fZ=Q0R2CKU2#O~a3Zq&5<4JtO5IMDNnr z=6q>D(oskOI8EV9>r0Z3Vw?j9IP@+{d$W^t6q6h{^9G0BrF|0zNk<_$;533m?~>l7 zzWCg~iK=@=wo-^S2#4OKm~!+kfkW@oJ_#i0xHw5ip%vqSk%^D98~|bj(z^ssVab%< zrM*=Jy-QoC-NW(YWyP7b3PUE~(|WfHry>+`LQTVuf@I<0#o=#iqeWrZdQ0PZ2+_OL zTh>r>^jrp^#)LxttZDdBkktN!t>@1?gy>yre^PVw>;R$0ghKwTY4}l))c%C6=g&NZ z=v``mQgig|0HMZ&LjJ62_)(D5{)DaP&pd?aU21<)bM)*0p~i$l{;X;EQIORBgstb# zJcQ_7ns;>8R|}`TbBLcPG?WU?w7w+iD8@N(fJ5)Hv^P6RMo{A)f9P*-9bSARKy^V#?9G1P;AR`y?<+?ofj8Mo4d5VM7ISX6;Q0H9bH>c*i zLhn*&%R`9XrS>N^N6!urYD_5P z&pgFJ>YUp490{K7YY5T1G*=BtItnQOrzxCieM!<$3`pPrhu&prZ+4Q7Vv+-A-r&%? zv~S`d=_n)zoJMfyUDCVM7oYn#QFX6^NynuDZ!8*_-ldpw^e%xz@6tXA%#u4SPR{Oe zM&m*-a26*9Dn=l^OW+h1A?aP(TUF4zv~}9INvb|#$gmLdZu*@Wp^y{u6bGqu79O>n z+z8E);4S3W5TbXfx2&P&=y?S~jR}SPnWs2Nom2ahBf;}$4Iz4$+Mm=MJv%_CF`NPVG;Q1kax}gy>yre^PVw>;R$0 zghKwzQyiqusr|{3;Q6zL5WP!!m($*Gl&U`Y$itb|mn0pUP9r$_`D2ubhK-YSvarLEKcq@7u-Fk}Kgt+&{hicrW2H4Q%s zl7-E4hF4BTi^8z=md5iCqIapcOs#AchWyFT^!%BMP{^Noii6ZSwe2|)Jloe0qIaqN zNzKu78H5@W3i-39;YUGI8ws|ak@66tcWG>MzBC}|D5Lw)x9EHDa0CtL+?^dIeM4Cp?7JY z1d?=IoTQ`Bit)h6#K&0<05JmTT>_`DWJ>SS-l~G$rLEKM;rQ{g;>=owArtUvz1xLT z5ehk>rr}3HvheWY@He&5qA+Z|rSUw3=w0e9Yp6MTE`v~GLLqC?p4*MsVm|(!10bpZgE-bg#%(3b6*^(7O~17~q!pkf5ly97>Q$&}uuy;UN;OIxSi=4@ksr0OGv3=1J| zi;0;L3OON9agaJ^VXGhNoU8oi)O=UyUFt1UQ+!Lxl0A$phQsv${7AqC(xg)^-$ zNji!F2^`?iyDaU^PSR0Ka^TDx9D0}bO&la0h2((K2oAkVdYAg*bN?o)?o}}9xHRC6 zMI+O@6jP4gC2;6n+9!coa)-sq**(r^TnGlv;>1A32&8ujoWdd`y-Rzm3VN5ePWv`V z)kh2&7DC=lzcV8gazdWsAa%~dqn48!p*a$~h5Q;q^e*+5HPjqEuRy3Vp^!iG6bGqu zYJYMhc>b&*MDJ4jlbWMv2M9GL6!K@D;vjWS?N5#b&!07f=v``mQgig|0HMZ&LjKHC z9Hh>v{mGHw`Ll))y-V#+YL1>AAk>&p$e($NgVZ^-KRFUSf7TG9cS-MZ+8d7OT?%8? z!0R1eCDOaJ zb=se_Giw!wOu(o0Rzgz|3OS*s;YUHTuzAk#%E@R^7`EQhcpgIZF7=kFm94^%Klz!S zKT{D3`7=*(kUFQfJx79P`x-*@F10_YIeIRGP-8+Nf7UeoC`f7}!PYZU9zygkjcv}C z1|%JY6oAtd&a}QH=_tlIaDYSava~llNk=isfirJ#=v~@3agcNrk^@d7IP@;*UFwU^ z{hO$|S7a-NSc7orU5Y73?-DrlF71;*l8%d$bQD@K9vGSUILiSbMj*XQ;1rfj>0R1e zRnWV%b=o}~KVDXxS*tK)0zR#GyKpK(At%%{{3u8k9$p;&rZ!p>hOM_Wo`(>)N^N6!urYD_5P&zgoG1xf8s*n0lVLx|p` z_9rz*&khi3Oeo~fnuZ?*N$pSAdj8Bqh~B04CpAaU4iIWgDCEzYh93n(#& z-lcg*XMMGB+B=8%i9$oE;7sdFl8$1W0|z+tE=zl}lXMi)0nWU^p?7INL_pF}NDerS z;Ly9Icd0Kv_aEZvUXiU7VhzHfcPXYEy-VQGyR=UNv*ZrN$TfGa9bXm(&f>&C#R#N# z37o=`DZNX3t3-O2wobdv*~b1z)kh2&7DC=a@yrN?oRFtDNS(8=)em*fRep17zAN-D z^_Hor%8DWLLdY|3C81SLfyt&clc`zL@S`B9jRafo*0MZ==v``mQgig|0HMZ&LjKHC z9Hh>vZO@V5*}jGly-Rb|kffuK0&tqbnbwyi9mRkI4shsQmiA^R=_n>SaOMpTy-WKh z4w8;Sa=>W>hu$T)Ak>&p$e($NgVZ^-KRFUSf7TG9cd7kJ&C#<1gc=hH`7=*( zkUFRKCr5(k&l*DXF10_YIeK=0P-8+Nf95F;Qs>nEN^N6!urYD_5P z&pgFJ>YUo290{I3YY5T1q<1;(4M(Z!laD-{X?;o3Q4C1n0EgaXX>WFtj^f-0IP(UF z-lhEz0ZB(8Ip8#cL+_H_rM~#we~71h6-+uVukgmAk?CEEDM#-TIP@;@0R17?N8d7wF*Nf;M01GeW?hAoKVy7qaaz> zJZE_2WV9#@TW@JR4lrBzA$pg_Hs?zNl8!pVqrwI2ECg z6KWcM6eJ4|FAjfG8!ZaM)>|6SLx|p`-m-?8qvtXRH6|4DXHCP8f~58*Y(0PGAw=&| z`;(fZX9oy1CKU2#O~a3Zr1mFlJ%8pQMDJ4jlbWMv2M9GL6!K?H!;gZb_9tvTf94@X z?^64dnxkh22sI`Y@@GxMkAkH3Cu}``<{?Dy(!8USq@$1maGJuI)|Vt5#W)8JaOho@ z_GTyPC?+{@<_!+LOZy=Ll8!=hz-a`B-X*f5Ks4tY^4xu5DvXdG3Dr80*BtE zeG-@@cPK`#xpVFKvM_KKCk84;AiYcA6qZcsUD{hE(z~>E+HKA@_D8BdV#u%%^0t_m z8KIC9@)QTDa~8Jxq0YI=Z%)m3h2Ev!GBs6MF=So{dFHJow8|+k*_387HESAv6eP8g zVC&slmWL3%OYKi;j-DML)R<7npLvRd)H${7ITAeE*ASw2X|5WQbQDqmPE$D3`jVuh z7?8jL4!z6L-s~hD#UuyLyuqP&Y2U;_(oskbIE~=YyQFuiFFyBgqUv4+la5OR-dHp; zy-P9W=v@Mb-lcsKm?d{uoSfa`jK+mv;4DrIRE$7+m%u43Lejgmx2m9bY3sCalT>}g zkYOR@-Sj&%LLn#QDGpNSEIevCxe=Np!CT0$Aw=&|Z&^dl(eny~8WRfnGf#1lI;Zw0 zM}p_i8bb6gwLhsjdUk+NV?rT+<|z(R=hXh>NbvkwLx|p`_9rz*&khi3Oeo~fJjFrk zoZ6op37$V|2+_OL{-oyU*#Sb035EQbr#MKRQ~Q%6!SiPgA$pheE~mZWh~A|zW<8u~ zeM!<$3`pPrhu&prZ+4Q7Vv+-A-r&%?v>zfM=_n)zoJMfyUDCVM7oYnN@pP|(Nyp_C z-dHp;y-P9W=v@Mb-lcsKNYZg}l8!|?bXx`)7rV0@0Ad8vy97>Q5t81ey;UN;OIxS? zNjtMvVaNo0T5lyZ6`_z5Y8rkNBnzA846mGw7KLH!Esf_PMDJ2>nOfN@4Ed9v>G?Ai zp^!iG6bGquYTI)pc($)0MDJ4jlbWOFG6*#$6!K?H!;gZbHWF+-Bjq7P@6y=jd}%<^ zQAhzeP2o)IOOlRaoC60q^e#(#vy*fblN>nn28Z6IeG>;sMQ$&}uuy;TLh zOIxSi!|~%~#hJAVLnh$UdbbOwA{25$O~a3ZWZ~h(;csfAMPb-_OXGP6(Yw@J)=+cw zTn3@WghKwTY4}l))c%C6=g&NZ=v``mQgig|0HMZ&LjJ62_)(D5{)DaP&pd?aU21<) zbM)*0p~i$l{;X;EQIORBgstb#JcQ_7YJXC5^y~nk#)LxttZDdBkktN!t>@1?gy>zG zcXZZQ3#Ywvh@U7llnTzYz9i`=#yN0+L+`S*H#fu2=i2dQVc;xI3{;FjdY8Z{ zESb`~w6{v6cWLXi+njCek5qlckYOR@Efmj;P{;{+ii6ZS3tRnA=UnACr{=pt?^17> znyRcAGB1QY^HvgCW8Lx|p`_9rz*&khi3Oeo~fJjFrk zoZ9vr37+k12+_MVR}D!z3Ml}mDV%A2NzzdaNZQ`E`dYu(mn~yk~=I;&hBwW<3ccS z7AFQOMj*XQ;1m`i>0R1eRnWV%b=tQ{sy<@Kun_WY`kfh}kQ4G02dQ%w9<`j@2+fh; zE#%h_qIapctfA)Uc?Cj^35EQbr#MKRQ~Q%6!SiPgA$phEpVS;ZJ3y#0p^!iG6bGqu zYJYMhc>b&*MDJ4jlbWMv2M9GL6!K@D;vjWS?N5#b&!07f=v``mQgig|0HMZ&LjKHC z9Hh>v{mGHw`Ll))y-RwR)825Dsy_M1!aOhpy z4-t@b6p{l@BRKRf>0RoJ&;5sZx>v!ZQ`E`dYu(mn|!>9{ya$D$p& zErX1U-B}I*F#_pb0;jMDN$=9$Dv{o$t<(Oboms0eWCA{|x7e48P{;{24L=H!h0Sw@ zS58KY!m#z0#`6%Ocd55bt!x#B{K?Ps{F#bS$e($NgVZ^-?Ku)W+t(1Hcd7kJ&Czoi zgc=hH`Lm|sM?q2>3AUb*@(`kTX>4=8G$83HqyU_zaHjPoNk=ixfdd?Rm!-YgNji#2 z4xD*|L+{eQiG!r0kQ{It!J&6a?^0iU?%zb!y&_vF#2SP{?@~-TdY8bVcWIvll5||0 zq@&P^@xaK$$5{>lF#_pb0;jNKO7GI%s)F97t<&z|`0=vh%vyyZ6Yy!h+l5mR3OS*s z;YUHT@bKdBH?`5CFl@c0@jQg+UFt1ss5yErgHU5aA%E61{3u9jf5O)DXC6ZIF10_Y zIeK=0P-8+Nf7UeoC`f95!q)R=9zygkwLhsjdUk+NV?rT+)-?PmNNRt=*7Ii`Li8@R zKdCu-c7RZ0LLqLZ2>3n6cdiJ1`! zIU!GRkUD2!s~_r|tNiBFd{^jQ>Mc`Kl@&wgg^*|7NiJ=Gp#R4I*I`a z9N^HqEbYxs(osxu;LIBwdYAT193&lu)Pxq|T}R z$&ujsvxX48OYKi;j-DML)R<7npLvRd)H$_3ITAd7))1n1N$+yn8;SaOMpTy-WKc0+NnGa=>W>hu$TJ zBh$MSQ;yyxaOhpyCxIj#7bodhv_rRLka4j)%K;!pAiYcA6c!=rUD{hE(z~>E+Ml#D zYZZn}z^CWk0)o2a^1 zWGjVOgK+3wiYZ6$5;*iO?UO)~j*F9Y6k0JJ7@7Du%K;!pAiYcA6qZcsUD{h!(7UvC z+C3aUURIo0t1x5&KCO4Va4JF}C)70jC`c9_UL5|WHd+*ht+zCuhY-C>y=4tGN6%#t zYD_5P&zgoG1xf8s*n0lVLx|p`_9rz*&khi3Oeo~fnuZ?*N$pSAdj8Bqh~B04CpAaU z4iIWgDCEzYh93n(#&-lg^@HAl}55Nb>)1A32&8ujoWhbR zy-RzmM0%IDPP@(7#{NjvM+_MjLf%60%m{^?kf%6EowKmj4|UE}esgNREA%e)mZ_=A ziXrnt$TM#xp;b)Pxq|T{r z&ynESzJ?IJOLNtbq@$1maGJuI)|Vt5#ef73aOho@_GTyPC?+{@<_!+LOZz4cl8!=h zz-a`B-X*nk@W!H%>0OE`NAD6i^e*j_z%04L;^gceXEZJZ17~q! zpkf5ly97>Q5t81ey;TLhOIxRXo22R^h71cK@220G5ehjWPjQesXW>!H$&Jt)3Eo0} z4Iz4$ddnJWj-FQ_)R<7npLvRd)H$_3ITAd7))1n1sr^aK(X#`D8WRfnGf#1lI;Zw0 zM}p_i8bb6gwLhsjdUk+NV?rT+<|z(R=hXh>NbvkwLx|p`_9rz*&khi3Oeo~fJjFrk zoZ6op37$V|2+_NwcRB41N2%(Qk35`deM!<$3`pPrhu&prZ+4Q7;@k%~^9G0BrTq{A zNk<_$;533m?~>l7zWCgKh^KoMOgb*F@W!H%>0OE`NAD6i^e*j_K$4D&lXNWFq1!UZ zxY(WL01zXP-X(Afi;(m#?X42&UD`VBPuiKa3PUE~(|U`2sR)IfP}A_EAX(TvXL#jg zv?vT)Z)rRaA$pg3%hbwNVaT8SOwXUG2!;Har#MKRQ`?>+!Lxl0A$phEpVS;ZmqDm8 zp^!go8h#WcwUJ=!87U7TdY8sF=Su^UjzS8+X$ogrUy^hb;~Y4^p?6u@o1LVinB>5j zH#qbz?VC7AIts}Frx6@_m-H_6#pnJ_RNX7Gl|rmRIP@;Xl%sbE9D0}bNgzqb#Ys8} ztr!oCOnjW>01zXP-X(AfOQ!TL?X4>4UD`VB9*!R`E6%J{7%~B$*1KIe6`_z5Y8rkN zBnuBO4u4Y{EegZdTN=+ph~A~%vWA+Y=Q0R2CKU2#O~a3Zr1mFlJ%8pQMDJ4jlbWMv z2M9GL6!K?H!;gZb_9tvTf94@X?^64dnxkh22sI`Y@@GxMkAkH3Cu}``<{?DyQu~vd zqh|*QH6|4DXHCP8f~58*Y(0PGAw=)eyrYw(qmTk{n!=gZmn0p*}khu)=q5||}- zC`PWibM5%DFmM(p1}a7%y-VN}mQ3kg+FK>kyR>!MZO%6KN2)$z$gmLdwwRb1p^y{u z6bGqu7Pk7K&bi8OPR)0P-lg6$HC0(LWL^k)=B*^O$|*3}lx8wDYZ`tOB(;%X>)l$G zhY-C>?N4fso*f|6m{7={d5VM7IkoLM5B zz01?9qRtttj!OgHSTr)dOEKl> zT>^*RrF{~ZC3jeyoZaJ$#)V+uEKUqmj6iyqz$q+3(z~>`s-Smi>$Go^RDHydVIkz* z^gA;`At&T14pQeVJZd?)5t<{xTga~=MDJ2>Swqdy^9qC-6AJk=PjQesr}igDg6Gc~ zLi8@RKdCu-c7RZ0LLqC?p4*MsVm|(!10bpZgE-bgzO*$K@5?STr)d zOEKl>T>^*RrF{}e(s6N;jzv3kTLu{yyR#esVg%B=1WsWQlHR4gRU*AhTc`a=JF`|{ z$OL>^ZzVJpp^y`58h#Wc3!CQ*ubhk)g<TG=WL`IDdN`7;%vkU#Sj z2dQ&v+jAs%wyz;X?^64dnxp432sI`Y@@GxMkAkE&5^OyqNL2BF4; zLjJ62_)(D5{)DaP&pd?aU21<)bM)*0p~i$l{;X;EQIORBgstb#JcQ_7YJXC5^y~nk z#)LxttZDdBkktN!t>@1?gy>yre^PVw>;R$0ghKwTY4}l))c%C6=g&NZ=v|t3bks;n3? zFN8evRuWp}6qsyEGntw-4L=H!+DNeVZY|40h~B04CpAaU4iIWgDCEyP#X;(v+V&g? zp6zQ0(YrKP4M{o*DFCM_oN0YY(oqaZ-~fl-Wod7Al8$1M183gg(7Uv6;vnfLBnO;E zaOhpqyVMt-`!`W_uYyU(r2%g&8kydum~!+kfkW@oJ_*c{J1kDl?r}!rLNIU^Ck84; zAiYcA6c!=rUD{h!(7UvC+P6unK4QqQ5b|#Nof)B!6Y>-XsdE+{wVd1t&5__O)Pxq|T}R z$&ujsvxX48OL~{n-f)zvKKaPQnbwyi9mRkI4shsQmiA^R=_t;9fHQA!=v~?m5s-8g zk^@d7IP@;*UFwU^{fBtESHYy?@(OP(8kydum~!+kfkW@oJ_#i0xHw72q8+*|gN%#a zSq=a(0_j}>r?3b~@6z5Xk=~`P)BdELS*tK)0zR#`*q4e>$O$zKKMInC&2xrVPDYEu zu=SS4^AMtUskcn6Y!!z5$xkK~ftDww{sl5TbW!Y;(ReAn7Qi0Gy_9ru8LBM={QU0~~snrM=lnI*LgSoOy#o z@6x`BgQTO79B>-Jp?68|QeS-T-$d2DB3miM8iYgdQcO8|m%yQSX`cj=bX=UIqtJ@+ zz{teMSq=a(0_j}>r?6y7@6z6?g5IUA)9&H;@v`E~T7@AK@M*oMd)iIeIRGP-8+Nf7UeoC`f95!q)R=9zygkwLhsjdUk+N zV?rT+)-?PmNNRt=*7Ii`Li8@RKdCu-c7RZ0LLqWFtj$)Dn zXWrn@yR;u7An7P12b@N5=v~sg)EA%o5Ak%b$W{um2I0`V6jP4gC2;6n+9!coa))B% znmgByFAD=_abloi1k$?%PGQNE-le@&BE3snr`_gkV}GRTBZdqMA#aO`nGp&(Ay09T zI%i?4AL^W|{N~hrSLj{pEmKpK6+`BQkZ0aXLaUqtlTB$RQ?sVwM?q2>3AWy?WqAnE zyVU-q=IGf0LX8Q9{F$dXNS#yLo+H7teGMUcm*%P=Nk<_C;53CZtuIMBiUA26;Ly7) z?afZoQA~2+%o`kfm-bB@Bprq1fYS&Ly-RwR`r>o{CaUgLFzL87;EhEi)4LQ?j@~73 z=v~?;fmw2g#mU({&S+c+2F~KdK*b28cL|)rA|$;_d#eh1m$pv(Hc8b-3>g+e-c7$V zBNTE%p5h>N&cdUXlN+Hq61;`{8bb6g^_Df%96hfL5W zh7i3=?N4fso*f|6m{7={d5VM7Iki7I5f5Ks3im~>oT;f+Nj)4LQ? zj@~73=v~?;fg~LlC+S$UL$_s+aj`qg0U$;oy-VN}79r_f+FK>kyR>!MpR_Y;6^2Z} zr}b7sQxOU|p{C(SL9(!U&hW~~Xi*rp-qLs;Li8^6mZ_Dk!jM1tnVvsW5eoS;PjQes zr?x#uf@k|0Li8@RKdCu-E`v~GLLqUP9r$!MJsdw? zR-9R@Fk}Kgt#`X{DncPA)HM7kNERMm9R8*@S`>z@w=|xI5WP#iWeqh)&t(v5Oeo~f znuZ?*N$pSAdj8Bqh~B04CpAaU4iIWgDCEzYh93n(#&-lg^@HAl}55Nb>) zN^N6!urYD_5P&zgoG1xf8s*n0lVLx|p`c}Hh`wQ$-y zhxmy?L#g0Q>r0Z3Vw?j9IP@+{d$W^t6w(3CyuqP&X+K0j(oskbIE~=YyQFuiFFyAl z;^|(ItrTJn!l8F5rX0OX;Ly9YPXe>#4#mhdcdi{@76#7Z#6ZOeq<0CN!jdVyOM9zC zdY86NyUp3g{z%nF3>g+e-a_%r2!))Gr#MKRv#`|NAgPT6TkqDgJcQ_7YJXC5^y~nk#)Lxt%u^hs&Z%wBk>J_B zh7i3=bJdWfqmTk{n!=gZmn0p@Sr0OGv3=1Lerr((n3OON9agaJ^;Ze)UjnEtk-a>v2A$pg3 z%NlBqo>w5$m{7={d5VM7Iki7I57+B)q|+L^TqLnh$UdW(Ij2!)(b)9|ApS=c;hc;#fYC=6R~ zX*>@hdY5|3)XG+2$e;X7&!4FXh5VVPI7ppS+nyuAvwaOAdY9Ut)EqsRL8vjIkUwi0 zeiS6Nkznf?DGwofm&P{dO9PUQLJGiX3TIkhl5`Z~95}$CcUjt-ous3fa{13dsSd5gdA#^e*+q=l)Gp-7B({LaaeJ^e)Aeqjw1$dYAS|AW6r?NjeIx7!Qn0 ze4OO~5F?P@C2$H$rt~iDtt#kU+B)qXjvp^8&a71!G6A2~yInXHp^y`58h#Wc3lA?2 ze^VPR3d7c08qY(B-lg8MhMJ@2G6*#$6!K?H!;gZb_9tvTf94@X?^64dnxkh22sI`Y z@@GxMkAkH3Cu}``<{?DyQu~vdqh|*QH6|4DXHCP8f~58*Y(0PGAw=&|`;(fZX9oy1 zCKU2#O~a3Zr1mFlJ%8pQMDNnPqm!hgkOFX;!kN~WBpt;#2M%!PU6%G{C+R3AIdJ9; z4!ukJAp(+)LUO=q1c%-wy-R)Zx&IJP_lj(#5Ni+)y-P9W=v@Mb-lcsKm?d{8My|PY z?f9}Va26*9Dn=l^OW+iiOzB~rQR|%Rar4)UI=;Stt7O{DKOcTW->Kv8h#WcwUJ=!-CCB15WP$7 zPil^y9U#=0P{^Noii6ZSwe2|)Jloe0qIYSo8j^GrQUFd`fkJ2OHd zC*&y(Qs*o@YB{+Pnj^tm$gd$p?^17BL(S3i3WORH3i&fnagaKv_9sVz=g%5K^e(kO zsX2OffKX#XA%Es64pQgT{^UsT{8>YY-lg^@HAl}55Nb>)Q`E`dYu(mn|!>9{yaN1+wtfsu)ivm5|o1k$?%PGQNE-le@&1-(mKr`^Nx<7LH} zwF*Nf;M01y3#TF!azahRkAh_3;l<%^YNJJA*m_Ijc?i+F)LYh2bM#yWp~i$l{;X;E zQIORBgstb#JcQ_7YJXC5^y~nk#)LxttZDdBkktN!t>@1?gy>yre^PVw>;R$0ghKwT zY4}l))c%C6=g&NZ=v``mQgig|0HMZ&LjJ62_)(D5{)DaP&pd?aU7B}v)>jLsy>p14 zC^VD`&a}QH=_tlIaDYSava~llNk<_a;LIBwdYAS?1SB1WH5)*u{umtxA%y95rsOZy}+OYTsNTyy8z@nvD)EKUqmj6iyqz$q-5(z~>`N~Cvb z>$KaPZS0R!eZ-JqA>=I-&x}yW33-Zx)Hw@V{ZQvz)WFtj$)DnXWrn@yR>iOAn7P12b@N5=v~sg z)EA%oH&J!3f=S1v0dFiCnck(Ca`Y~NL+{c)3Cxl^EKbhuaYo}pFmM(p1}a7%y-VN} z79r_f+FMo7yR>!Mw@Io#V#u%%@^1Q_8KIC9@)QTDa~2-8oZJY_k>D-l*ASw2skf}5 z=ID6^LX8Q9{F$dXNS#yrlOw_NXAL2Gm)f7y96dWgs4=0CKl2m^sdH+7awK^EtRY12 zQu~vdqh|*QH6|4DXP)99bx!S1js(x2HH7G0YJXC5^y~nk#)Lxt%u^hs&Z+&$k>L5W zh7i3=dY9AQaFnV(`N+eW)|Vt5#ef73aOho@_GTyPD9(L=GjDL{UD^*3kaQH115P72 z^e*XL>Wk0)hj_YI!KCBz3U4eLnck(Ca`Y~NL+{c)2_)&bI7!E%9l9-pjEmh_4gfI% z>0JV+un0--(%veO-leV6{-m8*t1x5&KCQRdmx@rx2{jEr3X+A*bB0$=MvKC*^_Ir- z5TbXfw@j^U6^8uD&-DD6icrX(d5VM7IkoLM50JV+uw+W_(%!0q-leV6?&0|Hvf|8Ig&`C0X}#NpQxOU|p{C(SL9+1h;_x@M z(V{SHy`}Lygy>!BEo-PbdM<-dV?rT+)-?PmNNRt=*7Ii`Li8@RKdCu-c7RZ0LLqzfM=_n)zoJMfyUDCVM7oYnN@pP}qRtm8O;n2GjQ;yyxaOhpyCxKaVhhpTKJJ*gc z3j=3yVxVFK(z^ssVab%YS_m=G1&w=w0e9Q&W`{L*|8$XWmLetDFLpO=%`mv!>xkK~ftDw%)B}c?i+F)c&OA z=-B~6jR}SPnWs2Nom1PMBf+zM4Iz4$=Bgn{M9{oDjYT8VyA)H7-X(D8UD_vs zS#pQP$=N;5Xj}*e&f>&C#R#N#37oNPVG;Q1kax}gy>yre^PVw>;R$0ghKwzQyiqusr|{3;Q6zL5WP$7 zPil^y9U#=0P{^Noii6ZSwLdu$Jb%^@qIXH}a@re?=v@k9*29_Bmn0pfJhD^Yx^;SYt z5ehk>rr}3Hvaos1@XE<(Q5d$~(s&+1^e*+5sgL(aOhpyH*t`36p{l@BRKRf>0RoJ&;6UIx>sZ?g;;}d=v|5_ zNAD6i^e*j_K$4D&lXMhXF&-G1_&Cb}AVwg)OW+iiOzB(#&-lg^@HAl}55Nb>)N^N6!urYD_5P&zgoG z1xf8s*n0lVLx|p`_9rz*&khi3Oeo~fnuZ?*N$pSAdj8Bqh~A}nM`wMtaN0YE_=!S8 zso+fOOOlRaoC60q^e#(#vy*fb(gDuA!J&6)KSV&%QAiFrjo{F`q<5(=KKCEu>0Xho z6k-j+p?4{!9KB26(7Uux0<+`}#mF^xt{q<%2F~KdK*b28cL|)rk}17Qd#glxm$pv3 z&DqBONYzIS85Tm`Lh;N9g`AM5I7pqdu+yre^PVw>;R$0ghKwzQyiquscp}Z;Mu;05WP!t z)sUp4kOFX;!kN~WBpt>g({E(8N-abloi1k$?%PGJ#} z-le@&1-(mKr+u5G>LZ2>3nA~O-RWgLVgV)dY5|38fuQ7 zS0L1wP{^Noii6ZSwLdu$Jb%^@qIaqNNzKu-1B4nA3i&fnagaKv_9sVz=g%5K^e(kO zsX2OffKX#XA%Es64pQgT{^UsT{8>YY-lg^@HAl}55Nb>)XVN=oN0YY(oqaZ-~fl-Wod7Al8)ls2RQQvhu)?A5CKU?AvxeQfpZrYEpQ#9i{F$dXNS#yLo+H7teGMUcm)f7y96gsos4=0CKWiF(6eP8g zVCxwv4I_(~gA1^D;tW_8?0iV{pT{sn?kP~VeeiS4N4=)aXQyVP` z!`53G&qIjbrQWiJnxp432sI`Y@@GxMkAkH3Cu}``<{?DyQu~vdqh|*QH6|4DXHCP8 zf~58*Y(0PGAw=&|`;(fZX9oy1CKU2#O~a3Zr1mFlJ%8pQMDJ4jlbWMv2M9GL6!K?H z!;gZb_9tvTf94@X@6x=Zlcb}N0&tqbnbwyi9mO~Y4shsQmiA^R=_n>SaOMpTy-WKc z0+NnGa=>W>hu$TT>^*RrF{~ZC3h%BuDNsV__8o? z7AFQOMj*XQ;1rfj>0R1eCDOaJb=qytHuguVK4QqQ5c0N|m>Hpv6Y>-XsdE;#`k~Ib z%5P51cZJ@i-ZC{+Sutc@2zlnMB(%yYFxix5GBs-&eiS6NkzniHT9$_py-V#+YL1>A zAk>&p$e($NgVZ^-?Ku)W+t(1HcWJH~l5`YO08Udl)B2L6qZp9D0S>*((%$SO9mOOE z&b+~)cWK|mLDEr34mgeA(7U8}sV_eFZ=&j61(S|T1KwCPGQCSN<>*}khu)=q5||}- zSe%^QnEN^N6!urYD_5P&pgFJ>YUo290{I3YY5T1)c&OA z=-B~6jR}SPnWs2Nom2ahBf;}$4Iz4$^e(5p;fUU)FlIfRX?;o3Q4C1n0EgaXX>WFt zj$)DnXWrn@yR;u7An7P12b@N5=v~sg)EA%o5Ak%bf=S2a72a4hGQCSN<>*}khu)=q z5=hczc z6KWcM6eJ6q=M1l$j24Aq>n)AvAw=&|Z<$)zDh&CPpXvEC6`_zn^ArcEb86djBzU&3 zAw=&|`;(fZ=Q0R2CKU2#O~a3Zq&5<4JtO5IMDNnr=6q>D(oskOI8EV9>r0Z3Vw?j9 zIP@+{d$W^t6q6h{^9G0BrF|0zNk<_$;533m?~>l7zWCg~iK=@=wo-^S2#4OKm~!+k zfkW@oJ_#i0xHw5ip%vqSk%^D98~|bj(z^ssVab%+`LQTVuf@I<0#o=#iqeWrZdQ0PZ2+_OLTh>r>^jrp^#)LxttZDdBkktN! zt>@1?gy>yre^PVw>;R$0ghKwTY4}l))c%C6=g&NZ=v``mQgig|0HMZ&LjJ62_)(D5 z{)DaP&pd?aU21<)bM)*0p~i$l{;X;EQIORBgstb#JcQ_7ns;>8R|}`TbBLcPG?WU? zw7w+iD8@N(fJ5)Hv^P6RMo{A)f9P*-9bS zARKy^V#?9G1P;AR`y?<+?ofj8Mo4d5VM7ISX6;Q0H9bH>c*iLhn*&%R`9XrS>N^N6!urYD_5P&pgFJ>YUp490{K7YY5T1G*=Bt zItnQOrzxCieM!<$3`pPrhu&prZ+4Q7Vv+-A-r&%?v~S`d=_n)zoJMfyUDCVM7oYn# zQFX6^NynuDZ!8*_-ldpw^e%xz@6tXA%#u4SPR{OeM&m*-a26*9Dn=l^OW+h1A?aP( zTUF4zv~}9INvb|#$gmLdZu*@Wp^y{u6bGqu79O>n+z8E);4S3W5TbXfx2&P&=y?S~ zjR}SPnWs2Nom2ahBf;}$4Iz4$+Mm=MJv%_CF`NPVG;Q1kax}gy>yre^PVw>;R$0ghKwzQyiqusr|{3;Q6zL5WP!! zm($*Gl&U`Y$itb|mn0pUP9r$_`D z2ubhK-YSvarLEKcq@7u-Fk}Kgt+&{hicrW2H4Q%sl7-E4hF4BTi^8z=md5iCqIapc zOs#AchWyFT^!%BMP{^Noii6ZSwe2|)Jloe0qIaqNNzKu78H5@W3i-39;YUGI8ws|a zk@66tcWG>MzBC}|D5Lw)x9EHDa0CtL+?^dIeM4Cp?7JY1d?=IoTQ`Bit)h6#K&0<05JmT zT>_`DWJ>SS-l~G$rLEKM;rQ{g;>=owArtUvz1xLT5ehk>rr}3HvheWY@He&5qA+Z| zrSUw3=w0e9Yp6MTE`v~GLLq zC?p4*MsVm|(!10bpZgE-bg#%(3b6*^(7O~17~q! zpkf5ly97>Q$&}uuy;UN;OIxSi=4@ksr0OGv3=1J|i;0;L3OON9agaJ^VXGhNoU8oi z)O=UyUFt1UQ+!Lxl0A$phQsv${7AqC(xg)^-$Nji!F2^`?iyDaU^PSR0Ka^TDx z9D0}bO&la0h2((K2oAkVdYAg*bN?o)?o}}9xHRC6MI+O@6jP4gC2;6n+9!coa)-sq z**(r^TnGlv;>1A32&8ujoWdd`y-Rzm3VN5ePWv`V)kh2&7DC=lzcV8gazdWsAa%~d zqn48!p*a$~h5Q;q^e*+5HPjqEuRy3Vp^!iG6bGquYJYMhc>b&*MDJ4jlbWMv2M9GL z6!K@D;vjWS?N5#b&!07f=v``mQgig|0HMZ&LjKHC9Hh>v{mGHw`Ll))y-V#+YL1>A zAk>&p$e($NgVZ^-KRFUSf7TG9cS-MZ+8d7OT?%8?!0R1eCDOaJb=se_Giw!wOu(o0Rzgz|3OS*s z;YUHTuzAk#%E@R^7`EQhcpgIZF7=kFm94^%Klz!SKT{D3`7=*(kUFQfJx79P`x-*@ zF10_YIeIRGP-8+Nf7UeoC`f7}!PYZU9zygkjcv}C1|%JY6oAtd&a}QH=_tlIaDYSa zva~llNk=isfirJ#=v~@3agcNrk^@d7IP@;*UFwU^{hO$|S7a-NSc7orU5Y73?-Drl zF71;*l8%d$bQD@K9vGSUILiSbMj*XQ;1rfj>0R1eRnWV%b=o}~KVDXxS*tK)0zR#G zyKpK(At%%{{3u8k9$p;&rZ!p>hOM_Wo`(>)N^N6!urYD_5P&zgoG1xf8s*n0lVLx|p`_9rz*&khi3Oeo~fnuZ?*N$pSA zdj8Bqh~B04CpAaU4iIWgDCEzYh93n(#&-lcg*XMMGB+B=8%i9$oE;7sdF zl8$1W0|z+tE=zl}lXMi)0nWU^p?7INL_pF}NDerS;Ly9Icd0Kv_aEZvUXiU7VhzHf zcPXYEy-VQGyR=UNv*ZrN$TfGa9bXm(&f>&C#R#N#37o=`DZNX3t3-O2wobdv*~b1z z)kh2&7DC=a@yrN?oRFtDNS(8=)em*fRep17zAN-D^_Hor%8DWLLdY|3C81SLfyt&c zlc`zL@S`B9jRafo*0MZ==v``mQgig|0HMZ&LjKHC9Hh>vZO@V5*}jGly-Rb|kffuK z0&tqbnbwyi9mRkI4shsQmiA^R=_n>SaOMpTy-WKh4w8;Sa=>W>hu$T)Ak>&p z$e($NgVZ^-KRFUSf7TG9cd7kJ&C#<1gc=hH`7=*(kUFRKCr5(k&l*DXF10_YIeK=0 zP-8+Nf95F;Qs>nEN^N6!urYD_5P&pgFJ>YUo290{I3YY5T1q<1;( z4M(Z!laD-{X?;o3Q4C1n0EgaXX>WFtj^f-0IP(UF-lhEz0ZB(8Ip8#cL+_H_rM~#w ze~71h6-+uVukgmAk?CEEDM#-TIP@;@0R17?N8d7wF*Nf;M01GeW?hAoKVy7qaaz>JZE_2WV9#@TW@JR4lrBz zA$pg_Hs?zNl8!pVqrwI2ECg6KWcM6eJ4|FAjfG8!ZaM)>|6S zLx|p`-m-?8qvtXRH6|4DXHCP8f~58*Y(0PGAw=&|`;(fZX9oy1CKU2#O~a3Zr1mFl zJ%8pQMDJ4jlbWMv2M9GL6!K?H!;gZb_9tvTf94@X?^64dnxkh22sI`Y@@GxMkAkH3 zCu}``<{?Dy(!8USq@$1maGJuI)|Vt5#W)8JaOho@_GTyPC?+{@<_!+LOZy=Ll8!=h zz-a`B-X*f5Ks4tY^4xu5DvXdG3Dr80*BtEeG-@@cPK`#xpVFKvM_KKCk84; zAiYcA6qZcsUD{hE(z~>E+HKA@_D8BdV#u%%^0t_m8KIC9@)QTDa~8Jxq0YI=Z%)m3 zh2Ev!GBs6MF=So{dFHJow8|+k*_387HESAv6eP8gVC&slmWL3%OYKi;j-DML)R<7n zpLvRd)H${7ITAeE*ASw2X|5WQbQDqmPE$D3`jVuh7?8jL4!z6L-s~hD#UuyLyuqP& zY2U;_(oskbIE~=YyQFuiFFyBgqUv4+la5OR-dHp;y-P9W=v@Mb-lcsKm?d{uoSfa` zjK+mv;4DrIRE$7+m%u43Lejgmx2m9bY3sCalT>}gkYOR@-Sj&%LLn#QDGpNSEIevC zxe=Np!CT0$Aw=&|Z&^dl(eny~8WRfnGf#1lI;Zw0M}p_i8bb6gwLhsjdUk+NV?rT+ z<|z(R=hXh>NbvkwLx|p`_9rz*&khi3Oeo~fJjFrkoZ6op37$V|2+_OL{-oyU*#Sb0 z35EQbr#MKRQ~Q%6!SiPgA$pheE~mZWh~A|zW<8u~eM!<$3`pPrhu&prZ+4Q7Vv+-A z-r&%?v>zfM=_n)zoJMfyUDCVM7oYnN@pP|(Nyp_C-dHp;y-P9W=v@Mb-lcsKNYZg} zl8!|?bXx`)7rV0@0Ad8vy97>Q5t81ey;UN;OIxS?NjtMvVaNo0T5lyZ6`_z5Y8rkN zBnzA846mGw7KLH!Esf_PMDJ2>nOfN@4Ed9v>G?Aip^!iG6bGquYTI)pc($)0MDJ4j zlbWOFG6*#$6!K?H!;gZbHWF+-Bjq7P@6y=jd}%<^QAhzeP2o)IOOlRaoC60q^e#(# zvy*fblN>nn28Z6IeG>;sMQ$&}uuy;TLhOIxSi!|~%~#hJAVLnh$UdbbOw zA{25$O~a3ZWZ~h(;csfAMPb-_OXGP6(Yw@J)=+cwTn3@WghKwTY4}l))c%C6=g&NZ z=v``mQgig|0HMZ&LjJ62_)(D5{)DaP&pd?aU21<)bM)*0p~i$l{;X;EQIORBgstb# zJcQ_7YJXC5^y~nk#)LxttZDdBkktN!t>@1?gy>zGcXZZQ3#Ywvh@U7llnTzYz9i`= z#yN0+L+`S*H#fu2=i2dQVc;xI3{;FjdY8Z{ESb`~w6{v6cWLXi+njCek5qlc zkYOR@Efmj;P{;{+ii6ZS3tRnA=UnACr{=pt?^17>nyRcAGB1QY^HvgCW8Lx|p`_9rz*&khi3Oeo~fJjFrkoZ9vr37+k12+_MVR}D!z3Ml}m zDV%A2NzzdaNZQ`E`dYu(mn~yk~=I;&hBwW<3ccS7AFQOMj*XQ;1m`i>0R1eRnWV% zb=tQ{sy<@Kun_WY`kfh}kQ4G02dQ%w9<`j@2+fh;E#%h_qIapctfA)Uc?Cj^35EQb zr#MKRQ~Q%6!SiPgA$phEpVS;ZJ3y#0p^!iG6bGquYJYMhc>b&*MDJ4jlbWMv2M9GL z6!K@D;vjWS?N5#b&!07f=v``mQgig|0HMZ&LjKHC9Hh>v{mGHw`Ll))y-RwR)825D zsy_M1!aOhpy4-t@b6p{l@BRKRf>0RoJ&;5sZ zx>v!ZQ`E`dYu(mn|!>9{ya$D$p&ErX1U-B}I*F#_pb0;jMDN$=9$ zDv{o$t<(Oboms0eWCA{|x7e48P{;{24L=H!h0Sw@S58KY!m#z0#`6%Ocd55bt!x#B z{K?Ps{F#bS$e($NgVZ^-?Ku)W+t(1Hcd7kJ&Czoigc=hH`Lm|sM?q2>3AUb*@(`kT zX>4=8G$83HqyU_zaHjPoNk=ixfdd?Rm!-YgNji#24xD*|L+{eQiG!r0kQ{It!J&6a z?^0iU?%zb!y&_vF#2SP{?@~-TdY8bVcWIvll5||0q@&P^@xaK$$5{>lF#_pb0;jNK zO7GI%s)F97t<&z|`0=vh%vyyZ6Yy!h+l5mR3OS*s;YUHT@bKdBH?`5CFl@c0@jQg+ zUFt1ss5yErgHU5aA%E61{3u9jf5O)DXC6ZIF10_YIeK=0P-8+Nf7UeoC`f95!q)R= z9zygkwLhsjdUk+NV?rT+)-?PmNNRt=*7Ii`Li8@RKdCu-c7RZ0LLqLZ2>3n6cdiJ1`!IU!GRkUD2!s~_r|tNiBFd{^jQ z>Mc`Kl@&wgg^*|7NiJ=Gp#R4I*I`a9N^HqEbYxs(osxu;LIBwdYAT1 z93&lu)Pxq|T}R$&ujsvxX48OYKi;j-DML)R<7n zpLvRd)H$_3ITAd7))1n1N$+yn8;SaOMpT zy-WKc0+NnGa=>W>hu$TJBh$MSQ;yyxaOhpyCxIj#7bodh zv_rRLka4j)%K;!pAiYcA6c!=rUD{hE(z~>E+Ml#DYZZn}z^CWk0)o2a^1WGjVOgK+3wiYZ6$5;*iO?UO)~ zj*F9Y6k0JJ7@7Du%K;!pAiYcA6qZcsUD{h!(7UvC+C3aUURIo0t1x5&KCO4Va4JF} zC)70jC`c9_UL5|WHd+*ht+zCuhY-C>y=4tGN6%#tYD_5P&zgoG1xf8s*n0lVLx|p` z_9rz*&khi3Oeo~fnuZ?*N$pSAdj8Bqh~B04CpAaU4iIWgDCEzYh93n(#& z-lg^@HAl}55Nb>)1A32&8ujoWhbRy-RzmM0%IDPP@(7#{NjvM+_Mj zLf%60%m{^?kf%6EowKmj4|UE}esgNREA%e)mZ_=AiXrnt$TM#xp;b)Pxq|T{r&ynESzJ?IJOLNtbq@$1maGJuI z)|Vt5#ef73aOho@_GTyPC?+{@<_!+LOZz4cl8!=hz-a`B-X*nk z@W!H%>0OE`NAD6i^e*j_z%04L;^gceXEZJZ17~q!pkf5ly97>Q5t81ey;TLhOIxRX zo22R^h71cK@220G5ehjWPjQesXW>!H$&Jt)3Eo0}4Iz4$ddnJWj-FQ_)R<7npLvRd z)H$_3ITAd7))1n1sr^aK(X#`D8WRfnGf#1lI;Zw0M}p_i8bb6gwLhsjdUk+NV?rT+ z<|z(R=hXh>NbvkwLx|p`_9rz*&khi3Oeo~fJjFrkoZ6op37$V|2+_NwcRB41N2%(Q zk35`deM!<$3`pPrhu&prZ+4Q7;@k%~^9G0BrTq{ANk<_$;533m?~>l7zWCgKh^KoM zOgb*F@W!H%>0OE`NAD6i^e*j_K$4D&lXNWFq1!UZxY(WL01zXP-X(Afi;(m#?X42& zUD`VBPuiKa3PUE~(|U`2sR)IfP}A_EAX(TvXL#jgv?vT)Z)rRaA$pg3%hbwNVaT8S zOwXUG2!;Har#MKRQ`?>+!Lxl0A$phEpVS;ZmqDm8p^!go8h#WcwUJ=!87U7TdY8sF z=Su^UjzS8+X$ogrUy^hb;~Y4^p?6u@o1LVinB>5jH#qbz?VC7AIts}Frx6@_m-H_6 z#pnJ_RNX7Gl|rmRIP@;Xl%sbE9D0}bNgzqb#Ys8}tr!oCOnjW>01zXP-X(AfOQ!TL z?X4>4UD`VB9*!R`E6%J{7%~B$*1KIe6`_z5Y8rkNBnuBO4u4Y{EegZdTN=+ph~A~% zvWA+Y=Q0R2CKU2#O~a3Zr1mFlJ%8pQMDJ4jlbWMv2M9GL6!K?H!;gZb_9tvTf94@X z?^64dnxkh22sI`Y@@GxMkAkH3Cu}``<{?DyQu~vdqh|*QH6|4DXHCP8f~58*Y(0PG zAw=)eyrYw(qmTk{n!=gZmn0p*}khu)=q5||}-C`PWibM5%DFmM(p1}a7%y-VN} zmQ3kg+FK>kyR>!MZO%6KN2)$z$gmLdwwRb1p^y{u6bGqu7Pk7K&bi8OPR)0P-lg6$ zHC0(LWL^k)=B*^O$|*3}lx8wDYZ`tOB(;%X>)l$GhY-C>?N4fso*f|6m{7={d5VM7 zIkoLM5Bz01?9qRtttj!OgHSTr)dOEKl>T>^*RrF{~ZC3jeyoZaJ$#)V+u zEKUqmj6iyqz$q+3(z~>`s-Smi>$Go^RDHydVIkz*^gA;`At&T14pQeVJZd?)5t<{x zTga~=MDJ2>Swqdy^9qC-6AJk=PjQesr}igDg6Gc~Li8@RKdCu-c7RZ0LLqC?p4*MsVm|(!10bpZgE-bgzO*$K@5?STr)dOEKl>T>^*RrF{}e(s6N;jzv3k zTLu{yyR#esVg%B=1WsWQlHR4gRU*AhTc`a=JF`|{$OL>^ZzVJpp^y`58h#Wc3!CQ* zubhk)g<TG=WL`IDdN`7;%vkU#Sj2dQ&v+jAs%wyz;X?^64dnxp43 z2sI`Y@@GxMkAkE&5^OyqNL2BF4;LjJ62_)(D5{)DaP&pd?aU21<) zbM)*0p~i$l{;X;EQIORBgstb#JcQ_7YJXC5^y~nk#)LxttZDdBkktN!t>@1?gy>yr ze^PVw>;R$0ghKwTY4}l))c%C6=g&NZ=v|t3bks;n3?FN8evRuWp}6qsyEGntw-4L=H! z+DNeVZY|40h~B04CpAaU4iIWgDCEyP#X;(v+V&g?p6zQ0(YrKP4M{o*DFCM_oN0YY z(oqaZ-~fl-Wod7Al8$1M183gg(7Uv6;vnfLBnO;EaOhpqyVMt-`!`W_uYyU(r2%g& z8kydum~!+kfkW@oJ_*c{J1kDl?r}!rLNIU^Ck84;AiYcA6c!=rUD{h!(7UvC+P6un zK4QqQ5b|#Nof)B!6Y>-XsdE+{wVd1t&5__O)Pxq|T}R$&ujsvxX48OL~{n-f)zvKKaPQ znbwyi9mRkI4shsQmiA^R=_t;9fHQA!=v~?m5s-8gk^@d7IP@;*UFwU^{fBtESHYy? z@(OP(8kydum~!+kfkW@oJ_#i0xHw72q8+*|gN%#aSq=a(0_j}>r?3b~@6z5X@!Qh7 zJY@IrIl*mT9nYs#y_(ejR`vJx|Eaulzt?Nh5Q5NXpQ78oIw|qJ;gI3?^U+VgH!cx61E4`9s5NKkgrIU*R3F@{X9rIZ6iO|9RGP zPCV(9vo>!Yy%_!R1sA>i(81tU5ByT$1e&7-3op;1D&wJ*f=bd}_dBeZ)v4aZ-n+E3&{|Ofi&KhhUY#2Oa zaPi=x!TE#1#TT8w_vn8f`e$$6Z>QlOeE0DGkN)rQe=d5}1s4qe&*;@I=WM$0;u9}A zZ_~+V|MWSNKliP_W6kgn|I_&IIQD`~7oEQ{{GZ{UdEBN~ZajbEMQ2@b%;>${UwPdr zFFgLSyFPK(;otGt6Hhqy#e>1l!#~`4{DTL(e(^m|8ov6Di%&S?lEL6R_Za>Eoj&uA zTXqZvkNUvIQ%~P~`bjT1a`=;;an`w;&ff5h%Pzcl_;(KmN3Fl?;GQ)@Uo33y!w?JUh?V}o_fx!Uw+OJ=dNA9?x@R-9KQL& z4V%x}`?3o!xag82FFShe_@8;?@Q+7-`k=LYkN=jO+1pS@`F zS(hDn(Ixv#{sG5sxa6EyZoGK&#!VOPJ^BZpb@rxLZ65ubPCoyI7kB^Ei!Pb)8In5a zva>EeX!t=78vbL3|Heli^U4ipZQk_CQ#Wn8VBJezb@nBj&${TG4SNs&;TzAtXu~Uy zI_Tg3Jx3ih`e6_I;Sc@mJnTrcF3!$s#Cf8XR! zKlC@A{^AXnY`Wl8qoZNnGY>uLpz*sO{wE*$+s?55wuk@8hyJ#2{artL(Z0xN+;(*Is$@Z@mA#TdzBI>vf0y^rxu!7c?*DY-UtIn(dwk=7D=yvR>wj_WyI%D2E&uR)C+zb0>pyI`dmlI0|F=H;rI$SG#=qb3=I6fmOE5fl-`ji{~=v~);;jWX{pS$+HV?OhjyWRYcyDe{e;Cnvw z%P-vdEwA0>!JparfoOUcIvKul?nIzjoM`(?0Z-w{LyxN4LH8u&rOZ=3RRoy8HUi?sn@= zSDyX&Z+!p9?q9#>?QcK!&mR1VUsxXf(atyRc=L@fIOe_UzjpPr2A6;R$G7jceaE$T zfBA=Z8vbj3egB_7@qhf?juY1IIN^yq-gND0_kHBz!NEU&+8g$M`7Pgg+GBtG*w4K0 zxPN}y18;iWU+#9|o&W8DyT3Zv`|P#9`r_A}{+X>W{pg>s|G6_i@tQMFe9f8nzvJew zUcK962K#LN^6u}s^18u;pZLfV-u5lZSKM~%=f3Z%eGl8?l=pw)m~}%;+s6MDw!Y$j zUH%VyJ^BS_?RxFbr(S;Vi0I3=JZ1MSPkHQ?-`sDnYd^i_od;ia{F?pO{p`n&|IB+1 zU;pM^*1!2bt-tLp*WUS&EBAfD9oJp?`jda)-iQ6S{QbM`eAZy=A78lp6NZ27z-K({ zU4MSYj%yxuA`1?{_+dPe|g=X?)8B$4Sw^1C;Y?}&)e^}PrP&2-T&{UFZ|`(Pkhbo_uu%X z?RPx5_dCDz;4b^za?tZnJnm_a-SfSB-FM7WpR@icZ#-@JBX^#7<>Nnf{V9iS{NRth z=xdw4^KVan+X)Z+@?rOVOVN{DR2C-rF~v^_dXl%K4#rbpWW>hgDda;Z@c{P zH8 z!S5IYz3xBnxa`uw!E0ZC+wZ*WrMs=)_O^AOJmvbIJ$lDo=Wjpw=6CG%xWVIp=k7m# z{B1Y9_Yb!Hm+Q72uXo~G@1utQC7%1}e|yQ7R$h4a6^E}3kK%iW|G@3LZu#g=w_LN|mg7G5 zjoq`Y`J}QkH*UZ8>zAGIU03bw%G^!$JL@Lk*gpHol0;4`PZfB*mb&9C>F%O82gVC(h|{M)|A zUGTIQ-MIEwyRX7-+x~L5w_S6__9qXizx$ux@cR1?f7{8wfAP+5fA@3#+f#R3@Pr*l zUHy)a>~zcS&;Etu{^&b?bDt0Y_dmP$fSWfy>Wa6FzcPPu?WK4j(A`}XJl-fv!e z>-jtV-W%R|>cuPn`I;ZQ;hOQFeCTs8-T#q$&U*Hj{_Ls?zx#i!zv|S#+W*InJO819 zw*9OxUw!A`^P4`j|8tIe!_F66|M0K*ZC^P4NrNZtwD0B5z3Lmk{;3vKlPjc zX+Hk?E#LK+!SPq_x##IeulefD-*NZNqrZIa_%DC`|9jw%j(*JN|Lp^x-~N*4?S9e| zPrGK{n=kq89WQ+1jz7HO=+Ex9{Ft4NUOxVNciM8s^Y%Y-<9lBAz&nRSaQl-te(+EB z`hk~R-A71y% zHy-x9o8J7|%Rlki8@Au^tiktw=!WOM@3fy=zWv0%x#7UI8~^6l_d4+x_B!!3d)<4_ zpKZD3QG;K&{g}W1k^8>>sSiKlqF;R8_g(O!?LWHyytQBa=d14+Jo`njzwLKl_R{ON zJ>`u@?EjP-KYsa}UpxH6(UnA>a-&wES^;2KI<7w;v z`s!^D?6`O^oN=Fi_r)*0@V%cp=yjhw^GAO6559QoncF^f?2cD&x&5EEJaFK;Cms5R zttTJxpl_4Zxwx_QTqpS$ALt9N?uFaFd4>z3DFG&tbxKY!s) ze>m9o)|KmSdE)V(zjN@;HK*S4y~FKVh(mlR$!?v$IPT0ZxtPo4eaKY9I!w~xMtzqV=j&tLk)d(K$*+TnD)<@{?N{Lbso+_Yxv zaK66#=SS1}n}hzr4`2JaYp;3H!Pmd!;Eg-3`uQEt|H6*vKXJ!je|r0qzvrI6eqeZ< zz2cfHzUTeBEdAn{Cw=~R4|u^%cir%ndvE;vm0!K_)??1z_t@*7diSPX|Ms)@{O-T} z&%Gaf*JJO!ey=Zn<<>j*d&SaAzwm^oe)g^J{_V5h^4iz`==+ENu^iOYZes(t?X>3ja4 zAH3uI-~arVj@a>}#|?gIu=eR6KI!vM+Wo6v{*^Pgo%DTMe`EaZeesqL{_x=0$6mMm z`n#@Jdd*({@|pvm`py3o=R9})y8pkuE01dG+WH|7M9@NnP_=3x49Z{~K*5P9Bq%sA zh(L?a0JSPkz;mcWNC2UPAfN&*f=Wd!I1#KiV4o5|M8pBXDpaUp7LAM{kdWz}n-EIt zL&bl-)vsq|Ef?YDcrN$cyMM#p`vk;a>k^AAS~KIPn7kQuM)#&KZLw2)przk*Inz{+ z$zU+cN$oM&@ zBrDNSao(r$@d>)>i@Rp;JQ5QTFJ|IYqCrA@a51a^x@}NwIR3op(DHp|)}`H5s1F zZPf*iB++U8)^DmC@};~Rv;v}5`we1=R`-2R&ng!uGH=`vM|djjJ}}9Myl0ld+Nmt> zU&VEfg7xN}M6-#~?lr_|iD<*C$*!d*zGW=azZ#!KJ@3(*V%xI1aMM%3U5d0eEr`6O zeN(BeR&(2p_M@(imkI;BULq0Gg8F$hfBTMIG?&dX z?TSkah_Z@c^QIcUxWAtl+|zh0pp?EiP@+Gu>mf&jARj&{AAU1fK$F5=M%a=W9MQ5# zd3R>&iU6V5bQcMq?*9M6ynghMD_M!=c^S!D>A%aCI84~~FAcw*8}d+f-&Y1Zb@DLf z97&?aGkY|C918aXx(rzf4>j?xB2H2*07My`G2%*wlO&x%PNhh;qly0t=ryD4`ksDAmQP(aW0I4x_JRod`kcZ9;#xOM z&&*xNbft5Hi8I_{(+4Ky&%IG-jl-qedR=Bd)l~w^?HXywG*qE%_7YcY9SEWfGZk3? z3Ppqe{*m~jdneoJQ46(BDC4%940odK>my8e!OHvX1yojr$ zFul#ctDy+Yn?9!Ubi8C0e&@X5rLY<70r58gyDo@qAM{{yK#kp`W84;Fj`9QfGu1pz zBiuMeyP-Ktkuiro-a^VCbMw$bj{3X zmV_bZ1tSy?pPBwzilIUZ2UDL7N8qS zJHw-~a0`EjVO@n`ifUHi{m1_3l*#)v>Pf}7D zj!@BcY8EF+lhZ+|6x^1sSY9c`I)_ufJHcEx)$&VXd(4_B+N!Cn&X~JND2p_wv)if< z{G9oMYj`nZ{_#PJp!S%pgN+9a@)+m602v{@Imy^%+G-Vlf|X@V=@ne0*@O7reG&U+ zLxU8Ep6zi;W(??4LkyM5!Z)E%jRSi7^}@oghYo3U^!>F`S}!joNmkn6WJ4Nb4Ee%4w;#r$W1}l!ATXQ;lToa)|0aG zO++0nt67kx#*^lI>OJ&;;_T37|qX35p2kd$YlR2>LWbn0GZ=akz z#bem!ry)G;O#M!w9lEDv${pKl(osl!z3>CVn1+;0Jg2+4-z3mrO}oLGsr0i(@)P#* z6PohAYXFEOdx`aQ=V?t`l68rs$wy!KN;_$eX#0O8R{fk-UeB?~+8#OMCFzcWeUhL< zmJDLh5o&wPL2=Ik*ZP~^7ewC^e0?FOHtTHQhRfhTQvge0Cm>coRbxDb8&l~LkDtv<9T znldGQOvZP8g3|M7xkV6hB@HVF{o`CzOOaZY2xOmjT!^bxiOW}ITK_3L9xgH06|Gf# z;Ks7?#|Y!22!u?6f||9DlZKoJ*Z~9(nQ9thb|-Af32Ng0x{{V9@xF@?#pgR^#f1i$ zjo#1R*dgYHocBv0d~b(8I;>M?w2`iTArm})k5o|l3_%WVfsPz5R~+VD6NeuDr0BQcVnKE? zA=Ok`vhr zED=s`daO_&DZC{e^rPBup4^j>Fj-z2=Et8CQBGH#RM}GrSio8aYiS@i;chT3QDbM1 zlI_>@AmP)%*C*naJ$yUBD;ML+=^{$L9MG08KP~pAcGBxn-itAH=$&f4bL1uw3lfU% zsx8OlgwF#jvBRs#VV|tawBLsh*tZoz9$5`QI2=uF^6|Rab&r~Uhy9CVv;cVw=W+=} zUA9fvs0!^+sVDu^k@G^M8^l*vj2Z9`RG1@)#^>X)=lmVB{i}sK7?IL0$<7dffSxUG zl-V@t$;|_?ZJ%<|irjossrP*9S}9lMvnh!&rS1&JwGCW@i>zk1C+k;8Ts~`YB0i`~ zyt}@s?N;gRHMw(Elkb>M#9aym|Cs_h^Z zC**9SB#CTwRzCj1^7_`2$}Po}dxVP+3@7ovMcn@a~x^Va8 zZR3d5|g}aiuVXq2G*$8sT3@;PBN`d%KQ;2`1W@@%Z6gxJ&WUE&J>o-Z-9rjP; z;ib9Uu8`}#9uZGX8f57xIau4D$mWWb%lJL9ZV&1aO(&Ol-k>TgG@8-7WM)NIR&lVn zW{)(4uJ?EkJqp|K{rRj+K>MHRDrtY&C2?a9;Mr~Nv(jugUC9~9kA9uKCX41eb+GXy z&3*>PI?y78VKxza*gWtv7m@3^7OSB0@2R&g0<92^y}4cEFzx_iHasT`ix#0Vp34J< z*>d5ssOcmM*Lr6oJLh__;dzSSEAzkv8i*f2!c&=Th}DvM&aoHapQ&!jYd--|3zMWPP@Ph#_XiLvbvgw?CP{20;|KYe*1OG8n*)O0AJN3Uq=qS)BGD`wRQXN1kVw z>C+bK(9YbhMEpOa5<gCQ%Cadc+WYYz5*SMKU zG!H?J?tFjTS%Nc~{a7jfl}_%~9-!D0PzDa?O2Qtt)mXDrW?QP3W;2`9UeoYXp2Tpfo-|ZftbXQ*>SqCv{ZLoE# zDtxAzQCyq~TX-7~t#GtqgGueBA~7%%4s zXGt&OZLoU~ml{a;m*D9FR!iA5+zEt#-li%SXG=Fw3q_1si_Aq-W zfD4x$VZzi`QYV9CUrbcdqc)hzud0OMpTF3;_>d`YbIsbnbSz_UVxgUOFV9Ior|d@gV^ zbKL_JkKu!St?ni9LTiO~Xs{v4qaU;E)R6exhJ{c;G9sMB;I{bkE(Wk<35!%Wmf!1qvkHUB;gEQm>3 zWDb&`pp2gCwM%%9tlxYUV zc|WSt1)kaI0YmnR0-1p)`O-GrX%&=SL6C!kxuk`gHz_X~P~Kt9WFH3+5P3=;Bm*Cbrhuv#@%W$aN|Z`K;GKEBI@$rWS9)ygk_9!)o3Tvd&oj$grS%UyZoS3c6z*wl0QZxs?gBU53uwB;OA@K4~nAZfMvM-a8( zOse|LV94g2VmX9?Z3BEHVj4JnUvlv0pBHjW=hHE*Pt)-9Ry+M3o+#|FSdcFaDWBU! zoIXz$D`vM*(8uMflZwA23Iz*@r5r3RoSw*)%otzWq-6W7W+Z&h%F9LXd)XE&Gl|$| zc}(8R*)5-r*S!9DpUTrp}7TrRTtwisb7LlkPuI;Y&6(C*Da>B!2OSmp? zSZxUVM#v+j7zl^S^X{;64j?&(xLy0AwRy;67*I$K2V`lhNTD4vj0fjL(Qb`zK;o32H+ET)UIkW{48M$+T z3Si&o1j_viXXwVB)r(Fm;#hc5?q>X$9Vtv&2+Y6Ke0*Yd>BGaZeyJNN-!YkMr&@a7 zd9Bp^gN;0dgi++*O+U}*FnztDbQqxkg8}Sl-f9p>5uM;sRcOu+GEDg4n%B0-L7Z4Vi$Jg>sQgKv*D)YdMBZ4s67AzzpKo$+U|as| zHHA+YDSY5nho@kZwL6LG9y@T#yrAN|LtoJB9VWEj%+H%xBFH`lat)W-RZzMUK@Q1m zUvdruh<{s{>iegp`ZyJ*{8hC8Fzpuv(|$1R2h)Bq?FZ9-FzpA^elYC^(|$1R2h)Bq z?FZ9-FzpA^elYC^(|$1RH0POZtY-j+x{b08r?Dm7*ez4mQcKg9@KiKVubiBiEKiKUDyZvCdAMEyn z-F~p!4|e;(Za>)V2fO`Xw;$~GgByFojXmMUp2&uzaAQxnu_xTv6K?DYH}-@Zd;Tpq z_B38?vKfWa?L)pJ0B-ULH~EB{e8NpWP2nb=aFb8C$tT?86K?VeH~EB{e8NpW;U=GO zlTWzG=kRx|{r}kHQ%Y>X&B*;~-g6rAWu7kNb);NJ|48uT&=-*+zg2w~Dp~cj^V&T- zz|Rv)XO+G^7(A_8^vY!20r+mv;tKj=~ox@cC_|3p<8+Ufe(8l>qmi+ zgZ*ee4-8aq?dTN@y!Q)R`vmZ&z~k! zYb{peeCXvHzRIW@>Nh^<+Krft--KeT=YRNG4NcYuhGE!EAGTB@rV}W~HH~?~elQTl zmVM~mF=EOA#YpK`ZpfiOQm7ay`G`41ijm@vm~&7ua_}SO6e~uGK4MOZVx;gR=9DT% z4t&I%GR4ULG0uqr5u&LH+z5iPO^HEb5;CrDj1#JZ3G-2G{@A8NLc|T!jSr4xLwBnh zpQBbhw$M4yuO=u%myIEAD&`V`h^u~YtZ^C{rBTs8mME>5Z4ivZRP>J-7m#tN3fb7> zv_LX6a?G)suN*1)h&h!g2J!E$M+M^FA212=?>&zs#J_h@Uxdip^^L*HS|CKoPqf#_@7eX@Rk+d09m~J8=Nwb#rwc_;tH7m8zmD7^M9(GB+UQ4GYbOq zfA33^!~EadnR=N2Q-v3$s)qT$kxt!TvdOUi<*h0sSpV{8ma9}uu>R$JSOn`|MkO<_ z{$+%yhV?J+D$IoSFC%W1;hId~@51^QSpV`CR~aoM0PA1g<@3V&7g+x?Dpwg{+QIsl z(c(*Q6Rdw3sj6Z9%cvC$t+4*(U04L`U*1{J59?q4kLzDx{%@oR`@>m=_y_Uttsa#> zZjTYf3F05bKcF^X|KCtgBJ@9@{|Wow6)rEVe|e`31M6Sjmve;mFR=b)bms-uzr42r zAJ)ITl~aQCFR=av?*H+-xjnXuwfh5p^xJoJ-p#&*uOS!Km6uE7%Tu5sZ;iGT%d|s~^ z6Vg_ZW>>rO?R($x=J($F=G*yWHq_Nt&B&dTi(%M|n(B&rcz=z^^y7zk-xM~OY= zmxHp=OxSHP6@68SeW4N1*66FVm8%h8a~8XBk#cx!Znl_mvL2c#ve6{vB1o2?7@VXy zlI2LsmU!9uTqt=XlFZdtR3^f~UnTZdT@P~v5sgNRqmE)V(n3%y%Mv6_&@>J;aBWRU z7dr5ec7NPS(oY4@#E25s6*Xit{0e@xO)s(AjXHDytnt>hq;cvxW->vs!BU;&ylj2_ji7wT3leK-2?G zZHtItaXTEz{n-Yu>GdEDcM`6kdR9l_R#jKER&@e^sqP6e>WVzUK#ZOV%|M4Tftk@0 zH;b*Q_*8o#b*?-D1YM0ZsA_0BsHon@DiCO>4lT_1}X#{ z@X(UQNf%DJ8z`D1ogC@@nz6!3#7SH;!-o%UB1zDNEM90Q=U`ATV{|k9sFEVDnUt5b zCgMX9Ia!Sa1)W!dLJJ_mp%yQZZbUR=tCy<@X}S;+K}`h@8;TW0;%JBHCRtL(Nk2p3 zfMfvfXGIV0ml(z&GbAZE+%X(JA8J0%b%iRn85;j_D+t|cqr_ds zv?g|n>F)Z^c;;XaL*i*(O*1VX3^$7fyZI?XU2 zvlkQIVL_R!FmJEmiw_Pl&*ojd)3P!iC5xMMv?O^1FjBmDQ<;h@R|9Iqr%Hf#c!_My zh)?7176+?YSXsqVA5VFSac!CUjYd@(Xp2>yZkmKIf-=4nrf7GjY16Gu(e6yswB;iq zMd#^6w2WrN%J@$hhp`Oa2LZgx>2x@~L}qiQMV-jh}7K}WUkRY`YFrlQ~H!0qwcIAC=FBD!expGRj_cO zG)!d+mnkAt!NP^oFqJJ_rif4l3l~bmRJL%LB0?1`Tqq4w*}`Rt2vx9fp)^co3zsP( zRKdc9(lC`RT&9Rn1q&BS!&J6#nIb|JELY`h0-vU zEnKFEPz4JYO2bsPaG4@P6)apR4O7{|Wr_$@uyCO?Ol1p~DI!$C!iCZ>l`UMRh)@L! z7fQoaws4suLKQ4rC=FBD!expGRj_cOG)!d+mnkAt!NP^oFqJJ_rif4l3l~bmRK6vy z-1PGeKnOn6APS#eaPXCvX2T~R*u?63ABJ@n!Y3$v7sEatg~z{RSR099|7gZA?#CE5 zTivqatx62b*-}%nu%YAZ)$=8_AC~1m@xJ5oYKffxxxB9gy7{%(y|bF{iIzm?RyS3x z{AO9sOJ(cxD}QoY`})os)9-p<^FIe)etzEOq1rFLz3Hb9eYLmq^3(P8$C;<7mHWQ+ zVDGE1t$Sxz!}3$xw=cQxF1Gh1cXZ^vtJ7*YkLSkC>&>UyRz6edcDwfzPf+sl|x;F^KO>zUa{@D=Y9YmoA8TY{nqxq7kYYTe0lNDjvlST z@7+k0Y*J6;z>YLl0cXRLPFJp%SacIaG+nK`$4$OUGSJ8<*c;TG$hxhNV zUmc0i0~ePr_~XTqzP`Ts4Uhc%{c!b$se{LMHLPxLcU`=6>G^sX{7k@=`!2hLIXL>S zZ^L1n>l%<}8Ke2PaX8cU(S@?uaNyzU=*R(e+A=$j73LOn=UtmJ|Bcsf-oVDbw|;+S z*@hd~#D~W(9G%u&Q1Iq;p2x<%3qQ!IGn{{t!w2f6v|Bi+9}Zrda{B1B*AH%*`6kbI zUwM2THgIi9QUB$fzl?c*;(*3LM+VYvU*9ydc}+n74(TwAeoQSQD~Mh3q>pf396rWy!Z}p#*|~vCi>ivppVU)WA~P)XP%yV z^o{;~L;HPc)yao%JwJZOH`4Wb@H@Wueb0STYR~(f+lq5@bHHb;YxD2vGK~{|-#T<@ zYr#4_|GZdye%RRlFnRFLp$ZzyJ{V!J>{pfhWFsHtt7xI5<`60uR&+89$-t19c z{eC=TIPxPs=gQCJbESA97z|Z&sFu8&0BW;j{eXd^z~#lo9Fg` zmk4uzfE!KExcc|xaoPt){mp6*^`XCLAM$2g`vKPT12?NbXdm*Tec)!dhx$Z*$DW~o z@SUsruWjEMO1J$Nd;lXqaHHut*Zt|78A``Cr!mV{4NJ1-}O_oaA_r*8k7QKkWFM;~@&~6fojDVD_Jq zQg4Cn^~3Ne#mk*te$t@e*IZ1v{(o-4P!qg=S*{eUbSxGlZ0~=TD=%lyPbdX^bM?+l z`snZo@NcuEAKH%%ioYfO{z~yR^4smHo?bup+LQKMr+?mmw)LOdYc9C!U)Fa#9`D8c z^4~vq|60GlQLZdnBV-RqAGhP>u{B_QzO0A2ynns5XeqJ>)FwMS4VburZ<^J<|CvZJ^_4KgF5B_<*KT;}{F#mHr z@Y64`>iJJp^Z~x365n|I7pxRr>-nefzsi49^a1{(5^wtXm-rw2MX*6@5T|y1Y6L%laPj)Ut<0`R`VJKwr9i^>A420sKq+ zAITU(Wxda6bzCU*dm>|37s9haUfQ z>Usv_cU1Q8A#bDeRZ#!e`PZ@7LpbjT0sj*JOZ+eA|K9W4wf0Lf-s03|BmAH5 z_mK1d?z_LYmc7Cr{rpS(4}CSdo&w-zr_E3 z{yW7#TWt?P`HzY|pl@AX9kDp?Teo$MSi~DfX-XrdbmK(m#TH?1%AG`ilu$~ Sd6ZV@pZ@=-viYX?Km9)ehCG1) literal 0 HcmV?d00001 diff --git a/tar_entities/tar_override.psd b/tar_entities/tar_override.psd new file mode 100644 index 0000000000000000000000000000000000000000..1e1bcc096de676e79165a061f08ebd72ab2d735f GIT binary patch literal 140129 zcmeEv31C#!)&HG@Ei5rEsMS_S6qhPw!VU@4XEr(Sdu`NnfL$w&VBFAOb9ks`_+Ftlgzw(&pr3t zbI(2Z+;i`H_r5-ZGP9IJ=}!w>O6A)|C2COC2Ym*O$Y{Y7rOx=V;~JHCcIV;tH9;x- zE5Ye3I4LWyKVy6FrNZjXEBfB^`tI4+N!kTWyW;ID(q|QWywiL^XSOddzp#I&%Gb&} zIrDS+cbeEU!hJ-WEk`nme{bEP@WPp1KG5xT;kliP3XkYQ$Vi1qI@H5e@Jmzp|r z=FF}$yLT<}=cT6g?b|oi)h)GKw=Tfw5|~{W^vvo~7&u=OvFHr(1-$Xze8^%eN0`wD{r*Ee(qIEly=V!HyR_Z#f@d4fg$aYaQ119ZD*TEcJ+9?W*`?Ywwmeqm10 z%)ljAq&ChHX@Lke-w;pGHvl>Nc5!v@lGbaS%hj)Y?|x~0uZha9ks4*sfFkC2f}SV> z(67GZx^?f@9W-2*QrBFXN(^peIz>78xwD%^C4w16!*1|?gNq7^{24_#z5(5@NNoz- zWUg_(S;0}B**H2rF+Rp9`HYMhXup?!S z_DuH;xJ57~Ir}-&TrLSuMz}{e-8-}LZ}uVD(>W))GLhVo%Gd=pE`?S5=Sz{?jZ3*A zRoDJsCzWvn$9}g8H$~vzRF{l_lfGMBnj-Km>Y`gKR*9n-BB|qa|B4)MzuY4KbWd=A zr?|Kv-|L|*Pn}ViV_Ilim#;{Tphgsh#w8=8--yCM&{OF3jTkZjfUf!ZIsH66vU_H` zdgpe@_WC?sdS&?sB#Hv4g;hZK2BXsbb5kBd1)UXZu> z>es7#kM2Et_37EAr^lDpB`wX@7iHw;bm`;k-ZQ6XPLCcgZ?08P6tUw98spE$u` z!eL!D@Q2i>GgozFj=syTgR`_I1ng^~_Go@upctG(qOLqOQyj zz_ibf?N?%IvV1qiLTOL_85<U$w|keX_2w#MYYUyG+pG}|EHnep9PAh&OJ zTJOHuP`#Y)IbC|YdUWdoMNI3`+w1F*=IxuC*4@>|YT>8`Y+OYuRFr^iZ=lb(G`IrY z`}ItNHxPwz;{36qY=)20oEC_%=bh>)%=6_8NVV9p0F62NAvap{te_Umw{5g0J+S|P zmecJSYY8pu+Q@Qh)TmjA7*7qw90${@RC|7PoL#l8-uD@3teoE`ZJSoS5L*<@3B<+K z94Xm2adFwAXigw5uI5O|#)*r|7DaOcad91xNK20ClD7`bEIVB#KmQcqB()MxSAs+8z(L=19rLiHpk?MRNjiaWzLuHcnhzwkVnth>NQ^QnGR4;<822 zoIqS$&5@Fg6Bm~)isl63;%bhRY@E2bY*92P5EoZ-q-5j7#bt}4If1yinj<9}CoV2q z6wL|5#nl`s**I}=*`jDpATF-vNXf>Di^~>8a{_U3HAhM|PF!5JD4G-aMsc-`>{#{{ zVw>_z>_^tSo%_jd=k54S!B_8~ZddHjFAR<;2^N%s?e9bDjN{3OYnl|PFZgYtvS!(>g<=jRT|aYHAK14tL9Gi3UUigL4j!II)J**AKT z*j{BSzbe9Cu5zj@5fd_l3W9|uNA0sq@(Y6bg+dbPNrF8%WAaE{ ztwk?rhbbDYkcqLOTP(N=OOpW*(( z<6wgdj>jA1&lxwqFgWb|u?1{f`!lE@$JrEoY@i@0@XT2S?y)v{+ZjGD_O)SqFZO|( zT9KKT8L+g1VIt#7w$&(Kt|rr{*l|V0O%|KwEzs~xzt=sP6y%fQ^%oUS#CEbwYG{68 zo+Z9yCX5A7gNlN|qUi-ig?VO{_Erj6h=O;p;A8XirbZ{Uvl76YjnCcxiTgDV>PlQ4 zI55Dx%ElKkRF zQ@Mz}0ewsNCxj9Nw_2cAs?^+Eq!i${l|URO$nn;OgSukpyQ=!9VSJx5qHyTz77{4)}Xap-EV%St+NdfII z*=~gs8wzs*jqHjyn1(cAlbzAlcmNyq7&R!;vr3Vy#zs00X`A?}#a< zrKACT3cjr+GGa(nS*`Q@MJ2^CpjJh)OV_gML$gR-Z@C4H4xW-=(Qsd(&(H0y04Q$P zH<8aPRW*AZ;rTAisJ#%IQU)n2x> z-Y_^rB^U=(vcyyl@Q}V){YtfO)22;QoAyab?N4skw%y4cPio)(q>g8vdTPg0Pd)SG z_VO_=I@0*p(V<3VTdULl@aWP(=U>oq>>JtLd-#9x@!-~-=Vu+Iu0s?zrzSFTeBYj+)-XC+5w(^ZrGztlY5k=*cP}0o=9_o?5qR*;80JFYS~T;NYfC zr?%{N+aFFN2XBo1_+a-7vbXtvF@JDYM{l6Vq0X(yKn5LFv-FOO z=6yIKV@4={!#y|Dt~vjn7jCF7I;CQG=T~2vto8@aY=7>)=dNA!$w!ZF2(|s68R<_S z{rzW~cmMVNxer$UY5pUBDPOE!ySF&x&0BQ&@BMYdI==eyhSB}UZ`$$ul`q}Z;_@S- zcidLH>X$Q0?s{;`uE402F)c1w^w(GRx|7!|TC~^Q^^~ltEu$BN@16IDTl-&_Kdr+1 z$91)@E!cVajX%G6#gY=W!`u6uwI3ho*y>JoOMS29oiD#W{n?2>zwzZWw{AOc_O|5R z{m1O9H`I`W=U#o&r^&yc`}FqBRjWeRT$7t~!CwxKxM2Q5V~v(kVEL7wZcd%^T>Hhh ze{{=&DXM2+!BxBN?^wNO-NZqAKI*va^YxS7oiaah`6G{phu-qa^3Hw!R=sVfcg~Vi z-uZmw&gsAH*8V5Y8S05e)fX;*pzmAnm#@mcFuD6Bb+6oZz3+F4XT7+h{IM^u`SH%X z&aRqYx2WUx9S6>P;YX(~n)$?{v-iHz@ao(zA845H$|s{2?*8ifPtNJT;oQ+LHry9V zKk}@hR*y{GdwXH|k~_v9NcBxGnDs!r#l5quM*nurdHddewnxt=Mn1eUoaCK9Hu?Tf zx~J~#TXp^T->z)&%* zY_(?fGd%~t^|LJ*&No_2crrA4Z|b`%Z$16`+c#t#SX|ldx;IPizdUsI+N?3pR-e`H z&WYZewwycR@)<>E-Pz~i)tly)%v|1K>8~eN5C8hQ))RK`e`8O0v1{sk7rwL7v94~| z+=~0>u36aU-nrv$9dgf}C+3g1#Q4~3!=K#JuI7$jwK(>SbQk0?DPY-uY2~g zCA)hWYEpRIJ==mS?!EWUkCz_o_Qk5{EAtkucz*E6YxghNJ@<`gw|sQxo-2NTMpnD| zb-UO1yVL#N-}n6W+CAGgF8kl-7r0y2|7_3V+=mSHReE)&s|FjY_q<=+J9pv-2VYw8 z?1qQy6BazX_jiRq8{GfaYg4u@dwTNjyUK@$A6)vooA1xuoqWqv{m&n;X2(mA=zxizCGdpIDbA?|jSrvY6t0ORG?4H>xJ3KJj+v(+1XP2+_ zPQLcxWvf4*a6|R~K2>#5_0N<49O!rZvD3Prf5!RiIvzN^-_yM|Uw>Df7RKbqVB+BvIUta@PU z{70@m_0b2vXrJodJu7@)PjBt{hcCPB+To61pD!<7Qn$F_*OzpX-mz9o*5jKy;+49U zhZnEE{oc@p6?@NpfBqjX``MqXy=OmNa&zFwzTQ{QyY`u9+Whrq|Dl&x{do7$z7A*Ek5-7HI-N2?>eKd=<=GrFVFpD=-luvBQid^b4|s^ zb>3yux-FdJer?Syn-ZT%Zm7sVI(_c)Yj*!}<~GlZ=bqoW_T?V){arr(X#RBzxwHAXU`5Cdgj@FL({i@UU)P;P|@i_Rk6Z70X~O3pF3IV6?qhR2KN-LAzE(Z|xc<7j;&+294rPXVzVzbJ z{vU2$n)lV58}|-=>dS4_$q#OsP@Ot)-*2lg{Pe*)Lr*=|fAP}J7w(>$_4%(KzU%&n zKIyV2anbV|Zp-@Y%uNptTRmfK<@n8KT>1QpXR8}lJl|0F!l8|K%^U*>O#1TRb-jCr zcb&W7?Pc@tdF9D)cKM!H4qw)B`S2qh4K=>}51lVS<764@zM*l(Jol3`E?QhQaqE|L z*@tWT-?4V^uyqHH_FU4i{^jSFRebuF;0Jr^O3s{_w`0JIw>}xi>r$K6&x@xjRoi z(EpOEaqmB~r|T^ROD+lD^}%P8)^2)o?y{Zr4_D3oL;ao|y>Hkxdt&c%&rUyQ@3SA@ z`@%bad#6?9v}@*;biU%~n7X?kSi5XR^02Pn18=_uB68!lmDmJCm+_&9q{(Yy%$%_+!4C%fxo`ibw-_I zf5rLtO<%aE;r8r?4@S-Wi}_>@}Y+Il6fLy&DEB%??iVPAoa&>&^H5?2>1G^ox}b zm-Y>>98ms6!}_AX>`Z?2_Mdt4Upe#I*Q)w<*f?#*-`3afy?^@WuLS1)e*QxvZ=Sc~ z((p5LJH2u3Cv($osJ^!Ll(9oF`lcJ7G;XFfcuf2MD-_KHu-(7q-`<11OXYMM${FcqN zd!K&&!^fZWT>a3z0lypE^0!-@Z{4}GrKj^1$>}5O-ai_e^vY8cr+@n84Y#~-PUS7n zEPiL+@ckzpy=D2lk&kZkWmVsw+IjgYAM|@+;N!`kK0opLj&Fpzf7bfQE7S8rgDU5b z7;~Rz&NX|Lx9XYV7q0!o=;2T9yRX|FV?TcNoss?KJzhBUqoTSFd&~DGym;@rqg6Ze z{&35TP3Kn!E(`hA)h`@b-|p%Q?m29z>z?0S^6KPXRa+i;G~=8oF%^XFecL%&{&(!X%>@^d#XpSb_*<>z8VnwYnC}?tUbv{? zoKVHKUZI|^-uBBohqd}ipIKXfbJJ&+K6~ngXI*|z@E!~?oi9Q0SE195y|4P*4X#Qh@#_obUp3eGRP&bm`MSavHk9@KQ{TV;`Vm8Qeq#Pr{_>oP`h5*^|CYM3 zcepAH}nR`nh`GR7t0G@E@iWe{$%uxdQd4 z1iOsVKP5)OD3703jzp7Btae1|;^-8qi{q!!bxCkoG#uR$BD6I%Wv;bZSI7TsQI3p* zMxB+6YpHx&kT>MV2fvU2ei2KM)vQ7se`d(?jpGVp;Db3ObNu6PYdKKO>EfKSprkM# zc`57GY82M%W!y8ac=?X>(wU&NFy+HI?K2cUkBsfl7O|q+XJx3l298SHJXEkTVmpy z1TKC4arx7ITvHyn;nLv)?;H1?(9E6Xr-CzY;}2Il+u_Tlo}g+;`L&R>!d8n&^^66S z`gwme!i19_EqgA4waLT}Wfx0B*QWXHku}v*>~p4(_KbiR%e@JshUW~UTqAY0mcJ-@ zH6%DyR@hl-HLx(RK-RSpa8D>DNIp>u9cnn%$_X4*=y&ou-0#UTSGAJVa9Oa;QTeh| zYl<2<3W3;?*rTUAo#skSdlP%Mx=cCML|Be|2u;?eNHu4ewQSBX^A5({7G8N%Kvw#n zXH0)^qowIJHr|3EA5vL_oiQtLP2WMtD^+c#Xu9?tgzMW@Cv4R)`wqgG7e8=2H7r^} zCjxpQ*6dz{qPy*FSK}1h~*9`q>xCgF~wf>&kcF+vqC%7UfMt%CGRHk{{m>2t9e4Z?<)eR*`=c&L?bg#n$RNG^M8^i*&aU zg)=+_`7j>79BWlF8EJY|c0^&0Zdxc3W+5T_7q3igA=48Uv$j}l>~#x2k04%s9jZ*Ul>L1 zM9Ih*EdgPcSph$@5k*<)=9!|Vg*{<9@r@%L=$UDut^%%`% zmNfamoEtItTItbbDKa(!?sS`-4%B1F4=TV7dLDLc4GDt^3Nwf_+CQCRTeKj@;1Kfs z;B4KNF{UyaYj6>3AB-`OCk2Yojb#B}+!_$3Y2XOboKd4_E0N`6j~Y=hd(?=)qLqs$ zDi@USv{F&7v6>M3d!VpeCSon{6(8nA{)e^|Gw1^m_ZRr`o?J(KIUG&b{zxJfLbZB? zRl_g3SgS|qk0jp6{MsL(@oi02JPlv^GZ7lvqF>w`-;g-%c=s8{SQfe-W_#C$cRnAO3iKTYS8Z8ekg_P3CA0HHaQS;^TFEy#99MwY$e}K093hRG-&>eA-QF z^wWQDV!S>bO2+4wIA6I|$*N7Ol?W@x1e!hkV!U=th>X-6j?-wg`Dym3eC|JZ83XB$ z!`w!x)EwnVKkA=jT=DlYx{%0k`q5nX+ZXq3;qKq>g@qG$yyWgZv)_vCOJ9&lZPaKq zZq_LJBxF^Mn-#RC|Cgv+@PwDs{F{VpKYY`$TI7m?Pd4E_Ks7B2o`uDNo5czu>5fDpMWo)$naDcbZ3VzbDCMRZ= z3&(S4A>JjxSE+b{Ib2k`Y-HQES6tCHDb-BK_XgW05dcU|J|3DxNTNxpr02XiY<%zf z(cuylGGGA9%=Gv@d45mv)UhRnk&=h#2Z8`2n_4&YgBq=G?%q3G=Np`vf z0lDz_C7vM4_XRXSSJ33azNG4zk-U#5mh!+^`2pv(PP`n*>B5)S>rK*=CL@7Bel<{P zrt6oKiaHGR`#rOr*D`}yaHQHzRD;hTi`WOj$qAr)dC{>l5#}S9dGcGVrc#9X{1cT< zO1%p6zx-VD6&se2l2V7|`vXDF0l8FC7-WrfAxWuOL61LpJa}kf&hfx3%=>(Ue0Z6M zFNOrc19LHRkA@D!b8=VCF2*ynShaEHdI|zQt4tf5GqK2@BQK`uWu;~MeLC6M%?1?( zf{kIATn2nzOy*{o=mBRR3;!BC66WmQD^f=(g>%-zJTz(7KGMu-UAuR;+Bzw9lrISW zSwW3twR@!P(IUeOP@f16mBsp+N|ThzYLD`HXd97e*TDqQ2Z}Vym6)~>FGe_nO8lOH zC(q;0kA;uK+5JV+O2+teC}*p#c(ap#wk(JgO)oAAASsHNR##JB!I~@&e6O7#uJv)P zr>%->ed8f3ZtL|Z7Ps}L9OAYQuGOqRDSVNCSra}V;6d_QjU;dZvEs;Psg<`?8(pRZn#vX-Pw z3Q-c2Wi#xUv0R=GSwBg zAuc~J@w_DUn9HM+L#&w!;xpA$ljjOGzy(`(3qOQ9bw`*=Owi_+f zYO8ezGBJP(b-u;taUZBekkxVCWw%~t>CgCz+4rynEVF8{Uf1SB)+kp z8tL0ri5ireQFLSe$dc*#jT8hAa$=D36nulC^imn9WS0i#8qS2CnqXw`AKN>>zL%be5+Tg^) z4#U+T7JkBY{zkVpOmo@f3jYb$_nTbZ$NizkYx}89t?X-H?7F@z^w~=~))0nD*s#V+ z`o~RoQ!^Vc=VQP)!D4=DtjnMJj~4Qqv5fzZ7x9~1%migw(~nxfPqoZUWW_zT$;JEB zCYJ6~zhU9t9t@I1DI>c0tyL?M)$*Y&H4+b3-<=R|SNmnA3kC<+Q-a|aN3%rLjj$0x z4^BgfhDNXa+J3MlE&F~@DozE+zZrfsx)z^f4OO%s>X2C^QZan^nOuE-qh$y zkIK*U1WWur+lga0jsT-bSmi`~HB;#00(j+oL_X3|yraki6?lury#1BhX!?M$dl25V zJ}sJ?82{FGeqv@45ucgcc5&n^#4~GM;9&V++GpT7&>?ClM$|FdxMzWOu{oC%MT{7b)U4Ts!Kpr! zEK1mjza2wwmd4ue!){czN&y3g|NaQ>AFLRe~Gy z0ja(im##hg$b2X(0*AyQc+5d?E7nZQZZd}nJsuxJbpg7zE}*yRJ`XAKqHh)AA;>^c zi68SE>oJJ94;}ZRF{Cs#EfAHB`_TW)JR$BwYfmQbLr2y|;y!fThcqBqn5HdQi+87&GJmfT-lt8YPdxG)cCjN8z+3&e$S6{A}-7tYL4tQFn1N>4or^Td0?Nu zAg6Zz(03_4`fiHI$=dzs?zv-c`aQd^bD#0_#m}B|b~)t6vs*93*NLxB@198Ht~up+ zRypLCyC41ILO4b7x`u{u$gK#!u9a2lIH*_5`2c%--bb zo&eSbhE2+vnIH5{wf2pxA^xnXF+1i20y-y=7#>&7woqFaV~Gb7Nh{tyfSZ~l3bA5P zP$VY+qslxD!0EKMF*MpV+su8fq+)%nZI)J?S8JPPG%V( zkU+4|+Nx*gL}2i=>5(mbgCZ%}1toq9-_0{)%+F{%ajfBfuLa|kJ3Fjx$UJ)?D^}iF zQ;P=!3#t-xS_O|Z;XNxZq;NY6K7;);oaTn*M&~vR_GhxQ3k`PoMixd*@CUuouviY7 z%Iz-N$|B`s<&J`NkmE|QRPFWQS$0b$Qt}IN6fADh<`m7$z)7e1O`mBn0w^GyOyZV? zF&wR7jQ?OYY$UnUpKq;UZuVRA6RlwujMun^K?q~~!wX{dln^9*e|po7OQ;_IkfNMC z9x%{M0~OT`BKyFRzwK7iXoi96tMT|dykO=y+guJEHM!slR%*YoxA>?FiHp|J!X#EeWJlrp5HFaQ--*1&qz!)m_13SK{@lg8hk8iqh zD`x`ov70RlW;a_DjI&>>-=FySCQb9i2P`2chke;~`7b*(B>G5qT1cMl@t=6q)IW6? z+1MHW$ZJKcqs^q*1{UPW8%xA1K7muN#^eTKkAzX!8|y@V+mma`aMK@a0^Y9J!)<$o z?D8=KXLJH+bK3Gfb@q&cU@@u1boTy)=uc+QUl_xRA_QrTz1?(mf&8V)jW-`|?D17I z0mZlnA)eFbmnXPVan7S3ao+q3;^CYU#Bzb-1x7&KATRC+B46Yd6?@?^y8GboWh`aQe0=8Gud7Bz{YSNHi740yLT5rdZ3KH2&LJuK1l0(X6TXqG8tFo`2T#hDU#?4$-}bqFY^xnM=^IA5VVDF0 zmq+#d6Ivik9p+1ihGhlmk15=X9>yzl*LG%5ilk-1VleHS=7llZ6B)x)*3C}y^)ong zCCcaimzlbxB5WX)mk`bJ-&xx$L z{>0r+$RWo4oLFj#Myb4lnOW9&KVo>6bcrm#SNwfnc6O}2R)iocPv`h2y6Durf()xH zYY7Ic#&XI8(gw#GneXeBR-in_8kC|tYanOlaokwL2GW|rjV(k3EdMGRW+{9$43s0> zOe(dLvS;9xE~fcnmDX5$?dr6m?qtbm+N-_uiH$B;bmBh=SwyGxO17PImeyL)T!mS zKbJ|jYWy^%*zFeb9EJG=ds1ZYQ~Wd~eaKSdtrvLYB!1Sw|4*kW$+P&!@4D`B{AS$$ z_^sBx@JN(?Y)T(4WbO2b>>7Y}TRIkyt81UMwBFch z9dprJCG11xkf-r>iRRPq;p*L^o3m@o<#_rh*ur3K*N`m(X2jaq6WQ_;Yb_&iYb#I` zv$8Y6+zLaXSsUI@)C%@SA0WpYfr8deae@w<<}^>5ON}}$A-*m5f`ffeCJJZs-ckR=sN1A!=gFLPp-%*c^R?%OBRqQ#^4(;ydawAjEgn>rtqw30!daN;}av2+9c= zNAIZT(}s!GlSuL~*NJz+w_y4YeJA{5!Lwp_!VhZs#~pvp?B+i8%jLVC+s!8|`K~_h zYvq$>H|d@5E#=wfgm?G=8GaM^%i8KU{_@$k0Z-tEpNsi~S#!RL83QMYMB_W*DYvE` ze2#ud)P1#^X!1Gn1I!ajO%$c#JK>wyM<2c4!rE~Y1&i;5H`V7`Ygl|Iym?YXls4IW zx}st6o$yg7aoENRftV-Rqc%{)w<19}F~^nza)?=d~ji zesg!isF2Lgpb`O5xci@h%eWJvxg(k)mU3O8@)r&+IPZ7Wv?m; z1S3yu=|`vm9>&*jaaZ05ybz5qL5^(0l~-RL4?g~Fg1pUM?D6^r`S6O>$UDv~aO@ie z0p+{h?A;DgFE&Gx4UX?^&*R(hVzxgw`LaO>t%=tS0{RUv9JIEtTKkGq2j<)e_24_S z^c#Wg2W|$=%C}xd%_nRkFMLT#oizElm)}P3Pd>rc*!bS|$ZN!78uwqht-71+J@1v~ z>e0j5HLY(NF8YBhTM?iy@xAT;+P&@nzcs=MI&ge%d$b+Y7B5xa;u+uDE?x>u$-iZ9 zd!IgC(|V@$?G@kKZn=HU-=ZCVTf8|E#`m^QZFC4i{B7|AVAkYWV*91=jV504x5Zm8 z_l}*}*{24bcv^Sdfo1Wx#mg@EZZ;Pj9*)#ip zW-CqODdKk`#*^COZ;Ow=E&l)ZO_xcj@wdf0&vgFSXyZD~xZJqb)yCD<)!votN>SHc z9DiGU{B7}kDNTHDd*n`uK5O)Z_erp9>hT8~-6csq{vJt_cStla_WnqtyCV^A=7hIK z;y!efw?Mw>21wk8#@osL9`7_d%%+BO?q+$+5v{WzCKAtxo-`k6QCrWS8H7jLOgR@YNTAD1UxP1Q@w>V!QQ2 z^8NAip{(0D@$;d$79Bqy>R)m`)PLUIcK!5Jfqq}S-ra6KT_n$#op^V2+A8N7@t-+ttdKP5Gdwr^X&8jue?Ccepd+d1g1{U0nU~9IvDrj{yf6` z@C_&2)WYJFYBSvz^yGMg9utxzudN=JKi$W7=?&a)>F|M%ZJH6gyS>NZ!*{={?stzZ zFnT2Z;SNwr`0xI^&G_&Bi)+Atcl+OF#5EwU0sq}&fJ%sK05qVrYJ=A&w^i-zzqWY0 zVC*-NW`%TmJITkqZ5!nv1q(NFjipK)o!6q%+*}cg%$bB5B>YjmuN=erf2>xigv5`R z@tT-z7(Lgj4^)eG+YRFdhSc1!;RvU$Qy(hFkB)>4^)!R(p$5Ydy7&|Ik#clts5jK( z460Y^3`c#Z^=h?J!;Ts1!S!m5awL9y%y88H=4VHz2I$ zRvGGlH>kBNp~`R^Iqfrq)kB93^~=xHI+k$Qa8#yjL|DCY&``H*RG*-PO2e_Y{U)`Z zMI10xkU^Eb-*D_q+N?fh5&H}^jX^bcui^Nz)fTmZMeH$D4uk5U-G*aJi_g_(EMk|T zu47QWveR&ENcci+L=oE!HU0~=i6v||9BUjE2&?R`3^l4kZDt7wzQ>@NyUkETx2i2H z0KqpIR1Z}cs{c0iIq4&~j6wCv=Z5O_rTPNow;1Y$FI5G}Z=saGLRe*Qf{?#bTS3;?(pT8Yp_0Xq~@^Whx!U7tfP>3s;^PR z+O?1}gDU%D3VD~>jv{ufG1RXZRC8BT$h*}J6jAjNq|BgN@FAtVN9|-0A3(|ss#jN0 z%6ru=6!D&+3ihhqEa5#$c^|?mdnJUtPwim|D=Fpu2&=hoL&*EpUY77SrF;NkwcssC z`GDHT65gVeD-l+&zG0}0O0^#)ybd8(ssk*c98x}rpvqnWAszXugDU$a3b|TU zv4FoC>LCWz+!rb28dc2_UVxMtR120;%12cVi+CPVW>CGlgi=1Hj-rUg5b`l~j3q3l zlxq=I+0Pj2=e4SqB|JkZ*CDLtJ_RAyDZF#>M^#Tz%Jm4V1&bi%dR5O77E#I#2&-5B zY$#uYYCs837>>_dgj9${JPs){sIniUki#m>A|8d58B}xsWF)S^)CeBUkE#|L2^kEk z1&>? z6wqY}Iwya14HC-B)N7l|-Y+wZkIPn-h2=M7tSvhT_}BP0lrV~BhqS+@cqp=QPUkg;Ck+kld|wru&)FaT>1Q3u0i z>a&pXsgA7*mpN7(3nTh56L&R~sZAkc17fhYp|=~#9OboP#Md%)TV0vj5;8tR45@Xm z*OfV5uMZoCQTnd3b;Q^RPQC~k8_PBT7A98BirTV-*WPFd1NaG1*4C7%ts!Gm*?Pt* ztIHg3hQh`H;2+SSRaIr`%aF0T>{BA_I#T9%3kWP^Z`oJ)t=6mo@O8-8f|7u>?NFKH z?QmG4!WzW5BV>GD_8C(*R+c&5LFz8#J_?Yqg%Wp#j4#SI5@YTDGW9NFn;5IyTc-Ae zj0zoFh1h$H?MC)0rtd;%U)X>&UfWr=S+fJs2O+f5=Kum_+s-m|AdL7HCfB`w2w=$O zqmZ!&p<18;Y2)@XG>5SbF<}YO)gj}{vM+=s)b(%}u?k`7%QCe#WPGJ#Xf^fPjxxvc zBVmBH3QtgwPeR7mh=Eq>J0NeQuH7U`LCvf!`gXy^hr&`fc9m@>!mbTkHFlMe)7_e-PenI& zm+c_Nw)Mbh2pfzFOSM3R@Sqxd%61ZC<2tPx1`;T~aM=<3)@TmbijM3p+eOT^A8Q@i zizY&}ar0lS8u|ia# z3i2Ws%e5v{l~Is21g$C)ZKy8O+WZ<2pbLx&AIn4;YRamKyX|jU7Z?>rUM*7_L&niE zp|p`o@t#%&f`l3N3$U;y1iN&UG}gYPwSi51jDX4)MHOnxB(~~BtqQeewM^W#v`kfm z(7S3iJ4>}1)RomSb=wkY`Fg~Joh7>I>p{AK=^GbI<2RJmYi1Vf)`vM|>e^?d^+RR& z0~=54#y6v@o|1-#*<#|ZC#BsP6R9i`n_xhSNZk3Cx7i&TTYz6x_MoB6-#?aNnCgk0 zk^NO)H9%c}zfr0eVj1`jRsHbop#}jX9dS4ChN;172v!frsXpp*g!-u~5V{I)4jzX1 zNMQBAwJT^`j<@DMT_Yq_ip%n{_bDst;mT z5iDW8dQFxj8Knr2!l*8Tp@aC6egnQW!Fq$0+>dW%(78muU!L7w>44Z$W41zVU^ z5G{ZY@@Q}-#zVHL#-bb=f^CVV|4m-PsDYLlq(|b_Y$@Ne*W%d+u-Vi*jD}7YhXUm0AclA0L zc!}*Vsu3&^#+dgYg#*q@>|S_SD+P+Ho+GUg{CQ2-ARpmi5)nn(wyan~mRuKXty6*} zdrW;qxl19|Wg*F3t%U*t)j~^a`#xQ`CJzd_DN*>|S)__yb}O9A8llK0GKIxbsZLhu zOgcuD0eM!~@hI!FLigM#86CA0pZW}9G&tH8)F3QCk+|WgfQmbAs|!nCq_z{z;_Apt zkfA*$q+Tovbpw{*O-k8f#1OS&`RIx$pe;+4Kdtl9Gm%QIrgGFs&R@bMW`(R0!*;7d zl}v2rklqh0@)I^%)ZdBP9~13)2O0)R(7y32453^y9fq~jq;>bzhR4!R$LpFNvOy{C zfZMEFL2EJdvoeHP%#jhoP3eP?gz7nhp|QdxYL!+1ox>>6#(*M47iI^BK;$2VQau^d zUAz`8nfL;t786ka-@p@-T!P1pVbMhzBC9V}o5q9L>P2;=u7+dZOezg4izK+xWa*IB zK=Q-7)a$&UDoV%B^QbntY}C6@x;>oeiZi1OaV5eByPU2$Wdu#E5K(EdnPy>KNVJM* zmI6GXH9Hm)YFT#uox6kT9@HLqV%ci#{!3vpi>19<#OClCqQqX;QegjN-YuYK z4f(8OJ7m^Pj$byKRzLD=nE>b$GF9Ko+Gu6aBNXKL0GYCs$qM5}}zM@WZl zAee?@DOy+T6*$qbpsHYBXT4~JtvWHzJdgw@?igHQ$0r$knEHydpFT* zQ4*X5c5dl%Kw}4E9jrJtq4e>FCun<5PlD6rZCz^m}5h-Y_=F#t4GD!zRqe1E5fSfivm$A1d``q%qKg{ ztMh>s4M3S3*jOgGsGhSAL8h?QV#7+JMtxnyeQW}HB0v(BtMx@HP-+hGmNyYL&8gKu z7+CktL`$#?HaKN}09RBQLp|7{A07%)QP6Cr9-+KPExFUXW-57xcW4dn+I8Q@_6B7~1G(B9O|o(*NUwxg z;!08*sRtsf*Uo5{Ks%up-t5+z5k<5rQLSuO`oB5OffLpSTC z*+dqE7^B#zAM{EYCY&Rtwpr*N7_C{TR7ckWNVEkF!3Nt@vK#4&2?Y$+q(KX>Oo2=O z23GblB3k+u;?zk5!2y-MAEYo+*F`)dz@TTOM>8W5)EYzfwU!*TtgtRsc)3UWH(GC~ zeKiylbcLEpD6_NK^jL?!igB7^rM5QMt{D4l;u;hy^B`eB%U-LaRvFC&M2NxJnz}*p zLFfp(Y5kqs%<@=u-HjY2TUkqC1;3WJmH0ZUYfX))JyaRpCge(nM+yNT47|doRzgm^ zw7Cu&tuZo)q}ZssqlaAv^efsVLJ5MQDAk|Qo{MAE2dkEQy={Y0GmmVbQpJK zeo2|4!ltp%)__>rqazEP7i;y0CUDF(O&XkBVN52e36E+^qdTK6n==#I1YHl2I>uh= z4+cSDg<%E0;cM!){2bb^haXmg6@arh17k0xK#N0q^suN7x}Ic~bQs%ZDZ8Tt<8Ro~ zt#Gi)(gkhMSP?X^9)PM*CKUrVj$<$B$izr1izoqWfQ}~}lP$v}(-t#{#RG&ndJR?- zNC|3=(L$5by^}i2QH46Bv&;BP!D7(YQ#u0`ORTuw&C6P951E|w2(yhzBrO~Mvz_E<9R#ma87@;|e zk(%g*X*Qqwi$pshJ! zIVin)4tdx5qsKLBCShDYB9mHEWZ(u^DA7cSpQq=16g-PConN{KC=Fw_@W^7c4`E5j z)RAzM>9^`k6gHgpoMhzI!#%5pR(=$z+WK&Xkp0DOGhHnbV%2Lz!7zA7EoxwjBQ+&) zii20;?>EO$7EU-D>DS^jP&-}N=w0LocN8x7bs@;6@6$meLp zC);cDnW1#Uos{n8pF2I>9Zqi{;c$8)qYdd{w~^kGL8cjqw2}y8f)TPXNFa_~tHl!yr$uNWwBC)_$=1!0VLr5u*G~9{I z7Xr4C-kKQv*6N~RIe^%J?=cgAU_J7*WS(@Xhg7NFltDv!TS*WGgnDbu47r!04OT`9 zG(cE?$qfr>NO!nF(?NE^k{iKrdV|y|B&00{i5^OCFcj(s@d{1WKuf3vnFFJcrG(Pc z8$bn6#OpyV49SF84ufGzU!%F*^~NzUbxgoyPPwbo6Ob`yut#{aSz@FHYGh| z)mbZ@fvlQ@ZcNIy4s4n|j9iJniNL|rImGV%A?86ro^Ac|C20oQ@mMNrRw4Y;&i8z1JdTanoTW7I8t}BOmnx7ejVNV;nFgy6^nXV3w7F0KxgliFTq%WmXFa={7iQu1fO)*Q;m^x1_Z9w~J zE_8iqUt6OWAQStN45{hv$qnR~X3OTpa$8Ls(iqYRkeShv-Gb!B z@`6=|`xPu9pa2>iO%ODwc4$7`JU-Np@^k5{B@?c9~V7Lc)sPL={WN{tbSty8w zU=Glhanq*WGSF057ND=D;X}k|_w^7mD%qAK-jHr)%lsFUaNrzelcAtT`braOmke+rD)Z(#tI`KaVgFsjV82(EK0|IqOCVl8blGf&%+{kY#NRO4 z2RXAuzOnckA#D1i zRAhk)D*BsHLxn8Ej2_W~Jpy?2rnQX`#ZSKp1`jot3R#Lo?XjF>+f}DhH<;a3C{d5e ztmAI9l0p_;NiZqJIMP4C@I;|nZ6)H>jv}Cp$w)z^HAhL)7E-OrtB^7hFmRalquJAJ z1HyKh88SKuS^1$fwVs+yKzvG)1EUx+ghhGhnDW)bh-qI$+G-;lN@Rm|6-`5sekGe5 znZ*-83i}JW)A>nMtiw7XVY)*aizACjY7Qi&og0oyWRnD;u>_iyjmji4L65{D+KrJE z%3e#B{bt}7VZ+oPkt8|9jEfxeS6ug6@lmy0II=@8S4frWgpkF6Xe6+H39U1^Vp;S- zQC_;$6dbsuBT#$DIP?&n600p=t2Xq$9RuM#lfG4k9!qE|aZmv;Wh=zlHVIEf zIoi|>%eYcG;6Kyz7DAY*aNwrav2C>)$?SrvYN`_0JT%HQMp6TIJu(0?(!ztWWC|;Z z4rS_0LprNyQM0-P6w7FFHw$J8wVg_0nRaP2)D|wZ*$iZovLPkP#>7AwEH$JDZ%q!# zrjAS1SUY4DhY~^UFCZ5xG!#p%Xd z8?vb2NRwfVyJP{swW2Ayy^+=OA&^UVb*R)jDUDHWR(Q26yY3`(q%8;?Mq%FU+aPI8 z$H|LcG+^=CTe4hsU7Fnq=@<})wd9=vt)rGt%n}s7rr=0ds%aqh^jcg9>4Z2r}e8`qrs*y+sDWsPhBoXYP5K@l_1oRf7H8@sKAD{-* zR1#rRiVYB_%9KC!1iirx9cLfoz^hDsmv%OJNN|fcZP`UGR9LHG z!Wu;=wU)6{+egmpWekB2eTvWrju4Tna1b@wBj=`AQ8fzoZmF}@4>)?Ft5F%WH`WlByuiDm-UPG%2mb2bTejje7OU@}4u*rrN6Ygtqx>qs%j)^xkY zLy_evq#LJT_8`P~AyNENXtfj=zHA=T!Ej{3v$lp%F(Hyu<7h)KLnn!#^*XE@C?S)m zUWy@kbBTfs(v?Ohgj3B{W_P54lJeMjweo6HqM0ySg!3gIxufFfX0}F^5R_Sg66HG) zUNu7o>Ou|DMvvTRl{1hA-r*Y2N|8dnZcr`GDX#;6VQPcjYG*1^GA7hU=}SsUN|&3o&rU3pno;Jb`~D7wZ>^{ z2oKuQ0^uGdkgmC!REvmsMaWJ8i5jAwx}%vjW`uP#jfiDl={}PUPKQj-g_6_SLWy#Y zgQuJz#CmJGXmTm5BNQk9@UMp^%Wrl|yPz$QQzn`s0WAgCq_2k@wfdV?p5^I45A`wlT~(5VK?3K z5<$o`gwQD{KO2@ZqAEy&3<9VuHOgYeT2=xYTxG4B7U!rZaG}T)x{P38^C`-hEyS@v z58Q^Hw6SsUS1(IiI>I>q;34Y)pM=ofpkUfTOVo6cGPF~qrDhv-1IvRl`;?|90g^y| zhnrq90_Nw!ucDDWm7fy|h#B$i1! z6ZsdBv2vgb2U)9>>BF%Y-3%ZKl}BwGtTh=+&U#|1^9!?@f^Ix=3_C+-S-8+$+P=xa zDv8q9qDIkcHub19r+-iY2t?Oe3jtB}KU7gE0Kf2qfGBO^M$MPoO|G+pG4?YynCP^4 z2uRYVhxJDb;$Nt1M_FqKrDx8yIa7hg1DA~vwmcxoNdjyD872_2*4>$C&N~<|S0mHY z=TQ?h@7fh(bHeODDcrHS&~M2SGI4@JCitZiSkq6_y(EYt8iG}4F%DW7Om2~d4yeF3TXuO*y?MLL@4p>bkyH-ss&rxKw%i=Kc7qct5MGRUDp_fWAU)=dky zRF^Hs@}&Lspk+-s)9Ef-^@4&~R3Jv91=fku&6z*B7AfimF_+D>4b}Er`WA{HzgTQG z*#Jr1+1L>%dKu{`J}q&Mrt-&nnCh$bhsZKg18jDDcRF2V8Yy6-Nsz*kFOl}2+7Qtv zvmB8s5+#*AJtQmK6tvL5??U=Px>B?$>>0HDA?>>eZ|nfNbxBBYjsaxfQZX%w)zZ+2 zQCM#lE#Sr?+6l~DmXi;ui}+Y|vdSv-$%_2j=7BxRsyoAaP-1RJIv$$QqSi}q$O_e> z|3lX7n&jY}wETI)%1k}NfgT(ty^M6Qrh+pIgH%wXTqL>QWUDq&_3Rw>BAW~gB! z!8b-%k|ixxU9F>ZjL0oSX2)N|Oqm^ze9*p|tLbJb+F_E;DBQd0C!?2A3b>0P_`JQr z+-zU%nUX`ZL$Fb6L_Me(QHl(0Nf*x;4k7t5l2&NW5Yf{!F&_x)Zb;p!wI*enEi#LO zfuaW=HUY~>NY932tn~piHueEcT3Dn-B$l~o%%re5`6d=>A`+uS<;JUsTT_4bFAF_wKy{e3gLA33{ATlu>(pjkk%Hg#FMgob$769x#I+#aAL6#)|I8{z zS>eW38kRdgI>kq)_{bdhQR4nt+&BGqcnYo4B zLMgymDFvWNcX>Gqc+32&Qc0PmrEaCBl$N>bbW5qPT`j24wn<*aNl5C%>w z@PKL}oQO)e!|F^Y=$ET0hOv-8^Arj2Co{yiO_bsZ54VZjpbX=*a;7r7FScY6EZ1 za6$4RRvENe<>HV^oC2AeEV@xcH^HhD^>VL9=1{CC!@B;&r<@i-POI?_2FMFxqAn~i z&qVdh%Zq_(k_H=L)v~n0s9czWK*~bMvb5fAM%|pqOQw()JXS$FAdawVol*=^DR?-m zR85g)MHN=7lu9&fl}cD*RG=+WaISyC>J+q{Dz7se)D1FIP&+3S1nuBNrNXNH6vJ4u z1PN16l%Tc(rSeK?S2xN9CL{(X+kZTwFePSEi2+)QUw;R=0t~#R?cmTU- zx5hZ+1UT+cX-lY-o2}7OxQ?MjtXkEg96C^1AA{g@yHm`ffZ%ewl&jv|68hq1N3wd^ zTX>}l4m&%+C6%Ap0&feub|ItbN3vwhR^%2g3E6q+CbwWWfoVm!(PdI~)xVf8#0i*=N%2BU2` z6@UU{6Igb{&^b3!7NYQZp@@?I&_hb!!uSEpQrW!y z&}A9nFD})HEWW=Gq#e5XwOfED!iBTI z6#y?G_>hsXP^tP-8HvgpN)?6>JWPv{@m4O_V6_mg#_Br5k-}GR5m1UU76JjIsKnjK zP+V^~GHnFVP2qr2i2%<|vKEDF#k447|$3tG-AXo=Ibz3g9?1k+#IbIj%Gm z;A#-}s}gullS{H)9>X^9P*~y=xnS%^nP%m6>7{u2SPDoaVl)FmRY43&4RNdLU;@Lb zS^_4(naYIN%a34$!eAVQf>8`Fl_^)`XNg8pDIpsJm`=1AMm5$tVRiXxG$>q8ivq6m zkY1|O;R%o{ygn^b1~4jtQDI}ym4UNvlR%+U_KO;5!NM&9zoGzEDL`2Q{#MtzHJ?BM zH}EWxwcZe=&=B(BB!?6rJQFC9AOc*0=5pGF0zfvXI8fch(g>a#cuR;kuK{xe;4Q>; z;Zapzp14p0;c|m`IeLNvZb;w<7LXN2_fiwWBagL!Ryr&M-8$%+w zNW;LF9O+yU2zg*xcvWb}YeE{-UWDrK zWm%+gJcL~1ZG6H@qy{H~QbxLN4agI3t9V<*`_;dsUtNgBr=QA#)kW$e_ynEsy$Fyl zc+*xl{JF49#f7fR5F&(cmB`~gTI06-TL8r6Uz$-r&A|^{YbObPdEyNX01I#(b z2QKm8iW!wk!Iilxm>Z@VxiMVRrX!&oh?UF$#NuPffVdm+DKy)4Mgqo2V3s4riNSvg zuBE`Nz;z)=F2Oj=;Y+z{jRcIpKwZrwpb84+wC);1rGO|(liTS^o5Ls z6ppcu3c3y$+0e2^f|I}4m5msXv1DPOzNk_uh)@W?p8~l88@XipuM)Xs+RfIeB|a!P zGC5pVx{#?dWgaLxAy!sy3Tut4R1ocfaRWI@QL>xF=?$P5#8Ik=i5!ruv{*TKg8m@~ z*vD^X6)OS$=!!{o#aALr6%cr4HF&^s3@}&M85B&7k+@JZG7strM&V7kNlaxz`ji{s z7I;5AhhKQs4$UR7 zN+BmVu8<;d=K;4=*VIu-P0WNksA6P-Gp8xgFQ>?usS@Z^J$8apfx>@tsCi5Vn#j$( zX0if!HM97a(DVv0raOj1bQx6;myF~nh*IE}1D`dT0z|eH=!(DRV2>u3aPFo6-winA zNP5y&YmF98bQmDfpA@zemMDA(Kt3m(cwC{fT;e3VZ~|y9=;4)ujBpQY;TGbm9RA-D ztgXObtYt$}ip6MA$N?2`GKwaVf*f#Ps2}sN-sZ;g5Z(~X`Z-cEL6+SUS4ZX&mH`fm zaV1Ub=|ZU$onJI-JO}@Monle3m)~ ze?O*s8B)jARpWaI-x_svT^+t5d>KB1FVpIAr75$ZHImw3LTlC?Q#HV?0q)UtVSEkX zYG{?J65KGT(8N`Pe)T#+iK_%Zj2NNS>WB$F1`Y_V2c$+F2K0bHj;zCiyg;hdL4?DI zVRd{RTwma5$YGSDAyv52-e?G3&W!SEQT7p(7FLH4I|R-NJtiEn!yYuDwWz}}sS`W? z7sx^WDXHppgfQ1($r(vuE#QzMr%tH{7Fgd^3S+=x*rA zVsK4dqK!szO+dkgH7w$;?HLLEn|=4JgK0gf>UOUWuy+bYx(O)0pLUFn!UsgyRLnC*c`97{FSqf|rwmi$H*0*YA;wFQbH zv4jYQV${}Rt7dut#jI9BLNzQ?hfT5_Pz*V$RC%PjGFamV=)oDhMQr7;eL41M{p(Py z1&Xymu@)%Sq6aOsV#h!+tAk~<48?NkZMKK(tn{`PDAoeSXj`R)HM9)HtQ2@cOG~BH7FwbdUSy>}v0PdW38)k(2K7ypma&pbEl|u#fMOg2#VEh21&Yx|D!B=c zQVCED4s=Ev?1cVm(03(z1B!80A(vJ&i5QCI(i-Sc&2(ZY1_jAqjb3hP8H&;FCbnv) z8qxx&1f^61j6lX3CNIM)IQ-1`0l?mJq>EjM`dk)l3hd znAJ*1sD@?gut~N9iXlgpDvwlG25Z~^Jvf86h^-v9FUOu*vwtD|pB*tOA|-`R=y=SW zlt7OAt5p+V4ADICgeHL31Z$ppiuQD-mCGi|dnz*;H30(>5@N^9O^h0x5TBy7uTaPfEv#bbC+a}?eOF`Ju8-@<1<7LIMC{4Oo#$&)V4vdoV3W_K$4NMbo z9s#-O)fpqWF^sX+VT8%d+JTMOnc4GEx#eW?h2jNfLy0h`DMIu&1AV7pOJ+xjcwsd; zXBH$J1~ucb9}O8(I2~lt%Y1lEK#(TTA)doWl6zauHK-w1-EYA)up!r=--4^QAy+2{ zHMGEZcr%9Cj}Vvun3H#7q*5373;_fsY^1@bB}N_{;nizKp-c-{x!iI^M=(C6v9jy}jMr?rZOD_p?7}f6_i#(U+U_ z2wu7~pWDYB)b!Hy;oG4@Z{C;h%y;Fx+r8|q?CtCt`{VYB_RETCAZTCBpK!(uM4}RF zoa;2r43fLUM14bzhQXq_6tGbO54=GZX~Y(!bFHjd6M8jJraRPt5-m`{38xagq))n# zxqXQofDG{;=&N5BQ>2ig08hE7Iy_GyBZ*zLWAR8Y3@@JQ4=5Sr5EDqTLmTLiD`lW2 zIwCeXipGX~pwpxzrJ_Ku;i-W^qorN2v-twBUeG z1N#h?+lI*8wMM1CKwdr4sz<6=fvQ}AI<;1>9vRf5VD%_OJyQD!f~ZhYa_Q(dRzG5##n2k3OHj`7kNkdg-IU<7ESIurv4P{`;8JM9AK@ye>I*pDDY*3J9fI1i! zhG2Qm3}s*@4`vPw)@pQsBDfG;FtEnDXNRE&od9TV7!bU)dH0&Jx4M zXpb_46m%A-4);KYJA@Lc2SgH5gE=P<<1&6`EKXI#1coR@Dv%LBBr{VCk>o`PQHq!% z2p?dD&;iy69THQ-4mwpMk{UmnxoG!C0+x)FY$^ixD3**x;GQlCM~U1Fr)-04c25qG zxQ!QhFnO(*0Tto6(HI%w`nsv1xjOj-O*wR#CVX($#S| zK9e!^HyYbq%y>rOoxHeGvfCWxw!US2pU0Io5%fvmO4r^fE)@K5wZ&O;y(ky)mi00m zw`6Je(2Fup*0Nsi*2OV>E7`9(jg+~wmi2YFMy~Y5?vm<79_e1aao_ic?_-&lQ=0V& zn_C0dX0H*Fddz*&VKY;9460y=l)~96(lJ7b=|SXDWy@lk6G4Qkq} zHGKUV&7?=wDt-Mb&a0^!EJ15ZgxA#?Ol&h7NqXT@%o5}vB;L4*!L%6iZS3{(ITCVq z9<1?4imN0%ly^&3V3{a%)bv3IY%)^wI~=juHcc-a>1Yy0bH9@c%y3jl4I7f6VIw3g zt0POkrjT&?IBKpJ=pZ?xVWqr5C1^)JtzwFleQEmu^;=f-NVZTOl?v)tF#L zwU@s-^#aRFy|moOxQ}VNm&W~q$p%+Ra3A5aWJmy9r%?dl3d|G)xPUWCrd_o(ZeCrd zQ9$5|Z1;cy+%!wFxiD~WGvhK1Zn|X~w0s=k7Tt9k6$dW#qvF6p^GhKLvjlg^=Adze z0_U)XIfZ8I*7(52#Dm;V%SSfNTDXc)n%0nL8nZzYF;~F>uf}N})N1I%yokh;_g2Cs zj|-inzFGe^9)d8j;<9dZwQ8svS+lvYjk`~Y#)WZ#=^fW)Q~m3(`!C9-_}3NL8u9Nh z_M`Z>v3|HGlnW8}l#@>}`|Yx=F;CvKt()pc#X-yMhFepY{eyY>re)JKK4x_;;ec{c zWg3+dm}ij7(gRnz=Ri)&Y)j8cl!-Z-G?X$kCBu^PETWyy`Cwj9`U}VYuh_I4k3UEG zc)47M?@e2QAN0Z_>%;FM+zk6OArrMWPCy71%!H|Bx3G4~I|?YS0dE^owazMAq&PaWz_ z&NrAjfqj5&m_emcZW9z^$_ri4P*OlCr!#tRCfTxqDIFCJjohM|21a(!I2k!mPT%RV z#HazPNhR^9a4_U!PhIE^N4fXEdyWg>W{SKe^)2NnS8Zg!HJ!eTrGv1OX5uey? zlk(7sJn7ta2-?cMs{CpC%V?wrMv`>QdJ{D|ObhGq7!jw+BMv+r)arSj6p=`PaJ}9b zqN7H1??u|EjWELmGtg5cM^ z{~qjX^v6uw-S&lT$-c^_g>Bd|AHw!QM%dY?V_O41z@i~Q71c|u0|Ol*Y`vSEN#H1XXQ>K0w$F` zq4L(;o4F>8dAvQYtzI)8t_-NFdpyvSe>1 zWphq~q*dB%?w4hDxO^+kSY~H%&g@#gCdNNRtHmmi`a32CU8h}15p{epT;pGFr!s0; zil}CYc=o2`_L3nLOUOwihPNY)Y9=jX_fw7xtFfnPEZ_p8&M8TlBPAiLHbLe(MH9)H z4(of6k3k5^&h$JzWo5Tc2sK9kKs{Yn8{}syi3Aumfl`T`WL8)}Q)iK#b2QxBwK!lp zy3hvuBh%6&opS0z56>XC)M{{t&|s`SX7D%iJSHIkIhoRc>xACO2iMEi)Mh$8v=6~b zFz05-ww*D-mXEQ;Pb>{r2OwO3cNI)Prb3WMhXn9?gJ0E*7Tu^i(K49^=^vwQ>_hF{ zG5kkh_=h(${MD9hR7+><{sYcpXlG(#K^OLt%*wD=#)L#upU-a=9Rk^)HfVX=|07Y* zV#lN)ss7`lgM8oC(&#_~PQF86!@QA)#x02sjgvVKwTAJeaf*LsbZ|)EG<2Os{-x;P z7=*|qgMtkRQDj2}p^oV6e0!%3FfFBf#t`RW#wMPNup*qIb0*_GYB{I|u+f2HrQ4jz#lgRioBbM!-~ z(!W4_VS5<9>i8ViL51OO3}?boDEAcR`$OG zZFEcyf3$r9o4#I)F8C>L<*y5;oJo5JC&!WcJDr^Kkz0Sa{~N=92d-m-KLtq*%N^&` zf_^$)dCkIq;@%niIKGVET=%Z4t+`!UapT&LS1w=vzUGqs`&O5KxKjF~?P|v#OG~f( z@I&d3*KU+oh?Q+`R+L@8TKdCf+xPa%K37VwUN5Vtyj^{#&L)ai?LRP9cdBkxTra)! z-xn`@^<~u;ZNB{K9~Zv9_>K5a`$hYOhyQWm!o_bdT`s+P?b_8V-+%WlHTvR-w@1%I5%gIw`&K8$^`q|(A_EAycd-*5c zJT4yVdi<>ud8Z1_ee~Id@2=dqdAkPE-LPN5kEPr0+^)F#-4{Z^+ea+>_w3qPlhbDB zuHCQf%ROkb_#e#Ozi;o}T+88OCr=d=zW?4kCyu^$aNq7-J9qBdwPzp7kLMQ(pIy9s zy@GKpV;t*hDz9JqN_f|LaM#w28R_XYFWb{wXRKYnanojTi|3||8^m>;H*U$^bKtcj zR_kHQ{$1NQt;?{bcUzOO4#lrntodg@xp3*)%_^8s=2%rx`pqW=*4*vuRxVjEZ*I*T zpSknqEm*YJymZ;JrRF7z#D!g!EKgs*Wyh{p_UzoYY3=Hzi{{T0=XRerf8mm4tJiPc z^V*4mk1t%hURhOZ6U!lGC-Kg$vP)lm`1Zl=8Rj`jaj~~!G;#3>iAl*RDalDMB_zZr zyfk~>;uY!ZHmuKBy=>ted<7|1jOiX5m+(@`oW(2GXCFLXQ1bQVvRkkuG4vH{DzE+b z-wTfHT4$ae7ae))#RnrIr%sECj-DPJJ#E_5$f;2?u9T~{PCNTQ-`*$niE%E()QHENs}i}nv_*r(s5~Y zOng#Ga$?-fsMA#?UC$ibJuN0>QTp~*PZoW7>H5zQNM=w``n8aEV3Rp{dU*+#FFx-z z_W9>efWhI(5!0e)%!r=);^cRJF6ne`&CKM*Yj+-gx8!1JMU@lvh2oR@H!Mz^R$k(f zKgwp}lJAssJU?#2q$w}HICS+?b1{znkB+9p=OPF>0F-~R2);q3JJ@w;<&Y~Q}EppJUo z#;vxE!*zh5P`V&EBbw6%+U5Q6tk*$O~Q}ZfkF4Xh!{;&G7)i?Yss;iM0O)7gU4Cl2r5ma!yx`lQh# zh8!b(YWi_g>q@+={rVN*G`v>gvro+AtT68Q@M%frtwmosjQctG6rC+N_2z4@Y*{@& zK62d1XB9qB$IINWA8D0IeBk5UQ4^w*m+dINaHXPJF^W)JeE!_oGkMm7J2xy%hHZy3 z26y^-42K9_!~6AvK-?MP0B{wJHBFp8du0w_a+AOX|9&n&hV$<(nDgr4y;-Z~%$hQ0 zxXghwgYpn;0K>qt;80oOTQq%W*yNdMt9E_-%~gg^nMH9y0LNup5AIkqKkmh`BNP^S z)Va;dkvR^@EJh9ji&=A4?=JZ#SYT-22k$-?g-*qqi#N^efA7TWdp0gfoH|aW-vRneiQX%|A6cbS zkx5cw=f@X+gc1zsDu**~AKsg}G-+D6%Ap7x&Zr#vWkQ6_Lt)6&71_lXFy16zC=7DX zoIJdD6Bvvi$y9*W<{L1e$W-9sv4=r@i(VKtJ}PPHHYYeRD-@bJ?nFV}8~ZjdPl=u| z>NpIS2^NR2&l3~yi-ZZ1F`d|%YfF6gKQ}HiaWO!u4j9G_CRuW>An(Zjtd+B;PYNS$ zn`}>W<7-RWXAB%Xc*u~!g9q-bE%6%v^wY`+J_E#09TyqDXj9>5|8wJ3t!y1Q$cp7b z=L+(z2X?$XFZRW;#B8%|Ah#LJUKl!b_=pk1hdw(W%r*}g0L@z`4jeRSU?R934#)V} z^!{hxT}LFOprV-SK;fz5hjy-8loUO2Pu+2Dh3#1`x9)g{10zjgW5$jh6E^BO+j09b zuiR&z*@@~|bwjDz`_1_1q{Ukb>$B?&O%Hr<`o!z6Y+5-dZtA45VRa@hOf=a?btY!v z6DA`zPnkSn+}P2ks!^P&CajBTlqqcNgvglL%eS5T;?fN#*}8$*K@6&+2X?HbYZij~ zgb8&MZ4){p!cUE!850*5Gb1{ZifhM<6YLYYNw&$|CQU@EiBqP{N?w${Q@C)s{I+5{ zn?M|AohUf<)_?8IT7%1K>`Ywz>ZaSGyUmytmza_^cmDjjvy&3ys5mOBHrhU&n_-*T zZN_w*PoEV(d(o=Q{eP#6paW~&^8HBV_wuZVc4w_!xoBS6?9|k{+1*o9Qc`EnoxgbL z%GK%Vt5)E8pEf(?PO?2koZT~R&YZNg*=RR=&cdZHXJ)^C;qnc-EJ{wP6FON;rXy$H zKmGR6Lwk2@UYEYAdZoCc^U9aktjo;Wx_$fB%^Oj+a=C4pZMolyl`B`Re);9qt5&XD zv0~+_H5;;a9eDH7)rzV+%7D5f_^|MH`fclf9e8Euj;%juwc4JI^hi9=Hh1qH6l86= zvzgl>X0_S64VR~_TWwiBTeElVKlH}wt3OfxAPaU!uorhkm@7D)_tw$Z4;?&U+b`zU z?eCm>!1CJbZydE+j~u4b{rhV7+V|P_bGfw#xLn(Q?*p&CcKFzd!irnfNN%J!QzLjI z+?_l7{(GnLP8_!$wH*kk6Kz#pBLHqX$&z?Q^DX}PHEN(Lv?GJKXz_}9~*ZbY-a~?&DMXuGT z^XCijy%j3pFI98?uTd(`u!m|vkN*^B7BOo9*t`-T<@g|IUh1M|rC z1xbv_v_}xkCQ}ATIN#KMP(~m|Yaw z7G^+{Lct=MxvU#%M`#Qag$jj!(Cufza|(VLS@0+f#ru6i3(atx$a~ToX#x#>^0R=qd07N2{n|O8;0deJ zKmvl`8pqfHJ^;ToD~aV{66&}PCIToqj-aQId4&!56~IatO2uh#us1`J6f0rE^bs!kOMH0}S7B zVt7|ULkd8vnH~`us;v&5i!K=l$ICe(rfc_q?Bb z-j7XVV)oEI@8_QPbI<#^=l$ICe(rfc_q?Bb-p@VnM>D|gc|Z5OA7Ieft?)84|^?vU4e##;?_j*6~dO!DiKblH#ulIAW_ahuQ zEykkdQ}SXttQ~Q$_j9lJbFcSvulK8TulIAW_mh^CyVv_QG5OxegnaYs{W!aaw^yq+ z?Y(`wcE7Jz@7{hjee8a%df(rx=Y6&w9q;Sev)BFi_q?xr*UrA8cUvFdF5PF$7p~J-CU57pU%%J{Hh6Mh(?*qNM`m}EY>27dW zxXvD)t=s$dc;L~XCx?t2JMo2x$eO8bA|qa$GHF7%ZLELz1p0dEgt4aKgZn@E_!IpG zJoDU`@JTO5L`FtLyf6vn!v;Pc^yi0qck^W&%NR$mHs0O(JRJ1&i13IR@yV&FHM8xh zt&@`y<6~pQS)Q@+3F1qg<7Z8KVf>hpBSx6UPK=0-eJRRt_m*y^Bwqj+?Dj$67W*NTVyKupRh4{L!xU|dS`KgJsq9Ufe z5IH?IDQ%&7`3iAm_Z7>RE?$t9IOBye&pfH^+ozj%yH=ha<&d(IN9zt<`aEnH5+0qr zXw}-xO}95|GB<8mzcypdnvAvUHf-3qVcp9smds0iDIqaAZNXA}!6$Q*xVihL%nj?- ztXeWRaa#DWC;312?$QC4B!<2oZM?fb_?IU~M!dA><;?9nZ|#0?*Up@5T7R~EdvRSN8U;Tes)z-uvUv_D+>YvNDz= zMVg-GAL{Ab&WXCOZt%o}CF`@x?HI_}b;HTu2Ay=M3HZsRE(dHJ^W^r&EkUY)>MKJ4Oj*xpgCDY4??OLlH(@>L2 gJpn%1L@1Mv>_870jRVwaf5ZLx|H=YpuKwTu0<~QuTmS$7 literal 0 HcmV?d00001 -- 2.25.1